@charset "UTF-8";
/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
* {
  box-sizing: border-box;
}

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

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

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

img {
  border: none;
  vertical-align: bottom;
}

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

/*----------------------------------------------------------
ベースとなるスタイル
----------------------------------------------------------*/
html {
  font-size: 1px;
  scroll-behavior: smooth;
}

/*レスポンシブ対応*/
@media (max-width: 430px) {
  html {
    font-size: 0.2325581395vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 0.0520833333vw;
  }
}
@media (min-width: 1920px) {
  html {
    font-size: 1px;
  }
}
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #4A4241;
  font-size: 16rem;
}
body.is-active {
  overflow: hidden;
}

.wrapper {
  overflow-x: hidden;
}

a {
  cursor: pointer;
  color: inherit;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

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

@media screen and (max-width: 767.9px) {
  .is-pc {
    display: none;
  }
}

/*----------------------------------------------------------
インナー幅の設定
----------------------------------------------------------*/
.inner {
  max-width: 1440px;
  margin-inline: auto;
}

/*----------------------------------------------------------
ヘッダーに関するスタイル
----------------------------------------------------------*/
.header {
  height: 75px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .header {
    padding-block: 32rem 31rem;
    height: auto;
  }
}

.header__inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 23rem 18rem;
}
@media screen and (min-width: 768px) {
  .header__inner {
    max-width: 1920px;
    padding-inline: 108rem;
    width: 100%;
    margin-inline: auto;
  }
}

.header__logo {
  width: 235.65rem;
  height: auto;
  aspect-ratio: 492.67/77.57;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: 492.67rem;
  }
}

.header__logo-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__right {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 23rem;
  }
}

.header__button--wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .header__button--wrapper {
    position: static;
    width: auto;
    gap: 20rem;
  }
}

@media screen and (min-width: 768px) {
  .header__button--wrapper.is-sp {
    display: none;
  }
}

.header__button {
  width: 33.3333333333%;
  display: grid;
  place-items: center;
  height: 76px;
  font-size: 14rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .header__button {
    width: 217rem;
    font-size: 19rem;
    border-radius: 8rem;
    height: auto;
    padding-block: 13rem 16rem;
  }
}

.header__button--contact {
  background-color: #6AC5CF;
  color: #fff;
}

.header__button--access {
  color: #479FA9;
  outline: 2px solid #6AC5CF;
  background-color: #fff;
  outline-offset: -2px;
}

.header__button--recruit {
  background-color: #9DC3E6;
  color: #fff;
}

.header__nav-list {
  display: flex;
  gap: 31rem;
}

.header__nav-item a {
  font-size: 20rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/***************************************************************
固定ヘッダーの記述
***************************************************************/
.header--fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 768px) {
  .header--fixed .header__logo {
    width: 241rem;
  }
}
@media screen and (min-width: 768px) {
  .header--fixed .header__right {
    flex-direction: row-reverse;
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .header--fixed .header__button--wrapper {
    width: auto;
    gap: 9rem;
  }
}
@media screen and (min-width: 768px) {
  .header--fixed .header__button {
    width: 169rem;
    font-size: 16rem;
    padding-block: 11rem;
    line-height: 1.5;
  }
}
@media screen and (min-width: 768px) {
  .header--fixed .header__nav-list {
    gap: 25rem;
  }
}
@media screen and (min-width: 768px) {
  .header--fixed .header__nav-item a {
    font-size: 18rem;
    font-weight: 700;
    letter-spacing: 0.05em;
  }
}

.header--fixed-top {
  translate: 0 -120%;
  transition: translate 0.5s ease;
}
.header--fixed-top.js-scroll {
  translate: 0;
}
@media screen and (min-width: 768px) {
  .header--fixed-top {
    translate: 0 -170%;
  }
}

/*==========================================================================
# ドロワーメニューのスタイル
==========================================================================*/
.drawer__icon {
  width: 56rem;
  height: 56rem;
  margin-left: auto;
  border-radius: 5rem;
  background-color: #6AC5CF;
  display: grid;
  place-items: center;
}
@media screen and (min-width: 768px) {
  .drawer__icon {
    display: none;
  }
}

.drawer__icon--bar {
  display: flex;
  flex-direction: column;
  gap: 7rem;
}

.drawer__icon--bar1,
.drawer__icon--bar2,
.drawer__icon--bar3 {
  width: 23rem;
  height: 3px;
  background-color: #fff;
  border-radius: 10px;
  transition: translate 0.3s ease;
  transition: rotate 0.3s ease, translate 0.3s ease;
}

.drawer__icon.js-show .drawer__icon--bar {
  gap: 0;
}
.drawer__icon.js-show .drawer__icon--bar1 {
  rotate: 45deg;
  translate: 0 1.5px;
}
.drawer__icon.js-show .drawer__icon--bar2 {
  display: none;
}
.drawer__icon.js-show .drawer__icon--bar3 {
  rotate: -45deg;
  translate: 0 -1.5px;
}

.drawer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  translate: 0 100%;
  background-color: #FFF;
  padding-block: 24rem;
  padding-inline: 20rem;
  z-index: 300;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.5s ease-out;
}
.drawer.js-show {
  clip-path: inset(0 0 0 0);
}

.drawer__nav-item a {
  display: flex;
  height: 48px;
  align-items: center;
  position: relative;
  font-weight: 600;
  letter-spacing: 0.05em;
  width: 100%;
}
.drawer__nav-item a::before {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  translate: 0 -50%;
  width: 9px;
  height: 14px;
  background: url("../img/common/arrow_right.svg") no-repeat center/contain;
}
.drawer__nav-item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px; /* ドットの高さ */
  background-image: radial-gradient(circle, #719f9d 1px, transparent 1px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 9px 2px;
}

.drawer__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 200;
  display: none;
}

.drawer__bg.js-show {
  display: block;
}

/*----------------------------------------------------------
フッターに関するスタイル
----------------------------------------------------------*/
.footer {
  padding-top: 43rem;
  padding-bottom: 104rem;
  background: url("../img/common/footer_bg-sp.png") no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 58rem;
    padding-bottom: 39rem;
    background: url("../img/common/footer_bg.png") no-repeat center center/cover;
  }
}

.footer__inner {
  padding-inline: 25rem 16rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60.6rem;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    max-width: 1600px;
    padding-inline: 100rem;
    width: 100%;
    margin-inline: auto;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 158rem;
  }
}

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

.footer__logo {
  width: 271rem;
  height: auto;
  aspect-ratio: 271/43;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    width: 390rem;
  }
}

.footer__logo-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__about {
  margin-top: 22rem;
  font-size: 14rem;
  font-weight: 500;
  line-height: 1.7857142857;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .footer__about {
    margin-top: 35.7rem;
    font-size: 18rem;
    line-height: 1.3888888889;
  }
}

.footer__address {
  margin-bottom: 25rem;
}

.footer__tel {
  display: inline-block;
}

.footer__fax {
  display: inline-block;
  margin-left: 14rem;
}
@media screen and (min-width: 768px) {
  .footer__fax {
    margin-left: 18rem;
  }
}

.footer__marks {
  margin-top: 26rem;
  display: flex;
  align-items: flex-start;
  gap: 8rem;
}
@media screen and (min-width: 768px) {
  .footer__marks {
    margin-top: 31rem;
    gap: 21.9rem;
    margin-left: 2rem;
  }
}

.footer__mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  width: 119rem;
}
@media screen and (min-width: 768px) {
  .footer__mark {
    gap: 0rem;
    width: 169rem;
  }
}

.footer__mark-icon {
  width: 94rem;
  height: auto;
  aspect-ratio: 1;
}
@media screen and (min-width: 768px) {
  .footer__mark-icon {
    width: 132rem;
  }
}

.footer__mark-text {
  font-size: 10rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .footer__mark-text {
    font-size: 14rem;
    line-height: 1.4285714286;
  }
}

.footer__links--wrapper {
  display: flex;
  flex-direction: column;
  gap: 37.3rem;
  max-width: 480px;
}
@media screen and (min-width: 768px) {
  .footer__links--wrapper {
    flex-direction: row;
    gap: 58rem;
    margin-top: 12rem;
    max-width: none;
  }
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 14rem;
}
@media screen and (min-width: 768px) {
  .footer__links {
    gap: 15rem;
  }
}

.footer__links:not(:has(> .footer__link-head)) .footer__link-list {
  row-gap: 10rem;
}
@media screen and (min-width: 768px) {
  .footer__links:not(:has(> .footer__link-head)) {
    margin-top: 8rem;
    margin-left: 4rem;
  }
  .footer__links:not(:has(> .footer__link-head)) .footer__link-list {
    row-gap: 10rem;
  }
}

.footer__link-head {
  font-weight: 700;
  font-size: 16rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .footer__link-head {
    font-size: 20rem;
    line-height: 1.45;
    white-space: nowrap;
  }
}

.footer__link-list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 11rem;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .footer__link-list {
    flex-direction: column;
    flex-wrap: nowrap;
    row-gap: 11rem;
  }
}

.footer__link-list-item {
  width: 50%;
  font-size: 14rem;
  font-weight: 500;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
  padding-left: 18.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer__link-list-item {
    width: 100%;
    font-size: 16rem;
    line-height: 1.5;
    padding-left: 21rem;
  }
}
.footer__link-list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 9.3rem;
  height: 2px;
  background-color: #4A4241;
  scale: 1 1.1;
}
.footer__link-list-item.--nowrap {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .footer__link-list--anchor {
    white-space: nowrap;
  }
}

.footer__copyright {
  margin-top: 98rem;
  margin-left: 6rem;
  font-size: 10rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 80rem;
    font-size: 16rem;
    line-height: 1.5;
    margin-left: 6rem;
  }
}

/*----------------------------------------------------------
下層ページのレイアウト用スタイル
----------------------------------------------------------*/
.lower-main {
  padding-top: 21rem;
  padding-bottom: 130rem;
}
@media screen and (min-width: 768px) {
  .lower-main {
    padding-top: 53rem;
    padding-bottom: 166rem;
  }
}

.lower-inner {
  padding-inline: 23rem 17rem;
}
@media screen and (min-width: 768px) {
  .lower-inner {
    max-width: 1920px;
    padding-inline: 263rem;
    margin-inline: auto;
  }
}

/*----------------------------------------------------------
TOPページのセクションタイトル
----------------------------------------------------------*/
.section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16rem;
}
@media screen and (min-width: 768px) {
  .section-title {
    flex-direction: row;
    gap: 47rem;
    align-items: flex-end;
  }
}

.section-title-en {
  font-size: 45rem;
  line-height: 1.2;
  font-weight: 500;
  padding-bottom: 14rem;
  position: relative;
  font-family: "Avenir", "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .section-title-en {
    font-size: 82rem;
    line-height: 1.1951219512;
    padding-bottom: 25rem;
  }
}
.section-title-en::after {
  content: "";
  position: absolute;
  width: auto;
  height: 6rem;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  aspect-ratio: 56/6;
}
@media screen and (min-width: 768px) {
  .section-title-en::after {
    height: 10rem;
    left: 0;
    translate: 0 0;
  }
}

.section-title-en--blue {
  color: #6AC5CF;
}
.section-title-en--blue::after {
  background: url("../img/common/title_accent-blue.svg") no-repeat center center/contain;
}

.section-title-en--orange {
  color: #E69645;
}
.section-title-en--orange::after {
  background: url("../img/common/title_accent-orange.svg") no-repeat center center/contain;
}

.section-title-jp {
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .section-title-jp {
    font-size: 23rem;
    line-height: 1.4782608696;
    margin-bottom: 32rem;
  }
}

/*----------------------------------------------------------
下層ページのセクションタイトル
----------------------------------------------------------*/
.lower-section__title {
  font-size: 18rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4444444444;
  padding-left: 14rem;
  position: relative;
  border-bottom: 1px solid #D5D5D5;
  padding-bottom: 9.3rem;
}
@media screen and (min-width: 768px) {
  .lower-section__title {
    font-size: 30rem;
    padding-left: 33rem;
    padding-top: 10rem;
    padding-bottom: 19.3rem;
    line-height: 1.4666666667;
  }
}
.lower-section__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6rem;
  height: calc(100% - 9.3rem);
  background-color: #6AC5CF;
  border-radius: 6rem;
}
@media screen and (min-width: 768px) {
  .lower-section__title::before {
    width: 11rem;
    height: 63rem;
  }
}

/*----------------------------------------------------------
下層ページのセクションタイトルのサブタイトル
----------------------------------------------------------*/
.lower-section__title-sub {
  font-size: 18rem;
  font-weight: 700;
  line-height: 1.4444444444;
  letter-spacing: 0.05em;
  padding-left: 28rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .lower-section__title-sub {
    font-size: 27rem;
    padding-left: 52rem;
    line-height: 1.4444444444;
  }
}
.lower-section__title-sub::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 17rem;
  height: 5rem;
  background-color: #6AC5CF;
  border-radius: 6rem;
}
@media screen and (min-width: 768px) {
  .lower-section__title-sub::before {
    width: 28rem;
    height: 11rem;
  }
}

/*----------------------------------------------------------
パンくずリストに関するスタイル
----------------------------------------------------------*/
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 14rem;
  gap: 14rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4285714286;
  flex-wrap: wrap;
  position: relative;
}
@media screen and (min-width: 768px) {
  .breadcrumb {
    justify-content: flex-start;
    font-size: 18rem;
    line-height: 1.4444444444;
    gap: 18rem;
  }
}

/*----------------------------------------------------------
共通ボタンのスタイル
----------------------------------------------------------*/
.util-btn,
.page-contents .util-btn {
  width: 339rem;
  padding-top: 18.5rem;
  padding-bottom: 17.1rem;
  text-align: center;
  border-radius: 999rem;
  font-size: 14rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4285714286;
  color: #fff;
  position: relative;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .util-btn,
  .page-contents .util-btn {
    width: 481rem;
    padding-block: 24.9rem;
    font-size: 20rem;
    line-height: 1.45;
  }
}
.util-btn::after,
.page-contents .util-btn::after {
  position: absolute;
  content: "";
  right: 40.3rem;
  top: 50%;
  translate: 0 -50%;
  width: 7rem;
  height: 12rem;
  background: url("../img/common/icon_arrow-simple-white.svg") no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .util-btn::after,
  .page-contents .util-btn::after {
    right: 53.5rem;
    width: 10rem;
    height: 16rem;
  }
}

.util-btn--pdf {
  background-color: #E69645;
}
.util-btn--pdf::before {
  position: absolute;
  content: "";
  left: 37rem;
  top: 50%;
  translate: 0 -50%;
  width: 30rem;
  height: 32rem;
  background: url("../img/common/icon_pdf.svg") no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .util-btn--pdf::before {
    left: 57rem;
    width: 40rem;
    height: 44rem;
  }
}

.util-btn--blue {
  background-color: #6AC5CF;
}

.util-btn--orange {
  background-color: #E69645;
}

.util-btn--wrapper {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .util-btn--wrapper {
    justify-content: flex-start;
  }
}

.util-btn .wp-block-button__link {
  background: none;
  padding: 0;
  line-height: 0;
}

/*----------------------------------------------------------
固定ページ（ブロックエディター構築）のボタン
----------------------------------------------------------*/
.page-btn--wrapper {
  justify-content: center;
  margin-bottom: 33rem;
}
@media screen and (min-width: 768px) {
  .page-btn--wrapper {
    gap: 66rem;
    margin-bottom: 38rem;
  }
}

.page-btn {
  width: 339rem;
}
@media screen and (min-width: 768px) {
  .page-btn {
    width: 481rem;
  }
}

.page-btn a {
  position: relative;
  width: 339rem;
  padding-top: 18.5rem;
  padding-bottom: 17.1rem;
  text-align: center;
  border-radius: 999rem;
  font-size: 14rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4285714286;
  color: #fff;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .page-btn a {
    padding-block: 25rem;
    font-size: 20rem;
    line-height: 1.45;
  }
}
.page-btn a::after {
  position: absolute;
  content: "";
  right: 40.3rem;
  top: 50%;
  translate: 0 -50%;
  width: 7rem;
  height: 12rem;
  background: url("../img/common/icon_arrow-simple-white.svg") no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .page-btn a::after {
    right: 53.5rem;
    width: 10rem;
    height: 16rem;
  }
}

.page-btn--orange a {
  background-color: #E69645;
}

.page-btn--pdf a::before {
  position: absolute;
  content: "";
  left: 37rem;
  top: 50%;
  translate: 0 -50%;
  width: 30rem;
  height: 32rem;
  background: url("../img/common/icon_pdf.svg") no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .page-btn--pdf a::before {
    left: 57rem;
    width: 40rem;
    height: 44rem;
  }
}

/*----------------------------------------------------------
ページネーションのスタイル
----------------------------------------------------------*/
.navigation.pagination {
  margin-top: 40rem;
}
@media screen and (min-width: 768px) {
  .navigation.pagination {
    margin-top: 64rem;
  }
}
.navigation.pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16rem;
}
@media screen and (min-width: 768px) {
  .navigation.pagination .nav-links {
    gap: 24rem;
  }
}

/*----------------------------------------------------------
TOPページFVのスタイル
----------------------------------------------------------*/
.top-fv {
  display: flex;
  width: 100%;
  align-items: center;
  flex-direction: column;
  gap: 26rem;
}
@media screen and (min-width: 768px) {
  .top-fv {
    flex-direction: row;
    gap: 0;
  }
}

@media screen and (min-width: 768px) {
  .top-fv__left {
    width: 33.1770833333%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    row-gap: 13rem;
    -moz-column-gap: 1.8838304553%;
         column-gap: 1.8838304553%;
  }
}

.top-fv__image {
  height: auto;
  opacity: 0;
}

.top-fv__image img {
  width: 100%;
}

.top-fv__image--wide {
  width: 100%;
  aspect-ratio: 637/295;
  height: auto;
}

.top-fv__image--middle {
  width: 60.9105180534%;
  aspect-ratio: 388/295;
}

.top-fv__image--narrow {
  width: 37.2056514914%;
  aspect-ratio: 237/295;
}

.top-fv__center {
  opacity: 0;
  width: 100%;
  margin-top: 29rem;
}
@media screen and (min-width: 768px) {
  .top-fv__center {
    width: 33.6458333333%;
    margin-top: 0;
  }
}

.top-fv__center-contents {
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 42rem;
  padding-top: 26.4rem;
  padding-bottom: 60rem;
  background: url(../img/top/top_fv-bg.png) no-repeat center center/contain;
  width: 339.26rem;
}
@media screen and (min-width: 768px) {
  .top-fv__center-contents {
    width: 542rem;
    padding-top: 50rem;
    padding-bottom: 117rem;
    gap: 117rem;
  }
}

.top-fv__center-main {
  width: 128rem;
  aspect-ratio: 268/452;
  height: auto;
  margin-left: 6rem;
}
@media screen and (min-width: 768px) {
  .top-fv__center-main {
    width: 268rem;
    margin-left: 0;
  }
}

.top-fv__center-main--text {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.top-fv__center-sub {
  width: 340rem;
  height: auto;
  aspect-ratio: 541.67/27.89;
}
@media screen and (min-width: 768px) {
  .top-fv__center-sub {
    width: 100%;
  }
}

.top-fv__center-sub--img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.top-fv__right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  row-gap: 11rem;
  width: 105%;
}
@media screen and (min-width: 768px) {
  .top-fv__right {
    width: 33.1770833333%;
    gap: 1.8838304553%;
    row-gap: 13rem;
  }
}

/*----------------------------------------------------------
TOPページNewsセクションのスタイル
----------------------------------------------------------*/
.section-news {
  padding-top: 68.5rem;
  padding-bottom: 117rem;
}
@media screen and (min-width: 768px) {
  .section-news {
    padding-top: 100rem;
    padding-bottom: 115rem;
  }
}

.section-news__inner {
  padding-inline: 23rem 17rem;
}
@media screen and (min-width: 768px) {
  .section-news__inner {
    max-width: 1400px;
    margin-inline: auto;
    padding-inline: 100rem;
  }
}

.section-news__list {
  margin-top: 33rem;
}
@media screen and (min-width: 768px) {
  .section-news__list {
    margin-top: 31rem;
  }
}

.section-news__list-item {
  padding-block: 19rem 23rem;
  background-image: radial-gradient(circle, #d5d4d1 2rem, transparent 2rem);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 14rem 4rem;
}
@media screen and (min-width: 768px) {
  .section-news__list-item {
    padding-block: 23rem 23rem;
  }
}

.section-news__list-link {
  display: flex;
  flex-direction: column;
  gap: 13rem;
  letter-spacing: 0.02em;
  font-weight: 500;
  font-size: 14rem;
}
@media screen and (min-width: 768px) {
  .section-news__list-link {
    flex-direction: row;
    align-items: center;
    gap: 0;
    font-size: 18rem;
  }
}

@media screen and (min-width: 768px) {
  .section-news__list-date {
    width: 157rem;
  }
}

.section-news__list-text {
  line-height: 1.7857142857;
  flex: 1;
}
@media screen and (min-width: 768px) {
  .section-news__list-text {
    padding-right: 16rem;
  }
}

.section-news__list-arrow {
  display: none;
}
@media screen and (min-width: 768px) {
  .section-news__list-arrow {
    display: inline-block;
    width: 14rem;
    height: 25rem;
    margin-left: auto;
    margin-right: 14rem;
  }
}

.section-news__all {
  margin-top: 40rem;
  display: grid;
  place-items: center;
  margin-inline: auto;
  width: 299rem;
  padding-block: 15rem 14rem;
  background-color: #E69645;
  color: #fff;
  font-size: 14rem;
  line-height: 1.4285714286;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 999rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .section-news__all {
    margin-top: 48.5rem;
    width: 415rem;
    padding-block: 19.5rem;
    font-size: 20rem;
  }
}
.section-news__all::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 20rem;
  translate: 0 -50%;
  width: 8rem;
  height: 12rem;
  background: url("../img/common/icon_arrow-simple-white.svg") no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .section-news__all::after {
    width: 10rem;
    height: 15rem;
    right: 28.5rem;
  }
}

/*----------------------------------------------------------
TOPページaboutセクションのスタイル
----------------------------------------------------------*/
.top-about {
  padding-top: 54rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-about {
    padding-top: 80rem;
  }
}

.top-about__bg {
  width: 100%;
  height: auto;
  aspect-ratio: 430/950;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50%;
  background: url("../img/top/top_about-bg-sp.jpg") no-repeat center center/cover;
  z-index: -1;
  min-height: 950px;
}
@media screen and (min-width: 768px) {
  .top-about__bg {
    width: 94.9479166667%;
    left: 0;
    translate: 0;
    background: url("../img/top/top_about-bg.jpg") no-repeat center center/cover;
    min-height: initial;
    aspect-ratio: 1823/825;
  }
}

.top-about__accent-right {
  position: absolute;
  top: -64rem;
  right: -70rem;
  width: 145rem;
  height: auto;
  aspect-ratio: 145/116;
  background: url("../img/common/accent_leaf-blue-right.png") no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .top-about__accent-right {
    top: -71rem;
    right: -133rem;
    width: 395rem;
  }
}

@media screen and (min-width: 768px) {
  .top-about__accent-left {
    left: -133rem;
    width: 427rem;
    position: absolute;
    bottom: -75.8rem;
    height: auto;
    aspect-ratio: 145/116;
    background: url("../img/common/accent_leaf-blue-left.png") no-repeat center center/contain;
  }
}

.top-about__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 61.1rem;
}
@media screen and (min-width: 768px) {
  .top-about__inner {
    flex-direction: row;
    align-items: flex-start;
    gap: 45rem;
  }
}

.top-about__text--wrapper {
  padding-inline: 20rem;
}
@media screen and (min-width: 768px) {
  .top-about__text--wrapper {
    padding-inline: 108rem 0;
    width: 53.125%;
    max-width: 960px;
    margin-left: auto;
  }
}

.top-about__text {
  margin-top: 40rem;
  font-size: 14rem;
  font-weight: 500;
  line-height: 2.1428571429;
  letter-spacing: 0.05em;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-about__text {
    margin-top: 40rem;
    font-size: 18rem;
    line-height: 2.1111111111;
  }
}

.top-about__images {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-left: auto;
  gap: 7rem;
  justify-content: flex-end;
}
@media screen and (min-width: 768px) {
  .top-about__images {
    width: 49.4791666667%;
    gap: 15rem;
    margin-left: 0;
  }
}

.top-about__img--main {
  width: 95.3488372093%;
  height: auto;
  aspect-ratio: 410/188;
}
.top-about__img--main img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20rem 0 0 20rem;
}

.top-about__img--small {
  width: 43.488372093%;
  height: auto;
  aspect-ratio: 187/168;
}
.top-about__img--small img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10rem;
}

.top-about__img--medium {
  width: 41.1627906977%;
  height: auto;
  aspect-ratio: 177/212;
}
.top-about__img--medium img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10rem;
}

/*----------------------------------------------------------
TOPページprogramsセクションのスタイル
----------------------------------------------------------*/
.top-programs {
  padding-top: 74rem;
  padding-bottom: 144rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-programs {
    padding-top: 10rem;
    padding-bottom: 214rem;
  }
}

.top-programs__inner {
  padding-inline: 20rem;
}
@media screen and (min-width: 768px) {
  .top-programs__inner {
    padding-inline: 100rem;
    max-width: 1600px;
    margin-inline: auto;
  }
}

.top-programs__contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 46rem;
}
@media screen and (min-width: 768px) {
  .top-programs__contents {
    flex-direction: row;
    margin-top: 60rem;
  }
}

.top-programs__item {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 390/173;
  display: flex;
  align-items: center;
  overflow: hidden;
  flex-direction: row-reverse;
}
@media screen and (min-width: 768px) {
  .top-programs__item {
    aspect-ratio: 467/548;
    flex-direction: column;
    justify-content: flex-end;
  }
}

.top-programs__item:first-child {
  border-radius: 10rem 10rem 0 0;
}
@media screen and (min-width: 768px) {
  .top-programs__item:first-child {
    border-radius: 20rem 0 0 20rem;
  }
}

.top-programs__item:nth-child(2n) {
  flex-direction: row;
}
@media screen and (min-width: 768px) {
  .top-programs__item:nth-child(2n) {
    flex-direction: column;
  }
}

.top-programs__item:last-child {
  border-radius: 0 0 10rem 10rem;
}
@media screen and (min-width: 768px) {
  .top-programs__item:last-child {
    border-radius: 0 20rem 20rem 0;
  }
}

.top-programs__item-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.top-programs__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-programs__item-title {
  width: 46%;
  height: 100%;
  display: grid;
  place-items: center;
  position: relative;
  text-align: center;
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .top-programs__item-title {
    width: 100%;
    height: auto;
    padding-block: 53rem 29rem;
    font-size: 33rem;
    line-height: 1.4545454545;
    position: relative;
  }
}

.top-programs__item-title.--bg-green {
  background-image: linear-gradient(-90deg, rgba(116, 207, 106, 0.71) 0%, rgba(116, 207, 106, 0.71) 70%, transparent 100%);
}
@media screen and (min-width: 768px) {
  .top-programs__item-title.--bg-green {
    background-image: linear-gradient(0deg, rgba(116, 207, 106, 0.71) 0%, rgba(116, 207, 106, 0.71) 90%, transparent 100%);
  }
}

.top-programs__item-title.--bg-orange {
  background-image: linear-gradient(90deg, rgba(236, 168, 35, 0.71) 0%, rgba(236, 168, 35, 0.71) 70%, transparent 100%);
}
@media screen and (min-width: 768px) {
  .top-programs__item-title.--bg-orange {
    background-image: linear-gradient(0deg, rgba(236, 168, 35, 0.71) 0%, rgba(236, 168, 35, 0.71) 90%, transparent 100%);
  }
}

.top-programs__item-title.--bg-pink {
  background-image: linear-gradient(-90deg, rgba(233, 114, 138, 0.71) 0%, rgba(233, 114, 138, 0.71) 70%, transparent 100%);
}
@media screen and (min-width: 768px) {
  .top-programs__item-title.--bg-pink {
    background-image: linear-gradient(0deg, rgba(233, 114, 138, 0.71) 0%, rgba(233, 114, 138, 0.71) 90%, transparent 100%);
  }
}

@media screen and (min-width: 768px) {
  .top-programs__item::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 244rem;
    content: "";
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.71) 0%, rgba(255, 255, 255, 0.71) 70%, rgba(255, 255, 255, 0) 100%);
  }
}

/*----------------------------------------------------------
TOPページ関連リンクセクションのスタイル
----------------------------------------------------------*/
.top-related {
  padding-top: 54rem;
  padding-bottom: 118rem;
  background: url("../img/top/top_related-bg.jpg") no-repeat center center/cover;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-related {
    padding-top: 105rem;
    padding-bottom: 182.8rem;
  }
}

@media screen and (min-width: 768px) {
  .top-related__inner {
    max-width: 1600px;
    margin-inline: auto;
    padding-inline: 100rem;
  }
}

.top-related__swiper {
  margin-top: 46rem;
}
@media screen and (min-width: 768px) {
  .top-related__swiper {
    margin-top: 62rem;
    position: relative;
  }
}

.top-related__swiper-slide {
  width: 308rem;
}
@media screen and (min-width: 768px) {
  .top-related__swiper-slide {
    width: 462rem;
  }
}

.top-related__link {
  display: block;
  width: 100%;
  aspect-ratio: 308/175;
  height: auto;
  border-radius: 20rem;
  overflow: hidden;
}

.top-related__banner {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-related__swiper .swiper-button-prev {
  display: none;
}
@media screen and (min-width: 768px) {
  .top-related__swiper .swiper-button-prev {
    display: flex;
    top: 50%;
    left: 116rem;
    width: 46.5rem;
    height: 46.5rem;
  }
  .top-related__swiper .swiper-button-prev::after {
    content: "";
    width: 100%;
    height: 100%;
    background: url("../img/common/icon_arrow-left.svg") no-repeat center center/contain;
  }
}

.top-related__swiper .swiper-button-next {
  display: none;
}
@media screen and (min-width: 768px) {
  .top-related__swiper .swiper-button-next {
    display: flex;
    top: 50%;
    right: 116rem;
    width: 46.5rem;
    height: 46.5rem;
  }
  .top-related__swiper .swiper-button-next::after {
    content: "";
    width: 100%;
    height: 100%;
    background: url("../img/common/icon_arrow-right.svg") no-repeat center center/contain;
  }
}

.top-related__accent-right {
  position: absolute;
  top: -64rem;
  right: -70.7rem;
  width: 145rem;
  height: auto;
  aspect-ratio: 145/115;
  background: url("../img/common/accent_leaf-orange-right.png") no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .top-related__accent-right {
    top: -77rem;
    right: -136rem;
    width: 395rem;
  }
}

.top-related__accent-left {
  position: absolute;
  bottom: -63.3rem;
  left: -35.7rem;
  width: 145rem;
  height: auto;
  aspect-ratio: 145/115;
  background: url("../img/common/accent_leaf-orange-left.png") no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .top-related__accent-left {
    bottom: -198rem;
    left: -130rem;
    width: 427rem;
  }
}

/*----------------------------------------------------------
お問い合わせブロックのスタイル（TOP、お問い合わせページ）
----------------------------------------------------------*/
.cta {
  padding-top: 106rem;
  padding-bottom: 112rem;
}
@media screen and (min-width: 768px) {
  .cta {
    padding-top: 152rem;
    padding-bottom: 168.5rem;
  }
}

.cta__inner {
  padding-inline: 26rem 20rem;
}

.cta__items {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14rem;
}
@media screen and (min-width: 768px) {
  .cta__items {
    flex-direction: row;
  }
}

.cta__item {
  max-width: 384rem;
  width: 100%;
  padding-top: 18rem;
  padding-bottom: 28rem;
  padding-inline: 30rem;
  aspect-ratio: 384/213;
}
@media screen and (min-width: 768px) {
  .cta__item {
    max-width: 462.21rem;
    padding-top: 21rem;
    padding-bottom: 32rem;
    padding-inline: 36rem;
  }
}

.cta__item.--health {
  background: url("../img/top/cta_health-bg.png") no-repeat center center/contain;
}
.cta__item.--health .cta__item-head-text,
.cta__item.--health .cta__item-division {
  color: #823544;
}
.cta__item.--health .cta__item-tel {
  color: #E9728A;
}

.cta__item.--recruit {
  background: url("../img/top/cta_recruit-bg.png") no-repeat center center/contain;
}
.cta__item.--recruit .cta__item-head-text,
.cta__item.--recruit .cta__item-division {
  color: #7B6333;
}
.cta__item.--recruit .cta__item-tel {
  color: #ECA823;
}

.cta__item.--cancer {
  background: url("../img/top/cta_cancer-bg.png") no-repeat center center/contain;
}
.cta__item.--cancer .cta__item-head-text,
.cta__item.--cancer .cta__item-division {
  color: #507074;
}
.cta__item.--cancer .cta__item-tel {
  color: #6AC5CF;
}

.cta__item-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12.5rem;
}
@media screen and (min-width: 768px) {
  .cta__item-head {
    gap: 15rem;
  }
}

.cta__icon {
  width: 31.5rem;
  aspect-ratio: 1;
  height: auto;
}
@media screen and (min-width: 768px) {
  .cta__icon {
    width: 38rem;
  }
}

.cta__item-head-text {
  font-size: 14rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .cta__item-head-text {
    font-size: 18rem;
  }
}

.cta__item-inner {
  padding-top: 31rem;
  padding-bottom: 28rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.2rem;
  border-radius: 20rem;
  background-color: #fff;
  margin-top: 19.3rem;
  box-shadow: 0 0 6rem 6rem rgb(255, 255, 255);
}
@media screen and (min-width: 768px) {
  .cta__item-inner {
    padding-top: 30rem;
    padding-bottom: 38rem;
    margin-top: 22rem;
  }
}

.cta__item-tel {
  font-size: 35rem;
  font-weight: 500;
  font-family: "Avenir", "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .cta__item-tel {
    font-size: 45rem;
    line-height: 1.2;
  }
}

.cta__item-division {
  font-size: 11rem;
  line-height: 1.4545454545;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .cta__item-division {
    font-size: 14rem;
    line-height: 1.4285714286;
  }
}

/*----------------------------------------------------------
下層ページFV部分のスタイル
----------------------------------------------------------*/
.lower-fv {
  margin-top: 80rem;
  padding-top: 70rem;
  padding-bottom: 68rem;
  position: relative;
  background: url("../img/common/lower_fv-bg-sp.png") no-repeat center bottom/cover;
}
@media screen and (min-width: 768px) {
  .lower-fv {
    margin-top: 106rem;
    padding-top: 74rem;
    padding-bottom: 82rem;
    background: url("../img/common/lower_fv-bg.png") no-repeat center bottom/cover;
  }
}

.lower-fv__inner {
  max-width: 2136px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .lower-fv__inner {
    padding-inline: 108rem;
  }
}

.lower-fv__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 10;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .lower-fv__title {
    align-items: flex-start;
  }
}

.lower-fv__title-en {
  font-family: "Avenir", "Noto Sans JP", sans-serif;
  font-size: 36rem;
  font-weight: 500;
  line-height: 1.1944444444;
  text-align: center;
  color: #6AC5CF;
}
@media screen and (min-width: 768px) {
  .lower-fv__title-en {
    font-size: 60rem;
    line-height: 1.2;
    text-align: left;
  }
}

.lower-fv__title-ja {
  line-height: 1.4615384615;
  font-size: 13rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .lower-fv__title-ja {
    font-size: 23rem;
    line-height: 1.4782608696;
  }
}

.lower-fv__img {
  position: absolute;
  top: -28rem;
  right: -23.2rem;
  width: 219rem;
  height: auto;
  mask-image: url("../img/common/mask.png"); /*マスク用画像*/
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  -webkit-mask-image: url("../img/common/mask.png");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
}
@media screen and (min-width: 768px) {
  .lower-fv__img {
    top: -162rem;
    right: -163rem;
    width: 782rem;
  }
}
.lower-fv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.lower-fv__img:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2); /* 透明白 */
  pointer-events: none;
  -webkit-mask-image: url("../img/common/mask.png");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  mask-image: url("../img/common/mask.png");
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
}
@media screen and (min-width: 768px) {
  .lower-fv__img:after {
    background: rgba(255, 255, 255, 0.2);
  }
}

.lower-fv__accent {
  position: absolute;
  bottom: -41rem;
  left: -34.6rem;
  width: 123rem;
  height: auto;
  aspect-ratio: 123/98;
  background: url("../img/common/accent_leaf-blue-left2.png") no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .lower-fv__accent {
    bottom: -178.7rem;
    right: -139.8rem;
    left: initial;
    width: 332rem;
    background: url("../img/common/accent_leaf-blue-right.png") no-repeat center center/contain;
    aspect-ratio: 332/265;
  }
}

/*----------------------------------------------------------
事業案内ページリンク部分のスタイル
----------------------------------------------------------*/
.programs-links > .wp-block-group__inner-container {
  margin-top: 55rem;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .programs-links > .wp-block-group__inner-container {
    margin-top: 81rem;
    flex-direction: row;
    flex-wrap: wrap;
    -moz-column-gap: 30rem;
         column-gap: 30rem;
    row-gap: 24rem;
    justify-content: center;
  }
}

.programs-links__item > .wp-block-group__inner-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  aspect-ratio: 390/173;
  overflow: hidden;
  flex-direction: row-reverse;
}
@media screen and (min-width: 768px) {
  .programs-links__item > .wp-block-group__inner-container {
    aspect-ratio: 380/270;
    width: 380rem;
    border-radius: 20rem;
    flex-direction: column;
    justify-content: flex-end;
  }
}

.programs-links__item:first-child > .wp-block-group__inner-container {
  border-radius: 10rem 10rem 0 0;
}
@media screen and (min-width: 768px) {
  .programs-links__item:first-child > .wp-block-group__inner-container {
    border-radius: 20rem;
  }
}

.programs-links__item:nth-child(2n) > .wp-block-group__inner-container {
  flex-direction: row;
}
@media screen and (min-width: 768px) {
  .programs-links__item:nth-child(2n) > .wp-block-group__inner-container {
    flex-direction: column;
  }
}

.programs-links__item:last-child > .wp-block-group__inner-container {
  border-radius: 0 0 10rem 10rem;
}
@media screen and (min-width: 768px) {
  .programs-links__item:last-child > .wp-block-group__inner-container {
    border-radius: 20rem;
  }
}

.programs-links__item-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.programs-links__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.programs-links__item-title {
  width: 46%;
  height: 100%;
  display: grid;
  place-items: center;
  position: relative;
  text-align: center;
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .programs-links__item-title {
    width: 100%;
    height: auto;
    padding-block: 30rem 22rem;
    font-size: 22rem;
    line-height: 1.4545454545;
    position: relative;
  }
}

.programs-links__item-title.--bg-blue-green {
  background-image: linear-gradient(-90deg, rgba(106, 197, 207, 0.71) 0%, rgba(106, 197, 207, 0.71) 70%, transparent 100%);
}
@media screen and (min-width: 768px) {
  .programs-links__item-title.--bg-blue-green {
    background-image: linear-gradient(0deg, rgba(106, 197, 207, 0.71) 0%, rgba(106, 197, 207, 0.71) 70%, transparent 100%);
  }
}

.programs-links__item-title.--bg-blue {
  background-image: linear-gradient(90deg, rgba(106, 150, 207, 0.71) 0%, rgba(106, 150, 207, 0.71) 70%, transparent 100%);
}
@media screen and (min-width: 768px) {
  .programs-links__item-title.--bg-blue {
    background-image: linear-gradient(0deg, rgba(106, 150, 207, 0.71) 0%, rgba(106, 150, 207, 0.71) 70%, transparent 100%);
  }
}

.programs-links__item-title.--bg-green {
  background-image: linear-gradient(-90deg, rgba(116, 207, 106, 0.71) 0%, rgba(116, 207, 106, 0.71) 70%, transparent 100%);
}
@media screen and (min-width: 768px) {
  .programs-links__item-title.--bg-green {
    background-image: linear-gradient(0deg, rgba(116, 207, 106, 0.71) 0%, rgba(116, 207, 106, 0.71) 70%, transparent 100%);
  }
}

.programs-links__item-title.--bg-orange {
  background-image: linear-gradient(90deg, rgba(236, 168, 35, 0.71) 0%, rgba(236, 168, 35, 0.71) 70%, transparent 100%);
}
@media screen and (min-width: 768px) {
  .programs-links__item-title.--bg-orange {
    background-image: linear-gradient(0deg, rgba(236, 168, 35, 0.71) 0%, rgba(236, 168, 35, 0.71) 70%, transparent 100%);
  }
}

.programs-links__item-title.--bg-pink {
  background-image: linear-gradient(-90deg, rgba(233, 114, 138, 0.71) 0%, rgba(233, 114, 138, 0.71) 70%, transparent 100%);
}
@media screen and (min-width: 768px) {
  .programs-links__item-title.--bg-pink {
    background-image: linear-gradient(0deg, rgba(233, 114, 138, 0.71) 0%, rgba(233, 114, 138, 0.71) 70%, transparent 100%);
  }
}

/*----------------------------------------------------------
直近のイベントに関するスタイル
----------------------------------------------------------*/
.events-recent {
  margin-top: 74rem;
}
@media screen and (min-width: 768px) {
  .events-recent {
    margin-top: 63rem;
  }
}

.events-recent__text-top {
  margin-top: 24rem;
  font-size: 14rem;
  font-weight: 500;
  line-height: 2.1428571429;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .events-recent__text-top {
    margin-top: 32rem;
    font-size: 18rem;
    line-height: 2.1111111111;
  }
}

.events-recent__contents {
  margin-top: 35rem;
}
@media screen and (min-width: 768px) {
  .events-recent__contents {
    margin-top: 54rem;
  }
}

.events-recent__items {
  margin-top: 22rem;
}
@media screen and (min-width: 768px) {
  .events-recent__items {
    margin-top: 16rem;
  }
}

.events-recent__item {
  display: flex;
  padding-top: 4rem;
  padding-bottom: 14rem;
  gap: 0;
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .events-recent__item {
    padding-top: 24rem;
    padding-bottom: 30rem;
  }
}
.events-recent__item::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #D5D5D5;
  border-radius: 999px;
}
.events-recent__item::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 79rem;
  height: 3px;
  background-color: #6AC5CF;
  border-radius: 999px;
}
@media screen and (min-width: 768px) {
  .events-recent__item::after {
    width: 155rem;
  }
}

.events-recent__item-head {
  width: 95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.875;
}
@media screen and (min-width: 768px) {
  .events-recent__item-head {
    width: 172rem;
    font-size: 22rem;
    line-height: 1.1818181818;
  }
}

.events-recent__item-text {
  flex: 1;
  font-size: 14rem;
  font-weight: 500;
  line-height: 2.1428571429;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .events-recent__item-text {
    font-size: 18rem;
    line-height: 1.4444444444;
  }
}

.events-recent__lineup {
  margin-top: 38rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40rem;
}
@media screen and (min-width: 768px) {
  .events-recent__lineup {
    margin-top: 56rem;
    flex-direction: row;
    justify-content: flex-start;
    gap: 50rem;
    width: calc(100% + 22rem);
  }
}

.events-recent__lineup-img {
  margin-top: 29rem;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .events-recent__lineup-img {
    margin-top: 39rem;
  }
}
.events-recent__lineup-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.events-recent__text-bottom {
  margin-top: 36rem;
  font-size: 14rem;
  font-weight: 500;
  line-height: 2.1428571429;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .events-recent__text-bottom {
    margin-top: 56rem;
    font-size: 18rem;
    line-height: 1.4444444444;
  }
}

.events-recent__btn--wrapper {
  margin-top: 34rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11rem;
}
@media screen and (min-width: 768px) {
  .events-recent__btn--wrapper {
    margin-top: 56rem;
    flex-direction: row;
    justify-content: center;
    gap: 66rem;
  }
}

/*----------------------------------------------------------
過去のイベントに関するスタイル
----------------------------------------------------------*/
.events-result {
  margin-top: 64rem;
  padding-bottom: 20rem;
}
@media screen and (min-width: 768px) {
  .events-result {
    margin-top: 114rem;
    padding-bottom: 10rem;
  }
}

.events-result__links {
  margin-top: 45.7rem;
  display: flex;
  flex-direction: column;
  align-items: center !important;
  gap: 24rem;
}
@media screen and (min-width: 768px) {
  .events-result__links {
    margin-top: 61rem;
    flex-direction: row;
    justify-content: center;
    gap: 30rem;
  }
}

.events-result__link {
  width: 100%;
  max-width: 390px;
  border-radius: 10rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .events-result__link {
    max-width: 380px;
    border-radius: 20rem;
  }
}

.events-result__link-image {
  width: 100%;
  height: auto;
  aspect-ratio: 390/149;
}
@media screen and (min-width: 768px) {
  .events-result__link-image {
    aspect-ratio: 380/199;
  }
}
.events-result__link-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.events-result__link-title {
  padding: 10rem;
  font-size: 14rem;
  font-weight: 700;
  line-height: 1.4285714286;
  letter-spacing: 0.02em;
  color: #fff;
  background-color: #6AC5CF;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .events-result__link-title {
    padding-block: 19rem 20rem;
    font-size: 22rem;
    line-height: 1.4545454545;
  }
}

/*----------------------------------------------------------
下層ページ共通リンクセクションのスタイル
----------------------------------------------------------*/
.lower-links {
  margin-top: 70rem;
  display: flex;
  flex-direction: column;
  align-items: center !important;
  gap: 24rem;
}
@media screen and (min-width: 768px) {
  .lower-links {
    margin-top: 100rem;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: center;
    -moz-column-gap: 30rem;
         column-gap: 30rem;
    row-gap: 24rem;
  }
}

.lower-links > .wp-block-group__inner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24rem;
}
@media screen and (min-width: 768px) {
  .lower-links > .wp-block-group__inner-container {
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: center;
    -moz-column-gap: 30rem;
         column-gap: 30rem;
    row-gap: 24rem;
  }
}

.lower-links__item {
  max-width: 390px;
  width: 100%;
  border-radius: 10rem;
  overflow: hidden;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .lower-links__item {
    width: 380rem;
    border-radius: 20rem;
    flex-grow: initial;
  }
}
.lower-links__item:hover {
  opacity: 0.8;
}

.lower-links__item-image {
  width: 100%;
  height: auto;
  aspect-ratio: 390/149;
}
@media screen and (min-width: 768px) {
  .lower-links__item-image {
    aspect-ratio: 380/199;
  }
}
.lower-links__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.lower-links__item-title {
  padding: 10rem;
  font-size: 14rem;
  font-weight: 700;
  line-height: 1.4285714286;
  letter-spacing: 0.02em;
  color: #fff;
  background-color: #6AC5CF;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .lower-links__item-title {
    font-size: 22rem;
    line-height: 1.4545454545;
    padding-block: 19rem 20rem;
    padding-inline: 10rem;
  }
}

/*----------------------------------------------------------
広報プレべ：最新号に関するスタイル
----------------------------------------------------------*/
.newsletter__text-top {
  margin-top: 56rem;
  font-size: 14rem;
  font-weight: 500;
  line-height: 2.1428571429;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .newsletter__text-top {
    margin-top: 60.9rem;
    font-size: 18rem;
    line-height: 1.4444444444;
  }
}

.newsletter-recent {
  margin-top: 36rem;
}
@media screen and (min-width: 768px) {
  .newsletter-recent {
    margin-top: 39rem;
  }
}

.newsletter-recent__inner {
  margin-top: 32rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 42rem;
}
@media screen and (min-width: 768px) {
  .newsletter-recent__inner {
    margin-top: 46rem;
    flex-direction: row;
    align-items: flex-start;
    gap: 39rem;
  }
}

.newsletter-recent__img {
  width: 290rem;
  aspect-ratio: 290/410;
  height: auto;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .newsletter-recent__img {
    width: 461rem;
  }
}
.newsletter-recent__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  .newsletter-recent__contents {
    width: calc(100% - 461rem - 39rem);
  }
}

.newsletter-recent__list {
  margin-top: 20rem;
}
@media screen and (min-width: 768px) {
  .newsletter-recent__list {
    margin-top: 12.5rem;
  }
}

.newsletter-recent__list-item {
  padding-top: 8rem;
  padding-bottom: 18rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-bottom: 1px solid #D5D5D5;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .newsletter-recent__list-item {
    padding-block: 21.5rem;
  }
}

.newsletter-recent__list-head {
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.875;
  padding-left: 21rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .newsletter-recent__list-head {
    font-size: 20rem;
    line-height: 1.45;
    padding-left: 29rem;
  }
}
.newsletter-recent__list-head::before {
  content: "";
  position: absolute;
  top: 10rem;
  left: 0;
  width: 11rem;
  height: 11rem;
  background: #6AC5CF;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .newsletter-recent__list-head::before {
    width: 15rem;
    height: 15rem;
  }
}

.newsletter-recent__list-text {
  font-size: 14rem;
  font-weight: 500;
  line-height: 2.1428571429;
  letter-spacing: 0.05em;
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .newsletter-recent__list-text {
    font-size: 18rem;
    line-height: 1.4444444444;
  }
}

.newsletter-recent__btn--wrapper {
  margin-top: 30rem;
  display: flex;
  justify-content: center;
}

/*----------------------------------------------------------
広報プレべ：バックナンバーに関するスタイル
----------------------------------------------------------*/
.newsletter-past {
  margin-top: 88rem;
}
@media screen and (min-width: 768px) {
  .newsletter-past {
    margin-top: 73.5rem;
  }
}

.newsletter-past__text {
  margin-top: 24rem;
  font-size: 14rem;
  line-height: 2.1428571429;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .newsletter-past__text {
    margin-top: 45.7rem;
    font-size: 18rem;
    line-height: 1.4444444444;
  }
}

.newsletter-past__items.is-layout-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  -moz-column-gap: 26rem;
       column-gap: 26rem;
  row-gap: 42rem;
  margin-top: 34rem;
}
@media screen and (min-width: 768px) {
  .newsletter-past__items.is-layout-grid {
    grid-template-columns: repeat(4, 1fr);
    -moz-column-gap: 50rem;
         column-gap: 50rem;
    row-gap: 62rem;
    margin-top: 55rem;
  }
}

.newsletter-past__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.newsletter-past__item-img {
  width: 100%;
  height: auto;
  aspect-ratio: 181/257;
}
.newsletter-past__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.newsletter-past__item-title {
  margin-top: 7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .newsletter-past__item-title {
    margin-top: 16rem;
    font-size: 27rem;
    line-height: 1.4444444444;
  }
}

.newsletter-past__item-excerpt {
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6428571429;
  font-size: 14rem;
  text-align: center;
  width: 110%;
  margin-top: 4rem;
  margin-left: -5%;
}
@media screen and (min-width: 768px) {
  .newsletter-past__item-excerpt {
    font-size: 20rem;
    line-height: 1.35;
    margin-top: 5rem;
  }
}

/*----------------------------------------------------------
組織の概要ページのスタイル
----------------------------------------------------------*/
.about-summary {
  margin-top: 71rem;
}
@media screen and (min-width: 768px) {
  .about-summary {
    margin-top: 61rem;
  }
}

.about-summary__text-top {
  margin-top: 32.6rem;
  font-size: 14rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2.1428571429;
}
@media screen and (min-width: 768px) {
  .about-summary__text-top {
    margin-top: 39rem;
    font-size: 18rem;
    line-height: 1.4444444444;
  }
}

.about-summary__list {
  margin-top: 35rem;
}
@media screen and (min-width: 768px) {
  .about-summary__list {
    margin-top: 44rem;
  }
}

.about-summary__list-item {
  display: flex;
  justify-content: flex-start;
  padding-top: 19rem;
  padding-bottom: 18rem;
  position: relative;
  gap: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .about-summary__list-item {
    padding-top: 33rem;
    padding-bottom: 31rem;
  }
}
.about-summary__list-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #D5D5D5;
  border-radius: 999px;
}
.about-summary__list-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 79rem;
  height: 3px;
  background-color: #6AC5CF;
  border-radius: 999px;
}
@media screen and (min-width: 768px) {
  .about-summary__list-item::after {
    width: 154rem;
  }
}

.about-summary__list-head {
  width: 95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.875;
}
@media screen and (min-width: 768px) {
  .about-summary__list-head {
    width: 171rem;
    font-size: 22rem;
    line-height: 1.7272727273;
  }
}

.about-summary__list-body {
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: 14rem;
  line-height: 2.1428571429;
  width: calc(100% - 95rem);
}
@media screen and (min-width: 768px) {
  .about-summary__list-body {
    font-size: 18rem;
    line-height: 2.1111111111;
    width: calc(100% - 171rem);
  }
}

.about-summary__list-count li {
  list-style: ordered;
  margin-left: 1.4em;
}

.about-history {
  margin-top: 69rem;
}
@media screen and (min-width: 768px) {
  .about-history {
    margin-top: 74rem;
  }
}

.about-history__list {
  margin-top: 33rem;
  border: 1px solid #EFF5F6;
  gap: 0;
}
@media screen and (min-width: 768px) {
  .about-history__list {
    margin-top: 39rem;
  }
}

.about-history__list-item {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .about-history__list-item {
    min-height: 64rem;
  }
}

.about-history__list-item:not(:last-child) {
  border-bottom: 1px solid #fff;
}

.about-history__list-head {
  text-align: center;
  width: 129rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: grid;
  place-items: center;
  background-color: #EFF5F6;
}
@media screen and (min-width: 768px) {
  .about-history__list-head {
    width: 278rem;
    font-size: 22rem;
  }
}

.about-history__list-body {
  width: calc(100% - 129rem);
  padding-block: 12rem 11rem;
  padding-inline: 14rem 13rem;
  letter-spacing: 0.05em;
  font-size: 14rem;
  line-height: 2.1428571429;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .about-history__list-body {
    width: calc(100% - 278rem);
    font-size: 18rem;
    line-height: 2.1111111111;
    padding-block: 19rem;
    padding-inline: 24rem;
  }
}

.about-history__list-item:nth-child(2n) .about-history__list-body {
  background-color: #F9F9F9;
}

.about-organization {
  margin-top: 93rem;
}
@media screen and (min-width: 768px) {
  .about-organization {
    margin-top: 74rem;
  }
}

.about-organization__img {
  margin-top: 29rem;
  width: 100%;
  height: auto;
  border: 1px solid #B8B8B8;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about-organization__img {
    margin-top: 36rem;
    max-width: 796px;
    margin-inline: auto;
  }
}
.about-organization__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.about-links {
  margin-top: 182rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24rem;
}
@media screen and (min-width: 768px) {
  .about-links {
    margin-top: 178rem;
    gap: 27rem;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }
}

.about-links__item {
  width: 390rem;
  border-radius: 10rem;
  overflow: hidden;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .about-links__item {
    width: 330rem;
    border-radius: 20rem;
  }
  .about-links__item:hover {
    opacity: 0.8;
  }
}

.about-links__img {
  width: 100%;
  height: auto;
  aspect-ratio: 390/149;
}
@media screen and (min-width: 768px) {
  .about-links__img {
    aspect-ratio: 330/173;
  }
}
.about-links__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-links__title {
  padding: 10rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.4285714286;
  font-size: 14rem;
  color: #fff;
  background-color: #6AC5CF;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about-links__title {
    min-height: 93rem;
    display: grid;
    place-items: center;
    font-size: 22rem;
  }
}

/*----------------------------------------------------------
iframe video レスポンシブ
----------------------------------------------------------*/
.is-type-video {
  text-align: center;
}

.is-type-video div iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 390/219;
  margin-bottom: 60rem;
}
@media screen and (min-width: 768px) {
  .is-type-video div iframe {
    margin-bottom: 107rem;
    width: 1200rem;
  }
}

/*----------------------------------------------------------
固定ページ：エディター編集分に対応するスタイル
----------------------------------------------------------*/
.page-contents {
  margin-top: 62rem;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .page-contents {
    margin-top: 61rem;
  }
}
.page-contents .wp-block-group {
  margin-bottom: 42rem;
}
@media screen and (min-width: 768px) {
  .page-contents .wp-block-group {
    margin-bottom: 57rem;
  }
}
.page-contents img {
  margin-bottom: 42rem;
  max-width: 100%;
}
.page-contents p {
  font-size: 14rem;
  font-weight: 500;
  line-height: 2.1428571429;
  letter-spacing: 0.05em;
  margin-bottom: 17rem;
}
@media screen and (min-width: 768px) {
  .page-contents p {
    font-size: 18rem;
    line-height: 2.1111111111;
  }
}
.page-contents th, .page-contents td {
  font-size: 14rem;
  font-weight: 500;
  line-height: 2.1428571429;
  letter-spacing: 0.05em;
  padding: 16rem;
}
@media screen and (min-width: 768px) {
  .page-contents th, .page-contents td {
    font-size: 18rem;
    line-height: 2.1111111111;
    padding: 20rem;
  }
}
.page-contents ol, .page-contents ul {
  margin-bottom: 42rem;
}
.page-contents li {
  font-size: 14rem;
  font-weight: 500;
  line-height: 2.1428571429;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .page-contents li {
    font-size: 18rem;
    line-height: 2.1111111111;
  }
}
.page-contents li:has(img)::before {
  display: none;
}
.page-contents a {
  font-size: 14rem;
  font-weight: 500;
  line-height: 2.1428571429;
  letter-spacing: 0.05em;
  margin-bottom: 17rem;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .page-contents a {
    font-size: 18rem;
    line-height: 2.1111111111;
  }
}
.page-contents a.wp-block-button__link {
  display: inline-block;
  text-decoration: none;
  line-height: 1.4285714286;
  font-size: 14rem;
  margin-bottom: 34rem;
}
@media screen and (min-width: 768px) {
  .page-contents a.wp-block-button__link {
    font-size: 20rem;
    margin-bottom: 33rem;
  }
}
.page-contents .page-btn a.wp-block-button__link {
  margin-bottom: 0;
}
.page-contents ol li {
  list-style-type: decimal;
  list-style-position: inside;
  margin-left: 1em;
  text-indent: -1em;
}
.page-contents ul li {
  padding-left: 21rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-contents ul li {
    padding-left: 29rem;
  }
}
.page-contents ul li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 15rem;
  translate: 0 -50%;
  width: 11rem;
  height: 11rem;
  background-color: #6AC5CF;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .page-contents ul li::before {
    top: 19rem;
    width: 15rem;
    height: 15rem;
  }
}
.page-contents h2 {
  font-size: 18rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4444444444;
  padding-left: 14rem;
  position: relative;
  border-bottom: 1px solid #D5D5D5;
  padding-bottom: 9.3rem;
  margin-bottom: 25rem;
}
@media screen and (min-width: 768px) {
  .page-contents h2 {
    font-size: 30rem;
    padding-left: 33rem;
    padding-top: 10rem;
    padding-bottom: 19.3rem;
    line-height: 1.4666666667;
    margin-bottom: 46rem;
  }
}
.page-contents h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6rem;
  height: calc(100% - 9.3rem);
  background-color: #6AC5CF;
  border-radius: 6rem;
}
@media screen and (min-width: 768px) {
  .page-contents h2::before {
    width: 11rem;
    height: 63rem;
  }
}
.page-contents h3 {
  font-size: 18rem;
  font-weight: 700;
  line-height: 1.4444444444;
  letter-spacing: 0.05em;
  padding-left: 28rem;
  position: relative;
  margin-bottom: 25rem;
}
@media screen and (min-width: 768px) {
  .page-contents h3 {
    font-size: 27rem;
    padding-left: 52rem;
    line-height: 1.4444444444;
    margin-bottom: 24rem;
  }
}
.page-contents h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 17rem;
  height: 5rem;
  background-color: #6AC5CF;
  border-radius: 6rem;
}
@media screen and (min-width: 768px) {
  .page-contents h3::before {
    width: 28rem;
    height: 11rem;
  }
}
.page-contents h4 {
  font-size: 18rem;
  font-weight: 700;
  line-height: 1.4444444444;
  margin-bottom: 25rem;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .page-contents h4 {
    font-size: 24rem;
    line-height: 1.4583333333;
    margin-bottom: 24rem;
  }
}
@media screen and (min-width: 768px) {
  .page-contents .is-style-flexList-4col {
    display: flex;
    flex-wrap: wrap;
    gap: 24rem;
  }
}

.wp-bootstrap-blocks-row {
  display: flex;
  flex-direction: column;
  gap: 16rem;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .wp-bootstrap-blocks-row {
    flex-direction: row;
    justify-content: space-between;
    gap: 40rem;
    align-items: initial;
  }
}

.page-column--with-image {
  justify-content: space-between;
  gap: 0;
}
.page-column--with-image img {
  width: 141rem;
}
@media screen and (min-width: 768px) {
  .page-column--with-image img {
    width: auto;
  }
}
.page-column--with-image .wp-block-image {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .page-list--pc-row {
    display: flex;
    gap: 41rem;
  }
}

.page-column--card {
  margin-bottom: 75rem;
}
@media screen and (min-width: 768px) {
  .page-column--card {
    margin-top: 85rem;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 40rem;
    margin-bottom: 83rem;
  }
}
.page-column--card .wp-block-column {
  border-radius: 20rem;
  border: 3px solid #6AC5CF;
  padding: 17rem 16rem 23rem;
}
@media screen and (min-width: 768px) {
  .page-column--card .wp-block-column {
    display: grid;
    grid-template-rows: subgrid;
    gap: 0;
    grid-row: span 3;
    padding: 23rem 28rem 36rem;
  }
}
.page-column--card h4 {
  text-align: center;
  font-size: 18rem;
  line-height: 1.4444444444;
  letter-spacing: 0.05em;
  padding: 11rem;
  background-color: #6AC5CF;
  color: #fff;
  border-radius: 32rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .page-column--card h4 {
    font-size: 27rem;
    line-height: 1.4444444444;
    padding: 13rem;
    margin-bottom: 25rem;
  }
}
.page-column--card ul {
  margin-bottom: 22rem;
}
@media screen and (min-width: 768px) {
  .page-column--card ul {
    margin-bottom: 26rem;
  }
}
.page-column--card ul li {
  font-weight: 500;
  margin-bottom: 0;
}
.page-column--card img {
  border: 1px solid #D5D5D5;
  margin-bottom: 0;
}
.page-column--card .wp-block-image {
  align-content: center;
}

/*----------------------------------------------------------
お問い合わせページのスタイル
----------------------------------------------------------*/
.contact__text {
  margin-top: 62rem;
  margin-bottom: 46rem;
  font-size: 14rem;
  line-height: 2.1428571429;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .contact__text {
    margin-top: 61rem;
    font-size: 18rem;
    line-height: 1.4444444444;
    margin-bottom: 53rem;
  }
}

/*----------------------------------------------------------
アクセスページのスタイル
----------------------------------------------------------*/
@media screen and (min-width: 768px) {
  .access-address br {
    display: none;
  }
}

.access-map {
  text-align: center;
}

.access-map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 390/219;
  margin-bottom: 60rem;
}
@media screen and (min-width: 768px) {
  .access-map iframe {
    margin-bottom: 107rem;
    width: 1200rem;
  }
}

.access-guidance--wrapper.wp-block-group {
  margin-bottom: 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  overflow-x: auto;
  margin-bottom: 71rem;
}

.access-guidance--wrapper .simplebar-horizontal .simplebar-scrollbar {
  height: 3px !important;
  background-color: #6AC5CF;
  border-radius: 999px;
}
@media screen and (min-width: 768px) {
  .access-guidance--wrapper .simplebar-horizontal .simplebar-scrollbar {
    display: none;
  }
}

.access-guidance--wrapper .simplebar-horizontal.simplebar-track {
  height: 3px !important;
  background-color: #DFDFDF;
  border-radius: 999px;
}

.access-guidance.wp-block-group {
  grid-auto-flow: column;
  grid-template-columns: auto !important;
  gap: 24rem;
  padding-top: 38rem;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .access-guidance.wp-block-group {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    grid-auto-flow: row;
    -moz-column-gap: 35rem;
         column-gap: 35rem;
    row-gap: 99rem;
    margin-bottom: 107rem;
    overflow: visible;
    padding-top: 40rem;
  }
}

.access-guidance::-webkit-scrollbar {
  height: 3px;
  background-color: #DFDFDF;
  border-radius: 999px;
}

.access-guidance::-webkit-scrollbar-track {
  background-color: #DFDFDF;
}

.access-guidance::-webkit-scrollbar-thumb {
  background-color: #6AC5CF;
  border-radius: 999px;
  width: 50%;
}

.access-guidance__card.wp-block-group {
  width: 301rem;
  position: relative;
  margin-bottom: 53rem;
}
@media screen and (min-width: 768px) {
  .access-guidance__card.wp-block-group {
    width: 100%;
    margin-bottom: 0;
  }
}
.access-guidance__card.wp-block-group .wp-block-group__inner-container {
  height: 100%;
  display: flex;
  flex-direction: column;
}

p.access-guidance__num {
  position: absolute;
  font-family: "Avenir", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 34rem;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  background-color: #6AC5CF;
  color: #fff;
  width: 53rem;
  height: 53rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 0;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  p.access-guidance__num {
    width: 78rem;
    height: 78rem;
    font-size: 52rem;
  }
}

.access-guidance__img {
  border-radius: 20rem 20rem 0 0;
  overflow: hidden;
  width: 100%;
  height: auto;
  aspect-ratio: 301/158;
}
.access-guidance__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .access-guidance__img {
    aspect-ratio: 443/232;
  }
}

p.access-guidance__text {
  padding: 24rem 16rem;
  background-color: #EFF5F6;
  border-radius: 0 0 20rem 20rem;
  margin-bottom: 0;
  flex: 1;
  font-size: 12rem;
  line-height: 1.9166666667;
  letter-spacing: 0.05em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  p.access-guidance__text {
    padding: 34rem 20rem;
    font-size: 16rem;
    line-height: 1.875;
  }
}

/*----------------------------------------------------------
講師派遣事業に関するスタイル
----------------------------------------------------------*/
.instructor-theme--wrapper {
  gap: 36rem;
}
@media screen and (min-width: 768px) {
  .instructor-theme--wrapper {
    align-items: center;
    gap: 25rem;
  }
}

.instructor-theme {
  padding: 27rem 26rem 29rem;
  border-radius: 10rem;
}
@media screen and (min-width: 768px) {
  .instructor-theme {
    width: 100%;
    margin-bottom: 0;
    padding: 37rem 33rem;
    border-radius: 20rem;
  }
}

.instructor-theme.wp-block-group {
  margin-bottom: 0;
}

.instructor-theme--green {
  background-color: #E9FFE6;
}
.instructor-theme--green h3 {
  background-color: #6FB768;
}
.instructor-theme--green .instructor-theme__list--num {
  color: #6FB768;
}
.instructor-theme--green .instructor-theme__img {
  width: 71rem;
  top: 50%;
}
@media screen and (min-width: 768px) {
  .instructor-theme--green .instructor-theme__img {
    width: 124rem;
    top: 20%;
  }
}

.instructor-theme--orange {
  background-color: #FFEDC9;
}
.instructor-theme--orange h3 {
  background-color: #ECA823;
}
.instructor-theme--orange .instructor-theme__list--num {
  color: #ECA823;
}
.instructor-theme--orange .instructor-theme__img {
  width: 67rem;
  top: 50%;
}
@media screen and (min-width: 768px) {
  .instructor-theme--orange .instructor-theme__img {
    width: 102rem;
    top: 30%;
  }
}

.instructor-theme--pink {
  background-color: #FFDFE6;
}
.instructor-theme--pink h3 {
  background-color: #E9728A;
}
.instructor-theme--pink .instructor-theme__list--num {
  color: #E9728A;
}
.instructor-theme--pink .instructor-theme__img {
  width: 63rem;
  top: 50%;
}
@media screen and (min-width: 768px) {
  .instructor-theme--pink .instructor-theme__img {
    width: 96rem;
    top: 35%;
  }
}

.instructor-theme__title.wp-block-group {
  position: relative;
  justify-content: center;
  width: 100%;
  margin-bottom: 20rem;
}
@media screen and (min-width: 768px) {
  .instructor-theme__title.wp-block-group {
    max-width: 1200px;
    margin-inline: auto;
    margin-bottom: 19rem;
  }
}
.instructor-theme__title.wp-block-group h3 {
  font-weight: 700;
  text-align: center;
  width: 100%;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding: 7rem;
  border-radius: 31rem;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .instructor-theme__title.wp-block-group h3 {
    font-size: 27rem;
    line-height: 1.4444444444;
    padding-block: 12rem 11rem;
    border-radius: 999px;
  }
}
.instructor-theme__title.wp-block-group h3:before {
  display: none;
}

.instructor-theme__img {
  position: absolute;
  height: auto;
  right: 17rem;
  translate: 0 -50%;
}
.instructor-theme__img img {
  margin-bottom: 0;
}

.instructor-theme__list {
  padding: 25rem 24rem 40rem;
  background-color: #fff;
  border-radius: 10rem;
  gap: 14rem;
}
@media screen and (min-width: 768px) {
  .instructor-theme__list {
    max-width: 1200px;
    margin-inline: auto;
    min-height: 195rem;
  }
}
.instructor-theme__list .wp-block-group {
  margin-bottom: 18rem;
}
.instructor-theme__list .wp-block-group:last-child {
  margin-bottom: 0;
}
.instructor-theme__list p {
  margin-bottom: 0;
  line-height: 1.7857142857;
  font-size: 14rem;
}
@media screen and (min-width: 768px) {
  .instructor-theme__list p {
    font-size: 18rem;
  }
}

.instructor-theme__column {
  gap: 43rem;
}
@media screen and (min-width: 768px) {
  .instructor-theme__column {
    width: 100%;
    gap: 36rem;
  }
}

p.instructor-theme__list--num {
  font-size: 20rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}
@media screen and (min-width: 768px) {
  p.instructor-theme__list--num {
    font-size: 30rem;
  }
}

p.instructor-price__text {
  line-height: 1.875;
  letter-spacing: 0.05em;
  margin-bottom: 76rem;
}
@media screen and (min-width: 768px) {
  p.instructor-price__text {
    font-size: 23rem;
    line-height: 1.4782608696;
    margin-bottom: 83rem;
  }
}

.instructor-flow__column {
  gap: 0;
}
@media screen and (min-width: 768px) {
  .instructor-flow__column {
    margin-bottom: 111rem;
  }
}
.instructor-flow__column .wp-block-group {
  margin-bottom: 0;
  gap: 0;
}
.instructor-flow__column p {
  margin-bottom: 0;
  font-size: 14rem;
  font-weight: 500;
  line-height: 2.1428571429;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .instructor-flow__column p {
    font-size: 18rem;
    line-height: 2.1111111111;
  }
}

.instructor-flow__list--wrapper.wp-block-group {
  align-items: center;
}
@media screen and (min-width: 768px) {
  .instructor-flow__list--wrapper.wp-block-group {
    align-items: flex-start;
  }
}

.instructor-flow__list.wp-block-group {
  gap: 22rem;
  margin-bottom: 30rem;
}
@media screen and (min-width: 768px) {
  .instructor-flow__list.wp-block-group {
    gap: 16rem;
    margin-bottom: 41rem;
  }
}

p.instructor-flow__list--num {
  font-size: 21rem;
  font-weight: 700;
  color: #fff;
  width: 32rem;
  height: 32rem;
  background-color: #6AC5CF;
  display: grid;
  place-items: center;
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 11rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  p.instructor-flow__list--num {
    font-size: 30rem;
    width: 44rem;
    height: 44rem;
    margin-top: -4rem;
    margin-right: 21rem;
  }
}

.instructor-flow__list-img {
  margin-top: 51rem;
  margin-bottom: 98rem;
  width: 79.0697674419%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .instructor-flow__list-img {
    margin-top: 0;
    margin-bottom: 0;
    width: 100%;
  }
}
.instructor-flow__list-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/*----------------------------------------------------------
セミナー・講習会ページ記事用スタイル
----------------------------------------------------------*/
.seminar-table--wrapper {
  margin-top: 58rem;
}
@media screen and (min-width: 768px) {
  .seminar-table--wrapper {
    margin-top: 61rem;
  }
}

.seminar-table {
  margin-top: 25rem;
  border: 1px solid #EFF5F6;
}
@media screen and (min-width: 768px) {
  .seminar-table {
    margin-top: 40rem;
  }
}
.seminar-table td {
  border: none;
  padding: 12rem 12rem 16rem;
}
@media screen and (min-width: 768px) {
  .seminar-table td {
    padding: 19rem 24rem 25rem;
  }
}
.seminar-table td:first-child {
  background-color: #EFF5F6;
  width: 111rem;
  text-align: center;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .seminar-table td:first-child {
    width: 278rem;
    font-size: 22rem;
  }
}
.seminar-table td:last-child {
  font-size: 14rem;
  line-height: 2.1428571429;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .seminar-table td:last-child {
    font-size: 18rem;
    line-height: 2.1111111111;
  }
}
.seminar-table td:last-child strong {
  font-weight: 900;
}
.seminar-table tr:nth-child(even) {
  background-color: #f9f9f9;
}
.seminar-table tr:not(:last-child) {
  border-bottom: 1px solid #fff;
}

/*----------------------------------------------------------
レシピページ全記事表示部のスタイル
----------------------------------------------------------*/
.recipe-top {
  margin-top: 71rem;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .recipe-top {
    margin-top: 61rem;
  }
}

.recipe-top__text {
  margin-top: 33rem;
  font-weight: 500;
  font-size: 14rem;
  line-height: 1.4285714286;
}
@media screen and (min-width: 768px) {
  .recipe-top__text {
    margin-top: 39rem;
    font-size: 18rem;
    line-height: 1.4444444444;
  }
}

.recipe-top__contents {
  margin-top: 47rem;
}
@media screen and (min-width: 768px) {
  .recipe-top__contents {
    margin-top: 53rem;
  }
}

.recipe-top__tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10rem;
}
@media screen and (min-width: 768px) {
  .recipe-top__tabs {
    gap: 20rem;
  }
}

.recipe-top__tab {
  width: calc(100% - 5rem);
  line-height: 1.7142857143;
  font-weight: 700;
  padding: 14rem;
  text-align: center;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .recipe-top__tab {
    width: calc(100% - 10rem);
    font-size: 25rem;
    line-height: 1.44;
    padding: 20rem;
  }
}

.recipe-top__tab[area-selected=false] {
  color: #4A4241;
}

.recipe-top__tab[area-selected=false]:hover {
  opacity: 0.7;
  cursor: pointer;
}

.recipe-top__tab--green[area-selected=true] {
  background-color: #6FB768;
  color: #fff;
}

.recipe-top__tab--pink[area-selected=true] {
  background-color: #E9728A;
  color: #fff;
}

.recipe-top__panel {
  align-items: center;
  grid-template-columns: 1fr;
  gap: 35rem;
  padding-top: 53rem;
  padding-bottom: 117rem;
  padding-inline: 27rem;
  display: none;
}
@media screen and (min-width: 768px) {
  .recipe-top__panel {
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 47rem;
         column-gap: 47rem;
    row-gap: 72rem;
    padding-top: 85rem;
    padding-bottom: 1px 5rem;
    padding-inline: 100rem;
    align-items: flex-start;
  }
}
.recipe-top__panel.js-show {
  display: grid;
}

.recipe-top__panel--green {
  background-color: #E9FFE6;
}
.recipe-top__panel--green .recipe-top__panel-head {
  background-color: #6FB768;
}

.recipe-top__panel--pink {
  background-color: #FFDFE6;
}
.recipe-top__panel--pink .recipe-top__panel-head {
  background-color: #E9728A;
}

.recipe-top__panel-item {
  width: 100%;
  border-radius: 20rem;
  overflow: hidden;
  max-width: 336px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .recipe-top__panel-item {
    max-width: initial;
  }
}

.recipe-top__panel-img {
  width: 100%;
  height: auto;
  aspect-ratio: 332/205;
}
@media screen and (min-width: 768px) {
  .recipe-top__panel-img {
    aspect-ratio: 369/252;
  }
}
.recipe-top__panel-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.recipe-top__panel-head {
  text-align: center;
  color: #fff;
  font-size: 17rem;
  line-height: 1.4705882353;
  padding: 16rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  min-height: 80rem;
}
@media screen and (min-width: 768px) {
  .recipe-top__panel-head {
    font-size: 22rem;
    line-height: 1.4545454545;
    min-height: 98rem;
    padding: 17rem;
  }
}

/*----------------------------------------------------------
レシピページ記事用スタイル
----------------------------------------------------------*/
.recipe-contents {
  margin-top: 51rem;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .recipe-contents {
    margin-top: 61rem;
  }
}

.recipe-contents__main {
  margin-top: 37rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 31rem;
}
@media screen and (min-width: 768px) {
  .recipe-contents__main {
    margin-top: 44rem;
    flex-direction: row;
    align-items: flex-start;
    gap: 43rem;
  }
}

.recipe-contents__img {
  width: 100%;
  max-width: 390px;
  height: auto;
  aspect-ratio: 390/260;
}
@media screen and (min-width: 768px) {
  .recipe-contents__img {
    max-width: none;
    width: 844rem;
  }
}
.recipe-contents__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.recipe-contents__detail {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .recipe-contents__detail {
    width: 513rem;
  }
}

.recipe-contents__info:not(:first-child) {
  margin-top: 23rem;
}
@media screen and (min-width: 768px) {
  .recipe-contents__info:not(:first-child) {
    margin-top: 47rem;
  }
}

.recipe-contents__info-head {
  text-align: center;
  color: #fff;
  font-weight: 700;
  padding: 10rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .recipe-contents__info-head {
    font-size: 20rem;
    line-height: 1.45;
  }
}

.recipe-contents__text {
  text-align: center;
  display: flex;
  justify-content: space-between;
  padding-block: 15rem;
  padding-inline: 26rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .recipe-contents__text {
    padding-block: 17rem;
    padding-inline: 39rem;
    font-size: 18rem;
    line-height: 1.4444444444;
  }
}

.recipe-contents__text:not(:has(span)) {
  display: block;
  text-align: center;
}

.recipe-contents--recipe_01 .lower-section__title::before {
  background-color: #6FB768;
}
.recipe-contents--recipe_01 .lower-section__title-sub::before {
  background-color: #6FB768;
}
.recipe-contents--recipe_01 .recipe-contents__info-head {
  background-color: #6FB768;
}
.recipe-contents--recipe_01 .recipe-contents__text:nth-child(odd) {
  background-color: #E9FFE6;
}
.recipe-contents--recipe_01 .recipe-contents__text:nth-child(even) {
  background-color: #F6FFF5;
}
.recipe-contents--recipe_01 .recipe-contents__howto-step--num {
  background-color: #6FB768;
}

.recipe-contents--recipe_02 .lower-section__title::before {
  background-color: #E9728A;
}
.recipe-contents--recipe_02 .lower-section__title-sub::before {
  background-color: #E9728A;
}
.recipe-contents--recipe_02 .recipe-contents__info-head {
  background-color: #E9728A;
}
.recipe-contents--recipe_02 .recipe-contents__text:nth-child(odd) {
  background-color: #FFDFE6;
}
.recipe-contents--recipe_02 .recipe-contents__text:nth-child(even) {
  background-color: #FEF2F5;
}
.recipe-contents--recipe_02 .recipe-contents__howto-step--num {
  background-color: #E9728A;
}

.recipe-contents__links {
  margin-top: 29rem;
  display: flex;
  justify-content: center;
  gap: 13rem;
}
@media screen and (min-width: 768px) {
  .recipe-contents__links {
    margin-top: 41rem;
    gap: 17rem;
  }
}

.recipe-contents__link {
  width: 51rem;
  height: auto;
  aspect-ratio: 1;
}
@media screen and (min-width: 768px) {
  .recipe-contents__link {
    width: 65rem;
  }
}
.recipe-contents__link img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.recipe-contents__howto {
  margin-top: 73rem;
}
@media screen and (min-width: 768px) {
  .recipe-contents__howto {
    margin-top: 78rem;
  }
}

.recipe-contents__howto-steps {
  margin-top: 16rem;
}
@media screen and (min-width: 768px) {
  .recipe-contents__howto-steps {
    margin-top: 17rem;
  }
}

.recipe-contents__howto-step {
  padding-top: 17rem;
  padding-bottom: 17rem;
  border-bottom: 1px solid #D5D5D5;
  font-size: 14rem;
  font-weight: 500;
  line-height: 2.1428571429;
  display: flex;
  align-items: flex-start;
  gap: 10rem;
}
@media screen and (min-width: 768px) {
  .recipe-contents__howto-step {
    padding-top: 30rem;
    padding-bottom: 29rem;
    font-size: 18rem;
    line-height: 2.1111111111;
    gap: 21rem;
  }
}

.recipe-contents__howto-step--num {
  display: grid;
  width: 32rem;
  height: auto;
  aspect-ratio: 1;
  place-items: center;
  font-size: 21rem;
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .recipe-contents__howto-step--num {
    width: 44rem;
    font-size: 30rem;
  }
}

.recipe-contents__howto-step--text {
  flex: 1;
}

.recipe-contents__advice {
  margin-top: 44rem;
}
@media screen and (min-width: 768px) {
  .recipe-contents__advice {
    margin-top: 72rem;
  }
}

.recipe-contents__advice-text {
  margin-top: 33rem;
  font-weight: 500;
  line-height: 2.1428571429;
}
@media screen and (min-width: 768px) {
  .recipe-contents__advice-text {
    margin-top: 34rem;
    font-size: 18rem;
    line-height: 2.1111111111;
  }
}

.recipe-contents__btn-wrapper {
  display: flex;
  margin-top: 73rem;
}
@media screen and (min-width: 768px) {
  .recipe-contents__btn-wrapper {
    margin-top: 70rem;
    justify-content: center;
  }
}

/*----------------------------------------------------------
職員採用情報ページのスタイル
----------------------------------------------------------*/
.recruit-card__list {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 40rem;
  gap: 16rem;
}
@media screen and (min-width: 768px) {
  .recruit-card__list {
    margin-top: 64rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 24rem;
  }
}

.recruit-card {
  border: 1px solid #D5D5D5;
  padding: 16rem;
}
@media screen and (min-width: 768px) {
  .recruit-card {
    padding: 24rem;
  }
}

.recruit-card__title {
  font-size: 18rem;
  font-weight: bold;
  color: #6AC5CF;
}
@media screen and (min-width: 768px) {
  .recruit-card__title {
    font-size: 24rem;
  }
}

.recruit-card__meta {
  margin-top: 16rem;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
@media screen and (min-width: 768px) {
  .recruit-card__meta {
    margin-top: 24rem;
    gap: 12rem;
  }
}

.recruit-card__meta dl {
  display: flex;
  align-items: center;
  gap: 8rem;
}
@media screen and (min-width: 768px) {
  .recruit-card__meta dl {
    gap: 24rem;
  }
}

.recruit-card__meta dt {
  color: #fff;
  flex-shrink: 0;
  width: 80rem;
  display: grid;
  place-items: center;
  background-color: #6AC5CF;
  padding: 4rem;
  font-size: 14rem;
}
@media screen and (min-width: 768px) {
  .recruit-card__meta dt {
    width: 120rem;
    padding: 8rem;
    font-size: 16rem;
  }
}

.recruit-card__meta dd {
  flex: 1;
  line-height: 1.5;
  font-size: 14rem;
}
@media screen and (min-width: 768px) {
  .recruit-card__meta dd {
    font-size: 16rem;
  }
}

.recruit-card__date {
  margin-top: 8rem;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .recruit-card__date {
    margin-top: 16rem;
    font-size: 20rem;
  }
}

.recruit-btn--wrapper {
  margin-top: 40rem;
}
@media screen and (min-width: 768px) {
  .recruit-btn--wrapper {
    margin-top: 64rem;
    justify-content: center;
  }
}

/*----------------------------------------------------------
職員採用情報記事のスタイル
----------------------------------------------------------*/
.recruit-article {
  margin-top: 40rem;
  border: 2px solid #6AC5CF;
  padding: 16rem 16rem 40rem;
}
@media screen and (min-width: 768px) {
  .recruit-article {
    margin-top: 64rem;
    padding: 32rem 32rem 80rem;
  }
}

.recruit-header__meta {
  margin-top: 16rem;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .recruit-header__meta {
    margin-top: 24rem;
    font-size: 20rem;
  }
}

.recruit-content {
  margin-top: 24rem;
}
@media screen and (min-width: 768px) {
  .recruit-content {
    margin-top: 40rem;
  }
}

.recruit-content__form {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

.recruit-content__form tr {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .recruit-content__form tr {
    flex-direction: row;
    width: 100%;
  }
}

.recruit-content__form th,
.recruit-content__form td {
  border: 1px solid #D5D5D5;
  padding: 8rem;
  text-align: left;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .recruit-content__form th,
  .recruit-content__form td {
    padding: 16rem;
    font-size: 18rem;
  }
}

.recruit-content__form th {
  font-weight: 700;
  background-color: #6AC5CF;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .recruit-content__form th {
    width: 360rem;
  }
}

@media screen and (min-width: 768px) {
  .recruit-content__form td {
    width: calc(100% - 360rem);
  }
}

.recruit-btn--wrapper {
  flex-direction: column;
  gap: 16rem;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .recruit-btn--wrapper {
    flex-direction: row;
    gap: 24rem;
  }
}

/*----------------------------------------------------------
応募フォームのスタイル
----------------------------------------------------------*/
.color-red {
  color: red;
}

.amiBox {
  padding: 16rem;
  background-color: #f2f2f2;
}
.amiBox p {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .amiBox {
    padding: 32rem;
  }
}

p.text-bold {
  font-weight: 700;
}

p.text-bigger {
  font-size: 24rem;
}
@media screen and (min-width: 768px) {
  p.text-bigger {
    font-size: 28rem;
  }
}

.contact_table {
  margin-top: 24rem;
}
@media screen and (min-width: 768px) {
  .contact_table {
    margin-top: 32rem;
  }
}

.contact-form {
  border-collapse: collapse;
  width: 100%;
}

.contact-form tr {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .contact-form tr {
    flex-direction: row;
  }
}

.contact-form th,
.contact-form td {
  width: 100%;
  border: 1px solid #D5D5D5;
  text-align: left;
  padding: 8rem;
}
@media screen and (min-width: 768px) {
  .contact-form th,
  .contact-form td {
    padding: 16rem;
  }
}

.contact-form th {
  background-color: #6AC5CF;
  color: #fff;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .contact-form th {
    width: 300rem;
  }
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 8rem;
}

.contact-form input[type=radio] {
  width: -moz-fit-content;
  width: fit-content;
}

.contact-form textarea {
  height: 150rem;
}

.contact-form select {
  width: -moz-fit-content;
  width: fit-content;
  padding: 8rem;
}

.p-region {
  margin-top: 8rem;
}

.p-locality {
  margin-top: 8rem;
}

.frameBox {
  margin-top: 24rem;
}
@media screen and (min-width: 768px) {
  .frameBox {
    margin-top: 40rem;
  }
}
.frameBox h5 {
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .frameBox h5 {
    font-size: 20rem;
  }
}

.tac {
  text-align: center;
}

#contact_table-btn {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
@media screen and (min-width: 768px) {
  #contact_table-btn {
    margin-top: 40rem;
    flex-direction: row;
    gap: 16rem;
  }
}

#contact_table-btn input {
  cursor: pointer;
  width: 339rem;
  padding-top: 18.5rem;
  padding-bottom: 17.1rem;
  text-align: center;
  border-radius: 999rem;
  font-size: 14rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4285714286;
  color: #fff;
  text-decoration: none;
  background-color: #E69645;
  border: none;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  #contact_table-btn input {
    width: 481rem;
    padding-block: 24.9rem;
    font-size: 20rem;
    line-height: 1.45;
  }
}
#contact_table-btn input:hover {
  opacity: 0.8;
}

#contact_table-btn input[name=submitBack] {
  background-color: #6AC5CF;
}

#contact_table-btn input[name=submit] {
  background-color: #E69645;
}

/*----------------------------------------------------------
施設案内ページ内のテーブルスタイル
----------------------------------------------------------*/
.facility-table {
  overflow-x: initial;
}

.facility-table thead {
  border: none;
}

.facility-table thead th {
  background-color: #6AC5CF;
  color: #fff;
  border: 1px solid #D5D5D5;
}

.facility-table td {
  vertical-align: top;
  padding: 8rem;
  border: 1px solid #D5D5D5;
}
@media screen and (min-width: 768px) {
  .facility-table td {
    padding: 16rem;
  }
}

.facility-table img {
  margin-bottom: 0;
}

/* =========================================================
.tooltip（バリアフリーアイコン用）
========================================================= */
.tooltip {
  position: relative;
  display: inline-block;
  margin: 2rem;
}

.tooltip:hover, .tooltip:active {
  overflow: visible;
}

.tooltip::before,
.tooltip::after {
  position: absolute;
  transition: all 0.1s ease;
  visibility: hidden;
}

.tooltip::before {
  content: "";
  border: 10px solid transparent;
  border-bottom-color: #0074df;
  top: 100%;
  left: 10rem;
  z-index: 3;
}

.tooltip::after {
  content: attr(data-tooltip);
  display: block;
  padding: 10rem;
  background: #0074df;
  color: #fff;
  border-radius: 5px;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 50vw;
  max-width: 200px;
  z-index: 3;
}

.tooltip.pc-center::after {
  left: 50%;
  transform: translate(-50%, 0%);
}

.tooltip.pc-left::after {
  left: 0;
  transform: translate(0, 0);
}

.tooltip.pc-right::after {
  right: 0;
  left: auto;
  transform: translate(0, 0);
}

@media screen and (max-width: 768px) {
  .tooltip.sp-center::after {
    left: 50%;
    transform: translate(-50%, 0%);
  }
}
@media screen and (max-width: 768px) {
  .tooltip.pc-left::after {
    left: 0;
    transform: translate(0, 0);
  }
}
@media screen and (max-width: 768px) {
  .tooltip.pc-right::after {
    right: 0;
    left: auto;
    transform: translate(0, 0);
  }
}
.tooltip:hover::before, .tooltip:active::before {
  top: calc(100% - 10px);
  visibility: visible;
  z-index: 3;
}

.tooltip:hover::after, .tooltip:active::after {
  top: calc(100% + 10px);
  visibility: visible;
  z-index: 3;
}/*# sourceMappingURL=style.css.map */