@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* ボックスサイジングルール */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* デフォルトマージンを削除 */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

/* ul、ol要素のリストスタイルを削除（デフォルトスタイリングを削除） */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* コアルートのデフォルト設定 */
html:focus-within {
  scroll-behavior: smooth;
}

/* コアボディのデフォルト設定 */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* クラスを持たないA要素にデフォルトスタイルを適用 */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration: none;
}

/* 画像を扱いやすくする */
img,
picture {
  max-width: 100%;
  display: block;
}

/* 入力要素とボタンでフォントを継承 */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* アニメーションやトランジションを好まない人のためにすべてのアニメーションとトランジションを削除 */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*-------------------------------
color 
-------------------------------*/
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 10px;
}
@media (max-width: 1360px) {
  html {
    font-size: 0.7352941176vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 10px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333;
  position: relative;
}

body.is-open {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
  display: inline-block;
}

@media (any-hover: hover) {
  a:hover {
    opacity: 0.8;
  }
}
@media screen and (any-hover: hover) and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}
/*-------------------------------
floating-btn
-------------------------------*/
.floating-btn {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 500;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .floating-btn {
    width: 100%;
    top: initial;
    right: 50%;
    bottom: 0;
    transform: translateX(50%);
    background-color: #fff;
  }
}

.floating-btn__list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .floating-btn__list {
    flex-direction: row;
    gap: 0;
  }
}

.floating-btn__item a {
  padding-inline: 2.4rem;
  width: 8rem;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .floating-btn__item a {
    width: 100%;
    height: 6rem;
    writing-mode: horizontal-tb;
  }
}

.floating-btn__item:nth-child(1) a {
  padding-inline: 2.4rem;
  background-color: rgba(255, 255, 255, 0.6);
  border: 0.5px solid #807e7f;
  border-right: none;
  text-align: center;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .floating-btn__item:nth-child(1) a {
    padding-inline: 1.1rem;
    width: 17.1rem;
    border: none;
    background-color: white;
  }
}

.floating-btn__item:nth-child(1) a::before {
  display: none;
}
@media screen and (max-width: 767px) {
  .floating-btn__item:nth-child(1) a::before {
    content: "";
    width: 2.2rem;
    height: 2.9rem;
    display: inline-block;
    background: url(../images/icon/icon-tel.svg) center/contain no-repeat;
  }
}

.floating-btn__item:nth-child(1) a span {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 1.8rem;
  line-height: 1.3888888889;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: #363330;
}
@media screen and (max-width: 767px) {
  .floating-btn__item:nth-child(1) a span {
    padding-left: 0.5rem;
    font-size: 1.6rem;
    line-height: 1.125;
    letter-spacing: 0.1em;
  }
}

.floating-btn__item:nth-child(2) a {
  padding-inline: 2.4rem;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 2.1rem;
  line-height: 1.3333333333;
  letter-spacing: 0.17em;
  font-weight: 700;
  color: #fff;
  background-color: rgba(35, 34, 31, 0.6);
  border: 0.5px solid #807e7f;
  border-right: none;
  text-orientation: upright;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .floating-btn__item:nth-child(2) a {
    padding-inline: 1.2rem;
    width: 13.9rem;
    font-size: 1.6rem;
    line-height: 1.1875;
    letter-spacing: 0.1em;
    font-weight: 700;
    flex-direction: row;
    gap: 0.6rem;
    border: none;
    background-color: #807e7f;
  }
}

.floating-btn__item:nth-child(2) a::before {
  display: none;
}
@media screen and (max-width: 767px) {
  .floating-btn__item:nth-child(2) a::before {
    content: "";
    width: 2.9rem;
    height: 2.8rem;
    display: inline-block;
    background: url(../images/icon/icon-24.svg) center/contain no-repeat;
  }
}

.floating-btn__item:nth-child(2) a small {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  letter-spacing: 0.16em;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .floating-btn__item:nth-child(2) a small {
    display: none;
  }
}

.floating-btn__item:nth-child(2) a span {
  padding-left: 0.2rem;
  line-height: 1;
  writing-mode: horizontal-tb;
  align-items: center;
}

/*-------------------------------
more-btn
-------------------------------*/
.more-btn a {
  padding: 1.6rem 4rem;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.6rem;
  line-height: 1.375;
  display: flex;
  gap: 1.6rem;
  border-radius: 4.5rem;
  border: 0.5px solid #333;
  transition: 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .more-btn a {
    padding: 0.8rem 2.4rem;
    font-size: 1.28rem;
    line-height: 1.171875;
    gap: 1.6rem;
  }
}

.more-btn a::after {
  content: "＞";
  width: 1.6rem;
  height: 2.2rem;
  transition: 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .more-btn a::after {
    width: 1.2rem;
    height: 1.5rem;
  }
}

@media (any-hover: hover) {
  .more-btn a:hover {
    opacity: 1;
    background-color: #807e7f;
    color: #fff;
  }
}
/*-------------------------------
page-top
-------------------------------*/
.page-top {
  width: 6.6rem;
  position: fixed;
  bottom: 2.4rem;
  right: 4.4rem;
  z-index: 550;
}
@media screen and (max-width: 767px) {
  .page-top {
    width: 4.8rem;
    bottom: 0.6rem;
    right: 0.8rem;
  }
}

.page-top img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 66/66;
}
@media screen and (max-width: 767px) {
  .page-top img {
    aspect-ratio: 48/48;
  }
}

/*-------------------------------
reservation-btn
-------------------------------*/
.reservation-btn a {
  width: 54rem;
  padding-block: 1.7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  position: relative;
  transition: 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .reservation-btn a {
    width: 100%;
  }
}

.reservation-btn a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scaleX(0);
  z-index: 0;
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.85, 0, 0.15, 1);
}

.reservation-btn span {
  transition: 0.3s ease-out;
}

.reservation-btn__label {
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: center;
  display: block;
  position: relative;
  z-index: 10;
}

.reservation-btn__text {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 2.1rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 700;
  display: block;
  position: relative;
  z-index: 10;
}

@media (any-hover: hover) {
  .reservation-btn a:hover {
    opacity: 1;
  }
  .reservation-btn a:hover::before {
    transform: translate(-50%, -50%) scaleX(1);
    transform-origin: left;
  }
}
.reservation-btn.-tel a {
  background-color: #fff;
  border: 0.5px solid #333;
}

.reservation-btn.-tel a::before {
  background-color: #333;
}

@media (any-hover: hover) {
  .reservation-btn.-tel a:hover {
    color: #fff;
  }
}
.reservation-btn.-web a {
  color: #fff;
  background-color: #807e7f;
  border: 0.5px solid #807e7f;
}

.reservation-btn.-web a::before {
  background-color: #ebebeb;
}

@media (any-hover: hover) {
  .reservation-btn.-web a:hover {
    color: #333;
    border-color: #4d4d4d;
  }
}
/*-------------------------------
section-decoration
-------------------------------*/
.section-decoration {
  padding-bottom: 7.2rem;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 18rem;
  line-height: 0.7111111111;
  letter-spacing: 0.05em;
  font-weight: 500;
  text-transform: capitalize;
  position: absolute;
  z-index: 10;
  opacity: 0.9;
  mix-blend-mode: multiply;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
}
@media screen and (max-width: 767px) {
  .section-decoration {
    display: none;
  }
}

.section-decoration::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ebebeb;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
}

.section-decoration.active {
  animation: slide-in-text 0.5s ease-out forwards;
}

.section-decoration.active::before {
  animation: slide-in-mask 1s ease-out forwards;
}

@keyframes slide-in-text {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0 0% 0 0);
            clip-path: inset(0 0% 0 0);
  }
}
@keyframes slide-in-mask {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  50% {
    -webkit-clip-path: inset(0 0% 0 0);
            clip-path: inset(0 0% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 100%);
            clip-path: inset(0 0 0 100%);
  }
}
/*-------------------------------
section-subtitle
-------------------------------*/
.section-subtitle {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 4.3rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .section-subtitle {
    font-size: 2.1rem;
    line-height: 2.0476190476;
  }
}

.top-service__subtitle::before,
.top-service__subtitle::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #807e7f;
}

.top-service__subtitle::before {
  margin-right: 3.2rem;
}
@media screen and (max-width: 767px) {
  .top-service__subtitle::before {
    margin-right: 1.6rem;
  }
}

.top-service__subtitle::after {
  margin-left: 3.2rem;
}
@media screen and (max-width: 767px) {
  .top-service__subtitle::after {
    margin-left: 1.6rem;
  }
}

/*-------------------------------
section-title
-------------------------------*/
.section-title {
  font-family: "Noto Serif JP", sans-serif;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: center;
}

.section-title__en {
  font-size: 1.8rem;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .section-title__en {
    font-size: 1.6rem;
  }
}

.section-title__ja {
  margin-top: 1.6rem;
  font-size: 4.3rem;
}
@media screen and (max-width: 767px) {
  .section-title__ja {
    font-size: 2.1rem;
  }
}

.section-title__ja.-small {
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  .section-title__ja.-small {
    font-size: 2.1rem;
  }
}

/*-------------------------------
schedule-table
-------------------------------*/
.schedule-table {
  padding-inline: 1.6rem;
  width: 54rem;
  border-top: 1px solid #4d4d4d;
  border-bottom: 1px solid #4d4d4d;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .schedule-table {
    padding-inline: 0.8rem;
    width: 100%;
  }
}

.schedule-table__row {
  display: grid;
  grid-template-columns: 34.6456692913% repeat(8, 1fr);
}
@media screen and (max-width: 767px) {
  .schedule-table__row {
    grid-template-columns: 34.7266881029% repeat(8, 1fr);
  }
}

.schedule-table__row.-header {
  padding-block: 2.6rem;
  border-bottom: 1px dashed #4d4d4d;
}
@media screen and (max-width: 767px) {
  .schedule-table__row.-header {
    padding-block: 0.8rem;
  }
}

.schedule-table__row.-row02,
.schedule-table__row.-row03 {
  padding-top: 2.4rem;
}

@media screen and (max-width: 767px) {
  .schedule-table__row.-row02 {
    padding-top: 1.6rem;
  }
}

.schedule-table__row.-row03 {
  padding-bottom: 2.4rem;
}
@media screen and (max-width: 767px) {
  .schedule-table__row.-row03 {
    padding-block: 0.8rem 1.6rem;
  }
}

.schedule-table__day,
.schedule-table__cell {
  font-size: 1.8rem;
  line-height: 1;
}

.schedule-table__header,
.schedule-table__time {
  padding-right: 18.1818181818%;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .schedule-table__header,
  .schedule-table__time {
    padding-right: 12.962962963%;
  }
}

@media screen and (max-width: 767px) {
  .schedule-table__header,
  .schedule-table__day {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  .schedule-table__time,
  .schedule-table__cell {
    font-size: 1.28rem;
  }
}

/*-------------------------------
contact 
-------------------------------*/
.contact {
  padding-block: 12rem 8rem;
  background: url(../images/contact-bg.webp) center/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .contact {
    padding-block: 4rem;
    background: url(../images/contact-bg_sp.webp) center/cover no-repeat;
  }
}

.contact__inner.inner {
  display: flex;
  gap: 10%;
}
@media screen and (max-width: 767px) {
  .contact__inner.inner {
    flex-direction: column;
    gap: 4rem;
  }
}

.contact__info {
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .contact__info {
    width: 100%;
  }
}

.contact__sub {
  font-size: 1.8rem;
  line-height: 1.6111111111;
}
@media screen and (max-width: 767px) {
  .contact__sub {
    font-size: 1.6rem;
    line-height: 1;
  }
}

.contact__title {
  width: 24rem;
}
@media screen and (max-width: 767px) {
  .contact__title {
    width: 18rem;
  }
}

.contact__title img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 320/53;
}

.contact__btn-list {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .contact__btn-list {
    width: 100%;
    gap: 2.4rem;
  }
}

/*-------------------------------
footer
-------------------------------*/
.footer {
  padding-block: 7.4rem 4rem;
  background-color: #4d4d4d;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-block: 4rem 10rem;
  }
}

.footer__upper {
  padding-bottom: 6rem;
  display: flex;
  gap: 3.4rem;
}
@media screen and (max-width: 767px) {
  .footer__upper {
    display: none;
  }
}

.footer__info {
  width: 18rem;
}

.footer__name {
  padding-top: 0.6rem;
  font-size: 1.4rem;
  line-height: 1.2142857143;
  font-weight: 900;
}

.footer__nav {
  display: flex;
  gap: 2.8rem;
}

.footer__col {
  width: 18rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer__item {
  font-size: 1.4rem;
  line-height: 1.2142857143;
  font-weight: 700;
}

.footer__item a {
  padding: 0.6rem;
  position: relative;
}

.footer__item a::after {
  content: "";
  width: 100%;
  height: 0.1rem;
  position: absolute;
  bottom: 0.2rem;
  left: 0;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease-out;
}

@media (any-hover: hover) {
  .footer__item a:hover {
    opacity: 1;
  }
  .footer__item a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
}
.footer__lower {
  padding-top: 2.4rem;
  border-top: 0.5px solid #fff;
}
@media screen and (max-width: 767px) {
  .footer__lower {
    padding-top: 0;
    border-top: none;
  }
}

.footer__copy {
  font-size: 1.3rem;
  line-height: 1.4615384615;
  font-weight: 700;
  text-align: center;
}

/*-------------------------------
header
-------------------------------*/
.header {
  height: 10.9rem;
  position: relative;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .header {
    height: 8rem;
  }
}

@media screen and (max-width: 767px) {
  .header.-sticky {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}

.-sticky .header__sp-logo path {
  transition: 0.3s;
}

@media screen and (max-width: 767px) {
  .-sticky .header__sp-logo path {
    fill: #333333 !important;
  }
}

.header::before,
.header::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: 0.3s ease-out;
}

.header::before {
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.6) 70%);
  opacity: 0.08;
}
@media screen and (max-width: 767px) {
  .header::before {
    display: none;
  }
}

.header::after {
  background: linear-gradient(180deg, rgba(128, 126, 127, 0.2) 0%, rgba(128, 126, 127, 0.5) 70%);
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .header::after {
    display: none;
  }
}

.header.is-scroll::before {
  opacity: 0;
}

.header.is-scroll::after {
  opacity: 1;
}

.header__inner.inner {
  max-width: 100%;
  height: inherit;
}
@media screen and (max-width: 767px) {
  .header__inner.inner {
    padding-inline: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

.header__pc {
  height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header__pc {
    display: none;
  }
}

.header__sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__sp {
    display: block;
  }
}

.header__nav {
  height: inherit;
}
.header__nav-list {
  height: inherit;
  display: flex;
  gap: 4rem;
}

.header__nav-item {
  height: inherit;
}

.header__nav-item a {
  height: inherit;
  display: flex;
  align-items: center;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 2.1rem;
  line-height: 1;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
}

.header__nav-item span {
  position: relative;
}

.header__nav-item span::after {
  content: "";
  width: 100%;
  height: 0.1rem;
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease-out;
}

@media (any-hover: hover) {
  .header__nav-item a:hover {
    opacity: 1;
  }
  .header__nav-item a:hover span::after {
    transform: scaleX(1);
    transform-origin: left;
  }
}
.header__info {
  height: 7.7rem;
  display: flex;
  align-items: center;
  gap: 4rem;
  color: #fff;
}

.header__contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
}

.header__contact-label {
  font-size: 1.4rem;
  line-height: 1.0714285714;
  letter-spacing: 0.1em;
}

.header__contact-tel {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.header__cta a {
  width: 23.6rem;
  height: 7.7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background-color: #807e7f;
  background-color: rgba(35, 34, 31, 0.6);
  position: relative;
  border: 0.5px solid #fff;
}

.header__cta-label {
  font-size: 1.4rem;
  line-height: 1.0714285714;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 10;
}

.header__cta-text {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 500;
  position: relative;
  z-index: 10;
}

.header__hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__hamburger {
    all: unset;
    width: 4.8rem;
    height: 4.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    position: relative;
    z-index: 999;
    cursor: pointer;
    transition: 0.3s;
  }
}

.header__hamburger::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #807e7f;
  background-color: rgba(35, 34, 31, 0.6);
  z-index: 0;
}

.header__hamburger-inner {
  width: 1.8rem;
  height: 1.2rem;
  position: relative;
  z-index: 10;
  display: block;
}

.header__hamburger span {
  position: relative;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 1.5rem;
  height: 1px;
  background-color: #fff;
  transition: 0.5s;
  border-radius: 1px;
}

.header__hamburger span:nth-of-type(1) {
  top: calc(50% - 0.4rem);
}

.header__hamburger span:nth-of-type(2) {
  top: 50%;
}

.header__hamburger span:nth-of-type(3) {
  top: calc(50% + 0.4rem);
}

.header__hamburger.is-open span:nth-of-type(1) {
  top: calc(50% + 0.1rem);
  transform: translate(-50%, -50%) rotate(45deg);
}

.header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.header__hamburger.is-open span:nth-of-type(3) {
  top: calc(50% - 0.1rem);
  transform: translateX(-50%) rotate(-45deg);
}

.header__hamburger-label {
  font-size: 1.1rem;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  z-index: 10;
  display: block;
  font-style: normal;
}

.header__drawer {
  padding-block: 14rem;
  display: none;
  position: absolute;
  z-index: 900;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.95);
  overflow-y: scroll;
  scrollbar-width: none;
}

.header__drawer::-webkit-scrollbar {
  display: none;
}

.header__drawer-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.header__drawer-item a {
  padding: 1.5rem 0;
  display: block;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
}

.header__btn-list {
  margin-top: 6rem;
  margin-inline: auto;
  padding-inline: 2.4rem;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

/*-------------------------------
instagram
-------------------------------*/
.instagram {
  padding-block: 8rem;
  background-color: #ebebeb;
}
@media screen and (max-width: 767px) {
  .instagram {
    padding-block: 4rem;
  }
}

.instagram__title {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: center;
  text-transform: capitalize;
}

.instagram__list {
  margin-top: 8rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .instagram__list {
    margin-top: 4rem;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
  }
}

.instagram__item a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 221/221;
}

/*-------------------------------
media-mentions
-------------------------------*/
.media-mentions {
  padding-block: 8rem;
}
@media screen and (max-width: 767px) {
  .media-mentions {
    padding-block: 4rem;
  }
}

.media-mentions__list {
  margin-top: 8rem;
  margin-inline: auto;
  max-width: 72rem;
}
@media screen and (max-width: 767px) {
  .media-mentions__list {
    margin-top: 4rem;
  }
}

.media-mentions__item {
  padding-block: 1.6rem;
}
@media screen and (max-width: 767px) {
  .media-mentions__item {
    padding-block: 0;
  }
}

@media screen and (max-width: 767px) {
  .media-mentions__item + .media-mentions__item {
    margin-top: 1.6rem;
  }
}

.media-mentions__item a {
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .media-mentions__item a {
    flex-direction: column;
    gap: 1.6rem;
  }
}

.media-mentions__card {
  width: 34rem;
  flex-shrink: 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .media-mentions__card {
    width: 100%;
  }
}

.media-mentions__card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 340/136;
  transition: 0.3s ease-out;
}

@media (any-hover: hover) {
  .media-mentions__item a:hover {
    opacity: 1;
  }
  .media-mentions__item a:hover .media-mentions__card img {
    transform: scale(1.03);
  }
}
.media-mentions__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.media-mentions__excerpt {
  font-size: 1.4rem;
  line-height: 1.8571428571;
}

.media-mentions__link {
  margin-top: -1.1rem;
  font-size: 1.4rem;
  line-height: 2.3571428571;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .media-mentions__link {
    margin-top: 0;
  }
}

.media-mentions__link span {
  position: relative;
}

.media-mentions__link span::after {
  content: "";
  width: 100%;
  height: 0.1rem;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #333;
}

/*-------------------------------
mv
-------------------------------*/
.mv {
  position: relative;
  width: 100%;
}

.mv__content {
  position: absolute;
  bottom: 5rem;
  left: 7.6rem;
  z-index: 50;
}
@media screen and (max-width: 767px) {
  .mv__content {
    bottom: 4rem;
    left: 2.4rem;
  }
}

.mv__text {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 4.8rem;
  line-height: 1.7916666667;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .mv__text {
    font-size: 2.1rem;
    line-height: 1.5238095238;
  }
}

.mv__menu-list {
  margin-top: 8rem;
  display: flex;
  gap: 2.4rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .mv__menu-list {
    margin-top: 3.2rem;
    width: 68.2666666667vw;
    gap: 0.8rem;
  }
}

.mv__menu-item {
  width: 14.4rem;
}
@media screen and (max-width: 767px) {
  .mv__menu-item {
    width: 8rem;
  }
}

.mv__swiper {
  height: 50vw;
}
@media screen and (max-width: 767px) {
  .mv__swiper {
    height: 170.6666666667vw;
    max-height: 100dvh;
    min-height: 600px;
  }
}

.swiper-img {
  width: 100%;
  height: 100%;
}

.swiper-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1440/720;
}
@media screen and (max-width: 767px) {
  .swiper-img img {
    aspect-ratio: 375/640;
  }
}

.swiper-img.-img01 {
  background: url(../images/mv/fv-img01.webp) center/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .swiper-img.-img01 {
    background: url(../images/mv/fv-img01_sp.webp) center/cover no-repeat;
  }
}

.swiper-img.-img02 {
  background: url(../images/mv/fv-img02.webp) center/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .swiper-img.-img02 {
    background: url(../images/mv/fv-img02_sp.webp) center/cover no-repeat;
  }
}

.swiper-img.-img03 {
  background: url(../images/mv/fv-img03.webp) center/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .swiper-img.-img03 {
    background: url(../images/mv/fv-img03_sp.webp) center/cover no-repeat;
  }
}

/*-------------------------------
top-concept
-------------------------------*/
.top-concept {
  padding-top: 20rem;
  padding-bottom: 12rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-concept {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.top-concept::before {
  content: "";
  width: 20%;
  height: 86.5756541524%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(230, 230, 230, 0.8) 72%, rgba(229, 229, 229, 0) 100%);
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .top-concept::before {
    width: 32%;
    max-width: 20rem;
    height: 100%;
    background: linear-gradient(0deg, rgba(229, 229, 229, 0) 0%, rgba(230, 230, 230, 0.6) 20%, rgba(230, 230, 230, 0.6) 87%, rgba(229, 229, 229, 0) 100%);
  }
}

.top-concept__inner.inner {
  position: relative;
  z-index: 10;
}

.top-concept__decoration {
  top: -24rem;
  left: clamp(-1.6rem, -0.2167 * (100vw - 1320px) + 1rem, 1rem);
  background: linear-gradient(90deg, rgb(230, 227, 222) 0%, rgba(153, 146, 136, 0.75) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.top-concept__list {
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  .top-concept__list {
    margin-top: 4rem;
  }
}

.top-concept__item {
  display: flex;
  align-items: center;
  gap: 6.6666666667%;
}
@media screen and (max-width: 767px) {
  .top-concept__item {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 4rem;
  }
}

.top-concept__item:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .top-concept__item:nth-child(even) {
    flex-direction: column-reverse;
  }
}

.top-concept__item + .top-concept__item {
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  .top-concept__item + .top-concept__item {
    margin-top: 4rem;
  }
}

.top-concept__content-title {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: 500;
  color: #4d4d4d;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-concept__content-title {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}

.top-concept__content-title:first-child::before {
  content: "";
  width: 12rem;
  height: 0.1rem;
  position: absolute;
  top: 2.6rem;
  left: -3.2rem;
  transform: translateX(-100%);
  background-color: #333;
}
@media screen and (max-width: 767px) {
  .top-concept__content-title:first-child::before {
    display: none;
  }
}

.top-concept__content-title + .top-concept__content-title {
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .top-concept__content-title + .top-concept__content-title {
    margin-top: 1.6rem;
  }
}

.top-concept__text {
  margin-top: 4rem;
  font-size: 1.6rem;
  line-height: 1.8125;
}
@media screen and (max-width: 767px) {
  .top-concept__text {
    margin-top: 2.4rem;
  }
}

.top-concept__btn {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .top-concept__btn {
    margin-top: 2.4rem;
  }
}

.top-concept__btn a {
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .top-concept__btn a {
    margin-inline: auto;
  }
}

.top-concept__img {
  width: 46.6666666667%;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .top-concept__img {
    width: 100%;
  }
}

.top-concept__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 560/560;
}

/*-------------------------------
top-feature
-------------------------------*/
.top-feature {
  padding-block: 12rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-feature {
    padding-block: 4rem;
  }
}

.top-feature::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(270deg, rgb(139, 139, 139) 0%, rgb(153, 153, 153) 73%, rgb(255, 255, 255) 73%, rgb(255, 255, 255) 100%);
  opacity: 0.1;
}

.top-feature__inner.inner {
  position: relative;
}

.top-feature__decoration {
  top: -18.4rem;
  right: clamp(-0.7rem, -0.1833 * (100vw - 1320px) + 1.5rem, 1.5rem);
  color: #e6e3de;
}

.top-feature__lead {
  margin-top: 4rem;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 1.8rem;
  line-height: 1.8333333333;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-feature__lead {
    font-size: 1.6rem;
    line-height: 1.8125;
  }
}

@media screen and (max-width: 767px) {
  .top-feature__lead span {
    padding-bottom: 1.6rem;
    font-size: 1.8rem;
    line-height: 1.8333333333;
  }
}

.top-feature__list {
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  .top-feature__list {
    margin-top: 4rem;
  }
}

@media screen and (max-width: 767px) {
  .top-feature__item {
    box-shadow: 0px 0px 2rem rgba(0, 0, 0, 0.1);
  }
}

.top-feature__item + .top-feature__item {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .top-feature__item + .top-feature__item {
    margin-top: 4rem;
  }
}

.top-feature__bg {
  padding-block: 8rem 2.4rem;
  padding-inline: 2.4rem;
}
@media screen and (max-width: 767px) {
  .top-feature__bg {
    padding: 0;
  }
}

.top-feature__item:nth-child(1) .top-feature__bg {
  background: url(../images/top/top-feature01.webp) center/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .top-feature__item:nth-child(1) .top-feature__bg {
    background: none;
  }
}

.top-feature__item:nth-child(2) .top-feature__bg {
  background: url(../images/top/top-feature02.webp) center/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .top-feature__item:nth-child(2) .top-feature__bg {
    background: none;
  }
}

.top-feature__item:nth-child(3) .top-feature__bg {
  background: url(../images/top/top-feature03.webp) center/cover no-repeat;
}
@media screen and (max-width: 767px) {
  .top-feature__item:nth-child(3) .top-feature__bg {
    background: none;
  }
}

.top-feature__img {
  display: none;
}
@media screen and (max-width: 767px) {
  .top-feature__img {
    display: block;
  }
}

.top-feature__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 327/242;
}

.top-feature__content {
  padding: 6.4rem 8rem 4rem;
  max-width: 50%;
  background-color: rgba(255, 255, 255, 0.95);
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-feature__content {
    padding: 0 1.6rem 4rem;
    max-width: 100%;
  }
}

.top-feature__item:nth-child(odd) .top-feature__content {
  margin-left: auto;
}

.top-feature__number {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 9.6rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #807e7f;
  position: absolute;
  top: -5.6rem;
  left: 8rem;
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .top-feature__number {
    position: static;
    font-size: 6.4rem;
    line-height: 1.5;
    text-align: center;
  }
}

.top-feature__number span {
  padding-right: 1.3rem;
  font-size: 6.4rem;
  line-height: 1.125;
}
@media screen and (max-width: 767px) {
  .top-feature__number span {
    padding-right: 0.8rem;
    font-size: 4.3rem;
    line-height: 1.6744186047;
  }
}

.top-feature__content-title {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 500;
  color: #4d4d4d;
}
@media screen and (max-width: 767px) {
  .top-feature__content-title {
    margin-top: 1.6rem;
    font-size: 1.8rem;
    line-height: 1.5555555556;
    text-align: center;
  }
}

.top-feature__text {
  margin-top: 2.4rem;
  font-size: 1.6rem;
  line-height: 1.8125;
}
@media screen and (max-width: 767px) {
  .top-feature__text {
    margin-top: 1.6rem;
  }
}

.top-feature__more-btn {
  margin-top: 2.4rem;
}

.top-feature__more-btn a {
  margin-inline: auto;
}

/*-------------------------------
top-info
-------------------------------*/
.top-info {
  padding-top: 12rem;
}
@media screen and (max-width: 767px) {
  .top-info {
    padding-top: 4rem;
  }
}

.top-info__content {
  margin-top: 12rem;
  display: flex;
  gap: 10%;
}
@media screen and (max-width: 767px) {
  .top-info__content {
    margin-top: 4rem;
    flex-direction: column;
    gap: 4rem;
  }
}

.top-info__note {
  margin-top: 2.4rem;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .top-info__note {
    margin-top: 1.6rem;
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

.top-info__btn-list {
  margin-top: 12rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .top-info__btn-list {
    margin-top: 4rem;
  }
}

.top-info__access {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .top-info__access {
    flex-direction: column;
    gap: 4rem;
  }
}

.top-info__detail-row {
  display: flex;
}
@media screen and (max-width: 767px) {
  .top-info__detail-row {
    flex-direction: column;
    gap: 1.6rem;
  }
}

.top-info__detail-row + .top-info__detail-row {
  margin-top: 4rem;
}

.top-info__detail-term {
  padding-right: 1.6rem;
  width: 20.7407407407%;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 500;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .top-info__detail-term {
    padding-right: 0;
    padding-bottom: 1.6rem;
    width: 100%;
    border-bottom: 1px solid #4d4d4d;
  }
}

.top-info__detail-desc {
  padding-block: 0.4rem;
  padding-left: 2.4rem;
  width: 79.2592592593%;
  font-size: 1.6rem;
  line-height: 1.5;
  border-left: 1px solid #4d4d4d;
}
@media screen and (max-width: 767px) {
  .top-info__detail-desc {
    padding-block: 0;
    padding-left: 0;
    width: 100%;
    border-left: none;
  }
}

.top-info__detail-desc-row {
  display: flex;
}

.top-info__detail-desc-row + .top-info__detail-desc-row {
  margin-top: 1.6rem;
}

.top-info__detail-desc-row span {
  display: block;
  width: 19.8511166253%;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .top-info__detail-desc-row span {
    width: 24.4648318043%;
  }
}

.top-info__detail-desc-row p {
  display: block;
  width: 80.1488833747%;
  flex-shrink: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-info__detail-desc-row p {
    width: 75.5351681957%;
  }
}

.top-info__detail-desc-row p::before {
  content: "：";
  width: 1.6rem;
  height: 2.4rem;
  position: absolute;
  top: 0;
  left: -1.4rem;
  font-size: 1.6rem;
  line-height: 1.5;
}

.top-info__map-wrap {
  width: 54rem;
}
@media screen and (max-width: 767px) {
  .top-info__map-wrap {
    width: 100%;
  }
}

.top-info__map-wrap iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 540/320;
}
@media screen and (max-width: 767px) {
  .top-info__map-wrap iframe {
    aspect-ratio: 327/320;
  }
}

/*-------------------------------
top-message
-------------------------------*/
.top-message {
  margin-top: 12rem;
  padding-bottom: 8rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-message {
    margin-top: 4rem;
    padding-bottom: 4rem;
  }
}

.top-message__inner.inner {
  position: relative;
}
.top-message__decoration {
  top: 5.8rem;
  right: clamp(-10.1rem, -0.3833 * (100vw - 1320px) - 5.5rem, -5.5rem);
  background: linear-gradient(90deg, rgb(230, 227, 222) 0%, rgba(230, 227, 222, 0.5) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.top-message__content {
  margin-top: 8rem;
  display: flex;
  align-items: center;
  gap: 6.6666666667%;
}
@media screen and (max-width: 767px) {
  .top-message__content {
    margin-top: 4rem;
    gap: 4rem;
    flex-direction: column;
  }
}

.top-message__img {
  width: 46.6666666667%;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .top-message__img {
    width: 100%;
  }
}

.top-message__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 560/906;
}

.top-message__body {
  width: 46.6666666667%;
}
@media screen and (max-width: 767px) {
  .top-message__body {
    width: 100%;
  }
}

.top-message__body-title {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: 500;
  color: #4d4d4d;
}
@media screen and (max-width: 767px) {
  .top-message__body-title {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}

.top-message__text {
  margin-top: 4rem;
  font-size: 1.6rem;
  line-height: 1.8125;
}
@media screen and (max-width: 767px) {
  .top-message__text {
    margin-top: 2.4rem;
    font-size: 1.6rem;
    line-height: 1.8125;
  }
}

.top-message__sign {
  margin-top: 12rem;
  margin-left: auto;
  width: 32.4rem;
  text-align: right;
  font-family: "Noto Serif JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .top-message__sign {
    margin-top: 4rem;
    width: 25.9rem;
  }
}

.top-message__name-ja {
  padding-bottom: 1.6rem;
  font-size: 3.2rem;
  line-height: 1;
  border-bottom: 0.5px solid #333;
}
@media screen and (max-width: 767px) {
  .top-message__name-ja {
    font-size: 2.1rem;
    line-height: 1.2380952381;
  }
}

.top-message__name-ja span {
  padding-right: 2.4rem;
  font-size: 2.1rem;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .top-message__name-ja span {
    padding-right: 1.6rem;
    font-size: 1.6rem;
    line-height: 1.3125;
  }
}

.top-message__name-en {
  margin-top: 1.6rem;
  font-size: 1.8rem;
  line-height: 1.7777777778;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .top-message__name-en {
    font-size: 1.6rem;
    line-height: 1;
  }
}

/*-------------------------------
top-news
-------------------------------*/
.top-news {
  margin-top: 12rem;
  padding-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .top-news {
    margin-top: 4rem;
    padding-bottom: 4rem;
  }
}

.top-news__content {
  padding: 8rem;
  background-color: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .top-news__content {
    padding: 2.4rem 1.6rem;
  }
}

.top-news__list {
  margin-top: 4rem;
  padding-inline: 8rem;
  border-block: 0.5px solid #333;
}
@media screen and (max-width: 767px) {
  .top-news__list {
    margin-top: 2.4rem;
    padding-inline: 0;
    padding-block: 0.8rem;
  }
}

.top-news__item a {
  padding-block: 2.4rem;
  display: flex;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .top-news__item a {
    flex-direction: column;
    padding-block: 1.6rem;
  }
}

.top-news__item:not(:last-child) {
  border-bottom: 0.5px dashed #333;
}

.top-news__date {
  width: 13.2954545455%;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .top-news__date {
    width: 100%;
    font-size: 1.28rem;
    line-height: 1.875;
  }
}

.top-news__text {
  width: 86.7045454545%;
}
@media screen and (max-width: 767px) {
  .top-news__text {
    width: 100%;
  }
}

.top-news__text span {
  position: relative;
  background: linear-gradient(180deg, transparent calc(100% - 2px), #4d4d4d calc(100% - 1px));
  background-size: 0% 100%;
  background-repeat: no-repeat;
  background-position: right;
  transition: background-size 0.5s ease-out;
}

.top-news__more {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .top-news__more {
    margin-top: 2.4rem;
  }
}

.top-news__more a {
  margin-inline: auto;
}

@media (any-hover: hover) {
  .top-news__more a:hover {
    opacity: 1;
  }
  .top-news__item a:hover .top-news__text span {
    background-size: 100% 100%;
    background-position: left;
  }
}
/*-------------------------------
top-service
-------------------------------*/
.top-service {
  padding-top: 12rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-service {
    padding-top: 4rem;
  }
}

.top-service__inner.-medical.inner {
  position: relative;
}

.top-service__decoration.section-decoration {
  line-height: 1;
  top: -16.9rem;
  left: clamp(1.2rem, -0.0667 * (100vw - 1320px) + 2rem, 2rem);
  background: linear-gradient(317deg, rgba(230, 227, 222, 0.35) 40%, rgba(230, 227, 222, 0.73) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.top-service__lead {
  margin-top: 2.4rem;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 1.8rem;
  line-height: 1.8333333333;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-service__lead {
    margin-top: 4rem;
  }
}

.top-service__subtitle {
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  .top-service__subtitle {
    margin-top: 4rem;
  }
}

.top-service__subtitle.-beauty {
  margin-top: 0;
}

.top-service__insurance-list {
  margin-top: 8rem;
  padding-bottom: 8rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .top-service__insurance-list {
    margin-top: 4rem;
    padding-bottom: 2.4rem;
    grid-template-columns: repeat(1, 1fr);
  }
}

.top-service__insurance-item {
  box-shadow: 0px 0px 2.5rem rgba(0, 0, 0, 0.1);
}

.top-service__insurance-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 588/320;
}
@media screen and (max-width: 767px) {
  .top-service__insurance-img img {
    aspect-ratio: 327/184;
  }
}

.top-service__insurance-body {
  padding: 8.8rem 4rem 4rem;
  background-color: #ebebeb;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-service__insurance-body {
    padding: 5.6rem 2.4rem 2.4rem;
  }
}

.top-service__insurance-body.-no-icon {
  padding-top: 3.2rem;
}

.top-service__insurance-icon {
  margin-top: 0;
  width: 14.6rem;
  position: absolute;
  top: -7.3rem;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.04);
  border-radius: 10rem;
}
@media screen and (max-width: 767px) {
  .top-service__insurance-icon {
    width: 8rem;
    top: -4rem;
  }
}

.top-service__insurance-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 146/146;
}

.top-service__insurance-title {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: 700;
  color: #4d4d4d;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-service__insurance-title {
    font-size: 1.8rem;
    line-height: 1;
  }
}

.top-service__insurance-text {
  margin-top: 2.4rem;
  font-size: 1.8rem;
  line-height: 1.8333333333;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-service__insurance-text {
    font-size: 1.6rem;
    line-height: 1.8125;
    text-align: left;
  }
}

.top-service__more-btn {
  margin-top: 2.4rem;
}

.top-service__more-btn a {
  margin-inline: auto;
}

.top-service__self-wrap {
  padding-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .top-service__self-wrap {
    padding-bottom: 6.4rem;
  }
}

.top-service__self {
  margin-top: 8rem;
  padding: 4rem;
  border: 0.5px solid #807e7f;
  box-shadow: 0px 0px 2.5rem rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 767px) {
  .top-service__self {
    margin-top: 4rem;
    padding: 2.4rem;
  }
}

.top-service__self-icon {
  margin-inline: auto;
  width: 14.6rem;
}
@media screen and (max-width: 767px) {
  .top-service__self-icon {
    width: 12rem;
  }
}

.top-service__self-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 146/146;
}

.top-service__self-text {
  margin-top: 2.4rem;
  font-size: 1.8rem;
  line-height: 1.8333333333;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-service__self-text {
    font-size: 1.6rem;
    line-height: 1.8125;
    text-align: left;
  }
}

.top-service__beauty-bg {
  padding-block: 12rem 8rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-service__beauty-bg {
    padding-block: 4rem 6.4rem;
  }
}

.top-service__beauty-bg::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 28%, rgb(136, 136, 136) 28%, rgb(153, 153, 153) 100%);
  opacity: 0.1;
  z-index: -1;
}

.top-service__beauty-list {
  margin-top: 8rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.4rem;
}
@media screen and (max-width: 767px) {
  .top-service__beauty-list {
    margin-top: 4rem;
    grid-template-columns: repeat(1, 1fr);
  }
}

.top-service__beauty-item {
  padding: 4rem;
  border: 0.5px solid #807e7f;
  box-shadow: 0px 0px 2.5rem rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 767px) {
  .top-service__beauty-item {
    padding: 2.4rem;
  }
}

.top-service__beauty-icon {
  margin-inline: auto;
  width: 14.6rem;
}
@media screen and (max-width: 767px) {
  .top-service__beauty-icon {
    width: 12rem;
  }
}

.top-service__beauty-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 146/146;
}

.top-service__beauty-title {
  margin-top: 2.4rem;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: 700;
  color: #807e7f;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-service__beauty-title {
    font-size: 1.8rem;
    line-height: 1;
  }
}

.top-service__beauty-text {
  margin-top: 2.4rem;
  font-size: 1.8rem;
  line-height: 1.8333333333;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-service__beauty-text {
    font-size: 1.6rem;
    line-height: 1.8125;
    text-align: left;
  }
}

.top-service__other {
  margin-top: 2.4rem;
  padding: 4rem;
  border: 0.5px solid #807e7f;
  box-shadow: 0px 0px 2.5rem rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 767px) {
  .top-service__other {
    padding: 2.4rem;
  }
}

.top-service__other-title {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: 700;
  color: #807e7f;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-service__other-title {
    font-size: 1.8rem;
    line-height: 1;
  }
}

.top-service__other-text {
  margin-top: 2.4rem;
  font-size: 1.8rem;
  line-height: 1.8333333333;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-service__other-text {
    font-size: 1.6rem;
    line-height: 1.8125;
    text-align: left;
  }
}

/*-------------------------------

-------------------------------*/
.header-layout {
  position: absolute;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .header-layout {
    position: fixed;
  }
}

/*-------------------------------
desktop-only（デスクトップのみ表示）
-------------------------------*/
@media screen and (max-width: 767px) {
  .desktop-only {
    display: none;
  }
}

/*-------------------------------
fade-up(要素が画面に入ったらアニメーション)
-------------------------------*/
.js-fade-up {
  opacity: 0;
  transform: translateY(70px);
  transition: 0.5s ease-out;
}

.js-fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

/*-------------------------------
inline-block(改行時などに使用)
-------------------------------*/
.inline-block {
  display: inline-block;
}

/*-------------------------------
inner（コンテンツ幅基本設定）
-------------------------------*/
.inner {
  padding: 0 80px;
  max-width: 1360px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 24px;
    max-width: 500px;
  }
}

/*-------------------------------
mobile-only（モバイルのみ表示）
-------------------------------*/
.mobile-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .mobile-only {
    display: block;
  }
}
/*# sourceMappingURL=style.css.map */
