@charset "UTF-8";
/* ===============================================
# pxをremに変換
$px 文字サイズ
$basepx 基準となるピクセル数
=============================================== */
/* ===============================================
# line-heightを計算する
$pixels 文字サイズ
$height figma上のline-height
=============================================== */
:root {
  --color-pink:#EAA5A5;
  --color-orange:#EFAF65;
  --color-turquoise:#2FB5BE;
  --color-aquablue:#6BACBF;
  --color-light-gray: #F4F2EF;
  --color-dark-gray: #7B8B96;
  --color-dark-gray2: #7B8A96;
  --color-dark-gray3:#7B8996;
  --color-gray-warm: #F4F2EF;
  --color-primary: #2FB5BE;
  --color-secondary: #6BACBF;
  --color-text: #333333;
  --color-white: #fff;
  --color-black: #000;
}

html {
  font-size: 16px;
}

body {
  font-family: "Yu Gothic Pr6N", "Yu Gothic", "游ゴシック体", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  color: var(--color-black);
  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: 50%;
  transform: translateX(-50%);
  max-width: 1150px;
  width: 100%;
  z-index: 101;
  height: 70px;
  background-color: var(--color-white);
  margin-top: 1.875rem;
  border-radius: 0.625rem;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.160784);
}
@media screen and (max-width: 1200px) {
  .header {
    max-width: 95%;
  }
}
@media screen and (max-width: 768px) {
  .header {
    max-width: 100%;
    margin-top: 0;
    left: 0;
    transform: unset;
    border-radius: 0;
    box-shadow: unset;
  }
}

.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 0.9375rem;
  height: inherit;
  z-index: 102;
}
@media screen and (max-width: 1024px) {
  .header__inner {
    padding: 0 0.625rem;
  }
}

.header__title {
  display: flex;
  align-items: center;
  margin-right: auto;
  height: inherit;
}

.header__logo {
  width: 157px;
  aspect-ratio: 157/60;
}
@media screen and (max-width: 1024px) {
  .header__logo {
    width: 132px;
  }
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 120px;
  }
}

.header__nav {
  height: inherit;
}

.header__items {
  display: flex;
  align-items: center;
  height: inherit;
}

.header__hamburger-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.375rem;
  aspect-ratio: 1/1;
  border-radius: 0.5rem;
  border: 1px solid var(--color-turquoise);
  margin-left: 0.9375rem;
}
@media screen and (max-width: 1024px) {
  .header__hamburger-wrap {
    margin-left: 0.625rem;
  }
}
@media screen and (max-width: 768px) {
  .header__hamburger-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0;
  }
}

.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.125rem;
}

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

.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(-7px) rotate(-45deg);
}

.drawer {
  position: fixed;
  left: 0;
  top: 60px;
  width: 100%;
  max-width: 1440px;
  width: 100%;
  height: auto;
  max-height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-color: var(--color-white);
  transition: transform 0.3s ease;
  padding: 3.75rem 0.9375rem;
  z-index: 100;
  border-bottom-left-radius: 0.625rem;
  border-bottom-right-radius: 0.625rem;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.160784);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (max-width: 768px) {
  .drawer {
    height: 100vh;
    padding: 2.5rem 0.9375rem 3.75rem;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: unset;
  }
}

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

.drawer__items {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  gap: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .drawer__items {
    align-items: center;
    flex-direction: column;
  }
}

.drawer__link {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-black);
  text-decoration: none;
  padding: 0.3125rem 0;
}

.drawer__item a:hover {
  opacity: 0.7;
}

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

.drawer__items-bottom {
  margin-top: 1.875rem;
}

@media screen and (max-width: 768px) {
  body.is-drawer-active {
    overflow: hidden;
  }
}

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

.breadcrumb__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: 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: 375px) {
  .breadcrumb__inner {
    font-size: 0.625rem;
  }
}

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

.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;
  max-width: 286px;
  width: 100%;
  background-color: var(--color-turquoise);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  color: var(--color-white);
  cursor: pointer;
  text-decoration: none;
  padding: 0.9375rem 0.9375rem;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .c-button {
    font-size: 1.25rem;
    max-width: 90%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 375px) {
  .c-button {
    font-size: 1.125rem;
    max-width: 100%;
  }
}

.c-button::after {
  position: absolute;
  content: "";
  background-image: url(../images/button-arrow-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  width: 6px;
  height: 14px;
  top: 50%;
  right: 1.3125rem;
  transform: translateY(-50%);
}

.action-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0.625rem;
}
@media screen and (max-width: 768px) {
  .action-menu {
    flex-direction: column;
    gap: 1.25rem;
  }
}

.action-menu__link {
  display: inline-block;
  min-width: 163px;
  padding: 0.9375rem 1.25rem;
  border-radius: 0.5rem;
  text-decoration: none;
  color: var(--color-white);
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  transition: opacity 0.3s;
}
@media screen and (max-width: 1024px) {
  .action-menu__link {
    min-width: 140px;
  }
}
@media screen and (max-width: 768px) {
  .action-menu__link {
    width: 100%;
  }
}

.action-menu__link:hover {
  opacity: 0.8;
}

.action-menu__link--student {
  background-color: var(--color-pink);
}

.action-menu__link--volunteer {
  background-color: var(--color-orange);
}

.action-menu__link--contact {
  background-color: var(--color-turquoise);
}

.footer {
  background-color: var(--color-light-gray);
  padding: 2.5rem 0 0;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 1.875rem 0 0;
  }
}

.footer__inner {
  max-width: 1100px;
  padding: 0 1.5625rem 2.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    padding: 0 0.9375rem 1.875rem;
  }
}

.footer__logo {
  display: flex;
  justify-content: center;
}

.footer__logo-img {
  width: 157px;
  aspect-ratio: 157/60;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer__logo-img {
    width: 132px;
  }
}

.footer__nav-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5625rem;
  margin-top: 1.625rem;
}
@media screen and (max-width: 768px) {
  .footer__nav-list {
    flex-direction: column;
    align-items: center;
  }
}

.footer__item {
  position: relative;
}

.footer__item-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-black);
}

.footer__nav-bottom {
  margin-top: 2.625rem;
}

.footer__nav-bottom-list {
  justify-content: center;
  margin-top: 1.25rem;
}

.footer__copyright {
  display: block;
  width: 100%;
  padding: 0.625rem 0;
  text-align: center;
  background-color: var(--color-white);
  color: #777777;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
}

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

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

.page-top.active {
  bottom: 3.75rem;
  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-info {
  padding: 10.6875rem 0 18.3125rem;
  background-color: var(--color-light-gray);
}
@media screen and (max-width: 768px) {
  .top-info {
    padding: 5.3125rem 0 9.0625rem;
  }
}
@media screen and (max-width: 375px) {
  .top-info {
    padding: 3.125rem 0 5rem;
  }
}

.top-info__category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .top-info__category-list {
    justify-content: center;
  }
}

.top-info__category-button {
  position: relative;
  min-width: 185px;
  width: 100%;
  padding: 0.625rem 0.9375rem;
  color: var(--color-white);
  border: none;
  border-radius: 1.5625rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.3s;
  border: 1px solid var(--active-color);
}
.top-info__category-button.top-info__category-button--all {
  background-color: var(--color-white);
  border: 1px solid var(--color-turquoise);
  color: var(--color-turquoise);
}

.top-info__category-button:hover {
  opacity: 0.8;
}

.top-info__category-button.is-active:before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top: 8px solid var(--active-color);
  z-index: 2;
}

.top-info__category-button.top-info__category-button--all.is-active:before {
  border-top: 8px solid var(--color-white);
}

.top-info__category-button.is-active:after {
  content: "";
  position: absolute;
  bottom: -17px;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top: 8px solid var(--active-color);
  z-index: 1;
}

.top-info__content {
  margin-top: 7.0625rem;
  background-color: var(--color-white);
  padding: 3.125rem 2.5rem;
  border-radius: 0.625rem;
}
@media screen and (max-width: 768px) {
  .top-info__content {
    margin-top: 3.75rem;
    padding: 2.5rem 1.25rem;
  }
}

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

.top-info__list.loading a {
  pointer-events: none;
  opacity: 0.5;
  cursor: default;
}

.top-info__btn-wrap {
  margin-top: 3.125rem;
  margin-inline: auto;
  text-align: center;
}

.top-info__btn {
  margin-inline: auto;
}

/****************************************/
/****************************************/
.top-about {
  background-color: var(--color-white);
  padding: 8.75rem 0 13.75rem;
}
@media screen and (max-width: 768px) {
  .top-about {
    padding: 4.375rem 0 6.875rem;
  }
}

.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 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.18;
  text-align: center;
  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 {
    font-size: 0.875rem;
    margin-top: 2rem;
  }
}
@media screen and (max-width: 375px) {
  .top-about__text {
    margin-top: 1.5625rem;
  }
}

.top-about__cards {
  display: flex;
  gap: 1.875rem;
  justify-content: center;
  margin-top: 5.375rem;
}
@media screen and (max-width: 768px) {
  .top-about__cards {
    flex-direction: column;
    gap: 2.5rem;
  }
}

.top-about__card {
  padding: 2.0625rem 3.25rem;
  background-color: var(--color-text);
  border-radius: 0.625rem;
}
@media screen and (max-width: 1024px) {
  .top-about__card {
    padding: 1.875rem clamp(1.25rem, -4.781rem + 12.55vw, 3.25rem);
  }
}
@media screen and (max-width: 768px) {
  .top-about__card {
    padding: 1.25rem 1.875rem;
  }
}
.top-about__card.top-about__card--student {
  background-color: var(--color-pink);
}
.top-about__card.top-about__card--volunteer {
  background-color: var(--color-orange);
}

.top-about-card__title {
  text-align: center;
  color: var(--color-white);
  font-weight: 700;
  line-height: 1.3;
}

.top-about-card__title-en {
  font-size: 2.1875rem;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .top-about-card__title-en {
    font-size: 1.75rem;
  }
}

.top-about-card__title-ja {
  font-size: 1rem;
  margin-top: 0.375rem;
}
@media screen and (max-width: 768px) {
  .top-about-card__title-ja {
    font-size: 0.875rem;
  }
}

.top-about-card__img {
  width: 100%;
  margin-top: 1.6875rem;
}

.top-about-card__text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--color-white);
  margin-top: 1.5625rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-about-card__text {
    font-size: 0.875rem;
  }
}

.top-about-card__btn-wrap {
  margin-top: 1.25rem;
}

.top-about-card__btn {
  margin-inline: auto;
  background-color: var(--color-white);
}
.top-about-card__btn.top-about-card__btn--student {
  color: var(--color-pink);
}
.top-about-card__btn.top-about-card__btn--student::after {
  background-image: url(../images/button-arrow-pink.svg);
}
.top-about-card__btn.top-about-card__btn--volunteer {
  color: var(--color-orange);
}
.top-about-card__btn.top-about-card__btn--volunteer::after {
  background-image: url(../images/button-arrow-orange.svg);
}

/****************************************/
/****************************************/
.top-faq {
  background-color: var(--color-light-gray);
  padding: 8.4375rem 0 12.3125rem;
}
@media screen and (max-width: 768px) {
  .top-faq {
    padding: 4.6875rem 0 6.25rem;
  }
}

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

.top-faq__item {
  width: 100%;
  background-color: var(--color-white);
  padding: 1.875rem 1.25rem 2.5rem;
  border-radius: 0.625rem;
}
@media screen and (max-width: 768px) {
  .top-faq__item {
    padding: 1.25rem 0.9375rem 1.875rem;
  }
}

.top-faq__item:not(:first-child) {
  margin-top: 1.25rem;
}
@media screen and (max-width: 375px) {
  .top-faq__item:not(:first-child) {
    margin-top: 0.625rem;
  }
}

.top-faq-item__title {
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  position: relative;
  cursor: pointer;
  padding-left: 2.5rem;
}

.top-faq-item__title-text,
.top-faq-item__content-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .top-faq-item__title-text,
.top-faq-item__content-text {
    font-size: 0.875rem;
  }
}

.top-faq-item__content {
  position: relative;
  width: 100%;
  padding-left: 2.5rem;
  margin-top: 1.0625rem;
}

.top-faq-item__title::before,
.top-faq-item__content::before {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-turquoise);
  font-size: 1.125rem;
  font-weight: 700;
  position: absolute;
  left: 10px;
}

.top-faq-item__title::before {
  content: "Q.";
}

.top-faq-item__content::before {
  content: "A.";
}

/****************************************/
/****************************************/
.top-company {
  padding: 6.875rem 0 7.5rem;
  background: var(--color-white);
}
@media screen and (max-width: 768px) {
  .top-company {
    padding: 5rem 0 5.625rem;
  }
}

.top-company__overview {
  margin-top: 5.6875rem;
}
.top-company__overview .top-company__media .top-company__body .top-company__subtitle {
  margin-top: 2.125rem;
}
.top-company__overview .top-company__media .top-company__img {
  width: 59.25%;
  aspect-ratio: 711/510;
}
@media screen and (max-width: 768px) {
  .top-company__overview .top-company__media .top-company__img {
    width: 100%;
  }
}

.top-company__sns-items {
  display: flex;
  align-items: center;
  gap: 1.3125rem;
  margin-top: 1.3125rem;
}

.top-company__btn-wrap {
  margin-top: 2.1875rem;
}

.top-company__logo {
  width: 220px;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 44/19;
}

.top-company__sns-item:first-child .top-company__sns-item-img {
  width: 41px;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1/1;
}

.top-company__sns-item:nth-child(2) .top-company__sns-item-img {
  width: 34px;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 34/35;
}

.top-company__greetings {
  margin-top: 7.5rem;
}
@media screen and (max-width: 768px) {
  .top-company__greetings {
    margin-top: 3.75rem;
  }
}
@media screen and (max-width: 768px) {
  .top-company__greetings .top-company__media .top-company__body .top-company__text {
    order: 1;
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .top-company__greetings .top-company__media .top-company__body {
    display: contents;
  }
}
@media screen and (max-width: 768px) {
  .top-company__greetings .top-company__media {
    gap: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .top-company__greetings .top-company__img {
    order: 1;
  }
}

.top-company__media {
  display: flex;
  align-items: center;
  gap: 3.9375rem;
}
@media screen and (max-width: 768px) {
  .top-company__media {
    flex-direction: column;
  }
}

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

.top-company__body {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .top-company__body {
    width: 100%;
  }
}

.top-company__subtitle {
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-turquoise);
}
@media screen and (max-width: 768px) {
  .top-company__subtitle {
    font-size: 1.375rem;
  }
}

.top-company__text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.85;
  margin-top: 0.75rem;
}
@media screen and (max-width: 768px) {
  .top-company__text {
    font-size: 0.875rem;
  }
}
.top-company__text.top-company__text--director-name {
  margin-top: 1.25rem;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .top-company__text.top-company__text--director-name {
    margin-left: auto;
  }
}

/****************************************/
/****************************************/
.about-overview {
  padding: 7.4375rem 0 5.5rem;
}
@media screen and (max-width: 768px) {
  .about-overview {
    padding: 5rem 0 3.75rem;
  }
}

.about-overview__cards {
  display: flex;
  gap: 2.3125rem;
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .about-overview__cards {
    flex-direction: column;
    margin-top: 1.875rem;
  }
}

.about-overview__card {
  display: flex;
  flex: 0 1 calc((100% - min(1.6129032258vw, 37px) * 2) / 3);
  flex-direction: column;
  padding: 1.75rem 1.25rem 2.0625rem;
  background-color: var(--color-light-gray);
  border-radius: 0.625rem;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .about-overview__card {
    flex: 0 1 100%;
    padding: 1.25rem 0.9375rem 1.5625rem;
  }
}

.about-overview-card__img {
  width: 191px;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 375px) {
  .about-overview-card__img {
    width: 140px;
  }
}

.about-overview-card__title {
  font-size: 1.5625rem;
  font-weight: 700;
  color: var(--color-dark-gray);
  margin-top: 1.0625rem;
}
@media screen and (max-width: 768px) {
  .about-overview-card__title {
    font-size: 1.375rem;
  }
}

.about-overview-card__text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5625;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .about-overview-card__text {
    font-size: 0.875rem;
  }
}

/****************************************/
/****************************************/
.about-function {
  padding: 6.25rem 0 2.4375rem;
}
@media screen and (max-width: 768px) {
  .about-function {
    padding: 3.75rem 0 1.875rem;
  }
}

.about-function__text {
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.32;
  color: var(--color-dark-gray);
  margin-top: 2.375rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .about-function__text {
    font-size: 1.375rem;
    margin-top: 1.5625rem;
  }
}

.about-function__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 3.0625rem;
}

.about-function__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 768px;
  border: 1px solid #B1B1B1;
}

.about-function__table-heading {
  background-color: var(--color-gray-warm);
  color: var(--color-dark-gray3);
  text-align: center;
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.3;
  padding: 1rem;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .about-function__table-heading {
    font-size: 1.375rem;
  }
}

.about-function__table-heading:not(:first-child) {
  border-left: 1px solid #B1B1B1;
}

.about-function__table-cell {
  border-top: 1px solid #B1B1B1;
  padding: 1rem;
  vertical-align: middle;
  color: var(--color-dark-gray);
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .about-function__table-cell {
    font-size: 1.125rem;
  }
}

.about-function__table-cell:not(:first-child) {
  border-left: 1px solid #B1B1B1;
  padding-left: 2.5rem;
}
@media screen and (max-width: 768px) {
  .about-function__table-cell:not(:first-child) {
    padding-left: 1.25rem;
  }
}

.about-function__table-feature {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.about-function__table-icon {
  width: 54px;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1/1;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .about-function__table-icon {
    width: 30px;
  }
}

.about-function__table-text {
  display: inline-block;
  white-space: normal;
  word-break: break-word;
  flex: 1 1 auto;
}

.about-function__table-heading:nth-child(1),
.about-function__table-cell:nth-child(1) {
  width: 291px;
  min-width: 240px;
  white-space: nowrap;
}

.about-function__table-heading:nth-child(2),
.about-function__table-cell:nth-child(2) {
  width: 542px;
  min-width: 280px;
}

.about-function__table-heading:nth-child(3),
.about-function__table-cell:nth-child(3) {
  width: 369px;
  min-width: 248px;
}

/****************************************/
/****************************************/
.about-logo-meaning {
  padding: 0 0 4.625rem;
}

.about-logo-meaning__content {
  margin-top: 7.625rem;
  display: flex;
  align-items: center;
  gap: 4.25rem;
}
@media screen and (max-width: 768px) {
  .about-logo-meaning__content {
    flex-direction: column;
    gap: 3.125rem;
    margin-top: 3.75rem;
  }
}

.about-logo-meaning__mark {
  width: 188px;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 188/277;
  flex-shrink: 0;
}
@media screen and (max-width: 1200px) {
  .about-logo-meaning__mark {
    width: 15.6%;
  }
}
@media screen and (max-width: 768px) {
  .about-logo-meaning__mark {
    width: 70%;
  }
}

.about-logo-meaning__cards {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  background-color: var(--color-gray-warm);
  border-radius: 0.9375rem;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .about-logo-meaning__cards {
    width: 100%;
    flex-direction: column;
    padding: 3.75rem 0;
  }
}

.about-logo-meaning__cards::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-right: 36px solid var(--color-gray-warm);
  border-left: 0;
}
@media screen and (max-width: 768px) {
  .about-logo-meaning__cards::before {
    left: 50%;
    transform: translateX(-50%);
    top: -30px;
    border-style: solid;
    border-right: 18px solid transparent;
    border-left: 18px solid transparent;
    border-bottom: 36px solid var(--color-gray-warm);
    border-top: 0;
  }
}

.about-logo-meaning__card {
  display: flex;
  flex: 0 1 calc((100% - min(2.4193548387vw, 50px) * 2) / 3);
  flex-direction: column;
  padding: 1.75rem 1.25rem 2.0625rem;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .about-logo-meaning__card {
    flex: 0 1 100%;
    padding: 1.25rem 0.9375rem 1.5625rem;
  }
}

.about-logo-meaning-card__img {
  width: 191px;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 375px) {
  .about-logo-meaning-card__img {
    width: 140px;
  }
}

.about-logo-meaning-card__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-dark-gray);
  margin-top: 1.0625rem;
}
@media screen and (max-width: 768px) {
  .about-logo-meaning-card__title {
    font-size: 0.875rem;
  }
}

.about-logo-meaning-card__text {
  font-size: 1.125rem;
  font-weight: 700;
  background-color: var(--color-dark-gray);
  color: var(--color-white);
  line-height: 1.3;
  border-radius: 1.4375rem;
  padding: 0.5rem 0.625rem;
  max-width: 233px;
  width: 100%;
  margin-top: 0.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .about-logo-meaning-card__text {
    font-size: 1rem;
  }
}

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

.about-merit__cards {
  display: flex;
  gap: 1.25rem;
  margin-top: 3.375rem;
}
@media screen and (max-width: 768px) {
  .about-merit__cards {
    flex-direction: column;
    margin-top: 1.875rem;
  }
}

.about-merit__card {
  display: flex;
  flex: 0 1 calc((100% - min(0.8064516129vw, 20px) * 3) / 4);
  flex-direction: column;
  padding: 1.875rem 1.25rem 1.5625rem;
  background-color: var(--color-light-gray);
  border-radius: 0.625rem;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .about-merit__card {
    flex: 0 1 100%;
    padding: 1.25rem 0.9375rem 1.5625rem;
  }
}

.about-merit-card__img {
  width: 191px;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 375px) {
  .about-merit-card__img {
    width: 140px;
  }
}

.about-merit-card__title {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 1.125rem;
  color: var(--color-dark-gray);
}

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

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

.news__item {
  background-color: var(--color-light-gray);
  display: flex;
  align-items: center;
  padding: 0.5rem 1.875rem;
  border-radius: 1.875rem;
}
@media screen and (max-width: 768px) {
  .news__item {
    flex-direction: column;
    align-items: flex-start;
  }
}

.news__head-ja {
  margin-top: 1.125rem;
}

.news__item + .news__item {
  margin-top: 1.25rem;
}

.news-item__unit {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .news-item__unit {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 375px) {
  .news-item__unit {
    width: 100%;
  }
}

.news-item__date {
  font-family: var(--font-roboto);
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .news-item__date {
    font-size: 0.875rem;
  }
}

.news-item__category {
  color: var(--color-white);
  background-color: var(--color-dark-gray);
  padding: 0.625rem 0.9375rem;
  font-size: 0.8125rem;
  font-weight: 700;
  max-width: 150px;
  min-width: 150px;
  text-align: center;
  transition: all 0.3s;
  border-radius: 1.875rem;
}
@media screen and (max-width: 768px) {
  .news-item__category {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 375px) {
  .news-item__category {
    max-width: 100%;
    min-width: 100%;
  }
}

.news-item__link {
  color: var(--color-black);
  font-size: 1rem;
  font-weight: 500;
  margin-left: 1.25rem;
  line-height: 1.3;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 768px) {
  .news-item__link {
    font-size: 0.875rem;
    margin-left: 0px;
    padding-top: 0;
    margin-top: 20px;
  }
}

.news__content {
  margin-top: 0;
}

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

/****************************************/
/****************************************/
.contact {
  position: relative;
  padding: 6.25rem 0;
  margin-top: 1.25rem;
}
@media screen and (max-width: 375px) {
  .contact {
    padding: 1.875rem 0 5rem;
  }
}

.contact__text {
  color: var(--color-black);
  font-size: 1rem;
  font-weight: 300;
  text-align: center;
}

.form__list {
  margin-top: 3.75rem;
}

.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-orange);
  background-color: var(--color-white);
  border: 1px solid var(--color-orange);
  padding: 0.0625rem 0.3125rem;
}
@media screen and (max-width: 375px) {
  .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 #E3E3E3;
  background-color: #F8F8F8;
  border-radius: 0.25rem;
}
@media screen and (max-width: 375px) {
  .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: 375px) {
  .form__privacy-text {
    font-size: 0.875rem;
    margin-left: 0.5rem;
  }
}

.form__privacy-note {
  font-size: 0.875rem;
  font-weight: 300;
  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-color: var(--color-orange);
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.1em;
  border-radius: 0.3125rem;
  color: var(--color-white);
}
@media screen and (max-width: 768px) {
  .form__submit-button {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 375px) {
  .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;
  font-weight: 300;
  color: var(--color-black);
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .site-content p {
    font-size: 0.875rem;
  }
}

.site-content h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: var(--color-dark-gray);
}
@media screen and (max-width: 768px) {
  .site-content h2 {
    font-size: 1.75rem;
  }
}

.site-content h3 {
  position: relative;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: var(--color-dark-gray);
  padding-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .site-content h3 {
    font-size: 1.5rem;
  }
}

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

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

.site-content h5 {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-dark-gray);
}
@media screen and (max-width: 768px) {
  .site-content h5 {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 375px) {
  .site-content h5 {
    font-size: 1.125rem;
  }
}

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

.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 {
    align-items: baseline;
  }
}

.site-content ul li::before {
  content: "⚫︎";
  color: var(--color-dark-gray);
  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-dark-gray);
  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-gray-warm);
  color: var(--color-white);
}

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

.site-content a {
  color: var(--color-dark-gray);
  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: 1250px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5625rem;
}
@media screen and (max-width: 768px) {
  .inner {
    max-width: 700px;
    padding: 0 1.25rem;
  }
}

.inner1100 {
  max-width: 1100px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.inner900 {
  max-width: 900px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-secondary);
}
@media screen and (max-width: 768px) {
  .text {
    font-size: 1rem;
  }
}

.title-en {
  color: var(--color-dark-gray);
  text-align: center;
  text-transform: uppercase;
  font-size: 3.4375rem;
  font-weight: 700;
  line-height: 1.32;
  word-break: break-word;
}
@media screen and (max-width: 768px) {
  .title-en {
    font-size: 7.1614583333vw;
  }
}
@media screen and (max-width: 375px) {
  .title-en {
    font-size: 2rem;
  }
}

.title-ja {
  display: block;
  color: var(--color-dark-gray);
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.32;
}
@media screen and (max-width: 768px) {
  .title-ja {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 375px) {
  .title-ja {
    font-size: 0.75rem;
  }
}

.page-heading {
  width: 100%;
  text-align: center;
  background-color: var(--color-dark-gray2);
  color: var(--color-white);
  font-size: 1.875rem;
  font-weight: 700;
  padding: 0.5rem 0.9375rem;
}
@media screen and (max-width: 768px) {
  .page-heading {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 375px) {
  .page-heading {
    font-size: 1.25rem;
  }
}

.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;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.9375rem;
  flex-wrap: wrap;
}

.post__category {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-white);
  padding: 0.625rem 0.9375rem;
  background-color: var(--color-dark-gray);
  border-radius: 1.5625rem;
  min-width: 185px;
  text-align: center;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .post__category {
    font-size: 0.75rem;
  }
}

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

.post__title {
  position: relative;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-black);
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .post__title {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 375px) {
  .post__title {
    font-size: 1.5rem;
  }
}

.post__title::after {
  position: absolute;
  content: "";
  width: 100%;
  background: var(--color-dark-gray);
  height: 1px;
  left: 0;
  bottom: -5px;
}

.single-nav__items {
  margin-top: 90px;
  max-width: 500px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(calc(33.3333333333% - 20px), 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-dark-gray);
  color: var(--color-dark-gray);
  padding: 0.625rem 1.25rem;
  transition: background-color 0.3s ease;
}

.page-nav-button:hover {
  border: 1px solid transparent;
  background-color: var(--color-dark-gray);
  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-size: 1.875rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.1em;
  color: var(--color-dark-gray);
}
@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-dark-gray);
  margin-top: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .news__category-title {
    font-size: clamp(1rem, 0.607rem + 0.82vw, 1.5rem);
  }
}

/****************************************/
/****************************************/
.fv {
  position: relative;
  height: 100vh;
  background-image: url(../images/fv.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.fv.fv--page {
  height: 23.25rem;
  background-image: unset;
  background-color: var(--color-light-gray);
}
.fv.fv--page .fv__content {
  top: 60%;
}
@media screen and (max-width: 768px) {
  .fv.fv--page {
    height: 17.5rem;
  }
}

.fv__inner {
  position: relative;
  max-width: 1312.5px;
  margin: 0 auto;
  height: inherit;
}

.fv__content {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 5;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.fv__logo {
  width: 17.9375rem;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 287/557;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}
@media screen and (max-width: 1200px) {
  .fv__logo {
    width: 19.9305555556vw;
  }
}
@media screen and (max-width: 768px) {
  .fv__logo {
    width: 37.3697916667vw;
  }
}
@media (max-height: 560px) {
  .fv__logo {
    width: 7rem;
  }
}

.fv__title {
  color: var(--color-dark-gray);
  font-size: 3.4375rem;
}
@media screen and (max-width: 768px) {
  .fv__title {
    font-size: 7.1614583333vw;
  }
}
@media screen and (max-width: 375px) {
  .fv__title {
    font-size: 1.75rem;
  }
}

.fv__title-sub {
  display: block;
  color: var(--color-dark-gray);
  text-align: center;
  font-size: 1rem;
  margin-top: 0.4375rem;
}
@media screen and (max-width: 768px) {
  .fv__title-sub {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 375px) {
  .fv__title-sub {
    font-size: 0.75rem;
  }
}

.fv__text {
  color: var(--color-white);
  font-size: 1.25rem;
  line-height: 1.4;
  margin-top: 4.1875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .fv__text {
    font-size: 1.953125vw;
    margin-top: 5.859375vw;
  }
}
@media screen and (max-width: 768px) {
  .fv__text {
    margin-top: 1.875rem;
    padding: 0.3125rem 0.625rem 0.3125rem 1.375rem;
    font-size: 3.90625vw;
  }
}
@media (max-height: 560px) {
  .fv__text {
    font-size: 1.953125vw;
    margin-top: 1.953125vw;
  }
}

.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;
}