@charset "UTF-8";
/*「@use 'sass:map'」は、style.scssの先頭で読み込み*/
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #1c1b1b;
  -webkit-font-feature-settings: "halt" on;
          font-feature-settings: "halt" on;
  font-size: 1rem;
  font-weight: 500;
}
body.is-fixed {
  overflow: hidden;
}

.inner {
  padding-inline: min(5.3333333333vw, 20px);
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .inner {
    padding-inline: 30px;
    max-width: 1300px;
  }
}

@media screen and (min-width: 1024px) {
  a[href^="tel:"] {
    cursor: default;
    pointer-events: none;
    text-decoration: none;
    color: inherit;
  }
}

.hover {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .hover:hover {
    opacity: 0.7;
  }
}
.hover:focus-visible {
  opacity: 0.7;
}
@media (hover: none) {
  .hover {
    /* hoverが使えない端末 スマホ想定 */
  }
  .hover:active {
    opacity: 0.7;
  }
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 4px solid #527b7f;
  outline-offset: 2px;
}

.js-in-view {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, transform 1s ease;
  transition: opacity 1s ease, transform 1s ease, -webkit-transform 1s ease;
}
@media screen and (min-width: 1024px) {
  .js-in-view {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
}
.js-in-view.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.u-delay-100 {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.u-delay-200 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.animated__clipView {
  clip-path: inset(0 100% 0 0);
  -webkit-transition: clip-path 0.8s ease;
  transition: clip-path 0.8s ease;
}
.animated__clipView.js-show {
  clip-path: inset(0 0 0 0);
}

.wrapper {
  overflow-x: hidden;
}

.inline-block {
  display: inline-block;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  background: #ffffff;
}

.header__inner {
  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;
  height: 100%;
  padding-left: clamp(1.25rem, 1.875vw, 1.875rem);
}

.header__logo a {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.25rem, 1.75vw, 1.75rem);
  font-weight: 500;
  line-height: 1.42857;
}

/* PCナビゲーション */
.header__nav {
  display: none;
}
@media screen and (min-width: 1024px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: clamp(1.5rem, 2.34375vw, 3.625rem);
  }
}
@media screen and (min-width: 1440px) {
  .header__nav {
    gap: clamp(2rem, 3.625vw, 3.625rem);
  }
}

.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1.25rem, 1.953125vw, 2.25rem);
}
@media screen and (min-width: 1440px) {
  .header__list {
    gap: clamp(1.25rem, 2.25vw, 2.25rem);
  }
}

.header__link {
  font-size: clamp(1rem, 1.125vw, 1.125rem);
  font-weight: 500;
  line-height: 1.111;
  padding-block: 0.625rem;
  position: relative;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.header__link::before {
  content: "";
  background: #527b7f;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0.3125rem;
  margin: auto;
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .header__link:hover::before {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
.header__link:focus-visible::before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
@media (hover: none) {
  .header__link {
    /* hoverが使えない端末 スマホ想定 */
  }
  .header__link:active::before {
    -webkit-transform-origin: left top;
            transform-origin: left top;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

.header__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
  background: #527b7f;
  border: 2px solid #527b7f;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .header__btn:hover {
    background: #ffffff;
  }
}
.header__btn:focus-visible {
  background: #ffffff;
}
.header__btn a {
  color: #ffffff;
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: clamp(1.25rem, 2.5vw, 2.5rem);
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .header__btn a:hover {
    color: #527b7f;
  }
}
.header__btn a:focus-visible {
  color: #527b7f;
}

/* ---hamburger---------------------------- */
.header__hamburger {
  width: 80px;
  height: 80px;
  background: #527b7f;
  border: none;
  cursor: pointer;
  z-index: 1100;
  position: relative;
}

@media screen and (min-width: 1024px) {
  .header__hamburger {
    display: none;
  }
}
.header__hamburger span {
  position: absolute;
  left: 20px;
  width: 40px;
  height: 1px;
  background: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header__hamburger span:nth-of-type(1) {
  top: 30px;
}
.header__hamburger span:nth-of-type(2) {
  top: 40px;
}
.header__hamburger span:nth-of-type(3) {
  top: 50px;
}

/* JSで付与：クリック時の「×」アニメーション */
.header__hamburger.is-checked span:nth-child(1) {
  top: 40px;
  -webkit-transform: rotate(31deg);
          transform: rotate(31deg);
}

.header__hamburger.is-checked span:nth-child(2) {
  display: none;
}

.header__hamburger.is-checked span:nth-child(3) {
  top: 40px;
  -webkit-transform: rotate(-31deg);
          transform: rotate(-31deg);
}

/* ---drawer-------------------------------- */
.drawer {
  position: fixed;
  top: 80px;
  right: -100%;
  width: 100%;
  height: calc(var(--vh, 1vh) * 100 - 80px);
  z-index: 1050;
  background: #ffffff;
  -webkit-transition: right 0.4s ease;
  transition: right 0.4s ease;
  overflow: hidden;
}
.drawer.is-checked {
  right: 0;
}

.drawer__inner {
  padding-inline: clamp(1.25rem, 8vw, 5rem);
  margin-inline: auto;
  overflow-y: auto;
  padding-block: clamp(2.5rem, 10vw, 3.125rem);
  height: 100%;
}

.drawer__nav {
  width: clamp(12.5rem, 84vw, 26.25rem);
}

.drawer__link {
  font-size: clamp(1.25rem, 4.8vw, 1.5rem);
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-block: clamp(1.25rem, 6vw, 1.875rem);
}

.drawer__btn {
  margin-top: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: clamp(5rem, 24vw, 7.5rem);
  background: #527b7f;
  border: 2px solid #527b7f;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .drawer__btn:hover {
    background: #ffffff;
  }
}
.drawer__btn:focus-visible {
  background: #ffffff;
}
.drawer__btn a {
  color: #ffffff;
  font-size: clamp(1.25rem, 6vw, 1.875rem);
  font-weight: 500;
  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;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) and (pointer: fine) {
  .drawer__btn a:hover {
    color: #527b7f;
  }
}
.drawer__btn a:focus-visible {
  color: #527b7f;
}

/* ---main---------------------------------------- */
.main {
  margin-top: 80px;
}

/* ---fv---------------------------------------- */
.fv {
  width: 100%;
  height: calc(var(--vh, 1vh) * 100 - 80px);
  position: relative;
  background-image: url(../img/fv-sp.jpg);
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1024px) {
  .fv {
    background-image: url(../img/fv.jpg);
    background-position: right bottom;
  }
}

.fv__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.625rem;
  position: absolute;
  left: 0;
  top: 16%;
}
@media screen and (min-width: 1024px) {
  .fv__heading {
    left: clamp(1.75rem, 11.25vw, 18.75rem);
    top: 30%;
  }
}

.fv__heading-text {
  position: relative;
  overflow: hidden;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.fv__heading-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  z-index: 1;
}

.fv__heading-animation {
  position: relative;
  z-index: 2;
  display: inline-block;
  font-size: clamp(1.75rem, 6.4vw, 3.125rem);
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  line-height: 1.9;
  padding-inline: clamp(1.25rem, 5.2vw, 1.875rem);
}
@media screen and (min-width: 1024px) {
  .fv__heading-animation {
    font-size: clamp(1.75rem, 3.125vw, 3.125rem);
    padding-inline: clamp(1.25rem, 1.875vw, 1.875rem);
  }
}
.fv__heading-animation .char {
  display: inline-block;
  will-change: transform, opacity;
}

@media screen and (min-width: 1024px) {
  .fv__heading-text--sp {
    display: none;
  }
}

.fv__heading-text--pc {
  display: none;
}
@media screen and (min-width: 1024px) {
  .fv__heading-text--pc {
    display: block;
  }
}

/* ---section---------------------------------------- */
.section-title-en {
  color: #1c1b1b;
  font-family: "Inter", sans-serif;
  font-size: clamp(2.5rem, 12.8vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.08rem;
  text-transform: uppercase;
  opacity: 0.1;
}
.section-title-en--white {
  color: #ffffff;
}
@media screen and (min-width: 1024px) {
  .section-title-en {
    font-size: clamp(6.25rem, 8.75vw, 8.75rem);
  }
}

.section-contents {
  margin-top: 1.625rem;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 1024px) {
  .section-contents {
    margin-top: -3.5rem;
    padding-inline: clamp(1.875rem, 4.375vw, 4.375rem);
  }
}
@media screen and (min-width: 1440px) {
  .section-contents {
    margin-top: -3.75rem;
  }
}

.section-title {
  color: #1c1b1b;
  font-family: "Noto Serif JP", serif;
  font-size: 2.125rem;
  font-weight: 600;
  line-height: 1.17;
}
.section-title--white {
  color: #ffffff;
}
@media screen and (min-width: 1024px) {
  .section-title {
    font-size: 2.5rem;
  }
}

/* ---achievements---------------------------------------- */
.achievements {
  background: #1c1b1b;
  position: relative;
  color: #ffffff;
  padding-top: 0.625rem;
}

.achievements__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
  margin-top: 1.625rem;
}
@media screen and (min-width: 1024px) {
  .achievements__contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-top: -3.5rem;
  }
}
@media screen and (min-width: 1440px) {
  .achievements__contents {
    margin-top: -3.75rem;
  }
}

.achievements__textBox {
  padding-inline: 1.25rem;
}
@media screen and (min-width: 1024px) {
  .achievements__textBox {
    padding-bottom: clamp(3.125rem, 6.25vw, 7.5rem);
    padding-inline: clamp(1.875rem, 4.375vw, 4.375rem);
  }
}
@media screen and (min-width: 1440px) {
  .achievements__textBox {
    -ms-flex-item-align: stretch;
        align-self: stretch;
  }
}

.achievements__body {
  margin-top: 2.5rem;
}

.achievements__text {
  line-height: 1.875;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}
.achievements__text::before {
  content: "・";
  padding-left: 0.25rem;
}

.achievements__imgBox {
  position: relative;
  margin-right: calc(50% - 50vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (min-width: 1920px) {
  .achievements__imgBox {
    margin-inline: auto -21.25rem;
  }
}

.achievements__img1 {
  position: relative;
  width: clamp(6.25rem, 60.2vw, 56.4375rem);
}
.achievements__img1 img {
  aspect-ratio: 301/251;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 1024px) {
  .achievements__img1 {
    width: clamp(10.9375rem, 21.875vw, 26.25rem);
  }
  .achievements__img1 img {
    aspect-ratio: 350/370;
  }
}

.achievements__img2 {
  position: absolute;
  right: clamp(0.41625rem, 4vw, 3.75rem);
  top: clamp(2.9375rem, 28.2vw, 26.625rem);
  width: clamp(9.5625rem, 92vw, 86.25rem);
}
.achievements__img2 img {
  aspect-ratio: 460/319;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 1024px) {
  .achievements__img2 {
    right: clamp(1.5625rem, 3.125vw, 3.75rem);
    top: clamp(1.6875rem, 3.375vw, 4.0625rem);
    width: clamp(18.75rem, 37.5vw, 45rem);
  }
  .achievements__img2 img {
    aspect-ratio: 600/1290;
  }
}

/* ---profile---------------------------------------- */
.profile {
  padding-top: clamp(3.625rem, 34.8vw, 32.625rem);
  padding-bottom: 6.25rem;
}
@media screen and (min-width: 1024px) {
  .profile {
    padding-top: 0.625rem;
  }
}
@media screen and (min-width: 1440px) {
  .profile {
    padding-bottom: clamp(6.25rem, 7.5vw, 12.5rem);
  }
}

.profile__imgBox {
  margin-top: 2rem;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .profile__imgBox {
    width: clamp(25rem, 39.0625vw, 28.75rem);
    margin-top: 2.5rem;
  }
}
.profile__imgBox img {
  aspect-ratio: 100/71;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.profile__textBox {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
@media screen and (min-width: 1024px) {
  .profile__textBox {
    width: clamp(28.75rem, 44.921875vw, 40.125rem);
  }
}

.profile__text {
  line-height: 1.875;
}
.profile__text br {
  display: none;
}
@media screen and (min-width: 1440px) {
  .profile__text {
    line-height: 1.75;
  }
  .profile__text br {
    display: inline;
  }
}

/* ---policy---------------------------------------- */
.policy {
  padding-top: 0.625rem;
  padding-bottom: 16.875rem;
  background-image: url(../img/policy-sp.jpg);
  background-size: cover;
  background-position: right bottom;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .policy {
    background-image: url(../img/policy.jpg);
    background-position: center bottom;
  }
}
@media screen and (min-width: 1024px) {
  .policy {
    padding-bottom: 8.25rem;
  }
}
@media screen and (min-width: 1920px) {
  .policy {
    background-position: center;
  }
}
.policy .section-title-en--white {
  opacity: 0.2;
}

.policy__textBox {
  margin-top: 2.5rem;
}

.policy__text {
  color: #ffffff;
  line-height: 1.875;
}
.policy__text br {
  display: none;
}
@media screen and (min-width: 1024px) {
  .policy__text {
    line-height: 1.75;
  }
  .policy__text br {
    display: inline;
  }
}

.policy__contents {
  margin-top: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
}

.policy__item {
  padding: 0.25rem 0.625rem;
  background: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 1024px) {
  .policy__item {
    font-size: 1.75rem;
  }
}

/* ---service---------------------------------------- */
.service {
  padding-top: 0.625rem;
}

.service__contents {
  margin-top: 3.375rem;
}

.service__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
}

.service__item {
  border: 1px solid #527b7f;
  background: #ffffff;
  position: relative;
  padding-block: 2.375rem 1.625rem;
  padding-inline: clamp(1.25rem, 6vw, 1.875rem);
}
@media screen and (min-width: 1024px) {
  .service__item {
    padding-block: 3rem 2.5rem;
    padding-left: clamp(1.25rem, 3.75vw, 3.75rem);
    padding-right: clamp(1.25rem, 3.125vw, 3.125rem);
    min-height: 11.25rem;
    display: grid;
    place-content: center;
  }
}

.service__number {
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  background: #527b7f;
  width: 5.75rem;
  height: 5.75rem;
  position: absolute;
  top: 0;
  left: 0;
}
.service__number p {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
  position: absolute;
  top: 14%;
  left: 14%;
}

.service__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.875rem;
}
@media screen and (min-width: 1024px) {
  .service__body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: clamp(2.5rem, 3.75vw, 3.75rem);
  }
}

.service__body-title {
  text-align: center;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.36364;
  padding-inline: 1rem;
}
@media screen and (min-width: 1024px) {
  .service__body-title {
    text-align: start;
    width: 19.375rem;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-inline: 0;
  }
  .service__body-title br {
    display: none;
  }
}

.service__body-text {
  line-height: 1.75;
}

.service__img {
  margin-top: -10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.service__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .service__img {
    margin-top: -3.75rem;
  }
}
@media screen and (min-width: 1440px) {
  .service__img {
    margin-top: -17.5rem;
  }
}

/* ---bottom---------------------------------------- */
.bottom {
  padding-block: 0.625rem 8.25rem;
  background: #1c1b1b;
}

/* ---plan---------------------------------------- */
.plan__contents {
  padding-bottom: 4rem;
  border-bottom: 2px solid #707070;
}
@media screen and (min-width: 768px) {
  .plan__contents {
    padding-bottom: clamp(5rem, 8.5vw, 8.5rem);
  }
}

.plan__text {
  margin-top: 2.5rem;
  color: #ffffff;
  line-height: 1.875; /* 187.5% */
}
.plan__text br {
  display: none;
}
@media screen and (min-width: 640px) {
  .plan__text br {
    display: inline;
  }
}

/* ---info---------------------------------------- */
.info {
  padding-top: 4.625rem;
}
@media screen and (min-width: 768px) {
  .info {
    padding-top: 3.75rem;
  }
}

.info__contents {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .info__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: clamp(4rem, 9.1145833333vw, 12.5rem);
  }
}
@media screen and (min-width: 1024px) {
  .info__contents {
    gap: clamp(4rem, 13.375vw, 13.375rem);
  }
}

.info__title {
  color: #ffffff;
  font-family: "Noto Serif JP", serif;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.33333;
}

.about__contents {
  margin-top: 1.5rem;
  color: #ffffff;
  line-height: 1.875;
}

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

.about__textShrink {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.cta {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .cta {
    margin-top: 0;
  }
}

.cta__contents {
  margin-top: 1.5rem;
}

.cta__text {
  color: #ffffff;
  line-height: 1.875;
}
.cta__text br {
  display: none;
}
@media screen and (min-width: 640px) {
  .cta__text br {
    display: inline;
  }
}

.cta__btn {
  margin-top: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: clamp(5rem, 24vw, 7.5rem);
  background: #527b7f;
  border: 2px solid #527b7f;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  max-width: 26.25rem;
}
@media screen and (min-width: 768px) {
  .cta__btn {
    width: 16.25rem;
    height: 3.75rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .cta__btn:hover {
    background: #ffffff;
  }
}
.cta__btn:focus-visible {
  background: #ffffff;
}
.cta__btn a {
  color: #ffffff;
  font-size: clamp(1.25rem, 6vw, 1.875rem);
  font-weight: 500;
  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;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .cta__btn a {
    font-size: 1.125rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .cta__btn a:hover {
    color: #527b7f;
  }
}
.cta__btn a:focus-visible {
  color: #527b7f;
}

.cta__note {
  margin-top: 1.875rem;
  color: #ffffff;
  line-height: 1.875;
}

/* ---footer---------------------------------------- */
.footer {
  padding-block: 1.25rem;
  background: #527b7f;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-inline: 1.875rem 0.875rem;
  }
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.footer__logo {
  display: none;
  color: #ffffff;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.125rem, 1.75vw, 1.75rem);
  line-height: 1.42857;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    display: block;
  }
}

.footer__copyright {
  color: #ffffff;
  font-family: "Noto Serif JP", serif;
  line-height: 2.5;
  text-transform: capitalize;
}