@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  display: block;
  max-width: 100%;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  opacity: 0;
  position: absolute;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

address {
  font-style: normal;
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.28vw;
  }
}
@media (min-width: 1250px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

a {
  -webkit-text-decoration: none;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}

/* hover指定できるPCを想定したスタイル */
@media (any-hover: hover) {
  a:hover {
    opacity: 0.8;
  }
}
/* hoverが使えないタッチ端末を想定した装飾 */
@media (hover: none) {
  a:active {
    opacity: 0.8;
  }
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 4.375rem;
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 5rem;
  }
}

body {
  background-color: #EEF2F7;
  color: #00285A;
  display: flex;
  flex-direction: column;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
  text-rendering: optimizeSpeed;
}

main {
  flex: 1;
}

.l-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 540px;
  max-width: 33.75rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1250px;
    max-width: 78.125rem;
    padding-left: 25px;
    padding-left: 1.5625rem;
    padding-right: 25px;
    padding-right: 1.5625rem;
  }
}

.page-breadcrumb {
  padding-top: 78px;
  padding-top: 4.875rem;
}
@media screen and (min-width: 768px) {
  .page-breadcrumb {
    padding-top: 95px;
    padding-top: 5.9375rem;
  }
}

.page-contact-complete {
  padding-top: 75px;
  padding-top: 4.6875rem;
}
@media screen and (min-width: 768px) {
  .page-contact-complete {
    padding-bottom: 47px;
    padding-bottom: 2.9375rem;
    padding-top: 140px;
    padding-top: 8.75rem;
  }
}

.page-contact-form {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .page-contact-form {
    margin-top: 80px;
    margin-top: 5rem;
  }
}

.page-error {
  padding-top: 75px;
  padding-top: 4.6875rem;
}
@media screen and (min-width: 768px) {
  .page-error {
    padding-bottom: 47px;
    padding-bottom: 2.9375rem;
    padding-top: 140px;
    padding-top: 8.75rem;
  }
}

.page-sub-complete {
  padding-top: 75px;
  padding-top: 4.6875rem;
}
@media screen and (min-width: 768px) {
  .page-sub-complete {
    padding-bottom: 47px;
    padding-bottom: 2.9375rem;
    padding-top: 140px;
    padding-top: 8.75rem;
  }
}

.page-sub-footer {
  background-color: #EEF2F7;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .page-sub-footer {
    margin-top: 80px;
    margin-top: 5rem;
  }
}

.page-sub-footer--non-mv {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .page-sub-footer--non-mv {
    margin-top: 110px;
    margin-top: 6.875rem;
  }
}

/* バナー(画像とテキスト) */
.banner {
  margin-left: auto;
  margin-right: auto;
  max-width: 500px;
  max-width: 31.25rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .banner {
    max-width: 1200px;
    max-width: 75rem;
  }
}

@media screen and (min-width: 768px) {
  .banner__content {
    display: flex;
  }
}

.banner__image img {
  -o-object-fit: cover;
  aspect-ratio: 335/140;
  border-radius: 8px 8px 0 0;
  height: 100%;
     object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .banner__image img {
    aspect-ratio: 320/220;
    border-radius: 12px 0 0 12px;
  }
}

.banner__text {
  background-color: #E4ECF6;
  background-image: url(../../assets/images/top/subsidy-mask.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  border-radius: 0 0 8px 8px;
  padding: 25px 20px;
  padding: 1.5625rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .banner__text {
    background-image: none;
    border-radius: 0 12px 12px 0;
    padding: 30px 50px;
    padding: 1.875rem 3.125rem;
  }
}

.banner__subtitle {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.4;
  padding-left: 50px;
  padding-left: 3.125rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .banner__subtitle {
    font-size: 18px;
    font-size: 1.125rem;
    letter-spacing: 0.04em;
    padding-left: 85px;
    padding-left: 5.3125rem;
  }
}

.banner__subtitle::before {
  background-image: url(../../assets/images/top/info-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 36px;
  height: 2.25rem;
  left: 0;
  position: absolute;
  width: 36px;
  width: 2.25rem;
}
@media screen and (min-width: 768px) {
  .banner__subtitle::before {
    height: 60px;
    height: 3.75rem;
    width: 60px;
    width: 3.75rem;
  }
}

.banner__title {
  border-bottom: 1px solid #A0B4D2;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.3;
  margin-top: 8px;
  margin-top: 0.5rem;
  padding-bottom: 16px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .banner__title {
    line-height: 1.4;
    padding-bottom: 18px;
    padding-left: 85px;
    padding-left: 5.3125rem;
  }
}

.banner__title::after {
  border-bottom: 1px solid #00285A;
  bottom: -1px;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  width: 27.1%;
}
@media screen and (min-width: 768px) {
  .banner__title::after {
    width: 15.4%;
  }
}

.banner__title span {
  color: #966414;
}

.banner__description {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.6;
  padding-top: 14px;
  padding-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .banner__description {
    line-height: 1.8;
    padding-top: 16px;
    padding-top: 1rem;
  }
}

/* パンくずリスト */
.breadcrumb__nav ol {
  align-items: center;
  display: flex;
}

.breadcrumb__nav li {
  margin: 0;
  padding: 0;
}

.breadcrumb__nav li + li::before {
  color: #fff;
  content: ">";
  padding: 0 0.2em;
}

.breadcrumb__nav a {
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .breadcrumb__nav a {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

/* 2024.12.25 追加 - start */
.breadcrumb__nav a.current {
  pointer-events: none;
}
/* 2024.12.25 追加 - end */

.breadcrumb__nav.--base-color li + li::before {
  color: #00285A;
}

.breadcrumb__nav.--base-color a {
  color: #00285A;
}

@media screen and (min-width: 768px) {
  .breadcrumb__nav__inner.l-inner {
    margin-left: 0;
    margin-right: 0;
    padding-left: 30px;
    padding-left: 1.875rem;
    padding-right: 30px;
    padding-right: 1.875rem;
  }
}

.breadcrumb__nav.breadcrumb__nav--sub-color {
  background-color: #EEF2F7;
}

.breadcrumb__nav.breadcrumb__nav--sub-wh-color {
  color: #fff;
}

/* 共通ボタン */
.button-wh {
  background-image: none;
  border: 1px solid #00285A;
  border-radius: 3.125rem;
  color: #00285A;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  max-width: 240px;
  max-width: 15rem;
  padding: 1.2em 2.2em;
  position: relative;
  text-align: left;
  text-shadow: none;
  transition: all 0.3s;
  width: 100%;
}

.button-wh::before {
  background-color: #00285A;
  border-radius: 3.125rem;
  content: "";
  height: 20px;
  height: 1.25rem;
  left: auto;
  position: absolute;
  right: 18px;
  right: 1.125rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
  width: 20px;
  width: 1.25rem;
  z-index: 10;
  z-index: 3;
}

.button-wh::after {
  background-color: #fff;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  content: "";
  height: 6px;
  height: 0.375rem;
  left: auto;
  position: absolute;
  right: 24px;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
  width: 6px;
  width: 0.375rem;
  z-index: 10;
}

@media (any-hover: hover) {
  .button-wh:hover {
    background-color: #00285A;
    color: #fff;
    opacity: 1;
  }
  .button-wh:hover::before {
    background-color: #fff;
  }
  .button-wh:hover::after {
    background-color: #00285A;
  }
}
/* 共通ボタン */
.button {
  background-image: linear-gradient(90deg, #966400, #BE9613);
  border: 1px solid #966400;
  border-radius: 3.125rem;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  max-width: 100%;
  overflow: hidden;
  padding: 1.2em 1em;
  position: relative;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
  vertical-align: middle;
  width: 160px;
  width: 10rem;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .button {
    padding: 1.55em 0.6em;
    width: 120px;
    width: 7.5rem;
  }
}

.button::before,
.button::after {
  border-radius: 3.125rem;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.button::before {
  background-image: linear-gradient(90deg, #966400, #BE9613);
  transition: 0.5s;
  z-index: -1;
}

.button::after {
  background-image: linear-gradient(90deg, #BE9613, #8C3C00);
  z-index: -2;
}

@media (any-hover: hover) {
  .button:hover::before {
    opacity: 0;
  }
}
/* CTA(お問い合わせと資料請求ボタン横並び) */
.cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  gap: 0.625rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 500px;
  max-width: 31.25rem;
}
@media screen and (min-width: 768px) {
  .cta {
    flex-direction: row;
    gap: 40px;
    gap: 2.5rem;
    max-width: 1200px;
    max-width: 75rem;
  }
}

.cta__item {
  background-color: rgba(40, 80, 130, 0.6);
  border: 1px solid #466EB4;
  border-radius: 12px;
  padding: 1.2em 1em 1.9em;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .cta__item {
    padding: 2.5em 1em;
    width: 50%;
  }
}

.cta__text {
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .cta__text {
    font-size: 22px;
    font-size: 1.375rem;
    letter-spacing: 0.04em;
  }
}

.cta__text + a {
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .cta__text + a {
    margin-top: 16px;
    margin-top: 1rem;
  }
}

/* FAQ(アコーディオン) */
.faq-list__item {
  border-bottom: 1px solid #A0B4D2;
  color: #001432;
}

.faq-list__item:first-child {
  border-top: 1px solid #A0B4D2;
}

.faq-list__item-question {
  cursor: pointer;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  padding: 20px 40px 20px 45px;
  padding: 1.25rem 2.5rem 1.25rem 2.8125rem;
  position: relative;
  transition: 0.4s;
}
@media screen and (min-width: 768px) {
  .faq-list__item-question {
    font-size: 24px;
    font-size: 1.5rem;
    padding: 33px 60px 33px 80px;
    padding: 2.0625rem 3.75rem 2.0625rem 5rem;
  }
}

.faq-list__item-circle {
  border: 1px solid currentColor;
  border-radius: 50%;
  box-sizing: content-box;
  color: #00285A;
  display: inline-block;
  height: 30px;
  line-height: 1;
  position: relative;
  position: absolute;
  right: 0;
  top: 20px;
  top: 1.25rem;
  transition: 0.4s;
  vertical-align: middle;
  width: 30px;
}
@media screen and (min-width: 768px) {
  .faq-list__item-circle {
    height: 35px;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
  }
}
@media screen and (min-width: 1024px) {
  .faq-list__item-circle {
    height: 40px;
    width: 40px;
  }
}

.faq-list__item-circle::before,
.faq-list__item-circle::after {
  background-color: #00285A;
  content: "";
  height: 2px;
  height: 0.125rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.4s;
  width: 16px;
  width: 1rem;
}
@media screen and (min-width: 768px) {
  .faq-list__item-circle::before,
  .faq-list__item-circle::after {
    width: 20px;
    width: 1.25rem;
  }
}

.faq-list__item-circle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list__item-question.is-open .faq-list__item-circle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list__item-question::before {
  background-color: #966414;
  border-radius: 4px;
  color: #fff;
  content: "Q";
  display: inline-block;
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  left: 0;
  line-height: 1;
  padding: 6px 8px;
  padding: 0.375rem 0.5rem;
  position: absolute;
  top: 20px;
  top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .faq-list__item-question::before {
    font-size: 26px;
    font-size: 1.625rem;
    left: 20px;
    left: 1.25rem;
    padding: 7px 11px;
    padding: 0.4375rem 0.6875rem;
    top: 30px;
    top: 1.875rem;
  }
}

@media (any-hover: hover) {
  .faq-list__item-question:hover {
    opacity: 0.8;
  }
  .faq-list__item-question:hover .faq-list__item-circle {
    background-color: #00285A;
  }
  .faq-list__item-question:hover .faq-list__item-circle::before,
  .faq-list__item-question:hover .faq-list__item-circle::after {
    background-color: #fff;
  }
}
.faq-list__item-answer {
  display: none;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin-top: -20px;
  margin-top: -1.25rem;
  padding: 8px 0 20px 45px;
  padding: 0.5rem 0 1.25rem 2.8125rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .faq-list__item-answer {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.8;
    margin-top: -30px;
    margin-top: -1.875rem;
    padding: 25px 60px 35px 80px;
    padding: 1.5625rem 3.75rem 2.1875rem 5rem;
  }
}

.faq-list__item-answer::before {
  background-color: #00285A;
  border-radius: 4px;
  color: #fff;
  content: "A";
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  left: 10px;
  left: 0.625rem;
  line-height: 1;
  padding: 3px 5px;
  padding: 0.1875rem 0.3125rem;
  position: absolute;
  top: 6px;
  top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .faq-list__item-answer::before {
    font-size: 18px;
    font-size: 1.125rem;
    left: 30px;
    left: 1.875rem;
    padding: 6px 8px;
    padding: 0.375rem 0.5rem;
    top: 20px;
    top: 1.25rem;
  }
}

/* トップページ機能紹介カード */
.feature-card {
  background-color: #fff;
  background-image: url(../images/top/feature-bg.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% 61.6%;
  border-radius: 16px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.15);
  height: 100%;
  padding: 20px 20px;
  padding: 1.25rem 1.25rem;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .feature-card {
    background-size: 100% 60%;
    border-radius: 18px;
    padding: 35px 30px;
    padding: 2.1875rem 1.875rem;
  }
}

.feature-card span {
  position: relative;
}

.feature-card span::before {
  background-image: url(../../assets/images/top/feature-bg.png);
  background-repeat: no-repeat;
  content: "";
  height: 63.8%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.feature-card__image {
  margin-left: auto;
  margin-right: auto;
  max-width: 262px;
  max-width: 16.375rem;
  padding-left: 10px;
  padding-left: 0.625rem;
  padding-right: 10px;
  padding-right: 0.625rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .feature-card__image {
    padding: 0;
  }
}

.feature-card__image img {
  -o-object-fit: cover;
  aspect-ratio: 220/400;
  height: auto;
     object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .feature-card__image img {
    aspect-ratio: 262/480;
  }
}

.feature-card__text {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .feature-card__text {
    margin-top: 20px;
    margin-top: 1.25rem;
  }
}

.feature-card__title {
  border-bottom: 1px solid #A0B4D2;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
  padding-bottom: 12px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .feature-card__title {
    font-size: 24px;
    font-size: 1.5rem;
    padding-bottom: 16px;
  }
}

.feature-card__title::after {
  border-bottom: 1px solid #00285A;
  bottom: -1px;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  width: 34%;
}
@media screen and (min-width: 768px) {
  .feature-card__title::after {
    width: 25%;
  }
}

.feature-card__description {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .feature-card__description {
    letter-spacing: 0.04em;
    line-height: 1.8;
    margin-top: 14px;
    margin-top: 0.875rem;
  }
}

/* 共通アイコン付きボタン */
.icon-button {
  background-image: linear-gradient(90deg, #966400, #BE9613);
  border: 1px solid #966400;
  border-radius: 3.125rem;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  max-width: 295px;
  max-width: 18.4375rem;
  padding: 0.8em 2em;
  position: relative;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
  vertical-align: middle;
  width: 100%;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .icon-button {
    max-width: 440px;
    max-width: 27.5rem;
    padding: 0.8em 3.4em;
  }
}

.icon-button.--arrow {
  font-size: 20px;
  font-size: 1.25rem;
  max-width: 289px;
  max-width: 18.0625rem;
}

.icon-button::after {
  background-image: url(../images/arrow-button.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 30px;
  height: 1.875rem;
  position: absolute;
  right: 20px;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  width: 1.875rem;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .icon-button::after {
    right: 15px;
    right: 0.9375rem;
  }
}

.icon-button::before {
  background-image: url(../images/icon-free.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 50px;
  height: 3.125rem;
  left: -5px;
  left: -0.3125rem;
  position: absolute;
  top: -5px;
  top: -0.3125rem;
  width: 50px;
  width: 3.125rem;
  z-index: 10;
}

.icon-button.--arrow::before {
  content: none;
}

.icon-button span {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.icon-button span::before,
.icon-button span::after {
  border-radius: 3.125rem;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.icon-button span::before {
  background-image: linear-gradient(90deg, #966400, #BE9613);
  transition: 0.5s;
  z-index: -1;
}

.icon-button span::after {
  background-image: linear-gradient(90deg, #BE9613, #8C3C00);
  z-index: -2;
}

@media (any-hover: hover) {
  .icon-button span:hover::before {
    opacity: 0;
  }
}
/* モーダルウィンドウ */
.modal {
  background: rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
  height: 100%;
  left: 0;
  opacity: 0;
  overflow: auto;
  position: fixed;
  text-align: center;
  top: 0;
  transition: 0.3s;
  visibility: hidden;
  width: 100%;
  z-index: 1000;
}

.modal::before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.modal.is-active {
  opacity: 1;
  visibility: visible;
}

.modal-body {
  display: inline-block;
  max-width: 800px;
  max-width: 50rem;
  position: relative;
  vertical-align: middle;
  width: 95%;
  z-index: 10000;
}

.modal-close {
  align-items: center;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 40px;
  height: 40px;
  justify-content: center;
  position: absolute;
  right: 0;
  top: -50px;
  width: 40px;
}

.modal-content {
  background-color: #fff;
  border-radius: 8px;
  padding: 10px;
  padding: 0.625rem;
}

.modal__img img {
  aspect-ratio: 315/198;
  height: auto;
  width: 100%;
}

/* 共通ナビメニューPC */
.nav-pc {
  display: none;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .nav-pc {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .nav-pc__list {
    align-items: center;
    display: flex;
    height: inherit;
    justify-content: flex-end;
  }
}

@media screen and (min-width: 768px) {
  .nav-pc__item {
    height: inherit;
  }
}

@media screen and (min-width: 768px) {
  .nav-pc__item--btn {
    height: auto;
    margin-left: 16px;
    margin-left: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .nav-pc__item--btn a + .nav-pc__item--btn a {
    margin-left: 5px;
    margin-left: 0.3125rem;
  }
}

@media screen and (min-width: 768px) {
  .nav-pc__link {
    align-items: center;
    display: flex;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: 700;
    height: inherit;
    line-height: 1;
    padding: 0 8px;
    padding: 0 0.5rem;
    transition: 0.4s;
  }
}

@media screen and (min-width: 768px) {
  .nav-pc.--txt-white .nav-pc__link {
    color: #fff;
  }
}

@media (any-hover: hover) {
  .nav-pc__link:hover,
  .nav-pc.--txt-white .nav-pc__link:hover {
    color: #966414;
    opacity: 1;
  }
}
/* 共通ナビメニューSP */
@media screen and (min-width: 768px) {
  .nav-sp {
    display: none;
  }
}

.nav-sp__item {
  border-bottom: 1px solid #1E3C64;
  margin: 0 calc(50% - 50vw);
  margin-left: auto;
  margin-right: auto;
  max-width: 500px;
  max-width: 31.25rem;
  width: 100%;
}

.nav-sp__item:first-child {
  border-top: 1px solid #1E3C64;
}

.nav-sp__item--btn {
  border: none;
  margin-top: 20px;
  margin-top: 1.25rem;
  padding: 0 10px;
  padding: 0 0.625rem;
  text-align: center;
}

.nav-sp__link {
  color: #fff;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  padding: 18px 20px;
  padding: 1.125rem 1.25rem;
  position: relative;
}

.nav-sp__link::after {
  background-image: url(../images/arrow-menu.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 20px;
  height: 1.25rem;
  position: absolute;
  right: 20px;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  width: 1.25rem;
  z-index: 1;
}

/* 共通セクションタイトル①(日＋英表記) */
.sec-title1 {
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .sec-title1 {
    flex-direction: row;
    justify-content: space-between;
  }
}

.sec-title1__ja {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .sec-title1__ja {
    font-size: 48px;
    font-size: 3rem;
    margin-top: 0;
  }
}

.sec-title1__ja-color {
  color: #966414;
}

.sec-title1__en {
  color: #D9E2ED;
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 72px;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  margin: 0 calc(50% - 50vw);
  text-align: right;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .sec-title1__en {
    font-size: 132px;
    font-size: 8.25rem;
    margin: 0;
    margin-top: 2px;
    margin-top: 0.125rem;
  }
}

/* 共通セクションタイトル②(日本語表記のみ) */
.sec-title2__ja {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .sec-title2__ja {
    font-size: 42px;
    font-size: 2.625rem;
  }
}

.sec-title2__ja-color {
  color: #966414;
}

@media screen and (min-width: 768px) {
  .sec-title2.--pc-br .sec-title2__ja-color {
    display: block;
  }
}

/* 共通ボタン(背景白・アイコン無し) */
.simple-button {
  background-color: #fff;
  background-image: none;
  border: 1px solid #00285A;
  border-radius: 3.125rem;
  color: #00285A;
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 0.9em 1em;
  position: relative;
  text-align: center;
  text-shadow: none;
  transition: 0.4s;
  width: 100%;
}

@media (any-hover: hover) {
  .simple-button:hover {
    background-color: #00285A;
    color: #fff;
    opacity: 1;
  }
}
/* フローのステップ(自動ナンバリング) */
.steps {
  counter-reset: step-counter;
}

.steps__item {
  border-radius: 6px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
  display: flex;
}

.steps__item + .steps__item {
  margin-top: 13px;
  margin-top: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .steps__item + .steps__item {
    margin-top: 18px;
    margin-top: 1.125rem;
  }
}

.steps__number {
  background-color: #00285A;
  border-radius: 6px 0 0 6px;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 15px 10px;
  padding: 0.9375rem 0.625rem;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  width: 18%;
}
@media screen and (min-width: 768px) {
  .steps__number {
    font-size: 15px;
    font-size: 0.9375rem;
    padding: 30px 10px;
    padding: 1.875rem 0.625rem;
    width: 11.7%;
  }
}

.steps__number::before {
  border: 10px solid transparent;
  border-top-color: #00285A;
  bottom: -18px;
  content: "";
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .steps__number::before {
    border: 12px solid transparent;
    border-top-color: #00285A;
    bottom: -23px;
  }
}

.steps__item:last-of-type .steps__number::before {
  content: none;
}

.steps__item:last-of-type .steps__number {
  background-color: #966414;
}

.steps__number span {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .steps__number span {
    font-size: 68px;
    font-size: 4.25rem;
  }
}

.steps__number span::before {
  content: counter(step-counter, decimal-leading-zero);
  counter-increment: step-counter;
}

.steps__content {
  background-color: #fff;
  border-radius: 0 6px 6px 0;
  flex: 1;
  padding: 20px;
  padding: 1.25rem;
}
@media screen and (min-width: 768px) {
  .steps__content {
    padding: 32px 40px;
    padding: 2rem 2.5rem;
  }
}

.steps__title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .steps__title {
    font-size: 28px;
    font-size: 1.75rem;
  }
}

.steps__item:last-of-type .steps__title {
  color: #966414;
}

.steps__description {
  color: #001432;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .steps__description {
    font-size: 15px;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
    line-height: 1.8;
    margin-top: 10px;
    margin-top: 0.625rem;
  }
}

/* 共通ボタン(下層ページ) */
.sub-button {
  background-image: none;
  border: 1px solid #00285A;
  border-radius: 3.125rem;
  color: #00285A;
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  max-width: 240px;
  max-width: 15rem;
  padding: 1.2em 2em;
  position: relative;
  text-align: center;
  text-shadow: none;
  transition: all 0.3s;
  width: 100%;
}

.sub-button::before {
  background-color: #00285A;
  border-radius: 3.125rem;
  content: "";
  height: 20px;
  height: 1.25rem;
  left: 18px;
  left: 1.125rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
  width: 20px;
  width: 1.25rem;
  z-index: 10;
}

.sub-button::after {
  background-color: #fff;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  content: "";
  height: 6px;
  height: 0.375rem;
  left: 24px;
  left: 1.5rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
  width: 6px;
  width: 0.375rem;
  z-index: 10;
}

@media (any-hover: hover) {
  .sub-button:hover {
    background-color: #00285A;
    color: #fff;
    opacity: 1;
  }
  .sub-button:hover::before {
    background-color: #fff;
  }
  .sub-button:hover::after {
    background-color: #00285A;
  }
}
.error {
  background-color: #EEF2F7;
}

.footer__nav {
  background-color: #fff;
  padding: 25px 0 35px;
  padding: 1.5625rem 0 2.1875rem;
}
@media screen and (min-width: 768px) {
  .footer__nav {
    height: 90px;
    height: 5.625rem;
    padding-bottom: 0;
    padding-top: 0;
  }
}

.footer__nav-inner {
  align-items: center;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .footer__nav-inner {
    flex-direction: row;
    height: inherit;
    justify-content: space-between;
  }
}

.footer__logo {
  max-width: 248px;
  max-width: 15.5rem;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    height: inherit;
    max-width: 330px;
    max-width: 20.625rem;
  }
}

@media screen and (min-width: 768px) {
  .footer__logo a {
    height: inherit;
  }
}

.footer__logo img {
  -o-object-fit: contain;
  height: 100%;
     object-fit: contain;
  width: 100%;
}

.footer__nav-list {
  align-items: center;
  display: flex;
  margin-top: 14px;
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .footer__nav-list {
    height: inherit;
    margin-top: 0;
  }
}

.footer__nav-item a {
  display: inline-block;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
  padding-left: 0.5em;
  padding-right: 0.5em;
}
@media screen and (min-width: 768px) {
  .footer__nav-item a {
    height: inherit;
  }
}

.footer__nav-item:not(:first-of-type) a {
  border-left: 1px solid #00285A;
}

@media (any-hover: hover) {
  .footer__nav-item a:hover {
    color: #966414;
    opacity: 1;
  }
}
.footer__sns-list {
  display: flex;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .footer__sns-list {
    margin-top: 0;
  }
}

.footer__sns-item a {
  display: inline-block;
  padding-left: 7px;
  padding-left: 0.4375rem;
  padding-right: 7px;
  padding-right: 0.4375rem;
  width: 100%;
}

.footer__sns-item img {
  aspect-ratio: 30/30;
  height: auto;
  width: 100%;
}

.footer__copyright {
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 0;
  }
}

.footer__persol-img {
  width: 100%;
}

.footer__persol-img img {
  aspect-ratio: 375/50;
  height: auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer__persol-img img {
    aspect-ratio: 1440/103;
  }
}

.footer2__nav {
  background-color: #fff;
  padding: 20px 0;
  padding: 1.25rem 0;
}
@media screen and (min-width: 768px) {
  .footer2__nav {
    height: 90px;
    height: 5.625rem;
    padding-bottom: 0;
    padding-top: 0;
  }
}

.footer2__nav-inner {
  align-items: center;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .footer2__nav-inner {
    flex-direction: row;
    height: inherit;
    justify-content: center;
  }
}

.footer2__nav-list {
  align-items: center;
  display: flex;
}
@media screen and (min-width: 768px) {
  .footer2__nav-list {
    height: inherit;
  }
}

.footer2__nav-item:not(:first-of-type) a {
  border-left: 1px solid #00285A;
}

.footer2__nav-item a {
  display: inline-block;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
  padding-left: 1em;
  padding-right: 1em;
}
@media screen and (min-width: 768px) {
  .footer2__nav-item a {
    font-size: 13px;
    font-size: 0.8125rem;
    height: inherit;
    padding-left: 1.8em;
    padding-right: 1.8em;
  }
}

@media (any-hover: hover) {
  .footer2__nav-item a:hover {
    color: #966414;
    opacity: 1;
  }
}
.footer2__persol-img {
  position: relative;
  width: 100%;
}

.footer2__persol-img img {
  -o-object-fit: contain;
  height: auto;
     object-fit: contain;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer2__persol-img img {
    aspect-ratio: 1440/103;
  }
}

.footer2__copyright {
  bottom: 10%;
  color: #fff;
  display: block;
  font-size: 6px;
  font-size: 0.375rem;
  font-weight: 400;
  left: 50%;
  line-height: 1.4;
  position: absolute;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .footer2__copyright {
    bottom: 15%;
    font-size: 10px;
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.08em;
  }
}

/* ヘッダー */
.header {
  background-color: #fff;
  border-radius: 0 0 8px 0;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.06);
  height: 70px;
  height: 4.375rem;
  left: 0;
  position: fixed;
  right: 5.3%;
  top: 0;
  z-index: 999;
}
@media screen and (min-width: 768px) {
  .header {
    border-radius: 0 0 12px 0;
    height: 80px;
    height: 5rem;
    right: 2.8%;
  }
}

.header__inner {
  display: flex;
  height: inherit;
  justify-content: space-between;
  padding-left: 20px;
  padding-left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding: 0 10px 0 30px;
    padding: 0 0.625rem 0 1.875rem;
  }
}

.header__logo {
  height: inherit;
  max-width: 138px;
  max-width: 8.625rem;
  position: relative;
  z-index: 9999;
}
@media screen and (min-width: 768px) {
  .header__logo {
    max-width: 172px;
    max-width: 10.75rem;
  }
}

.header__logo a {
  align-items: center;
  display: flex;
  height: inherit;
}

.header__logo img {
  -o-object-fit: contain;
  height: 100%;
     object-fit: contain;
  width: 100%;
}

/* ハンバーガーボタン：三→✕ */
.header__hamburger {
  background-image: linear-gradient(90deg, #966400, #BE9613);
  border: none;
  border-radius: 100px 0 0 100px;
  cursor: pointer;
  height: 60px;
  height: 3.75rem;
  margin: 0;
  margin-top: 5px;
  margin-top: 0.3125rem;
  outline: none;
  padding: 0;
  position: relative;
  transition: 0.3s;
  width: 70px;
  width: 4.375rem;
  z-index: 999;
}
@media screen and (min-width: 768px) {
  .header__hamburger {
    display: none;
  }
}

.header__hamburger-btn {
  height: 22px;
  height: 1.375rem;
  left: 50%;
  position: relative;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
  width: 28px;
  width: 1.75rem;
}

@-moz-document url-prefix() {
  .header__hamburger-btn {
    top: 40%;
  }
}
_::-webkit-full-page-media, _:future, :root .header__hamburger-btn {
  top: 40%;
}

.header__hamburger-btn span {
  background-color: #fff;
  display: block;
  height: 2px;
  height: 0.125rem;
  left: 0;
  position: absolute;
  transition: 0.5s;
  width: 100%;
}

.header__hamburger-btn span:nth-of-type(1) {
  top: 0;
}

.header__hamburger-btn span:nth-of-type(2) {
  top: 10px;
}

.header__hamburger-btn span:nth-of-type(3) {
  bottom: 0;
}

.header__hamburger.is-open .header__hamburger-btn {
  transform: translate(-50%, -50%) rotate(360deg);
}

.header__hamburger.is-open span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
}

.header__hamburger.is-open span:nth-of-type(2) {
  transform: translateY(0) rotate(45deg);
}

.header__hamburger.is-open span:nth-of-type(3) {
  opacity: 0;
}

/* SPドロワーメニュー：全画面 */
.header__drawer {
  background-attachment: fixed;
  background-color: rgba(0, 30, 70, 0.9);
  bottom: 0;
  display: none;
  height: 100vh;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 900;
}

.header__drawer-nav {
  height: calc(100vh - 4.375rem);
  margin-left: auto;
  margin-right: auto;
  margin-top: 70px;
  margin-top: 4.375rem;
  overflow-y: scroll;
  position: relative;
  scrollbar-width: none;
}

.header__drawer-nav::-webkit-scrollbar {
  display: none;
}

/* 写真画像を格子状に配置(トップSTORYセクション) */
.photo-grid {
  max-height: 880px;
  max-height: 55rem;
  max-width: 810px;
  max-width: 50.625rem;
  width: 100%;
}

.photo-grid__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(3, 36.36% 27.27% 36.36%);
}

.photo-grid__item:nth-child(2) img {
  border-radius: 0 18px 0 0;
}

.photo-grid__item img {
  -o-object-fit: cover;
  height: auto;
     object-fit: cover;
  width: 100%;
}

.photo-grid__item--sm img {
  aspect-ratio: 115/90;
}
@media screen and (min-width: 768px) {
  .photo-grid__item--sm img {
    aspect-ratio: 270/240;
  }
}

.photo-grid__item--lg img {
  aspect-ratio: 173/120;
}
@media screen and (min-width: 768px) {
  .photo-grid__item--lg img {
    aspect-ratio: 405/320;
  }
}

.photo1 {
  grid-area: 1/1/2/4;
}

.photo2 {
  grid-area: 1/4/2/7;
}

.photo3 {
  grid-area: 2/1/3/3;
}

.photo4 {
  grid-area: 2/3/3/5;
}

.photo5 {
  grid-area: 2/5/3/7;
}

.photo6 {
  grid-area: 3/1/4/4;
}

.photo7 {
  grid-area: 3/4/4/7;
}

/* CTA単体セクション */
.sec-cta {
  background-image: url(../images/cta-bg_sp.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .sec-cta {
    background-image: url(../images/cta-bg.jpg);
  }
}

.sec-cta.--radius {
  border-radius: 24px;
}

.sec-cta__inner {
  padding: 40px 5.3%;
  padding: 2.5rem 5.3%;
}
@media screen and (min-width: 768px) {
  .sec-cta__inner {
    padding: 80px 8.3%;
    padding: 5rem 8.3%;
  }
}

.sec-cta__banner {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .sec-cta__banner {
    margin-top: 40px;
    margin-top: 2.5rem;
  }
}

/* ナビメニューセクション */
.sec-nav {
  background-color: #001E46;
}
@media screen and (min-width: 768px) {
  .sec-nav {
    height: 140px;
    height: 8.75rem;
  }
}

.sec-nav__inner {
  padding: 20px 0 20px;
  padding: 1.25rem 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .sec-nav__inner {
    align-items: center;
    display: flex;
    height: inherit;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    max-width: 1250px;
    max-width: 78.125rem;
    padding: 0 25px;
    padding: 0 1.5625rem;
  }
}

.sec-nav__logo {
  height: inherit;
  margin-left: auto;
  margin-right: auto;
  max-width: 103px;
  max-width: 6.4375rem;
}
@media screen and (min-width: 768px) {
  .sec-nav__logo {
    margin: 0;
    max-width: 172px;
    max-width: 10.75rem;
  }
}

@media screen and (min-width: 768px) {
  .sec-nav__logo a {
    height: inherit;
  }
}

.sec-nav__logo img {
  -o-object-fit: contain;
  aspect-ratio: 103/30;
  height: 100%;
     object-fit: contain;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .sec-nav__logo img {
    aspect-ratio: 172/50;
  }
}

.sec-nav__component.--sp {
  margin-top: 20px;
  margin-top: 1.25rem;
}

/* ナビメニューセクション */
.sec-nav2 {
  background-color: #001E46;
}
@media screen and (min-width: 768px) {
  .sec-nav2 {
    height: 140px;
    height: 8.75rem;
  }
}

.sec-nav2__inner {
  padding: 40px 0 40px;
  padding: 2.5rem 0 2.5rem;
}
@media screen and (min-width: 768px) {
  .sec-nav2__inner {
    align-items: center;
    display: flex;
    height: inherit;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    max-width: 1250px;
    max-width: 78.125rem;
    padding: 0 25px;
    padding: 0 1.5625rem;
  }
}

.sec-nav2__logo {
  height: inherit;
  margin-left: auto;
  margin-right: auto;
  max-width: 172px;
  max-width: 10.75rem;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .sec-nav2__logo {
    margin: 0;
  }
}

@media screen and (min-width: 768px) {
  .sec-nav2__logo a {
    display: block;
    padding-top: 0;
  }
}

.sec-nav2__logo img {
  -o-object-fit: contain;
  aspect-ratio: 103/30;
  height: 100%;
  object-fit: contain;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .sec-nav2__logo img {
    aspect-ratio: 172/50;
  }
}

.sec-nav2__logo p {
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 10px;
  margin-top: 0.625rem;
  padding-bottom: 35px;
  padding-bottom: 2.1875rem;
}

.sec-nav2__component.--sp {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.sub-contact-complete__body {
  text-align: center;
}

.sub-contact-complete__title {
  font-family: "Roboto", sans-serif;
  font-size: 52px;
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .sub-contact-complete__title {
    font-size: 132px;
    font-size: 8.25rem;
  }
}

.sub-contact-complete__title::first-letter {
  color: #BE9613;
}

.sub-contact-complete__title span {
  color: #BE9613;
}

.sub-contact-complete__text {
  font-weight: 700;
  line-height: 1.8;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .sub-contact-complete__text {
    letter-spacing: 0.04em;
    line-height: 2;
    margin-top: 25px;
    margin-top: 1.5625rem;
  }
}

.sub-contact-complete__link {
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sub-contact-complete__link {
    margin-top: 51px;
    margin-top: 3.1875rem;
  }
}

.sub-contact__body {
  font-weight: 700;
  line-height: 1.8;
  margin-top: 60px;
  margin-top: 3.75rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sub-contact__body {
    letter-spacing: 0.04em;
    line-height: 2;
    margin-top: 70px;
    margin-top: 4.375rem;
  }
}

.sub-error__body {
  text-align: center;
}

.sub-error__title {
  font-family: "Roboto", sans-serif;
  font-size: 52px;
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .sub-error__title {
    font-size: 132px;
    font-size: 8.25rem;
  }
}

.sub-error__title span {
  color: #BE9613;
}

.sub-error__text {
  font-weight: 700;
  line-height: 1.8;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .sub-error__text {
    letter-spacing: 0.04em;
    line-height: 2;
    margin-top: 25px;
    margin-top: 1.5625rem;
  }
}

.sub-error__link {
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sub-error__link {
    margin-top: 51px;
    margin-top: 3.1875rem;
  }
}

.sub-mv {
  background-image: url(../images/sub-mv-sp.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom-left-radius: 30px;
  border-bottom-left-radius: 1.875rem;
  border-bottom-right-radius: 30px;
  border-bottom-right-radius: 1.875rem;
}
@media screen and (min-width: 768px) {
  .sub-mv {
    background-image: url(../images/sub-mv-pc.jpg);
  }
}

.sub-mv__inner {
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
}
@media screen and (min-width: 768px) {
  .sub-mv__inner {
    padding-left: 30px;
    padding-left: 1.875rem;
    padding-right: 30px;
    padding-right: 1.875rem;
  }
}

.sub-mv__breadcrumb {
  padding-top: 78px;
  padding-top: 4.875rem;
}
@media screen and (min-width: 768px) {
  .sub-mv__breadcrumb {
    padding-top: 95px;
    padding-top: 5.9375rem;
  }
}

.sub-mv__head {
  color: #fff;
  margin-top: 18px;
  margin-top: 1.125rem;
  padding-bottom: 46px;
  padding-bottom: 2.875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sub-mv__head {
    padding-bottom: 75px;
    padding-bottom: 4.6875rem;
  }
}

.sub-mv__title {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .sub-mv__title {
    font-size: 48px;
    font-size: 3rem;
  }
}

.sub-mv__text {
  color: #BE9613;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-top: 5px;
  margin-top: 0.3125rem;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .sub-mv__text {
    font-size: 28px;
    font-size: 1.75rem;
    margin-top: 3px;
    margin-top: 0.1875rem;
  }
}

/* 【トップページ】AI蔵Labの導入効果セクション(BENEFITS) */
.topBenefits {
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
  padding-top: 60px;
  padding-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .topBenefits {
    padding-bottom: 120px;
    padding-bottom: 7.5rem;
    padding-top: 120px;
    padding-top: 7.5rem;
  }
}

.topBenefits__points {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .topBenefits__points {
    margin-top: -20px;
    margin-top: -1.25rem;
  }
}

.topBenefits__points-item {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .topBenefits__points-item {
    align-items: center;
    flex-direction: row;
    gap: 40px;
    gap: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .topBenefits__points-item:nth-child(2n) {
    flex-direction: row-reverse;
  }
}

.topBenefits__points-item + .topBenefits__points-item {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .topBenefits__points-item + .topBenefits__points-item {
    margin-top: 60px;
    margin-top: 3.75rem;
  }
}

.topBenefits__points-image {
  margin-left: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .topBenefits__points-image {
    flex: 1;
  }
}

.topBenefits__points-item:nth-child(2n) > .topBenefits__points-image {
  margin-left: 0;
  margin-right: calc(50% - 50vw);
}

.topBenefits__points-image img {
  -o-object-fit: cover;
  aspect-ratio: 355/220;
  border-radius: 0 12px 12px 0;
  height: auto;
     object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .topBenefits__points-image img {
    aspect-ratio: 860/500;
    border-radius: 0 18px 18px 0;
    height: 100%;
    max-height: 550px;
    max-height: 34.375rem;
  }
}

.topBenefits__points-item:nth-child(2n) > .topBenefits__points-image img {
  border-radius: 12px 0 0 12px;
}
@media screen and (min-width: 768px) {
  .topBenefits__points-item:nth-child(2n) > .topBenefits__points-image img {
    border-radius: 18px 0 0 18px;
  }
}

.topBenefits__points-content {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .topBenefits__points-content {
    margin-top: 0;
    max-width: 435px;
    max-width: 27.1875rem;
    width: 100%;
  }
}

.topBenefits__points-number {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .topBenefits__points-number {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

.topBenefits__points-number span {
  font-size: 28px;
  font-size: 1.75rem;
}
@media screen and (min-width: 768px) {
  .topBenefits__points-number span {
    font-size: 52px;
    font-size: 3.25rem;
  }
}

.topBenefits__points-sub-title {
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.38;
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .topBenefits__points-sub-title {
    font-size: 18px;
    font-size: 1.125rem;
    letter-spacing: 0.04em;
    margin-top: 16px;
    margin-top: 1rem;
  }
}

.topBenefits__points-title {
  border-bottom: 1px solid #A0B4D2;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 3px;
  margin-top: 0.1875rem;
  padding-bottom: 15px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .topBenefits__points-title {
    font-size: 30px;
    font-size: 1.875rem;
    letter-spacing: 0.04em;
    line-height: 1.4;
    margin-top: 4px;
    margin-top: 0.25rem;
    padding-bottom: 17px;
  }
}

.topBenefits__points-title::after {
  border-bottom: 1px solid #00285A;
  bottom: -1px;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  width: 23.8%;
}
@media screen and (min-width: 768px) {
  .topBenefits__points-title::after {
    width: 18.5%;
  }
}

.topBenefits__points-sub-title span,
.topBenefits__points-title span {
  color: #966414;
}

.topBenefits__points-description {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .topBenefits__points-description {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.6;
  }
}

.topBenefits__points-note {
  align-items: center;
  display: flex;
  gap: 3px;
  gap: 0.1875rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .topBenefits__points-note {
    gap: 14px;
    gap: 0.875rem;
    margin-top: 60px;
    margin-top: 3.75rem;
  }
}

.topBenefits__points-note-img {
  min-width: 34px;
  min-width: 2.125rem;
  width: 10.1%;
}
@media screen and (min-width: 768px) {
  .topBenefits__points-note-img {
    max-width: 44px;
    max-width: 2.75rem;
  }
}

.topBenefits__points-note-img img {
  -o-object-fit: contain;
  aspect-ratio: 34/60;
  height: auto;
     object-fit: contain;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .topBenefits__points-note-img img {
    aspect-ratio: 44/80;
  }
}

.topBenefits__points-note-txt {
  background-color: #E4ECF6;
  border: 1px solid #c6d0e2;
  border-radius: 6px;
  display: inline-block;
  flex: 1;
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.5;
  margin-left: 12px;
  margin-left: 0.75rem;
  padding: 10px;
  padding: 0.625rem;
  position: relative;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .topBenefits__points-note-txt {
    font-size: 14px;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    line-height: 1.6;
    margin-left: 16px;
    margin-left: 1rem;
    padding: 13px 20px;
    padding: 0.8125rem 1.25rem;
  }
}

.topBenefits__points-note-txt::before {
  border-color: transparent #c6d0e2 transparent transparent;
  border-style: solid;
  border-width: 7px 12px 7px 0;
  content: "";
  left: 0;
  position: absolute;
  top: 50%;
  transform: translate(-100%, -50%);
}
@media screen and (min-width: 768px) {
  .topBenefits__points-note-txt::before {
    border-width: 8px 16px 8px 0;
  }
}

.topBenefits__points-note-txt::after {
  border-color: transparent #E4ECF6 transparent transparent;
  border-style: solid;
  border-width: 5.8px 10px 5.8px 0;
  content: "";
  left: 0;
  position: absolute;
  top: 50%;
  transform: translate(-100%, -50%);
}
@media screen and (min-width: 768px) {
  .topBenefits__points-note-txt::after {
    border-width: 6.9px 13.8px 6.9px 0;
  }
}

/* 【トップページ】よくある質問セクション */
.topCompany {
  background-color: #fff;
  border-radius: 24px 24px 0 0;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
  padding-top: 60px;
  padding-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .topCompany {
    padding-bottom: 0;
    padding-top: 40px;
    padding-top: 2.5rem;
  }
}

.topCompany__inner {
  display: flex;
  flex-direction: column-reverse;
  gap: 40px;
  gap: 2.5rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 540px;
  max-width: 33.75rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .topCompany__inner {
    flex-direction: row;
    gap: 60px;
    gap: 3.75rem;
    justify-content: space-between;
    max-width: 1440px;
    max-width: 90rem;
    padding-left: 0;
    padding-right: 4.16%;
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .topCompany__sec-ttl {
    margin-top: 40px;
    margin-top: 2.5rem;
  }
}

.topCompany__map {
  border-radius: 0 18px 0 0;
  margin-left: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .topCompany__map {
    margin: 0;
    max-width: 100%;
    width: 55.0724637681%;
  }
}

.topCompany__map iframe {
  -o-object-fit: cover;
  aspect-ratio: 355/280;
  border-radius: 0 18px 0 0;
  height: 100%;
     object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .topCompany__map iframe {
    aspect-ratio: 760/820;
  }
}

@media screen and (min-width: 768px) {
  .topCompany__content {
    max-width: 100%;
    padding-bottom: 80px;
    padding-bottom: 5rem;
    width: 40.5797101449%;
  }
}

.topCompany__info {
  margin-top: 22px;
  margin-top: 1.375rem;
}
@media screen and (min-width: 768px) {
  .topCompany__info {
    margin-top: 24px;
    margin-top: 1.5rem;
  }
}

.topCompany__info-list {
  border-bottom: 1px solid #A0B4D2;
  letter-spacing: 0.04em;
  line-height: 1.4;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
  padding-top: 20px;
  padding-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .topCompany__info-list {
    display: flex;
  }
}

.topCompany__info-list:first-child {
  border-top: 1px solid #A0B4D2;
}

.topCompany__info-term {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .topCompany__info-term {
    flex-shrink: 0;
    max-width: 150px;
    max-width: 9.375rem;
    width: 100%;
  }
}

.topCompany__info-description {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 7px;
  margin-top: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .topCompany__info-description {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-top: 0;
    width: 100%;
  }
}

.topCompany__info-description-list {
  margin-left: -5px;
  margin-left: -0.3125rem;
}

.topCompany__info-description-list p {
  padding-left: 1em;
  text-indent: -1em;
}

.topCompany__info-btn {
  margin-top: 10px;
  margin-top: 0.625rem;
  width: 200px;
  width: 12.5rem;
}
@media screen and (min-width: 768px) {
  .topCompany__info-btn {
    margin-left: 10px;
    margin-left: 0.625rem;
    margin-top: 0;
  }
}

/* 【トップページ】よくある質問セクション */
.topFaq {
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
  padding-top: 60px;
  padding-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .topFaq {
    padding-bottom: 120px;
    padding-bottom: 7.5rem;
    padding-top: 120px;
    padding-top: 7.5rem;
  }
}

.topFaq__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .topFaq__inner {
    flex-direction: row;
    gap: 66px;
    gap: 4.125rem;
  }
}

@media screen and (min-width: 768px) {
  .topFaq__faq {
    flex: 1;
  }
}

/* 【トップページ】機能紹介(FEATURE)セクション */
.topFeature {
  background-color: #E4ECF6;
  border-radius: 24px;
  padding-bottom: 95px;
  padding-bottom: 5.9375rem;
  padding-top: 16px;
  padding-top: 1rem;
}
@media screen and (min-width: 768px) {
  .topFeature {
    padding-bottom: 120px;
    padding-bottom: 7.5rem;
    padding-top: 120px;
    padding-top: 7.5rem;
  }
}

.topFeature__cards {
  margin: 0 calc(50% - 50vw);
  margin-top: 22px;
  margin-top: 1.375rem;
}
@media screen and (min-width: 768px) {
  .topFeature__cards {
    margin: 0;
    margin-top: -20px;
    margin-top: -1.25rem;
  }
}

.topFeature__cards.splide.is-initialized:not(.is-active) .splide__list {
  grid-gap: 15px;
  display: grid;
  gap: 15px;
  gap: 0.9375rem;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (min-width: 768px) {
  .topFeature__cards.splide.is-initialized:not(.is-active) .splide__list {
    gap: 30px;
    gap: 1.875rem;
  }
}

.topFeature__cards-slide.splide__slide img {
  height: auto;
  width: 100%;
}

.topFeature__splide-pagination {
  bottom: -40px;
  bottom: -2.5rem;
}

.topFeature__splide-pagination li {
  margin-left: 8px;
  margin-right: 8px;
}

.topFeature__splide-pagination-page {
  background-color: #BCC8D8;
  height: 12px;
  width: 12px;
}

.topFeature__splide-pagination-page.is-active {
  background-color: #00285A;
  transform: scale(1);
}

/* 【トップページ】導入までの流れ(FLOW)セクション */
.topFlow {
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
  padding-top: 20px;
  padding-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .topFlow {
    padding-bottom: 120px;
    padding-bottom: 7.5rem;
    padding-top: 120px;
    padding-top: 7.5rem;
  }
}

.topFlow__steps {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .topFlow__steps {
    margin-top: -25px;
    margin-top: -1.5625rem;
  }
}

/* 【トップページ】AI蔵Labご利用の流れと導入効果セクション(Install) */
.topInstall {
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
  padding-top: 52px;
  padding-top: 3.25rem;
}
@media screen and (min-width: 768px) {
  .topInstall {
    padding-bottom: 120px;
    padding-bottom: 7.5rem;
    padding-top: 120px;
    padding-top: 7.5rem;
  }
}

.topInstall__content {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  padding: 37px 10px 30px;
  padding: 2.3125rem 0.625rem 1.875rem;
}
@media screen and (min-width: 768px) {
  .topInstall__content {
    border-radius: 18px;
    padding: 60px 40px 30px;
    padding: 3.75rem 2.5rem 1.875rem;
  }
}

.topInstall__en-title {
  color: #ECF3FB;
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 62px;
  font-size: 3.875rem;
  font-weight: 900;
  line-height: 1;
  margin-right: -10px;
  margin-right: -0.625rem;
  margin-top: -45px;
  margin-top: -2.8125rem;
  text-align: right;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .topInstall__en-title {
    font-size: 118px;
    font-size: 7.375rem;
    margin-right: -36px;
    margin-right: -2.25rem;
    margin-top: -78px;
    margin-top: -4.875rem;
  }
}

.topInstall__sec-ttl {
  margin-top: -20px;
  margin-top: -1.25rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .topInstall__sec-ttl {
    margin-top: -40px;
    margin-top: -2.5rem;
  }
}

.topInstall__ttl-ja {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .topInstall__ttl-ja {
    font-size: 40px;
    font-size: 2.5rem;
  }
}

.topInstall__ttl-ja span {
  color: #966414;
}

.topInstall__img {
  margin-top: 20px;
  margin-top: 1.25rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .topInstall__img {
    margin-top: 30px;
    margin-top: 1.875rem;
  }
}

.topInstall__img img {
  aspect-ratio: 315/198;
  height: auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .topInstall__img img {
    aspect-ratio: 1120/700;
  }
}

.topInstall__btn {
  margin-top: 15px;
  margin-top: 0.9375rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .topInstall__btn {
    display: none;
  }
}

/* 【トップページ】KVセクション */
.topKv {
  height: 100%;
  position: relative;
  width: 100%;
}

.topKv::before {
  background-image: url(../images/top/kv-bg_sp@2x.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  content: "";
  height: 94.7%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .topKv::before {
    background-image: url(../images/top/kv-bg@2x.jpg);
  }
}

.topKv__inner {
  height: inherit;
  padding-top: 92px;
  padding-top: 5.75rem;
}
@media screen and (min-width: 768px) {
  .topKv__inner {
    padding-top: 155px;
    padding-top: 9.6875rem;
  }
}

.topKv__title-text {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .topKv__title-text {
    text-align: left;
  }
}

.topKv__title {
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
@media screen and (min-width: 600px) {
  .topKv__title {
    font-size: 30px;
    font-size: 1.875rem;
  }
}
@media screen and (min-width: 768px) {
  .topKv__title {
    font-size: 42px;
    font-size: 2.625rem;
    letter-spacing: 0.08em;
    line-height: 1.4;
  }
}

.topKv__Catchphrase {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 600px) {
  .topKv__Catchphrase {
    margin-top: 8px;
    margin-top: 0.5rem;
  }
}
@media screen and (min-width: 768px) {
  .topKv__Catchphrase {
    justify-content: flex-start;
    margin-top: 5px;
    margin-top: 0.3125rem;
  }
}

.topKv__Catchphrase span {
  color: #BE9613;
  font-size: 62px;
  font-size: 3.875rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
}
@media screen and (min-width: 600px) {
  .topKv__Catchphrase span {
    font-size: 105px;
    font-size: 6.5625rem;
  }
}
@media screen and (min-width: 768px) {
  .topKv__Catchphrase span {
    font-size: 148px;
    font-size: 9.25rem;
  }
}

.topKv__Catchphrase-img {
  height: 40px;
  height: 2.5rem;
  width: 40px;
  width: 2.5rem;
}
@media screen and (min-width: 600px) {
  .topKv__Catchphrase-img {
    height: 60px;
    height: 3.75rem;
    margin: 15px 0px 10px;
    margin: 0.9375rem 0rem 0.625rem;
    width: 60px;
    width: 3.75rem;
  }
}
@media screen and (min-width: 768px) {
  .topKv__Catchphrase-img {
    height: 100px;
    height: 6.25rem;
    margin: 45px 5px 30px;
    margin: 2.8125rem 0.3125rem 1.875rem;
    width: 100px;
    width: 6.25rem;
  }
}

.topKv__Catchphrase-img img {
  -o-object-fit: contain;
  aspect-ratio: 40/40;
  height: 100%;
     object-fit: contain;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .topKv__Catchphrase-img img {
    aspect-ratio: 80/80;
  }
}

.topKv__flex {
  margin-top: 20px;
  margin-top: 1.25rem;
  position: relative;
}
@media screen and (min-width: 600px) {
  .topKv__flex {
    margin-top: 30px;
    margin-top: 1.875rem;
  }
}
@media screen and (min-width: 768px) {
  .topKv__flex {
    align-items: flex-end;
    display: flex;
    flex-direction: row;
    gap: 5px;
    gap: 0.3125rem;
    justify-content: space-between;
    margin-top: -280px;
    margin-top: -17.5rem;
  }
}

@media screen and (min-width: 768px) {
  .topKv__left {
    flex: 1;
    padding-bottom: 4%;
  }
}

.topKv__right {
  align-items: end;
  display: flex;
  flex-direction: row-reverse;
  margin-right: calc(50% - 50vw);
  margin-top: 20px;
  margin-top: 1.25rem;
  position: relative;
}
@media screen and (min-width: 600px) {
  .topKv__right {
    margin-right: 0;
  }
}
@media screen and (min-width: 768px) {
  .topKv__right {
    flex-shrink: 0;
    margin-top: 60px;
    margin-top: 3.75rem;
    max-width: 100%;
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .topKv__right {
    margin-top: 20px;
    margin-top: 1.25rem;
    max-width: 100%;
    width: 53%;
  }
}
@media screen and (min-width: 1200px) {
  .topKv__right {
    margin: 0;
    max-width: 100%;
    width: 633px;
  }
}

.topKv__text {
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .topKv__text {
    font-size: 32px;
    font-size: 2rem;
    letter-spacing: 0.08em;
    text-align: left;
  }
}

.topKv__results {
  align-items: center;
  display: flex;
  gap: 15px;
  gap: 0.9375rem;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  margin-top: 18px;
  margin-top: 1.125rem;
  max-width: 400px;
  max-width: 25rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .topKv__results {
    gap: 20px;
    gap: 1.25rem;
    margin: 0;
    max-width: 500px;
    max-width: 31.25rem;
  }
}

@media screen and (min-width: 768px) {
  .topKv__results.u-pc {
    display: flex block;
    margin-top: 42px;
    margin-top: 2.625rem;
  }
}

.topKv__results-item {
  position: relative;
  width: 50%;
}

.topKv__results-item img {
  -o-object-fit: contain;
  aspect-ratio: 240/90;
  height: 100%;
     object-fit: contain;
  width: 100%;
}

.topKv__results-annotation {
  color: #fff;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 400;
  line-height: 1.4;
  margin-left: auto;
  margin-right: auto;
  margin-top: 8px;
  margin-top: 0.5rem;
  max-width: 400px;
  max-width: 25rem;
}
@media screen and (min-width: 768px) {
  .topKv__results-annotation {
    line-height: 1.6;
    margin-left: 0;
    margin-right: 0;
    margin-top: 16px;
    margin-top: 1rem;
    max-width: 100%;
  }
}

.topKv__slide {
  align-items: end;
  display: flex;
  flex-direction: row-reverse;
  margin-right: calc(50% - 50vw);
  margin-top: 20px;
  margin-top: 1.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .topKv__slide {
    margin: 0;
  }
}

.topKv__slide-img {
  max-width: 100%;
  position: relative;
  width: 130px;
}
@media screen and (min-width: 600px) {
  .topKv__slide-img {
    width: 260px;
  }
}
@media screen and (min-width: 768px) {
  .topKv__slide-img {
    width: 230px;
  }
}
@media screen and (min-width: 1024px) {
  .topKv__slide-img {
    width: 324px;
  }
}

.topKv__slide-img img {
  aspect-ratio: 130/240;
  height: auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .topKv__slide-img img {
    aspect-ratio: 324/593;
  }
}

.topKV__slide1-splide {
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 114px;
}
@media screen and (min-width: 600px) {
  .topKV__slide1-splide {
    width: 160px;
  }
}
@media screen and (min-width: 768px) {
  .topKV__slide1-splide {
    width: 285px;
  }
}

.topKv__slide1-image img {
  -o-object-fit: contain;
  aspect-ratio: 114/202;
  height: auto;
     object-fit: contain;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .topKv__slide1-image img {
    aspect-ratio: 285/506;
  }
}

.topKV__slide2-splide {
  display: block;
  margin-bottom: 3%;
  margin-right: -1px;
  max-width: 100%;
  width: 63.5854341737%;
}
@media screen and (min-width: 600px) {
  .topKV__slide2-splide {
    flex: 1;
    margin-right: -2px;
  }
}
@media screen and (min-width: 768px) {
  .topKV__slide2-splide {
    margin-bottom: 5%;
    max-width: 100%;
    width: 48%;
  }
}
@media screen and (min-width: 1200px) {
  .topKV__slide2-splide {
    flex: 0;
    margin-bottom: 5%;
    max-width: 100%;
    width: 309px;
  }
}

.topKV__slide2-track {
  height: 100%;
  width: 100%;
}

.topKV__slide2-list {
  height: 100%;
  width: 100%;
}

.topKV__slide2-item {
  background-color: rgba(0, 30, 60, 0.9);
  border-radius: 8px 0 0 8px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .topKV__slide2-item {
    border-radius: 12px 0 0 12px;
  }
}

.topKV__slide2-head {
  align-items: center;
  background-color: #0D2D4E;
  border-radius: 8px 0 0 0;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  justify-content: space-between;
  padding: 6px 11px 6px 20px;
  padding: 0.375rem 0.6875rem 0.375rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .topKV__slide2-head {
    border-radius: 12px 0 0 0;
    padding: 8px 15px 8px 20px;
    padding: 0.5rem 0.9375rem 0.5rem 1.25rem;
  }
}

.topKV__slide2-logo {
  max-width: 82px;
  max-width: 5.125rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .topKV__slide2-logo {
    max-width: 110px;
    max-width: 6.875rem;
  }
}

.topKV__slide2-logo img {
  -o-object-fit: contain;
  aspect-ratio: 82/24;
  height: auto;
     object-fit: contain;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .topKV__slide2-logo img {
    aspect-ratio: 110/32;
  }
}

.topKV__slide2-num {
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .topKV__slide2-num {
    font-size: 48px;
    font-size: 3rem;
  }
}

.topKV__slide2-num span {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.6;
  padding-right: 5px;
  padding-right: 0.3125rem;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .topKV__slide2-num span {
    font-size: 15px;
    font-size: 0.9375rem;
    padding-right: 10px;
    padding-right: 0.625rem;
  }
}

.topKv__slide2-body {
  padding: 13px 11px 30px 20px;
  padding: 0.8125rem 0.6875rem 1.875rem 1.25rem;
}
@media screen and (min-width: 600px) {
  .topKv__slide2-body {
    padding: 20px 11px 40px 20px;
    padding: 1.25rem 0.6875rem 2.5rem 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .topKv__slide2-body {
    padding: 25px 30px 50px;
    padding: 1.5625rem 1.875rem 3.125rem;
  }
}

.topKv__slide2-title {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .topKv__slide2-title {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

.topKv__slide2-description {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 6px;
  margin-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .topKv__slide2-description {
    font-size: 16px;
    font-size: 1rem;
    margin-top: 9px;
    margin-top: 0.5625rem;
  }
}

.topKv__splide-pagination {
  bottom: 8px;
  bottom: 0.5rem;
}

.topKv__splide-pagination li {
  margin-left: 5px;
  margin-right: 5px;
}
@media screen and (min-width: 1024px) {
  .topKv__splide-pagination li {
    margin-left: 8px;
    margin-right: 8px;
  }
}

.topKv__splide-pagination-page {
  background-color: #BCC8D8;
  height: 8px;
  width: 8px;
}
@media screen and (min-width: 1024px) {
  .topKv__splide-pagination-page {
    height: 10px;
    width: 10px;
  }
}

.topKv__splide-pagination-page.is-active {
  background-color: #fff;
  transform: scale(1);
}

.topKv__logo-slide {
  margin: 0 calc(50% - 50vw);
  margin-top: 25px;
  margin-top: 1.5625rem;
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .topKv__logo-slide {
    margin-top: 40px;
    margin-top: 2.5rem;
  }
}

.topKv__logo-slide-item {
  width: 100%;
}

.topKv__logo-slide-item img {
  aspect-ratio: 212/90;
  border-radius: 8px;
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.1));
  height: auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .topKv__logo-slide-item img {
    aspect-ratio: 260/120;
  }
}

/* 【トップページ】STORYセクションコンテンツ */
@media screen and (min-width: 768px) {
  .topStory-contents {
    max-width: 100%;
    padding-bottom: 4.5%;
    width: 40.1408450704%;
  }
}

.topStory-contents__text-wrap {
  max-width: 490px;
  max-width: 30.625rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .topStory-contents__text-wrap {
    max-width: 530px;
    max-width: 33.125rem;
  }
}

.topStory-contents__sub-title {
  color: #BE9613;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .topStory-contents__sub-title {
    font-size: 22px;
    font-size: 1.375rem;
    letter-spacing: 0.12em;
  }
}

.topStory-contents__title {
  border-bottom: 1px solid #546984;
  color: #fff;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin-top: 5px;
  margin-top: 0.3125rem;
  padding-bottom: 17px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .topStory-contents__title {
    font-size: 38px;
    font-size: 2.375rem;
    letter-spacing: 0.08em;
    margin-top: 12px;
    margin-top: 0.75rem;
    padding-bottom: 26px;
  }
}

.topStory-contents__title::after {
  border-bottom: 1px solid #fff;
  bottom: -1px;
  content: "";
  display: block;
  left: 0;
  position: absolute;
  width: 24.6%;
}
@media screen and (min-width: 768px) {
  .topStory-contents__title::after {
    width: 24.4%;
  }
}

.topStory-contents__description {
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 14px;
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .topStory-contents__description {
    font-size: 16px;
    font-size: 1rem;
    letter-spacing: 0.04em;
    line-height: 1.8;
    margin-top: 22px;
    margin-top: 1.375rem;
  }
}

.topStory-contents__list {
  counter-reset: number;
  margin-top: 25px;
  margin-top: 1.5625rem;
  max-width: 570px;
  max-width: 35.625rem;
  padding-left: 10px;
  padding-left: 0.625rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .topStory-contents__list {
    margin-top: 30px;
    margin-top: 1.875rem;
    padding-left: 0;
  }
}

.topStory-contents__item {
  background-color: #E4ECF6;
  border-radius: 32px 0 0 6px;
  display: flex;
  gap: 10px;
  gap: 0.625rem;
  padding: 11px 10px 14px 5px;
  padding: 0.6875rem 0.625rem 0.875rem 0.3125rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .topStory-contents__item {
    border-radius: 60px 0 0 60px;
    padding: 5px 10px 5px 5px;
    padding: 0.3125rem 0.625rem 0.3125rem 0.3125rem;
  }
}

.topStory-contents__item + .topStory-contents__item {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .topStory-contents__item + .topStory-contents__item {
    margin-top: 20px;
    margin-top: 1.25rem;
  }
}

.topStory-contents__head {
  display: flex;
  flex: 1;
  gap: 10px;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .topStory-contents__head {
    align-items: center;
    gap: 20px;
    gap: 1.25rem;
  }
}

.topStory-contents__number {
  background-color: #966414;
  border-radius: 50%;
  color: #fff;
  display: inline-block;
  height: 60px;
  height: 3.75rem;
  position: relative;
  width: 60px;
  width: 3.75rem;
}
@media screen and (min-width: 768px) {
  .topStory-contents__number {
    height: 90px;
    height: 5.625rem;
    width: 90px;
    width: 5.625rem;
  }
}

.topStory-contents__item:not(:first-child) .topStory-contents__number::before {
  border-bottom: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-style: solid;
  border-top: 10px solid #BE9613;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  top: -25px;
  transform: translateX(-50%);
  width: 0;
}
@media screen and (min-width: 768px) {
  .topStory-contents__item:not(:first-child) .topStory-contents__number::before {
    top: -14.5px;
  }
}
@media screen and (min-width: 1024px) {
  .topStory-contents__item:not(:first-child) .topStory-contents__number::before {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 12px solid #BE9613;
    top: -19px;
  }
}

.topStory-contents__number span {
  display: flex;
  flex-direction: column;
  font-family: "Roboto", sans-serif;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1;
  padding-top: 10px;
  padding-top: 0.625rem;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .topStory-contents__number span {
    font-size: 16px;
    font-size: 1rem;
    padding-top: 18px;
    padding-top: 1.125rem;
  }
}

.topStory-contents__number span::after {
  content: "0" counter(number);
  counter-increment: number;
  font-size: 28px;
  font-size: 1.75rem;
  margin-top: 5px;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .topStory-contents__number span::after {
    font-size: 42px;
    font-size: 2.625rem;
  }
}

.topStory-contents__text {
  flex: 1;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .topStory-contents__text {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.5;
  }
}

.topStory-contents__text span {
  color: #966414;
}

.topStory-contents__image-wrap {
  margin-top: -20px;
  margin-top: -1.25rem;
  position: relative;
  width: 32%;
}
@media screen and (min-width: 768px) {
  .topStory-contents__image-wrap {
    margin-top: -15px;
    margin-top: -0.9375rem;
    width: 28.8%;
  }
}

.topStory-contents__image-wrap img {
  -o-object-fit: cover;
  aspect-ratio: 110/100;
  border-radius: 6px;
  height: auto;
     object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .topStory-contents__image-wrap img {
    aspect-ratio: 160/100;
  }
}

.topStory-interview {
  background-color: #001E46;
  width: 100%;
}

.topStory-interview__inner {
  margin-left: 0;
  margin-left: auto;
  margin-right: 0;
  margin-right: auto;
  max-width: 540px;
  max-width: 33.75rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-top: 25px;
  padding-top: 1.5625rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .topStory-interview__inner {
    max-width: 1260px;
    max-width: 78.75rem;
    padding: 0 1.58% 0 3.17%;
    padding-top: 0;
    width: 100%;
  }
}

.topStory-interview__container {
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .topStory-interview__container {
    align-items: center;
    display: flex;
    gap: 41px;
    gap: 2.5625rem;
    justify-content: space-between;
    padding-bottom: 40px;
    padding-bottom: 2.5rem;
    padding-top: 40px;
    padding-top: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .topStory-interview__heading {
    width: 16%;
  }
}
@media screen and (min-width: 1200px) {
  .topStory-interview__heading {
    padding-top: 0;
    width: 15%;
  }
}

.topStory-interview__heading-en {
  color: #23416E;
  font-family: "Roboto", sans-serif;
  font-size: 28px;
  font-size: 1.75rem;
  text-transform: uppercase;
}

.topStory-interview__heading-ja {
  color: #BE9613;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.12em;
  line-height: 1.15;
}
@media screen and (min-width: 768px) {
  .topStory-interview__heading-ja {
    letter-spacing: 0.12em;
    line-height: 1.3;
    margin-top: 8px;
    margin-top: 0.5rem;
  }
}

.topStory-interview__heading-ja span {
  font-size: 28px;
  font-size: 1.75rem;
}
@media screen and (min-width: 768px) {
  .topStory-interview__heading-ja span {
    display: inline-block;
    font-size: 38px;
    font-size: 2.375rem;
    letter-spacing: 0.12em;
    margin-top: 1px;
    margin-top: 0.0625rem;
  }
}

.topStory-interview__card {
  background-color: #fff;
  border-radius: 8px;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .topStory-interview__card {
    border-radius: 12px;
    display: flex;
    margin-top: 0;
    width: 84%;
  }
}
@media screen and (min-width: 1200px) {
  .topStory-interview__card {
    width: 85%;
  }
}

.topStory-interview__image-wrapper {
  width: 94%;
}
@media screen and (min-width: 768px) {
  .topStory-interview__image-wrapper {
    max-width: 100%;
    width: 36.7346938776%;
  }
}

.topStory-interview__image {
  aspect-ratio: 305/260;
  position: relative;
}
@media screen and (min-width: 768px) {
  .topStory-interview__image {
    aspect-ratio: 360/310;
    width: 100%;
  }
}

.topStory-interview__image::before {
  background-image: url(../images/top/story-interview-logo-sp@2x.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0.25rem;
  bottom: 10px;
  bottom: 0.625rem;
  content: "";
  height: 60px;
  height: 3.75rem;
  position: absolute;
  right: 10px;
  right: 0.625rem;
  width: 120px;
  width: 7.5rem;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .topStory-interview__image::before {
    background-image: url(../images/top/story-interview-logo-pc@2x.jpg);
    border-radius: 0.5rem;
    height: 80px;
    height: 5rem;
    width: 160px;
    width: 10rem;
  }
}

.topStory-interview__image img {
  border-radius: 8px 0 0 0;
  height: auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .topStory-interview__image img {
    border-radius: 12px 0 0 0;
  }
}

.topStory-interview__content {
  padding: 20px 20px 30px;
  padding: 1.25rem 1.25rem 1.875rem;
}
@media screen and (min-width: 768px) {
  .topStory-interview__content {
    max-width: 100%;
    padding: 30px 4.08%;
    padding: 1.875rem 4.08%;
    width: 63.2653061224%;
  }
}

.topStory-interview__company {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}

.topStory-interview__quote {
  border-bottom: solid 1px #A0B4D2;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.3;
  margin-top: 6px;
  margin-top: 0.375rem;
  padding-bottom: 14px;
  padding-bottom: 0.875rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .topStory-interview__quote {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.4;
    padding-bottom: 12px;
    padding-bottom: 0.75rem;
  }
}

.topStory-interview__quote::before {
  background-color: #00285A;
  bottom: -1px;
  bottom: -0.0625rem;
  content: "";
  display: inline-block;
  height: 1px;
  height: 0.0625rem;
  left: 0;
  position: absolute;
  width: 80px;
  width: 5rem;
}
@media screen and (min-width: 768px) {
  .topStory-interview__quote::before {
    width: 120px;
    width: 7.5rem;
  }
}

.topStory-interview__quote span {
  color: #966414;
}

.topStory-interview__text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.58;
  margin-top: 11px;
  margin-top: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .topStory-interview__text {
    letter-spacing: 0.04em;
    line-height: 1.8;
    margin-top: 18px;
    margin-top: 1.125rem;
  }
}

.topStory-interview__button {
  margin-top: 17px;
  margin-top: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .topStory-interview__button {
    margin-top: 30px;
    margin-top: 1.875rem;
  }
}

/* 【トップページ】STORYセクション */
.topStory {
  background-color: #00285A;
  border-radius: 0 24px 24px 0;
  margin-right: 2.66%;
  margin-top: 60px;
  margin-top: 3.75rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .topStory {
    margin-right: 1.38%;
    margin-top: 120px;
    margin-top: 7.5rem;
  }
}

.topStory__en-title {
  color: #23416E;
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 58px;
  font-size: 3.625rem;
  font-weight: 900;
  line-height: 1;
  margin-top: -6px;
  margin-top: -0.375rem;
  text-align: right;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .topStory__en-title {
    font-size: 108px;
    font-size: 6.75rem;
    margin-top: -12px;
    margin-top: -0.75rem;
  }
}

.topStory__inner {
  margin-top: -52px;
  margin-top: -3.25rem;
  padding-top: 50px;
  padding-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .topStory__inner {
    margin-left: auto;
    margin-right: auto;
    margin-top: -98px;
    margin-top: -6.125rem;
    max-width: 1420px;
    max-width: 88.75rem;
    padding: 0;
    padding-top: 40px;
    padding-top: 2.5rem;
  }
}

.topStory__container {
  align-items: end;
  display: flex;
  flex-direction: column;
  gap: 20px;
  gap: 1.25rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .topStory__container {
    flex-direction: row;
    gap: 40px;
    gap: 2.5rem;
    padding-bottom: 0;
  }
}

.topStory__photos {
  margin-right: 5.47%;
}
@media screen and (min-width: 768px) {
  .topStory__photos {
    margin-right: 0;
    max-width: 100%;
    width: 57.0422535211%;
  }
}

.u-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-pc {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-sp {
    display: none;
  }
}

.mce-preview-object {
  width: 100%;
}
/*# sourceMappingURL=style.css.map */
