@charset "UTF-8";
@font-face {
  font-family: "ttf";
  src: url("../../font/tt-norms-regular.otf");
}
/******************************************************************

Stylesheet: ベーススタイル

******************************************************************/
*,
::before,
::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
address,
small,
blockquote {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Noto Sans JP", sans-serif;
  color: #383838;
  font-size: 12px;
  line-height: 2;
  font-weight: 400;
  overflow-x: hidden;
}

.is-pc {
  display: none;
}
@media (min-width: 660px) {
  .is-pc {
    display: block;
  }
}

@media (min-width: 660px) {
  .is-sp {
    display: none;
  }
}

h1 {
  font-size: 24px;
  line-height: 1.5;
}

h2 {
  font-size: 22px;
  line-height: 1.636;
}

h3 {
  font-size: 20px;
  line-height: 1.4;
}

.font-size1 {
  font-size: 18px;
  line-height: 1.333;
}

.font-size2 {
  font-size: 14px;
  line-height: 1.571;
}

.font-size3 {
  font-size: 12px;
  line-height: 2.167;
}

.font-size4 {
  font-size: 10px;
  line-height: 1.8;
}

.font-size-caption {
  font-size: 8px;
  line-height: 2;
}

.hover-default {
  transition: all 0.4s ease;
}
.hover-default:hover {
  opacity: 0.7;
}

.header {
  width: 100%;
  height: 66px;
  padding: 9px 21px 9px 16px;
  position: fixed;
  top: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
}
.header__logo {
  width: 62px;
}
.header__btn {
  display: block;
  width: 33px;
  height: 20px;
  position: relative;
}
.header__btn.is-open .header__btn-bar:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.header__btn.is-open .header__btn-bar:nth-of-type(2) {
  opacity: 0;
}
.header__btn.is-open .header__btn-bar:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
}
.header__btn-bar {
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  background: #395483;
  transition: all 0.4s ease;
}
.header__btn-bar:nth-of-type(1) {
  top: 0;
}
.header__btn-bar:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header__btn-bar:nth-of-type(3) {
  bottom: 0;
}
.header__nav {
  display: none;
}

@media (min-width: 1024px) {
  .header {
    height: 112px;
    padding: 14px 41px 14px 56px;
  }
  .header__logo {
    width: 120px;
  }
  .header__btn {
    display: none;
  }
  .header__nav {
    display: block;
  }
  .header__nav-lists {
    display: flex;
    align-items: center;
    gap: 35px;
  }
  .header__nav-list {
    line-height: 1.25;
  }
  .header__nav-list:last-of-type {
    margin-left: clamp(0px, 3.13vw, 40px);
  }
  .header__nav-list:last-of-type .header__nav-link {
    color: #fff;
    font-weight: 700;
    line-height: 1.33;
    font-size: 18px;
    letter-spacing: 0.12em;
    display: inline-flex;
    border-radius: 9px;
    background: #385370;
    width: 207px;
    height: 58px;
    padding: 17px 19px;
    align-items: flex-start;
    gap: 10px;
  }
  .header__nav-list:last-of-type .header__nav-link::after {
    content: "";
    flex-shrink: 0;
    width: 30px;
    height: 23px;
    background: url("./images/header-btn-arrow.svg") no-repeat center/contain;
  }
  .header__nav-link {
    color: #000;
    font-size: clamp(16px, 1.56vw, 20px);
    font-weight: 400;
    letter-spacing: 0.08em;
  }
}
.drawer {
  position: fixed;
  z-index: 50;
  width: 100%;
  height: calc(100vh - 66px);
  background: #f6f6f6;
  top: 66px;
  padding: 72px 33px 50px;
  display: none;
}
.drawer__nav-lists {
  display: flex;
  flex-direction: column;
  gap: 52px;
  text-align: center;
}
.drawer__nav-list {
  line-height: 1.2;
}
.drawer__nav-link {
  display: inline-block;
  text-align: center;
  color: #395483;
  text-align: center;
  font-weight: 600;
  font-size: 20px;
}

@media (min-width: 1024px) {
  .drawer {
    display: none;
  }
}
.footer {
  background: #2c3b57;
}
.footer__inner {
  padding: 32px 30px 20px;
  margin: auto;
  max-width: 402px;
}
.footer__flex {
  display: flex;
  align-items: center;
  gap: 30px;
}
.footer__logo {
  margin-bottom: 5px;
  width: 86px;
  height: 58.126px;
  flex-shrink: 0;
}
.footer__lists {
  display: grid;
  grid-template-columns: 73fr 90fr;
  gap: 6px 16px;
}
.footer__link {
  display: block;
  width: 100%;
  color: #fff;
  white-space: nowrap;
  font-size: 9px;
  line-height: 1.77;
}
.footer__copyright {
  margin-top: 24px;
  display: block;
  color: #fff;
  text-align: center;
  font-family: "ttf", "Montserrat", sans-serif;
  letter-spacing: 0.01em;
}

.top-page .fv {
  margin-top: 66px;
  width: 100%;
  position: relative;
}
@media (min-width: 1024px) {
  .top-page .fv {
    margin-top: 112px;
  }
}
.top-page .fv__slider {
  aspect-ratio: 403/441;
  position: relative;
  overflow: hidden;
}
.top-page .fv__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1000ms ease;
  aspect-ratio: 403/441;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.top-page .fv__slide--1 {
  background-image: url("./images/top-fv1.jpg");
}
.top-page .fv__slide--2 {
  background-image: url("./images/top-fv2-sp.jpg");
}
.top-page .fv__slide--3 {
  background-image: url("./images/top-fv3-sp.jpg");
}
.top-page .fv__slide.is-active {
  opacity: 1;
}
.top-page .fv__slide-text {
  position: absolute;
  bottom: 31px;
  padding: 0 28px;
  z-index: 2;
}
.top-page .fv__slide-text span {
  display: block;
  color: #fff;
  font-size: 9px;
  line-height: 1.66;
  letter-spacing: 0.08em;
}
.top-page .fv__slide-text a {
  text-decoration-line: underline;
}
.top-page .fv__text {
  position: absolute;
  top: 16.6%;
  width: 100%;
}
.top-page .fv__text-inner {
  padding: 0 28px;
}
.top-page .fv__en {
  color: #fff;
  font-family: Helvetica, "Montserrat", sans-serif;
  font-size: 8px;
  font-weight: 500;
  line-height: 2.25;
  letter-spacing: 0.08em;
}
.top-page .fv__title {
  color: #fff;
  letter-spacing: 0.05em;
  margin-top: 0.4em;
}
.top-page .fv__sub-text {
  display: none;
}
.top-page .fv__reserve-btn {
  position: absolute;
  top: 94%;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 12px 23px 12px 15px;
  border-radius: 30.5px;
  border: 1px solid #fff;
  background: #395483;
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.16em;
  -webkit-text-stroke-width: 0.3px;
  -webkit-text-stroke-color: #fff;
  z-index: 40;
}
.top-page .fv__reserve-btn.is-fixed {
  position: fixed;
  top: 70px;
}
.top-page .fv__reserve-btn::after {
  content: "";
  flex-shrink: 0;
  width: 25px;
  height: 24px;
  background: url("./images/icon-calender.svg") no-repeat center/contain;
}
.top-page .about {
  padding: 40px 0 70px;
  overflow: hidden;
}
.top-page .about__inner {
  padding: 0 33px;
  margin: 0 auto;
  max-width: 986px;
}
.top-page .about-what__heading {
  color: #395483;
  font-family: "ttf", "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 450;
  line-height: 1.8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.top-page .about-what__container {
  position: relative;
  margin: auto;
  max-width: 337px;
}
.top-page .about-what__text {
  padding: 16px 0 14px;
  line-height: 2;
  letter-spacing: 0.02em;
  font-size: 12px;
  position: relative;
  z-index: 2;
}
.top-page .about-what__link {
  color: #6179a3;
  font-family: "ttf", "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.71;
  text-decoration-line: underline;
  display: inline-block;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}
.top-page .about-what__map {
  top: -102px;
  width: 100vw;
  max-width: 402px;
  aspect-ratio: 402/405;
  margin-left: -33px;
  margin-right: -33px;
  position: relative;
  background: url("./images/top-about-map_bg.webp") no-repeat center center/cover;
  z-index: -1;
}
.top-page .about-what__map img {
  position: absolute;
  top: -32px;
  right: 1%;
  width: 312px;
}
.top-page .about-consulting {
  margin-top: -196px;
}
.top-page .about-consulting__heading {
  color: #395483;
  -webkit-text-stroke-width: 0.2px;
  -webkit-text-stroke-color: #395483;
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
.top-page .about-consulting__img {
  margin-left: -33px;
  margin-right: -33px;
  display: block;
  margin-top: -56px;
  position: relative;
  z-index: -1;
}
.top-page .about-consulting__img img {
  display: block;
  max-width: 476px;
  height: 312px;
  position: relative;
  left: 50%;
  transform: translateX(-52%);
}
.top-page .about-consulting__reserve-btn {
  display: none;
}
.top-page .about-consulting__text {
  margin-top: -68px;
  color: #395483;
  text-align: right;
  line-height: 1.83;
  letter-spacing: 0.03em;
  font-size: clamp(10px, 2.99vw, 12px);
}
.top-page .steps {
  background: #384c70;
}
.top-page .steps__inner {
  padding: 30px 33px 40px;
  margin: 0 auto;
  max-width: 986px;
}
.top-page .steps__head {
  color: #8598b9;
  font-family: "ttf", "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 450;
  line-height: 2.7;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-page .steps__head::after {
  content: "";
  height: 1px;
  background: #8598b9;
  flex-grow: 1;
  margin-left: 10px;
}
.top-page .steps__heading {
  color: #d9d9d9;
  -webkit-text-stroke-width: 0.2px;
  -webkit-text-stroke-color: #d9d9d9;
  font-size: 14px;
  line-height: 1.85;
  padding: 0 10px;
}
.top-page .steps__lists {
  margin-top: 20px;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.top-page .steps-list {
  display: flex;
  align-items: center;
  gap: 13px;
}
.top-page .steps-list__img {
  flex: 0 0 32%;
  aspect-ratio: 109/95;
}
.top-page .steps-list__text {
  color: #fff;
  line-height: 1.57;
  font-size: 14px;
}
.top-page .steps-list__link {
  color: #d9d9d9;
  -webkit-text-stroke-width: 0.2px;
  -webkit-text-stroke-color: #d9d9d9;
  font-size: 10px;
  line-height: 1.8;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.top-page .steps-list__link::after {
  content: "";
  flex-shrink: 0;
  width: 8.995px;
  height: 9px;
  background: url("./images/steps-link-arrow.svg") no-repeat center/contain;
}
.top-page .service {
  padding: 46px 0;
}
.top-page .service__inner {
  padding: 0 33px;
  margin: 0 auto;
  max-width: 1144px;
}
.top-page .service__box {
  padding: 16px 22px 30px;
  border-radius: 6px;
  background: #f5f4f0;
}
.top-page .service__head-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.top-page .service__heading-inner {
  color: #395483;
}
.top-page .service__heading-en {
  font-family: "ttf", "Montserrat", sans-serif;
  font-weight: 450;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.top-page .service__heading-ja {
  margin-top: 3px;
  -webkit-text-stroke-width: 0.2px;
  -webkit-text-stroke-color: #395483;
  font-size: 10px;
  line-height: 1.9;
}
.top-page .service__lists {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 12px;
}
.top-page .service__img {
  width: 62px;
  aspect-ratio: 1/1;
  margin: auto;
}
.top-page .service__text {
  margin-top: 3px;
  font-size: 11px;
  color: #395483;
  text-align: center;
  -webkit-text-stroke-width: 0.2px;
  -webkit-text-stroke-color: #395483;
  line-height: 1.72;
}
.top-page .members {
  overflow: hidden;
}
.top-page .members__inner {
  padding: 0 33px;
  margin: 0 auto;
  max-width: 1144px;
}
.top-page .members__heading-en {
  color: #395483;
  font-family: "ttf", "Montserrat", sans-serif;
  font-weight: 450;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.top-page .members__heading-ja {
  margin-top: -5px;
  color: #395483;
  -webkit-text-stroke-width: 0.2px;
  -webkit-text-stroke-color: #395483;
}
.top-page .members__slides {
  margin-top: 16px;
  overflow: visible;
  position: relative;
}
.top-page .members__slide {
  width: 113px;
  height: 170px;
}
.top-page .members__slide img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.top-page .members__slide-next {
  display: none;
  width: 22px;
  height: 44px;
  top: 50%;
  transform: translateY(-50%);
  background: url("./images/members-slide-arrow.svg") no-repeat center center/contain;
  right: 11px;
}
.top-page .members__slide-next::after {
  display: none;
}
.top-page .members__link {
  position: absolute;
  right: 15px;
  bottom: 22px;
  display: inline-block;
  color: #fff;
  font-family: "ttf", "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 500;
  border-bottom: 2px solid #fff;
  padding-right: 22px;
  z-index: 2;
}
.top-page .members__link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 6px;
  background: url("../../images/members-link-arrow.svg") no-repeat center center/contain;
}
.top-page .members__main-text {
  color: #000;
  font-size: 18px;
  line-height: 1.66;
}
.top-page .members__text {
  margin-top: 10px;
  margin-left: 6px;
  font-size: 14px;
  line-height: 2;
  -webkit-text-stroke-width: 0.1px;
  -webkit-text-stroke-color: #383838;
}
.top-page .members__text-inner {
  margin-top: 16px;
}
.top-page .news {
  margin-top: 62px;
}
.top-page .news__inner {
  padding: 0 33px;
  margin: 0 auto;
  max-width: 1186px;
}
.top-page .news__heading-en {
  color: #395483;
  font-family: "ttf", "Montserrat", sans-serif;
  font-weight: 450;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.top-page .news__lists {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
}
.top-page .news__list {
  border-bottom: 1px solid #d6dde7;
}
.top-page .news__list:first-of-type {
  border-top: 1px solid #d6dde7;
}
.top-page .news__link {
  padding: 10px 0 7px;
  display: flex;
  align-items: center;
}
.top-page .news__time {
  width: 59px;
  color: #8598b9;
  -webkit-text-stroke-width: 0.1px;
  -webkit-text-stroke-color: #8598b9;
  font-size: 10px;
  font-weight: 500;
  line-height: 2.4;
  white-space: nowrap;
  font-family: "Noto Sans JP";
  flex-shrink: 0;
}
.top-page .news__title {
  color: #000;
  -webkit-text-stroke-width: 0.1px;
  -webkit-text-stroke-color: #000;
  text-decoration-line: underline;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.top-page .news__view-more {
  margin-top: 2px;
  text-align: end;
}
.top-page .news__view-more a {
  color: #8598b9;
  text-align: right;
  border-bottom: 1px solid #8598b9;
}
.top-page .qa {
  margin-top: 40px;
  margin-bottom: 77px;
}
.top-page .qa__inner {
  padding: 0 33px;
  margin: 0 auto;
  max-width: 1164px;
}
.top-page .qa__heading {
  color: #395483;
  font-family: "ttf", "Montserrat", sans-serif;
  font-weight: 450;
  letter-spacing: 0.02em;
}
.top-page .qa__lists {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
}
.top-page .qa-list {
  border-bottom: 1px solid #d6dde7;
}
.top-page .qa-list:first-of-type {
  border-top: 1px solid #d6dde7;
}
.top-page .qa-list__head {
  display: block;
  text-align: left;
  position: relative;
  width: 100%;
  padding: 9.6px 14px 9.6px 6px;
}
.top-page .qa-list__head::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2px;
  width: 20px;
  height: 10px;
  background: url("./images/qa-arrow.svg") no-repeat center center/contain;
}
.top-page .qa-list__head-text {
  color: #000;
  -webkit-text-stroke-width: 0.1px;
  -webkit-text-stroke-color: #000;
}
.top-page .qa-list__body {
  display: none;
}
.top-page .qa-list__a {
  padding: 0px 50px 12px 18px;
}
.top-page .qa-list__a-text {
  color: #000;
  -webkit-text-stroke-width: 0.1px;
  -webkit-text-stroke-color: #000;
  font-size: 11px;
  line-height: 2;
  display: block;
}

.concept-page .fv {
  margin-top: 66px;
  background: url("./images/concept-fv-sp.webp") no-repeat center center/contain;
  color: #fff;
  width: 100%;
  aspect-ratio: 402/152;
  position: relative;
}
@media (min-width: 1024px) {
  .concept-page .fv {
    margin-top: 112px;
  }
}
.concept-page .about {
  margin-top: 45px;
}
.concept-page .about__inner {
  padding: 0 clamp(20px, 8.21vw, 33px);
  margin: 0 auto;
  max-width: 990px;
}
.concept-page .about__head-en {
  font-family: Helvetica, "Montserrat", sans-serif;
  /* font-size: 12px; */
  font-weight: 500;
  line-height: 1.5;
  color: #8598b9;
}
.concept-page .about__head-ja {
  -webkit-text-stroke-width: 0.1px;
  -webkit-text-stroke-color: #8598b9;
  color: #8598b9;
}
.concept-page .about__heading {
  margin-top: 10px;
  -webkit-text-stroke-width: 0.1px;
  -webkit-text-stroke-color: #8598b9;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #8598b9;
}
.concept-page .about__message {
  padding: 32px 0 80px;
  color: #000;
  text-align: justify;
  display: flex;
  gap: 12px;
  flex-direction: column;
}
.concept-page .about__message p {
  font-size: 16px;
  /* font-size: 14px; */
  line-height: 36px;
}
.concept-page .about__message .about__message-small {
  font-size: 12px;
}
.concept-page .about__contents {
  background: #e1e7ee;
  padding: 22px 0 43px;
}
.concept-page .about__vision, .concept-page .about__creed, .concept-page .about__motto {
  padding: 10px 0 30px;
}
.concept-page .about__motto {
  padding: 3px 0 10px;
}
.concept-page .about__heading-en {
  color: #8598b9;
  font-family: "ttf", "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}
.concept-page .about__heading-ja {
  color: #8598b9;
  -webkit-text-stroke-width: 0.2px;
  -webkit-text-stroke-color: #8598b9;
  letter-spacing: 0.05em;
}
.concept-page .about__body {
  margin-left: 10px;
  margin-top: 18px;
  border-left: 1px solid #8598b9;
}
.concept-page .about__body--creed {
  margin-top: 0;
}
.concept-page .about__body--motto {
  padding: 8px 0 5px 8px;
  margin-top: 8px;
}
.concept-page .about__text {
  padding-left: 2em;
  color: #1f1f1f;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: 300;
}
.concept-page .about__creed-img {
  width: 310px;
  aspect-ratio: 262/90;
  position: relative;
  margin-bottom: 4px;
}
.concept-page .about__list {
  color: #1f1f1f;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: clamp(8px, 2.49vw, 10px);
  font-weight: 300;
  line-height: 2.4;
}
.concept-page .values {
  margin-top: 53px;
}
.concept-page .values__inner {
  padding: 0 33px;
  margin: 0 auto;
  max-width: 990px;
}
.concept-page .values__heading-en {
  color: #8598b9;
  font-family: "ttf", "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}
.concept-page .values__heading-ja {
  color: #8598b9;
  -webkit-text-stroke-width: 0.2px;
  -webkit-text-stroke-color: #8598b9;
  font-family: "Noto Sans JP";
  /* font-size: 14px; */
  font-size: 18px;
  line-height: 1.71;
  letter-spacing: 0.05em;
}
.concept-page .values__lists {
  margin-top: 17px;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.concept-page .values__list {
  padding-left: 20px;
  font-size: 14px;
}
.concept-page .values__number {
  color: #8598b9;
  font-family: "ttf", "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}
.concept-page .values__sub-heading {
  color: #1f1f1f;
  -webkit-text-stroke-width: 0.1px;
  -webkit-text-stroke-color: #1f1f1f;
  padding-bottom: 14px;
}
.concept-page .values__text {
  color: #1f1f1f;
  text-align: justify;
  font-size: 14px;
}
.concept-page .values__text:not(:first-of-type) {
  margin-top: 10px;
}
.concept-page .values__sub-lists {
  margin-top: 10px;
}
.concept-page .values__sub-list {
  color: #1f1f1f;
  text-align: justify;
  line-height: 2.16;
}
.concept-page .message {
  margin-top: 20px;
}
.concept-page .message__inner {
  padding: 0 33px;
  margin: 0 auto;
  max-width: 990px;
}
.concept-page .message__heading-en {
  color: #395483;
  font-family: "ttf", "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
}
.concept-page .message__heading-ja {
  color: #395483;
  -webkit-text-stroke-width: 0.2px;
  -webkit-text-stroke-color: #395483;
  letter-spacing: 0.05em;
}
.concept-page .message__img {
  margin: 20px 0 24px;
  width: 100%;
  aspect-ratio: 336/408;
  position: relative;
}
.concept-page .message__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.concept-page .message__img-inner {
  position: absolute;
  bottom: 20px;
  left: 19px;
  color: #fff;
  -webkit-text-stroke-width: 0.2px;
  -webkit-text-stroke-color: #fff;
}
.concept-page .message__post {
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
.concept-page .message__name {
  margin-top: 4px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
.concept-page .message__text {
  color: #000;
  text-align: justify;
  font-size: 14px;
  line-height: 2;
}
.concept-page .message__slogan {
  padding: 30px 0;
  text-align: center;
  height: 103px;
}
.concept-page .message__slogan img {
  height: 43px;
  aspect-ratio: 672/89/*672/87*/;
}
.concept-page .info {
  padding: 42px 0 0;
}
.concept-page .info__inner {
  padding: 0 31px;
  margin: 0 auto;
  max-width: 980px;
}
.concept-page .info__heading-en {
  color: #395483;
  font-family: "ttf", "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}
.concept-page .info__heading-ja {
  margin-top: 4px;
  color: #395483;
  -webkit-text-stroke-width: 0.2px;
  -webkit-text-stroke-color: #395483;
  letter-spacing: 0.05em;
}
.concept-page .info-table {
  margin-top: 17px;
  display: grid;
  grid-template-columns: 105px auto;
  gap: 1px;
  background: #d6dde7;
  border: 1px solid #d6dde7;
}
.concept-page .info-table__head {
  background: #e5eef5;
  padding: 10px 11px;
  color: #5c5b5f;
  font-size: 12px;
  line-height: 1;
  min-height: 35px;
  white-space: nowrap;
}
.concept-page .info-table__body {
  padding: 10px 10px 7.7px;
  background: #fff;
  color: #000;
  line-height: 1;
}
.concept-page .info-table__text {
  display: block;
  font-style: normal;
  line-height: 1.5;
}
.concept-page .info-table__date {
  display: block;
  margin-top: 4px;
}
.concept-page .info-table__list {
  font-size: 10px;
  line-height: 2;
}
.concept-page .location {
  margin-top: 46px;
  margin-bottom: 80px;
}
.concept-page .location__inner {
  padding: 0 31px;
  margin: 0 auto;
  max-width: 980px;
}
.concept-page .location__heading-en {
  color: #395483;
  font-family: "ttf", "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}
.concept-page .location__heading-ja {
  margin-top: 4px;
  color: #395483;
  -webkit-text-stroke-width: 0.2px;
  -webkit-text-stroke-color: #395483;
  letter-spacing: 0.05em;
}
.concept-page .location__text {
  color: #000;
}
.concept-page .location__text:first-of-type {
  margin-top: 20px;
  font-size: 13px;
  line-height: 1.53;
}
.concept-page .location__text:last-of-type {
  line-height: 1.667;
}
.concept-page .location__map {
  margin-top: 20px;
  width: 100%;
  aspect-ratio: 336/267;
}
.concept-page .location__map iframe {
  width: 100%;
  height: 100%;
}

.members-page {
  margin-top: 66px;
}
@media (min-width: 1024px) {
  .members-page {
    margin-top: 112px;
  }
}
.members-page .members {
  padding: 25px 0 180px;
  background: #fafaf8;
}
.members-page .members__heading-en {
  padding: 0 33px;
  color: #395483;
  font-family: "ttf", "Montserrat", sans-serif;
  font-weight: 450;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.members-page .members__heading-ja {
  margin-top: -3px;
  padding: 0 33px;
  color: #395483;
  font-size: 12px;
  -webkit-text-stroke-width: 0.1px;
  -webkit-text-stroke-color: #395483;
  line-height: 1;
}
.members-page .members__lists {
  max-width: 334px;
  margin: 25px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  -moz-column-gap: 14px;
       column-gap: 14px;
  row-gap: 25px;
}
.members-page .members-list {
  max-width: 160px;
}
.members-page .members-list__img {
  width: 100%;
  aspect-ratio: 160/220;
  border-radius: 5px;
}
.members-page .members-list__img img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
}
.members-page .members-list__name-ja {
  margin-top: 10px;
  color: #000;
  line-height: 1.33;
  letter-spacing: 0.03em;
}
.members-page .members-list__name-en {
  color: #000;
  font-family: "ttf", "Montserrat", sans-serif;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.03em;
}

.partners-page {
  margin-top: 66px;
}
@media (min-width: 1024px) {
  .partners-page {
    margin-top: 112px;
  }
}
.partners-page .partners {
  background: #fafaf8;
  padding-bottom: 145px;
}
.partners-page .partners__inner {
  padding: 0 33px;
  margin: 0 auto;
  max-width: 1326px;
}
.partners-page .partners__heading-en {
  padding-top: 20px;
  color: #395483;
  text-align: center;
  font-family: "ttf", "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 450;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.partners-page .partners__heading-ja {
  margin-top: 2px;
  padding-bottom: 24px;
  color: #395483;
  text-align: center;
  -webkit-text-stroke-width: 0.4px;
  -webkit-text-stroke-color: #395483;
  font-size: 14px;
  line-height: 1.35;
}
.partners-page .partners__text {
  color: #395483;
  text-align: right;
  font-size: 10px;
  line-height: 1.9;
}
.partners-page .partners__container {
  padding-bottom: 34px;
}
.partners-page .partners__sub-heading {
  padding: 10px 0;
  color: #395483;
  -webkit-text-stroke-width: 0.2px;
  -webkit-text-stroke-color: #395483;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partners-page .partners__sub-heading::after {
  content: "";
  height: 1.5px;
  background: #395483;
  flex-grow: 1;
  margin-left: 8px;
}
.partners-page .partners__lists {
  padding: 10px 3px;
  display: flex;
  flex-direction: column;
  gap: 0em;
}
@media (min-width: 1024px) {
  .partners-page .partners__lists {
    flex-direction: row;
  }
}
.partners-page .partners__link {
  color: #000;
  line-height: 2.5;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  font-size: 14px;
  line-height: 2.857;
  white-space: nowrap;
}
.partners-page .partners__others-lists {
  max-width: 340px;
  margin: auto;
  padding: 10px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  gap: 16px 14px;
}
.partners-page .partners__others-list {
  width: 160px;
}
.partners-page .partners__others-img {
  width: 100%;
  aspect-ratio: 160/103;
}
.partners-page .partners__others-text {
  margin-top: 2px;
  padding: 5px 0;
  text-align: center;
  color: #000;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.03em;
}
.partners-page .partners__others-text--2 {
  font-size: 8px;
}

.contact-page {
  margin-top: 66px;
}
@media (min-width: 1024px) {
  .contact-page {
    margin-top: 112px;
  }
}
.contact-page .contact {
  background: #fafaf8;
  padding-bottom: 172px;
}
.contact-page .contact__inner {
  padding: 0 33px;
  margin: 0 auto;
  max-width: 1326px;
}
.contact-page .contact__heading-en {
  padding-top: 20px;
  color: #395483;
  text-align: center;
  font-family: "ttf", "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 450;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.contact-page .contact__heading-ja {
  margin-top: 2px;
  color: #395483;
  text-align: center;
  -webkit-text-stroke-width: 0.4px;
  -webkit-text-stroke-color: #395483;
  font-size: 14px;
  line-height: 1.35;
}
.contact-page .contact__text {
  margin-top: 26px;
  text-align: center;
}
.contact-page .form {
  margin: 54px auto 0;
  max-width: 300px;
  color: #000;
}
.contact-page .form__fields {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-page .form__privacy {
  margin-top: 40px;
}
.contact-page .form__checkbox {
  display: flex;
  align-items: center;
  gap: 6px;
  width: -moz-fit-content;
  width: fit-content;
}
.contact-page .form__checkbox-input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.contact-page .form__checkbox-input:checked + .form__checkbox-text::after {
  opacity: 1;
}
.contact-page .form__checkbox-text {
  font-size: 10px;
  line-height: 2.2em;
  position: relative;
  padding-left: 28px;
}
.contact-page .form__checkbox-text::before, .contact-page .form__checkbox-text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.contact-page .form__checkbox-text::before {
  width: 22px;
  height: 22px;
  background: #d9d9d9;
}
.contact-page .form__checkbox-text::after {
  width: 18px;
  height: 16px;
  left: 2px;
  background: url("./images/form-check.svg") no-repeat center center/contain;
  opacity: 0;
}
.contact-page .form__checkbox-text a {
  text-decoration: underline;
}
.contact-page .form__button {
  margin-top: 15px;
}
.contact-page .form__button-input {
  background: #395483;
  border: none;
  display: flex;
  width: 100%;
  height: 35px;
  padding: 6px;
  justify-content: center;
  align-items: center;
  color: #fff;
  -webkit-text-stroke-width: 0.2px;
  -webkit-text-stroke-color: #fff;
  cursor: pointer;
}
.contact-page .form-field {
  display: flex;
  flex-direction: column;
}
.contact-page .form-field__label {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact-page .form-field__note {
  font-size: 8px;
  line-height: 1.5;
}
.contact-page .form-field__item {
  width: 100%;
}
.contact-page .form-field__text {
  width: 100%;
  border-radius: 2px;
  background: #dee6f2;
  height: 29px;
  border: none;
  line-height: 1.5;
  padding: 1em;
  font-size: 10px;
}
.contact-page .form-field__textarea {
  height: 132px;
}

.thanks-page {
  margin-top: 66px;
}
@media (min-width: 1024px) {
  .thanks-page {
    margin-top: 112px;
  }
}
.thanks-page .thanks {
  background: #fafaf8;
  padding-bottom: 216px;
}
.thanks-page .thanks__inner {
  padding: 0 33px;
  margin: 0 auto;
  max-width: 1326px;
}
.thanks-page .thanks__heading-en {
  padding-top: 40px;
  color: #395483;
  text-align: center;
  font-family: "ttf", "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 450;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.thanks-page .thanks__heading-ja {
  margin-top: 2px;
  color: #395483;
  text-align: center;
  -webkit-text-stroke-width: 0.4px;
  -webkit-text-stroke-color: #395483;
  font-size: 14px;
  line-height: 1.35;
}
.thanks-page .thanks__img {
  text-align: center;
  padding: 40px 0 26px;
}
.thanks-page .thanks__img img {
  width: 62px;
  height: 62px;
  display: inline-block;
  aspect-ratio: 1/1;
}
.thanks-page .thanks__text {
  color: #000;
  text-align: center;
}
.thanks-page .thanks__text:not(:first-of-type) {
  margin-top: 17px;
}

.news-page {
  margin-top: 66px;
}
@media (min-width: 1024px) {
  .news-page {
    margin-top: 112px;
  }
}
.news-page .news {
  margin-top: 40px;
  background: #fafaf8;
  padding-bottom: 124px;
}
.news-page .news__inner {
  padding: 0 33px;
  margin: 0 auto;
  max-width: 830px;
}
.news-page .news__heading-en {
  padding-top: 40px;
  color: #395483;
  text-align: center;
  font-family: "ttf", "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 450;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.news-page .news__heading-ja {
  margin-top: 2px;
  color: #395483;
  text-align: center;
  -webkit-text-stroke-width: 0.4px;
  -webkit-text-stroke-color: #395483;
  font-size: 14px;
  line-height: 1.35;
}
.news-page .news__lists {
  margin-top: 43px;
  display: flex;
  flex-direction: column;
}
.news-page .news__list {
  border-bottom: 1px solid #d6dde7;
}
.news-page .news__list:first-of-type {
  border-top: 1px solid #d6dde7;
}
.news-page .news__link {
  padding: 10px 0 9.3px;
  display: flex;
  align-items: center;
}
.news-page .news__time {
  width: 50px;
  color: #8598b9;
  -webkit-text-stroke-width: 0.1px;
  -webkit-text-stroke-color: #8598b9;
  font-size: 10px;
  font-weight: 500;
  line-height: 2.4;
  white-space: nowrap;
  font-family: "Noto Sans JP";
  flex-shrink: 0;
}
.news-page .news__title {
  color: #000;
  -webkit-text-stroke-width: 0.1px;
  -webkit-text-stroke-color: #000;
  text-decoration-line: underline;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-page .news #news-pagenation {
  margin-top: 22px;
  position: relative;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.news-page .news #news-pagenation .page-numbers {
  color: #a3a3a3;
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
  text-decoration-line: underline;
  text-underline-position: from-font;
  transition: all 0.4s ease;
}
.news-page .news #news-pagenation .page-numbers.current, .news-page .news #news-pagenation .page-numbers:hover {
  color: #5f5f5f;
}
.news-page .news #news-pagenation .page-numbers:disabled {
  text-decoration: none;
}
.news-page .news #news-pagenation .page-numbers:disabled:hover {
  color: #a3a3a3;
  cursor: not-allowed;
}
.news-page .news #news-pagenation .page-numbers.current {
  cursor: default;
  text-decoration: none;
}
.news-page .news #news-pagenation #news-page-numbers {
  width: 80%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.news-page .news #news-pagenation .prev,
.news-page .news #news-pagenation .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #cdcdcd;
  text-decoration: none;
}
.news-page .news #news-pagenation .prev.current, .news-page .news #news-pagenation .prev:hover,
.news-page .news #news-pagenation .next.current,
.news-page .news #news-pagenation .next:hover {
  color: #cdcdcd;
}
.news-page .news #news-pagenation .prev {
  left: 0;
}
.news-page .news #news-pagenation .next {
  right: 0;
}
.news-page .news__page-next {
  transition: all 0.4s ease;
  cursor: default;
}
.news-page .news__page-next.active {
  color: #a3a3a3;
  text-decoration-line: underline;
  text-underline-position: from-font;
}
.news-page .news__page-next.active.current, .news-page .news__page-next.active:hover {
  color: #5f5f5f;
  cursor: pointer;
}

/* ======================================
   ポリシーページ用スタイル
   (プライバシーポリシー、特商法、勧誘方針、FD宣言)
====================================== */
/* 共通スタイル */
.contact-page .privacy-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  line-height: 1.8;
}

.contact-page .privacy-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #333;
}

.contact-page .privacy-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
}

.contact-page .privacy-content p {
  margin-bottom: 15px;
  color: #333;
}

.contact-page .privacy-content ul {
  margin: 15px 0;
  padding-left: 20px;
}

.contact-page .privacy-content li {
  margin-bottom: 8px;
  list-style-type: disc;
}

/* プライバシーポリシー用 */
.contact-page .privacy-content .company-list {
  margin: 10px 0;
  padding-left: 20px;
}

.contact-page .privacy-content .company-list li {
  list-style-type: none;
  margin-bottom: 5px;
  position: relative;
  padding-left: 0;
}

.contact-page .privacy-content .company-list li::before {
  content: "■";
  position: absolute;
  left: -20px;
  font-size: 0.8em;
  line-height: 1.8;
}

.contact-page .contact-info {
  background-color: #e8f0f7 !important;
  padding: 20px;
  margin-top: 30px;
  border-radius: 8px;
}

.contact-page .contact-info p {
  margin-bottom: 8px;
}

/* 特商法用 */
.contact-page .info-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.contact-page .info-table tr {
  border-bottom: 1px solid #ddd;
}

.contact-page .info-table th {
  text-align: left;
  padding: 15px 10px;
  font-weight: 600;
  width: 30%;
  vertical-align: top;
  background-color: #e8f0f7 !important;
}

.contact-page .info-table td {
  padding: 15px 10px;
  vertical-align: top;
}

.contact-page .privacy-content .info-section {
  background-color: #e8f0f7 !important;
  padding: 20px;
  margin: 30px 0;
  border-radius: 8px;
}

.contact-page .privacy-content .info-section h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.contact-page .privacy-content .info-section p {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* 勧誘方針用 */
.contact-page .intro-text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  padding: 20px;
  background-color: #e8f0f7 !important;
  border-radius: 8px;
}

.contact-page .policy-item {
  margin-bottom: 30px;
  padding: 20px;
  background-color: #fff;
  border-left: 4px solid #333;
}

.contact-page .policy-item h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.contact-page .policy-item p {
  margin-bottom: 0;
  line-height: 1.8;
}

.contact-page .company-info {
  background-color: #e8f0f7 !important;
  padding: 20px;
  margin-top: 40px;
  border-radius: 8px;
  text-align: right;
}

.contact-page .company-info p {
  margin-bottom: 8px;
  font-weight: 600;
}

/* FD宣言用 */
.contact-page .intro-section {
  padding: 0 0 20px 0;
  margin-bottom: 30px;
  border-bottom: 1px solid #ddd;
}

.contact-page .intro-section p {
  margin-bottom: 10px;
  line-height: 1.8;
}

.contact-page .principle-box {
  padding: 0 0 20px 0;
  margin-bottom: 30px;
  border-bottom: 1px solid #ddd;
}

.contact-page .principle-box h3 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.contact-page .principle-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-page .principle-list li {
  padding: 8px 0 8px 15px;
  line-height: 1.8;
  position: relative;
}

.contact-page .principle-list li::before {
  /* content: "・"; */
  position: absolute;
  left: 0;
}

.contact-page .initiative-item {
  padding: 0 0 20px 0;
  margin-bottom: 25px;
  border-bottom: 1px solid #ddd;
}

.contact-page .initiative-item h3 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.15rem;
  color: #333;
}

.contact-page .initiative-item p {
  margin-bottom: 12px;
  line-height: 1.8;
}

.contact-page .criteria-box {
  padding: 15px 0;
  margin: 15px 0;
}

.contact-page .criteria-box ol {
  margin: 10px 0;
  padding-left: 25px;
}

.contact-page .criteria-box li {
  margin-bottom: 8px;
  line-height: 1.8;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .contact-page .privacy-content {
    padding: 20px 15px;
  }
  .contact-page .privacy-content h2 {
    font-size: 1.3rem;
    margin-top: 30px;
  }
  .contact-page .privacy-content h3 {
    font-size: 1.1rem;
    margin-top: 25px;
  }
  .contact__heading-en {
    font-size: 1.3rem;
  }
  .contact__heading-ja {
    font-size: 1.3rem;
  }
  .contact-page .contact-info {
    padding: 15px;
  }
  /* 特商法用レスポンシブ */
  .contact-page .info-table th,
  .contact-page .info-table td {
    display: block;
    width: 100%;
  }
  .contact-page .info-table th {
    padding-bottom: 5px;
  }
  .contact-page .info-table td {
    padding-top: 5px;
  }
  .contact-page .info-section {
    padding: 15px;
  }
  /* 勧誘方針用レスポンシブ */
  .contact-page .intro-text {
    padding: 15px;
  }
  .contact-page .policy-item {
    padding: 15px;
    margin-bottom: 20px;
  }
  .contact-page .policy-item h3 {
    font-size: 1rem;
  }
  .contact-page .company-info {
    padding: 15px;
  }
}
@media (min-width: 660px) {
  /******************************************************************

  Stylesheet: 660px以上のタブレットやモニタで適用

  ******************************************************************/
  body,
  .font-size-pc3-4 {
    font-size: 20px;
    line-height: 2;
  }
  h1 {
    font-size: 60px;
    line-height: 1.667;
  }
  h2 {
    font-size: 44px;
    line-height: 1.818;
  }
  h3 {
    font-size: 40px;
    line-height: 0.9;
  }
  .font-size-pc1 {
    font-size: 32px;
    line-height: 1.125;
  }
  .font-size-pc1-2 {
    font-size: 32px;
    line-height: 1.75;
  }
  .font-size-pc2 {
    font-size: 24px;
    line-height: 2.5;
  }
  .font-size-pc3 {
    font-size: 20px;
    line-height: 1.6;
  }
  .font-size-pc3-2 {
    font-size: 20px;
    line-height: 1.3;
  }
  .font-size-pc3-3 {
    font-size: 20px;
    line-height: 2.2;
  }
  .font-size-pc4 {
    font-size: 16px;
    line-height: 1.25;
  }
  .font-size-caption {
    font-size: 14px;
    line-height: 1.429;
  }
  .footer__inner {
    padding: 72px 36px 65px;
    max-width: 778px;
  }
  .footer__flex {
    gap: clamp(20px, 10.55vw, 108px);
  }
  .footer__logo {
    width: 201.67px;
    height: 131px;
  }
  .footer__lists {
    grid-template-columns: 131fr 255fr;
    gap: 16px clamp(20px, 5.86vw, 60px);
  }
  .footer__link {
    font-size: 16px;
  }
  .footer__copyright {
    margin-top: 73px;
    font-size: 12px;
    letter-spacing: 0.03em;
  }
  .top-page .fv {
    aspect-ratio: 192/90;
  }
  .top-page .fv__slider {
    aspect-ratio: 192/90;
  }
  .top-page .fv__slide {
    aspect-ratio: auto;
  }
  .top-page .fv__slide--2 {
    background-image: url("./images/top-fv2.jpg");
  }
  .top-page .fv__slide--3 {
    background-image: url("./images/top-fv3.jpg");
  }
  .top-page .fv__slide.is-active {
    opacity: 1;
  }
  .top-page .fv__slide-text {
    bottom: 46px;
    padding: 0 8vw;
  }
  .top-page .fv__slide-text span {
    font-size: clamp(12px, 1.2vw, 23px);
    line-height: 1.34;
  }
  .top-page .fv__text {
    top: 16%;
  }
  .top-page .fv__text-inner {
    padding: 0 8vw;
  }
  .top-page .fv__en {
    font-size: clamp(14px, 2.02vw, 24px);
    line-height: 1;
  }
  .top-page .fv__title {
    margin-top: 26px;
    font-size: clamp(26px, 4.04vw, 60px);
    line-height: 1.5;
  }
  .top-page .fv__sub-text {
    display: block;
    position: absolute;
    right: 4vw;
    bottom: 1.5vw;
    color: #fff;
    text-align: right;
    font-family: "ttf", "Montserrat", sans-serif;
    font-size: clamp(14px, 2.13vw, 38px);
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.01em;
  }
  .top-page .fv__reserve-btn {
    display: none;
  }
  .top-page .about {
    padding: 143px 0 112px;
  }
  .top-page .about-what__heading {
    display: none;
  }
  .top-page .about-what__container {
    max-width: 100%;
  }
  .top-page .about-what__text {
    -webkit-text-stroke-width: 0.2px;
    -webkit-text-stroke-color: #383838;
    font-size: clamp(14px, 2.34vw, 24px);
    line-height: 2.5;
    letter-spacing: 0em;
  }
  .top-page .about-what__link {
    font-size: 24px;
    line-height: 2.5;
  }
  .top-page .about-what__link:hover {
    color: #acacac;
  }
  .top-page .about-what__map {
    top: clamp(-416px, -40.62vw, 0px);
    max-width: clamp(460px, 60.16vw, 616px);
    margin: 0;
    right: 0;
    margin-left: auto;
  }
  .top-page .about-what__map img {
    top: -57px;
    right: 3%;
    width: 587px;
  }
  .top-page .about-consulting {
    margin-top: clamp(-445px, -43.46vw, -290px);
    position: relative;
  }
  .top-page .about-consulting__heading {
    font-size: 44px;
    letter-spacing: 0.1em;
  }
  .top-page .about-consulting__img {
    margin-left: 0;
    margin-right: 0;
    margin-top: clamp(-112px, -10.94vw, 0px);
  }
  .top-page .about-consulting__img img {
    max-width: clamp(500px, 88.87vw, 910px);
    height: auto;
    transform: translateX(-50%);
  }
  .top-page .about-consulting__reserve-btn {
    position: absolute;
    bottom: 112px;
    right: 0px;
    display: inline-flex;
    align-items: center;
    gap: 21px;
    padding: 23px 46px;
    border-radius: 100px;
    background: #395483;
    color: #fff;
    font-size: clamp(16px, 3.13vw, 32px);
    line-height: 1.5;
    letter-spacing: 0.1em;
    -webkit-text-stroke-width: 0.3px;
    -webkit-text-stroke-color: #fff;
    box-shadow: 0 4px 13px 4px rgba(0, 0, 0, 0.25);
  }
  .top-page .about-consulting__reserve-btn::after {
    content: "";
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: url("./images/icon-calender.svg") no-repeat center/contain;
  }
  .top-page .about-consulting__text {
    margin-top: clamp(-88px, -8.59vw, 0px);
    font-size: 24px;
  }
  .top-page .steps__inner {
    padding: 45px 33px 90px;
  }
  .top-page .steps__head {
    font-size: 18px;
    text-align: center;
  }
  .top-page .steps__head::after {
    display: none;
  }
  .top-page .steps__heading {
    margin-top: -2px;
    color: #fff;
    text-align: center;
    -webkit-text-stroke-color: #fff;
    font-size: 24px;
    line-height: 1.5;
  }
  .top-page .steps__lists {
    margin-top: 50px;
    padding: 0;
    display: flex;
    flex-direction: row;
    gap: clamp(20px, 6.05vw, 62px);
    justify-content: center;
  }
  .top-page .steps-list {
    flex-direction: column;
    gap: 9px;
  }
  .top-page .steps-list__img {
    flex: 0 0 auto;
    width: clamp(150px, 24.41vw, 250px);
    aspect-ratio: 250/247;
  }
  .top-page .steps-list__img img {
    width: 100%;
  }
  .top-page .steps-list__text {
    font-size: 20px;
    line-height: 1.5;
    text-align: center;
  }
  .top-page .steps-list__text span {
    display: inline-block;
  }
  .top-page .steps-list__link-inner {
    margin-top: -10px;
  }
  .top-page .steps-list__link {
    font-size: 14px;
    line-height: 1.42;
  }
  .top-page .steps-list__link::after {
    width: 11.389px;
    height: 11.396px;
  }
  .top-page .steps-list__link:hover {
    opacity: 0.5;
  }
  .top-page .service {
    padding: 85px 0 95px;
  }
  .top-page .service__box {
    padding: 52px clamp(20px, 3.65vw, 70px) 70px;
    border-radius: 20px;
  }
  .top-page .service__head-inner {
    flex-direction: row;
    text-align: left;
    align-items: start;
    gap: 50px;
  }
  .top-page .service__heading-inner {
    color: #395483;
  }
  .top-page .service__heading-en {
    font-size: 30px;
    line-height: 1.2;
  }
  .top-page .service__heading-ja {
    margin-top: 0px;
    font-size: 14px;
  }
  .top-page .service__head-text {
    font-size: 20px;
    line-height: 1.5;
  }
  .top-page .service__lists {
    margin-top: 73px;
    display: flex;
    gap: clamp(20px, 3.28vw, 63px);
    justify-content: center;
  }
  .top-page .service__img {
    width: clamp(50px, 9.77vw, 100px);
  }
  .top-page .service__text {
    font-size: clamp(12px, 1.56vw, 16px);
  }
  .top-page .members__head-inner {
    display: flex;
    align-items: center;
    gap: 18px;
  }
  .top-page .members__heading-en {
    font-size: 32px;
    line-height: 1.12;
  }
  .top-page .members__heading-ja {
    margin-top: 0;
    font-size: 14px;
  }
  .top-page .members__slides {
    margin-top: 20px;
    overflow: hidden;
  }
  .top-page .members__slides::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 33.4%;
    top: 0;
    right: -1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 12.9%, rgba(255, 255, 255, 0.65) 58.54%, rgba(255, 255, 255, 0.9) 100%);
    z-index: 1;
  }
  .top-page .members__slide {
    width: 260px;
    height: 360px;
  }
  .top-page .members__slide-next {
    width: 24px;
    display: block;
    transform: translateY(-5%);
  }
  .top-page .members__link {
    position: relative;
    top: -12px;
    right: 4px;
    color: #395483;
    font-size: 24px;
    border-bottom: 5px solid #395483;
    padding-right: 60px;
    padding-left: 20px;
    padding-bottom: 14px;
    line-height: 1;
  }
  .top-page .members__link::after {
    width: 43.372px;
    height: 17.695px;
    background: url("./images/members-link-arrow-blue.svg") no-repeat center center/contain;
  }
  .top-page .members__main-text {
    font-size: clamp(20px, 3.13vw, 32px);
    line-height: 1.75;
  }
  .top-page .members__text {
    margin-top: 22px;
    -webkit-text-stroke-width: 0px;
    font-size: clamp(14px, 2.34vw, 24px);
    line-height: 1.83;
    margin-left: 0;
  }
  .top-page .members__text-inner {
    margin-top: 19px;
    display: flex;
    justify-content: space-between;
    align-items: start;
  }
  .top-page .news {
    margin-top: 110px;
  }
  .top-page .news__heading-en {
    font-size: 32px;
    line-height: 1.12;
  }
  .top-page .news__lists {
    margin: 24px 10px 0;
  }
  .top-page .news__list {
    border-bottom: 1px solid #d6dde7;
  }
  .top-page .news__list:first-of-type {
    border-top: 1px solid #d6dde7;
  }
  .top-page .news__link {
    padding: 17px 0 16px;
  }
  .top-page .news__time {
    width: 123px;
    padding-left: 10px;
    font-size: 16px;
    line-height: 1.25;
  }
  .top-page .news__title {
    font-size: 16px;
  }
  .top-page .news__view-more {
    margin-top: 0;
    margin-right: 36px;
  }
  .top-page .news__view-more a {
    font-size: 16px;
    line-height: 1.25;
  }
  .top-page .qa {
    margin-top: 90px;
    margin-bottom: 183px;
  }
  .top-page .qa__heading {
    font-size: 32px;
    line-height: 1.12;
  }
  .top-page .qa__lists {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    padding: 0 10px;
  }
  .top-page .qa-list__head {
    padding: 21px 56px 21px;
    line-height: 1.25;
  }
  .top-page .qa-list__head::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: auto;
    left: 12px;
    width: 24px;
    height: 24px;
    background: url("./images/qa-plus.svg") no-repeat center center/contain;
  }
  .top-page .qa-list__head-text {
    color: #000;
    -webkit-text-stroke-width: 0.1px;
    -webkit-text-stroke-color: #000;
    font-size: 18px;
  }
  .top-page .qa-list__body {
    display: none;
  }
  .top-page .qa-list__a {
    padding: 0px 56px 21px 56px;
  }
  .top-page .qa-list__a-text {
    font-size: 18px;
    line-height: 1.66;
  }
  .concept-page .fv {
    background: url("./images/concept-fv-pc.webp") no-repeat center center/contain;
    aspect-ratio: 1917/632;
  }
  .concept-page .about {
    margin-top: 118px;
  }
  .concept-page .about__head-en {
    font-size: 18px;
    line-height: 1.5;
  }
  .concept-page .about__head-ja {
    font-size: 13px;
    line-height: 1.5;
  }
  .concept-page .about__heading {
    margin-top: 0px;
    font-size: 28px;
    line-height: 1.8;
  }
  .concept-page .about__message {
    padding: 5px 0 118px;
    font-size: 16px;
    line-height: 2.25;
  }
  .concept-page .about__contents {
    background: #e1e7ee;
    padding: 105px 0;
  }
  .concept-page .about__vision, .concept-page .about__creed, .concept-page .about__motto {
    padding: 0;
  }
  .concept-page .about__creed {
    margin-top: 54px;
  }
  .concept-page .about__motto {
    margin-top: 66px;
  }
  .concept-page .about__heading-en {
    font-size: 18px;
    line-height: 1.33;
  }
  .concept-page .about__heading-ja {
    font-size: 24px;
    line-height: 1.33;
    margin-top: 3px;
  }
  .concept-page .about__body {
    padding: 20px 0 20px 0px;
    margin: 16px 0 0 10px;
  }
  .concept-page .about__body--creed {
    padding: 12px 0 0 0px;
    margin: 0 0 0 10px;
  }
  .concept-page .about__body--motto {
    padding: 4px 0 70px 24px;
  }
  .concept-page .about__text {
    padding-left: 1.3em;
    font-size: 18px;
    line-height: 2.22;
  }
  .concept-page .about__creed-img {
    width: 568px;
    left: -8px;
  }
  .concept-page .about__list {
    font-size: 18px;
    line-height: 2.22;
    white-space: nowrap;
  }
  .concept-page .values {
    margin-top: 136px;
  }
  .concept-page .values__heading-en {
    font-size: 18px;
    line-height: 2;
  }
  .concept-page .values__heading-ja {
    font-size: 28px;
    line-height: 1.5;
  }
  .concept-page .values__lists {
    margin-top: 24px;
    gap: 48px;
  }
  .concept-page .values__list {
    padding-left: 42px;
  }
  .concept-page .values__number {
    font-size: 32px;
    line-height: 1.12;
  }
  .concept-page .values__sub-heading {
    margin-top: 10px;
    font-size: 28px;
    line-height: 1;
    padding-bottom: 32px;
  }
  .concept-page .values__text {
    font-size: 16px;
    line-height: 2.25;
  }
  .concept-page .values__text:not(:first-of-type) {
    margin-top: 1.9em;
  }
  .concept-page .values__sub-lists {
    margin-top: 48px;
  }
  .concept-page .values__sub-list {
    line-height: 2;
    text-align: center;
    font-size: 20px;
  }
  .concept-page .message {
    margin-top: 158px;
  }
  .concept-page .message__heading-en {
    font-size: 18px;
    line-height: 2;
  }
  .concept-page .message__heading-ja {
    font-size: 28px;
    line-height: 1.5;
  }
  .concept-page .message__img {
    margin: 20px 0 24px;
    aspect-ratio: 920/569;
  }
  .concept-page .message__img-inner {
    bottom: 11%;
    left: 10%;
  }
  .concept-page .message__post {
    font-size: 18px;
    line-height: 1.33;
  }
  .concept-page .message__name {
    margin-top: 12px;
    font-size: 24px;
    line-height: 1;
  }
  .concept-page .message__text {
    font-size: 16px;
    line-height: 2.25;
    letter-spacing: 0.015em;
    padding-bottom: 0em;
  }
  .concept-page .message__text:not(:first-of-type) {
    margin-top: 22px;
  }
  .concept-page .message__text--2 {
    font-size: 18px;
    line-height: 2.22;
  }
  .concept-page .message__slogan {
    padding: 30px 0 12px;
    height: auto;
  }
  .concept-page .message__slogan img {
    width: /*588*/635px;
    height: auto;
    aspect-ratio: 976/48/*897/49*/;
  }
  .concept-page .info {
    padding: 135px 0 0;
  }
  .concept-page .info__heading-en {
    font-size: 18px;
    line-height: 2;
  }
  .concept-page .info__heading-ja {
    margin-top: 0;
    font-size: 28px;
    line-height: 1.5;
  }
  .concept-page .info-table {
    margin-top: 34px;
    grid-template-columns: clamp(150px, 27.73vw, 284px) auto;
  }
  .concept-page .info-table__head {
    padding: 21px 37px;
    font-size: 18px;
    line-height: 1.33;
    min-height: 66px;
  }
  .concept-page .info-table__body {
    padding: 20px clamp(20px, 4.59vw, 47px) 22px;
  }
  .concept-page .info-table__text {
    font-size: 18px;
    line-height: 1.33;
  }
  .concept-page .info-table__text--inline {
    display: inline-block;
  }
  .concept-page .info-table__date {
    margin-top: 2px;
    font-size: 18px;
    line-height: 1.66;
  }
  .concept-page .info-table__list {
    font-size: 18px;
  }
  .concept-page .location {
    margin-top: 119px;
    margin-bottom: 144px;
  }
  .concept-page .location__heading-en {
    font-size: 18px;
    line-height: 2;
  }
  .concept-page .location__heading-ja {
    margin-top: 0;
    font-size: 28px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
  .concept-page .location__text:first-of-type {
    font-size: 18px;
    line-height: 1.77;
    margin-top: 45px;
  }
  .concept-page .location__text:last-of-type {
    font-size: 18px;
    line-height: 1.77;
  }
  .concept-page .location__map {
    margin-top: 30px;
    aspect-ratio: 922/523;
  }
  .members-page .members {
    padding: 72px 0 180px;
  }
  .members-page .members__inner {
    padding: 0 33px;
    margin: 0 auto;
    max-width: 1378px;
  }
  .members-page .members__heading-en {
    font-size: 36px;
  }
  .members-page .members__heading-ja {
    margin-top: -3px;
    font-size: 18px;
  }
  .members-page .members__lists {
    max-width: 100%;
    margin: 60px auto 0;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .members-page .members-list {
    max-width: 328px;
    padding: 30px clamp(5px, 2.18vw, 30px) 36px;
  }
  .members-page .members-list__img {
    aspect-ratio: 268/371;
  }
  .members-page .members-list__name-ja {
    margin-top: 26px;
    font-size: clamp(14px, 2.15vw, 22px);
  }
  .members-page .members-list__name-en {
    font-size: clamp(10px, 1.56vw, 16px);
  }
  .partners-page .partners {
    padding-bottom: 228px;
  }
  .partners-page .partners__heading-en {
    padding-top: 80px;
    font-size: 36px;
    line-height: 1.22;
  }
  .partners-page .partners__heading-ja {
    padding-bottom: 50px;
    font-size: 18px;
    line-height: 1.33;
  }
  .partners-page .partners__text {
    font-size: 18px;
    margin-right: 1.5em;
    margin-bottom: -2px;
  }
  .partners-page .partners__container {
    padding-bottom: 20px;
  }
  .partners-page .partners__sub-heading {
    font-size: 32px;
    line-height: 1.65;
  }
  .partners-page .partners__sub-heading::after {
    height: 3px;
    margin-left: 36px;
    margin-right: 20px;
  }
  .partners-page .partners__lists {
    margin-top: 22px;
    margin-bottom: 60px;
    padding: 0px 24px;
  }
  .partners-page .partners__list-flex {
    flex: 0 0 36%;
  }
  .partners-page .partners__list-flex:last-of-type {
    flex: 0 0 28%;
  }
  .partners-page .partners__link {
    font-size: 16px;
    line-height: 3.375;
  }
  .partners-page .partners__others-lists {
    max-width: none;
    padding: 22px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
  }
  .partners-page .partners__others-list {
    max-width: clamp(280px, 39.06vw, 300px);
    width: 100%;
  }
  .partners-page .partners__others-img {
    width: 92%;
    aspect-ratio: 39/20;
    margin: auto;
  }
  .partners-page .partners__others-text {
    font-size: 18px;
  }
  .partners-page .partners__others-text--2 {
    font-size: 16px;
  }
  .contact-page .contact {
    padding-bottom: 329px;
  }
  .contact-page .contact__heading-en {
    padding-top: 105px;
    font-size: 40px;
    line-height: 1;
  }
  .contact-page .contact__heading-ja {
    margin-top: 11px;
    font-size: 18px;
    line-height: 1.85;
  }
  .contact-page .contact__text {
    margin-top: 56px;
    font-size: 18px;
    line-height: 2.22;
  }
  .contact-page .form {
    margin: 45px auto 0;
    padding: 0;
    max-width: 638px;
  }
  .contact-page .form__fields {
    gap: 24px;
  }
  .contact-page .form__privacy {
    margin-top: 40px;
  }
  .contact-page .form__checkbox {
    gap: 16px;
  }
  .contact-page .form__checkbox-text {
    font-size: 18px;
    padding-left: 55px;
  }
  .contact-page .form__checkbox-text::before {
    width: 39px;
    height: 39px;
  }
  .contact-page .form__checkbox-text::after {
    width: 30px;
    height: 26px;
    left: 4px;
  }
  .contact-page .form__button {
    margin-top: 39px;
  }
  .contact-page .form__button-input {
    height: 62px;
    padding: 4px;
    font-size: 22px;
  }
  .contact-page .form-field {
    display: flex;
    flex-direction: column;
  }
  .contact-page .form-field__label {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .contact-page .form-field__head {
    font-size: 18px;
    line-height: 1.22;
  }
  .contact-page .form-field__note {
    font-size: 14px;
  }
  .contact-page .form-field__item {
    width: 100%;
  }
  .contact-page .form-field__text {
    height: 52px;
    font-size: 18px;
  }
  .contact-page .form-field__textarea {
    height: 235px;
  }
  .thanks-page {
    margin-top: 66px;
  }
}
@media (min-width: 660px) and (min-width: 1024px) {
  .thanks-page {
    margin-top: 112px;
  }
}
@media (min-width: 660px) {
  .thanks-page .thanks__heading-en {
    padding-top: 105px;
    font-size: 40px;
    line-height: 1;
  }
  .thanks-page .thanks__heading-ja {
    margin-top: 11px;
    font-size: 18px;
    line-height: 1.85;
  }
  .thanks-page .thanks__text {
    font-size: 18px;
  }
  .news-page {
    margin-top: 66px;
  }
}
@media (min-width: 660px) and (min-width: 1024px) {
  .news-page {
    margin-top: 112px;
  }
}
@media (min-width: 660px) {
  .news-page .news {
    padding-bottom: 60px;
  }
  .news-page .news__heading-en {
    padding-top: 64px;
    font-size: 40px;
    line-height: 1.22;
  }
  .news-page .news__heading-ja {
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.33;
  }
  .news-page .news__lists {
    margin: 50px 0 0;
  }
  .news-page .news__list {
    border-bottom: 1px solid #d6dde7;
  }
  .news-page .news__list:first-of-type {
    border-top: 1px solid #d6dde7;
  }
  .news-page .news__link {
    padding: 16px 0 18px;
  }
  .news-page .news__time {
    width: 110px;
    padding-left: 10px;
    font-size: 16px;
    line-height: 1.25;
  }
  .news-page .news__title {
    font-size: 16px;
  }
}/*# sourceMappingURL=style.css.map */