@charset "UTF-8";
/* ===================================
Reset
=================================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: inherit;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1.75;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* input textarea reset
==============================　*/
input,
textarea,
select {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  max-width: 100%;
  outline: none;
  outline: 0;
}

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

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

/* ===================================
common
=================================== */
:root {
  --color-bg: #fff5f0;
  --color-white: #fff;
  --color-black: #281400;
  --color-txt-black: #4c2b23;
  --color-gray: #a08c82;
  --color-pink: #ffbee6;
  --color-accent: #e6638c;
  --color-accent-rgb: 230, 99, 140;
  --font-base: "Noto Sans JP", sans-serif;
  --font-title: "Kaisei HarunoUmi", serif;
  --font-size-12: 12px;
  --font-size-16: 16px;
  --font-size-18: 18px;
  --font-size-21: 21px;
  --font-size-24: 24px;
  --font-size-28: 28px;
}

@media screen and (max-width: 768px) {
  :root {
    --font-size-12: clamp(12px, -2.8688046647px + 3.4985422741vw, 24px);
    --font-size-16: clamp(15px, -3.5860058309px + 4.3731778426vw, 30px);
    --font-size-18: clamp(16px, -1.3469387755px + 4.0816326531vw, 30px);
    --font-size-21: clamp(18px, -1.8250728863px + 4.6647230321vw, 34px);
    --font-size-24: clamp(20px, -2.3032069971px + 5.2478134111vw, 38px);
    --font-size-28: clamp(24px, -0.7813411079px + 5.8309037901vw, 44px);
  }
}
@media screen and (max-width: 425px) {
  :root {
    --font-size-12: clamp(8px, -3.6363636364px + 3.6363636364vw, 10px);
    --font-size-16: clamp(12px, -5.4545454545px + 5.4545454545vw, 15px);
    --font-size-18: clamp(12px, -11.2727272727px + 7.2727272727vw, 16px);
    --font-size-21: clamp(14px, -9.2727272727px + 7.2727272727vw, 18px);
    --font-size-24: clamp(16px, -7.2727272727px + 7.2727272727vw, 20px);
    --font-size-28: clamp(18px, -16.9090909091px + 10.9090909091vw, 24px);
  }
}
* {
  box-sizing: border-box;
  line-break: strict;
}

body {
  background-color: var(--color-bg);
  font-family: var(--font-base);
  font-size: var(--font-size-16);
  line-height: 1.75;
  color: var(--color-txt-black);
}
body.is-nav-open {
  overflow: hidden;
}

/* テキスト
==============================　*/
a {
  text-decoration: none;
  color: inherit;
}

.br--sp {
  display: none;
}
@media (max-width: 768px) {
  .br--sp {
    display: block;
  }
}
@media (max-width: 768px) {
  .br--pc {
    display: none;
  }
}

.font-title {
  font-family: var(--font-title);
}

.note__text {
  font-size: 0.8em;
}

.note__indent {
  text-indent: -1em;
  padding-left: 1em;
}

.color__accent {
  color: var(--color-accent);
}

.text__marker {
  background: rgba(var(--color-accent-rgb), 0.3);
  font-weight: 700;
}

/* メディア
==============================　*/
img {
  display: block;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

video {
  display: block;
  max-width: 100%;
  height: auto;
  outline: none;
}

iframe {
  max-width: 100%;
}

/* ===================================
パーツ、コンポーネント
=================================== */
.section__inner, .section__inner--min {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px clamp(20px, -4.7813411079px + 5.8309037901vw, 40px) 0;
  margin-top: 70px;
}
.section__inner--min {
  max-width: 880px;
  padding-top: 0;
}

.heading, .heading--un, .heading--min-l {
  font-family: var(--font-title);
  font-size: var(--font-size-28);
  font-weight: 700;
  width: fit-content;
  margin-inline: auto;
  padding-inline: 1.4em;
  text-align: center;
  position: relative;
}
.heading::before, .heading--un::before, .heading--min-l::before, .heading::after, .heading--un::after, .heading--min-l::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.2em;
  height: 1em;
  transform: translateY(-40%);
  background: url(../img/heading_icon.svg) no-repeat center center/contain;
}
.heading::after, .heading--un::after, .heading--min-l::after {
  right: 0;
  left: unset;
}
.heading--min-l {
  margin-inline: unset;
}
.heading--min-l::after {
  content: none;
}
@media screen and (min-width: 769px) {
  .heading--min-l {
    font-size: var(--font-size-24);
  }
}
.heading--un::before, .heading--un::after {
  content: none;
}
.heading__content {
  margin-top: clamp(50px, 25.2186588921px + 5.8309037901vw, 70px);
  font-family: var(--font-title);
  font-weight: 700;
  text-align: center;
  font-size: var(--font-size-18);
  background: var(--color-txt-black);
  color: var(--color-white);
  padding: 6px 40px;
  border-radius: 10px;
}

/* ボタン */
.btn--base {
  font-family: var(--font-title);
  font-size: var(--font-size-18);
  display: block;
  margin-top: 20px;
  text-align: center;
  background: var(--color-txt-black);
  color: var(--color-white);
  border-radius: 50px;
  padding: 3px 20px;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .btn--base:hover {
    opacity: 0.8;
  }
}
.btn--line {
  display: block;
  width: 55%;
  min-width: 230px;
  padding: 5px 20px;
  font-family: var(--font-title);
  font-size: var(--font-size-21);
  font-weight: 700;
  color: var(--color-accent);
  text-align: center;
  border-block: 2px solid var(--color-txt-black);
  transition: opacity 0.3s;
  position: relative;
}
.btn--line::after {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translate(50%, -50%);
  content: "";
  display: inline-block;
  width: 1em;
  height: 0.8em;
  background: url(../img/icon_arrow.svg) no-repeat center center/contain;
}
@media (hover: hover) {
  .btn--line:hover {
    opacity: 0.5;
  }
}
.btn--voice {
  display: block;
  margin-top: 40px;
  margin-inline: auto;
  width: 85%;
  max-width: 440px;
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  .btn--voice {
    width: 100%;
    max-width: unset;
  }
}
@media (hover: hover) {
  .btn--voice:hover {
    opacity: 0.8;
  }
}

/* アイコン */
.check__icon {
  text-indent: -1.8em;
  padding-left: 1.8em;
}
.check__icon::before {
  content: "";
  display: inline-block;
  width: 1.3em;
  height: 1.3em;
  margin-right: 0.5em;
  background: url(../img/icon_check.svg) no-repeat center center/contain;
  vertical-align: middle;
}
.check__icon2 {
  text-indent: -1.8em;
  padding-left: 1.8em;
}
.check__icon2::before {
  content: "";
  display: inline-block;
  width: 1.3rem;
  height: 1.3em;
  margin-right: 0.5em;
  background: url(../img/icon_check-pink.svg) no-repeat center center/contain;
  vertical-align: middle;
}
.check__list {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 10px;
}
@media screen and (max-width: 768px) {
  .check__list {
    grid-template-columns: 1fr;
  }
}
.check__item {
  font-size: var(--font-size-16);
  font-family: var(--font-title);
  font-weight: 700;
  border-bottom: 2px dotted var(--color-txt-black);
  padding-bottom: 10px;
}

/* アコーディオン */
.js-btn {
  cursor: pointer;
}

.js-answer {
  display: none;
}

/* ===================================
大カテゴリ
=================================== */
.staff .section__inner, .staff .section__inner--min,
.menu .section__inner,
.menu .section__inner--min,
.voice .section__inner,
.voice .section__inner--min,
.price .section__inner,
.price .section__inner--min,
.faq .section__inner,
.faq .section__inner--min {
  position: relative;
}
.staff .section__inner::before, .staff .section__inner--min::before,
.menu .section__inner::before,
.menu .section__inner--min::before,
.voice .section__inner::before,
.voice .section__inner--min::before,
.price .section__inner::before,
.price .section__inner--min::before,
.faq .section__inner::before,
.faq .section__inner--min::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 1px;
  background: currentColor;
}

.wrapper {
  position: relative;
}

/* header
==============================　*/
.header {
  position: sticky;
  z-index: 800;
  top: 0;
  background: var(--color-bg);
}
.header__copy {
  background: var(--color-txt-black);
  background: url(../img/header_copy_bg.png) repeat-x center center/cover;
  color: var(--color-white);
  padding: 5px clamp(20px, -4.7813411079px + 5.8309037901vw, 40px);
  font-family: var(--font-title);
  text-align: center;
  font-size: clamp(10px, 5.0437317784px + 1.166180758vw, 14px);
}
@media screen and (min-width: 769px) {
  .header__inner {
    box-sizing: content-box;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 clamp(20px, -4.7813411079px + 5.8309037901vw, 40px) 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    column-gap: 10px;
    position: relative;
  }
  .header__inner::before {
    content: "";
    display: block;
    position: absolute;
    top: 55px;
    left: calc(-0.5 * (100vw - 100%));
    width: 100vw;
    height: 1px;
    background: currentColor;
  }
  .header__box {
    width: calc(100% - 150px);
  }
  .header__info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
  }
  .header__logo {
    margin-top: 10px;
    width: 220px;
    display: block;
  }
}
@media screen and (min-width: 769px) and (hover: hover) {
  .header__logo:hover {
    opacity: 0.8;
  }
}
.header__tel {
  margin-top: 10px;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}
.header__tel a {
  font-family: var(--font-title);
  font-size: var(--font-size-24);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .header__tel a:hover {
    opacity: 0.8;
  }
}
.header__tel a img {
  height: 1em;
}
.header__hours {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  clip-path: polygon(0 0, 100% 0%, 100% 92%, 50% 100%, 0 92%);
  background: var(--color-black);
  padding-inline: 25px;
  padding-block: 10px 15px;
  font-family: var(--font-title);
  text-align: center;
  font-size: var(--font-size-12);
  position: relative;
  top: -30px;
}
.header__hours span {
  display: block;
}
.header__hours-title {
  color: #a08c82;
  width: 100%;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
}
.header__hours-time {
  color: var(--color-white);
}
.header__list {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  margin-top: 15px;
}
.header__list-item {
  text-align: center;
  background: var(--color-white);
  border: 1px solid var(--color-txt-black);
  border-radius: 3px;
  padding: 0 5px;
  flex-grow: 1;
  font-size: 14px;
}
.header__nav {
  width: 100%;
}
.header__nav-list {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}
.header__nav-item {
  text-align: center;
  border-left: 1px solid var(--color-txt-black);
}
.header__nav-item:last-child {
  border-right: 1px solid var(--color-txt-black);
}
.header__nav-item a {
  width: 100%;
  display: block;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .header__nav-item a:hover {
    opacity: 0.5;
  }
}
.header__wrap--sp {
  position: absolute;
  display: none;
}
.header__nav-btn {
  display: none;
  cursor: pointer;
  pointer-events: auto;
  width: 10%;
  min-width: clamp(50px, 1.4285714286px + 11.4285714286vw, 70px);
  aspect-ratio: 1/1;
  background: #a08c82;
  border-radius: 50%;
  border: 1px solid var(--color-white);
  position: relative;
  z-index: 990;
  margin-left: auto;
  top: -10px;
  right: clamp(20px, -4.7813411079px + 5.8309037901vw, 40px);
}
.header__nav-btn span {
  content: "";
  display: block;
  width: 50%;
  height: 1px;
  background: var(--color-white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header__nav-btn span:first-child {
  top: calc(50% + 10px);
}
.header__nav-btn span:last-child {
  top: calc(50% - 10px);
}
.header__nav-btn.is-open {
  position: absolute;
  top: 20px;
}
.header__nav-btn.is-open span {
  top: 50%;
  left: 25%;
}
.header__nav-btn.is-open span:first-child {
  rotate: 45deg;
  transform: unset;
}
.header__nav-btn.is-open span:nth-child(2) {
  width: 0;
  opacity: 0;
  left: 50%;
}
.header__nav-btn.is-open span:last-child {
  transform: unset;
  rotate: -45deg;
}
.header__nav-area {
  pointer-events: auto;
  position: fixed;
  z-index: 900;
  display: none;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding-inline: clamp(20px, -4.7813411079px + 5.8309037901vw, 40px);
  overflow: auto;
  background: #a08c82;
  justify-content: center;
}
.header__nav-area.is-open {
  display: flex;
}
.header__burger {
  padding-block: 40px;
}
.header__burger-tel a {
  margin-block: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: clamp(24px, -34.2857142857px + 13.7142857143vw, 48px);
  font-weight: 700;
  gap: 10px;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .header__burger-tel a:hover {
    opacity: 0.8;
  }
}
.header__burger-tel a img {
  height: 1em;
}
.header__burger-item {
  color: var(--color-white);
  text-align: center;
}
.header__burger-item:not(:last-child) {
  border-bottom: 1px solid var(--color-white);
}
.header__burger-item a {
  display: block;
  padding-block: clamp(16px, -18px + 8vw, 30px);
  font-size: clamp(16px, 6.2857142857px + 2.2857142857vw, 20px);
}
@media screen and (max-width: 1024px) {
  .header__inner {
    row-gap: 20px;
  }
  .header__inner::before {
    top: clamp(81px, 69px + 1.5625vw, 85px);
  }
  .header__info {
    align-items: flex-start;
    flex-direction: column;
  }
  .header__hours {
    top: -1px;
  }
  .header__tel a {
    font-size: clamp(20px, 8px + 1.5625vw, 24px);
  }
  .header__list-item {
    flex-grow: unset;
    padding: 0 8px;
  }
}
@media screen and (max-width: 768px) {
  .header {
    pointer-events: none;
    background: unset;
  }
  .header__copy {
    text-align: start;
    font-size: clamp(10px, -0.7142857143px + 3.3482142857vw, 25px);
    padding-block: 10px;
  }
  .header__info {
    background: var(--color-bg);
    padding: 10px clamp(10px, -27.1720116618px + 8.7463556851vw, 40px);
  }
  .header__logo {
    pointer-events: auto;
    display: block;
    width: clamp(200px, 76.0932944606px + 29.1545189504vw, 300px);
  }
  .header__nav, .header__tel {
    display: none;
  }
  .header__list {
    padding: 10px clamp(10px, -27.1720116618px + 8.7463556851vw, 40px);
    margin-top: 0;
  }
  .header__list-item {
    font-size: clamp(10px, -2.3906705539px + 2.915451895vw, 20px);
  }
  .header__hours {
    position: absolute;
    right: clamp(10px, -27.1720116618px + 8.7463556851vw, 40px);
    width: clamp(100px, -23.9067055394px + 29.1545189504vw, 200px);
    font-size: clamp(12px, 4.5655976676px + 1.749271137vw, 18px);
    padding-inline: 5px;
    padding-inline: clamp(5px, -19.7813411079px + 5.8309037901vw, 25px);
  }
  .header__nav-btn {
    display: block;
  }
}
@media screen and (max-width: 425px) {
  .header__list {
    width: 100%;
  }
  .header__list-item {
    padding-inline: 5px;
  }
}

/* fv
==============================　*/
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: var(--font-size-18);
  background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  object-fit: cover;
}

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

.fv__inner {
  width: 100%;
}
.fv__bottom {
  margin-top: 20px;
  overflow: hidden;
}
.fv__bottom a {
  display: flex;
  width: 100vw;
}
.fv__bottom .slider_inner {
  min-width: 70vw;
  display: flex;
}
.fv__bottom .slider_inner:first-of-type {
  animation: reverse-loop 50s -25s linear infinite;
}
.fv__bottom .slider_inner:last-of-type {
  animation: reverse-loop2 50s linear infinite;
}
@keyframes reverse-loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes reverse-loop2 {
  0% {
    transform: translateX(0%);
  } /*1つ目のインナーに続けて動かす*/
  to {
    transform: translateX(-200%);
  }
}
@media screen and (max-width: 768px) {
  .fv {
    margin-top: calc(-1 * clamp(125px, 27.8571428571px + 22.8571428571vw, 165px));
    position: relative;
    z-index: -1;
  }
  .fv .slider_inner {
    min-width: 120vw;
  }
  .fv .slider_inner img:last-of-type {
    display: none;
  }
}

/* news
==============================　*/
.news .section__inner, .news .section__inner--min {
  padding-top: 0;
}
.news__flex {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px 20px;
}
.news__article-body {
  border: 1px solid var(--color-txt-black);
  border-left: none;
  border-radius: 0 30px 30px 0;
  padding: 20px;
  padding-left: calc(100vw - 100%);
  margin-top: 15px;
  margin-left: calc(-1 * (100vw - 100%));
}
.news__calendar {
  max-width: 250px;
}
.news__calendar--note {
  font-size: var(--font-size-12);
  line-height: 1.1;
  margin-top: 0.5em;
  padding-left: 1em;
  text-indent: -1em;
  color: var(--color-accent);
}
.news__calendar-item {
  /* カレンダーの中身を入れる */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 230px;
  border: 1px solid var(--color-txt-black);
}
@media (max-width: 768px) {
  .news__flex {
    grid-template-columns: 1fr;
  }
  .news__calendar {
    max-width: 100%;
  }
}

/* commitment
==============================　*/
.commitment {
  padding-block: 20px;
  position: relative;
  overflow-x: hidden;
}
.commitment .section__inner, .commitment .section__inner--min {
  margin-top: 0;
  padding-top: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.commitment__heading {
  font-family: var(--font-title);
  font-size: var(--font-size-24);
  font-weight: 700;
  text-align: center;
}
.commitment__heading .number {
  display: inline-block;
  font-size: clamp(30px, 22.5655976676px + 1.749271137vw, 36px);
  font-weight: 700;
  line-height: 1;
  width: 1.5em;
  padding: 7px;
  margin: 0 3px 6px 0px;
  vertical-align: middle;
  color: var(--color-white);
  background: var(--color-txt-black);
  border-radius: 50px;
  aspect-ratio: 1/1;
}
.commitment__img {
  margin-inline: auto;
  width: 100%;
  max-width: 1800px;
  min-width: 1350px;
}
.commitment__body {
  width: fit-content;
  margin-inline: auto 20px;
  box-sizing: content-box;
  position: relative;
}
.commitment__body::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 50px;
  left: -100px;
  transform: translateY(100%);
  width: clamp(100px, -20px + 15.625vw, 140px);
  height: clamp(110px, -40px + 19.53125vw, 160px);
  background: url(../img/commitment_icon.svg) no-repeat center bottom/contain;
}
.commitment__list {
  width: fit-content;
  margin: clamp(10px, -2.3906705539px + 2.915451895vw, 20px) auto clamp(20px, -4.7813411079px + 5.8309037901vw, 40px);
}
.commitment__item {
  margin-top: 10px;
  font-family: var(--font-title);
  font-size: var(--font-size-16);
}
@media screen and (max-width: 768px) {
  .commitment__item {
    font-size: clamp(16px, 0.7328244275px + 4.0712468193vw, 32px);
  }
}
.commitment__list--accordion {
  margin-top: clamp(30px, 5.2186588921px + 5.8309037901vw, 50px);
}
.commitment__list--accordion .commitment__item {
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--color-txt-black);
  padding-bottom: 10px;
}
.commitment__list--accordion .commitment__question-text {
  font-size: var(--font-size-21);
  width: 100%;
  font-weight: bold;
}
.commitment__list--accordion .commitment__answer-text {
  margin-top: 10px;
  margin-left: 1.8em;
}
@media screen and (max-width: 768px) {
  .commitment__list--accordion .commitment__answer-text {
    margin-inline: 1em;
  }
}
.commitment .btn--base {
  margin-inline: auto;
  max-width: 55%;
}
@media (max-width: 768px) {
  .commitment {
    overflow: unset;
  }
  .commitment .section__inner, .commitment .section__inner--min {
    top: unset;
    bottom: 10%;
    transform: translate(-50%, 0%);
  }
  .commitment__img {
    max-width: unset;
    min-width: unset;
    width: 100%;
  }
  .commitment__body {
    margin-inline: auto;
  }
  .commitment__body::before {
    top: 0;
    bottom: unset;
    left: unset;
    right: 0;
    transform: translate(20px, -110%);
    width: clamp(70px, 18.4732824427px + 13.7404580153vw, 124px);
    height: clamp(70px, -4.427480916px + 19.8473282443vw, 148px);
  }
}

/* message
==============================　*/
.message {
  position: relative;
}
.message__inner {
  width: 100%;
  max-width: 880px;
  margin-inline: auto;
  padding-inline: clamp(20px, -4.7813411079px + 5.8309037901vw, 40px);
  position: relative;
}
.message__bg {
  pointer-events: none;
  position: absolute;
  top: -100px;
  left: 50%;
  width: 100%;
  max-width: 1500px;
  mix-blend-mode: multiply;
  transform: translateX(-50%);
}
.message__heading {
  font-family: var(--font-title);
  font-size: var(--font-size-24);
  font-weight: 700;
  position: relative;
}
.message__heading::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.6lh;
  left: -0.6em;
  transform: translate(-100%, -100%);
  width: 1.5em;
  height: 1.5em;
  background: url(../img/icon_reef.svg) no-repeat center center/contain;
}
.message__heading::after {
  content: "";
  display: block;
  position: absolute;
  top: 0.5lh;
  left: -0.6em;
  transform: translateX(-100%);
  width: calc(100vw - 100% - 0.5em);
  height: 1px;
  background: currentColor;
}
.message__heading--flex {
  margin-top: -20px;
  display: flex;
  align-items: end;
  gap: 20px;
}
.message__heading--img {
  flex-grow: 1;
  flex-shrink: 0;
}
.message__heading--img img {
  margin-inline: auto;
  width: clamp(120px, 45.6559766764px + 17.4927113703vw, 180px);
}
.message__heading2 {
  font-family: var(--font-title);
  font-size: var(--font-size-21);
  font-weight: 700;
  flex-shrink: 5;
  width: fit-content;
  position: relative;
}
.message__heading2::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: -0.6em;
  transform: translate(-100%, 0%);
  width: 1.5em;
  height: 1.5em;
  background: url(../img/icon_reef.svg) no-repeat center center/contain;
}
.message__heading2::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: calc(-1 * (50vw - 50%));
  width: calc(50vw - 50% + 100%);
  height: 1px;
  background: currentColor;
}
@media screen and (max-width: 768px) {
  .message__heading::before {
    top: 1.3lh;
    width: 1em;
    height: 1em;
  }
  .message__heading::after {
    top: 1.2lh;
  }
  .message__heading--flex {
    margin-top: 20px;
    gap: 10px;
  }
  .message__heading2 {
    margin-left: 2em;
  }
}
.message__body {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 10px;
}
.message__body-r {
  flex-shrink: 3;
}
@media screen and (max-width: 768px) {
  .message__body-r {
    width: 50%;
  }
}
.message__img {
  width: 100%;
  max-width: 250px;
  margin-inline: auto;
}
.message .staff-item__label {
  margin-top: -0.5lh;
  text-align: center;
  position: relative;
  width: fit-content;
  min-width: 200px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .message .staff-item__label {
    width: 100%;
    min-width: unset;
  }
}
.message .staff-item__position {
  margin-top: 10px;
  text-align: center;
}
.message .staff-item__name {
  text-align: center;
}
.message__list {
  margin-top: 40px;
}
.message__item {
  margin-top: 15px;
  font-family: var(--font-title);
  font-size: var(--font-size-16);
  padding-left: 1.9em;
  text-indent: -1.9em;
}
.message__item::before {
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  margin-right: 0.4em;
  background: url(../img/icon_worry1.svg) no-repeat center center/contain;
  vertical-align: middle;
}
.message__item:nth-child(even)::before {
  background-image: url(../img/icon_worry2.svg);
}
.message__text {
  margin-top: clamp(30px, 5.2186588921px + 5.8309037901vw, 50px);
  font-family: var(--font-title);
  font-size: var(--font-size-16);
  line-height: 1.8;
  position: relative;
}
.message__text p + p {
  margin-top: 1lh;
}
.message__text::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  aspect-ratio: 5/2;
  background: url(../img/message_icon.png) no-repeat center center/contain;
}
.message .btn--line {
  margin-top: 60px;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) {
  .message__text, .message__body-l {
    padding-left: 40px;
  }
}
@media screen and (max-width: 768px) {
  .message__text::after {
    width: 45%;
    position: unset;
    margin-inline: auto;
    margin-top: 50px;
    margin-bottom: -50px;
  }
  .message__body {
    align-items: center;
    flex-direction: column-reverse;
  }
  .message__text, .message__body-l {
    padding-left: unset;
  }
  .message__body-l {
    display: contents;
  }
  .message__heading {
    order: 1;
    margin-inline: auto;
    margin-bottom: 20px;
    width: fit-content;
  }
  .message__list {
    margin-top: 0;
  }
}

/* staff
==============================　*/
.staff-list {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  margin-top: 35px;
}

.staff-item__top {
  margin-inline: auto;
  display: grid;
  grid-template-columns: 5fr 6fr;
  align-items: center;
  gap: 15px;
}
.staff-item__hr {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  background: #a08c82;
}
.staff-item__body {
  font-size: var(--font-size-16);
  text-align: center;
}
.staff-item__name {
  font-size: var(--font-size-24);
  font-family: var(--font-title);
  font-weight: 700;
}
.staff-item__label {
  margin-top: 18px;
  background: #a08c82;
  color: var(--color-white);
  padding: 2px 10px;
  border-radius: 50px;
}
.staff-item__carrier {
  margin-top: 12px;
  color: #a08c82;
  border: 1px solid #a08c82;
  padding: 2px 10px;
  border-radius: 50px;
}
.staff-item__carrier-list {
  margin-top: 12px;
  color: #a08c82;
  font-size: var(--font-size-12);
  text-align: left;
}
.staff-item__text {
  margin-top: 30px;
}
.staff-item__text p + p {
  margin-top: 1em;
}

@media screen and (max-width: 768px) {
  .staff-list {
    grid-template-columns: 1fr;
  }
  .staff-item__hr {
    width: 100%;
    height: 2px;
  }
}
/* menu
==============================　*/
.menu__heading {
  font-family: var(--font-title);
  font-size: var(--font-size-21);
  font-weight: 700;
}
.menu__text {
  margin-top: clamp(14px, 6.5655976676px + 1.749271137vw, 20px);
}
.menu__text p + p {
  margin-top: 1lh;
}
.menu__desc {
  margin-top: 45px;
  display: grid;
  grid-template-columns: min(30%, 250px) 1fr;
  align-items: center;
  gap: clamp(20px, -70px + 11.71875vw, 50px);
}
.menu__desc--r {
  display: block;
}
.menu__desc--r > *:first-of-type > *:first-of-type {
  margin-top: 0;
}
.menu__desc .case__text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .menu .case__text {
    -webkit-line-clamp: 3;
  }
  .menu__desc {
    grid-template-columns: 1fr;
    margin-top: clamp(25px, -8.3333333333px + 8.8888888889vw, 45px);
  }
  .menu__desc--l {
    max-width: 280px;
    width: 40%;
    margin-inline: auto;
  }
}

.menu-cont {
  margin-top: clamp(30px, 17.6093294461px + 2.915451895vw, 40px);
  display: flex;
  align-items: end;
  gap: 20px clamp(10px, -39.5283018868px + 8.2547169811vw, 45px);
}
.menu-cont--logo {
  margin-top: 30px;
  margin-inline: auto;
  width: auto;
  max-height: 90px;
  display: block;
}
.menu-cont--icon {
  width: 120px;
  margin-inline: auto;
}
.menu-cont--un {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr clamp(300px, 120px + 23.4375vw, 360px);
  align-items: center;
  column-gap: clamp(20px, -70px + 11.71875vw, 50px);
}
.menu-cont--un .menu__heading {
  grid-area: 1/1/2/2;
}
.menu-cont--un .menu__text {
  grid-area: 2/1/3/2;
}
.menu-cont--un .btn--base {
  grid-area: 3/1/4/2;
}
.menu-cont--un .menu-cont--img {
  grid-area: 1/2/4/3;
}
@media screen and (max-width: 768px) {
  .menu-cont {
    flex-direction: column;
    align-items: center;
  }
  .menu-cont--icon {
    width: 40%;
  }
  .menu-cont--un {
    grid-template-columns: 1fr;
  }
  .menu-cont--un .menu-cont--img {
    grid-area: unset;
    width: 100%;
    max-width: 600px;
    margin-inline: auto;
    margin-top: 40px;
  }
  .menu-cont--un .btn--base {
    margin-inline: auto;
    min-width: 50%;
  }
  .menu-cont--r {
    width: 50%;
  }
}

/* タブコンテンツ */
.tab__content {
  margin-top: 30px;
}
.tab__button--wrap {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  justify-content: center;
  border: 2px solid var(--color-txt-black);
  border-radius: 10px;
  background: var(--color-white);
  overflow: hidden;
}
@media (min-width: 769px) {
  .tab__button--wrap.is-sp {
    display: contents;
  }
}
@media (max-width: 768px) {
  .tab__button--wrap {
    display: flex;
    align-items: center;
  }
  .tab__button--wrap:nth-child(2) {
    max-width: 80%;
    margin-inline: auto;
    margin-top: 8px;
  }
  .tab__button--wrap.is-pc {
    display: contents;
  }
}
.tab__button {
  cursor: pointer;
  padding: 20px 3px;
  font-family: var(--font-title);
  font-size: var(--font-size-16);
  font-weight: 700;
  text-align: center;
  border-right: 2px solid var(--color-txt-black);
}
.tab__button.no__border {
  border-right: none;
}
.tab__button.is-active {
  background: var(--color-txt-black);
  color: var(--color-white);
}
@media (max-width: 768px) {
  .tab__button {
    padding-block: 10px;
    width: 20%;
    flex-grow: 1;
  }
  .tab__button:last-of-type {
    border-right: none;
  }
}
.tab__item {
  display: none;
}
.tab__item.is-active {
  display: block;
}

/* flow
==============================　*/
.flow {
  background: url(../img/flow_bg.png) no-repeat center bottom/cover;
  color: var(--color-white);
  padding-block: 30px;
  margin-top: 100px;
}
.flow .section__inner, .flow .section__inner--min {
  margin-top: 0;
  padding-top: 0;
}

.flow-box {
  max-width: 930px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.flow-box__l {
  flex-grow: 1;
  display: grid;
  grid-template-columns: 160px 1fr;
  justify-items: center;
  gap: 10px;
}
.flow-box__title {
  font-family: var(--font-title);
  font-size: var(--font-size-24);
  font-weight: 700;
  width: fit-content;
  writing-mode: vertical-rl;
  grid-area: 1/1/2/2;
  position: relative;
}
.flow-box__title::after {
  content: "";
  display: block;
  position: absolute;
  top: -30px;
  right: -20px;
  width: 1px;
  height: 100px;
  background: var(--color-white);
}
.flow-box__label {
  width: 100%;
  background: var(--color-bg);
  color: var(--color-txt-black);
  font-family: var(--font-title);
  font-size: var(--font-size-18);
  font-weight: 700;
  text-align: center;
  padding: 2px 15px;
  border-radius: 10px;
}
.flow-box__label--wrap {
  display: flex;
  align-items: end;
  width: 100%;
  grid-area: 2/1/3/2;
}
.flow-box__flow {
  grid-area: 1/2/3/3;
  max-width: 240px;
}
.flow-box__r {
  max-width: clamp(200px, 86.4774624374px + 26.7111853088vw, 360px);
}
.flow-box__img {
  position: relative;
  top: -50px;
}
.flow-box__icon {
  width: 80%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .flow-box__l {
    gap: 40px 10px;
    grid-template-columns: auto 1fr;
  }
  .flow-box__title {
    writing-mode: unset;
  }
  .flow-box__title::after {
    position: relative;
    top: unset;
    bottom: -5px;
    left: -45px;
    right: unset;
    width: 140px;
    height: 1px;
  }
  .flow-box__label--wrap {
    justify-content: center;
    grid-area: 1/2/2/2;
  }
  .flow-box__label {
    width: fit-content;
    padding: 15px 2px;
    writing-mode: vertical-rl;
  }
  .flow-box__label .un-number {
    text-combine-upright: all;
  }
  .flow-box__flow {
    grid-area: 2/1/3/3;
    max-width: 120%;
  }
  .flow-box__r {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

/* voice
==============================　*/
.voice-list {
  max-width: 930px;
  margin-top: 40px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(10px, -8.5860058309px + 4.3731778426vw, 25px);
}
.voice-list__item {
  background: var(--color-white);
  border-radius: 10px;
  padding: clamp(15px, 2.6093294461px + 2.915451895vw, 25px) clamp(15px, 8.804664723px + 1.4577259475vw, 20px);
  display: grid;
  grid-template-columns: min(100px, 25%) 1fr;
  gap: 20px;
}
.voice-list__img {
  border: 1px solid var(--color-txt-black);
  border-radius: 50px;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.voice-list__title {
  font-family: var(--font-title);
  font-size: var(--font-size-18);
  font-weight: 700;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px dashed currentColor;
  display: flex;
  justify-content: space-between;
}
.voice-list__name {
  font-size: var(--font-size-16);
  font-weight: 500;
}
.voice-list__comment {
  font-size: var(--font-size-16);
}
.voice-list__comment.un-3line {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
@media (max-width: 768px) {
  .voice-list {
    grid-template-columns: 1fr;
  }
  .voice-list__img {
    grid-area: 1/1/2/2;
  }
  .voice-list__text {
    display: contents;
  }
  .voice-list__comment {
    grid-area: 2/1/3/3;
  }
  .voice-list__title {
    grid-area: 1/2/2/3;
    flex-direction: column;
  }
}

/* price
==============================　*/
.price__note {
  max-width: 800px;
  margin-top: -1lh;
  margin-inline: auto;
  font-family: var(--font-title);
  font-size: var(--font-size-12);
  text-align: end;
}
@media screen and (max-width: 768px) {
  .price__note {
    margin-top: 0;
    text-align: center;
  }
}

.price-list {
  font-family: var(--font-title);
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  margin: clamp(0px, -61.9533527697px + 14.5772594752vw, 50px) auto 0;
  max-width: 800px;
}
.price-list > * {
  grid-column: 1/-1;
}
.price-list__item {
  border-bottom: 1px solid var(--color-txt-black);
  display: grid;
  grid-template-columns: subgrid;
  align-items: start;
  gap: clamp(10px, -204.2857142857px + 35.7142857143vw, 70px);
}
.price-list__title {
  margin-top: clamp(35px, -0.7142857143px + 5.9523809524vw, 45px);
  padding-block: clamp(10px, -25.7142857143px + 5.9523809524vw, 20px);
  padding-inline: clamp(15px, -20.7142857143px + 5.9523809524vw, 25px);
  display: inline-block;
  border: 1px solid currentColor;
  border-radius: 100px;
  font-size: var(--font-size-18);
  font-weight: 700;
  text-align: center;
}
.price-list__table {
  display: grid;
  grid-template-columns: 1fr;
}
.price-list__row {
  display: grid;
  grid-template-rows: subgrid;
  grid-template-columns: 1fr 6em;
  align-items: center;
  gap: clamp(0px, -43.3673469388px + 10.2040816327vw, 35px);
  padding: 10px 0;
  font-size: var(--font-size-18);
}
.price-list__row:not(:last-child) {
  border-bottom: 3px dotted var(--color-gray);
}
.price-list__row.no__border {
  border-bottom: none;
  padding-bottom: 0;
}
.price-list__row dt {
  text-align: end;
  line-height: 1;
}
.price-list__row dd {
  text-align: center;
}
.price-list__value--number {
  font-size: 1.3em;
}
.price-list__note {
  margin-top: 0.8em;
  font-size: 0.8em;
}
.price-list__note small {
  color: #e07d93;
  font-size: 0.85em;
}
@media screen and (max-width: 768px) {
  .price-list {
    grid-template-columns: 1fr;
  }
  .price-list__title {
    min-width: fit-content;
    width: 60%;
    margin-inline: auto;
  }
  .price-list__item {
    gap: 1em;
  }
}

/* faq
==============================　*/
.faq {
  font-family: var(--font-title);
}
.faq__read {
  font-size: var(--font-size-21);
  text-align: center;
  margin: 50px auto;
}
.faq__list {
  max-width: 800px;
  margin-inline: auto;
}
.faq__item {
  margin-top: 10px;
  border: 1px solid var(--color-txt-black);
  border-radius: 30px;
  padding: 3px;
}
.faq__item.is-open .faq__icon::before {
  rotate: 0deg;
}
.faq__question {
  font-size: var(--font-size-21);
  font-weight: 700;
  display: flex;
  gap: 15px;
}
.faq__question-text {
  flex-grow: 1;
  display: flex;
  align-items: center;
}
.faq__icon {
  display: inline-block;
  box-sizing: content-box;
  padding-right: 17px;
  width: 1em;
  aspect-ratio: 1/1;
  position: relative;
}
.faq__icon::after, .faq__icon::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 1em;
  height: 2px;
  background: #00a650;
  border-radius: 100px;
  transition: rotate 0.3s ease-in-out;
}
.faq__icon::before {
  rotate: -90deg;
}
.faq__icon-q {
  flex-shrink: 0;
  display: inline-block;
  width: clamp(40px, 20.1749271137px + 4.6647230321vw, 56px);
  aspect-ratio: 1/1;
  background: url(../img/question-icon.svg) no-repeat center center/contain;
}
.faq__answer {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding-top: 10px;
  padding-right: 20px;
  margin-block: 10px 17px;
  position: relative;
}
.faq__answer::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 93%;
  height: 2px;
  border-top: 2px dotted var(--color-gray);
}
.faq__answer-text {
  margin-top: 10px;
}
.faq__icon-a {
  flex-shrink: 0;
  display: inline-block;
  width: clamp(40px, 20.1749271137px + 4.6647230321vw, 56px);
  aspect-ratio: 1/1;
  background: url(../img/answer-icon.svg) no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  .faq__read {
    font-size: var(--font-size-18);
    margin-block: 18px;
  }
}

/* footer
==============================　*/
.footer {
  margin-top: 50px;
  background: var(--color-black);
  color: var(--color-white);
}
.footer__info {
  display: flex;
  align-items: end;
  justify-content: space-between;
  column-gap: 30px;
}
.footer__box--r, .footer__tel {
  margin-bottom: 30px;
}
.footer__box--r {
  flex-grow: 1;
  flex-shrink: 20;
}
.footer__box--l {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-grow: 1;
  column-gap: 30px;
}
.footer__logo {
  max-width: 300px;
}
.footer__address {
  padding-top: 10px;
  margin-top: 20px;
  position: relative;
}
.footer__address::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% + 100vw - 100%);
  height: 1px;
  background: var(--color-white);
}
.footer__tel {
  flex-shrink: 0;
}
.footer__tel a {
  font-family: var(--font-title);
  font-size: clamp(22px, -2px + 3.125vw, 30px);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}
.footer__tel a.phone__link {
  letter-spacing: 0.045em;
}
@media (hover: hover) {
  .footer__tel a:hover {
    opacity: 0.8;
  }
}
.footer__tel a img {
  height: 1em;
}
.footer__hours {
  background: var(--color-bg);
  padding: 10px clamp(10px, -35px + 5.859375vw, 25px);
  font-family: var(--font-title);
  text-align: center;
}
.footer__hours span {
  display: block;
}
.footer__hours-title {
  color: #a08c82;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--color-txt-black);
}
.footer__hours-time {
  color: var(--color-txt-black);
}
.footer__map iframe {
  width: 100%;
  max-width: 100%;
  max-height: 400px;
}
.footer .copyright {
  padding-block: 15px;
  text-align: center;
  font-size: var(--font-size-12);
}
@media screen and (max-width: 768px) {
  .footer__info {
    flex-wrap: wrap;
  }
  .footer__box--r {
    flex-grow: 0;
  }
  .footer__box--l {
    flex-grow: 1;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 40px;
  }
  .footer__tel {
    flex-shrink: unset;
    margin-bottom: 0;
  }
  .footer__tel a {
    gap: 0 5px;
    font-size: clamp(20px, 0.9160305344px + 5.0890585242vw, 40px);
    flex-wrap: wrap;
    justify-content: start;
  }
  .footer__tel a + a {
    margin-top: 10px;
  }
  .footer__tel picture {
    width: 100%;
  }
  .footer__hours {
    flex-shrink: 0;
    padding: 10px clamp(10px, -44.1176470588px + 15.6862745098vw, 50px);
  }
}
@media screen and (max-width: 425px) {
  .footer__box--l, .footer__box--r {
    margin-bottom: 10px;
    width: 100%;
  }
  .footer__hours {
    margin-left: auto;
  }
}

/* case
==============================　*/
.case__heading {
  width: fit-content;
  color: var(--color-white);
  background: var(--color-txt-black);
  padding: 10px 40px;
  padding-left: calc(100vw - 100%);
  margin-top: clamp(30px, 5.2186588921px + 5.8309037901vw, 50px);
  margin-left: calc(-1 * (100vw - 100%));
  border-radius: 0 10px 10px 0;
  font-family: var(--font-title);
  font-size: var(--font-size-28);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .case__heading {
    font-size: var(--font-size-24);
    padding-block: 5px;
  }
}
.case__subHeading {
  margin-top: clamp(25px, -5.9766763848px + 7.2886297376vw, 50px);
  font-family: var(--font-title);
  font-size: var(--font-size-21);
  font-weight: 700;
  position: relative;
  padding-left: 1.2em;
  text-indent: -1.2em;
}
@media screen and (max-width: 768px) {
  .case__subHeading {
    font-size: var(--font-size-24);
  }
}
.case__subHeading::before {
  display: inline-block;
  margin-right: 0.4em;
  content: "";
  width: 0.8em;
  height: 3px;
  background: var(--color-txt-black);
  border-radius: 10px;
  vertical-align: super;
}
.case__lineHeading {
  margin-top: clamp(30px, 5.2186588921px + 5.8309037901vw, 50px);
  padding-bottom: 6px;
  font-family: var(--font-title);
  font-size: var(--font-size-16);
  font-weight: bold;
  position: relative;
}
.case__lineHeading::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: -1em;
  width: calc(100% + 2em);
  height: 2px;
  border-radius: 20px;
  background: currentColor;
}
.case__text {
  margin-top: clamp(10px, 0.0874635569px + 2.332361516vw, 18px);
  line-height: 1.75;
}
.case__content {
  margin-left: 38px;
}
.case .voice-list__item {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .case__content {
    margin-left: 0;
  }
  .case__lineHeading::before {
    width: 100%;
    left: 0;
  }
}

/*  second 下層ページ
==============================　*/
@media screen and (max-width: 768px) {
  .second main {
    margin-top: -100px;
  }
}
/* medical
==============================　*/
.medical-box {
  display: grid;
  grid-template-columns: 1fr clamp(250px, -240px + 62.5vw, 400px);
  column-gap: 30px;
}
.medical-box__img {
  width: 100%;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .medical-box {
    grid-template-columns: 1fr;
  }
  .medical-box__img {
    width: 100%;
    margin-top: 30px;
  }
  .medical-box__text {
    order: 2;
  }
}

.case__medical--img {
  margin-top: 30px;
}

.medical-list {
  margin-top: 30px;
  display: block grid;
  grid-template-columns: max-content minmax(0, 1fr);
  row-gap: 0.8em;
}
.medical-list > * {
  grid-column: 1/-1;
}
.medical-list__item {
  display: block grid;
  grid-template-columns: subgrid;
}
.medical-list__item dt {
  padding-right: 1.5em;
  position: relative;
}
.medical-list__item dt::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  border-radius: 50px;
  background: var(--color-txt-black);
}
.medical-list__item dd {
  padding-left: 2em;
}
.medical-list__title {
  font-size: var(--font-size-16);
}
@media screen and (max-width: 768px) {
  .medical-list {
    grid-template-columns: 1fr;
  }
  .medical-list__item dt {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .medical-list__item dt::before {
    width: 8em;
    height: 1px;
    bottom: 0;
    left: 0;
    top: unset;
  }
  .medical-list__item dd {
    padding-left: 0;
  }
}

.medical-case {
  max-width: 660px;
  margin-block: 30px 50px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.medical-case__item p {
  font-family: var(--font-title);
  font-size: var(--font-size-16);
  font-weight: 700;
  margin-bottom: 10px;
}
.medical-case__img {
  width: 100%;
}