@charset "UTF-8";
/*
Theme Name: hoc-template01-kn
Theme URI: https://www.ishidasika.com/
Version: 1.1
Author: OWNDMEDIA.LAB
*/
/* ************************************************************************************************
   共通
   ************************************************************************************************ */
:root {
  /* font */
  --theme-font-serif: "Noto Serif JP", serif;
  /* color */
  --color-main: #141970;
  --color-sub: #E3F2FD;
  --color-accent: #E6C229;
  --color-text: #454545;
  --color-light-gray: #f4f4f5;
  --color-gray: #BABABE;
  --color-dark-gray: #525360;
  --color-border: #ddd;
  --color-bg: #fff;
  /*----- font-size -----*/
  --small-2: clamp(1.4rem, 1.1vw, 1.6rem);
  --small-1: clamp(1.2rem, 1vw, 1.4rem);
  --large-1: clamp(1.6rem, 2vw, 2rem);
  --large-2: clamp(1.8rem, 2.5vw, 2.4rem);
  --large-3: clamp(2.2rem, 3vw, 2.8rem);
  --large-4: clamp(2.6rem, 3.5vw, 3.6rem);
  --large-5: clamp(3rem, 4vw, 5rem);
  /*----- space -----*/
  --space-1: clamp(1.5rem, 2vw, 3rem);
  --space-2: clamp(2rem, 3vw, 4rem);
  --space-3: clamp(3rem, 4vw, 6rem);
  --space-4: clamp(4rem, 4.5vw, 8rem);
  --space-5: clamp(4rem, 6vw, 10rem);
  /*----- transition -----*/
  --transitions-1: all .4s;
  /*----- box-shadow -----*/
  --shadow-1: 0 8px 20px rgba(0, 0, 0, 0.15);
  --shadow-2: 0 3px 12px rgba(0, 0, 0, 0.12);
}

html,
body {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
  /*ベースを10pxに設定*/
  letter-spacing: 0.2em;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: var(--color-text);
  background: #fff;
}

h2 {
  font-size: 3.2rem;
}

h3 {
  font-size: 2.8rem;
  line-height: 1.8;
}

h4 {
  font-size: 2.5rem;
  line-height: 1.8;
}

h5 {
  font-size: 2rem;
  line-height: 1.8;
}

p {
  font-size: var(--small-2);
  line-height: 2;
  font-weight: 400;
}

a {
  font-size: var(--small-2);
  text-decoration: none;
}

/* フォント */
.font-serif--normal {
  font-family: var(--theme-font-serif);
  font-weight: 500;
}

.font-serif--lighter {
  font-family: var(--theme-font-serif);
  font-weight: 300;
}

/* 画像 */
.contents__img--cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  display: block;
}

/* 改行 */
.br_sp {
  display: none;
}

/*スマホだけ改行 */
.br_pc {
  display: block;
}

/*PCだけ改行 */
/* マウスドラッグした時の文字色 */
::-moz-selection {
  background: var(--color-sub);
  color: #fff;
}
::selection {
  background: var(--color-sub);
  color: #fff;
}

/* ページ全体の余白など */
#page {
  overflow: hidden;
  width: 100%;
}

.container--wide {
  width: min(1280px, 95%);
  margin-inline: auto;
}

.container {
  width: min(960px, 95%);
  margin-inline: auto;
}

/* 装飾線 */
.main__line {
  display: block;
  margin: 1rem auto 2rem;
}

.sub__line {
  display: block;
  margin: 1.5rem auto 3rem;
}

/* メニュー非表示 */
.display-menu--none {
  display: none !important;
}

/* ボタン */
.contents-btn a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1rem 2rem;
  min-width: 230px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: var(--small-1);
  color: var(--color-main);
  border: 1px solid var(--color-main);
  border-radius: 6px;
  background-color: transparent;
  -webkit-transition: var(--transitions-1);
  transition: var(--transitions-1);
}
.contents-btn a::after {
  font-family: "Material Symbols Outlined";
  content: "line_end_arrow_notch";
  display: inline-block;
  font-size: 1.8rem;
  color: var(--color-main);
  margin-left: 0.5em;
  -webkit-transition: var(--transitions-1);
  transition: var(--transitions-1);
}
.contents-btn a:hover {
  color: #fff;
  background-color: var(--color-main);
}
.contents-btn a:hover::after {
  color: #fff;
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}

/***** 予約ボタン *****/
.reserve-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  margin: var(--space-2) 0;
}
.reserve-buttons a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  padding: 2rem 1rem;
  min-width: 200px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: var(--small-1);
  color: #fff;
  background: var(--color-main);
  border: 1px solid var(--color-main);
  border-radius: 6px;
  -webkit-transition: var(--transitions-1);
  transition: var(--transitions-1);
}
.reserve-buttons a span {
  -webkit-transition: var(--transitions-1);
  transition: var(--transitions-1);
}
.reserve-buttons a:hover {
  color: var(--color-main);
  background: #fff;
}
.reserve-buttons a:hover .span {
  color: var(--color-main);
}

/***** CTAボタン *****/
.floating-buttons {
  position: fixed;
  top: 20%;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-box-shadow: var(--shadow-2);
          box-shadow: var(--shadow-2);
  -webkit-transform: translateX(calc(100% - 60px));
          transform: translateX(calc(100% - 60px));
  -webkit-transition: var(--transitions-1);
  transition: var(--transitions-1);
}

.floating-buttons.visible {
  opacity: 1;
  visibility: visible;
}

.floating-buttons:hover {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.floating-button {
  background-color: var(--color-accent);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  white-space: nowrap;
  font-size: 1.6rem;
  padding-right: 30px;
  -webkit-transition: var(--transitions-1);
  transition: var(--transitions-1);
}
.floating-button:hover {
  background-color: var(--color-gray);
}

.floating-button .material-symbols-outlined {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: var(--transitions-1);
  transition: var(--transitions-1);
}

/***** 見出し *****/
.index__ttl {
  text-align: center;
  margin-bottom: 6rem;
  font-family: "lbrite";
  font-weight: bold;
  letter-spacing: 0.1em;
}

/***** ヘッダー *****/
header {
  height: 80px;
  background-color: rgb(255, 255, 255);
  position: fixed;
  top: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 100%;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

.header__container {
  height: 80px;
  width: min(1800px, 96%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-inline: auto;
}

.header__ttl a {
  display: block;
}
.header__ttl img {
  width: clamp(220px, 23vw, 320px);
}

.header-nav {
  height: 100%;
}

.header-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  height: 100%;
}
.header-nav__list .menu-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.header-nav__list .menu-item > a {
  font-family: var(--theme-font-serif);
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--color-main);
  display: block;
  padding: clamp(12px, 1vw, 16px);
  -webkit-transition: var(--transitions-1);
  transition: var(--transitions-1);
}
.header-nav__list .menu-item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}
.header-nav__list .menu-item:hover > a {
  font-family: var(--theme-font-serif);
  font-weight: 500;
  color: var(--color-gray);
}
.header-nav__list .sub-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  border-radius: 0 0 6px 6px;
  -webkit-box-shadow: 0px 10px 10px -10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 10px -10px rgba(0, 0, 0, 0.1);
  -webkit-transition: var(--transitions-1);
  transition: var(--transitions-1);
}
.header-nav__list .sub-menu .menu-item a {
  width: 100%;
  display: block;
  text-align: center;
  background: #fff;
  -webkit-transition: var(--transitions-1);
  transition: var(--transitions-1);
}
.header-nav__list .sub-menu .menu-item a:hover {
  color: #fff;
  background: var(--color-main);
}

#nav-drawer {
  display: none;
}

/***** 下層ページヘッダー部分 *****/
.header-sub {
  background-image: url(images/subpage/sub_header.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  width: 100vw;
  height: 70vh;
  position: relative;
}
.header-sub::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 71, 132, 0.3);
  pointer-events: none;
  z-index: 1;
}

.header-sub.clinic {
  background-image: url(images/subpage/clinic_header.jpg);
}

.header-sub.general {
  background-image: url(images/subpage/general_header.jpg);
}

.header-sub.esthetic {
  background-image: url(images/subpage/esthetic_header.jpg);
}

.header-sub.implant {
  background-image: url(images/subpage/implant_header.jpg);
}

.header-sub.faq {
  background-image: url(images/subpage/faq_header.jpg);
}

.header-sub.news {
  background-image: url(images/subpage/news_header.jpg);
}

.header-sub.category {
  background-image: url(images/subpage/category_header.jpg);
}

.header-sub.p-recruit {
  background-image: url(images/subpage/recruit_header.jpg);
}

.header-sub__item {
  text-align: center;
  position: absolute;
  width: 70%;
  height: 100px;
  top: 15%;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 2;
}

.header-sub__ttl {
  margin-bottom: 1.5rem;
  font-family: var(--theme-font-serif);
  font-weight: 500;
  font-size: var(--large-4);
  color: #fff;
}

.header-sub__txt {
  color: #fff;
}

/***** フッター *****/
footer {
  text-align: center;
  margin-top: 8rem;
}

.footer__menu .footer-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.footer__menu .footer-nav__list .menu-item a {
  display: block;
  color: #fff;
  line-height: 1.4;
  padding: 0.5em 1em;
}

.footer__sns {
  margin-top: 2rem;
}
.footer__sns .footer-sns__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.footer__sns .footer-sns__list a {
  display: inline-block;
}

.footer__icon {
  margin: 0 0.7rem;
}

.copy {
  margin-top: var(--space-3);
}

small {
  color: #fff;
  font-size: 1.2rem;
}

/***** アクセス *****/
.index__ttl {
  text-align: center;
  margin-bottom: 6rem;
  font-family: "lbrite";
  font-weight: bold;
  letter-spacing: 0.1em;
}

.access {
  padding: clamp(6rem, 8vw, 12rem) 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(20, 25, 112, 0.8)), to(rgba(159, 216, 255, 0)));
  background: linear-gradient(to top, rgba(20, 25, 112, 0.8), rgba(159, 216, 255, 0));
}
.access__contents {
  display: grid;
  grid-template-columns: 2fr 1fr;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: var(--space-3);
  background: #fff;
  padding: 4rem;
}
.access__contents-item.right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
.access__sub-contents {
  margin-top: var(--space-2);
  border: 1px solid #fff;
  padding: 3rem 2rem;
}
.access__sub-contents h4 {
  text-align: center;
  color: #fff;
  margin-bottom: 2rem;
}
.access__logo {
  margin-bottom: 1rem;
}
.access__logo img {
  width: clamp(220px, 23vw, 320px);
}
.access__logo a {
  display: inline-block;
}
.access__address {
  font-size: var(--small-2);
  line-height: 1.8;
  color: var(--color-main);
}
.access__details li:not(:last-child) {
  margin-bottom: 1rem;
}
.access__details span {
  font-size: var(--small-2);
  font-weight: bold;
  background: var(--color-sub);
  display: inline-block;
  padding: 0.5em 1em;
  margin-bottom: 0.5rem;
  border-radius: 6px;
}

.clinic-schedule {
  width: 100%;
  font-size: var(--small-1);
}
.clinic-schedule .time {
  width: min(130px, 100%);
}
.clinic-schedule th:first-child {
  text-align: left;
}
.clinic-schedule th,
.clinic-schedule td {
  text-align: center;
  padding: 20px 5px;
  border-bottom: 1px solid var(--color-border);
}
.clinic-schedule__txt {
  font-size: var(--small-1);
  margin-top: 1rem;
}

.clinic-group-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem 3rem;
}
.clinic-group-list a {
  color: #fff;
  text-decoration: underline;
}

.access__txt {
  margin-bottom: 1rem;
}

/* ************************************************************************************************
   front-page.php
   ************************************************************************************************ */
/***** 見出し *****/
.index__title {
  text-align: center;
  margin-bottom: var(--space-3);
}
.index__title .en {
  display: block;
  font-size: clamp(4rem, 8vw, 10rem);
  font-family: var(--theme-font-serif);
  font-weight: 300;
  line-height: 1.4;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(179, 220, 249, 0.6)), color-stop(60%, rgba(227, 242, 253, 0.3)));
  background: linear-gradient(to bottom, rgba(179, 220, 249, 0.6) 0%, rgba(227, 242, 253, 0.3) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-transform: capitalize;
  margin-bottom: -4rem;
}
.index__title .ja {
  font-size: var(--large-4);
  font-family: var(--theme-font-serif);
  font-weight: 500;
}

/***** メインイメージ *****/
.header-main {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}

.header-main__container::after {
  content: "KOSEI DENTAL CLINIC";
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  font-size: 8.6vw;
  color: rgba(255, 255, 255, 0.5);
  mix-blend-mode: overlay;
  line-height: 1;
  z-index: 2;
}

.header-main__inner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.header-main__img {
  position: relative;
}
.header-main__img::after {
  background-color: rgba(31, 71, 132, 0.3);
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.header-main__img img {
  width: 100%;
  height: 100vh;
  height: 100svh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  display: block;
}

.header-main__catch {
  position: absolute;
  bottom: 30%;
  left: 5%;
  color: #fff;
  opacity: 0;
  -webkit-transition: opacity 1.2s ease;
  transition: opacity 1.2s ease;
  z-index: 10;
}

.header-main__catch-txt {
  font-family: var(--theme-font-serif);
  font-weight: 500;
  font-size: var(--large-5);
}

.swiper-slide-active .header-main__catch {
  opacity: 1;
}

/***** メインインフォメーション *****/
.main-info {
  padding: 6rem 0;
}
.main-info__contents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
.main-info__item {
  position: relative;
}
.main-info__img {
  width: 100%;
  height: 450px;
}
.main-info__img img {
  border-radius: 12px 12px 12px 0;
}
.main-info__desc {
  position: relative;
  width: calc(100% - 50px);
  padding: 3rem 2rem;
  margin-top: -6rem;
  border-top-right-radius: 20px;
  background: #fff;
  z-index: 2;
}
.main-info__ttl .ja {
  font-family: var(--theme-font-serif);
  font-weight: 500;
  font-size: var(--large-3);
}
.main-info__ttl .en {
  font-size: 1.4rem;
  color: var(--color-accent);
  margin-top: 0.8em;
  display: block;
}
.main-info__btn {
  margin-top: var(--space-2);
}

/***** ごあいさつ *****/
.message {
  padding: clamp(4rem, 6vw, 8rem) 0;
  background: radial-gradient(circle at top left, #9fd8ff 0%, #3a75d2 30%, #141970 100%);
  color: #fff;
}
.message__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--space-5);
}
.message__img {
  width: 35%;
  aspect-ratio: 4/5;
}
.message__img img {
  border-radius: 6px;
  -webkit-box-shadow: var(--shadow-1);
          box-shadow: var(--shadow-1);
}
.message__desc {
  width: 65%;
}
.message__name {
  text-align: right;
  margin-top: var(--space-5);
}
.message__name .doctor {
  display: block;
  font-size: var(--large-3);
}
.message__txt {
  line-height: 2.4;
}

/***** 診療内容 *****/
.treatments {
  padding: clamp(6rem, 8vw, 12rem) 0;
  background: radial-gradient(circle at top right, #9fd8ff 0%, #3a75d2 30%, #141970 100%);
  color: #fff;
}
.treatments__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  list-style: none;
  padding: 0;
  margin: 0;
}
.treatments__list-item {
  position: relative;
  border-bottom: 1px solid var(--color-border);
}
.treatments__list-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: calc(100% - 50px);
  background: var(--color-border);
}
.treatments__list-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-decoration: none;
  padding: 4rem 3rem;
  -webkit-transition: var(--transitions-1);
  transition: var(--transitions-1);
  border-top-right-radius: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.treatments__list-item a:hover {
  background: rgba(255, 255, 255, 0.3);
}
.treatments__list-item a:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.treatments__list-item a:hover .treatments__list-icon {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}
.treatments__list-item img {
  display: block;
  width: min(70px, 100%);
  height: auto;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.treatments__list-ttl {
  margin: 2rem 0;
}
.treatments__list-ttl .ja {
  font-size: var(--large-3);
}
.treatments__list-ttl .en {
  display: block;
  font-size: var(--small-1);
  line-height: 1.4;
  color: var(--color-accent);
}
.treatments__list-icon {
  position: relative;
  padding: 15px;
  margin-left: auto;
  color: var(--color-main);
  -webkit-transition: var(--transitions-1);
  transition: var(--transitions-1);
  z-index: 1;
}
.treatments__list-icon::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  margin: auto;
  background: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  z-index: -1;
}

/***** ボックスインフォメーション *****/
.box-info__contents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--color-main);
}
.box-info__item {
  position: relative;
  overflow: hidden;
}
.box-info__item:not(:first-child) {
  border-left: 1px solid var(--color-main);
}
.box-info__item a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: var(--space-3);
  gap: var(--space-2);
  -webkit-transition: var(--transitions-1);
  transition: var(--transitions-1);
  z-index: 1;
}
.box-info__item:hover {
  background-color: transparent;
}
.box-info__item:hover .box-info__title .ja,
.box-info__item:hover .box-info__title .en {
  color: #fff;
}
.box-info__item:hover .box-info__img {
  opacity: 1;
}
.box-info__item:hover .box-info__img img {
  opacity: unset;
  padding: 1.5rem;
  -webkit-transition: var(--transitions-1);
  transition: var(--transitions-1);
}
.box-info__item:hover .box-info__icon {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}
.box-info__title {
  position: relative;
  z-index: 2;
  -webkit-transition: var(--transitions-1);
  transition: var(--transitions-1);
}
.box-info__title .ja {
  font-family: var(--theme-font-serif);
  font-weight: 500;
  font-size: var(--large-3);
}
.box-info__title .en {
  color: var(--color-accent);
  font-size: var(--small-1);
  margin-top: 0.8em;
  display: block;
}
.box-info__icon {
  position: relative;
  color: #fff;
  padding: 15px;
  margin-left: auto;
  -webkit-transition: var(--transitions-1);
  transition: var(--transitions-1);
  z-index: 1;
}
.box-info__icon::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--color-main);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  z-index: -1;
}
.box-info__img {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  -webkit-transition: var(--transitions-1);
  transition: var(--transitions-1);
  pointer-events: none;
}
.box-info__img img {
  -webkit-filter: blur(3px) brightness(0.8);
          filter: blur(3px) brightness(0.8);
  -webkit-transition: var(--transitions-1);
  transition: var(--transitions-1);
}

/***** 採用情報 *****/
.recruit {
  padding: clamp(6rem, 8vw, 12rem) 0;
  background: radial-gradient(circle at bottom left, #9fd8ff 0%, #3a75d2 30%, #141970 100%);
  color: #fff;
}
.recruit__contents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 4rem;
}
.recruit .index__title {
  text-align: left;
}
.recruit__btn {
  margin-top: var(--space-3);
}
.recruit__btn a {
  border: 1px solid #fff;
  color: #fff;
}
.recruit__btn a::after {
  color: #fff;
}
.recruit__btn a:hover {
  background: rgba(255, 255, 255, 0.3);
}
.recruit__img {
  aspect-ratio: 4/3;
}
.recruit__img img {
  border-radius: 6px;
  -webkit-box-shadow: var(--shadow-1);
          box-shadow: var(--shadow-1);
}

/***** ムービーコンテンツ *****/
.movie {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 21/9;
}
.movie::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
  z-index: 1;
}
.movie video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

/***** メインコンテンツ *****/
/* .main {
    padding: 8rem 0 2rem;
}

.main__contents1,
.main__contents2 {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6rem;
}

.main__item {
    width: 46%;
}

.main__ttl {
    text-align: center;
} */
/***** メニュー *****/
/* .menu {
    background-image: url(images/index/index_menu_bg.jpg);
    background-size: cover;
}

.menu__contents {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 840px;
    margin: 0 auto 3rem;
}

.menu__ttl {
    color: #5d576b;
    text-align: center;
    font-weight: bolder;
}

.menu__txt--state_current {
    text-align: center;
    color: #333;
}

.menu_readmore {
    text-align: right;
    font-family: 'Franklin';
    transition: .3s;
} */
/***** お知らせ *****/
.news {
  padding: clamp(6rem, 8vw, 12rem) 0;
}

.news__contents {
  margin-bottom: var(--space-3);
}

.news__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: clamp(2rem, 2vw, 3rem) 0;
  border-bottom: 1px dashed var(--color-border);
  -webkit-transition: var(--transitions-1);
  transition: var(--transitions-1);
}
.news__link:hover {
  background: var(--color-sub);
}
.news__link::after {
  font-family: "Material Symbols Outlined";
  content: "trending_flat";
  display: inline-block;
  color: var(--color-main);
  font-size: 1.8rem;
  margin-left: 1rem;
  -webkit-transition: var(--transitions-1);
  transition: var(--transitions-1);
}

.news__txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4rem;
}

.news__date {
  font-size: var(--small-1);
  color: var(--color-gray);
}

.news__ttl {
  margin: 0;
}

.news__btn a {
  margin-inline: auto;
}

/***** コラム *****/
.post {
  padding: clamp(6rem, 8vw, 12rem) 0;
}

.post__contents {
  margin-bottom: var(--space-3);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.post__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
.post__link:hover .post__thumbnail img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.post__thumbnail {
  aspect-ratio: 1;
  overflow: hidden;
}
.post__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  border-radius: 6px;
  -webkit-transition: var(--transitions-1);
  transition: var(--transitions-1);
}

.post__date {
  font-size: 1.4rem;
  color: var(--color-gray);
}

.post__ttl {
  margin-top: 0.5rem;
}

.post__btn a {
  margin-inline: auto;
}

/* ************************************************************************************************
   下層ページ共通
   ************************************************************************************************ */
.contents__title {
  text-align: center;
  margin-bottom: var(--space-3);
}
.contents__title .en {
  display: block;
  font-size: clamp(4rem, 8vw, 10rem);
  font-family: var(--theme-font-serif);
  font-weight: 300;
  line-height: 1.4;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(179, 220, 249, 0.6)), color-stop(60%, rgba(227, 242, 253, 0.3)));
  background: linear-gradient(to bottom, rgba(179, 220, 249, 0.6) 0%, rgba(227, 242, 253, 0.3) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-transform: capitalize;
  margin-bottom: -5rem;
}
.contents__title .ja {
  font-size: var(--large-4);
  font-family: var(--theme-font-serif);
  font-weight: 500;
}

.contents-item__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  font-size: var(--large-3);
  line-height: 1.4;
  background-color: var(--color-light-gray);
  padding: 1rem 2rem;
  margin-bottom: var(--space-2);
  border-radius: 12px;
}
.contents-item__title::before {
  content: "";
  display: block;
  height: 1lh;
  width: 2px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 25, 112, 0)), color-stop(50%, rgb(20, 25, 112)), to(rgba(20, 25, 112, 0)));
  background: linear-gradient(to bottom, rgba(20, 25, 112, 0) 0%, rgb(20, 25, 112) 50%, rgba(20, 25, 112, 0) 100%);
}

.page-links {
  padding: var(--space-2);
  background: radial-gradient(circle at top left, #9fd8ff 0%, #3a75d2 30%, #141970 100%);
  color: #fff;
}
.page-links__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem 3rem;
}
.page-links__list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: var(--small-2);
  line-height: 2;
  -webkit-transition: var(--transitions-1);
  transition: var(--transitions-1);
}
.page-links__list a:hover {
  opacity: 0.7;
}
.page-links__list a::after {
  font-family: "Material Symbols Outlined";
  content: "keyboard_arrow_down";
  display: inline-block;
  margin-left: 0.5em;
  -webkit-transition: var(--transitions-1);
  transition: var(--transitions-1);
}

.page-background--full {
  position: relative;
  width: 100%;
  height: 60vh;
}
.page-background--full::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 71, 132, 0.3);
  pointer-events: none;
  z-index: 1;
}

.notice {
  font-size: var(--small-1);
  margin-top: 1rem;
}
.notice span {
  color: var(--color-main);
  font-weight: bold;
}

/* パンくずリスト */
.breadcrumb {
  width: 100%;
  padding: 0 var(--space-1);
  margin: var(--space-1) 0;
}
.breadcrumb li {
  display: inline-block;
  position: relative;
  margin-right: 3rem;
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
.breadcrumb li:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--color-gray);
  border-right: 2px solid var(--color-gray);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  right: -1.8rem;
  bottom: 0.4rem;
}
.breadcrumb li a {
  font-size: 1.4rem;
  -webkit-transition: var(--transitions-1);
  transition: var(--transitions-1);
}
.breadcrumb li a:hover {
  color: var(--color-main);
}

/* ************************************************************************************************
   page-clinic.php
   ************************************************************************************************ */
/***** ご挨拶 *****/
.page-message {
  padding: var(--space-4) 0;
}
.page-message__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: var(--space-5);
}
.page-message__img {
  width: 35%;
  aspect-ratio: 4/5;
}
.page-message__img img {
  border-radius: 6px;
}
.page-message__desc {
  width: 65%;
}
.page-message__name {
  text-align: right;
  margin: 4rem 0;
}
.page-message__name .clinic {
  color: var(--color-main);
}
.page-message__name .doctor {
  display: block;
  font-size: var(--large-3);
}
.page-message__box {
  padding: var(--space-2);
  background: var(--color-sub);
}
.page-message__box h3 {
  font-size: var(--large-2);
  font-weight: bold;
  color: var(--color-main);
  margin-bottom: 1rem;
}
.page-message__box ul:nth-child(2) {
  margin-bottom: var(--space-1);
}
.page-message__box li {
  font-size: var(--small-2);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

/***** 医院概要 *****/
.page-overview__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: var(--space-5);
  margin-bottom: 8rem;
}
.page-overview__item:not(:last-child) {
  margin-bottom: 8rem;
}
.page-overview__desc {
  width: 55%;
}
.page-overview__images {
  width: 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: var(--space-3);
}
.page-overview__images img {
  border-radius: 6px;
}
.page-overview__img:nth-child(1) {
  width: 85%;
}
.page-overview__img:nth-child(2) {
  aspect-ratio: 4/5;
  width: 55%;
  margin-left: auto;
}
.page-overview__desc h4 {
  font-family: var(--theme-font-serif);
  font-weight: bold;
  font-size: var(--large-3);
  color: var(--color-main);
  margin-bottom: 2rem;
}
.page-overview__schedule {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: var(--space-5);
}
.page-overview__schedule .reserve-buttons {
  width: 200px;
}
.page-overview__access {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: var(--space-5);
}
.page-overview__access-desc {
  width: 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--space-1);
}
.page-overview__access-img {
  width: 55%;
}
.page-overview__access-img img {
  border-radius: 6px;
}
.page-overview__table {
  width: 100%;
  font-size: var(--small-2);
  margin-top: var(--space-5);
}
.page-overview__table th,
.page-overview__table td {
  line-height: 1.6;
  padding: 2.5rem 2rem;
  border-bottom: 1px dashed var(--color-border);
}

/***** 運営元 *****/
.page-corporation {
  padding: var(--space-4) 0;
}
.page-corporation__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: var(--space-5);
}
.page-corporation__desc {
  width: 45%;
}
.page-corporation__img {
  width: 55%;
}
.page-corporation__img img {
  border-radius: 6px;
}
.page-corporation__catch {
  font-size: var(--large-4);
  font-family: var(--theme-font-serif);
  font-weight: bold;
  color: var(--color-main);
}
.page-corporation__name {
  text-align: right;
  margin-top: var(--space-3);
}
.page-corporation__name .doctor {
  display: block;
  font-size: var(--large-3);
}
.page-corporation__item {
  margin-top: var(--space-4);
}
.page-corporation__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-2);
  border-radius: 6px;
  background: var(--color-sub);
}
.page-corporation__list-item:not(:last-child) {
  margin-bottom: 2rem;
}
.page-corporation__list-desc {
  width: 30%;
}
.page-corporation__list-desc h5 a {
  font-size: var(--large-2);
  font-weight: bold;
  color: var(--color-main);
  text-decoration: underline;
}
.page-corporation__list-desc address {
  font-size: var(--small-2);
  line-height: 1.8;
  color: var(--color-main);
  margin: 0.5rem 0 var(--space-1);
}
.page-corporation__list-desc img {
  border-radius: 6px;
}
.page-corporation__list-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: var(--space-1);
  min-width: 200px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  background: var(--color-main);
  border: 1px solid var(--color-main);
  border-radius: 6px;
  -webkit-transition: var(--transitions-1);
  transition: var(--transitions-1);
}
.page-corporation__list-btn span {
  -webkit-transition: var(--transitions-1);
  transition: var(--transitions-1);
}
.page-corporation__list-btn:hover {
  color: var(--color-main);
  background: #fff;
}
.page-corporation__list-btn:hover .span {
  color: var(--color-main);
}
.page-corporation__list-schedule {
  width: 70%;
  padding: clamp(1rem, 1.5vw, 3rem);
  background: #fff;
  border-radius: 6px;
}
.page-corporation .clinic-schedule {
  font-size: clamp(1.2rem, 1.1vw, 1.6rem);
}

/***** 院内設備 *****/
.page-facility {
  padding: var(--space-4) 0;
}
.page-facility__contents {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.page-facility__item {
  position: relative;
}
.page-facility__item a {
  display: block;
  overflow: hidden;
}
.page-facility__item:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.page-facility__item img {
  -webkit-transition: var(--transitions-1);
  transition: var(--transitions-1);
}
.page-facility__title {
  font-size: var(--small-2);
  padding: 1rem;
  background: var(--color-sub);
  text-align: center;
}

.page-standards h4 {
  color: var(--color-main);
  font-weight: bold;
  font-size: var(--large-2);
}
.page-standards__txt {
  margin-bottom: 2rem;
}

/* ************************************************************************************************
   診療内容ページ (general.php / aesthetic.php / implant.php)
   ************************************************************************************************ */
.page-treatments {
  padding: var(--space-4) 0;
}
.page-treatments__contents {
  display: grid;
  grid-template-columns: 1fr 2fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: var(--space-5);
}
.page-treatments__item {
  margin-top: 8rem;
}
.page-treatments__img img {
  border-radius: 6px;
}
.page-treatments__list--normal {
  margin-top: 4rem;
}
.page-treatments__list--normal li {
  font-size: var(--small-2);
  line-height: 1.6;
}
.page-treatments__list--normal li:not(:last-child) {
  margin-bottom: 1.5rem;
}
.page-treatments__list--normal li::before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--color-sub);
  display: inline-block;
  margin-right: 0.8em;
  vertical-align: middle;
}
.page-treatments__list--background {
  margin-top: 4rem;
}
.page-treatments__list--background li {
  font-size: var(--small-2);
  line-height: 1.6;
  padding: 1.5rem;
  background: var(--color-sub);
  border-radius: 6px;
}
.page-treatments__list--background li:not(:last-child) {
  margin-bottom: 1rem;
}
.page-treatments__list--background li::before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
  display: inline-block;
  margin-right: 0.8em;
  vertical-align: middle;
}
.page-treatments__step {
  counter-reset: step;
}
.page-treatments__step-inner {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 3rem;
}
.page-treatments__step h5 {
  font-size: var(--large-1);
}
.page-treatments__step li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  counter-increment: step;
  border-radius: 12px;
  border: 1px solid var(--color-border);
}
.page-treatments__step li::before {
  content: counter(step, decimal-leading-zero);
  display: grid;
  place-items: center;
  padding: 3rem 4rem;
  font-size: var(--large-3);
  background: var(--color-sub);
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}
.page-treatments__step li:not(:last-child) {
  margin-bottom: 6rem;
}
.page-treatments__step li:not(:last-child)::after {
  font-family: "Material Symbols Outlined";
  content: "arrow_drop_down";
  position: absolute;
  inset: auto 0 -6.5rem 0;
  display: inline-block;
  text-align: center;
  line-height: 1;
  color: var(--color-main);
  font-size: 7rem;
}
.page-treatments__step li h5 {
  color: var(--color-main);
  font-weight: bold;
  margin-bottom: 1rem;
}
.page-treatments__price {
  margin-top: 8rem;
}
.page-treatments__price .contents-item__title {
  margin-bottom: 2rem;
}
.page-treatments .price-table {
  width: 100%;
}
.page-treatments .price-table th,
.page-treatments .price-table td {
  padding: 2rem;
  border: 1px solid var(--color-border);
  font-size: var(--small-2);
  line-height: 1.6;
  vertical-align: middle;
}
.page-treatments .price-table th {
  width: 40%;
  background: var(--color-sub);
}
.page-treatments .price-table small {
  color: #686978;
}
.page-treatments .price-table__ttl {
  color: var(--color-main);
  font-size: var(--large-1);
  font-weight: bold;
  margin: var(--space-2) 0 1rem;
}
.page-treatments__box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.page-treatments__box-item {
  padding: 3rem;
  background: var(--color-sub);
  border-radius: 6px;
}
.page-treatments__box h5 {
  font-size: var(--large-2);
  font-weight: bold;
  color: var(--color-main);
  margin-bottom: 1rem;
}
.page-treatments__box .page-treatments__list--normal {
  margin-top: 0;
}
.page-treatments__box .page-treatments__list--normal li::before {
  background: #fff;
}
.page-treatments__case {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.page-treatments__case h5 {
  color: var(--color-main);
  font-weight: bold;
  font-size: 1.8rem;
  margin: 1.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-border);
}
.page-treatments__case p {
  font-size: 1.4rem;
}
.page-treatments__case img {
  width: 100%;
  height: auto;
  display: block;
}

/* ************************************************************************************************
   page-faq.php
   ************************************************************************************************ */
.page-faq {
  padding: clamp(6rem, 8vw, 12rem) 0;
}

.faq-balloon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.faq-balloon .balloon {
  position: relative;
  display: inline-block;
  padding: 1rem 2rem;
  margin-bottom: var(--space-2);
  background: var(--color-sub);
  border-radius: 6px;
}
.faq-balloon .balloon::after {
  content: "";
  position: absolute;
  inset: 100% 15% auto auto;
  border: 10px solid rgba(0, 0, 0, 0);
  border-top: 15px solid var(--color-sub);
}

.faq-list__item {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 2rem;
}
.faq-list__item .faq-desc {
  line-height: 1.6;
}
.faq-list__item--question {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  padding: 3rem 2rem;
  margin: 0;
}
.faq-list__item--question .faq-desc {
  font-size: var(--small-2);
}
.faq-list__item--question .faq-desc::before {
  content: "Q.";
  font-family: var(--theme-font-serif);
  color: var(--color-main);
  font-size: var(--large-2);
  font-weight: 500;
  margin-right: 0.8em;
}
.faq-list__item--question .faq-plus {
  position: relative;
  min-width: 20px;
  min-height: 20px;
  margin-left: 1em;
}
.faq-list__item--question .faq-plus::before, .faq-list__item--question .faq-plus::after {
  content: "";
  position: absolute;
  background: var(--color-dark-gray);
  -webkit-transition: var(--transitions-1);
  transition: var(--transitions-1);
}
.faq-list__item--question .faq-plus::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.faq-list__item--question .faq-plus::after {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.faq-list__item--answer {
  padding: 3rem 2rem;
  background: var(--color-light-gray);
  display: none;
}
.faq-list__item--answer .faq-desc {
  font-size: var(--small-2);
}
.faq-list__item--answer .faq-desc::before {
  content: "A.";
  font-family: var(--theme-font-serif);
  color: var(--color-main);
  font-size: var(--large-3);
  font-weight: 500;
  margin-right: 0.8em;
}
.faq-list__item.is-open .faq-list__item--answer {
  display: block;
}
.faq-list__item.is-open .faq-plus::after {
  opacity: 0;
}

/* ************************************************************************************************
   page-recruit.php
   ************************************************************************************************ */
.page-recruit {
  padding: clamp(6rem, 8vw, 12rem) 0;
}
.page-recruit__table {
  width: 100%;
}
.page-recruit__table th:first-child {
  width: 30%;
  background: var(--color-sub);
}
.page-recruit__table th,
.page-recruit__table td {
  font-size: var(--small-2);
  line-height: 1.8;
  padding: 2.5rem 2rem;
}
.page-recruit__table tr {
  border-top: 1px dashed var(--color-border);
  border-bottom: 1px dashed var(--color-border);
}
.page-recruit__table a {
  display: inline-block;
  margin-top: 1rem;
  font-size: var(--large-1);
  color: var(--color-main);
  font-weight: bold;
  -webkit-transition: var(--transitions-1);
  transition: var(--transitions-1);
}
.page-recruit__table a:hover {
  color: var(--color-gray);
}
.page-recruit__table a span {
  color: var(--color-text);
  font-size: 1.4rem;
  font-weight: normal;
  margin-right: 0.2em;
}

/* ************************************************************************************************
   投稿ページ（カテゴリー：news / column）
   ************************************************************************************************ */
/***** 共通 *****/
.footer__widget {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer__widget h5 {
  margin-bottom: 1rem;
}

.footer__widget li {
  line-height: 1.8;
  font-size: 1.4rem;
}

.widget-area {
  text-align: center;
  margin-bottom: 3rem;
  width: 30%;
}

.nocomments {
  display: none;
}

/***** お知らせ一覧ページ（category-news.php） *****/
.page-news {
  padding: clamp(6rem, 8vw, 12rem) 0;
}

.page-news__contents {
  margin-bottom: 6rem;
}

.page-news__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: clamp(2rem, 2vw, 3rem) 0;
  border-bottom: 1px dashed var(--color-border);
  -webkit-transition: var(--transitions-1);
  transition: var(--transitions-1);
}
.page-news__link:hover {
  background: var(--color-sub);
}
.page-news__link::after {
  font-family: "Material Symbols Outlined";
  content: "trending_flat";
  display: inline-block;
  color: var(--color-main);
  font-size: 1.8rem;
  margin-left: 1rem;
  -webkit-transition: var(--transitions-1);
  transition: var(--transitions-1);
}

.page-news__txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4rem;
}

.page-news__date {
  font-size: var(--small-1);
  color: var(--color-gray);
}

.page-news__ttl {
  margin: 0;
}

.page-news__btn a {
  margin-left: auto;
}

.news02 {
  margin: 0 0 8rem;
}

/* サムネイルサイズ */
.news02__thumbnail img {
  width: 100%;
  height: auto;
}

/* 記事一覧 */
.news02 .container {
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.news02__post {
  width: 45%;
  text-align: center;
  margin: 0 2rem 5rem;
  border: 7px double #F7EBEC;
}

.news02__contents {
  padding: 1rem 2rem 2rem;
}

.news02__blog_info {
  text-align: right;
  font-size: 1.2rem;
}

.news02__ttl {
  margin-bottom: 1rem;
}

.news02__cal {
  margin-bottom: 0.5rem;
}

.news02__txt {
  text-align: left;
}

.nav-below {
  margin-top: var(--space-1);
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/***** 投稿一覧ページ *****/
.page-post {
  padding: clamp(6rem, 8vw, 12rem) 0;
}

.page-post__contents {
  margin-bottom: 6rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.page-post__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
.page-post__link:hover .page-post__thumbnail img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.page-post__thumbnail {
  aspect-ratio: 1;
  overflow: hidden;
}
.page-post__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  border-radius: 6px;
  -webkit-transition: var(--transitions-1);
  transition: var(--transitions-1);
}

.page-post__date {
  font-size: 1.4rem;
  color: var(--color-gray);
}

.page-post__ttl {
  margin-top: 0.5rem;
}

.page-post__btn a {
  margin-inline: auto;
}

/***** 個別投稿ページ（single.php） *****/
.single-post {
  padding: clamp(6rem, 8vw, 12rem) 0;
}
.single-post .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: var(--space-3);
}
.single-post__contents {
  width: 75%;
  margin-bottom: var(--space-3);
}
.single-post__head {
  border-bottom: 1px dashed var(--color-border);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}
.single-post__cal {
  color: var(--color-gray);
}
.single-post__ttl {
  margin-top: 0.5rem;
}
.single-post__cat .post-categories li {
  display: inline-block;
  margin-right: 1rem;
}
.single-post__cat .post-categories a {
  font-size: 1.4rem;
  line-height: 1.2;
  display: block;
  color: var(--color-main);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  border: 1px solid var(--color-main);
  -webkit-transition: var(--transitions-1);
  transition: var(--transitions-1);
}
.single-post__cat .post-categories a:hover {
  color: #fff;
  background: var(--color-main);
}
.single-post__thumbnail {
  text-align: center;
  margin-top: 2rem;
}
.single-post__thumbnail img {
  width: 100%;
  height: auto;
}
.single-post__txt {
  margin-top: var(--space-3);
}

.single__ttl {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: normal;
}

.single .header-sub__item {
  padding-top: 6rem;
}

.single02__thumbnail img {
  width: 100%;
  height: auto;
}

.single02__contents {
  width: 90%;
  margin: 3rem auto 6rem;
}

.single02__blog_info {
  text-align: right;
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.single02__cal {
  margin-bottom: 1rem;
}

.single02__cat {
  margin-bottom: 2rem;
}

.single__line {
  display: block;
  margin: 6rem auto 3rem;
}

/***** サイドバーウィジェット *****/
ul.side-widget-area {
  width: 25%;
}
ul.side-widget-area .wp-block-group {
  margin-bottom: 4rem;
}
ul.side-widget-area .wp-block-heading {
  color: var(--color-main);
  font-family: var(--theme-font-serif);
  font-weight: 500;
  font-size: var(--large-4);
  margin-bottom: 2rem;
}
ul.side-widget-area .wp-block-categories li a {
  display: block;
  border-bottom: 1px dashed var(--color-border);
  padding: 2rem 0;
  -webkit-transition: var(--transitions-1);
  transition: var(--transitions-1);
}
ul.side-widget-area .wp-block-categories li a:hover {
  background: var(--color-sub);
}
ul.side-widget-area .wp-block-archives li a {
  display: block;
  border-bottom: 1px dashed var(--color-border);
  padding: 2rem 0;
  -webkit-transition: var(--transitions-1);
  transition: var(--transitions-1);
}
ul.side-widget-area .wp-block-archives li a:hover {
  background: var(--color-sub);
}

/***** カテゴリーページ（category.php） *****/
.category__ttl a {
  font-size: 3.2rem;
  font-weight: normal;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

/***** お問い合わせフォーム *****/
.entry {
  margin: 0 0 8rem;
}

/* Contactform - お問い合わせフォーム */
.entry__box {
  text-align: center;
  margin-bottom: 6rem;
}

.required {
  font-size: smaller;
  color: var(--color-sub);
}

.hyphen {
  margin: 0 0.5rem;
  vertical-align: text-bottom;
}

.wpcf7 {
  width: 100%;
  margin: 0 0 2.5em !important;
  padding: 0;
  font-size: 1.4rem;
}

.wpcf7 form {
  margin: 1.5em auto 0;
  width: 70%;
}

.wpcf7 p {
  margin-bottom: 1em;
}

.wpcf7 input,
.wpcf7 textarea {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 1rem;
  border: 1px solid #F7EBEC;
  background: #F7EBEC;
  line-height: 1.5;
  margin: 0.5rem auto 2rem;
}

.wpcf7 select,
.wpcf7 input[type=checkbox],
.wpcf7 input[type=radio] {
  width: auto;
  max-width: 97%;
  padding: 1rem;
  border: 1px solid #F7EBEC;
  background: #F7EBEC;
  margin: 0.5rem auto 2rem;
}

.wpcf7 select,
.wpcf7 .wpcf7-list-item-label {
  line-height: 1.5;
}

.wpcf7 .wpcf7-list-item {
  display: block;
  text-align: center;
}

.wpcf7 textarea {
  height: 300px;
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
  border: 1px solid var(--color-sub);
  outline: none;
}

.wpcf7 .wpcf7-submit {
  -webkit-transition: all 0.3s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  position: relative;
  width: 200px;
  height: 48px;
  margin: 5rem auto 0;
  border: none !important;
  outline: none;
  background-color: var(--color-sub);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}

.wpcf7 .wpcf7-submit:before,
.wpcf7 .wpcf7-submit:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.wpcf7 .wpcf7-submit:hover {
  opacity: 0.6;
}

.wpcf7 .wpcf7-submit .wpcf7-not-valid {
  background: pink;
}

.wpcf7 .wpcf7-submit .wpcf7-response-output {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  margin: 1rem 0 0;
  padding: 0.8rem 3.5rem 0.8rem 1.4rem;
  border-radius: 4px;
}

.wpcf7 .wpcf7-submit .wpcf7-validation-errors {
  border: 1px solid #EED3D7;
  background-color: #F2DEDE;
  color: #B94A48;
}

.wpcf7 .wpcf7-submit .wpcf7-mail-sent-ok {
  border: 1px solid #BCE8F1;
  background-color: #D9EDF7;
  color: #3A87AD;
}

input.wpcf7-form-control.wpcf7-number.wpcf7-validates-as-required.wpcf7-validates-as-number.smallform {
  width: 11%;
}

.wpcf7 input[type=checkbox] {
  margin: 0.5rem auto 1rem;
}

/* プライバシーポリシーの埋め込み */
@media only screen and (max-width: 550px) {
  [class*=grid-].noGutter > .col {
    padding: 0%;
  }
}
.blk-iframe {
  border: 1px solid #e4e4e4;
  background-color: #fff;
  width: 700px;
  max-width: 100%;
  height: 20em;
  margin: 3em auto;
  overflow: auto;
  /*  -webkit-overflow-scrolling: touch;*/
}

.privacy {
  font-size: 0.9em;
  line-height: 1.8;
  padding: 5%;
}

.privacy h4 {
  text-align: center;
  border-bottom-style: none;
  margin-top: 0;
  padding: 0;
}

.privacy h4::after {
  content: none;
}

.privacy h5 {
  margin: 1em 0 0.5em;
}

/* ************************************************************************************************
   アニメーション
   ************************************************************************************************ */
/***** ローディングアニメーション *****/
#loading {
  width: 100vw;
  height: 100vh;
  -webkit-transition: all 1s;
  transition: all 1s;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform-origin: center;
  transform-origin: center;
  width: 120px;
  height: 120px;
}

.type5 {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--color-main);
  -webkit-animation: spinner5_1 1.2s infinite linear forwards;
          animation: spinner5_1 1.2s infinite linear forwards;
}

@-webkit-keyframes spinner5_1 {
  0% {
    opacity: 0.2;
    -webkit-transform: translate(-50%, -50%) rotate(0) scale(0.5);
            transform: translate(-50%, -50%) rotate(0) scale(0.5);
  }
  50% {
    opacity: 1;
    -webkit-box-shadow: 21px 21px rgb(31, 71, 132), -21px -21px rgb(31, 71, 132), 21px -21px rgb(31, 71, 132), -21px 21px rgb(31, 71, 132);
            box-shadow: 21px 21px rgb(31, 71, 132), -21px -21px rgb(31, 71, 132), 21px -21px rgb(31, 71, 132), -21px 21px rgb(31, 71, 132);
    -webkit-transform: translate(-50%, -50%) rotate(180deg) scale(1);
            transform: translate(-50%, -50%) rotate(180deg) scale(1);
  }
  100% {
    opacity: 0.2;
    -webkit-transform: translate(-50%, -50%) rotate(360deg) scale(0.5);
            transform: translate(-50%, -50%) rotate(360deg) scale(0.5);
  }
}

@keyframes spinner5_1 {
  0% {
    opacity: 0.2;
    -webkit-transform: translate(-50%, -50%) rotate(0) scale(0.5);
            transform: translate(-50%, -50%) rotate(0) scale(0.5);
  }
  50% {
    opacity: 1;
    -webkit-box-shadow: 21px 21px rgb(31, 71, 132), -21px -21px rgb(31, 71, 132), 21px -21px rgb(31, 71, 132), -21px 21px rgb(31, 71, 132);
            box-shadow: 21px 21px rgb(31, 71, 132), -21px -21px rgb(31, 71, 132), 21px -21px rgb(31, 71, 132), -21px 21px rgb(31, 71, 132);
    -webkit-transform: translate(-50%, -50%) rotate(180deg) scale(1);
            transform: translate(-50%, -50%) rotate(180deg) scale(1);
  }
  100% {
    opacity: 0.2;
    -webkit-transform: translate(-50%, -50%) rotate(360deg) scale(0.5);
            transform: translate(-50%, -50%) rotate(360deg) scale(0.5);
  }
}
.loaded {
  opacity: 0;
  visibility: hidden;
}

/***** ホバーアニメーション *****/
.access__tel:hover,
.recruit__tel:hover,
.news02 a:hover,
.single02 a:hover {
  color: var(--color-sub);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.news__ttl a:hover {
  color: var(--color-sub);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.news02 a,
.single02 a,
.news__ttl a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

a:hover img {
  opacity: 0.6;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

img {
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

/***** ボタン *****/
.btn1,
.btn2 {
  display: block;
  width: 219px;
  height: 50px;
  border: 1px solid var(--color-sub);
  background-color: rgba(255, 255, 255, 0.4);
  margin: 0 auto;
  text-align: center;
  line-height: 50px;
  position: relative;
  z-index: 2;
  color: #333;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btn1 {
  font-family: "Franklin";
  font-size: var(--small-2);
}

.btn1::before,
.btn2::before,
.btn1::after,
.btn2::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: "";
}

.btn1,
.btn2,
.btn1::before,
.btn2::before,
.btn1::after,
.btn2::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.btn1:hover,
.btn2:hover {
  color: #fff;
}

.btn1::after,
.btn2::after {
  top: -100%;
  width: 100%;
  height: 100%;
}

.btn1:hover::after,
.btn2:hover::after {
  top: 0;
  background-color: rgba(188, 141, 160, 0.7);
}

.nav-previous,
.nav-next {
  display: block;
  width: 180px;
  height: 50px;
  border: 1px solid var(--color-main);
  border-radius: 6px;
  margin: 20px;
  text-align: center;
  line-height: 50px;
  position: relative;
  z-index: 2;
  color: var(--color-main);
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.nav-previous,
.nav-next {
  font-size: 1.4rem;
}

.nav-previous a,
.nav-next a {
  display: block;
  -webkit-transition: var(--transitions-1);
  transition: var(--transitions-1);
}

.nav-previous a:hover,
.nav-next a:hover {
  color: #fff;
  background: var(--color-main);
}

.nav-previous,
.nav-next,
.nav-previous::before,
.nav-next::before,
.nav-previous::after,
.nav-next::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.nav-previous a:hover,
.nav-next a:hover {
  color: #fff;
  background: var(--color-main);
}

.nav-previous:hover::after,
.nav-next:hover::after,
.nav-previous:hover::after,
.nav-next:hover::after {
  top: 0;
  background-color: var(--color-main);
}

/***** ヘッダースクロール *****/
header.hide {
  top: -66px;
}

/***** ハンバーガーメニュー *****/
#nav-drawer {
  position: relative;
}

.nav-unshown {
  display: none;
}

#nav-open {
  display: inline-block;
  width: 30px;
  height: 22px;
  vertical-align: middle;
}

#nav-open span,
#nav-open span:before,
#nav-open span:after {
  position: absolute;
  height: 3px;
  /*線の太さ*/
  width: 25px;
  /*長さ*/
  border-radius: 3px;
  background: var(--color-main);
  display: block;
  content: "";
  cursor: pointer;
}

#nav-open span:before {
  bottom: -8px;
}

#nav-open span:after {
  bottom: -16px;
}

/*ハンバーガーメニュー閉じる用のカバー*/
#nav-close {
  display: none;
  /*はじめは隠しておく*/
  position: fixed;
  z-index: 99;
  top: 0;
  /*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

/*ハンバーガーメニュー中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  /*最前面に*/
  width: 90%;
  /*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: 400px;
  /*最大幅（調整してください）*/
  height: 100%;
  background: rgb(255, 255, 255);
  /*背景色*/
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  /*滑らかに表示*/
  -webkit-transform: translateX(-105%);
  transform: translateX(105%);
  /*右に隠しておく*/
}

.header-sp {
  margin: 8rem 0 12rem;
  padding-inline: 2rem;
  position: relative;
}

.header-sp__list .menu-item {
  border-bottom: 1px dashed var(--color-border);
  margin-bottom: 2rem;
}
.header-sp__list .menu-item a {
  font-family: var(--theme-font-serif);
  font-weight: 500;
  color: var(--color-main);
  display: block;
  padding-bottom: 2rem;
  font-size: var(--small-2);
  -webkit-transition: var(--transitions-1);
  transition: var(--transitions-1);
}
.header-sp__list .menu-item a:hover {
  color: var(--color-gray);
}
.header-sp__list .sub-menu .menu-item {
  border-bottom: none;
}
.header-sp__list .sub-menu .menu-item a {
  position: relative;
  font-size: 1.4rem;
  padding: 0.5rem 0 0.5rem 2rem;
}
.header-sp__list .sub-menu .menu-item a::before {
  font-family: "Material Symbols Outlined";
  content: "add";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--color-sub);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin-right: 0.8em;
  line-height: 1;
}

.header-sp__item {
  display: block;
  text-align: center;
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
}

#nav-input:checked ~ #nav-close {
  display: block;
  /*カバーを表示*/
  opacity: 0.5;
}

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  /*中身を表示（左へスライド）*/
  -webkit-box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
          box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
}

#nav-input2:checked ~ #nav-content {
  display: none;
}

/***** ページトップに戻るボタン *****/
#page_top {
  width: 60px;
  height: 60px;
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  background: var(--color-dark-gray);
  border-radius: 50%;
  -webkit-transition: var(--transitions-1);
  transition: var(--transitions-1);
  z-index: 10;
}

#page_top:hover {
  background: var(--color-gray);
}

#page_top a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
#page_top a span {
  font-size: 3.2rem;
  color: #fff;
}

/***** index.html/メニュー / ホバーすると文字が出てくる *****/
figure.menu__item {
  width: 330px;
  height: 220px;
  position: relative;
  margin-bottom: 5rem;
}

figcaption.menu__txt {
  width: 330px;
  height: 220px;
  position: absolute;
  top: 0px;
  bottom: 0;
  left: 0px;
  right: 0;
  background: -webkit-gradient(linear, right top, left top, from(rgba(205, 178, 207, 0.6)), color-stop(35%, rgba(238, 203, 233, 0.7)), to(rgba(247, 235, 236, 0.8)));
  background: linear-gradient(to left, rgba(205, 178, 207, 0.6), rgba(238, 203, 233, 0.7) 35%, rgba(247, 235, 236, 0.8));
  opacity: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 5em 2em;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

figcaption.menu__txt:hover {
  opacity: 1;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  padding-bottom: 0;
  -webkit-box-shadow: 0 0 30px 0 #fff;
          box-shadow: 0 0 30px 0 #fff;
}

@media screen and (max-width: 560px) {
  figcaption.menu__txt {
    width: 280px;
    height: 170px;
    margin: auto;
    padding: 1.5em;
  }
  .menu__ttl {
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 320px) {
  figure.menu__item {
    width: 288px;
    height: 192px;
  }
  figcaption.menu__txt {
    width: 250px;
    height: 160px;
    padding: 1rem;
  }
  .menu__ttl {
    margin-bottom: 0.5rem;
  }
}
/***** concept.html/スライダー *****/
.swiper-container {
  padding-bottom: 5rem !important;
  position: relative;
}

.swiper-button-next,
.swiper-button-prev {
  display: none !important;
}

.swiper-pagination-bullet-active {
  background: #5D576B !important;
}

.swiper-slide img {
  width: 100%;
  max-width: 100%;
}/*# sourceMappingURL=style.css.map */