@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap"); /* =========================
// variable
// ========================= */ /* TABLE OF CONTENTS
------------------------------------------------------------
* Global
* Repeatable Patterns
* Layout
* Header
* Menus
* Featured Area
* Content
* Navigations
* Comments
* Widgets
* Footer
* Plugins
* Print
------------------------------------------------------------ */
:root {
  --font-size-base: 16px;
  --font-family-base: "Noto Serif JP", serif;
  --font-family-en: "Noto Sans JP", sans-serif;
  --text-color: #717071;
  --main-color: #6386A9;
  --blue-color: #22355C;
  --blue-color1: #4E5F76;
  --blue-color2: #39548C;
  --blue-color3: #EAEFF5;
  --gray-color: #717071;
  --black-color: #595858;
  --bg-color: #f6f6f6;
  --border-color: #ddd;
  --sp-pd: 15px;
}

/*------------------------------------------------------------
 * タグの基本設定
------------------------------------------------------------*/
html {
  font-size: clamp(14px, 1.5vw, var(--font-size-base));
}

/* 全体 */
body {
  font-size: 1rem;
  font-family: var(--font-family-base);
  color: var(--text-color);
  line-height: 1.6;
  font-weight: 600;
}

/* 見出し */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  letter-spacing: 0.01em;
}

h2 {
  font-size: clamp(1.85rem, 4vw, 3rem);
  /* 20px〜30px */
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.35rem);
  line-height: 1.25;
  /* 16px〜24px */
}

h4 {
  font-size: clamp(1rem, 3vw, 1.25rem);
  /* 16px〜20px */
}

h5 {
  font-size: clamp(0.9375rem, 2.5vw, 1.125rem);
  /* 15px〜18px */
}

h6 {
  font-size: clamp(0.875rem, 2vw, 1rem);
  /* 14px〜16px */
}

/* リンク */
a {
  color: var(--main-color);
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

p a {
  color: var(--main-color);
  text-decoration: underline;
}

a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 781px) {
  a:hover {
    opacity: 1;
  }
}
/* テーブル */
table {
  width: 100%;
  border-collapse: collapse;
}

/* フォーム要素 */
input,
button,
textarea,
select {
  font-family: var(--font-family-base);
  font-size: max(var(--font-size-base), 16px);
  padding: 0.5em;
  font-weight: 500;
  width: 100%;
  overflow-x: hidden;
  color: var(--text-color);
}

textarea::-moz-placeholder {
  white-space: pre-line;
}

textarea::placeholder {
  white-space: pre-line;
}

button {
  background-color: var(--main-color);
  color: #fff;
  cursor: pointer;
}

button:hover {
  background-color: var(--accent-color);
}

@media screen and (max-width: 781px) {
  button:hover {
    background-color: var(--main-color);
  }
}
img {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: middle;
  -o-object-fit: cover;
     object-fit: cover;
}

/* iOSでのデフォルトアイコンを非表示にする */
details summary {
  list-style: none;
  /* リストスタイルの削除 */
}

/* Safari特有のデフォルトマーカーを非表示にする */
summary::-webkit-details-marker {
  display: none;
}

iframe {
  width: 100%;
  height: 100%;
}

/* -------------------------------
   base（変数・mixin・初期設定）
-------------------------------- */
/* ===============================
   Header
=============================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
}
.header__inner {
  display: flex;
  background-color: #fff;
  padding: 1rem;
  align-items: center;
  justify-content: space-between;
  padding-right: 3vw;
}
@media screen and (max-width: 1024px) {
  .header__inner {
    padding: 0.5rem 1rem;
  }
}
.header__logo-img {
  max-width: 150px;
  width: 25vw;
  min-width: 100px;
}
.header__cta {
  margin: 0 3vw 0 auto;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .header__cta {
    display: none;
  }
}
.header__cta img {
  width: 100%;
  display: block;
  max-width: 340px;
}
.header__contact {
  max-width: 260px;
  margin: 0 3vw 0 0;
}
@media screen and (max-width: 1024px) {
  .header__contact {
    display: none;
  }
}
.header__nav {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .header__nav {
    flex-direction: column;
  }
}
.header__nav-list {
  max-width: 800px;
  width: 100%;
  font-size: 1.5rem;
  text-align: center;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 var(--sp-pd);
}
@media screen and (max-width: 1024px) {
  .header__nav-list {
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .header__nav-list {
    font-size: 1rem;
  }
}
.header__nav-item {
  width: 100%;
}
.header__nav-link {
  width: 100%;
  padding: 1rem 0.5rem;
  border-bottom: 1px solid var(--main-color);
}
.header__nav .sp--only {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header__nav .sp--only {
    display: block;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .header__nav .sp--only > * {
    display: block;
    margin: 0;
    max-width: 300px;
  }
}

.footer {
  background-color: var(--main-color);
}
.footer.container {
  padding-top: 1rem;
}
.footer > *,
.footer a {
  color: #fff;
}
.footer__logo {
  max-width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.footer__content {
  display: flex;
  justify-content: space-between;
  padding-right: 7.5vw;
  padding-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .footer__content {
    padding-right: 0;
  }
}
.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.85rem;
}
.footer__copy {
  padding-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .footer__copy {
    text-align: center;
  }
}

/* ===============================
   Hamburger Button
=============================== */
.header__hamburger {
  position: relative;
  aspect-ratio: 1;
  width: 50px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 0.3rem;
  background-color: var(--main-color);
  cursor: pointer;
  /* 開いた状態 */
}
.header__hamburger:hover {
  background-color: var(--main-color);
}
.header__hamburger-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.header__hamburger-line:nth-child(1) {
  top: 15px;
}
.header__hamburger-line:nth-child(2) {
  top: 50%;
  transform: translate(-50%, 50%);
}
.header__hamburger-line:nth-child(3) {
  bottom: 12px;
}
.header__hamburger.is-active .header__hamburger-line:nth-child(1) {
  transform: translate(-50%, 7px) rotate(45deg);
}
.header__hamburger.is-active .header__hamburger-line:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-active .header__hamburger-line:nth-child(3) {
  transform: translate(-50%, -15px) rotate(-45deg);
}

/* ===============================
   ハンバーガーメニュー開閉時のnav制御
=============================== */
.header__nav.is-open {
  max-height: 100vh;
  /* 適宜調整 */
}

/* -------------------------------
   component（ヘッダー、フッター、ハンバーガーメニュー）
-------------------------------- */
body.is-fixed {
  overflow: hidden;
}

.fadein {
  opacity: 0;
  position: relative;
}

.fadein.animate {
  -webkit-animation: inview_slide_up 1.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.4s;
          animation: inview_slide_up 1.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.4s;
}

@-webkit-keyframes inview_slide_up {
  0% {
    bottom: -50px;
  }
  100% {
    opacity: 1;
    bottom: 0;
  }
}

@keyframes inview_slide_up {
  0% {
    bottom: -50px;
  }
  100% {
    opacity: 1;
    bottom: 0;
  }
}
.group-fadein {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
  transform: translateY(150px);
}

.is-active {
  /*要素を表示させる*/
  opacity: 1;
  visibility: visible;
  /*元の位置に戻す*/
  transform: translateY(0);
}

/* -------------------------------
   component（アニメーション）
-------------------------------- */
.container {
  padding: 4rem 0;
}
@media screen and (max-width: 768px) {
  .container {
    padding: 3rem 0;
  }
}
.container-1000 {
  max-width: calc(1080px + var(--sp-pd) * 2);
  margin: 0 auto;
  padding: 0 var(--sp-pd);
}

.section-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  color: var(--blue-color);
  line-height: 1.3;
}
.section-title .t--light-blue {
  color: var(--main-color);
  font-size: 0.55em;
}

.t__lead {
  text-align: center;
  color: var(--blue-color);
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  font-weight: bold;
  margin-top: 0.5em;
}
.t__lead .t--small {
  color: var(--blue-color1);
}
@media screen and (max-width: 768px) {
  .t__lead .t--small {
    display: block;
  }
}

.highlight {
  background-color: #FEE96C;
  font-weight: bold;
}

.contact__fixed {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  -o-object-fit: contain;
     object-fit: contain;
  display: flex;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .contact__fixed {
    top: auto;
    bottom: 0;
    transform: translateY(0);
    width: 100%;
    display: block;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .contact__fixed-list {
    background-color: #4f5f77;
    border-radius: 0.25rem 0.25rem 0 0;
    width: 100%;
    height: 100%;
    display: block;
    text-align: center;
    padding: 0.5rem var(--sp-pd);
  }
  .contact__fixed-list.sp--only {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
  }
}
.contact__fixed-page, .contact__fixed-mail, .contact__fixed-consult {
  flex: 1;
}
.contact__fixed-page a, .contact__fixed-mail a, .contact__fixed-consult a {
  border-radius: 2rem;
  padding: 0.5em 1em;
  width: 100%;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25em;
}
.contact__fixed-page a::before, .contact__fixed-mail a::before, .contact__fixed-consult a::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background-size: contain;
  background-color: currentColor;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
}
.contact__fixed-page a, .contact__fixed-consult a {
  background-color: var(--blue-color);
  color: #fff;
}
.contact__fixed-page a::before {
  -webkit-mask-image: url(../img/icon-store.svg);
          mask-image: url(../img/icon-store.svg);
}
.contact__fixed-consult a::before {
  -webkit-mask-image: url(../img/icon-consult.svg);
          mask-image: url(../img/icon-consult.svg);
}
.contact__fixed-mail a {
  background-color: #fff;
}
.contact__fixed-mail a::before {
  -webkit-mask-image: url(../img/icon-mail.svg);
          mask-image: url(../img/icon-mail.svg);
}
.contact__fixed-img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 318px;
  display: block;
}
@media screen and (max-width: 768px) {
  .contact__fixed-img {
    max-width: 200px;
    margin: 0 auto;
  }
}
.contact__fixed .line__fixed-link {
  max-width: 130px;
  width: 20vw;
  min-width: 90px;
  position: absolute;
  right: var(--sp-pd);
  bottom: var(--sp-pd);
}
@media screen and (max-width: 768px) {
  .contact__fixed .line__fixed-link {
    position: unset;
    margin: 0 0 0 auto;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .contact__fixed .pc--only {
    display: none;
  }
}

.sp--only {
  display: none;
}
@media screen and (max-width: 1024px) {
  .sp--only {
    display: block;
  }
}

.form {
  max-width: 860px;
  margin: 0 auto;
  margin-top: 2rem;
  position: relative;
}
.form__row {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 0.5rem 4rem;
}
@media screen and (max-width: 768px) {
  .form__row {
    flex-direction: column;
    align-items: flex-start;
  }
}
.form__row label {
  width: 220px;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: none;
}
@media screen and (max-width: 768px) {
  .form__row label {
    width: auto;
    gap: 0.5rem;
  }
}
.form__row .wpcf7-form-control-wrap {
  position: relative;
  width: 100%;
}
.form__row input,
.form__row textarea,
.form__row select {
  flex: 1;
  border: 1px solid var(--main-color);
  padding: 10px;
  background: #fff;
  width: 100%;
  border-radius: 0.25rem;
}
.form__row select {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}
.form__row textarea {
  height: 150px;
  resize: vertical;
}
.form__row input[type=radio],
.form__row input[type=checkbox] {
  width: auto;
  /* aspect-ratio: 1; */
  flex: unset;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}
.form__row input[type=radio] {
  border-radius: 50%;
}
.form__row .wpcf7-radio,
.form__row .wpcf7-checkbox {
  display: flex;
  gap: 0.25rem 3rem;
  flex-wrap: wrap;
}
.form__row .wpcf7-radio label,
.form__row .wpcf7-checkbox label {
  justify-content: flex-start;
  gap: 0.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.form .required {
  background: #b40000;
  color: #fff;
  font-size: 12px;
  padding: 2px 6px;
  margin-left: 8px;
  border-radius: 0.25rem;
}
.form__privacy {
  margin: 30px 0 10px;
  text-align: center;
}
.form__privacy a {
  color: var(--main-color);
  text-decoration: underline;
}
.form__privacy span {
  font-size: 0.9em;
}
@media screen and (max-width: 768px) {
  .form__privacy span {
    display: block;
  }
}
.form__check {
  margin-bottom: 30px;
}
.form__check input[type=checkbox] {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  width: auto;
}
.form__check span {
  display: block;
}
.form__check label {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.form__submit {
  text-align: center;
  position: relative;
  color: #fff;
  max-width: 500px;
  margin: 0 auto;
  overflow: hidden;
}
.form__submit::after {
  content: "▶";
  font-size: 0.8em;
  border: 1px solid;
  border-radius: 0.35rem;
  aspect-ratio: 1;
  line-height: 1;
  /* width: 20px; */
  /* height: 20px; */
  display: inline-block;
  padding: 0.5em;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
.form__submit input {
  background: var(--main-color);
  color: #fff;
  padding: 1rem 1rem;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
  border-radius: 0.5rem;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  letter-spacing: 1em;
}
.form__submit input:hover {
  opacity: 0.7;
}
.form .wpcf7-spinner {
  position: absolute;
}

.mv {
  margin-top: 92px;
}
@media screen and (max-width: 1024px) {
  .mv {
    margin-top: 75px;
  }
}
@media screen and (max-width: 768px) {
  .mv {
    margin-top: 64px;
  }
}

.koumuten .mv {
  background-image: url(../img/koumuten/bg-fv.webp);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
}
.koumuten .mv__catch {
  display: flex;
  align-items: center;
  max-width: calc(855px + var(--sp-pd) * 2);
  margin: 0 auto;
  gap: 1.5rem;
  padding: 6rem var(--sp-pd) 0;
}
@media screen and (max-width: 768px) {
  .koumuten .mv__catch {
    padding: 2rem var(--sp-pd) 0;
    flex-direction: column;
  }
}
.koumuten .mv__catch-nano {
  max-width: 220px;
}
@media screen and (max-width: 768px) {
  .koumuten .mv__catch-nano {
    width: 45vw;
    min-width: 150px;
    position: relative;
    left: -2vw;
  }
}
@media screen and (max-width: 768px) {
  .koumuten .mv__catch-nano {
    position: relative;
    z-index: 1;
  }
}
@media screen and (max-width: 768px) {
  .koumuten .mv__catch-nano::before {
    content: "";
    background-image: url(../img/koumuten/fv-circle.webp);
    aspect-ratio: 1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    max-width: 135px;
    width: 55%;
    min-width: 100px;
    position: absolute;
    right: -50%;
    bottom: 0;
    z-index: -1;
  }
}
.koumuten .mv__list {
  display: flex;
  justify-content: space-between;
  max-width: calc(855px + var(--sp-pd) * 2);
  margin: 2rem auto 0;
  gap: 0.85rem 2rem;
  padding: 0 var(--sp-pd);
}
@media screen and (max-width: 768px) {
  .koumuten .mv__list {
    flex-direction: column;
    width: 80%;
  }
}
.koumuten .mv__contact {
  max-width: calc(855px + var(--sp-pd) * 2);
  margin: 0 auto;
  position: relative;
  margin-top: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--sp-pd);
}
@media screen and (max-width: 768px) {
  .koumuten .mv__contact {
    margin-top: 2rem;
  }
}
.koumuten .mv__contact::before {
  content: "";
  background-image: url(../img/koumuten/fv-circle.webp);
  aspect-ratio: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  max-width: 135px;
  width: 100%;
  position: absolute;
  left: 0;
}
@media screen and (max-width: 768px) {
  .koumuten .mv__contact::before {
    display: none;
  }
}
.koumuten .mv__contact img {
  max-width: 500px;
  margin: 0 auto;
  display: block;
}
.koumuten .mv__note {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-top: 5vh;
  color: var(--blue-color);
}
.koumuten .mv__note::before {
  content: "";
  background-color: #fff;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.koumuten .mv__note-text {
  font-size: 0.915rem;
  letter-spacing: 0.01em;
  line-height: 1;
  padding-bottom: 1rem;
  margin-top: 3.5rem;
  padding-top: 1rem;
}
.koumuten .ranking__items {
  display: flex;
  gap: 0.5rem 5rem;
  justify-content: space-between;
  max-width: calc(855px + var(--sp-pd) * 2);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .koumuten .ranking__items {
    gap: 0.5rem 1rem;
    justify-content: center;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.koumuten .ranking__item {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .koumuten .ranking__item {
    max-width: 300px;
    flex: unset;
  }
  .koumuten .ranking__item img {
    width: 100%;
    display: block;
  }
}
.koumuten .ranking__item:first-child {
  grid-column: 1/-1;
  width: 45%;
  margin: 0 auto;
}
.koumuten .about {
  background-image: url(../img/koumuten/bg-about.webp);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  padding-top: 2rem;
}
@media screen and (max-width: 768px) {
  .koumuten .about {
    padding-top: 0;
  }
}
.koumuten .about__img {
  max-width: 615px;
  margin: 2rem auto 0;
  display: block;
}
@media screen and (max-width: 768px) {
  .koumuten .about__img {
    margin-top: 1rem;
  }
}
.koumuten .about__items {
  display: flex;
  gap: 1rem;
  padding-bottom: 2rem;
  margin-top: 2.25rem;
}
@media screen and (max-width: 768px) {
  .koumuten .about__items {
    margin-top: 1.25rem;
    flex-direction: column;
  }
}
.koumuten .about__item {
  flex: 1;
  background-color: #fff;
  padding: 1.25rem 1rem;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
}
.koumuten .about__item-title {
  color: var(--main-color);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2.5em;
}
.koumuten .about__item-img {
  width: 95%;
  margin: 0 auto;
  margin-top: 1.25rem;
}
.koumuten .about__item-text {
  font-size: 0.9rem;
  line-height: 2.1;
}
.koumuten .about__btn {
  text-align: center;
}
.koumuten .about__btn-link {
  max-width: 550px;
  margin: 0 auto;
  display: block;
}
.koumuten .worries {
  background-image: url(../img/koumuten/bg-worries.webp);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  padding-top: 2.85rem;
  padding-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .koumuten .worries {
    padding-bottom: 3rem;
  }
}
.koumuten .worries .t__lead {
  margin-top: 1em;
}
.koumuten .worries__img {
  position: relative;
  top: -4rem;
  width: 95%;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 1024px) {
  .koumuten .worries__img {
    top: 0;
  }
}
.koumuten .merit {
  background-color: var(--blue-color3);
  border-radius: 3rem 3rem 0 0;
  padding-top: 2.25rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  .koumuten .merit {
    padding-bottom: 5rem;
  }
}
.koumuten .merit-title {
  color: var(--blue-color);
  text-align: center;
  border-bottom: 1px solid var(--blue-color);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0 1em 0.25rem;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}
@media screen and (max-width: 768px) {
  .koumuten .merit-title {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .koumuten .merit-title small {
    display: block;
  }
}
.koumuten .merit__links {
  display: flex;
  justify-content: center;
  max-width: 730px;
  margin: 3rem auto 0;
  gap: 1rem 2.25rem;
  counter-reset: num;
}
@media screen and (max-width: 768px) {
  .koumuten .merit__links {
    flex-direction: column;
  }
}
.koumuten .merit__link {
  border: 2px solid var(--blue-color);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
  padding: 1.5rem 1rem 2rem;
  border-radius: 0.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  color: var(--blue-color);
  counter-increment: num;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .koumuten .merit__link {
    padding: 0.85rem 2rem 1rem;
  }
}
.koumuten .merit__link::after {
  content: "▼";
  text-align: center;
  font-size: 2.5rem;
  line-height: 1;
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .koumuten .merit__link::after {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    font-size: 1.85rem;
  }
}
.koumuten .merit__link-num {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.05rem;
}
@media screen and (max-width: 768px) {
  .koumuten .merit__link-num {
    font-size: 1rem;
    flex-direction: row;
    position: relative;
  }
}
.koumuten .merit__link-num::after {
  content: counter(num, decimal-leading-zero);
  color: #fff;
  -webkit-text-stroke: 4px var(--blue-color);
  paint-order: stroke;
  font-size: 3.25em;
  font-style: italic;
  line-height: 1;
  margin-top: 0.15em;
  font-weight: bold;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .koumuten .merit__link-num::after {
    margin-top: 0;
    margin-left: 0.15em;
    font-size: 1.8em;
    -webkit-text-stroke: 3px var(--blue-color);
  }
}
.koumuten .merit__link-text {
  font-size: clamp(1rem, 3vw, 1.85rem);
  text-align: center;
  margin-top: 1.25em;
  font-weight: bold;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .koumuten .merit__link-text {
    text-align: left;
    font-size: 1.2rem;
    margin-top: 0.5em;
  }
}
@media screen and (max-width: 768px) {
  .koumuten .merit__link-text br {
    display: none;
  }
}
.koumuten .merit__items {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  margin-top: 10rem;
}
@media screen and (max-width: 768px) {
  .koumuten .merit__items {
    margin-top: 4rem;
    gap: 2rem;
  }
}
.koumuten .merit__img {
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .koumuten .merit__img-area {
    position: relative;
  }
}
.koumuten .merit__text {
  display: none;
}
.koumuten .merit .table__scroll {
  display: none;
}
@media screen and (max-width: 768px) {
  .koumuten .merit .table__scroll {
    display: block;
    /* position: absolute; */
    /* bottom: 0; */
    overflow: scroll;
    padding: 5%;
    background-color: #fff;
  }
  .koumuten .merit .table__scroll img {
    width: 500px;
    max-width: unset;
  }
}
@media screen and (max-width: 768px) {
  .koumuten .merit__item:nth-child(2) .table__scroll img {
    width: 100%;
  }
}
.koumuten .partner {
  background-image: url(../img/koumuten/bg-partner.webp);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}
.koumuten .partner-title {
  color: var(--blue-color1);
  padding-bottom: 3rem;
}
.koumuten .partner__items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 0 auto;
}
.koumuten .partner__item {
  padding: 1.85rem 4rem;
  padding-left: 3rem;
  background-color: #fff;
  border: 3px solid var(--blue-color);
  border-radius: 0.5rem;
  display: flex;
  gap: 1rem 4rem;
  align-items: anchor-center;
}
@media screen and (max-width: 768px) {
  .koumuten .partner__item {
    flex-direction: column;
    padding: 1rem;
    align-items: baseline;
  }
}
.koumuten .partner__meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .koumuten .partner__meta {
    flex-direction: row;
  }
}
.koumuten .partner__img {
  max-width: 140px;
  width: 25vw;
  min-width: 90px;
}
.koumuten .partner__name {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.5em;
  line-height: 1.85;
}
@media screen and (max-width: 768px) {
  .koumuten .partner__name {
    margin: 0;
    text-align: left;
  }
}
.koumuten .partner__content {
  font-size: 1.3rem;
  flex: 3;
}
.koumuten .partner__content-title {
  color: var(--blue-color);
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  letter-spacing: 0.02em;
}
.koumuten .partner__content-text {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  margin-top: 0.5em;
  line-height: 1.9;
}
.koumuten .flow {
  background-image: url(../img/koumuten/bg-qa.webp);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  padding-top: 5rem;
  padding-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .koumuten .flow {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .koumuten .flow__img {
    padding-top: 1rem;
  }
}
.koumuten .lineup {
  padding-top: 5rem;
}
@media screen and (max-width: 768px) {
  .koumuten .lineup {
    padding-top: 3rem;
  }
}
.koumuten .lineup-title {
  color: var(--blue-color1);
}
.koumuten .lineup__img {
  margin-top: 2.5rem;
}
.koumuten .faq {
  background-image: url(../img/koumuten/bg-qa.webp);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  padding-top: 2.5rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  .koumuten .faq {
    padding-bottom: 4rem;
  }
}
.koumuten .faq__items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 3rem;
}
.koumuten .faq__item {
  background-color: #fff;
  padding: 3rem 7rem 3rem 2.5rem;
  border-radius: 0 0 3rem 0;
}
@media screen and (max-width: 768px) {
  .koumuten .faq__item {
    border-radius: 0 0 2rem 0;
    padding: 1rem 2rem 1rem 0.85rem;
  }
}
.koumuten .faq__item-q {
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 3em;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .koumuten .faq__item-q {
    font-size: 1rem;
  }
}
.koumuten .faq__item-q::before, .koumuten .faq__item-q::after {
  position: absolute;
  content: "";
  top: -7px;
  right: -50px;
  bottom: 0;
  width: 18px;
  height: 2px;
  margin: auto;
  background: #151E2F;
}
@media screen and (max-width: 768px) {
  .koumuten .faq__item-q::before, .koumuten .faq__item-q::after {
    top: -7px;
    right: -14px;
    bottom: 0;
    width: 14px;
    height: 1px;
  }
}
.koumuten .faq__item-q::after {
  transform: rotate(-90deg);
  transition: transform 0.3s;
}
.koumuten .faq__item-q.active::after {
  transform: rotate(0deg);
}
.koumuten .faq__item-a {
  position: relative;
  display: flex;
  align-items: center;
  border-top: 3px solid var(--main-color);
  padding-top: 2.5rem;
  margin-top: 1.25rem;
  font-size: 1.05rem;
  display: none;
}
@media screen and (max-width: 768px) {
  .koumuten .faq__item-a {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--main-color);
  }
}
.koumuten .faq__q-icon, .koumuten .faq__a-icon {
  background-color: #8BAED2;
  border-radius: 50%;
  /* padding: 1em; */
  color: #fff;
  line-height: 1;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2em;
  height: 2em;
  margin-right: 2.5em;
  flex: none;
}
@media screen and (max-width: 768px) {
  .koumuten .faq__q-icon, .koumuten .faq__a-icon {
    margin-right: 1em;
  }
}
.koumuten .faq__q-icon::before, .koumuten .faq__a-icon::before {
  content: "Q";
}
.koumuten .faq__a-icon {
  background-color: var(--main-color);
  margin-right: 4rem;
}
@media screen and (max-width: 768px) {
  .koumuten .faq__a-icon {
    margin-right: 1em;
  }
}
.koumuten .faq__a-icon::before {
  content: "A";
}
.koumuten .dealer-title {
  color: var(--blue-color1);
  text-align: right;
}
.koumuten .dealer-title .list-date {
  display: block;
  margin: 0 0 0 auto;
  font-size: 0.385em;
  color: var(--text-color);
  margin-top: 0.8em;
}
.koumuten .dealer .t__lead {
  color: var(--main-color);
}
.koumuten .dealer__btn-list {
  display: flex;
  gap: 0.5rem 3rem;
  max-width: 990px;
  margin: 2rem auto 1.25rem;
}
@media screen and (max-width: 768px) {
  .koumuten .dealer__btn-list {
    flex-direction: column;
  }
}
.koumuten .dealer__btn-item {
  flex: 1;
  font-size: clamp(1.35rem, 3vw, 2.5rem);
  padding: 0.5em;
  text-align: center;
  border: 2px solid var(--main-color);
  border-radius: 0.5rem;
  background-color: var(--main-color);
  color: #fff;
  position: relative;
  line-height: 1;
  cursor: pointer;
}
.koumuten .dealer__btn-item::after {
  content: "▶";
  font-size: 0.4em;
  border: 2px solid;
  border-radius: 0.35rem;
  aspect-ratio: 1;
  line-height: 1;
  /* width: 20px; */
  /* height: 20px; */
  display: inline-block;
  padding: 0.5em;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
.koumuten .dealer__btn-item.current {
  color: var(--main-color);
  background-color: #fff;
}
.koumuten .dealer .content-box {
  display: none;
}
.koumuten .dealer__stores {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 990px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .koumuten .dealer__stores {
    gap: 1.5rem;
  }
}
.koumuten .dealer__store {
  background-color: #fff;
  border: 2px solid var(--blue-color3);
  border-radius: 5px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .koumuten .dealer__store {
    margin-bottom: 1.5rem;
  }
}
.koumuten .dealer__store:last-child {
  margin-bottom: 0;
}
.koumuten .dealer__store-title {
  background-color: var(--blue-color3);
  color: #000;
  padding: 0.5rem 1.5rem;
  margin-bottom: 1rem;
}
.koumuten .dealer__store-row {
  display: flex;
  padding: 0.55rem 1.5rem;
}
@media screen and (max-width: 768px) {
  .koumuten .dealer__store-row {
    flex-direction: column;
    padding: 0 1.5rem;
  }
}
.koumuten .dealer__store-row:last-child .dealer__store-name, .koumuten .dealer__store-row:last-child .dealer__store-info {
  border-bottom: unset;
}
.koumuten .dealer__store-name {
  border-bottom: 3px solid var(--blue-color3);
  padding-right: 15rem;
  flex: none;
  padding-bottom: 0.55rem;
}
@media screen and (max-width: 1024px) {
  .koumuten .dealer__store-name {
    padding-right: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .koumuten .dealer__store-name {
    border: none;
    padding-right: 0;
    padding-bottom: 0;
    padding-top: 0.55rem;
  }
}
.koumuten .dealer__store-info {
  border-bottom: 3px solid var(--blue-color3);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .koumuten .dealer__store-info {
    border-bottom: 1px solid var(--blue-color3);
    padding-bottom: 0.55rem;
  }
}
.koumuten .contact {
  padding-top: 8rem;
}
@media screen and (max-width: 768px) {
  .koumuten .contact {
    padding-top: 2rem;
  }
}
.koumuten .contact .tab-list {
  display: flex;
  width: 100%;
}
.koumuten .contact .tab-menu {
  flex: 1;
  color: #000;
  font-size: clamp(1.05rem, 4vw, 1.85rem);
  text-align: center;
  position: relative;
  border-top: 3px solid;
  font-weight: 700;
  padding: 1em 0;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .koumuten .contact .tab-menu {
    display: flex;
    flex-direction: column;
  }
}
.koumuten .contact .tab-menu::after {
  content: "▼";
  position: absolute;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .koumuten .contact .tab-menu::after {
    position: unset;
    transform: none;
  }
}
.koumuten .contact .tab-menu.tab--blue {
  border-color: #1C84BA;
  background-color: #EFF6FC;
}
.koumuten .contact .tab-menu.tab--blue::after {
  color: #1C84BA;
}
.koumuten .contact .tab-menu.tab--yellow {
  border-color: #FEE96C;
  background-color: #FFFDEA;
}
.koumuten .contact .tab-menu.tab--yellow::after {
  color: #FEE96C;
}
.koumuten .contact .content-box {
  display: none;
  padding: 4rem 3rem;
  border-radius: 0 0 0.5rem 0.5rem;
}
@media screen and (max-width: 768px) {
  .koumuten .contact .content-box {
    padding: 2rem 1rem;
  }
}
.koumuten .contact .content-box > * {
  color: #000;
}
.koumuten .contact .content-box.tab--blue {
  border-color: #1C84BA;
  background-color: #EFF6FC;
}
.koumuten .contact .content-box.tab--blue::after {
  color: #1C84BA;
}
.koumuten .contact .content-box.tab--yellow {
  border-color: #FEE96C;
  background-color: #FFFDEA;
}
.koumuten .contact .content-box.tab--yellow::after {
  color: #FEE96C;
}
.koumuten .contact__title {
  text-align: center;
  font-size: clamp(1.25rem, 4vw, 2.45rem);
}

.access {
  padding-top: 5rem;
}
@media screen and (max-width: 768px) {
  .access {
    padding-top: 0;
  }
}
.access__title {
  color: var(--main-color);
  display: flex;
  align-items: center;
  gap: 1em;
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  .access__title {
    font-size: 1.05rem;
  }
}
.access__title::before {
  content: "";
  width: 1em;
  height: 1px;
  background-color: var(--main-color);
  display: block;
}
.access__name {
  font-size: clamp(1.2rem, 4vw, 1.725rem);
  margin-top: 1.5rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .access__name {
    margin-top: 1rem;
  }
}
.access__info {
  display: block;
}
.access__map {
  aspect-ratio: 1/0.5;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .access__map {
    margin-top: 1.5rem;
  }
}

.top .mv {
  background-image: url(../img/top/bg-fv.webp);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  padding-top: 11vh;
  padding-bottom: 7vh;
}
@media screen and (max-width: 768px) {
  .top .mv {
    padding-top: 15vh;
    background-position: 65% center;
    height: calc(100vh - 64px);
    padding-bottom: 0;
  }
}
.top .mv .container-1000 {
  max-width: calc(1005px + var(--sp-pd) * 2);
}
.top .mv__catch img {
  max-width: 600px;
  min-width: 280px;
  width: 39vw;
}
@media screen and (max-width: 768px) {
  .top .mv__catch img {
    width: 90%;
    margin: 0 auto;
    display: block;
  }
}
.top .list {
  background-image: url(../img/top/bg-list.webp);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  padding-top: 7rem;
  padding-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .top .list {
    padding-top: 4rem;
  }
}
.top .list .container-1000 {
  max-width: calc(1005px + var(--sp-pd) * 2);
}
.top .list__items {
  --gap: 1.25rem;
  --number: 4;
  --child-width: calc((100% - var(--gap) * (var(--number) - 1)) / var(--number));
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  row-gap: 1.5rem;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .top .list__items {
    --number: 2;
  }
}
.top .list__item {
  width: var(--child-width);
}
.top .about {
  background-image: url(../img/top/bg-about.webp);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  padding-top: 1.5rem;
}
.top .about__flex {
  display: flex;
  margin-top: 2rem;
  gap: 1rem 2.5rem;
  max-width: 920px;
  margin: 3rem auto;
}
@media screen and (max-width: 768px) {
  .top .about__flex {
    flex-direction: column;
    margin-top: 2rem;
    margin-bottom: 0;
  }
}
.top .about__flex-content {
  flex: 1;
}
.top .about__flex-title {
  font-size: clamp(1.35rem, 4vw, 2.05rem);
  color: var --main-color;
  line-height: 1.35;
}
.top .about__flex-title span {
  border: 1px solid var(--main-color);
  color: var(--main-color);
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.7em 1.5em;
  border-radius: 0.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.5em;
  margin-top: 0.5em;
}
.top .about__flex-text {
  width: 88%;
  margin-top: 2rem;
  font-size: 1.08rem;
  line-height: 2.15;
}
@media screen and (max-width: 768px) {
  .top .about__flex-text {
    width: 100%;
    margin-top: 1rem;
  }
}
.top .about__flex-text--bold {
  font-size: clamp(1.15rem, 4vw, 1.65rem);
  color: var(--main-color);
  font-weight: 700;
  margin-top: 1.5em;
}
@media screen and (max-width: 768px) {
  .top .about__flex-text--bold {
    margin-top: 1rem;
  }
}
.top .about__flex-img {
  flex: none;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 400px;
  width: 40vw;
  flex: 0.75;
}
@media screen and (max-width: 768px) {
  .top .about__flex-img {
    width: 100%;
  }
}
.top .bubble {
  background-image: url(../img/top/bg-bubble.webp);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  padding-top: 8.5rem;
}
@media screen and (max-width: 768px) {
  .top .bubble {
    padding-top: 3rem;
  }
}
.top .bubble__text {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .top .bubble__text {
    font-size: 1.1rem;
    text-align: left;
  }
}
.top .bubble__img {
  margin-top: 3.5rem;
}
@media screen and (max-width: 768px) {
  .top .bubble__img {
    margin-top: 1.5rem;
  }
}
.top .feature {
  background-image: url(../img/top/bg-about.webp);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  padding-top: 6rem;
  padding-bottom: 3.25rem;
}
@media screen and (max-width: 768px) {
  .top .feature {
    padding-top: 3rem;
  }
}
.top .feature__items {
  display: flex;
  gap: 1rem 1.5rem;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .top .feature__items {
    flex-direction: column;
  }
}
.top .feature__item {
  flex: 1;
}
.top .feature__text {
  display: none;
}
.top .feature__line {
  max-width: 760px;
  margin: 0 auto;
  margin-top: 3.5rem;
}
.top .feature__line-link {
  background-color: #06c755;
  padding: var(--sp-pd);
  border-radius: 0.5rem;
  width: 100%;
  text-align: center;
}
.top .feature__line-img {
  max-width: 475px;
}
.top .popularity {
  background-image: url(../img/top/bg-popularity.webp);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  padding-top: 3.25rem;
  padding-bottom: 11rem;
}
@media screen and (max-width: 1024px) {
  .top .popularity {
    padding-bottom: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .top .popularity {
    padding-bottom: 3rem;
  }
}
.top .popularity__items {
  display: flex;
  gap: 1rem 1.5rem;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .top .popularity__items {
    flex-direction: column;
  }
}
.top .popularity__item {
  flex: 1;
}
.top .popularity__text {
  display: none;
}
.top .voice {
  background-image: url(../img/top/bg-voice.webp);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
}
.top .voice__items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.25rem;
}
.top .voice__items small {
  text-align: right;
}
.top .voice__item {
  padding: 1.85rem 3.15rem;
  padding-left: 3rem;
  background-color: #fff;
  border: 3px solid var(--blue-color);
  border-radius: 0.5rem;
  display: flex;
  gap: 1rem 1.5rem;
  align-items: anchor-center;
}
@media screen and (max-width: 768px) {
  .top .voice__item {
    flex-direction: column;
    padding: 1rem;
  }
}
.top .voice__item-title {
  color: var(--blue-color);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  letter-spacing: 0.02em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top .voice__item-title {
    order: 2;
    width: 60%;
    text-align: left;
    /* お好みで調整 */
  }
}
.top .voice__item-text {
  font-size: 0.85rem;
  /* margin-top: 0.5em; */
  line-height: 2.15;
  flex: 2.5;
}
.top .voice__item-img {
  max-width: 140px;
  width: 25vw;
  min-width: 90px;
}
@media screen and (max-width: 768px) {
  .top .voice__item-img {
    order: 1;
    width: 30%;
    /* お好みで調整 */
  }
}
.top .voice__item-name {
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.5em;
  line-height: 1.85;
}
@media screen and (max-width: 768px) {
  .top .voice__item-name {
    order: 3;
    width: 100%;
    margin-top: 8px;
    background-color: var(--blue-color3);
    border-radius: 0.25rem;
    color: var(--blue-color2);
  }
}
.top .voice__meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .top .voice__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: row;
  }
}
.top .flow {
  background-image: url(../img/top/bg-flow.webp);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  padding-top: 5.5rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 768px) {
  .top .flow {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.top .flow-title {
  color: #fff;
}
.top .flow__img {
  margin-top: 3.25rem;
}
@media screen and (max-width: 768px) {
  .top .flow__img {
    margin-top: 2rem;
  }
}
.top .faq__sub-title {
  font-size: clamp(1.55rem, 4vw, 2.5rem);
  color: var(--main-color);
  display: flex;
  align-items: center;
  gap: 0.25em;
  margin-top: 2.5rem;
  margin-left: 0.85em;
}
.top .faq__sub-title::before {
  content: "";
  display: inline-block;
  width: 1.35em;
  height: 2px;
  background-color: var(--main-color);
}
.top .faq__items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2.25rem;
}
.top .faq__item {
  background-color: var(--bg-color);
  padding: 3rem 6.25rem 3rem 2.5rem;
  border-radius: 0 0 3rem 0;
}
@media screen and (max-width: 768px) {
  .top .faq__item {
    border-radius: 0 0 2rem 0;
    padding: 1rem 2rem 1rem 0.85rem;
  }
}
.top .faq__item-q {
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 3em;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  color: #000;
}
@media screen and (max-width: 768px) {
  .top .faq__item-q {
    font-size: 1rem;
  }
}
.top .faq__item-q::before, .top .faq__item-q::after {
  position: absolute;
  content: "";
  top: -7px;
  right: -50px;
  bottom: 0;
  width: 18px;
  height: 2px;
  margin: auto;
  background: #151E2F;
}
@media screen and (max-width: 768px) {
  .top .faq__item-q::before, .top .faq__item-q::after {
    top: -7px;
    right: -14px;
    bottom: 0;
    width: 14px;
    height: 1px;
  }
}
.top .faq__item-q::after {
  transform: rotate(-90deg);
  transition: transform 0.3s;
}
.top .faq__item-q.active::after {
  transform: rotate(0deg);
}
.top .faq__item-a {
  position: relative;
  display: flex;
  align-items: center;
  border-top: 3px solid var(--main-color);
  padding-top: 2.5rem;
  margin-top: 1.25rem;
  font-size: 1.05rem;
  display: none;
  color: #000;
}
@media screen and (max-width: 768px) {
  .top .faq__item-a {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--main-color);
  }
}
.top .faq__q-icon, .top .faq__a-icon {
  background-color: #8BAED2;
  border-radius: 50%;
  /* padding: 1em; */
  color: #fff;
  line-height: 1;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2em;
  height: 2em;
  margin-right: 2.5em;
  flex: none;
}
@media screen and (max-width: 768px) {
  .top .faq__q-icon, .top .faq__a-icon {
    margin-right: 1em;
  }
}
.top .faq__q-icon::before, .top .faq__a-icon::before {
  content: "Q";
}
.top .faq__a-icon {
  background-color: var(--main-color);
  margin-right: 4rem;
}
@media screen and (max-width: 768px) {
  .top .faq__a-icon {
    margin-right: 1em;
  }
}
.top .faq__a-icon::before {
  content: "A";
}
.top .inst {
  background-image: url(../img/top/bg-about.webp);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  padding-bottom: 5rem;
}
.top .inst-title {
  display: flex;
  align-items: center;
  gap: 0.25em;
  line-height: 1;
}
.top .inst__icon {
  width: 1em;
  height: 1em;
  vertical-align: baseline;
  background-color: var(--blue-color);
  -webkit-mask: url("../img/top/inst.svg") no-repeat center/contain;
  mask: url("../img/top/inst.svg") no-repeat center/contain;
}
.top .inst__area {
  width: 100%;
  margin-top: 3.85rem;
}
.top .contact {
  background-image: url(../img/top/bg-contact.webp);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  padding-top: 5.5rem;
}
.top .contact-title {
  color: #fff;
}
.top .contact__area {
  background-color: #fff;
  padding: 2rem;
  border-radius: 0.5rem;
  margin-top: 2rem;
}
.top .contact .form__row {
  border-bottom: 1px solid #000;
  padding: 3rem 1rem;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .top .contact .form__row {
    padding: 1rem 0.5rem;
  }
}
.top .contact .form__row:first-child {
  border-top: 1px solid #000;
}
.top .company {
  padding-top: 7rem;
}
@media screen and (max-width: 768px) {
  .top .company {
    padding-top: 4rem;
  }
}

.page .mv {
  background-image: url(../img/bg-page_fv.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
}
.page .mv__catch {
  text-align: center;
  font-size: clamp(2rem, 6vw, 3rem);
  padding-top: 0.35em;
}
.page__content {
  padding: 5rem 0;
  background-color: var(--blue-color3);
}
@media screen and (max-width: 768px) {
  .page__content {
    padding: 3.5rem 0;
  }
}
/*# sourceMappingURL=style.css.map */