@charset "UTF-8";

/* Tools */

.text-align-center {
  text-align: center;
}

.text-align-right {
  text-align: right;
}

.display-block {
  display: block;
}

.hidden {
  display: none !important;
  visibility: hidden;
}

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

.clear {
  clear: both;
}

/* show only  SP/PC
-------------------------------*/

.sp-only {
  display: none !important;
}

.sp-only-2 {
  display: none !important;
}

.pc-only {
  display: block !important;
}

.pc-only-2 {
  display: inline-block !important;
}

/* font
-------------------------------*/

.bold {
  font-weight: bold;
}

/* margin
-------------------------------*/

/* padding
-------------------------------*/

/* Layout */

.l-wrapper {
  width: 100%;
  padding-top: 100px;
  text-align: left;
  overflow: hidden;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #303030;
  letter-spacing: 0.1em;
}

.l-wrapper.is-fixed {
  position: fixed;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100px;
  padding: 0 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
}

.l-footer {
  position: relative;
  margin-top: 160px;
}

.l-inner {
  position: relative;
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}

.l-section {
  padding: 120px 0;
}

.l-section--ptsm {
  padding: 75px 0 120px;
}

.l-section--pblg {
  padding: 120px 0 160px;
}

.l-section--pb0 {
  padding-bottom: 0;
}

.l-section-sm {
  position: relative;
}

.l-section-sm + .l-section-sm {
  margin-top: 100px;
  padding-top: 100px;
}

.l-section-sm + .l-section-sm::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: radial-gradient(circle farthest-side, #000, #000 2px, transparent 2px, transparent);
  background-size: 16px;
}

.l-2col {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 80px 7%;
}

.l-3col {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px 40px;
}

/* Module */

.noscript {
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  padding: 1em;
  border: 3px solid red;
}

.noscript span {
  color: red;
}

.scrollin,
.scrollins__item {
  opacity: 0;
  -webkit-transform: translate(0, 30px);
  -ms-transform: translate(0, 30px);
  transform: translate(0, 30px);
}

.scrollin.is-visible,
.scrollins__item.is-visible {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scrollin-up {
  opacity: 0;
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}

.scrollin-up.is-visible {
  opacity: 1;
  -webkit-animation: up-in 0.4s ease-in forwards;
  animation: up-in 0.4s ease-in forwards;
}

.header-logo {
  width: 296px;
}

.navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.navigation__item:not(:last-child) {
  margin-right: 60px;
}

.navigation__item a {
  position: relative;
  display: block;
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.navigation__item a::before {
  content: "";
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fed963;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.navigation__item a:hover {
  opacity: 1;
}

.navigation__item a:hover::before {
  opacity: 1;
}

.navigation__item a span {
  position: relative;
  z-index: 1;
}

.menu-btn {
  display: none;
  position: relative;
  background: #2f6256;
  border: none;
  padding: 0;
  margin: 0;
  width: 70px;
  height: 100%;
}

.menu-btn__icon {
  position: relative;
  display: block;
  width: 100%;
  height: 30px;
}

.menu-btn__icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 40px;
  height: 2px;
  background: #ffffff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.menu-btn__icon span:first-child {
  -webkit-transform: translate(-50%, -6px);
  -ms-transform: translate(-50%, -6px);
  transform: translate(-50%, -6px);
}

.menu-btn__icon span:nth-child(2) {
  -webkit-transform: translate(-50%, 5px);
  -ms-transform: translate(-50%, 5px);
  transform: translate(-50%, 5px);
}

.is-opend .menu-btn__icon span:first-child {
  -webkit-transform: translate(-50%, -50%) rotate(30deg);
  -ms-transform: translate(-50%, -50%) rotate(30deg);
  transform: translate(-50%, -50%) rotate(30deg);
}

.is-opend .menu-btn__icon span:nth-child(2) {
  -webkit-transform: translate(-50%, -50%) rotate(-30deg);
  -ms-transform: translate(-50%, -50%) rotate(-30deg);
  transform: translate(-50%, -50%) rotate(-30deg);
}

.menu-btn__text {
  color: #ffffff;
  font-size: 1.2rem;
  display: block;
  text-align: center;
  font-weight: 700;
}

.footer {
  position: relative;
  padding: 160px 0 80px;
}

.footer::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
  width: 100vw;
  height: 100%;
  background: #fed963;
  -webkit-clip-path: polygon(0% 75px, 80% 0%, 100% 75px, 100% 100%, 0% 100%);
  clip-path: polygon(0% 75px, 80% 0%, 100% 75px, 100% 100%, 0% 100%);
}

.footer::after {
  content: "";
  position: absolute;
  top: -59px;
  left: -100px;
  width: 240px;
  height: 197px;
  background: url(/ijyu/assets/img/deco_footer.png) no-repeat center center/contain;
}

.footer__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__head__logo {
  display: block;
  width: 310px;
}

.footer__head__button {
  width: 320px;
}

.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 78px;
}

.footer__name {
  font-weight: 700;
}

.footer__info {
  margin-top: 12px;
  line-height: 1.75;
}

.footer__info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer__info__head {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-weight: 400;
}

.footer__copyright {
  font-family: "Rubik", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.head-1 {
  font-size: 5.2rem;
  line-height: 1.5961;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.head-1--pc-center {
  text-align: center;
}

.head-2 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 62px;
  min-height: 160px;
  padding-left: 75px;
  font-size: 4.2rem;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.head-2--mb-sm {
  margin-bottom: 45px;
}

.head-2 span {
  position: relative;
  z-index: 1;
}

.head-2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  width: 60px;
  height: 1px;
  background: #303030;
}

.head-2::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -40px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 160px;
  height: 160px;
  background: #fed963;
  border-radius: 50%;
}

.head-3 {
  margin-bottom: 15px;
  font-size: 3rem;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.head-3--mb-sm {
  margin-bottom: 8px;
}

.head-4 {
  position: relative;
  margin-bottom: 19px;
  font-size: 3rem;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding-left: 64px;
}

.head-4:before {
  position: absolute;
  display: inline-block;
  content: "";
  left: 0;
  width: 50px;
  height: 50px;
}

.head-4--water::before {
  background: url(/ijyu/assets/img/icon_living_water.svg) no-repeat center/contain;
}

.head-4--garbage::before {
  background: url(/ijyu/assets/img/icon_living_garbage.svg) no-repeat center/contain;
}

.head-4--facility::before {
  background: url(/ijyu/assets/img/icon_living_facility.svg) no-repeat center/contain;
}

.text {
  line-height: 1.6667;
}

.button-1 {
  display: block;
  width: 100%;
  max-width: 320px;
  padding: 19px 20px;
  border-radius: 100px;
  color: #ffffff;
  background: #2f6256;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
}

.button-1:not(:last-child) {
  margin-bottom: 20px;
}

.button-2 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 50px;
  font-size: 2.2rem;
  line-height: 1.5;
  color: #1558d6;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: right;
}

.button-2::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  vertical-align: middle;
  background: #4fb97d;
  background: url(/ijyu/assets/img/icon_arrow_circle.svg) no-repeat center center/contain;
}

.button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.button-wrap--mt {
  margin-top: 40px;
}

.button-wrap--mtlg {
  margin-top: 80px;
}

.button-wrap--center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.button-wrap--end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.button-wrap__lead {
  margin-bottom: 17px;
  font-size: 2.2rem;
  line-height: 1.6363;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
}

.button-wrap__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.button-wrap--center .button-wrap__items {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.button-wrap--end .button-wrap__items {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.button-wrap__item {
  width: 100%;
  max-width: 320px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.button-wrap__item:not(:last-child) {
  margin-bottom: 20px;
}

.button-wrap-2--mt {
  margin-top: 31px;
}

.button-wrap-2__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.button-wrap-2__item:not(:last-child) {
  margin-bottom: 10px;
}

.button-wrap-2__item--mblg:not(:last-child) {
  margin-bottom: 30px;
}

.pagehead {
  position: relative;
  padding-top: 80px;
}

.pagehead::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(/ijyu/assets/img/pattern_stardust.png) repeat top left/400px #fff5d3;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 80px), 78.5% 100%, 0% calc(100% - 160px));
  clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 80px), 78.5% 100%, 0% calc(100% - 160px));
}

.pagehead__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.pagehead__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  padding-top: 30px;
  height: 520px;
}

.pagehead__title {
  margin-left: 30px;
  font-size: 5.4rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #2f6256;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.pagehead__lead {
  line-height: 2;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.pagehead__image {
  position: absolute;
  top: 0;
  width: 83.2%;
  max-width: calc(100% - 180px);
  left: -6.6%;
  -webkit-clip-path: polygon(77.5% 0%, 100% 80px, 100% 100%, 0% 100%, 0% 80px);
  clip-path: polygon(77.5% 0%, 100% 80px, 100% 100%, 0% 100%, 0% 80px);
}

.pagehead__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.breadcrumb {
  margin-top: 32px;
}

.breadcrumb__item {
  display: inline;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.breadcrumb__item:not(:last-child)::after {
  content: "＞";
  margin: 0 0 0 0.5em;
}

.breadcrumb__item a {
  color: #1558d6;
}

.breadcrumb__item:first-of-type a::before {
  content: "";
  display: inline-block;
  margin-right: 10px;
  margin-top: -2px;
  width: 30px;
  height: 20px;
  vertical-align: middle;
  background: url(/ijyu/assets/img/icon_home.svg) no-repeat center center/contain;
}

.mainvisual-wrap {
  position: relative;
}

.mainvisual-wrap::before {
  content: "";
  position: absolute;
  top: 430px;
  left: 0;
  z-index: -1;
  width: 100%;
  max-height: 770px;
  height: 41vw;
  background: url(/ijyu/assets/img/pattern_stardust.png) repeat top left/400px #fff5d3;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 145px), 20% 100%, 0% calc(100% - 95px));
  clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 145px), 20% 100%, 0% calc(100% - 95px));
}

.mainvisual {
  position: relative;
  width: 100%;
  height: 860px;
  max-width: 1600px;
  height: 100%;
  margin: 0 auto;
}

.mainvisual__image {
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(50% 0%, 100% 23%, 100% 100%, 0% 100%, 0% 23%);
  clip-path: polygon(50% 0%, 100% 23%, 100% 100%, 0% 100%, 0% 23%);
}

.mainvisual__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.mainvisual__main {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 77%;
  padding-top: 85px;
}

.mainvisual__copy {
  position: relative;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 5.3rem;
  line-height: 1.6;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.07em;
}

.mainvisual__copy span {
  position: relative;
  z-index: 1;
}

.mainvisual__copy::before {
  content: "";
  position: absolute;
  top: -65px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: #2f6256;
  border-radius: 50%;
}

.home-info {
  margin-top: -80px;
  padding: 56px 60px 95px;
  background: #fed963;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 87.5%, 50% 100%, 0% 87.5%);
  clip-path: polygon(0% 0%, 100% 0%, 100% 87.5%, 50% 100%, 0% 87.5%);
}

.home-info__head {
  margin-bottom: 47px;
}

.info-card-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.info-card {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 40px;
  background: #ffffff;
  border-radius: 20px;
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 60px;
  height: 20px;
  background: #4fb97d;
}

.info-card__date {
  display: block;
  line-height: 1.5;
  font-weight: 700;
}

.info-card__title {
  display: block;
  margin-top: 14px;
  line-height: 1.6667;
  color: #1558d6;
}

.home-support {
  margin-top: 178px;
}

.home-support-head {
  position: relative;
  margin-bottom: 144px;
}

.home-support-head::before {
  content: "";
  position: absolute;
  top: 27%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -130px;
  width: 569px;
  height: 442px;
  background: url(/ijyu/assets/img/deco_support.png) no-repeat center center/contain;
}

.support-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 84px 3.5%;
}

.support-card {
  position: relative;
}

.support-card__number {
  position: absolute;
  top: -32px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
  font-family: "Rubik", sans-serif;
  font-size: 4.1rem;
  line-height: 1.4;
  font-weight: 600;
}

.support-card__number::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: calc(100% + 10px);
  height: 4px;
  background: #303030;
}

.support-card__image {
  position: relative;
  z-index: 1;
  width: 93%;
  margin: 0 auto;
  -webkit-clip-path: polygon(50% 0%, 100% 10%, 100% 100%, 0% 100%, 0% 10%);
  clip-path: polygon(50% 0%, 100% 10%, 100% 100%, 0% 100%, 0% 10%);
}

.support-card__image img {
  display: block;
  width: 100%;
}

.support-card__main {
  margin-top: -42px;
  padding: 82px 40px 54px;
  background: #fed963;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 94%, 71% 100%, 0% 87.5%);
  clip-path: polygon(0% 0%, 100% 0%, 100% 94%, 71% 100%, 0% 87.5%);
}

.support-card__category {
  width: 200px;
  padding: 2px;
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
  background: #ffffff;
  border-radius: 10px;
}

.support-card__text {
  margin-top: 17px;
}

.support-card__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 20px;
}

.home-about {
  position: relative;
  width: 100%;
  max-height: 1682px;
  min-height: 87.5vw;
  margin-top: 130px;
  padding: 235px 0 550px;
  background: #f2f0eb;
  -webkit-clip-path: polygon(0% 80px, 20% 0%, 100% 200px, 100% 100%, 0% 100%);
  clip-path: polygon(0% 80px, 20% 0%, 100% 200px, 100% 100%, 0% 100%);
}

.home-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: calc(100% - 300px);
  background: url(/ijyu/assets/img/pattern_stardust.png) repeat top left/400px;
}

.home-about::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(/ijyu/assets/img/bg_home_about.jpg) no-repeat bottom center/100%;
}

.home-about__main {
  position: relative;
  z-index: 2;
  width: 50%;
  margin-left: auto;
  padding-left: 20px;
}

.home-about__head {
  margin-bottom: 75px;
}

.home-about__text {
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.home-about__figure {
  position: absolute;
  top: -77px;
  right: calc(100% + 60px);
  width: calc(50vw - 60px);
  max-width: 902px;
}

.home-about__figure img {
  display: block;
  width: 100%;
}

.home-bank {
  position: relative;
  margin-top: -80px;
  padding: 140px 0 415px;
  background: url(/ijyu/assets/img/pattern_stardust.png) repeat top left/400px #fff5d3;
  -webkit-clip-path: polygon(0% 80px, 20% 80px, 50% 0, 80% 80px, 100% 80px, 100% 100%, 0% 100%);
  clip-path: polygon(0% 80px, 20% 80px, 50% 0, 80% 80px, 100% 80px, 100% 100%, 0% 100%);
}

.home-bank__logo {
  width: 506px;
  margin: 0 auto;
}

.home-bank__text {
  margin-top: 58px;
}

.home-gallery {
  position: relative;
  margin-top: -275px;
}

.home-gallery__image {
  width: 91.8%;
  margin-left: auto;
}

.home-gallery__image img {
  display: block;
  width: 100%;
}

.home-gallery__copy {
  position: absolute;
  top: 5px;
  right: 7.2%;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 5.3rem;
  line-height: 1.6;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.07em;
  white-space: nowrap;
}

.home-gallery__copy span {
  position: relative;
  z-index: 1;
}

.home-gallery__copy::before {
  content: "";
  position: absolute;
  top: -65px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: #4fb97d;
  border-radius: 50%;
}

.image-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.image-content--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.image-content__image {
  overflow: hidden;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  width: 43%;
  border-radius: 50%;
}

.image-content__image::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.image-content__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.image-content__main {
  width: 50%;
}

.image-content__lead {
  margin-bottom: 16px;
  font-size: 2.2rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.section-bg {
  position: relative;
}

.section-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 91.8%;
  height: 100%;
}

.section-bg--beige::before {
  background: url(/ijyu/assets/img/pattern_stardust.png) repeat top left/400px #fff5d3;
}

.section-bg--gray::before {
  background: url(/ijyu/assets/img/pattern_stardust.png) repeat top left/400px #f2f0eb;
}

.section-bg--top::before {
  -webkit-clip-path: polygon(0% 80px, 20% 0%, 100% 160px, 100% 100%, 0% 100%);
  clip-path: polygon(0% 80px, 20% 0%, 100% 160px, 100% 100%, 0% 100%);
}

.section-bg--bottom::before {
  left: auto;
  right: 0;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 160px), 46% 100%, 0% calc(100% - 80px));
  clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 160px), 46% 100%, 0% calc(100% - 80px));
}

.map {
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.map::before {
  content: "";
  display: block;
  padding-top: 47.413%;
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.spot-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 80px 7%;
}

.spot-list__image {
  position: relative;
}

.spot-list__image::before {
  content: "";
  display: block;
  padding-top: 66.666%;
}

.spot-list__image img {
  border-radius: 20px;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.spot-list__head {
  margin-top: 15px;
  margin-bottom: 13px;
  text-decoration: underline;
  color: #1558d6;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.spot-list__head:hover {
  text-decoration: none;
}

.goods-list {
  margin-top: 80px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 40px;
}

.goods-list__image {
  position: relative;
  -webkit-clip-path: polygon(0% 10%, 0 100%, 100% 100%, 100% 10%, 50% 0%);
  clip-path: polygon(0% 10%, 0 100%, 100% 100%, 100% 10%, 50% 0%);
}

.goods-list__image::before {
  content: "";
  display: block;
  padding-top: 75%;
}

.goods-list__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.goods-list__head {
  margin-top: 20px;
  margin-bottom: 17px;
  background: #4fb97d;
  border-radius: 10px;
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
  padding: 6px 10px;
}

.images {
  margin-top: 80px;
}

.image {
  overflow: hidden;
  border-radius: 20px;
}

.image img {
  display: block;
  width: 100%;
}

.link-list__items {
  counter-reset: item;
}

.link-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #bfbfbf;
  width: 100%;
  padding: 20px 0;
}

.link-list__number {
  margin-right: 40px;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #303030;
  font: 600 4rem "Rubik", sans-serif;
  background: #fff;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.link-list__number::after {
  position: absolute;
  content: "";
  background: #303030;
  width: 30px;
  height: 4px;
  left: 50%;
  bottom: 15px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.link-list__text {
  font-size: 2.2rem;
  line-height: 1.5;
  color: #1558d6;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: underline;
}

.link-list__text:hover {
  text-decoration: none;
}

.frame-links {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 40px 40px;
}

.frame-links--mt {
  margin-top: 80px;
}

.frame-links__item {
  padding: 40px 40px 35px;
  border: 2px solid #fed963;
  border-radius: 20px;
  background: #ffffff;
}

.frame-links__head {
  margin-bottom: 35px;
  text-align: center;
  color: #1558d6;
  font-size: 2.2rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.fig-spot {
  margin-top: 78px;
}

.frame {
  margin-top: 60px;
  position: relative;
  padding: 58px 40px;
}

.frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: url(/ijyu/assets/img/pattern_stardust.png) repeat top left/400px #f2f0eb;
}

.frame__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 43px;
}

.bank-info__image {
  margin: 0 auto 37px;
  width: 506px;
}

.sns-link {
  margin-top: 80px;
  margin-bottom: 40px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px 40px;
}

.sns-link__item {
  display: block;
  text-decoration: none;
  padding: 20px 20px 17px;
  background: #ffffff;
  border-radius: 20px;
  text-align: center;
}

.sns-link__name {
  margin-top: 18px;
  font-weight: 700;
  text-align: center;
  line-height: 1.6667;
}

@media screen and (max-width: 1550px) {
  .l-wrapper {
    /* md */
    padding-top: 80px;
  }

  .l-header {
    /* md */
    height: 80px;
    padding: 0 30px;
  }

  .header-logo {
    /* md */
    width: 220px;
  }

  .navigation__item:not(:last-child) {
    /* md */
    margin-right: 45px;
  }

  .navigation__item a {
    /* md */
    font-size: 2rem;
  }

  .footer {
    /* md */
    padding: 160px 0 40px;
  }

  .footer::after {
    /* md */
    top: -50px;
    left: -10px;
    width: 201px;
    height: 165px;
  }

  .footer__copyright {
    /* md */
    padding-top: 100px;
  }

  .mainvisual {
    /* md */
    height: 700px;
  }

  .mainvisual__copy {
    /* md */
    font-size: 4rem;
  }

  .mainvisual__copy::before {
    /* md */
    width: 240px;
    height: 240px;
  }

  .home-info__head {
    /* md */
    margin-bottom: 28px;
  }

  .home-support-head::before {
    /* md */
    right: -60px;
    width: 400px;
    height: 312px;
  }

  .home-gallery__copy {
    /* md */
    font-size: 3.6rem;
  }

  .home-gallery__copy::before {
    /* md */
    top: -40px;
    width: 200px;
    height: 200px;
  }

  .section-bg::before {
    /* md */
    width: 100%;
  }
}

@media screen and (max-width: 900px) {
  .head-1 {
    /* tb */
    font-size: 4.2rem;
  }

  .info-card-list {
    /* tb */
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .home-about {
    /* tb */
    padding: 100px 0 40vw;
    -webkit-clip-path: polygon(0% 40px, 20% 0%, 100% 80px, 100% 100%, 0% 100%);
    clip-path: polygon(0% 40px, 20% 0%, 100% 80px, 100% 100%, 0% 100%);
  }

  .home-about__main {
    /* tb */
    width: 100%;
    padding-left: 0;
    margin-left: 0;
  }

  .home-about__head {
    /* tb */
    margin-bottom: 30px;
  }

  .home-about__text {
    /* tb */
    font-size: 1.8rem;
  }

  .home-about__figure {
    /* tb */
    position: relative;
    top: 0;
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100vw;
    max-width: 450px;
    margin-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  .sp-only {
    /* sp */
    display: block !important;
  }

  .sp-only-2 {
    /* sp */
    display: inline-block !important;
  }

  .pc-only {
    /* sp */
    display: none !important;
  }

  .pc-only-2 {
    /* sp */
    display: none !important;
  }

  .l-wrapper {
    /* sp */
    padding-top: 66px;
    font-size: 1.6rem;
  }

  .l-header {
    /* sp */
    height: 66px;
    padding: 0 0 0 20px;
  }

  .l-navi {
    /* sp */
    display: none;
    position: fixed;
    top: 66px;
    left: 0;
    z-index: 1;
    width: 100%;
  }

  .l-footer {
    /* sp */
    margin-top: 140px;
  }

  .l-section {
    /* sp */
    padding: 80px 0;
  }

  .l-section--pb0 {
    /* sp */
    padding-bottom: 0;
  }

  .l-2col {
    /* sp */
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 40px 40px;
  }

  .l-2col--sp-lg-gap {
    /* sp */
    gap: 80px 80px;
  }

  .l-3col {
    /* sp */
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .header-logo {
    /* sp */
    width: 175px;
  }

  .navigation {
    /* sp */
    display: block;
    padding: 81px 40px 100px;
    background: #fff5d3;
  }

  .navigation__item:not(:last-child) {
    /* sp */
    margin-right: 0;
    margin-bottom: 39px;
  }

  .navigation__item a {
    /* sp */
    padding-left: 45px;
  }

  .navigation__item a::before {
    /* sp */
    content: none;
  }

  .navigation__item a {
    /* sp */
  }

  .navigation__item a::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fed963;
  }

  .menu-btn {
    /* sp */
    display: block;
  }

  .footer {
    /* sp */
    padding: 140px 0 40px;
  }

  .footer::before {
    /* sp */
    -webkit-clip-path: polygon(0% 20px, 80% 0%, 100% 20px, 100% 100%, 0% 100%);
    clip-path: polygon(0% 20px, 80% 0%, 100% 20px, 100% 100%, 0% 100%);
  }

  .footer::after {
    /* sp */
    top: -80px;
    left: 0;
    width: 174px;
    height: 142px;
  }

  .footer__head {
    /* sp */
    display: block;
  }

  .footer__head__logo {
    /* sp */
    width: 210px;
  }

  .footer__head__button {
    /* sp */
    margin-top: 40px;
  }

  .footer__bottom {
    /* sp */
    display: block;
    margin-top: 40px;
  }

  .footer__copyright {
    /* sp */
    margin-top: 40px;
    padding-top: 0;
  }

  .head-1 {
    /* sp */
    font-size: 3rem;
  }

  .head-1--pc-center {
    /* sp */
    text-align: left;
  }

  .head-2 {
    /* sp */
    min-height: 80px;
    margin-bottom: 30px;
    padding-left: 40px;
    font-size: 2.8rem;
  }

  .head-2::before {
    /* sp */
    width: 30px;
  }

  .head-2::after {
    /* sp */
    left: -15px;
    width: 80px;
    height: 80px;
  }

  .head-3 {
    /* sp */
    font-size: 2.4rem;
  }

  .head-4 {
    /* sp */
    font-size: 2rem;
    padding-left: 40px;
  }

  .head-4:before {
    /* sp */
    width: 30px;
    height: 30px;
  }

  .button-1 {
    /* sp */
    padding: 16px 20px;
  }

  .button-2 {
    /* sp */
    padding-right: 40px;
    font-size: 1.8rem;
  }

  .button-2::after {
    /* sp */
    width: 32px;
    height: 32px;
  }

  .button-wrap--end {
    /* sp */
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .button-wrap--center .button-wrap__items {
    /* sp */
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .button-wrap--end .button-wrap__items {
    /* sp */
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .pagehead {
    /* sp */
    padding-top: 50px;
  }

  .pagehead::before {
    /* sp */
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 20px), 78.5% 100%, 0% calc(100% - 40px));
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 20px), 78.5% 100%, 0% calc(100% - 40px));
  }

  .pagehead__main {
    /* sp */
    height: 350px;
    padding-top: 15px;
  }

  .pagehead__title {
    /* sp */
    margin-left: 20px;
    font-size: 4rem;
  }

  .pagehead__image {
    /* sp */
    position: relative;
    max-width: inherit;
    left: -20px;
    height: 300px;
    -webkit-clip-path: polygon(65% 0%, 100% 20px, 100% 100%, 0% 100%, 0% 20px);
    clip-path: polygon(65% 0%, 100% 20px, 100% 100%, 0% 100%, 0% 20px);
  }

  .mainvisual-wrap::before {
    /* sp */
    top: 500px;
    width: 100%;
    height: calc(100% - 650px);
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 35px), 0% 100%);
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 35px), 0% 100%);
  }

  .mainvisual {
    /* sp */
    width: 100%;
    height: 500px;
    margin-top: 30px;
  }

  .mainvisual__image {
    /* sp */
    -webkit-clip-path: polygon(50% 0%, 100% 12.2vw, 100% 100%, 0% 100%, 0% 12.2vw);
    clip-path: polygon(50% 0%, 100% 12.2vw, 100% 100%, 0% 100%, 0% 12.2vw);
  }

  .mainvisual__main {
    /* sp */
    width: 79%;
    padding-top: 0;
  }

  .mainvisual__copy {
    /* sp */
    top: 25px;
    font-size: 2.6rem;
  }

  .mainvisual__copy::before {
    /* sp */
    top: -35px;
    width: 140px;
    height: 140px;
  }

  .home-info {
    /* sp */
    margin-top: -30px;
    padding: 28px 20px 60px;
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 22px), 50% 100%, 0% calc(100% - 22px));
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 22px), 50% 100%, 0% calc(100% - 22px));
  }

  .info-card {
    /* sp */
    padding: 17px 20px;
    border-radius: 10px;
  }

  .info-card__title {
    /* sp */
    margin-top: 12px;
  }

  .home-support-head {
    /* sp */
    margin-bottom: 54px;
    padding-top: 80px;
  }

  .home-support-head::before {
    /* sp */
    width: 258px;
    height: 202px;
    top: -157px;
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    margin-left: 38px;
  }

  .support-list {
    /* sp */
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .support-list__item {
    /* sp */
    margin-bottom: 20px;
  }

  .support-card__number {
    /* sp */
    top: -15px;
    font-size: 2.3rem;
  }

  .support-card__number::after {
    /* sp */
    height: 2px;
  }

  .support-card__main {
    /* sp */
    margin-top: -18px;
    padding: 40px 20px 40px;
  }

  .support-card__category {
    /* sp */
    width: 160px;
    padding: 0;
    font-size: 2rem;
  }

  .support-card__text {
    /* sp */
    margin-top: 10px;
  }

  .support-card__button {
    /* sp */
    margin-top: 10px;
  }

  .home-about {
    /* sp */
    margin-top: 100px;
    padding: 100px 0 60vw;
    -webkit-clip-path: polygon(0% 20px, 20% 0%, 100% 40px, 100% 100%, 0% 100%);
    clip-path: polygon(0% 20px, 20% 0%, 100% 40px, 100% 100%, 0% 100%);
  }

  .home-bank {
    /* sp */
    margin-top: -40px;
    padding: 100px 0 100px;
    -webkit-clip-path: polygon(0% 40px, 20% 40px, 50% 0, 80% 40px, 100% 40px, 100% 100%, 0% 100%);
    clip-path: polygon(0% 40px, 20% 40px, 50% 0, 80% 40px, 100% 40px, 100% 100%, 0% 100%);
  }

  .home-bank__logo {
    /* sp */
    width: 300px;
  }

  .home-bank__text {
    /* sp */
    margin-top: 30px;
  }

  .home-gallery {
    /* sp */
    margin-top: 0;
  }

  .home-gallery__image {
    /* sp */
    width: 100%;
  }

  .home-gallery__copy {
    /* sp */
    top: 0;
    font-size: 2.2rem;
  }

  .home-gallery__copy::before {
    /* sp */
    top: -25px;
    width: 110px;
    height: 110px;
  }

  .image-content {
    /* sp */
    display: block;
  }

  .image-content__image {
    /* sp */
    width: 80%;
    margin: 0 auto 40px;
  }

  .image-content__main {
    /* sp */
    width: 100%;
  }

  .image-content__lead {
    /* sp */
    font-size: 1.8rem;
  }

  .section-bg::before {
    /* sp */
    width: 100%;
  }

  .section-bg--top::before {
    /* sp */
    -webkit-clip-path: polygon(0% 20px, 20% 0%, 100% 40px, 100% 100%, 0% 100%);
    clip-path: polygon(0% 20px, 20% 0%, 100% 40px, 100% 100%, 0% 100%);
  }

  .section-bg--bottom::before {
    /* sp */
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 40px), 46% 100%, 0% calc(100% - 20px));
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 40px), 46% 100%, 0% calc(100% - 20px));
  }

  .map {
    /* sp */
    margin-top: 60px;
  }

  .map::before {
    /* sp */
    padding-top: 100%;
  }

  .spot-list {
    /* sp */
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 40px 40px;
  }

  .spot-list__head {
    /* sp */
    font-size: 1.8rem;
  }

  .goods-list__head {
    /* sp */
    font-size: 2rem;
  }

  .images {
    /* sp */
    margin-top: 40px;
  }

  .link-list__number {
    /* sp */
    margin-right: 3%;
    font-size: 2.4rem;
    width: 60px;
    height: 60px;
  }

  .link-list__number::after {
    /* sp */
    height: 2px;
    width: 15px;
  }

  .link-list__text {
    /* sp */
    font-size: 1.8rem;
  }

  .frame-links {
    /* sp */
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px 20px;
  }

  .frame-links--mt {
    /* sp */
    margin-top: 40px;
  }

  .frame-links__item {
    /* sp */
    padding: 30px 30px;
  }

  .frame-links__head {
    /* sp */
    margin-bottom: 20px;
    font-size: 1.8rem;
  }

  .fig-spot {
    /* sp */
    margin-top: 40px;
  }

  .frame {
    /* sp */
    margin-top: 40px;
    padding: 30px 6%;
  }

  .bank-info__image {
    /* sp */
    width: 300px;
  }

  .sns-link {
    /* sp */
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 50px;
    margin-bottom: 20px;
  }

  .sns-link__item {
    /* sp */
    width: 100%;
  }

  .sns-link__item:not(:last-child) {
    margin-bottom: 20px;
  }
}

@-webkit-keyframes up-in {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  60% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes up-in {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  60% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/* PageTop */
#page_top {
  position: fixed;
  right: 40px;
  bottom: 40px;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
}
#page_top.is-visible {
  opacity: 1;
  visibility: visible;
}
#page_top img {
  width: 90px;
  aspect-ratio: 55 / 71;
}
@media only screen and (max-width: 767px) {
  #page_top {
    right: 20px;
    bottom: 20px;
  }
  #page_top img {
    width: 60px;
  }
}

/* adjustment */
@media screen and (max-width: 1020px) {
  .goods-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .goods-list {
    margin-top: 40px;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 20px;
  }
}
