@charset "UTF-8";
/*********************
/BASE
*********************/
html,
body {
  overflow-x: hidden;
}

body {
  background: #fff;
  color: #333;
  font-family: "Shippori Antique", sans-serif;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 800px) {
  body {
    line-height: 2.1875;
  }
}

@media screen and (max-width: 599px) {
  .hidden-sp {
    display: none;
  }
}
@media screen and (min-width: 800px) {
  .hidden-sp {
    display: block;
  }
}

@media screen and (min-width: 600px) {
  .hidden-sm {
    display: none;
  }
}

@media screen and (min-width: 800px) {
  .hidden-md {
    display: none;
  }
}

@media screen and (min-width: 1000px) {
  .hidden-lg {
    display: none;
  }
}

@media screen and (min-width: 1220px) {
  .hidden-xl {
    display: none;
  }
}

.font-weight-bold {
  font-weight: bold;
}

.link-underline {
  text-decoration: underline;
  text-underline-offset: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.link-underline:hover {
  opacity: 0.7;
}

/*********************
共通
*********************/
.l-inner {
  margin-inline: auto;
  width: 90%;
  max-width: 1200px;
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.scroll-margin-top {
  scroll-margin-top: 80px;
}
@media screen and (min-width: 800px) {
  .scroll-margin-top {
    scroll-margin-top: 150px;
  }
}

/*********************
ANIMATION
*********************/
.fadein {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transition-duration: 1.5s;
          transition-duration: 1.5s;
}

.fadein.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.mv-fadein {
  opacity: 0;
  -webkit-transition: opacity 3s ease, -webkit-transform 5s ease;
  transition: opacity 3s ease, -webkit-transform 5s ease;
  transition: opacity 3s ease, transform 5s ease;
  transition: opacity 3s ease, transform 5s ease, -webkit-transform 5s ease;
}
.mv-fadein.is-active {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/*********************
header
*********************/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 50;
  background-color: #fff;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 800px) {
  .header {
    height: 150px;
    background-color: transparent;
  }
}

.header__inner {
  padding-inline: 20px 0px;
  margin-inline: auto;
  height: 100%;
}
@media screen and (min-width: 800px) {
  .header__inner {
    padding-inline: 42px;
  }
}

.header__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;
  height: 100%;
  background: transparent;
  -webkit-transition: background-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.header__logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo img {
  width: 73px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 800px) {
  .header__logo img {
    width: 120px;
  }
}

.header__button {
  width: 80px;
  height: 80px;
  background-color: #00afcc;
  display: grid;
  place-items: center;
}
@media screen and (min-width: 800px) {
  .header__button {
    width: 250px;
    height: 60px;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .header__button:hover {
    opacity: 0.9;
  }
}

.header__button-icon {
  width: 30px;
  height: 30px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 800px) {
  .header__button-icon {
    display: none;
  }
}

.header__button-text {
  display: none;
}
@media screen and (min-width: 800px) {
  .header__button-text {
    display: block;
    font-size: 16px;
    color: #fff;
  }
}

.header.is-scrolled {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

/*********************
LP（Figma PC_TOP 1:144）
*********************/
.lp {
  background: #fff;
}

/* KV */
.t-kv__inner {
  position: relative;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 800px) {
  .t-kv__inner {
    display: grid;
    grid-template-columns: 200px 1fr;
  }
}

.t-kv__side {
  display: none;
}
@media screen and (min-width: 800px) {
  .t-kv__side {
    display: block;
    width: 200px;
    height: 100%;
  }
}

.t-kv__visual {
  background-color: #2c4198;
}
@media screen and (min-width: 800px) {
  .t-kv__visual {
    position: relative;
    background-color: transparent;
  }
}

/* 青背景レイヤー */
@media screen and (min-width: 800px) {
  .t-kv__visual::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 84%;
    background: #2c4198;
    z-index: 0;
  }
}

.t-kv__image-wrapper {
  margin-top: 80px;
  background-color: #2c4198;
  position: relative;
  padding-bottom: 240px;
}
@media screen and (min-width: 800px) {
  .t-kv__image-wrapper {
    overflow: hidden;
    padding-top: 150px;
    margin-top: 0;
    width: 87.5%;
    margin-left: auto;
    padding-bottom: 0;
    background-color: transparent;
  }
}

.t-kv__image {
  display: block;
  width: 86%;
  margin-left: auto;
  margin-right: -2px;
}
@media screen and (min-width: 800px) {
  .t-kv__image {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}

.t-kv__image img {
  display: block;
  width: 100%;
  height: auto;
}

.t-kv__copy {
  position: absolute;
  bottom: 6%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 90%;
}
@media screen and (min-width: 800px) {
  .t-kv__copy {
    position: absolute;
    top: 50%;
    bottom: auto;
    left: 85px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.t-kv__title {
  color: #fff;
  font-size: clamp(1.875rem, -2.2629310345rem + 8.6206896552vw, 3.125rem);
  line-height: 1.62;
  letter-spacing: 0.2em;
}

.t-kv__lead {
  margin-top: 40px;
  color: #fff;
  font-size: clamp(1rem, 0.1724137931rem + 1.724137931vw, 1.25rem);
  line-height: 1.7;
  letter-spacing: 0.2em;
}

.t-kv__en {
  margin-top: 16px;
  color: #fff;
  font-size: clamp(0.875rem, 0.0474137931rem + 1.724137931vw, 1.125rem);
  line-height: 1.94;
}
@media screen and (min-width: 800px) {
  .t-kv__en {
    margin-top: 0;
  }
}

/* コンセプト */
.t-concept {
  padding-top: clamp(4rem, -7.5862068966rem + 24.1379310345vw, 7.5rem);
}

.t-concept__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 800px) {
  .t-concept__grid {
    grid-template-columns: minmax(0, 390px) 1fr;
    gap: 40px;
  }
}

.t-concept__logo {
  max-width: 70%;
  margin-inline: auto;
}
@media screen and (min-width: 800px) {
  .t-concept__logo {
    margin-bottom: 0;
  }
}

.t-concept__description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(1.375rem, -2.349137931rem + 7.7586206897vw, 2.5rem);
}

.t-concept__title {
  color: #2c4198;
  font-size: clamp(1.25rem, -0.8189655172rem + 4.3103448276vw, 1.875rem);
  line-height: 1.8;
}

.t-concept__text {
  color: #333;
  font-size: 16px;
  line-height: 2;
}
@media screen and (min-width: 800px) {
  .t-concept__text {
    line-height: 2.5;
  }
}

/* 性能 */
.t-concept-perf {
  padding-top: clamp(3.125rem, -7.2198275862rem + 21.5517241379vw, 6.25rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 27px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 800px) {
  .t-concept-perf {
    grid-template-columns: 4fr 3fr;
    gap: 8%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.t-concept-perf__image {
  width: 80%;
  margin-inline: auto;
}
@media screen and (min-width: 800px) {
  .t-concept-perf__image {
    width: 100%;
  }
}

.t-concept-perf__title {
  max-width: 720px;
  color: #00afcc;
  font-size: clamp(1.375rem, -0.2801724138rem + 3.4482758621vw, 1.875rem);
  line-height: 1.8;
  letter-spacing: 0.2em;
  text-align: left;
  width: 100%;
}
@media screen and (min-width: 800px) {
  .t-concept-perf__title {
    width: auto;
  }
}

.t-concept-perf__description {
  margin-top: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1.625rem, -2.3060344828rem + 8.1896551724vw, 2.8125rem);
}
@media screen and (min-width: 800px) {
  .t-concept-perf__description {
    margin-top: 0;
  }
}

.t-concept-perf__diagram {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.t-concept-perf__diagram img {
  width: 310px;
}
@media screen and (min-width: 800px) {
  .t-concept-perf__diagram img {
    width: 476px;
  }
}

.t-concept-performance {
  position: relative;
  z-index: 1;
  padding-bottom: 420px;
  overflow: hidden;
}
@media screen and (min-width: 800px) {
  .t-concept-performance {
    margin-top: 100px;
    padding-bottom: 1000px;
  }
}
@media screen and (min-width: 1220px) {
  .t-concept-performance {
    padding-bottom: 0;
    overflow: visible;
    margin-top: 300px;
  }
}

.t-concept-performance__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 660px;
  min-height: 0;
  overflow: hidden;
  z-index: 0;
  aspect-ratio: 1600/1514;
}
@media screen and (min-width: 800px) {
  .t-concept-performance__bg {
    position: static;
    bottom: auto;
    left: auto;
    width: 100%;
    height: auto;
    min-height: auto;
    overflow: visible;
    z-index: auto;
  }
}

.t-concept-performance__bg img {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  min-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 46% top;
     object-position: 46% top;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 1220px) {
  .t-concept-performance__bg img {
    position: static;
    top: auto;
    left: auto;
    min-width: 0;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 50% 50%;
       object-position: 50% 50%;
    -webkit-transform: none;
            transform: none;
  }
}

.t-concept-performance__content {
  position: relative;
  padding-top: clamp(3.125rem, -3.9094827586rem + 14.6551724138vw, 5.25rem);
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 800px) {
  .t-concept-performance__content {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%;
  }
}
@media screen and (min-width: 1220px) {
  .t-concept-performance__content {
    top: -300px;
  }
}

.t-concept-performance__grid-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(3.125rem, -1.0129310345rem + 8.6206896552vw, 4.375rem);
}

.t-concept-performance__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1097px;
  margin-inline: auto;
}
@media screen and (min-width: 800px) {
  .t-concept-performance__grid {
    grid-template-columns: 4fr 1fr;
    gap: 12px;
  }
}

.t-concept-performance__label {
  display: inline-block;
  padding-right: 28px;
  border-bottom: 3px solid #b2b2b2;
  color: #b2b2b2;
  font-size: clamp(0.875rem, 0.0474137931rem + 1.724137931vw, 1.125rem);
  line-height: 2;
}
@media screen and (min-width: 800px) {
  .t-concept-performance__label {
    line-height: 3;
  }
}

.t-concept-performance__title {
  margin-top: 16px;
  color: #00afcc;
  font-size: clamp(1.25rem, -0.8189655172rem + 4.3103448276vw, 1.875rem);
  line-height: 1.8;
  letter-spacing: 0.2em;
}

.t-concept-performance__text {
  margin-top: clamp(0.5rem, -2.8103448276rem + 6.8965517241vw, 1.5rem);
  color: #333;
}

.t-concept-performance__figure {
  width: 235px;
  margin-inline: auto;
  aspect-ratio: 470/424;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 800px) {
  .t-concept-performance__figure {
    width: 200px;
  }
}
@media screen and (min-width: 1441px) {
  .t-concept-performance__figure {
    width: 235px;
  }
}

/* 特徴 */
.t-features {
  padding-top: clamp(2.5rem, -9.9137931034rem + 25.8620689655vw, 6.25rem);
  padding-bottom: 80px;
  background: #2c4198;
}

.t-features__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(3rem, -7.7586206897rem + 22.4137931034vw, 6.25rem);
}

.t-features-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media screen and (min-width: 800px) {
  .t-features-card {
    grid-template-columns: 6fr 5fr;
    gap: 6%;
  }
}

@media screen and (min-width: 800px) {
  .t-features-card--reverse {
    grid-template-columns: 5fr 6fr;
    grid-template-areas: "img text";
  }
}

@media screen and (min-width: 800px) {
  .t-features-card--reverse .t-features-card__figure {
    grid-area: img;
  }
  .t-features-card--reverse .t-features-card__description {
    grid-area: text;
  }
}
.t-features-card__figure img {
  width: 100%;
}

.t-features-card__label {
  display: inline-block;
  padding-right: 28px;
  border-bottom: 3px solid #fff;
  color: #fff;
  font-size: clamp(0.875rem, 0.0474137931rem + 1.724137931vw, 1.125rem);
  line-height: 3;
}

.t-features-card__catch {
  margin-top: 16px;
  color: #fff;
  font-size: clamp(1.25rem, -0.8189655172rem + 4.3103448276vw, 1.875rem);
  line-height: 1.8;
  letter-spacing: 0.2em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.t-features-card__badge {
  margin-top: 40px;
  display: inline-block;
  padding: 8px 16px;
  background: #fff;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: 0.2em;
}

.t-features-card__text {
  margin-top: 20px;
  color: #fff;
}

/* 設備 */
.t-amenities {
  padding-block: 64px 80px;
  background: #f5f5f5;
}

.t-section__title {
  margin-bottom: 40px;
}

.t-section__title-ja {
  margin-top: 20px;
  color: #2c4198;
  font-size: clamp(1.375rem, -0.2801724138rem + 3.4482758621vw, 1.875rem);
  line-height: 1.8;
  letter-spacing: 0.2em;
}

.t-section__title-en {
  display: inline-block;
  padding-right: 28px;
  border-bottom: 3px solid #b2b2b2;
  max-width: 140px;
  color: #b2b2b2;
  font-size: clamp(0.875rem, 0.0474137931rem + 1.724137931vw, 1.125rem);
  line-height: 3;
}

.t-amenities__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 6%;
}
@media screen and (min-width: 800px) {
  .t-amenities__items {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 8%;
  }
}
@media screen and (min-width: 1000px) {
  .t-amenities__items {
    grid-template-columns: repeat(4, 1fr);
    gap: 60px 5%;
  }
}

.t-amenities-item__figure {
  position: relative;
  overflow: hidden;
}

.t-amenities-item__figure img {
  width: 100%;
}

.t-amenities-item__num {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  background: #2c4198;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  display: grid;
  place-items: center;
}

.t-amenities-item__title {
  margin-top: clamp(0.5rem, -0.3275862069rem + 1.724137931vw, 0.75rem);
  color: #2c4198;
  font-size: clamp(1rem, 0.1724137931rem + 1.724137931vw, 1.25rem);
  line-height: 1.5;
}

.t-amenities-item__text {
  margin-top: 6px;
  color: #333;
  font-size: clamp(0.875rem, 0.4612068966rem + 0.8620689655vw, 1rem);
  line-height: 1.7;
}
@media screen and (min-width: 800px) {
  .t-amenities-item__text {
    line-height: 1.875;
  }
}

/* お問い合わせ */
.t-contact {
  margin-bottom: clamp(2.5rem, -5.775862069rem + 17.2413793103vw, 5rem);
}

.t-contact__bg-wrapper {
  position: relative;
  z-index: 0;
}

.t-contact__bg-wrapper::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 78%;
  background: #f5f5f5;
  z-index: -1;
}

.t-contact__bg {
  max-width: 1400px;
  margin-inline: calc((100vw - 100%) / -2);
}
@media screen and (min-width: 800px) {
  .t-contact__bg {
    margin-left: auto;
    margin-right: 0 calc((100vw - 100%) / -2);
  }
}

.t-contact__bg img {
  min-width: 100%;
  width: auto;
  height: 335px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 80% top;
     object-position: 80% top;
  min-width: 100%;
}
@media screen and (min-width: 800px) {
  .t-contact__bg img {
    width: 100%;
    height: 100%;
  }
}

.t-contact__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 32px;
  padding-top: 32px;
}
@media screen and (min-width: 800px) {
  .t-contact__title {
    padding-top: 120px;
  }
}

@media screen and (min-width: 800px) {
  .t-contact__content {
    margin-top: -300px;
    margin-right: auto;
    display: grid;
    place-items: center;
    position: relative;
  }
}

@media screen and (min-width: 800px) {
  .t-contact__content::after {
    position: absolute;
    content: "";
    display: block;
    width: 58%;
    height: 100%;
    top: 0;
    left: calc((100vw - 100%) / -2);
    background: #fff;
    z-index: 0;
  }
}
@media screen and (min-width: 800px) and (min-width: 800px) {
  .t-contact__content::after {
    width: 58%;
  }
}

@media screen and (min-width: 800px) {
  .t-contact__content-inner {
    max-width: 870px;
    position: relative;
    z-index: 1;
    margin-inline: auto;
  }
}

.t-contact__lead {
  margin-top: 16px;
  color: #333;
  font-size: 16px;
}

.t-contact__form {
  margin-top: 40px;
  max-width: 870px;
  margin-inline: auto;
}

.t-form__rows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1.5rem, -1.8103448276rem + 6.8965517241vw, 2.5rem);
}

.t-form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
}
@media screen and (min-width: 800px) {
  .t-form__row {
    display: grid;
    grid-template-columns: 210px 1fr;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 30px;
  }
}

@media screen and (min-width: 800px) {
  .t-form__row--textarea {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.t-form__label {
  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;
  gap: 12px;
  padding-top: 8px;
}

.t-form__name {
  font-size: 16px;
  line-height: 1.875;
  color: #333;
}

.t-form__req {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 50px;
  min-height: 30px;
  padding: 0 8px;
  background: #2c4198;
  color: #fff;
  font-size: 13px;
  line-height: 2.3;
}

.t-form__input,
.t-form__textarea {
  width: 100%;
  padding: 12px 16px;
  background: #f5f5f5;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  border: none;
}

.t-form__textarea {
  min-height: 200px;
  resize: vertical;
}

.t-form__privacy {
  margin-top: clamp(2.5rem, -5.775862069rem + 17.2413793103vw, 5rem);
  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;
  gap: 12px;
  margin-bottom: 32px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
}
.t-form__privacy input {
  margin-top: 4px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.t-form__privacy-text {
  font-weight: 400;
}

.t-form__privacy-link {
  text-decoration: underline;
  text-underline-offset: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.t-form__privacy-link:hover {
  opacity: 0.7;
}

.t-form__note {
  margin: 0 0 16px;
  color: #f00;
  font-size: 16px;
  text-align: center;
}

.t-form__submit-wrap {
  margin-top: clamp(4rem, -3.4482758621rem + 15.5172413793vw, 6.25rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  min-width: 250px;
  padding: 20px 40px;
  border: none;
  background: #00afcc;
  color: #fff;
  font-size: 16px;
  line-height: 1.25;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.c-btn:hover {
  opacity: 0.9;
}

.t-form__submit-arrow {
  display: inline-block;
  width: 32px;
  height: 8px;
  background: url("../images/common/arrow-white2.svg") no-repeat center/contain;
}

.t-contact-bottom__text {
  margin-top: clamp(4rem, -7.5862068966rem + 24.1379310345vw, 7.5rem);
  text-align: left;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 800px) {
  .t-contact-bottom__text {
    text-align: center;
  }
}

/* フッター */
.t-footer {
  padding-top: 56px;
  padding-right: 24px;
  padding-bottom: 28px;
  padding-left: 24px;
  background: #2c4198;
  color: #fff;
}

.t-footer__brand {
  display: grid;
  place-items: center;
}

.t-footer__logo {
  width: 210px;
  height: auto;
}

.t-footer__meta {
  margin-top: clamp(3.375rem, 1.3060344828rem + 4.3103448276vw, 4rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media screen and (min-width: 1220px) {
  .t-footer__meta {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 40px;
  }
}

.t-footer__company {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.t-footer__company-mark {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.t-footer__company-text {
  font-size: 19px;
  font-weight: 500;
  font-family: noto-sans-jp, sans-serif;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.t-footer__address {
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 800px) {
  .t-footer__address {
    -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;
  }
}

.t-footer__tel-label {
  margin-left: 8px;
}

.t-footer__bottom {
  margin-top: clamp(2rem, 0.3448275862rem + 3.4482758621vw, 2.5rem);
  padding-top: clamp(1.5rem, 0.2586206897rem + 2.5862068966vw, 1.875rem);
  border-top: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 44px;
}
@media screen and (min-width: 800px) {
  .t-footer__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -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: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
  }
}

.t-footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (min-width: 800px) {
  .t-footer__links {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 70px;
  }
}

.t-footer__links a {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1.4;
  text-decoration: none;
}
.t-footer__links a:hover {
  text-decoration: underline;
}

.t-footer__copy {
  font-size: clamp(0.625rem, 0.2112068966rem + 0.8620689655vw, 0.75rem);
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

@media screen and (min-width: 800px) {
  .t-footer {
    padding-top: 72px;
    padding-right: 56px;
    padding-bottom: 28px;
    padding-left: 56px;
  }
  .t-footer__logo {
    width: 248px;
  }
}
.t-confirm-title {
  margin-inline: auto;
  text-align: center;
}

.t-confirm-lead {
  margin-inline: auto;
  text-align: left;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 40px;
}
@media screen and (min-width: 800px) {
  .t-confirm-lead {
    text-align: center;
  }
}

.t-confirm__block {
  margin-bottom: 24px;
}
@media screen and (min-width: 800px) {
  .t-confirm__block {
    margin-bottom: 40px;
  }
}

.t-confirm__buttons {
  margin-top: clamp(4rem, 0.6896551724rem + 6.8965517241vw, 5rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.t-confirm__button--back {
  background: #e2e2e2;
  color: #333;
}

/*********************
thanks
*********************/
.page {
  padding-block: 160px 80px;
  background: #fff;
}
@media screen and (min-width: 800px) {
  .page {
    padding-block: 200px 160px;
  }
}

.thanks-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  padding: 40px 20px;
  border-radius: 8px;
}

.p-thanks__link--wrapper {
  margin-top: clamp(2.5rem, -2.4655172414rem + 10.3448275862vw, 4rem);
}