:root {
  --viewport-width: min(100vw, 2000px);
  --b: calc(var(--viewport-width) / 160);
}

* {
  color: #333333;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: max(1.6rem, 14px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.1em;
}

a > *,
button > * {
  pointer-events: none;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

a,
button {
  display: inline-block;
}

br {
  font-size: unset;
  line-height: unset;
  letter-spacing: 0;
}

span {
  display: inline-block;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

small {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  padding: max(1rem, 10px) max(3rem, 30px);
  z-index: 9999;
  pointer-events: none;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 550px) {
  #header {
    padding: 10px 2.5%;
  }
}
#header.scrolled {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
#header .header__logo {
  width: max(11.5vw, 130px);
  pointer-events: all;
}
#header .header__logo img {
  filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.5));
}

#footer {
  background: #fff;
  width: 100%;
}
#footer .footer__wrapper {
  padding-top: max(6.5rem, 50px);
  padding-bottom: max(3rem, 30px);
}
#footer .footer__wrapper .footer__logo {
  display: flex;
  justify-content: center;
  gap: max(10rem, 40px);
  width: 50%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #footer .footer__wrapper .footer__logo {
    width: 60%;
    flex-direction: column;
  }
}
#footer .footer__wrapper .footer__logo a {
  flex: 1;
}
#footer .footer__wrapper .footer__logo a img {
  -o-object-fit: contain;
     object-fit: contain;
}
#footer .footer__wrapper ul.footer__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: max(2rem, 15px);
  margin-top: max(6rem, 60px);
}
@media screen and (max-width: 550px) {
  #footer .footer__wrapper ul.footer__list {
    row-gap: 20px;
    flex-direction: column;
  }
}
#footer .footer__wrapper ul.footer__list li.footer__item .footer__link {
  display: flex;
  align-items: baseline;
  gap: max(0.5rem, 5px);
  line-height: 1;
}
#footer .footer__wrapper ul.footer__list li.footer__item .footer__link--text {
  font-size: max(1.8rem, 12px);
  font-weight: 300;
  letter-spacing: 0.1em;
}
#footer .footer__wrapper ul.footer__list li.footer__item .footer__link--image {
  width: auto;
  height: 0.8lh;
}

.cta {
  background-image: url(../images/front-cta-bg.webp);
  background-repeat: repeat;
  background-size: 200px 200px;
}
.cta__wrapper {
  padding: max(10rem, 70px) 0;
}
.cta__wrapper .cta__title {
  width: 70%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .cta__wrapper .cta__title {
    width: 90%;
  }
}
.cta__wrapper .cta__title--sub {
  width: 70%;
  margin: max(3.5rem, 40px) auto 0;
}
@media screen and (max-width: 768px) {
  .cta__wrapper .cta__title--sub {
    width: 100%;
  }
}
@media screen and (max-width: 550px) {
  .cta__wrapper .cta__title--sub {
    margin-top: 35px;
  }
}
.cta__wrapper .cta__content {
  margin-top: max(6rem, 40px);
}
.cta__wrapper .cta__content ul.cta__list {
  display: flex;
  justify-content: space-between;
  gap: max(2rem, 10px);
}
@media screen and (max-width: 768px) {
  .cta__wrapper .cta__content ul.cta__list {
    flex-direction: column;
  }
}
.cta__wrapper .cta__content ul.cta__list .cta__item {
  position: relative;
  z-index: 0;
}
.cta__wrapper .cta__content ul.cta__list .cta__item--detail {
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  inset: 12.5%;
}
@media screen and (max-width: 1300px) {
  .cta__wrapper .cta__content ul.cta__list .cta__item--detail {
    inset: 7.5%;
  }
}
@media screen and (max-width: 1000px) {
  .cta__wrapper .cta__content ul.cta__list .cta__item--detail {
    inset: 5%;
  }
}
@media screen and (max-width: 768px) {
  .cta__wrapper .cta__content ul.cta__list .cta__item--detail {
    flex-direction: row;
    gap: 10%;
    inset: 5% 5% 5% 10%;
  }
}
.cta__wrapper .cta__content ul.cta__list .cta__item--detail span.number {
  color: #fff;
  font-family: YakuHanJP, "Montserrat", "Noto Sans JP", sans-serif;
  font-size: max(2.2rem, 22px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .cta__wrapper .cta__content ul.cta__list .cta__item--detail span.number {
    font-size: max(6vw, 20px);
  }
}
.cta__wrapper .cta__content ul.cta__list .cta__item--detail p.text {
  text-align: center;
  color: #fff;
  font-size: max(2rem, 12px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .cta__wrapper .cta__content ul.cta__list .cta__item--detail p.text {
    font-size: 3.8vw;
  }
}
.cta__wrapper .cta__btn {
  text-align: center;
  margin-top: max(8rem, 70px);
}
.cta__wrapper .cta__btn .btn {
  position: relative;
  width: max(45rem, 450px);
  padding: 15px 20px;
  transition: all 0.5s ease-in-out;
  background: rgba(51, 51, 51, 0);
}
@media screen and (max-width: 768px) {
  .cta__wrapper .cta__btn .btn {
    width: 100%;
    padding: 25px 20px;
  }
}
.cta__wrapper .cta__btn .btn::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #b1a33a, #917833);
  z-index: -1;
}
.cta__wrapper .cta__btn .btn__bubble {
  position: absolute;
  bottom: calc(100% - 25px);
  left: 50%;
  transform: translateX(-50%);
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15));
}
@media screen and (max-width: 768px) {
  .cta__wrapper .cta__btn .btn__bubble {
    bottom: 80%;
  }
}
@media screen and (max-width: 550px) {
  .cta__wrapper .cta__btn .btn__bubble {
    bottom: 70%;
    width: 75%;
  }
}
.cta__wrapper .cta__btn .btn__supplement {
  position: absolute;
  text-align: left;
  top: 50%;
  left: 5%;
  width: 20%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .cta__wrapper .cta__btn .btn__supplement {
    width: 15%;
  }
}
.cta__wrapper .cta__btn .btn__supplement span {
  padding: max(1.25rem, 12.5px) max(1.5rem, 15px);
  background: #000;
  color: #e8ca25;
  font-size: max(1.7rem, 17px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  transition: all 0.5s ease-in-out;
}
@media screen and (max-width: 768px) {
  .cta__wrapper .cta__btn .btn__supplement span {
    font-size: 3vw;
    padding: 12.5px max(2vw, 10px);
  }
}
.cta__wrapper .cta__btn .btn__text {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20%;
  color: #fff;
  font-size: max(1.7rem, 17px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .cta__wrapper .cta__btn .btn__text {
    text-align: left;
    padding: 0 15%;
    font-size: 3.3vw;
  }
}
@media screen and (max-width: 550px) {
  .cta__wrapper .cta__btn .btn__text {
    font-size: 4vw;
  }
}
.cta__wrapper .cta__btn .btn__arrow {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  width: 20%;
  height: 50%;
}
@media screen and (max-width: 768px) {
  .cta__wrapper .cta__btn .btn__arrow {
    width: 15%;
    height: 35%;
  }
}
.cta__wrapper .cta__btn .btn__arrow span {
  width: auto;
  display: grid;
  place-items: center;
  height: 100%;
  margin-left: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #84720f;
  transition: all 0.5s ease-in-out;
}
.cta__wrapper .cta__btn .btn__arrow span img {
  width: auto;
  height: 45%;
}
.cta__wrapper .cta__btn .btn:hover {
  background: #333333;
}
.cta__wrapper .cta__btn .btn:hover .btn__supplement span {
  color: #fff;
  background: #9a8200;
}
.cta__wrapper .cta__btn .btn:hover .btn__arrow span {
  background: #333333;
}

.attention {
  width: 100%;
  font-size: max(1.4rem, 12px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}
.attention > * {
  display: block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.band {
  position: relative;
  z-index: 0;
}
.band-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(to right, #ac7c00, #ebe274 40%, #ac7c00);
  z-index: 10;
}
.band-bottom::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(to right, #ac7c00, #ebe274 40%, #ac7c00);
  z-index: 10;
}

section#hero .hero__content {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 0;
}
section#hero .hero__content .hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
section#hero .hero__content .hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section#hero .hero__content .hero__title {
  display: flex;
  flex-direction: column;
  gap: max(6rem, 30px);
  width: 64rem;
  margin: auto;
  padding: max(6.4rem, 50px) 0;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  section#hero .hero__content .hero__title {
    width: 80%;
    padding: 120px 0;
  }
}
@media screen and (max-width: 550px) {
  section#hero .hero__content .hero__title {
    width: 90%;
    padding: 100px 0 80px;
  }
}
section#hero .hero__content .hero__title--sub {
  width: 100%;
}
section#hero .hero__content .hero__title--main {
  width: 50%;
  margin: auto;
  filter: drop-shadow(0 0 30px black);
}
section#hero .hero__bottom {
  text-align: center;
  padding: max(2vw, 20px) min(25%, 150px);
  background: linear-gradient(to right, #000, #404040, #000);
}
@media screen and (max-width: 768px) {
  section#hero .hero__bottom {
    padding: 40px 10%;
  }
}
@media screen and (max-width: 550px) {
  section#hero .hero__bottom {
    padding: 40px 5%;
  }
}
section#hero .hero__bottom img {
  width: max(128rem, 500px);
}
@media screen and (max-width: 550px) {
  section#hero .hero__bottom img {
    width: 100%;
  }
}

section#problem {
  position: relative;
  z-index: 0;
  background: #e3e0dc;
}
section#problem .problem__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: -1;
  mix-blend-mode: multiply;
}
section#problem .problem__wrapper {
  padding-top: max(11rem, 60px);
}
section#problem .problem__wrapper .problem__intro .problem__title {
  display: flex;
}
@media screen and (max-width: 768px) {
  section#problem .problem__wrapper .problem__intro .problem__title {
    row-gap: 50px;
    flex-direction: column;
  }
}
@media screen and (max-width: 550px) {
  section#problem .problem__wrapper .problem__intro .problem__title {
    row-gap: 20px;
  }
}
section#problem .problem__wrapper .problem__intro .problem__title--text {
  flex: 1;
  display: grid;
  place-items: center;
  font-family: YakuHanMP, "Noto Serif JP", sans-serif;
  font-size: max(2.8rem, 24px);
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  section#problem .problem__wrapper .problem__intro .problem__title--text {
    text-align: center;
  }
  section#problem .problem__wrapper .problem__intro .problem__title--text br.pc {
    display: none;
  }
}
@media screen and (max-width: 550px) {
  section#problem .problem__wrapper .problem__intro .problem__title--text {
    font-size: 5.5vw;
  }
}
section#problem .problem__wrapper .problem__intro .problem__title--image {
  width: calc(50% - max(1rem, 7.5px));
  aspect-ratio: 18/17;
}
@media screen and (max-width: 768px) {
  section#problem .problem__wrapper .problem__intro .problem__title--image {
    width: 100%;
    aspect-ratio: 35/22;
  }
}
section#problem .problem__wrapper .problem__intro ul.problem__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: max(2rem, 15px);
  margin-top: max(4rem, 30px);
}
@media screen and (max-width: 1000px) {
  section#problem .problem__wrapper .problem__intro ul.problem__list {
    grid-template-columns: repeat(2, 1fr);
    width: 95%;
    margin: 30px auto 0;
  }
}
@media screen and (max-width: 768px) {
  section#problem .problem__wrapper .problem__intro ul.problem__list {
    gap: 20px;
    margin-top: 60px;
  }
}
@media screen and (max-width: 550px) {
  section#problem .problem__wrapper .problem__intro ul.problem__list {
    gap: 15px;
    margin-top: 30px;
  }
}
section#problem .problem__wrapper .problem__intro ul.problem__list .problem__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0;
}
section#problem .problem__wrapper .problem__intro ul.problem__list .problem__item--image {
  aspect-ratio: 4/3;
}
section#problem .problem__wrapper .problem__intro ul.problem__list .problem__item--text {
  padding: 5% 7.5%;
  text-align: center;
  background: #fff;
}
section#problem .problem__wrapper .problem__intro ul.problem__list .problem__item--text p {
  font-size: max(1.8rem, 14px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 550px) {
  section#problem .problem__wrapper .problem__intro ul.problem__list .problem__item--text p {
    font-size: 2.8vw;
  }
}
section#problem .problem__wrapper .problem__emphasis {
  padding-top: max(27rem, 150px);
  padding-bottom: max(17rem, 100px);
  margin-top: min(-10rem, -100px);
  background-image: url(../images/front-problem-emphasis-bg.webp);
  background-size: cover;
}
section#problem .problem__wrapper .problem__emphasis strong {
  display: block;
  text-align: center;
  font-family: YakuHanMP, "Noto Serif JP", sans-serif;
  font-size: max(2.4rem, 20px);
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 550px) {
  section#problem .problem__wrapper .problem__emphasis strong {
    font-size: 4.5vw;
  }
}
section#problem .problem__wrapper .problem__emphasis strong b {
  font-family: inherit;
  font-size: max(2.8rem, 24px);
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
@media screen and (max-width: 550px) {
  section#problem .problem__wrapper .problem__emphasis strong b {
    font-size: 6vw;
  }
}
section#problem .problem__wrapper .problem__exp {
  display: flex;
  align-items: end;
  gap: max(6rem, 30px);
  margin-top: min(-7rem, -20px);
  padding-bottom: max(13rem, 70px);
}
@media screen and (max-width: 768px) {
  section#problem .problem__wrapper .problem__exp {
    align-items: start;
    flex-direction: column;
    width: 100%;
    row-gap: 50px;
  }
}
section#problem .problem__wrapper .problem__exp--image {
  width: max(40%, 245px);
  height: auto;
  aspect-ratio: 21/31;
}
@media screen and (max-width: 768px) {
  section#problem .problem__wrapper .problem__exp--image {
    width: 90%;
    height: auto;
    aspect-ratio: 45/32;
  }
}
section#problem .problem__wrapper .problem__exp--image img {
  width: 100%;
  height: 100%;
}
section#problem .problem__wrapper .problem__exp--text {
  flex: 1;
}
@media screen and (max-width: 768px) {
  section#problem .problem__wrapper .problem__exp--text {
    width: 80%;
    margin: auto;
  }
}
section#problem .problem__wrapper .problem__exp--text h3 {
  margin-bottom: max(5rem, 30px);
  font-family: YakuHanMP, "Noto Serif JP", sans-serif;
  font-size: max(2.4rem, 20px);
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 550px) {
  section#problem .problem__wrapper .problem__exp--text h3 {
    font-size: 4vw;
    margin-bottom: 20px;
  }
}
section#problem .problem__wrapper .problem__exp--text h3 b {
  font-family: inherit;
  font-size: max(2.8rem, 24px);
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
@media screen and (max-width: 550px) {
  section#problem .problem__wrapper .problem__exp--text h3 b {
    font-size: 6vw;
  }
}
section#problem .problem__wrapper .problem__exp--text p {
  font-size: max(1.6rem, 13px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  section#problem .problem__wrapper .problem__exp--text p {
    font-size: max(2.3vw, 14px);
  }
  section#problem .problem__wrapper .problem__exp--text p br {
    display: none;
  }
  section#problem .problem__wrapper .problem__exp--text p span {
    display: inline;
  }
}

@media screen and (max-width: 1000px) {
  section#merit {
    width: 100%;
  }
}
section#merit .merit__wrapper {
  margin-top: 40px;
  margin-bottom: max(13rem, 70px);
}
section#merit .merit__wrapper .merit__title {
  width: max(50%, 300px);
  margin: auto;
  padding-bottom: max(6rem, 40px);
}
@media screen and (max-width: 550px) {
  section#merit .merit__wrapper .merit__title {
    width: 80%;
  }
}
section#merit .merit__wrapper .merit__content .merit__inner {
  display: flex;
  gap: max(2rem, 20px);
  padding: max(6rem, 50px) 0;
  border-top: 1px solid #bababa;
}
section#merit .merit__wrapper .merit__content .merit__inner:not(:last-of-type) {
  border-bottom: 1px solid #bababa;
}
@media screen and (max-width: 768px) {
  section#merit .merit__wrapper .merit__content .merit__inner {
    border-bottom: 1px solid #bababa;
  }
  section#merit .merit__wrapper .merit__content .merit__inner:first-of-type {
    padding-top: 0;
  }
}
section#merit .merit__wrapper .merit__content .merit__inner .merit__center {
  position: relative;
  flex: 1;
}
section#merit .merit__wrapper .merit__content .merit__inner .merit__center.focus .merit__center--inner {
  display: none;
}
@media screen and (max-width: 768px) {
  section#merit .merit__wrapper .merit__content .merit__inner .merit__center.focus .merit__center--inner {
    display: flex;
    align-items: end;
    justify-content: space-between;
  }
  section#merit .merit__wrapper .merit__content .merit__inner .merit__center.focus .merit__center--inner p span {
    display: inline-block;
  }
  section#merit .merit__wrapper .merit__content .merit__inner .merit__center.focus .merit__center--inner img {
    width: max(20%, 150px);
    transform: translateY(-10px);
  }
}
@media screen and (max-width: 550px) {
  section#merit .merit__wrapper .merit__content .merit__inner .merit__center.focus .merit__center--inner p {
    margin-top: 30px;
  }
  section#merit .merit__wrapper .merit__content .merit__inner .merit__center.focus .merit__center--inner img {
    align-self: start;
  }
}
section#merit .merit__wrapper .merit__content .merit__inner .merit__center h3 {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-bottom: max(1.5rem, 10px);
}
section#merit .merit__wrapper .merit__content .merit__inner .merit__center h3 img {
  display: none;
}
@media screen and (max-width: 768px) {
  section#merit .merit__wrapper .merit__content .merit__inner .merit__center h3 img {
    width: max(20%, 100px);
    display: inline-block;
  }
}
section#merit .merit__wrapper .merit__content .merit__inner .merit__center h3 > span {
  flex: 1;
  padding: max(0.5rem, 10px) max(3rem, 20px);
  background: #8e8e75;
  color: #fff;
  font-size: max(1.8rem, 14px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  section#merit .merit__wrapper .merit__content .merit__inner .merit__center h3 > span {
    font-size: 4vw;
  }
}
section#merit .merit__wrapper .merit__content .merit__inner .merit__center h3 > span.left {
  border-radius: 10px 10px 10px 0;
}
section#merit .merit__wrapper .merit__content .merit__inner .merit__center h3 > span.right {
  border-radius: 10px 10px 0 10px;
}
@media screen and (max-width: 768px) {
  section#merit .merit__wrapper .merit__content .merit__inner .merit__center h3 > span.right {
    border-radius: 10px 10px 10px 0;
  }
}
@media screen and (max-width: 768px) {
  section#merit .merit__wrapper .merit__content .merit__inner .merit__center h3 > span {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-self: stretch;
    height: auto;
  }
}
section#merit .merit__wrapper .merit__content .merit__inner .merit__center p {
  font-size: max(1.5rem, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
}
section#merit .merit__wrapper .merit__content .merit__inner .merit__center p b {
  font-size: 1.5em;
  font-weight: inherit;
  line-height: 1.5;
  letter-spacing: inherit;
}
@media screen and (max-width: 768px) {
  section#merit .merit__wrapper .merit__content .merit__inner .merit__center p span {
    display: inline;
  }
}
@media screen and (max-width: 768px) {
  section#merit .merit__wrapper .merit__content .merit__inner .merit__center p .pc {
    display: none;
  }
}
section#merit .merit__wrapper .merit__content .merit__inner .merit__left,
section#merit .merit__wrapper .merit__content .merit__inner .merit__right {
  width: 15%;
  align-self: end;
}
@media screen and (max-width: 768px) {
  section#merit .merit__wrapper .merit__content .merit__inner .merit__left,
  section#merit .merit__wrapper .merit__content .merit__inner .merit__right {
    display: none;
  }
}
section#merit .merit__wrapper .merit__content .merit__inner .merit__left img,
section#merit .merit__wrapper .merit__content .merit__inner .merit__right img {
  align-self: end;
}
section#merit .merit__wrapper .merit__content .merit__inner .merit__left.focus,
section#merit .merit__wrapper .merit__content .merit__inner .merit__right.focus {
  align-self: start;
}
section#merit .merit__wrapper .merit__content .merit__inner .merit__left.focus img,
section#merit .merit__wrapper .merit__content .merit__inner .merit__right.focus img {
  transform: translateY(-50%) scale(1.3);
}

section#summary {
  background-image: url(../images/front-summary-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
}
section#summary .summary__wrapper {
  padding-top: max(18rem, 100px);
  padding-bottom: max(18rem, 100px);
}
section#summary .summary__wrapper h2.summary__title {
  width: 40%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  section#summary .summary__wrapper h2.summary__title {
    width: 100%;
  }
}
section#summary .summary__wrapper p.summary__text {
  text-align: center;
  margin-top: max(5rem, 30px);
  margin-bottom: max(7rem, 30px);
  color: #fff;
  font-size: max(1.6rem, 12px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  section#summary .summary__wrapper p.summary__text {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    font-size: 2.5vw;
    text-align: left;
  }
  section#summary .summary__wrapper p.summary__text span {
    display: inline;
  }
}
@media screen and (max-width: 550px) {
  section#summary .summary__wrapper p.summary__text {
    font-size: max(3vw, 13px);
  }
}
section#summary .summary__wrapper .summary__image {
  width: max(50%, 400px);
  margin: auto;
}
@media screen and (max-width: 768px) {
  section#summary .summary__wrapper .summary__image {
    width: 100%;
  }
}

section#about {
  background: #babaa0;
}
section#about .about__wrapper {
  display: flex;
  flex-direction: column;
  gap: max(1rem, 10px);
  padding-top: max(9rem, 70px);
  padding-bottom: max(9rem, 70px);
}
section#about .about__wrapper .about__content {
  display: flex;
}
@media screen and (max-width: 1000px) {
  section#about .about__wrapper .about__content:nth-of-type(odd) {
    flex-direction: column;
  }
  section#about .about__wrapper .about__content:nth-of-type(even) {
    flex-direction: column-reverse;
  }
}
section#about .about__wrapper .about__content .about__image {
  width: 50%;
  background: #ededed;
}
@media screen and (max-width: 1000px) {
  section#about .about__wrapper .about__content .about__image {
    width: 100%;
    aspect-ratio: 35/24;
  }
}
section#about .about__wrapper .about__content .about__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section#about .about__wrapper .about__content .about__image.focus {
  text-align: center;
}
section#about .about__wrapper .about__content .about__image.focus img {
  width: auto;
}
section#about .about__wrapper .about__content .about__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
  padding: max(4%, 20px);
  background: #fff;
}
@media screen and (max-width: 1000px) {
  section#about .about__wrapper .about__content .about__text {
    width: 100%;
  }
}
section#about .about__wrapper .about__content .about__text h3 {
  font-size: max(2.2rem, 19px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: max(4rem, 30px);
}
@media screen and (max-width: 768px) {
  section#about .about__wrapper .about__content .about__text h3 {
    font-size: max(3.2vw, 17px);
    margin-bottom: 15px;
  }
}
section#about .about__wrapper .about__content .about__text p {
  font-size: max(1.6rem, 14px);
  font-weight: 400;
  line-height: 2.2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  section#about .about__wrapper .about__content .about__text p {
    font-size: max(2.5vw, 12px);
  }
}

section#info .info__wrapper {
  padding-top: max(12rem, 70px);
}
section#info .info__wrapper .info__intro {
  padding-bottom: max(9rem, 40px);
  background: linear-gradient(to bottom, transparent 50%, #e3e0dc 50%);
}
section#info .info__wrapper .info__intro--inner {
  display: flex;
  gap: max(10rem, 50px);
}
section#info .info__wrapper .info__intro--image {
  width: max(80rem, 300px);
  margin-top: max(4rem, 30px);
  aspect-ratio: 40/17;
}
section#info .info__wrapper .info__intro--image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section#info .info__wrapper .info__intro--text {
  width: max(15rem, 120px);
}
section#info .info__wrapper .info__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: max(4rem, 30px) max(4rem, 15px);
  margin-top: max(8rem, 50px);
  margin-bottom: max(8rem, 70px);
}
@media screen and (max-width: 768px) {
  section#info .info__wrapper .info__list {
    grid-template-columns: 1fr;
  }
}
section#info .info__wrapper .info__list .info__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
}
section#info .info__wrapper .info__list .info__item--link figure .imageBox {
  overflow: hidden;
  aspect-ratio: 53/30;
}
section#info .info__wrapper .info__list .info__item--link figure .imageBox img {
  width: 100%;
  height: 100%;
  transition: all 0.5s ease-in-out;
}
section#info .info__wrapper .info__list .info__item--link figure .textBox {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin: max(1.5rem, 10px) 0;
}
section#info .info__wrapper .info__list .info__item--link figure .textBox__title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  -moz-column-gap: max(1rem, 10px);
       column-gap: max(1rem, 10px);
}
@media screen and (max-width: 1000px) {
  section#info .info__wrapper .info__list .info__item--link figure .textBox__title {
    align-items: start;
    flex-direction: column;
  }
}
section#info .info__wrapper .info__list .info__item--link figure .textBox__title > span {
  height: auto;
  padding: 5px max(1rem, 10px);
  border: 1px solid #707070;
  color: #707070;
  font-size: max(1.3rem, 11px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  section#info .info__wrapper .info__list .info__item--link figure .textBox__title > span {
    font-size: max(2vw, 14px);
  }
}
section#info .info__wrapper .info__list .info__item--link figure .textBox__title p {
  font-size: max(1.8rem, 14px);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  section#info .info__wrapper .info__list .info__item--link figure .textBox__title p {
    font-size: max(2.8vw, 18px);
  }
}
section#info .info__wrapper .info__list .info__item--link figure .textBox__arrow {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: auto;
  height: 1lh;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #847b5d;
  transition: all 0.5s ease-in-out;
}
@media screen and (max-width: 768px) {
  section#info .info__wrapper .info__list .info__item--link figure .textBox__arrow {
    height: 1.5lh;
  }
}
section#info .info__wrapper .info__list .info__item--link figure .textBox__arrow img {
  height: 50%;
  width: auto;
}
section#info .info__wrapper .info__list .info__item--link:hover figure .imageBox img {
  transform: scale(1.1);
}
section#info .info__wrapper .info__list .info__item--link:hover figure .textBox .textBox__arrow {
  background: #333333;
}
section#info .info__wrapper .info__list .info__item--supplement {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: max(0.5rem, 5px) max(1.5rem, 15px);
  margin-bottom: max(1rem, 10px);
  background: #f0f0f0;
}
@media screen and (max-width: 768px) {
  section#info .info__wrapper .info__list .info__item--supplement {
    padding: 10px 15px;
  }
}
section#info .info__wrapper .info__list .info__item--supplement p {
  font-size: max(1.5rem, 12px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  section#info .info__wrapper .info__list .info__item--supplement p {
    font-size: max(2.4vw, 13px);
  }
}
section#info .info__wrapper .info__list .info__item--detail dl {
  display: flex;
  font-size: max(1.4rem, 12px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  section#info .info__wrapper .info__list .info__item--detail dl {
    font-size: max(2.3vw, 14px);
  }
}
section#info .info__wrapper .info__list .info__item--detail dl dt,
section#info .info__wrapper .info__list .info__item--detail dl dd {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
section#info .info__wrapper .info__list .info__item--detail dl dt {
  flex-shrink: 0;
  width: max(10rem, 80px);
}
@media screen and (max-width: 768px) {
  section#info .info__wrapper .info__list .info__item--detail dl dt {
    width: max(15vw, 80px);
  }
}
section#info .info__wrapper .info__list .info__item--detail dl dd {
  flex: 1;
}
@media screen and (max-width: 768px) {
  section#info .info__wrapper .info__list .info__item.more {
    display: block;
  }
}
section#info .info__wrapper .info__list .info__item.more .info__item--link figure .imageBox {
  border: 1px solid #babaa0;
}
@media screen and (max-width: 768px) {
  section#info .info__wrapper .info__list .info__item.more .info__item--link figure .imageBox {
    aspect-ratio: 11/2;
  }
}

section#flow .flow__bg {
  width: 100vw;
  aspect-ratio: 3/1;
}
@media screen and (max-width: 768px) {
  section#flow .flow__bg {
    aspect-ratio: 5/4;
  }
}
section#flow .flow__bg img {
  width: 100%;
  height: 100%;
  -o-object-position: bottom;
     object-position: bottom;
}
section#flow .flow__wrapper {
  padding-top: max(12rem, 50px);
  padding-bottom: max(12rem, 70px);
  background-image: url(../images/front-flow-bg.webp);
  background-size: cover;
}
section#flow .flow__wrapper .flow__title h2 {
  margin-bottom: max(3rem, 30px);
  font-family: YakuHanMP, "Noto Serif JP", sans-serif;
  font-size: max(2.8rem, 24px);
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 550px) {
  section#flow .flow__wrapper .flow__title h2 {
    font-size: max(6vw, 24px);
    margin-bottom: 10px;
  }
}
section#flow .flow__wrapper .flow__title p {
  font-size: max(1.8rem, 16px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: left;
}
@media screen and (max-width: 768px) {
  section#flow .flow__wrapper .flow__title p {
    font-size: max(2.7vw, 16px);
  }
  section#flow .flow__wrapper .flow__title p br {
    display: none;
  }
}
section#flow .flow__wrapper .flow__list {
  margin-top: max(9rem, 50px);
}
section#flow .flow__wrapper .flow__list dl.flow__item {
  display: flex;
  align-items: first baseline;
  padding: max(5rem, 30px) 0;
  border-bottom: 1px solid #bcbbbb;
}
@media screen and (max-width: 768px) {
  section#flow .flow__wrapper .flow__list dl.flow__item {
    flex-direction: column;
    align-items: start;
    row-gap: max(1.5rem, 10px);
  }
}
section#flow .flow__wrapper .flow__list dl.flow__item dt {
  flex-shrink: 0;
  width: max(20rem, 100px);
  display: flex;
  align-items: center;
  gap: max(1rem, 10px);
  font-family: YakuHanJP, "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
}
section#flow .flow__wrapper .flow__list dl.flow__item dt .text {
  font-size: max(1.5rem, 15px);
}
@media screen and (max-width: 768px) {
  section#flow .flow__wrapper .flow__list dl.flow__item dt .text {
    font-size: max(2.2vw, 14px);
  }
}
section#flow .flow__wrapper .flow__list dl.flow__item dt .number {
  font-size: max(2.6rem, 20px);
}
@media screen and (max-width: 768px) {
  section#flow .flow__wrapper .flow__list dl.flow__item dt .number {
    font-size: max(4vw, 30px);
  }
}
section#flow .flow__wrapper .flow__list dl.flow__item dd h3 {
  font-size: max(1.8rem, 16px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-bottom: max(1rem, 10px);
}
@media screen and (max-width: 768px) {
  section#flow .flow__wrapper .flow__list dl.flow__item dd h3 {
    font-size: max(2.7vw, 18px);
  }
}
section#flow .flow__wrapper .flow__list dl.flow__item dd p {
  font-size: max(1.6rem, 14px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  section#flow .flow__wrapper .flow__list dl.flow__item dd p {
    font-size: max(2.5vw, 14px);
  }
  section#flow .flow__wrapper .flow__list dl.flow__item dd p br {
    display: none;
  }
}

section#connect .connect__wrapper {
  display: flex;
}
@media screen and (max-width: 768px) {
  section#connect .connect__wrapper {
    flex-direction: column;
  }
}
section#connect .connect__wrapper .connect__content {
  position: relative;
  overflow: hidden;
}
section#connect .connect__wrapper .connect__content:first-of-type {
  border-right: 3px solid #847b5d;
}
@media screen and (max-width: 768px) {
  section#connect .connect__wrapper .connect__content:first-of-type {
    border: none;
  }
}
section#connect .connect__wrapper .connect__content--bg {
  transition: all 0.5s ease-in-out;
}
section#connect .connect__wrapper .connect__content--title {
  position: absolute;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  inset: 0;
  padding: 0 calc(5% + max(5rem, 40px));
  color: #fff;
}
section#connect .connect__wrapper .connect__content p {
  color: #fff;
  font-size: max(3.3rem, 20px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
}
section#connect .connect__wrapper .connect__content h3 {
  font-size: max(3.6rem, 24px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
section#connect .connect__wrapper .connect__content h3 small {
  font-size: max(2.5rem, 15px);
  font-weight: 400;
  margin-top: max(0.5rem, 5px);
}
section#connect .connect__wrapper .connect__content--arrow {
  position: absolute;
  display: grid;
  place-items: center;
  width: max(5rem, 40px);
  height: auto;
  top: 50%;
  right: 5%;
  aspect-ratio: 1/1;
  transform: translateY(-50%);
  background: #847b5d;
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
}
section#connect .connect__wrapper .connect__content--arrow img {
  height: 45%;
  width: auto;
}
section#connect .connect__wrapper .connect__content:hover .connect__content--bg {
  transform: scale(1.1);
}
section#connect .connect__wrapper .connect__content:hover .connect__content--arrow {
  background: #333333;
}/*# sourceMappingURL=style.css.map */