@charset "UTF-8";
/* ===============================================
# pxをremに変換
$px 文字サイズ
$basepx 基準となるピクセル数
=============================================== */
/* ===============================================
# line-heightを計算する
$pixels 文字サイズ
$height figma上のline-height
=============================================== */
:root {
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-primary: #318CDF;
  --color-secondary: #006BCC;
  --color-text: #000000;
  --color-light-blue: #E9F8FF;
  --color-blue-sky: #9BDAEB;
  --color-blue-sky2: #F7FAFD;
  --color-blue-dark: #115798;
  --color-gray-blue: #D6E1E7;
  --color-gray-blue2: #91AAC1;
  --color-gray: #D9D9D9;
  --color-gray-faint: #F9FBFC;
  --color-green-line: #06C755;
  --color-yellow-soft: #FFF675;
  --color-gray-cool: #B2C1CF;
  --color-gray-e8: #E8E8E8;
  --color-blue-mist: #F3F9FF;
  --color-blue-baby: #B4DBFF;
  --color-blue-whisper: #EFF6F9;
  --font-noto-sans: "Noto Sans", sans-serif;
  --font-noto-serif-jp: "Noto Serif JP", serif;
  --font-montserrat: "Montserrat", sans-serif;
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font-noto-sans);
  font-weight: 400;
  color: var(--color-text);
  overflow-x: hidden;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

*,
*::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;
}

/* Set core root defaults */
/*
html {
  scroll-behavior: smooth;
}
*/
/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* 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;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  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] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 101;
  height: 7.5rem;
  transition: all 0.5s ease;
}
@media screen and (max-width: 768px) {
  .header {
    height: 5rem;
  }
}

.header.is-active {
  background-color: var(--color-white);
}

.header__inner {
  display: flex;
  align-items: center;
  padding: 0 3.75rem;
  height: inherit;
}
@media screen and (max-width: 1440px) {
  .header__inner {
    padding: 0 0.9375rem;
  }
}
.header__title {
  display: flex;
  align-items: center;
  margin-right: auto;
  height: inherit;
  z-index: 101;
}

.header__logo {
  width: 16.5625rem;
}
@media screen and (max-width: 1024px) {
  .header__logo {
    width: 13.75rem;
  }
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 12.5rem;
  }
}
@media screen and (max-width: 430px) {
  .header__logo {
    width: 10rem;
  }
}

.header__items {
  display: flex;
  align-items: center;
  height: inherit;
  flex-wrap: wrap;
  -moz-column-gap: 1.875rem;
       column-gap: 1.875rem;
  margin-left: 1.875rem;
}

.header__item {
  height: inherit;
}

.header__link {
  font-family: var(--font-noto-serif-jp);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  display: flex;
  align-items: center;
  height: inherit;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .header__link {
    font-size: 3.3854166667vw;
  }
}
.header__link:hover {
  opacity: 1;
  color: var(--color-secondary);
}

.header__button {
  max-width: 204px;
  width: 100%;
  background: linear-gradient(94.94deg, #1E6EB7 0%, #105696 100%);
  cursor: pointer;
  text-decoration: none;
  padding: 1.25rem 2.5rem;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 1.875rem;
}
@media screen and (max-width: 1440px) {
  .header__button {
    margin-left: clamp(0.938rem, -0.137rem + 2.24vw, 1.875rem);
  }
}
@media screen and (max-width: 768px) {
  .header__button {
    display: none;
  }
}

.header__button-icon {
  width: 1.0625rem;
  aspect-ratio: 17/14;
  -o-object-fit: cover;
     object-fit: cover;
}

.header__button-text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .header__button-text {
    font-size: 3.3854166667vw;
  }
}

.header__hamburger-wrap {
  display: none;
  width: 4.375rem;
  aspect-ratio: 1/1;
  z-index: 101;
}
@media screen and (max-width: 768px) {
  .header__hamburger-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.header__hamburger {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

.header__hamburger-lines {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 1.75rem;
  height: 1.3125rem;
}

.header__hamburger-lines span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--color-secondary);
  transition: all 0.3s;
}

.header__hamburger-text {
  margin-top: 0.3125rem;
  font-size: 0.625rem;
  color: var(--color-secondary);
  font-weight: 700;
  letter-spacing: 0;
}

.header__hamburger.is-active .header__hamburger-lines span:first-child {
  transform: translateY(9px) rotate(45deg);
}

.header__hamburger.is-active .header__hamburger-lines span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.is-active .header__hamburger-lines span:last-child {
  transform: translateY(-9px) rotate(-45deg);
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: linear-gradient(117.27deg, #E7F5FF 10.71%, #C3E4FF 64.38%);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 7.5rem 1.5625rem 6.25rem;
  z-index: 100;
  pointer-events: none;
}

.drawer.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.drawer__items {
  list-style: none;
  padding: 0;
  margin: 0 auto;
}

.drawer__item {
  margin-bottom: 0.9375rem;
}

.drawer__link {
  font-family: var(--font-noto-serif-jp);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text);
  display: flex;
  align-items: center;
  height: inherit;
  padding: 0.625rem 0;
}
@media screen and (max-width: 768px) {
  .drawer__link {
    font-size: 3.6458333333vw;
  }
}

.drawer__item a:hover {
  opacity: 0.7;
}

.drawer__btn-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}

.drawer__button {
  max-width: 360px;
  width: 100%;
  background: linear-gradient(94.94deg, #1E6EB7 0%, #105696 100%);
  cursor: pointer;
  text-decoration: none;
  padding: 1.25rem 2.5rem;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9375rem;
}

.drawer__button-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}

.drawer__button-icon {
  width: 1.0625rem;
  aspect-ratio: 17/14;
  -o-object-fit: cover;
     object-fit: cover;
}

.drawer__button-text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .drawer__button-text {
    font-size: 3.3854166667vw;
  }
}

body.is-drawer-active {
  overflow: hidden;
}

/* パンくず */
.breadcrumb {
  margin-top: 1.25rem;
}

.breadcrumb__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-self: center;
  -moz-column-gap: 0.5rem;
  column-gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  padding: 1rem 5rem 0;
}
@media screen and (max-width: 768px) {
  .breadcrumb__inner {
    padding: 1rem 1.25rem 0;
    font-size: 0.75rem;
    row-gap: 0.5rem;
  }
}
@media screen and (max-width: 430px) {
  .breadcrumb__inner {
    font-size: 0.625rem;
  }
}

.breadcrumb a {
  color: var(--color-text);
}

.breadcrumb .current-item {
  font-weight: 700;
  color: var(--color-primary);
}

.breadcrumb__between::before {
  content: ">";
  color: var(--color-primary);
  display: inline-block;
}

.breadcrumb span[property=name] {
  display: inline-block;
  padding: 0;
  vertical-align: middle;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
}

.c-button {
  position: relative;
  width: 100%;
  background: linear-gradient(94.94deg, #1E6EB7 0%, #105696 100%);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-white);
  cursor: pointer;
  text-decoration: none;
  padding: 1rem 1.875rem 1rem 3.125rem;
  border-radius: 2.4375rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-button:hover .c-button__arrow {
  transform: translateX(5px);
}
@media screen and (max-width: 768px) {
  .c-button {
    font-size: 3.6458333333vw;
    line-height: 2.1923076923;
    padding: 0.625rem 0.9375rem;
  }
}
.c-button.c-button--search {
  background: var(--color-secondary);
}
.c-button.c-button--line {
  background: var(--color-green-line);
}
.c-button.c-button--border {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-secondary);
  background: var(--color-white);
  border: 1px solid var(--color-secondary);
  padding: 0.625rem 1.875rem 0.625rem 3.125rem;
  justify-content: space-between;
  transition: all 0.3s ease;
}
.c-button.c-button--border:hover .c-button__arrow {
  transform: none;
}
.c-button.c-button--border:hover .c-button__arrow img {
  transform: translateY(3px);
}
@media screen and (max-width: 430px) {
  .c-button.c-button--border {
    padding: 0.625rem 1.25rem 0.625rem 2.1875rem;
  }
}

.c-button__search {
  width: 1.5rem;
  height: 1.5rem;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1/1;
}

.c-button__mail {
  width: 1.875rem;
  height: 1.875rem;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 430px) {
  .c-button__mail {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.c-button__line {
  width: 2.1875rem;
  height: 2.1875rem;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 430px) {
  .c-button__line {
    width: 1.5625rem;
    height: 1.5625rem;
  }
}

.c-button__text {
  margin-left: 0.5rem;
}

.c-button__arrow {
  width: 2.875rem;
  height: 2.875rem;
  aspect-ratio: 1/1;
  background-color: var(--color-white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 1.875rem;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .c-button__arrow {
    width: 2rem;
    height: 2rem;
    margin-left: 1.25rem;
  }
}
.c-button__arrow.c-button__arrow--bgyellow {
  background-color: var(--color-yellow-soft);
}
.c-button__arrow.c-button__arrow--blue {
  background-color: var(--color-secondary);
  width: 1.875rem;
  height: 1.875rem;
  margin-left: 0.625rem;
}
@media screen and (max-width: 768px) {
  .c-button__arrow.c-button__arrow--blue {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.c-button__arrow img {
  width: 0.8125rem;
  height: 0.625rem;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s ease;
}

.footer {
  background-color: var(--color-white);
}

.footer__inner {
  max-width: 1220px;
  width: 100%;
  padding: 3.75rem 1.25rem 1.875rem;
  margin: 0 auto;
}

.footer__company-name {
  font-family: var(--font-noto-serif-jp);
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  .footer__company-name {
    font-size: 4.6875vw;
  }
}

.footer__content {
  margin-top: 2.8125rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer__content {
    flex-direction: column;
    gap: 2.8125rem;
  }
}
@media screen and (max-width: 430px) {
  .footer__content {
    gap: 1.875rem;
  }
}

.footer__left {
  min-width: 200px;
}
@media screen and (max-width: 430px) {
  .footer__left {
    min-width: unset;
  }
}

.footer__right {
  flex: 1;
}

.footer__company-address,
.footer__company-tel {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  .footer__company-address,
.footer__company-tel {
    font-size: 3.3854166667vw;
  }
}

.footer__company-tel a {
  color: var(--color-text);
}

.footer__nav-list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 1.25rem 0;
  gap: 1.875rem;
}
@media screen and (max-width: 768px) {
  .footer__nav-list {
    flex-direction: column;
    gap: 1.25rem;
  }
}

.footer__item {
  position: relative;
}

.footer__item-link {
  position: relative;
  font-family: var(--font-noto-serif-jp);
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.03em;
  font-weight: 700;
  color: var(--color-text);
  padding-left: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .footer__item-link {
    font-size: 3.3854166667vw;
  }
}

.footer__item-link::after {
  position: absolute;
  content: "";
  bottom: 0.125rem;
  left: 0;
  transform: translateY(-50%);
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #52A4EE 0%, #2580D3 100%);
}
@media screen and (max-width: 430px) {
  .footer__item-link::after {
    bottom: 0;
  }
}

.footer__copyright {
  display: block;
  width: 100%;
  padding: 1.25rem 0;
  text-align: center;
  color: var(--color-black);
  font-family: var(--font-noto-serif-jp);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.03em;
  border-top: 1px solid var(--color-gray-cool);
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    font-size: 3.3854166667vw;
  }
}

.page-top {
  display: block;
  position: fixed;
  bottom: -100px;
  right: 40px;
  background-color: var(--color-blue-dark);
  cursor: pointer;
  opacity: 0;
  width: 3.75rem;
  height: 3.75rem;
  z-index: 10;
  transition: opacity 0.5s ease, bottom 0.5s ease;
}
@media screen and (max-width: 768px) {
  .page-top {
    width: 2.5rem;
    height: 2.5rem;
    right: 4%;
  }
}

.page-top::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -25%) rotate(-45deg);
  border-top: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
  height: 1.25rem;
  width: 1.25rem;
}
@media screen and (max-width: 768px) {
  .page-top::after {
    height: 0.625rem;
    width: 0.625rem;
  }
}

.page-top.active {
  bottom: 3rem;
  opacity: 1;
}

/* ページネーション */
.pagination {
  margin-top: 3.4375rem;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 0.5625rem;
}

.pagination__arrow {
  color: var(--color-primary);
}

.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--color-primary);
  background-color: var(--color-white);
  border: 1px solid var(--color-primary);
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-numbers:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.page-numbers.current {
  color: var(--color-white);
  background-color: var(--color-primary);
}

.page-numbers.dots,
.page-numbers.prev,
.page-numbers.next {
  border: none;
  background-color: transparent;
}

/****************************************/
/****************************************/
.top-mv {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(117.27deg, #E7F5FF 10.71%, #C3E4FF 64.38%);
  padding-bottom: 3.75rem;
}

.top-mv__inner {
  position: relative;
  max-width: 1312.5px;
  margin-inline: auto;
  height: inherit;
  padding-top: 11.875rem;
  padding-left: 1.875rem;
}
@media screen and (max-width: 768px) {
  .top-mv__inner {
    padding-top: 6.25rem;
  }
}

.top-mv__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .top-mv__content {
    padding: 0 1.25rem;
  }
}

.top-mv__title {
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--font-noto-serif-jp);
  line-height: 1.45;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .top-mv__title {
    font-size: 7.5520833333vw;
  }
}
.top-mv__title .text-lg {
  font-size: 3.5rem;
}
@media screen and (max-width: 768px) {
  .top-mv__title .text-lg {
    font-size: 8.59375vw;
  }
}

.top-mv__text {
  color: var(--color-text);
  font-size: 1.25rem;
  font-family: var(--font-noto-serif-jp);
  line-height: 1.8;
  margin-top: 2.5rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .top-mv__text {
    font-size: 3.90625vw;
  }
}
@media screen and (max-width: 768px) {
  .top-mv__text {
    margin-top: clamp(0.938rem, 0.268rem + 3.35vw, 1.875rem);
  }
}
@media (max-height: 560px) {
  .top-mv__text {
    margin-top: 1.953125vw;
  }
}

.top-mv__feature {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .top-mv__feature {
    margin-top: clamp(1.25rem, 5vw, 2.5rem);
  }
}

.top-mv__feature-img {
  width: 31.625rem;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 506/260;
}

.top-mv__img-wrap {
  position: absolute;
  width: 65.5vw;
  height: calc(90% - 60px);
  aspect-ratio: 946/800;
  top: 7.5rem;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .top-mv__img-wrap {
    width: 55.5vw;
  }
}
@media screen and (max-width: 768px) {
  .top-mv__img-wrap {
    width: 87.5vw;
    height: 45%;
    top: unset;
    bottom: 1.875rem;
  }
}
@media (min-height: 960px) {
  .top-mv__img-wrap {
    height: 85%;
  }
}
@media screen and (min-height: 960px) and (max-width: 768px) {
  .top-mv__img-wrap {
    height: 45%;
  }
}

.top-mv__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-top-left-radius: 1.875rem;
  border-bottom-left-radius: 1.875rem;
}

.top-mv__scrollbar-text {
  display: inline-block;
  position: absolute;
  bottom: 1.5625rem;
  padding: 0 0.625rem;
  color: var(--color-text);
  font-family: var(--font-montserrat);
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 1.4;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  writing-mode: vertical-lr;
  left: 3%;
}
@media screen and (max-width: 768px) {
  .top-mv__scrollbar-text {
    left: 2%;
    bottom: 2.1875rem;
  }
}

.top-mv__scrollbar-line {
  position: absolute;
  left: 3.2%;
  bottom: -1.875rem;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .top-mv__scrollbar-line {
    left: 1.8%;
    bottom: -1.25rem;
  }
}

.top-mv__scrollbar-line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 6.6875rem;
  background: var(--color-text);
  -webkit-animation: liner 2.5s cubic-bezier(1, 0, 0, 1) infinite;
          animation: liner 2.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@media screen and (max-width: 768px) {
  .top-mv__scrollbar-line::after {
    left: 6px;
  }
}

@-webkit-keyframes liner {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  30% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  70% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

@keyframes liner {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  30% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  70% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/****************************************/
/****************************************/
.top-about {
  background-color: var(--color-white);
  position: relative;
}

@media screen and (max-width: 768px) {
  .top-about__inner {
    max-width: 640px;
    padding: 0 1.25rem;
    margin: 0 auto;
  }
}

.top-about__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5.75rem;
}
@media screen and (max-width: 1200px) {
  .top-about__content {
    gap: clamp(1.875rem, -5.014rem + 14.35vw, 5.75rem);
  }
}
@media screen and (max-width: 768px) {
  .top-about__content {
    flex-direction: column;
    gap: 2.5rem;
  }
}

.top-about__image {
  width: 49%;
}
@media screen and (max-width: 768px) {
  .top-about__image {
    width: 100%;
  }
}

.top-about__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 717/520;
  -o-object-fit: cover;
  object-fit: cover;
}

.top-about__body {
  width: 32%;
  margin-left: 12%;
  margin-top: 5rem;
}
@media screen and (max-width: 1024px) {
  .top-about__body {
    width: 39%;
    margin-left: 5%;
  }
}
@media screen and (max-width: 768px) {
  .top-about__body {
    width: 100%;
    margin-left: 0;
  }
}

.top-about__text {
  color: var(--color-text);
  margin-top: 3rem;
}
@media screen and (max-width: 1024px) {
  .top-about__text {
    margin-top: 2.25rem;
  }
}
@media screen and (max-width: 768px) {
  .top-about__text {
    margin-top: 2rem;
  }
}

.top-reason {
  position: relative;
  padding: 7.5rem 0;
  background-color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .top-reason {
    padding: 3.75rem 0;
  }
}

.top-reason::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 59vw;
  height: 100%;
  background-color: var(--color-gray-faint);
}

.top-reason__inner {
  position: relative;
  max-width: 1290px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.25rem;
  z-index: 0;
}

.top-reason__content {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 5.6875rem;
  z-index: 2;
}
@media screen and (max-width: 1200px) {
  .top-reason__content {
    gap: clamp(1.875rem, -4.927rem + 14.15vw, 5.688rem);
  }
}
@media screen and (max-width: 768px) {
  .top-reason__content {
    flex-direction: column;
    gap: 2.5rem;
  }
}

.top-reason__body {
  flex: 1;
}

.top-reason__subtitle {
  font-family: var(--font-noto-serif-jp);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.03em;
  color: var(--color-secondary);
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .top-reason__subtitle {
    font-size: 5.46875vw;
  }
}
@media screen and (max-width: 768px) {
  .top-reason__subtitle {
    text-align: center;
  }
}

.top-reason__text:first-of-type {
  margin-top: 2.5rem;
}

.top-reason__text + .top-reason__text {
  margin-top: 1.125rem;
}

.top-reason__image {
  position: relative;
  width: 39.375rem;
  flex-shrink: 0;
}
@media screen and (max-width: 1200px) {
  .top-reason__image {
    width: clamp(22.5rem, 4.658rem + 37.12vw, 32.5rem);
  }
}
@media screen and (max-width: 768px) {
  .top-reason__image {
    width: 100%;
  }
}

.top-reason__img2 {
  position: absolute;
  right: 0;
  bottom: -5rem;
  width: 32.5rem;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .top-reason__img2 {
    bottom: 0;
    bottom: clamp(80px, 80px + 280 * (100vw - 1200px) / -431, 360px);
    width: clamp(18.75rem, 6.205rem + 26.73vw, 26.25rem);
  }
}
@media screen and (max-width: 768px) {
  .top-reason__img2 {
    position: relative;
    bottom: 1.25rem;
    width: 75%;
    margin-left: auto;
  }
}

/****************************************/
/****************************************/
.top-service {
  position: relative;
  padding: 18.75rem 0 8.125rem;
}
@media screen and (max-width: 768px) {
  .top-service {
    padding: 8.75rem 0 1.875rem;
  }
}

.top-service_img1-wrap {
  position: absolute;
  display: block;
  left: 0;
  top: 27%;
  max-width: 25%;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top-service_img1-wrap {
    top: 15%;
  }
}

.top-service_img2-wrap {
  position: absolute;
  display: block;
  right: 0;
  top: 36%;
  max-width: 28.8%;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top-service_img2-wrap {
    top: 20%;
  }
}

.top-service__inner {
  max-width: 46.2%;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media screen and (max-width: 768px) {
  .top-service__inner {
    max-width: 100%;
  }
}

.top-service__content {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .top-service__content {
    margin-top: clamp(3.125rem, -0.893rem + 20.09vw, 8.75rem);
  }
}

.top-service__subtitle {
  font-family: var(--font-noto-serif-jp);
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.03em;
  color: var(--color-secondary);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-service__subtitle {
    font-size: 3.90625vw;
  }
}

/* スマホだけ2行目を折り返す */
@media screen and (max-width: 768px) {
  .sp-break {
    display: block;
  }
}

.top-service__features-list {
  margin-top: 2.8125rem;
}
@media screen and (max-width: 430px) {
  .top-service__features-list {
    margin-top: 1.25rem;
  }
}

.top-service__features-item {
  position: relative;
  background-color: var(--color-light-blue);
  padding: 0.75rem 1.25rem 0.75rem 3.375rem;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .top-service__features-item {
    font-size: 3.90625vw;
  }
}

.top-service__features-item:not(:first-child) {
  margin-top: 0.625rem;
}

.top-service__features-item::before {
  position: absolute;
  content: "";
  background-image: url(../images/check01.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  width: 1.5rem;
  height: 1.5rem;
  left: 0.9375rem;
  top: 1.125rem;
}
@media screen and (max-width: 768px) {
  .top-service__features-item::before {
    width: 3.90625vw;
    height: 3.90625vw;
  }
}
@media screen and (max-width: 430px) {
  .top-service__features-item::before {
    width: 1.125rem;
    height: 1.125rem;
  }
}

/****************************************/
/****************************************/
.top-news {
  padding: 7.5rem 0;
}
@media screen and (max-width: 768px) {
  .top-news {
    padding: 3.75rem 0 5rem;
  }
}

.top-news__inner {
  max-width: 1250px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.top-news__content {
  display: flex;
  justify-content: space-between;
  gap: 8.3125rem;
}
@media screen and (max-width: 1440px) {
  .top-news__content {
    gap: clamp(3.75rem, -1.479rem + 10.88vw, 8.313rem);
  }
}
@media screen and (max-width: 768px) {
  .top-news__content {
    flex-direction: column;
    gap: 2.5rem;
  }
}

.top-news__left {
  width: 19.875rem;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .top-news__left {
    width: 100%;
  }
}

.top-news__right {
  flex: 1;
}

.top-news__button {
  max-width: 318px;
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .top-news__button.top-news__button--pc {
    display: none;
  }
}
.top-news__button.top-news__button--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .top-news__button.top-news__button--sp {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 75%;
    margin: 2.5rem auto 0;
    gap: 1.25rem;
  }
}

.news.news--page {
  padding: 5rem 0 6.75rem;
  background: var(--color-white);
}

.news.news--category {
  padding: 5rem 0 6.75rem;
}

/****************************************/
/****************************************/
.top-price {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 7.5rem;
  margin-top: clamp(140px, 8vw + 25px, 300px);
}
@media screen and (max-width: 1440px) {
  .top-price {
    margin-top: 7.5rem;
  }
}
@media screen and (max-width: 768px) {
  .top-price {
    margin-top: 1.25rem;
    padding: 3.75rem 0 6.25rem;
  }
}
@media screen and (max-width: 430px) {
  .top-price {
    padding: 3.125rem 0 3.75rem;
  }
}

.top-price__inner {
  position: relative;
  display: flex;
  justify-content: flex-end;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .top-price__inner {
    flex-direction: column;
  }
}

.top-price__img-wrap {
  position: absolute;
  left: 0;
  top: -6.25rem;
  max-width: 43%;
  width: 100%;
  z-index: 2;
  transform: translateY(-5%);
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .top-price__img-wrap {
    position: relative;
    max-width: 95%;
    top: 0;
    transform: none;
  }
}

.top-price__content {
  position: relative;
  z-index: 1;
  max-width: 61.8%;
  width: 100%;
  background-color: var(--color-gray-faint);
  padding: 7.5rem 8.125rem;
}
@media screen and (max-width: 1200px) {
  .top-price__content {
    padding: 3.75rem clamp(3.125rem, -4.681rem + 16.24vw, 7.5rem);
  }
}
@media screen and (max-width: 768px) {
  .top-price__content {
    max-width: 100%;
    padding: 3.75rem 1.875rem 2.5rem;
    margin-top: -1.25rem;
  }
}

.top-price__subtitle {
  margin-top: 2.8125rem;
  font-family: var(--font-noto-serif-jp);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.03em;
  color: var(--color-secondary);
}
@media screen and (max-width: 768px) {
  .top-price__subtitle {
    font-size: 5.46875vw;
  }
}
@media screen and (max-width: 1024px) {
  .top-price__subtitle {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 768px) {
  .top-price__subtitle {
    text-align: center;
  }
}

.top-price__subtitle-text .text-lg {
  font-size: 2.375rem;
}
@media screen and (max-width: 768px) {
  .top-price__subtitle-text .text-lg {
    font-size: 6.25vw;
  }
}
@media screen and (max-width: 1024px) {
  .top-price__subtitle-text .text-lg {
    font-size: 2.125rem;
  }
}

.top-price__text {
  margin-top: 2.1875rem;
}

.top-price__button {
  max-width: 369px;
  margin-left: auto;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 768px) {
  .top-price__button {
    max-width: 80%;
    margin-right: auto;
  }
}
@media screen and (max-width: 430px) {
  .top-price__button {
    max-width: 95%;
  }
}

/****************************************/
/****************************************/
.top-faq {
  padding: 7.5rem 0;
}
@media screen and (max-width: 768px) {
  .top-faq {
    padding: 3.75rem 0;
  }
}

.top-faq__inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.top-faq__items {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .top-faq__items {
    margin-top: 2.5rem;
  }
}

.top-faq__button {
  max-width: 354px;
  margin: 3.75rem auto 0;
}
@media screen and (max-width: 768px) {
  .top-faq__button {
    max-width: 80%;
  }
}
@media screen and (max-width: 430px) {
  .top-faq__button {
    max-width: 95%;
  }
}

/****************************************/
/****************************************/
.top-voice {
  background-color: var(--color-gray-faint);
  padding: 5rem 0;
}
@media screen and (max-width: 768px) {
  .top-voice {
    padding: 2.5rem 0;
  }
}

.top-voice__inner {
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.top-voice__balloon {
  position: relative;
  display: inline-block;
  font-family: var(--font-noto-serif-jp);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.03em;
  color: var(--color-white);
  background: linear-gradient(94.94deg, #1E6EB7 0%, #105696 100%);
  border-radius: 1.75rem;
  padding: 0.625rem 2rem;
  margin-top: 2.8125rem;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .top-voice__balloon {
    font-size: 3.90625vw;
  }
}
@media screen and (max-width: 768px) {
  .top-voice__balloon {
    border-radius: 4.6875rem;
    width: 80%;
  }
}

.top-voice__balloon::after {
  content: "";
  position: absolute;
  bottom: -0.625rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1rem;
  height: 0.625rem;
  background: linear-gradient(94.94deg, #1E6EB7 0%, #105696 100%);
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
          clip-path: polygon(0 0, 0% 100%, 100% 0);
}

.top-voice__items {
  margin-top: 2.5rem;
}
@media screen and (max-width: 430px) {
  .top-voice__items {
    margin-top: 1.25rem;
  }
}

.top-voice__item {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  padding: 1.875rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-secondary);
  border-radius: 0.9375rem;
}
@media screen and (max-width: 430px) {
  .top-voice__item {
    padding: 1.25rem 0.9375rem;
  }
}

.top-voice__item:not(:first-child) {
  margin-top: 0.9375rem;
}

.top-voice__img {
  width: 6.25rem;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1/1;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .top-voice__img {
    width: 5rem;
  }
}
@media screen and (max-width: 430px) {
  .top-voice__img {
    width: 3.75rem;
  }
}

.top-voice__item-body {
  flex: 1;
}

.top-voice__item-title {
  font-family: var(--font-noto-serif-jp);
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.03em;
  padding-bottom: 0.3125rem;
  border-bottom: 1px solid var(--color-gray-e8);
}
@media screen and (max-width: 768px) {
  .top-voice__item-title {
    font-size: 3.3854166667vw;
  }
}

.top-voice__item-text {
  margin-top: 0.625rem;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .top-voice__item-text {
    font-size: 3.3854166667vw;
  }
}

/****************************************/
/****************************************/
.top-area {
  padding: 6.25rem 0;
}
@media screen and (max-width: 768px) {
  .top-area {
    padding: 3.75rem 0;
  }
}

.top-area__inner {
  position: relative;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.25rem;
  z-index: 0;
}

.top-area__content {
  position: relative;
  background: linear-gradient(136.85deg, #DBEBF7 32.67%, #C3E4FF 67.18%);
  padding: 3.75rem;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .top-area__content {
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .top-area__content {
    padding: 2.5rem 1.875rem 0;
  }
}
@media screen and (max-width: 430px) {
  .top-area__content {
    padding: 1.875rem 1.25rem 0;
  }
}

.top-area__content::before {
  position: absolute;
  content: "";
  background-color: var(--color-white);
  width: 100%;
  height: 1.25rem;
  left: 0;
  top: 0;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .top-area__content::before {
    height: 0;
  }
}

.top-area__content::after {
  position: absolute;
  content: "";
  background-color: var(--color-white);
  width: 0.9375rem;
  height: 100%;
  right: 0;
  top: 0;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .top-area__content::after {
    width: 0;
  }
}

.top-area__map {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .top-area__map {
    position: relative;
    margin-top: 1.875rem;
  }
}

.top-area__map-img {
  width: 51rem;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 816/467;
}
@media screen and (max-width: 1440px) {
  .top-area__map-img {
    width: 49.375rem;
  }
}
@media screen and (max-width: 1200px) {
  .top-area__map-img {
    width: clamp(28.75rem, -58.523rem + 136.36vw, 43.75rem);
  }
}
@media screen and (max-width: 768px) {
  .top-area__map-img {
    width: 100%;
  }
}

h2.top-area__title-en {
  color: var(--color-blue-baby);
}

.top-area__subtitle {
  margin-top: 2.8125rem;
  font-family: var(--font-noto-serif-jp);
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.03em;
  color: var(--color-secondary);
}
@media screen and (max-width: 768px) {
  .top-area__subtitle {
    font-size: 4.6875vw;
  }
}
@media screen and (max-width: 768px) {
  .top-area__subtitle {
    margin-inline: auto;
    text-align: center;
  }
}

.top-area__text {
  margin-top: 1.875rem;
}

/****************************************/
/****************************************/
.top-flow {
  background-color: var(--color-blue-sky2);
  padding: 7.5rem 0;
}
@media screen and (max-width: 768px) {
  .top-flow {
    padding: 5rem 0;
  }
}

.top-flow__inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.25rem;
  z-index: 0;
}

.top-flow__subtitle {
  margin-top: 2.8125rem;
  font-family: var(--font-noto-serif-jp);
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.03em;
  color: var(--color-secondary);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-flow__subtitle {
    font-size: 4.6875vw;
  }
}
.top-flow__subtitle .text-lg {
  font-size: 2.25rem;
}
@media screen and (max-width: 768px) {
  .top-flow__subtitle .text-lg {
    font-size: 5.9895833333vw;
  }
}

.top-flow__subtitle-text {
  position: relative;
  display: inline-block;
  padding-bottom: 0.125rem;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  border-bottom: 1px solid var(--color-secondary);
}

.top-flow__subtitle-text::before {
  position: absolute;
  content: "";
  width: 1rem;
  height: 1px;
  background-color: var(--color-blue-sky2);
  left: 50%;
  transform: translateX(-50%);
  bottom: -1px;
}

.top-flow__subtitle-text::after {
  position: absolute;
  content: "";
  width: 0.9375rem;
  height: 1px;
  background-color: var(--color-secondary);
  left: calc(50% - 4.5px);
  transform: rotate(-44deg);
  bottom: -6px;
}

.top-flow__line {
  width: 100%;
  margin-top: 2.8125rem;
  display: flex;
  align-items: center;
}

.top-flow__line-left {
  width: 55%;
  height: 1px;
  background-color: var(--color-secondary);
}

.top-flow__line-right {
  position: relative;
  width: 50%;
  height: 1px;
  background-color: var(--color-secondary);
  margin-right: auto;
  margin-left: 3.3125rem;
}

.top-flow__line-right::after {
  position: absolute;
  content: "";
  width: 53px;
  height: 1px;
  background-color: var(--color-secondary);
  transform: rotate(148deg);
  top: 14px;
  left: -49px;
}

.top-flow__cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .top-flow__cards {
    grid-template-columns: 1fr;
  }
}

.top-flow__card {
  padding: 1.875rem 3.75rem;
}

.top-flow__card:not(:first-child) {
  border-left: 1px solid var(--color-gray-cool);
}
@media screen and (max-width: 768px) {
  .top-flow__card:not(:first-child) {
    border-left: 0;
    border-top: 1px solid var(--color-gray-cool);
  }
}

.top-flow__card-number {
  width: 100%;
  background-color: var(--color-light-blue);
  color: var(--color-primary);
  text-align: center;
  font-family: var(--font-montserrat);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.03em;
  border-radius: 1.25rem;
  padding: 0.375rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .top-flow__card-number {
    font-size: 3.90625vw;
  }
}

.top-flow__card-img {
  margin: 1rem auto 0;
}

.top-flow__card:nth-child(1) .top-flow__card-img {
  width: 8.6875rem;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 139/80;
}

.top-flow__card:nth-child(2) .top-flow__card-img {
  width: 6.3125rem;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 101/80;
}

.top-flow__card:nth-child(3) .top-flow__card-img {
  width: 4.125rem;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 33/40;
}

.top-flow__text {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.03em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-flow__text {
    font-size: 3.3854166667vw;
  }
}

.top-flow__button {
  max-width: 423px;
  margin-top: 2.8125rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .top-flow__button {
    max-width: 90%;
  }
}
@media screen and (max-width: 430px) {
  .top-flow__button {
    max-width: 100%;
  }
}

/****************************************/
/****************************************/
.top-company {
  background-color: var(--color-blue-sky2);
  padding-bottom: 7.5rem;
  padding-left: 3.125rem;
}
@media screen and (max-width: 768px) {
  .top-company {
    padding-bottom: 5rem;
    padding-left: 1.875rem;
  }
}
@media screen and (max-width: 430px) {
  .top-company {
    padding-left: 0.9375rem;
  }
}

.top-company__inner {
  background-color: var(--color-white);
  padding: 6.25rem 8.125rem 6.25rem 5rem;
  border-top-left-radius: 1.875rem;
  border-bottom-left-radius: 1.875rem;
}
@media screen and (max-width: 1200px) {
  .top-company__inner {
    padding: 5rem clamp(3.75rem, -4.056rem + 16.24vw, 8.125rem) 5rem clamp(2.5rem, -1.961rem + 9.28vw, 5rem);
  }
}
@media screen and (max-width: 768px) {
  .top-company__inner {
    padding: 3.75rem 2.5rem 6.25rem;
  }
}
@media screen and (max-width: 430px) {
  .top-company__inner {
    padding: 2.5rem 1.25rem 5rem;
  }
}

.top-company__content {
  display: flex;
  gap: 3.75rem;
}
@media screen and (max-width: 1024px) {
  .top-company__content {
    gap: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .top-company__content {
    flex-direction: column;
    gap: 1.875rem;
  }
}

.top-company__left {
  flex-shrink: 0;
}

.top-company__img {
  margin-top: 4.6875rem;
  width: 22.5rem;
  aspect-ratio: 9/8;
}
@media screen and (max-width: 1024px) {
  .top-company__img {
    width: 15.625rem;
  }
}
@media screen and (max-width: 768px) {
  .top-company__img {
    width: 100%;
  }
}

.top-company__right {
  flex: 1;
}

.top-company__items {
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .top-company__items {
    margin-top: 0;
  }
}

.top-company__item {
  padding-bottom: 1.25rem;
  display: flex;
  align-items: center;
  padding: 1.5rem 1.875rem;
  border-bottom: 1px solid transparent;
  -o-border-image: linear-gradient(90deg, #105797 0%, #6BB0F0 100%);
     border-image: linear-gradient(90deg, #105797 0%, #6BB0F0 100%);
  border-image-slice: 1;
}
@media screen and (max-width: 768px) {
  .top-company__item {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 0.9375rem;
  }
}
@media screen and (max-width: 430px) {
  .top-company__item {
    padding: 0.9375rem 1.25rem;
  }
}

.top-company__item-label {
  display: flex;
  width: 100%;
  max-width: 170px;
  font-family: var(--font-noto-serif-jp);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--color-secondary);
}
@media screen and (max-width: 768px) {
  .top-company__item-label {
    font-size: 3.3854166667vw;
  }
}
@media screen and (max-width: 1200px) {
  .top-company__item-label {
    max-width: clamp(6.25rem, -1.556rem + 16.24vw, 10.625rem);
  }
}

.top-company__item-value {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .top-company__item-value {
    font-size: 3.3854166667vw;
  }
}
@media screen and (max-width: 768px) {
  .top-company__item-value {
    margin-top: 0.9375rem;
  }
}

.top-company__item-link {
  color: var(--color-text);
  text-decoration: underline;
}

/****************************************/
/****************************************/
.news__item {
  display: flex;
  align-items: center;
  padding: 1.5rem 1.875rem 1.75rem;
  border-bottom: 1px solid transparent;
  -o-border-image: linear-gradient(90deg, #105797 0%, #6BB0F0 100%);
     border-image: linear-gradient(90deg, #105797 0%, #6BB0F0 100%);
  border-image-slice: 1;
}
@media screen and (max-width: 1024px) {
  .news__item {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .news__item {
    padding: 1.125rem 1.25rem 1.375rem;
  }
}

.news__head {
  text-align: center;
}

.news__head-en {
  font-family: var(--font-montserrat);
  font-size: 2rem;
  font-weight: 700;
  display: block;
  line-height: 1.4;
  color: var(--color-primary);
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .news__head-en {
    font-size: 5.46875vw;
  }
}

.news__head-ja {
  margin-top: 1.125rem;
  position: relative;
  font-family: var(--font-noto-serif-jp);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0.03em;
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  .news__head-ja {
    font-size: 3.90625vw;
  }
}

.news-item__unit {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.news-item__date {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-gray-blue2);
}
@media screen and (max-width: 768px) {
  .news-item__date {
    font-size: 3.3854166667vw;
  }
}
@media screen and (max-width: 768px) {
  .news-item__date {
    padding-top: 4px;
  }
}

.news-item__category {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  background-color: var(--color-gray-faint);
  border-radius: 1rem;
  padding: 0.25rem;
  font-size: 1rem;
  max-width: 300px;
  min-width: 128px;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-left: 1.25rem;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .news-item__category {
    font-size: 3.3854166667vw;
  }
}

.news-item__category:hover {
  opacity: 1;
  background-color: var(--color-primary);
  color: var(--color-white);
}

.news-item__link {
  font-size: 1rem;
  margin-left: 1.25rem;
  color: var(--color-text);
  line-height: 1.6;
  letter-spacing: 0.03em;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 768px) {
  .news-item__link {
    font-size: 3.3854166667vw;
  }
}
@media screen and (max-width: 1024px) {
  .news-item__link {
    margin-left: 0px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .news-item__link {
    padding-top: 0;
  }
}

.news-item__link:hover {
  opacity: 1;
  color: var(--color-primary);
}

.news__date {
  font-size: 1rem;
  color: var(--color-secondary);
  letter-spacing: 0.05em;
  line-height: 1.8;
  font-weight: 700;
  width: 6.25rem;
  flex-shrink: 0;
}

.news__text {
  font-size: 1rem;
  color: var(--color-secondary);
  line-height: 1.5;
}

.news__content {
  margin-top: 0;
}

.news--category .news__content {
  margin-top: 3.75rem;
}

/****************************************/
/****************************************/
.faq__items {
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .faq__items {
    margin-top: 1.25rem;
  }
}

.faq__item {
  width: 100%;
}

.faq__item:not(:first-child) {
  margin-top: 0.625rem;
}

.faq-item__title {
  -moz-appearance: none;
       appearance: none; /* ← デフォルトスタイルを無効化 */
  -webkit-appearance: none; /* Safari対応 */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  background-color: var(--color-light-blue);
  cursor: pointer;
  padding: 1.40625rem 1.25rem 1.40625rem 3.875rem;
  border-radius: 0.625rem;
}
@media screen and (max-width: 768px) {
  .faq-item__title {
    align-items: baseline;
    padding: 0.9375rem 1.25rem 0.625rem clamp(2.188rem, 1.071rem + 5.58vw, 3.75rem);
  }
}

.faq-item__title::before {
  content: "Q.";
  color: var(--color-primary);
  top: 1.125rem;
}
@media screen and (max-width: 768px) {
  .faq-item__title::before {
    top: 0.375rem;
  }
}

.faq-item__title::before,
.faq-item__content::before {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 500;
  position: absolute;
  left: 1.875rem;
}
@media screen and (max-width: 768px) {
  .faq-item__title::before,
.faq-item__content::before {
    font-size: 4.4270833333vw;
  }
}
@media screen and (max-width: 768px) {
  .faq-item__title::before,
.faq-item__content::before {
    left: 0.9375rem;
  }
}

.faq-item__title-text {
  text-align: justify;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .faq-item__title-text {
    font-size: 3.6458333333vw;
  }
}

.faq-item__toggle-icon {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 1.5625rem;
  flex-shrink: 0;
}

/* ＋ を擬似要素2本で作る */
.faq-item__toggle-icon::before,
.faq-item__toggle-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  border-radius: 1px;
  transform-origin: center;
  transition: transform 0.25s ease;
}

.faq-item__toggle-icon::before {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item__toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item__title.is-open .faq-item__toggle-icon::before {
  transform: translate(-50%, -50%) rotate(180deg);
}

.faq-item__title.is-open .faq-item__toggle-icon::after {
  display: none;
}

.faq-item__content {
  display: none;
  position: relative;
  width: 100%;
  background-color: var(--color-white);
  padding: 1.875rem 1.5625rem 1.25rem 3.8125rem;
}
.faq-item__content.faq-item__content--single {
  display: block;
}
@media screen and (max-width: 768px) {
  .faq-item__content {
    padding: 0.9375rem 1.25rem 0.9375rem clamp(2.188rem, 1.071rem + 5.58vw, 3.75rem);
  }
}

.faq-item__content::before {
  content: "A.";
  color: var(--color-blue-sky);
  top: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .faq-item__content::before {
    top: 0.8125rem;
  }
}

.faq-item__content-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .faq-item__content-text {
    font-size: 3.3854166667vw;
  }
}

.faq {
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 768px) {
  .faq {
    padding-bottom: 3.75rem;
  }
}

.faq__title {
  font-family: var(--font-noto-serif-jp);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.03em;
  padding-bottom: 0.3125rem;
  border-bottom: 1px solid var(--color-gray-blue);
}
@media screen and (max-width: 768px) {
  .faq__title {
    font-size: 4.4270833333vw;
  }
}

.faq__content {
  scroll-margin-top: 5rem;
}

.faq__content:first-of-type {
  margin-top: 5rem;
}

.faq__content + .faq__content {
  margin-top: 3.75rem;
}

.faq__inner {
  max-width: 1000px;
  width: 100%;
  margin-inline: auto;
  padding: 0 1.25rem;
}

.faq__toc {
  background: linear-gradient(117.27deg, #E7F5FF 10.71%, #C3E4FF 64.38%);
  padding: 2.8125rem 0;
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .faq__toc {
    margin-top: 3.75rem;
  }
}
@media screen and (max-width: 430px) {
  .faq__toc {
    margin-top: 2.5rem;
  }
}

.faq__toc-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.faq__toc-button {
  max-width: 252px;
}
@media screen and (max-width: 430px) {
  .faq__toc-button {
    max-width: 85%;
  }
}

.faq__answer-content {
  background-color: var(--color-blue-whisper);
  padding: 0.9375rem;
  border-radius: 0.9375rem;
  margin-top: 1.25rem;
}

.faq__answer-box-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 1.25rem;
}

.faq__answer-box-item {
  background: var(--color-white);
  border-radius: 0.9375rem;
  padding: 1.25rem;
}
@media screen and (max-width: 430px) {
  .faq__answer-box-item {
    padding: 0.625rem;
  }
}

.faq__answer-box-title {
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 0.625rem;
  padding-left: 1.375rem;
  text-indent: -0.8125rem;
}

.faq__answer-box-link {
  color: var(--color-secondary);
  text-decoration: underline;
}

.faq__answer-box-detail-list {
  list-style: disc;
  padding-left: 1.5em;
}

.faq__answer-box-detail-item:not(:first-child) {
  margin-top: 0.25rem;
}

/****************************************/
/****************************************/
.contact {
  padding: 3.75rem 0 6.25rem;
}
@media screen and (max-width: 430px) {
  .contact {
    padding: 2.5rem 0 3.75rem;
  }
}

.contact__inner {
  max-width: 1000px;
  width: 100%;
  padding: 0 1.25rem;
  margin: 0 auto;
}

.contact__text {
  color: var(--color-text);
  font-size: 1.125rem;
  padding-left: 1.25rem;
  border-left: 5px solid var(--color-primary);
}
@media screen and (max-width: 768px) {
  .contact__text {
    font-size: 3.6458333333vw;
  }
}

.contact__box {
  background-color: var(--color-light-blue);
  padding: 4.0625rem;
  border-radius: 0.625rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 1024px) {
  .contact__box {
    padding: 3.125rem 4.8828125%;
  }
}
@media screen and (max-width: 768px) {
  .contact__box {
    padding: 2.5rem 1.25rem 3.75rem;
  }
}

.contact__mail-wrap {
  margin-top: 2.5rem;
}

.contact__link {
  color: var(--color-secondary);
  text-decoration: underline;
}

.form__list {
  margin-top: 3.75rem;
}
@media screen and (max-width: 430px) {
  .form__list {
    margin-top: 2.5rem;
  }
}

.form__field {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .form__field {
    flex-direction: column;
  }
}

.form__label {
  min-width: 240px;
}
@media screen and (max-width: 768px) {
  .form__label {
    min-width: unset;
  }
}

.form__field + .form__field {
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .form__field + .form__field {
    margin-top: 1.25rem;
  }
}

.form__data {
  flex-grow: 1;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .form__data {
    margin-top: 0.625rem;
  }
}

.form__acceptance {
  margin-top: 2.25rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .form__acceptance {
    margin-top: 1.875rem;
  }
}

.form__input::-moz-placeholder, .form__textarea::-moz-placeholder {
  color: #999999;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: #999999;
}

.form__textarea {
  height: 15.625rem;
  resize: none;
}

.form__label {
  font-size: 1.125rem;
  line-height: 1.8;
  font-weight: 600;
  color: var(--color-text);
}
.form__label .require {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 2;
  margin-left: 0.75rem;
  color: var(--color-white);
  background-color: var(--color-secondary);
  padding: 0.0625rem 0.3125rem;
}
@media screen and (max-width: 430px) {
  .form__label {
    font-size: 1rem;
  }
}

.form__label label {
  display: flex;
  align-items: center;
}

.form__input,
.form__select,
.form__textarea,
.form__acceptance-text {
  font-size: 1.125rem;
  width: 100%;
  padding: 0.625rem 0.9375rem;
  border: 1px solid var(--color-gray-cool);
  background-color: var(--color-white);
  border-radius: 0.25rem;
}
@media screen and (max-width: 430px) {
  .form__input,
.form__select,
.form__textarea,
.form__acceptance-text {
    padding: 0.5rem 0.9375rem;
    font-size: 1rem;
  }
}

.form__data-select {
  position: relative;
}

.form__data-select::after {
  position: absolute;
  top: 60%;
  right: 15px;
  width: 0;
  height: 0;
  margin-top: -3px;
  border-width: 6px 6px 0 6px;
  border-style: solid;
  border-color: var(--color-primary) transparent transparent transparent;
  content: "";
  pointer-events: none;
}

.form__data-radio {
  display: flex;
  flex-wrap: wrap;
}

.form__privacy-text {
  font-size: 1rem;
  font-weight: 500;
  margin-left: 0.9375rem;
  color: var(--color-primary);
  line-height: 1.8;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 430px) {
  .form__privacy-text {
    font-size: 0.875rem;
    margin-left: 0.5rem;
  }
}

.form__privacy-note {
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 0.9375rem;
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-form-control-wrap[data-name=privacy] .wpcf7-list-item-label {
  position: relative;
  display: inline-block;
  padding-left: 1.5rem;
}

.wpcf7-form-control-wrap[data-name=privacy] .wpcf7-list-item-label::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  content: "";
  border: 1px solid var(--color-primary);
}

.wpcf7-form-control-wrap[data-name=privacy] .wpcf7-list-item-label::after {
  position: absolute;
  content: "";
  top: 9px;
  left: 3px;
  width: 0.9375rem;
  height: 0.5rem;
  transform: rotate(-45deg);
  opacity: 0;
  border-bottom: 2px solid var(--color-primary);
  border-left: 2px solid var(--color-primary);
}

.form__checkbox:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

.form__privacy-link {
  display: inline-block;
  color: var(--deep-lavender);
  font-weight: 500;
  border-bottom: 1px solid var(--color-primary);
  padding-bottom: 2px;
}

.form__submit-button {
  padding: 1rem 1.375rem;
  max-width: 21.875rem;
  margin: 3.125rem auto 0;
  background: linear-gradient(94.94deg, #1E6EB7 0%, #105696 100%);
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.1em;
  border-radius: 2.4375rem;
  color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .form__submit-button {
    font-size: 3.6458333333vw;
  }
}
@media screen and (max-width: 768px) {
  .form__submit-button {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 430px) {
  .form__submit-button {
    font-size: 1.125rem;
    max-width: 100%;
  }
}

.form__submit-button:hover {
  opacity: 0.7;
}

.form__submit-button input {
  color: var(--color-white);
}

.form__note {
  font-size: 0.875rem;
  color: var(--color-black);
  line-height: 1.8;
  letter-spacing: 0.06em;
  margin-top: 1.25rem;
  text-align: center;
}

.wpcf7 .wpcf7-submit:disabled {
  color: var(--color-white);
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-form.sent .wpcf7-response-output {
  display: none;
}

/****************************************/
/****************************************/
.site-content h2,
.site-content h3 {
  margin-bottom: 1.875rem;
}

.site-content p,
.site-content h4,
.site-content h5,
.site-content h6,
.site-content img,
.site-content ul,
.site-content ol,
.site-content table {
  margin-bottom: 0.9375rem;
}

.site-content p {
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 400;
  color: var(--color-text);
}
@media screen and (max-width: 768px) {
  .site-content p {
    font-size: 3.3854166667vw;
  }
}

.site-content h2 {
  font-family: var(--font-noto-serif-jp);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: var(--color-primary);
}
@media screen and (max-width: 768px) {
  .site-content h2 {
    font-size: 5.46875vw;
  }
}

.site-content h3 {
  position: relative;
  font-family: var(--font-noto-serif-jp);
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  padding-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .site-content h3 {
    font-size: 4.6875vw;
  }
}

.site-content h3::after {
  position: absolute;
  content: "";
  width: 3.5rem;
  height: 0.125rem;
  bottom: 0;
  left: 0;
  background-color: var(--color-secondary);
}

.site-content h4 {
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 1px;
  margin-bottom: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .site-content h4 {
    font-size: 4.4270833333vw;
  }
}

.site-content h5 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .site-content h5 {
    font-size: 3.90625vw;
  }
}

.site-content h6 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .site-content h6 {
    font-size: 3.6458333333vw;
  }
}

.site-content ul {
  list-style: none;
  padding-left: 2.25rem;
}
@media screen and (max-width: 768px) {
  .site-content ul {
    padding-left: 0.9375rem;
  }
}

.site-content ul li {
  font-size: 1rem;
  display: flex;
  align-items: baseline;
}
@media screen and (max-width: 768px) {
  .site-content ul li {
    font-size: 3.3854166667vw;
  }
}
@media screen and (max-width: 768px) {
  .site-content ul li {
    align-items: baseline;
  }
}

.site-content ul li::before {
  content: "⚫︎";
  color: var(--color-primary);
  font-size: 0.5em;
  margin-right: 1em;
}

.site-content ul li:not(:first-child) {
  margin-top: 0.625rem;
}

.site-content ol {
  counter-reset: number;
  list-style-type: none !important;
  padding-left: 1.25rem;
}

.site-content ol li {
  position: relative;
  line-height: 1.6;
  padding-left: 2.1875rem;
}

.site-content ol li:not(:first-child) {
  margin-top: 0.625rem;
}

.site-content ol li:before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: 500;
  font-size: 1rem;
  left: 0;
  width: 1.5625rem;
  height: 1.5625rem;
  line-height: 25px;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.site-content table table {
  border: none;
}

.site-content table thead {
  border-bottom: 1px solid var(--color-white);
}

.site-content table th {
  background: var(--color-primary);
  color: var(--color-white);
}

.site-content table td {
  border: 1px solid var(--color-white);
  background-color: var(--color-light-blue);
}

.site-content a {
  color: var(--color-primary);
  text-decoration: underline;
  word-break: break-all;
}

@media screen and (max-width: 768px) {
  .site-content figure {
    text-align: center;
  }
}

.site-content figure.wp-block-image img {
  width: auto !important;
  max-width: 100%;
  height: auto;
  display: inline-block;
}

/* YouTube iframe対応（レスポンシブ） */
.site-content iframe {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9; /* CSSでアスペクト比を維持 */
  margin-bottom: 0.9375rem;
}

/* 旧ブラウザ対応が必要な場合はwrapで対応 */
.site-content .video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9のアスペクト比 */
  margin-bottom: 0.9375rem;
}

.site-content .video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-title {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.25rem;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0 0.9375rem;
  }
}

.c-text {
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .c-text {
    font-size: 3.3854166667vw;
  }
}

.c-section-title {
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-section-title {
    text-align: center;
  }
}
.c-section-title.c-section-title--center {
  text-align: center;
}

.c-section-title__en {
  font-family: var(--font-montserrat);
  font-size: 4rem;
  font-weight: 700;
  display: block;
  line-height: 1.4;
  color: var(--color-primary);
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .c-section-title__en {
    font-size: 9.6354166667vw;
  }
}
@media screen and (max-width: 1024px) {
  .c-section-title__en {
    font-size: 3rem;
  }
}
@media screen and (max-width: 1024px) and (max-width: 768px) {
  .c-section-title__en {
    font-size: 7.5520833333vw;
  }
}

.c-section-title__ja {
  position: relative;
  font-family: var(--font-noto-serif-jp);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0.03em;
  color: var(--color-text);
  padding-left: 1.25rem;
}
@media screen and (max-width: 768px) {
  .c-section-title__ja {
    font-size: 3.90625vw;
  }
}
.c-section-title__ja::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  transform: translateY(-50%);
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #52A4EE 0%, #2580D3 100%);
}
@media screen and (max-width: 768px) {
  .c-section-title__ja::after {
    bottom: 0.3125rem;
  }
}
@media screen and (max-width: 430px) {
  .c-section-title__ja::after {
    width: 0.5rem;
    height: 0.5rem;
    bottom: 0.125rem;
    left: 0.3125rem;
  }
}

.u-secondary-color {
  color: var(--color-secondary);
}

.u-primary-color {
  color: var(--color-primary);
}

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

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

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

.page-content {
  padding: 5.4375rem 0;
}
@media screen and (max-width: 768px) {
  .page-content {
    padding: 2.5rem 0 3.75rem;
  }
}

.page-content__inner {
  width: 100%;
  max-width: 1200px;
  padding: 0 3.125rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .page-content__inner {
    padding: 0 1.5625rem;
  }
}

.post {
  padding: 3.75rem 0;
}
@media screen and (max-width: 768px) {
  .post {
    padding: 2.5rem 0 3.75rem;
  }
}

.post__inner {
  width: 100%;
  max-width: 1000px;
  padding: 0 3.125rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .post__inner {
    padding: 0 1.5625rem;
  }
}

.post__body {
  padding-top: 3.75rem;
}

.post__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.9375rem;
  flex-wrap: wrap;
}

.post__category {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  background-color: var(--color-gray-faint);
  border-radius: 1rem;
  padding: 0.25rem;
  font-size: 1rem;
  max-width: 300px;
  min-width: 128px;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-left: 1.25rem;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .post__category {
    font-size: 3.3854166667vw;
  }
}

.post__category:hover {
  opacity: 1;
  background-color: var(--color-primary);
  color: var(--color-white);
}

.post__date {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-gray-blue2);
}
@media screen and (max-width: 768px) {
  .post__date {
    font-size: 3.3854166667vw;
  }
}

.post__title {
  position: relative;
  font-size: 2.375rem;
  font-weight: 700;
  color: var(--color-secondary);
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .post__title {
    font-size: 6.25vw;
  }
}

.post__title::after {
  position: absolute;
  content: "";
  width: 100%;
  background: linear-gradient(90deg, #105797 0%, #6BB0F0 100%);
  height: 1px;
  left: 0;
  bottom: -5px;
}

.single-nav__items {
  margin-top: 90px;
  max-width: 600px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(calc(33.3333333333% - 1.25rem), 1fr));
  -moz-column-gap: 20px;
  column-gap: 20px;
  justify-items: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .single-nav__items {
    margin-top: 3.4375rem;
    grid-template-columns: 1fr;
    row-gap: 1.6875rem;
  }
}

.single-nav__item {
  width: 100%;
}

.page-nav-button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  background-color: var(--color-white);
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  padding: 0.625rem 1.25rem;
  border-radius: 2.1875rem;
  transition: background-color 0.3s ease;
}

.page-nav-button:hover {
  border: 1px solid transparent;
  background-color: var(--color-primary);
  color: var(--color-white);
  opacity: 1;
}

.news__category-title-wrap {
  margin-top: 2.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.news__category-title-en {
  font-family: var(--font-fraunces);
  font-size: 1.875rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: var(--color-primary);
}
@media screen and (max-width: 768px) {
  .news__category-title-en {
    font-size: clamp(1.75rem, 1.607rem + 0.82vw, 2rem);
  }
}

.news__category-title {
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--color-secondary);
  margin-top: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .news__category-title {
    font-size: clamp(1rem, 0.607rem + 0.82vw, 1.5rem);
  }
}

.error-not-found {
  padding: 5rem 0 7.5rem;
}

.error-not-found__text {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
}

.map {
  width: 100%;
  height: 28.75rem;
  position: relative;
  overflow: hidden;
}
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.mv {
  margin-top: 7.5rem;
  height: 12.5rem;
}
@media screen and (max-width: 768px) {
  .mv {
    margin-top: 5rem;
    height: 7.5rem;
  }
}

.mv__inner {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin-inline: auto;
  padding: 0 1.25rem;
  height: inherit;
}

.mv__content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: inherit;
}

.mv__heading {
  position: relative;
  padding-bottom: 0.9375rem;
}

.mv__heading::after {
  position: absolute;
  content: "";
  width: 15.5rem;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: var(--color-white);
}
@media screen and (max-width: 430px) {
  .mv__heading::after {
    width: 57%;
  }
}

.mv__title-en {
  color: var(--color-primary);
  font-family: var(--font-montserrat);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .mv__title-en {
    font-size: 9.6354166667vw;
  }
}
@media screen and (max-width: 768px) {
  .mv__title-en {
    font-size: 3rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .mv__title-en {
    font-size: 7.5520833333vw;
  }
}

.mv__title-ja {
  color: var(--color-text);
  font-family: var(--font-noto-serif-jp);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.03em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .mv__title-ja {
    font-size: 4.4270833333vw;
  }
}
@media screen and (max-width: 768px) {
  .mv__title-ja {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .mv__title-ja {
    font-size: 3.6458333333vw;
  }
}

/****************************************/
/****************************************/
.cta {
  padding: 5rem 1.25rem;
  background-color: var(--color-blue-dark);
  border-top-left-radius: 1.875rem;
  border-top-right-radius: 1.875rem;
}

.cta__inner {
  max-width: 1043px;
  width: 100%;
  margin: 0 auto;
  padding: 3.75rem 6.25rem;
  background-color: var(--color-white);
}
@media screen and (max-width: 1024px) {
  .cta__inner {
    padding: 3.125rem clamp(1.25rem, -11.944rem + 27.45vw, 5.625rem);
  }
}

.cta__title {
  position: relative;
  text-align: center;
}

.cta__title-en {
  font-family: var(--font-montserrat);
  font-size: 4rem;
  font-weight: 700;
  display: block;
  line-height: 1.4;
  color: var(--color-blue-mist);
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .cta__title-en {
    font-size: 9.6354166667vw;
  }
}

.cta__title-ja {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-noto-serif-jp);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0.03em;
  color: var(--color-text);
  margin-top: -3.125rem;
}
@media screen and (max-width: 768px) {
  .cta__title-ja {
    font-size: 3.90625vw;
  }
}

.cta__box {
  background-color: var(--color-light-blue);
  padding: 1.875rem 3.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin: 2.8125rem auto 0;
  border-radius: 0.625rem;
}
@media screen and (max-width: 768px) {
  .cta__box {
    margin-top: 1.875rem;
    gap: 0.625rem;
    flex-direction: column;
  }
}
@media screen and (max-width: 430px) {
  .cta__box {
    padding: 1.25rem 1.875rem;
  }
}

.cta__box-body {
  border-right: 1px solid var(--color-gray-blue);
  padding-right: 2.8125rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .cta__box-body {
    padding-right: 0;
    border-right: 0;
    padding-bottom: 0.625rem;
    border-bottom: 1px solid var(--color-gray-blue);
  }
}

.cta__label {
  font-family: var(--font-noto-serif-jp);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .cta__label {
    font-size: 3.6458333333vw;
  }
}

.cta__time {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .cta__time {
    font-size: 3.125vw;
  }
}

.cta__tel-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--color-secondary);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.03em;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .cta__tel-link {
    font-size: 5.9895833333vw;
  }
}

.cta__tel-icon {
  width: 1.5rem;
  width: 1.5rem;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1/1;
}

.cta__button-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.25rem;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .cta__button-wrap {
    flex-direction: column;
  }
}

.cta__button {
  max-width: 50%;
}
@media screen and (max-width: 768px) {
  .cta__button {
    max-width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .cta__button-text {
    font-size: 1.7578125vw;
  }
}
@media screen and (max-width: 768px) {
  .cta__button-text {
    font-size: 3.6458333333vw;
  }
}

@media screen and (max-width: 1024px) {
  .cta__button-arrow {
    margin-left: 0.9375rem;
  }
}

.blue-underline-wrap {
  text-align: center;
}

.blue-underline {
  display: inline;
  color: var(--color-secondary);
  padding: 0 0.1875rem 0.3125rem;
  /* 背景で下線を描画 */
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-repeat: repeat-x;
  background-size: 100% 1px; /* 線の太さ */
  background-position: 0 100%; /* ボックスの一番下 */
  /* 改行しても各行に背景を複製 */
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.br--large {
  display: block;
  height: 0.25rem;
  content: "";
}

@media screen and (max-width: 768px) {
  .br--large-sp {
    display: block;
    height: 0.25rem;
    content: "";
  }
}