@charset "UTF-8";
/*###################################################################
※※※※ 直接編集禁止 ※※※※
このCSSファイルはSassから生成されていますので直接編集しないようご注意ください。
  編集は拡張子「.scss」ファイルを編集して当ファイルにコンパイルしてください。
  もしくは別途cssファイルを作成して読み込ませてください。
###################################################################*/
:root {
  --base: #fff;
  --main: #6387c4;
  --main-l: #ecf2f9;
  --accent: #9e8768;
  --text: #333;
  --ls: 0.1em;
}

/*###################################################################
  base（共通設定）
###################################################################*/
* {
  letter-spacing: var(--ls);
}

/*----------------------------------
  html
----------------------------------*/
html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 150px;
}
@media (max-width: 768px) {
  [id] {
    scroll-margin-top: 70px;
  }
}

body {
  color: var(--text);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

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

/*###################################################################
  animation（共通設定）
###################################################################*/
/*----------------------------------
  背景色が伸びて出現
----------------------------------*/
@-webkit-keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes bgLRextendAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
@keyframes bgLRextendAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
/*###################################################################
  header（module）
###################################################################*/
.header {
  width: 100%;
  position: relative;
  z-index: 10;
  background-color: var(--base);
}
.header_sticky {
  position: fixed;
  top: 0;
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.4);
}
.header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  padding-left: clamp(0.625rem, -2.8672253635rem + 4.3618739903vw, 2.3125rem);
}
@media (max-width: 768px) {
  .header__inner {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 6px 6px 6px 4px;
  }
}
.header__logo {
  max-width: clamp(14.375rem, -12.2693861066rem + 33.2794830372vw, 27.25rem);
  width: 100%;
  margin-top: 19px;
}
@media (max-width: 1280px) {
  .header__logo {
    max-width: clamp(11.25rem, 6.5472113503rem + 9.7847358121vw, 14.375rem);
  }
}
@media (max-width: 768px) {
  .header__logo {
    max-width: 204px;
    margin-top: 0;
  }
}
.header__menu {
  max-width: clamp(62.5625rem, 22.4665791599rem + 50.0807754443vw, 81.9375rem);
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
}
@media (max-width: 1280px) {
  .header__menu {
    max-width: 800px;
    display: grid;
    grid-template-columns: 1fr auto;
  }
}
@media (max-width: 768px) {
  .header__menu {
    display: none;
  }
}
.header__group1 {
  max-width: 976px;
  width: 100%;
  padding-top: 13px;
}
@media (max-width: 1280px) {
  .header__group1 {
    display: contents;
  }
}
.header__text-box {
  max-width: clamp(38.75rem, 12.8816639742rem + 32.310177706vw, 51.25rem);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  margin-left: auto;
  padding-right: clamp(0rem, -3.1042003231rem + 3.8772213247vw, 1.5rem);
}
@media (max-width: 1280px) {
  .header__text-box {
    max-width: 330px;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    grid-area: 1/1/2/2;
    padding-top: 3px;
  }
}
.header__address {
  max-width: clamp(20.375rem, 7.8288570275rem + 15.6704361874vw, 26.4375rem);
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(0.875rem, 0.3576332795rem + 0.6462035541vw, 1.125rem);
}
@media (max-width: 1280px) {
  .header__address {
    max-width: clamp(17rem, 11.9209882583rem + 10.5675146771vw, 20.375rem);
    font-size: clamp(0.75rem, 0.561888454rem + 0.3913894325vw, 0.875rem);
  }
}
.header__address::before {
  content: "";
  min-width: clamp(0.9375rem, 0.1614499192rem + 0.9693053312vw, 1.3125rem);
  aspect-ratio: 21/30;
  background-color: #9e8768;
  -webkit-mask-image: url(../images/icon-map.svg);
          mask-image: url(../images/icon-map.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media (max-width: 1280px) {
  .header__address::before {
    min-width: clamp(0.5625rem, -0.001834638rem + 1.1741682975vw, 0.9375rem);
  }
}
.header__features {
  max-width: clamp(17.8125rem, 7.7238489499rem + 12.6009693053vw, 22.6875rem);
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: clamp(0.3125rem, -0.3342084006rem + 0.8077544426vw, 0.625rem);
     -moz-column-gap: clamp(0.3125rem, -0.3342084006rem + 0.8077544426vw, 0.625rem);
          column-gap: clamp(0.3125rem, -0.3342084006rem + 0.8077544426vw, 0.625rem);
}
.header__feature {
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--base);
  font-size: clamp(0.875rem, 0.6163166397rem + 0.3231017771vw, 1rem);
}
@media (max-width: 1280px) {
  .header__feature {
    font-size: clamp(0.75rem, 0.561888454rem + 0.3913894325vw, 0.875rem);
  }
}
.header__feature_1 {
  background-color: #63a1c4;
}
.header__feature_2 {
  background-color: #cf7fa7;
}
.header__nav {
  margin-top: 23px;
}
@media (max-width: 1280px) {
  .header__nav {
    margin-top: 8px;
  }
}
.header__group2 {
  max-width: 320px;
  width: 100%;
  max-height: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: var(--base);
}
@media (max-width: 1280px) {
  .header__group2 {
    height: 70px;
    grid-area: 1/2/2/3;
  }
}
.header__tel {
  width: 223px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 8px;
  background-color: #6783b5;
  padding-top: 5px;
  padding-left: 12px;
}
@media (max-width: 1280px) {
  .header__tel {
    width: 189px;
    row-gap: 3px;
    padding-top: 0;
    padding-left: 7px;
  }
}
.header__tel-text {
  font-size: 0.875rem;
  line-height: 1.2857142857;
  --ls: 0;
  white-space: pre-line;
}
@media (max-width: 1280px) {
  .header__tel-text {
    font-size: 0.75rem;
  }
}
.header__tel-number {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 7px;
     -moz-column-gap: 7px;
          column-gap: 7px;
  font-size: 1.4375rem;
  line-height: 1;
}
@media (max-width: 1280px) {
  .header__tel-number {
    font-size: 1.125rem;
  }
}
.header__tel-number::before {
  content: "";
  min-width: 20px;
  aspect-ratio: 1/1;
  background-color: var(--base);
  -webkit-mask-image: url(../images/icon-tel.svg);
          mask-image: url(../images/icon-tel.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media (max-width: 1280px) {
  .header__tel-number::before {
    min-width: 16px;
  }
}
.header__web {
  width: 97px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 5px;
  background-color: #66ccff;
  padding-top: 8px;
}
@media (max-width: 1280px) {
  .header__web {
    width: 80px;
    padding-top: 2px;
  }
}
.header__web::before {
  content: "";
  width: 42px;
  aspect-ratio: 1/1;
  background-color: var(--base);
  -webkit-mask-image: url(../images/icon-web.svg);
          mask-image: url(../images/icon-web.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media (max-width: 1280px) {
  .header__web::before {
    width: 30px;
  }
}
.header__web-text {
  font-size: 1.25rem;
  line-height: 0.9;
  text-align: center;
  white-space: pre-line;
}
@media (max-width: 1280px) {
  .header__web-text {
    font-size: 0.9375rem;
  }
}
.header__web-small {
  font-size: 0.8125rem;
  font-weight: bold;
}
@media (max-width: 1280px) {
  .header__web-small {
    font-size: 0.6875rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  .header__tel, .header__web {
    -webkit-transition: background-color 0.4s;
    transition: background-color 0.4s;
  }
  .header__tel:hover, .header__tel:focus, .header__web:hover, .header__web:focus {
    background-color: var(--accent);
  }
}
@media (max-width: 1280px) {
  .header-nav {
    grid-area: 2/1/3/3;
  }
}
@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
}
.header-nav__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}
.header-nav__item {
  position: relative;
}
.header-nav__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: clamp(0.625rem, -0.0217084006rem + 0.8077544426vw, 0.9375rem);
  position: relative;
  line-height: 1;
  padding-bottom: 12px;
}
.header-nav__link::after {
  width: clamp(1.4375rem, 1.8525297876rem - 0.0863408738vw, 1.75rem);
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #63a1c4;
}
.header-nav__link_home {
  row-gap: clamp(0.375rem, -0.1423667205rem + 0.6462035541vw, 0.625rem);
}
@media (max-width: 1680px) {
  .header-nav__link_home {
    padding-bottom: 11px;
  }
}
.header-nav__link.current::after {
  content: "";
}
.header-nav__jp {
  font-size: clamp(0.9375rem, 0.5494749596rem + 0.4846526656vw, 1.125rem);
}
@media (max-width: 1280px) {
  .header-nav__jp {
    font-size: clamp(0.75rem, 0.467832681rem + 0.5870841487vw, 0.9375rem);
  }
}
.header-nav__jp_home {
  width: clamp(2.0625rem, 1.4157915994rem + 0.8077544426vw, 2.375rem);
  aspect-ratio: 38/35;
  background-color: var(--accent);
  -webkit-mask-image: url(../images/icon-home.svg);
          mask-image: url(../images/icon-home.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  margin-top: calc(clamp(0.625rem, 0.3663166397rem + 0.3231017771vw, 0.75rem) * -1);
}
@media (max-width: 1280px) {
  .header-nav__jp_home {
    width: clamp(1.5625rem, 0.810053816rem + 1.5655577299vw, 2.0625rem);
    margin-top: calc(clamp(0.375rem, -0.001223092rem + 0.782778865vw, 0.625rem) * -1);
  }
}
.header-nav__en {
  color: var(--accent);
  font-size: clamp(0.875rem, 0.6163166397rem + 0.3231017771vw, 1rem);
}
@media (max-width: 1280px) {
  .header-nav__en {
    font-size: clamp(0.6875rem, 0.405332681rem + 0.5870841487vw, 0.875rem);
  }
}
.header-nav__subitems {
  -webkit-clip-path: inset(0 0 100% 0);
          clip-path: inset(0 0 100% 0);
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #f2eee9;
}
.header-nav__subitems_clinic {
  width: clamp(9.6875rem, 5.1829686118rem + 9.3722369584vw, 16.3125rem);
}
.header-nav__subitems_medical {
  width: clamp(17.125rem, 6.5860963749rem + 21.9274977896vw, 32.625rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.header-nav__sublink {
  height: clamp(2.1875rem, 1.5925618921rem + 1.2378426172vw, 3.0625rem);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  background-color: #f2eee9;
  font-size: clamp(0.75rem, 0.4950265252rem + 0.5305039788vw, 1.125rem);
  padding-left: clamp(0.75rem, 0.1550618921rem + 1.2378426172vw, 1.625rem);
}
.header-nav__sublink::before {
  content: "";
  width: 90.8045977011%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #d3d3d3;
}
.header-nav__sublink::after {
  content: "";
  width: 6px;
  aspect-ratio: 6/10;
  position: absolute;
  top: 50%;
  right: clamp(0.625rem, 0.0725574713rem + 1.1494252874vw, 1.4375rem);
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #d3d3d3;
  -webkit-mask-image: url(../images/icon-submenu.svg);
          mask-image: url(../images/icon-submenu.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}

.header-nav__item:focus-within .header-nav__subitems {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
.header-nav__link:hover + .header-nav__subitems, .header-nav__link:focus + .header-nav__subitems {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
.header-nav__link:hover::after {
  content: "";
}
.header-nav__subitems {
  -webkit-transition: -webkit-clip-path 0.3s ease-in-out;
  transition: -webkit-clip-path 0.3s ease-in-out;
  transition: clip-path 0.3s ease-in-out;
  transition: clip-path 0.3s ease-in-out, -webkit-clip-path 0.3s ease-in-out;
}
.header-nav__subitems:hover, .header-nav__subitems:focus {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
.header-nav__sublink {
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}
.header-nav__sublink::after {
  -webkit-transition: background-color 0.4s;
  transition: background-color 0.4s;
}
.header-nav__sublink:hover, .header-nav__sublink:focus {
  color: var(--accent);
}
.header-nav__sublink:hover::after, .header-nav__sublink:focus::after {
  background-color: var(--accent);
}

/*###################################################################
  footer（module）
###################################################################*/
.footer {
  position: relative;
}
@media (max-width: 768px) {
  .footer {
    padding-bottom: 54px;
  }
}
.footer__2 {
  margin-top: clamp(3.9375rem, 1.9572368421rem + 7.3684210526vw, 6.5625rem);
}
.footer__copy {
  height: clamp(4.375rem, 2.3076923077rem + 7.6923076923vw, 6rem);
  display: grid;
  place-items: center;
}

.footer1 {
  background-color: var(--main-l);
}
.footer1__inner {
  max-width: 1280px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding: 106px 30px 121px;
}
@media (max-width: 1000px) {
  .footer1__inner {
    padding: clamp(3.625rem, 1.3618421053rem + 8.4210526316vw, 6.625rem) clamp(1.25rem, 0.4548816568rem + 2.9585798817vw, 1.875rem) clamp(4.3125rem, 1.860745614rem + 9.1228070175vw, 7.5625rem);
  }
}
.footer1__logo {
  max-width: clamp(20.375rem, 11.6286982249rem + 32.5443786982vw, 27.25rem);
  display: block;
  margin-inline: auto;
}
.footer1__body {
  max-width: 1256px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  margin-top: clamp(4.1875rem, 1.3585526316rem + 10.5263157895vw, 7.9375rem);
  margin-left: auto;
}
@media (max-width: 1000px) {
  .footer1__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 82px;
  }
}
.footer1__group1 {
  max-width: 424px;
  width: 100%;
}
.footer1__address {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.125rem;
  line-height: 1.75;
}
@media (max-width: 500px) {
  .footer1__address {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer1__address-1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 9px;
     -moz-column-gap: 9px;
          column-gap: 9px;
}
.footer1__address-1::before {
  content: "";
  min-width: 21px;
  aspect-ratio: 21/30;
  background-color: #9e8768;
  -webkit-mask-image: url(../images/icon-map.svg);
          mask-image: url(../images/icon-map.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.footer1__text-1 {
  max-width: 267px;
  font-size: 1.125rem;
  line-height: 2.2222222222;
  --ls: 0;
  white-space: pre-line;
  margin-top: clamp(0.875rem, 0.5569526627rem + 1.1834319527vw, 1.125rem);
  margin-inline: auto;
}
.footer1__tel {
  max-width: 370px;
  height: 79px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #6783b5;
  color: var(--base);
  font-size: 2.5rem;
  font-weight: bold;
  margin-top: 21px;
  margin-inline: auto;
  padding-right: 4px;
  padding-left: 8px;
}
@media (max-width: 1000px) {
  .footer1__tel {
    margin-top: 31px;
  }
}
.footer1__tel::before {
  content: "";
  min-width: 32px;
  aspect-ratio: 1/1;
  background-color: var(--base);
  -webkit-mask-image: url(../images/icon-tel.svg);
          mask-image: url(../images/icon-tel.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.footer1__web {
  width: 368px;
  height: 77px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #66ccff;
  color: var(--base);
  margin-top: 42px;
  margin-inline: auto;
  padding-right: 82px;
  padding-left: 33px;
}
.footer1__web-icon {
  width: 42px;
  aspect-ratio: 1/1;
  background-color: var(--base);
  -webkit-mask-image: url(../images/icon-web.svg);
          mask-image: url(../images/icon-web.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.footer1__web-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 2px;
}
.footer1__web-text {
  font-size: 2.25rem;
  line-height: 1;
  text-align: center;
}
.footer1__web-small {
  font-size: 1.25rem;
  font-weight: bold;
}
.footer1__text-2 {
  max-width: 330px;
  font-size: clamp(1rem, 0.8409763314rem + 0.5917159763vw, 1.125rem);
  line-height: 2.2222222222;
  white-space: pre-line;
  margin-top: clamp(1.8125rem, 0.4607988166rem + 5.0295857988vw, 2.875rem);
  margin-left: clamp(0rem, -6.5029121864rem + 10.394265233vw, 1.8125rem);
}
@media (max-width: 768px) {
  .footer1__text-2 {
    line-height: 1.9;
  }
}

.footer-info {
  max-width: 731px;
  width: 100%;
}
.footer-info__table {
  width: 100%;
  background-color: var(--base);
  font-size: clamp(1.25rem, 0.353046595rem + 1.4336917563vw, 1.5rem);
  border: 1px solid var(--accent);
}
@media (max-width: 1000px) {
  .footer-info__table {
    font-size: clamp(0.9375rem, 0.2218934911rem + 2.6627218935vw, 1.5rem);
  }
}
.footer-info__th {
  font-weight: 500;
  vertical-align: middle;
}
.footer-info__top {
  height: clamp(2.5rem, -0.2829142012rem + 10.3550295858vw, 4.6875rem);
  text-align: center;
  border-bottom: 1px solid var(--accent);
}
.footer-info__left {
  width: 33.4%;
  border-bottom: 1px solid var(--accent);
  padding-left: clamp(0.625rem, -7.8960573477rem + 13.6200716846vw, 3rem);
}
@media (max-width: 1000px) {
  .footer-info__left {
    padding-left: clamp(0.4375rem, -2.8224852071rem + 12.1301775148vw, 3rem);
  }
}
.footer-info__holiday {
  width: 23.1%;
}
@media (max-width: 768px) {
  .footer-info__holiday {
    width: 16.1%;
  }
}
.footer-info__td {
  text-align: center;
}
.footer-info__right {
  text-align: center;
  padding-right: clamp(1.25rem, -8.1680107527rem + 15.0537634409vw, 3.875rem);
}
@media (max-width: 1000px) {
  .footer-info__right {
    padding-right: 62px;
  }
}
@media (max-width: 768px) {
  .footer-info__right {
    padding-right: clamp(0rem, -1.5902366864rem + 5.9171597633vw, 1.25rem);
  }
}
.footer-info__am {
  height: clamp(2.25rem, -0.2943786982rem + 9.4674556213vw, 4.25rem);
  vertical-align: middle;
  border-bottom: 1px solid var(--accent);
}
.footer-info__pm {
  height: clamp(2.3125rem, -0.2318786982rem + 9.4674556213vw, 4.3125rem);
  vertical-align: middle;
  border-bottom: 1px solid var(--accent);
}
.footer-info__bottom {
  height: clamp(3.375rem, 2.0232988166rem + 5.0295857988vw, 4.4375rem);
  background-color: var(--accent);
  padding-top: clamp(0.125rem, -0.0340236686rem + 0.5917159763vw, 0.25rem);
  padding-left: clamp(0.5rem, -1.1697485207rem + 6.2130177515vw, 1.8125rem);
}
.footer-info__text {
  color: var(--base);
  font-size: clamp(0.875rem, 0.5569526627rem + 1.1834319527vw, 1.125rem);
  line-height: 1.75;
  white-space: pre-line;
}

.footer2__inner {
  max-width: 1700px;
  margin-inline: auto;
  padding: 0 30px;
}
@media (max-width: 768px) {
  .footer2__inner {
    padding: 0;
  }
}
.footer2__map {
  margin-top: clamp(4.4375rem, 2.6929824561rem + 6.4912280702vw, 6.75rem);
}
.footer2__gmap {
  width: 100%;
  height: clamp(19.625rem, 13.9199561404rem + 21.2280701754vw, 27.1875rem);
}

.footer-nav {
  max-width: 1089px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .footer-nav {
    max-width: 500px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 35px;
  }
}
.footer-nav__items {
  max-width: 900px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .footer-nav__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    row-gap: 32px;
    margin-inline: initial;
  }
}
.footer-nav__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 12px;
}
.footer-nav__link_home {
  row-gap: 9px;
}
.footer-nav__jp {
  font-size: 1.125rem;
}
.footer-nav__jp_home {
  width: 38px;
  aspect-ratio: 38/35;
  background-color: var(--accent);
  -webkit-mask-image: url(../images/icon-home.svg);
          mask-image: url(../images/icon-home.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  margin-top: -11px;
}
.footer-nav__en {
  color: var(--accent);
}
@media (max-width: 768px) {
  .footer-nav__en {
    display: none;
  }
}
.footer-nav__subitems {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 76px;
}
@media (max-width: 900px) {
  .footer-nav__subitems {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    row-gap: 1.5375rem;
  }
}
@media (max-width: 768px) {
  .footer-nav__subitems {
    grid-template-columns: 1fr;
    justify-items: start;
    margin-top: 43px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .footer-nav__link {
    -webkit-transition: color 0.4s;
    transition: color 0.4s;
  }
  .footer-nav__link:hover, .footer-nav__link:focus {
    color: var(--main);
  }
  .footer-nav__link:hover .footer-nav__jp_home, .footer-nav__link:focus .footer-nav__jp_home {
    background-color: var(--main);
  }
  .footer-nav__link:hover .footer-nav__en, .footer-nav__link:focus .footer-nav__en {
    color: var(--main);
  }
  .footer-nav__jp_home {
    -webkit-transition: background-color 0.4s;
    transition: background-color 0.4s;
  }
  .footer-nav__en {
    -webkit-transition: color 0.4s;
    transition: color 0.4s;
  }
  .footer-nav__sublink {
    -webkit-transition: color 0.4s;
    transition: color 0.4s;
  }
  .footer-nav__sublink:hover, .footer-nav__sublink:focus {
    color: var(--main);
  }
}
.footer-page-top {
  max-width: 2.62725rem;
  position: absolute;
  right: 20px;
  bottom: 96px;
  z-index: 5;
}
@media (max-width: 768px) {
  .footer-page-top {
    display: none !important;
  }
}

.sp-nav {
  display: none;
}
@media (max-width: 768px) {
  .sp-nav {
    width: 100%;
    display: block;
    position: fixed;
    bottom: 0;
    z-index: 5;
    background-color: var(--base);
  }
}
.sp-nav__items {
  display: grid;
  grid-template-columns: 41.1627906977% 24.1860465116% 18.8372093023% auto;
  gap: 2px;
  border: 2px solid var(--base);
}
.sp-nav__link {
  height: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--base);
  white-space: pre-line;
}
.sp-nav__link_tel {
  background-color: #6783b5;
  font-size: 1.25rem;
  font-weight: bold;
}
.sp-nav__link_tel::before {
  content: "";
  min-width: 20px;
  aspect-ratio: 1/1;
  background-color: var(--base);
  -webkit-mask-image: url(../images/icon-tel.svg);
          mask-image: url(../images/icon-tel.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.sp-nav__link_web {
  background-color: #66ccff;
  font-size: 1.125rem;
  text-align: center;
}
.sp-nav__link_web::before {
  content: "";
  width: 24px;
  aspect-ratio: 1/1;
  background-color: var(--base);
  -webkit-mask-image: url(../images/icon-web.svg);
          mask-image: url(../images/icon-web.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.sp-nav__link_map {
  background-color: #66ccff;
  font-size: 0.9375rem;
  --ls: -0.1em;
}
.sp-nav__link_map::before {
  content: "";
  min-width: 16px;
  aspect-ratio: 21/30;
  background-color: var(--base);
  -webkit-mask-image: url(../images/icon-map.svg);
          mask-image: url(../images/icon-map.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.sp-nav__link_page-top {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  overflow: hidden;
  background-color: #6783b5;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: 0.9375rem;
  font-weight: 900;
  text-align: right;
  --ls: 0.04em;
  padding-top: 12px;
  padding-left: clamp(0.375rem, -1.4537721893rem + 6.8047337278vw, 1.8125rem);
}
.sp-nav__link_page-top::after {
  content: "";
  width: 14px;
  aspect-ratio: 14/92;
  position: absolute;
  top: 1px;
  right: clamp(0.1875rem, -2.1978550296rem + 8.875739645vw, 2.0625rem);
  background-color: var(--base);
  -webkit-mask-image: url(../images/icon-sp-nav-arrow.svg);
          mask-image: url(../images/icon-sp-nav-arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}

@media (hover: hover) and (pointer: fine) {
  .sp-nav__link {
    -webkit-transition: background-color 0.4s;
    transition: background-color 0.4s;
  }
  .sp-nav__link:hover, .sp-nav__link:focus {
    background-color: var(--accent);
  }
}
/*###################################################################
  c-link（module）
###################################################################*/
.c-link-1 {
  height: 78px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--main);
  color: var(--base);
  font-size: 1.5rem;
}
.c-link-1::after {
  content: "";
  width: 97px;
  aspect-ratio: 97/15;
  background-color: var(--base);
  -webkit-mask-image: url(../images/icon-link-arrow.svg);
          mask-image: url(../images/icon-link-arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  margin-top: -7px;
}

@media (hover: hover) and (pointer: fine) {
  .c-link-1 {
    -webkit-transition: background-color 0.4s;
    transition: background-color 0.4s;
  }
  .c-link-1:hover, .c-link-1:focus {
    background-color: var(--accent);
  }
}
/*###################################################################
  c-text（module）
###################################################################*/
.c-t18 {
  font-size: clamp(1rem, 0.9431818182rem + 0.2272727273vw, 1.125rem);
  line-height: 2.2222222222;
  white-space: pre-line;
}

.c-t18-lh {
  font-size: clamp(1rem, 0.9431818182rem + 0.2272727273vw, 1.125rem);
  line-height: 1.75;
  white-space: pre-line;
}

/*###################################################################
  c-title（module）
###################################################################*/
.c-title-1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: clamp(1.5625rem, 0.8522727273rem + 2.8409090909vw, 3.125rem);
  font-weight: 600;
}
.c-title-1::before {
  content: "";
  width: clamp(2.5rem, 1.3636363636rem + 4.5454545455vw, 5rem);
  aspect-ratio: 1/1;
  background: url(../images/icon-title-deco.svg) no-repeat 0 0/contain;
}

.c-title-2 {
  max-width: 1280px;
  height: clamp(4rem, 3.4886363636rem + 2.0454545455vw, 5.125rem);
  display: grid;
  place-items: center;
  position: relative;
  background-color: var(--main);
  color: var(--base);
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: clamp(1.25rem, 0.9659090909rem + 1.1363636364vw, 1.875rem);
  font-weight: 600;
}
.c-title-2::before, .c-title-2::after {
  content: "";
  width: clamp(1.875rem, 0.9659090909rem + 3.6363636364vw, 3.875rem);
  height: 100%;
  position: absolute;
  background: url(../images/icon-c-title-2.svg) no-repeat 0 0/cover;
}
.c-title-2::before {
  left: 0;
}
.c-title-2::after {
  right: 0;
}

.c-title-2g {
  max-width: 1280px;
  height: clamp(4rem, 3.4886363636rem + 2.0454545455vw, 5.125rem);
  display: grid;
  place-items: center;
  position: relative;
  background-color: var(--accent);
  color: var(--base);
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: clamp(1.25rem, 0.9659090909rem + 1.1363636364vw, 1.875rem);
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}
.c-title-2g::before, .c-title-2g::after {
  content: "";
  width: clamp(1.875rem, 0.9659090909rem + 3.6363636364vw, 3.875rem);
  height: 100%;
  position: absolute;
  background: url(../images/icon-c-title-2.svg) no-repeat 0 0/cover;
}
.c-title-2g::before {
  left: 0;
}
.c-title-2g::after {
  right: 0;
}

/*###################################################################
  br（module）
###################################################################*/
.br-1000-b {
  display: none;
}
@media (max-width: 1000px) {
  .br-1000-b {
    display: block;
  }
}
.br-900-b {
  display: none;
}
@media (max-width: 900px) {
  .br-900-b {
    display: block;
  }
}
.br-800-b {
  display: none;
}
@media (max-width: 800px) {
  .br-800-b {
    display: block;
  }
}
.br-sp-b {
  display: none;
}
@media (max-width: 768px) {
  .br-sp-b {
    display: block;
  }
}
.br-600-b {
  display: none;
}
@media (max-width: 600px) {
  .br-600-b {
    display: block;
  }
}
.br-500-b {
  display: none;
}
@media (max-width: 500px) {
  .br-500-b {
    display: block;
  }
}

/*###################################################################
  hamburger（module）
###################################################################*/
.hamburger {
  width: 38px;
  height: 38px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
  z-index: 30;
  background-color: var(--main);
  padding-bottom: 5px;
}
@media (min-width: 769px) {
  .hamburger {
    display: none;
  }
}
.hamburger[aria-expanded=true] .hamburger__line {
  background-color: transparent;
}
.hamburger[aria-expanded=true] .hamburger__line::before {
  -webkit-transform: translateY(-7px) rotate(150deg);
      -ms-transform: translateY(-7px) rotate(150deg);
          transform: translateY(-7px) rotate(150deg);
}
.hamburger[aria-expanded=true] .hamburger__line::after {
  -webkit-transform: translateY(7px) rotate(-150deg);
      -ms-transform: translateY(7px) rotate(-150deg);
          transform: translateY(7px) rotate(-150deg);
}
.hamburger__line {
  width: 22px;
  height: 2px;
  display: inline-block;
  position: absolute;
  top: calc(50% - 4px);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  background-color: var(--base);
}
.hamburger__line::before {
  content: "";
  width: 100%;
  height: 2px;
  display: inline-block;
  position: absolute;
  top: 7px;
  left: 0;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  background-color: var(--base);
}
.hamburger__line::after {
  content: "";
  width: 100%;
  height: 2px;
  display: inline-block;
  position: absolute;
  bottom: 7px;
  left: 0;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  background-color: var(--base);
}
.hamburger__menu {
  color: var(--base);
  font-size: 0.5rem;
  font-weight: bold;
  --ls: 0.04em;
}

@media (hover: hover) and (pointer: fine) {
  .hamburger {
    -webkit-transition: background-color 0.4s;
    transition: background-color 0.4s;
  }
  .hamburger:hover {
    background-color: var(--accent);
  }
}
/*###################################################################
  drawer（module）
###################################################################*/
.drawer {
  width: 380px;
  height: 100vh;
  -webkit-transform: translateX(380px);
      -ms-transform: translateX(380px);
          transform: translateX(380px);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: var(--base);
  z-index: 15;
  overflow: auto;
  overscroll-behavior-y: contain;
  visibility: hidden;
}
.drawer[aria-hidden=false] {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  visibility: visible;
}
.drawer_position {
  position: fixed;
  top: 0;
  right: 0;
}
.drawer__inner {
  padding-bottom: 100px;
}
.drawer__top {
  width: 100%;
  height: 50px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background-color: var(--base);
  z-index: 1;
}
.drawer__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
  padding: 0 20px;
}
.drawer__link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 5px;
  line-height: 1;
  margin-inline: auto;
}
.drawer__text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 5px;
  line-height: 1;
}
.drawer__en {
  color: var(--accent);
  font-size: 0.875rem;
}
.drawer__subitems {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 10px;
}
.drawer__sublink {
  height: 40px;
  display: grid;
  place-items: center;
  background-color: var(--accent);
  color: var(--base);
  font-size: 0.875rem;
}

.is-drawer-active {
  overflow: hidden;
}

@media (hover: hover) and (pointer: fine) {
  .drawer__link {
    -webkit-transition: color 0.4s;
    transition: color 0.4s;
  }
  .drawer__link:hover, .drawer__link:focus {
    color: var(--main);
  }
  .drawer__link:hover .drawer__en, .drawer__link:focus .drawer__en {
    color: var(--main);
  }
  .drawer__en {
    -webkit-transition: color 0.4s;
    transition: color 0.4s;
  }
  .drawer__sublink {
    -webkit-transition: background-color 0.4s;
    transition: background-color 0.4s;
  }
  .drawer__sublink:hover, .drawer__sublink:focus {
    background-color: var(--main);
  }
}
.drawer-bg {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  background-color: #000;
  visibility: hidden;
  opacity: 0;
  z-index: 5;
}

.is-drawer-active {
  height: 100%;
  overflow: hidden;
}
.is-drawer-active .drawer-bg {
  visibility: visible;
  opacity: 0.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/*###################################################################
  hover（module）
###################################################################*/
@media (hover: hover) and (pointer: fine) {
  .op {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .op:hover, .op:focus {
    opacity: 0.7;
  }
}
@media (hover: hover) and (pointer: fine) {
  .op-fn {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .op-fn:hover {
    opacity: 0.7;
  }
}
@media (hover: hover) and (pointer: fine) {
  .op-im {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .op-im:hover, .op-im:focus {
    opacity: 0.7 !important;
  }
}
@media (hover: hover) and (pointer: fine) {
  .op-fnim {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .op-fnim:hover {
    opacity: 0.7 !important;
  }
}
/*###################################################################
  lower（module）
###################################################################*/
.lower-mv {
  background: url(../images/lower-mv-bg.webp) no-repeat center center/cover;
  background-image: -webkit-image-set(url(../images/lower-mv-bg.webp) 1x, url(../images/lower-mv-bg@2x.webp) 2x);
  background-image: image-set(url(../images/lower-mv-bg.webp) 1x, url(../images/lower-mv-bg@2x.webp) 2x);
  padding-bottom: clamp(3.125rem, 1.3068181818rem + 7.2727272727vw, 7.125rem);
}
.lower-mv__body {
  height: clamp(15.625rem, 11.2215909091rem + 17.6136363636vw, 25.3125rem);
  display: grid;
  place-items: center;
  background: url(../images/lower-mv-1.webp) no-repeat center center/cover;
  background-image: -webkit-image-set(url(../images/lower-mv-1.webp) 1x, url(../images/lower-mv-1@2x.webp) 2x);
  background-image: image-set(url(../images/lower-mv-1.webp) 1x, url(../images/lower-mv-1@2x.webp) 2x);
}
.lower-mv__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 15px;
  color: var(--base);
  line-height: 1;
  margin-top: -38px;
}
.lower-mv__jp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: clamp(2.25rem, 1.8522727273rem + 1.5909090909vw, 3.125rem);
}
.lower-mv__jp::before {
  content: "";
  width: clamp(3.125rem, 2.5568181818rem + 2.2727272727vw, 4.375rem);
  aspect-ratio: 70/64;
  background: url(../images/icon-logo.svg) no-repeat 0 0/contain;
}
.lower-mv__en {
  font-size: clamp(1.375rem, 1.1477272727rem + 0.9090909091vw, 1.875rem);
}

/*###################################################################
  WordPressテスト環境用設定
###################################################################*/
/*###################################################################
  top（page）
###################################################################*/
.top-c-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: clamp(1.4375rem, 1.0965909091rem + 1.3636363636vw, 2.1875rem);
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  line-height: 1;
}
.top-c-title__jp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: calc(clamp(-0.5625rem, -0.8470588235rem + 1.0588235294vw, 0rem) * -1);
  font-size: clamp(2.5rem, 1.9318181818rem + 2.2727272727vw, 3.75rem);
}
.top-c-title__jp::before {
  content: "";
  width: 80px;
  aspect-ratio: 1/1;
  background: url(../images/icon-title-deco.svg) no-repeat 0 0/contain;
}
.top-c-title__en {
  color: var(--main);
  font-size: clamp(1.375rem, 0.8636363636rem + 2.0454545455vw, 2.5rem);
}

.too-bg-1 {
  background: url(../images/top-bg-1.webp) no-repeat center bottom/100% auto;
  background-image: -webkit-image-set(url(../images/top-bg-1.webp) 1x, url(../images/top-bg-1@2x.webp) 2x);
  background-image: image-set(url(../images/top-bg-1.webp) 1x, url(../images/top-bg-1@2x.webp) 2x);
  padding-bottom: clamp(3.125rem, -1.0395667551rem + 8.6648983201vw, 9.25rem);
}
@media (max-width: 768px) {
  .too-bg-1 {
    background: none;
    padding-bottom: 0;
  }
}

@media (max-width: 768px) {
  .top-mv {
    background: url(../images/top-bg-1_sp.webp) no-repeat center bottom/100% auto;
    background-image: -webkit-image-set(url(../images/top-bg-1_sp.webp) 1x, url(../images/top-bg-1_sp@2x.webp) 2x);
    background-image: image-set(url(../images/top-bg-1_sp.webp) 1x, url(../images/top-bg-1_sp@2x.webp) 2x);
  }
}
.top-mv__inner {
  max-width: 1769px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 72px;
  padding-left: 72px;
  position: relative;
}
@media (min-width: 1921px) {
  .top-mv__inner {
    max-width: 92.1354166667%;
  }
}
@media (max-width: 1900px) {
  .top-mv__inner {
    padding: 0 clamp(2.1875rem, 0.6151635721rem + 3.2714412025vw, 4.5rem);
  }
}
@media (max-width: 768px) {
  .top-mv__inner {
    padding: 0 clamp(1.25rem, 0.0573224852rem + 4.4378698225vw, 2.1875rem) 60px;
  }
}
.top-mv__title-area {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  top: 15.8%;
  left: 16%;
  z-index: 3;
  row-gap: clamp(0rem, -0.5524425287rem + 1.1494252874vw, 0.8125rem);
  color: #000;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: bold;
  line-height: 1.75;
}
@media (max-width: 768px) {
  .top-mv__title-area {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    top: inherit;
    bottom: 13%;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    row-gap: 2px;
  }
}
.top-mv__title-area::after {
  content: "";
  width: clamp(3.875rem, 0.0079022989rem + 8.0459770115vw, 9.5625rem);
  aspect-ratio: 153/141;
  position: absolute;
  top: clamp(1rem, 0.2350795756rem + 1.5915119363vw, 2.125rem);
  right: calc(clamp(3.4375rem, -0.6420755968rem + 8.4880636605vw, 9.4375rem) * -1);
  background: url(../images/top-mv-logo.webp) no-repeat center center/cover;
  background-image: -webkit-image-set(url(../images/top-mv-logo.webp) 1x, url(../images/top-mv-logo@2x.webp) 2x);
  background-image: image-set(url(../images/top-mv-logo.webp) 1x, url(../images/top-mv-logo@2x.webp) 2x);
}
@media (max-width: 768px) {
  .top-mv__title-area::after {
    content: none;
  }
}
.top-mv__title {
  font-size: clamp(1.875rem, 0.4726458886rem + 2.9177718833vw, 3.9375rem);
  text-align: center;
  white-space: pre-line;
  text-shadow: 0 0 20px var(--base), 0 0 26px var(--base), 0 0 30px var(--base), 0 0 40px var(--base);
}
@media (max-width: 768px) {
  .top-mv__title {
    font-size: 45px;
    line-height: 1.45;
  }
}
.top-mv__text {
  font-size: clamp(1.125rem, 0.5513096817rem + 1.1936339523vw, 1.96875rem);
  text-align: center;
  white-space: pre-line;
  text-shadow: 0 0 20px var(--base), 0 0 26px var(--base), 0 0 30px var(--base), 0 0 40px var(--base);
}
@media (max-width: 768px) {
  .top-mv__text {
    font-size: 24px;
  }
}
.top-mv__img {
  height: 100%;
  aspect-ratio: 1769/773;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .top-mv__img {
    aspect-ratio: 480/558;
  }
}

.top-group-1_pos {
  position: relative;
  z-index: 1;
  margin-top: calc(clamp(4.5625rem, -0.4944739169rem + 10.5216622458vw, 12rem) * -1);
}
@media (min-width: 1921px) {
  .top-group-1_pos {
    margin-top: -10%;
  }
}
@media (max-width: 768px) {
  .top-group-1_pos {
    margin-top: 27px;
  }
}
.top-group-1__inner {
  max-width: 1848px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (min-width: 1921px) {
  .top-group-1__inner {
    max-width: 96.25%;
  }
}
@media (max-width: 768px) {
  .top-group-1__inner {
    max-width: 400px;
    padding: 0 clamp(1.25rem, 0.4548816568rem + 2.9585798817vw, 1.875rem);
  }
}
.top-group-1__body {
  max-width: 1767px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (min-width: 1921px) {
  .top-group-1__body {
    max-width: 95.6168831169%;
  }
}
@media (max-width: 768px) {
  .top-group-1__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.top-group-1__info {
  margin-top: calc(clamp(0rem, -0.4861111111rem + 0.7777777778vw, 0.4375rem) * -1);
}
@media (max-width: 768px) {
  .top-group-1__info {
    margin-top: 32px;
  }
}

.top-en-box {
  max-width: 34.7%;
  width: 100%;
  min-height: clamp(6.875rem, 1.3930702918rem + 11.4058355438vw, 14.9375rem);
  display: grid;
  place-items: center;
  background-color: rgba(106, 140, 198, 0.9);
}
@media (max-width: 768px) {
  .top-en-box {
    max-width: 100%;
    min-height: 185px;
  }
}
.top-en-box__text {
  color: var(--base);
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: clamp(0.9375rem, 0.0510422193rem + 1.8443854996vw, 2.24125rem);
  font-weight: 600;
  line-height: 1.75;
  --ls: 0.06em;
  white-space: pre-line;
}
@media (max-width: 768px) {
  .top-en-box__text {
    font-size: clamp(1.4375rem, -1.1487068966rem + 10.3448275862vw, 1.625rem);
  }
}

.top-sp-box {
  display: none;
}
@media (max-width: 768px) {
  .top-sp-box {
    max-width: 400px;
    width: 100%;
    display: block;
    margin-top: 23px;
  }
}
.top-sp-box__address {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.125rem;
  line-height: 1.75;
}
.top-sp-box__address-1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 18px;
     -moz-column-gap: 18px;
          column-gap: 18px;
  -webkit-transform: translateX(-17px);
      -ms-transform: translateX(-17px);
          transform: translateX(-17px);
}
.top-sp-box__address-1::before {
  content: "";
  min-width: 21px;
  aspect-ratio: 21/30;
  background-color: #9e8768;
  -webkit-mask-image: url(../images/icon-map.svg);
          mask-image: url(../images/icon-map.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.top-sp-box__features {
  max-width: clamp(22.6875rem, 19.7455621302rem + 10.9467455621vw, 25rem);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 27px;
  margin-inline: auto;
}
.top-sp-box__feature {
  max-width: 177px;
  width: 100%;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--base);
}
.top-sp-box__feature_1 {
  background-color: #63a1c4;
}
.top-sp-box__feature_2 {
  background-color: #cf7fa7;
}

.top-info {
  max-width: clamp(23.75rem, 8.8340517241rem + 31.0344827586vw, 45.6875rem);
  width: 100%;
}
@media (max-width: 768px) {
  .top-info {
    max-width: 100%;
  }
}
.top-info__table {
  width: 100%;
  background-color: var(--base);
  font-size: clamp(0.9375rem, 0.5550397878rem + 0.7957559682vw, 1.5rem);
  border: 1px solid var(--accent);
}
.top-info__th {
  font-weight: 500;
  vertical-align: middle;
}
.top-info__top {
  height: clamp(2.5rem, 1.0126547303rem + 3.0946065429vw, 4.6875rem);
  text-align: center;
  border-bottom: 1px solid var(--accent);
}
.top-info__left {
  width: 33.4%;
  border-bottom: 1px solid var(--accent);
  padding-left: clamp(0.3125rem, -1.5148099027rem + 3.8019451813vw, 3rem);
}
.top-info__holiday {
  width: 23.1%;
}
@media (max-width: 768px) {
  .top-info__holiday {
    width: 16.1%;
  }
}
.top-info__td {
  text-align: center;
}
.top-info__right {
  text-align: center;
  padding-right: clamp(0.3125rem, -2.1097480106rem + 5.0397877984vw, 3.875rem);
}
@media (max-width: 768px) {
  .top-info__right {
    padding-right: 0;
  }
}
.top-info__am {
  height: clamp(2.25rem, 0.8901414677rem + 2.8293545535vw, 4.25rem);
  vertical-align: middle;
  border-bottom: 1px solid var(--accent);
}
.top-info__pm {
  height: clamp(2.3125rem, 0.9526414677rem + 2.8293545535vw, 4.3125rem);
  vertical-align: middle;
  border-bottom: 1px solid var(--accent);
}
.top-info__bottom {
  height: clamp(3.4375rem, 2.7575707339rem + 1.4146772767vw, 4.4375rem);
  background-color: var(--accent);
  padding-top: clamp(0.125rem, 0.0400088417rem + 0.1768346596vw, 0.25rem);
  padding-left: clamp(0.5rem, -0.3924071618rem + 1.8567639257vw, 1.8125rem);
}
.top-info__text {
  color: var(--base);
  font-size: clamp(0.875rem, 0.7050176835rem + 0.3536693192vw, 1.125rem);
  line-height: 1.75;
  white-space: pre-line;
}

.top-news {
  position: relative;
  background-color: #ecf1f8;
}
@media (max-width: 768px) {
  .top-news {
    background: transparent;
  }
}
.top-news::before, .top-news::after {
  content: "";
  position: absolute;
  left: 0;
  z-index: 0;
  background-color: rgba(199, 215, 241, 0.5);
}
@media (max-width: 768px) {
  .top-news::before, .top-news::after {
    content: none;
  }
}
.top-news::before {
  width: 19.7395833333%;
  height: 100%;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
          clip-path: polygon(0 0, 0% 100%, 100% 0);
  top: 0;
}
.top-news::after {
  width: 11.875%;
  aspect-ratio: 230/302.83;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
          clip-path: polygon(0 0, 0% 100%, 100% 100%);
  bottom: 0;
}
@media (max-width: 768px) {
  .top-news_pos {
    margin-top: 37px;
  }
}
.top-news__inner {
  max-width: 1449px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding: 72px 30px 31px;
}
@media (max-width: 768px) {
  .top-news__inner {
    padding: 0 clamp(1.25rem, 0.4548816568rem + 2.9585798817vw, 1.875rem);
  }
}
@media (max-width: 768px) {
  .top-news__sp-body {
    position: relative;
    background-color: #ecf1f8;
    padding: 53px 17px 31px;
  }
}
@media (max-width: 768px) {
  .top-news__sp-body::before, .top-news__sp-body::after {
    content: "";
    position: absolute;
    left: 0;
    z-index: 0;
    background-color: rgba(199, 215, 241, 0.5);
  }
}
@media (max-width: 768px) {
  .top-news__sp-body::before {
    width: 50%;
    height: 100%;
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
            clip-path: polygon(0 0, 0% 100%, 100% 0);
    top: 0;
  }
}
@media (max-width: 768px) {
  .top-news__sp-body::after {
    width: 29.9487179487%;
    aspect-ratio: 116.8/302.83;
    -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
            clip-path: polygon(0 0, 0% 100%, 100% 100%);
    bottom: 0;
  }
}
.top-news__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: clamp(1rem, 0.3465909091rem + 2.6136363636vw, 2.4375rem);
     -moz-column-gap: clamp(1rem, 0.3465909091rem + 2.6136363636vw, 2.4375rem);
          column-gap: clamp(1rem, 0.3465909091rem + 2.6136363636vw, 2.4375rem);
  position: relative;
  z-index: 1;
  background-image: -webkit-repeating-linear-gradient(left, var(--main), var(--main) 4px, transparent 4px, transparent 6px);
  background-image: repeating-linear-gradient(90deg, var(--main), var(--main) 4px, transparent 4px, transparent 6px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 2px;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  line-height: 1;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .top-news__title {
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    padding-bottom: 51px;
  }
}
.top-news__jp {
  font-size: clamp(1.375rem, 1.1477272727rem + 0.9090909091vw, 1.875rem);
}
.top-news__en {
  color: var(--main);
  font-size: clamp(2.5rem, 2.2159090909rem + 1.1363636364vw, 3.125rem);
}
.top-news__main {
  height: 314px;
  overflow-y: auto;
  position: relative;
  z-index: 1;
  margin-top: 22px;
  padding: 28px clamp(0.4375rem, -0.5961538462rem + 3.8461538462vw, 1.25rem);
}
@media (max-width: 768px) {
  .top-news__main {
    margin-top: 19px;
    padding: 0 7px;
  }
}
.top-news__main::-webkit-scrollbar {
  width: 5px;
}
.top-news__main::-webkit-scrollbar-track {
  background-color: transparent;
}
.top-news__main::-webkit-scrollbar-thumb {
  background-color: var(--main);
}
.top-news__items {
  max-width: 1400px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 63px;
  margin-inline: auto;
}
.top-news__post-link {
  display: grid;
  grid-template-columns: 157px 1fr;
  font-size: 1.125rem;
  line-height: 1.75;
}
@media (max-width: 768px) {
  .top-news__post-link {
    grid-template-columns: 1fr;
  }
}
.top-news__date {
  color: var(--main);
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 900;
}
.top-news__excerpt {
  white-space: pre-line;
}
.top-news__more {
  max-width: 300px;
  width: 100%;
  margin-inline: auto;
  padding-left: 25px;
}
.top-news__deco::before, .top-news__deco::after {
  content: "";
  position: absolute;
  right: 0;
  z-index: 0;
  background-color: rgba(199, 215, 241, 0.5);
}
.top-news__deco::before {
  width: 11.875%;
  aspect-ratio: 230/302.83;
  -webkit-clip-path: polygon(100% 0, 0 0, 100% 100%);
          clip-path: polygon(100% 0, 0 0, 100% 100%);
  top: 0;
}
@media (max-width: 768px) {
  .top-news__deco::before {
    width: 29.9487179487%;
    aspect-ratio: 116.8/302.83;
  }
}
.top-news__deco::after {
  width: 19.7395833333%;
  height: 100%;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  bottom: 0;
}
@media (max-width: 768px) {
  .top-news__deco::after {
    width: 50%;
  }
}

@media (hover: hover) and (pointer: fine) {
  .top-news__post-link:hover .top-news__date, .top-news__post-link:focus .top-news__date {
    color: var(--accent);
  }
  .top-news__post-link:hover .top-news__box, .top-news__post-link:focus .top-news__box {
    color: var(--accent);
  }
  .top-news__date {
    -webkit-transition: color 0.4s;
    transition: color 0.4s;
  }
  .top-news__box {
    -webkit-transition: color 0.4s;
    transition: color 0.4s;
  }
}
.top-feature_pos {
  margin-top: clamp(3.625rem, 2.5rem + 4.5vw, 5.3125rem);
}
.top-feature__t18 {
  font-size: 1.125rem;
  line-height: 2.2222222222;
  white-space: pre-line;
}
.top-feature__01 {
  margin-top: 101px;
}
@media (max-width: 768px) {
  .top-feature__01 {
    margin-top: 103px;
  }
}
@media (max-width: 768px) {
  .top-feature__02 {
    margin-top: 178px;
  }
}
.top-feature__03 {
  margin-top: clamp(7rem, 4.5010964912rem + 9.298245614vw, 10.3125rem);
}
.top-feature__04 {
  margin-top: clamp(6.625rem, 2.4287280702rem + 15.6140350877vw, 12.1875rem);
}
.top-feature__05 {
  margin-top: 6px;
}
@media (max-width: 768px) {
  .top-feature__05 {
    margin-top: 69px;
  }
}
.top-feature__link {
  max-width: 340px;
  margin-top: clamp(2.9375rem, 1.7587719298rem + 4.3859649123vw, 4.5rem);
  margin-inline: auto;
  padding-left: 40px;
}

.top-feature1 {
  position: relative;
  background: url(../images/top-fearure1-line.webp) no-repeat bottom center/contain;
  background-image: -webkit-image-set(url(../images/top-fearure1-line.webp) 1x, url(../images/top-fearure1-line@2x.webp) 2x);
  background-image: image-set(url(../images/top-fearure1-line.webp) 1x, url(../images/top-fearure1-line@2x.webp) 2x);
}
@media (max-width: 768px) {
  .top-feature1 {
    background: url(../images/top-fearure1-line_sp.webp) no-repeat bottom center/contain;
    background-image: -webkit-image-set(url(../images/top-fearure1-line_sp.webp) 1x, url(../images/top-fearure1-line_sp@2x.webp) 2x);
    background-image: image-set(url(../images/top-fearure1-line_sp.webp) 1x, url(../images/top-fearure1-line_sp@2x.webp) 2x);
  }
}
.top-feature1::before {
  content: "";
  width: 22.96875%;
  height: 582px;
  position: absolute;
  top: -26px;
  left: 0;
  z-index: -1;
  background-color: var(--main-l);
}
@media (max-width: 768px) {
  .top-feature1::before {
    width: 15.3488372093%;
    top: -114px;
    height: 527px;
    height: clamp(25.3125rem, 15.612056213rem + 36.0946745562vw, 32.9375rem);
  }
}
.top-feature1__pc-inner {
  max-width: 1810px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
  padding-bottom: 127px;
}
@media (max-width: 1000px) {
  .top-feature1__pc-inner {
    padding: 0 clamp(0.875rem, -0.3971893491rem + 4.7337278107vw, 1.875rem) clamp(5.8125rem, 4.3541666667rem + 5.8333333333vw, 8rem);
  }
}
@media (max-width: 768px) {
  .top-feature1__pc-inner {
    display: contents;
  }
}
.top-feature1__body {
  max-width: 1691px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  margin-left: auto;
}
@media (max-width: 1000px) {
  .top-feature1__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.top-feature1__sp-inner {
  margin-top: clamp(0rem, -2.5798969072rem + 4.1237113402vw, 1.75rem);
}
@media (max-width: 768px) {
  .top-feature1__sp-inner {
    margin-top: clamp(-1.75rem, -3.9763313609rem + 8.2840236686vw, 0rem);
    padding: 0 clamp(0.9375rem, -0.2551775148rem + 4.4378698225vw, 1.875rem) 93px;
  }
}
.top-feature1__box {
  max-width: 741px;
  width: 100%;
}
.top-feature1__title-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: clamp(0.375rem, -0.125rem + 2vw, 1.125rem);
     -moz-column-gap: clamp(0.375rem, -0.125rem + 2vw, 1.125rem);
          column-gap: clamp(0.375rem, -0.125rem + 2vw, 1.125rem);
  color: var(--main);
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
}
.top-feature1__number {
  font-size: clamp(4.375rem, -0.2319587629rem + 7.3637702504vw, 7.5rem);
  line-height: 1;
  --ls: 0.06em;
  white-space: nowrap;
}
@media (max-width: 1000px) {
  .top-feature1__number {
    font-size: clamp(3.75rem, 1.25rem + 10vw, 7.5rem);
  }
}
@media (max-width: 429px) {
  .top-feature1__number {
    font-size: clamp(3.5rem, 0.9137931034rem + 10.3448275862vw, 3.6875rem);
  }
}
.top-feature1__number::first-letter {
  color: #b1c3e1;
}
.top-feature1__title {
  position: relative;
  font-size: clamp(1.75rem, 0.6443298969rem + 1.7673048601vw, 2.5rem);
  font-weight: 600;
  line-height: 1.75;
  white-space: pre-line;
  padding-left: clamp(0.25rem, -0.9166666667rem + 4.6666666667vw, 2rem);
}
@media (max-width: 1000px) {
  .top-feature1__title {
    font-size: clamp(1.75rem, 1.25rem + 2vw, 2.5rem);
  }
}
@media (max-width: 429px) {
  .top-feature1__title {
    font-size: clamp(1.59375rem, 0.3006465517rem + 5.1724137931vw, 1.6875rem);
  }
}
.top-feature1__title::before {
  content: "";
  width: 1px;
  height: 75%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background-color: var(--main);
}
.top-feature1__text {
  max-width: 730px;
  margin-top: clamp(1.875rem, 0.4437869822rem + 5.325443787vw, 3rem);
}
.top-feature1__img-1 {
  max-width: clamp(24.375rem, -3.8517011834rem + 105.0295857988vw, 46.5625rem);
  position: relative;
  margin-top: clamp(5.75rem, 4.9548816568rem + 2.9585798817vw, 6.375rem);
}
.top-feature1__balloon {
  max-width: clamp(10.3125rem, 4.8762886598rem + 8.6892488954vw, 14rem);
  width: 100%;
  aspect-ratio: 1/1;
  position: absolute;
  top: -97px;
  right: -45px;
}
@media (max-width: 1000px) {
  .top-feature1__balloon {
    max-width: clamp(9.9375rem, 6.9594594595rem + 11.0810810811vw, 12.5rem);
    top: clamp(-6.9375rem, -7.7364864865rem + 2.972972973vw, -6.25rem);
    right: clamp(1.8125rem, -5.0878378378rem + 25.6756756757vw, 7.75rem);
  }
}
.top-feature1__img-2 {
  max-width: clamp(26.875rem, -16.8911082474rem + 69.9558173785vw, 56.5625rem);
  width: 100%;
}
@media (max-width: 1000px) {
  .top-feature1__img-2 {
    max-width: 600px;
  }
}
@media (max-width: 768px) {
  .top-feature1__img-2 {
    padding-left: 35px;
  }
}

.top-feature2 {
  position: relative;
  background-color: var(--main);
}
.top-feature2::before {
  content: "";
  width: 25%;
  aspect-ratio: 480/465;
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(../images/top-feature2-deco.webp) no-repeat center center/cover;
  background-image: -webkit-image-set(url(../images/top-feature2-deco.webp) 1x, url(../images/top-feature2-deco@2x.webp) 2x);
  background-image: image-set(url(../images/top-feature2-deco.webp) 1x, url(../images/top-feature2-deco@2x.webp) 2x);
}
@media (max-width: 1000px) {
  .top-feature2::before {
    width: 300px;
    top: 150px;
    bottom: inherit;
  }
}
@media (max-width: 768px) {
  .top-feature2::before {
    width: clamp(13.875rem, 7.6730769231rem + 23.0769230769vw, 18.75rem);
    aspect-ratio: 222/306;
    top: clamp(-8.3125rem, -11.7315088757rem + 12.7218934911vw, -5.625rem);
    background: url(../images/top-feature2-deco_sp.webp) no-repeat center center/cover;
    background-image: -webkit-image-set(url(../images/top-feature2-deco_sp.webp) 1x, url(../images/top-feature2-deco_sp@2x.webp) 2x);
    background-image: image-set(url(../images/top-feature2-deco_sp.webp) 1x, url(../images/top-feature2-deco_sp@2x.webp) 2x);
  }
}
.top-feature2__outer {
  max-width: 1920px;
  margin-inline: auto;
  padding-top: 1px;
}
.top-feature2__body {
  max-width: 1801px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  margin-left: auto;
  padding-bottom: calc(clamp(-3.125rem, -56.8181818182rem + 50.5050505051vw, 0rem) * -1);
  padding-left: 30px;
}
@media (max-width: 1000px) {
  .top-feature2__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 768px) {
  .top-feature2__body {
    padding-bottom: 45px;
    padding-left: 0;
  }
}
.top-feature2__box-outer {
  max-width: 820px;
  width: 100%;
  margin-top: clamp(3.6875rem, -2.4858247423rem + 9.8674521355vw, 7.875rem);
}
@media (max-width: 1000px) {
  .top-feature2__box-outer {
    max-width: inherit;
    margin-top: clamp(0.375rem, -2.1239035088rem + 9.298245614vw, 3.6875rem);
  }
}
@media (max-width: 768px) {
  .top-feature2__box-outer {
    padding-left: clamp(0.9375rem, -0.2551775148rem + 4.4378698225vw, 1.875rem);
  }
}
.top-feature2__box {
  max-width: 759px;
  color: var(--base);
  padding-right: clamp(0.9375rem, -0.2551775148rem + 4.4378698225vw, 1.875rem);
}
@media (max-width: 1000px) {
  .top-feature2__box {
    margin-inline: auto;
  }
}
.top-feature2__title-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
}
@media (max-width: 1000px) {
  .top-feature2__title-area {
    -webkit-column-gap: 7px;
       -moz-column-gap: 7px;
            column-gap: 7px;
  }
}
.top-feature2__number {
  font-size: clamp(4.375rem, -0.2319587629rem + 7.3637702504vw, 7.5rem);
  line-height: 1;
  --ls: 0.06em;
  white-space: nowrap;
}
@media (max-width: 1000px) {
  .top-feature2__number {
    font-size: clamp(3.75rem, 1.25rem + 10vw, 7.5rem);
  }
}
@media (max-width: 429px) {
  .top-feature2__number {
    font-size: clamp(3.5rem, 0.9137931034rem + 10.3448275862vw, 3.6875rem);
  }
}
.top-feature2__number::first-letter {
  color: #b1c3e1;
}
.top-feature2__title {
  position: relative;
  font-size: clamp(1.75rem, 0.6443298969rem + 1.7673048601vw, 2.5rem);
  font-weight: 600;
  line-height: 1.75;
  white-space: pre-line;
  padding-left: clamp(0.9375rem, 0.2291666667rem + 2.8333333333vw, 2rem);
}
@media (max-width: 1000px) {
  .top-feature2__title {
    font-size: clamp(1.9375rem, 1.5131578947rem + 1.5789473684vw, 2.5rem);
  }
}
.top-feature2__title::before {
  content: "";
  width: 1px;
  height: 75%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background-color: var(--base);
}
.top-feature2__text {
  margin-top: clamp(1.125rem, -1.2603550296rem + 8.875739645vw, 3rem);
}
.top-feature2__en {
  position: relative;
  color: #b1c3e1;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: clamp(3.75rem, 1.9072164948rem + 2.9455081001vw, 5rem);
  line-height: 1;
  margin-top: 33px;
  padding-right: 30px;
}
@media (max-width: 1000px) {
  .top-feature2__en {
    font-size: clamp(3rem, 1.4912280702rem + 5.6140350877vw, 5rem);
    margin-top: 40px;
  }
}
.top-feature2__en::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: clamp(0.1875rem, -0.0889175258rem + 0.441826215vw, 0.375rem);
  left: 0;
  background-color: #b1c3e1;
}
@media (max-width: 1000px) {
  .top-feature2__en::after {
    bottom: clamp(0.25rem, 0.1557017544rem + 0.350877193vw, 0.375rem);
  }
}
.top-feature2__img-1 {
  max-width: 920px;
  width: 100%;
  position: relative;
  margin-top: calc(clamp(2.5rem, -4.3933639399rem + 11.0183639399vw, 6.625rem) * -1);
}
@media (max-width: 1000px) {
  .top-feature2__img-1 {
    max-width: 659px;
    margin-top: -50px;
  }
}
@media (max-width: 768px) {
  .top-feature2__img-1 {
    max-width: 620px;
    margin-top: -143px;
    padding-right: 5px;
    padding-left: 36px;
  }
}
.top-feature2__balloon {
  max-width: clamp(10.3125rem, 4.8762886598rem + 8.6892488954vw, 14rem);
  width: 100%;
  aspect-ratio: 1/1;
  position: absolute;
  top: clamp(-3.25rem, -10.1604381443rem + 11.0456553756vw, 1.4375rem);
  right: -3px;
}
@media (max-width: 1000px) {
  .top-feature2__balloon {
    max-width: clamp(9.9375rem, 6.9594594595rem + 11.0810810811vw, 12.5rem);
    top: clamp(-4.625rem, -6.374260355rem + 6.5088757396vw, -3.25rem);
    right: calc(clamp(-1.25rem, -2.8402366864rem + 5.9171597633vw, 0rem) * -1);
  }
}

.top-feature3__inner {
  max-width: 1591px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .top-feature3__inner {
    padding: 0 clamp(1.25rem, 0.4548816568rem + 2.9585798817vw, 1.875rem);
  }
}
.top-feature3__body {
  position: relative;
  border: 2px solid var(--main);
  padding: 1px 20px clamp(5rem, 1.3715882695rem + 7.5493612079vw, 9.0625rem);
}
@media (max-width: 768px) {
  .top-feature3__body {
    padding: 1px clamp(0.75rem, 0.1139053254rem + 2.3668639053vw, 1.25rem) clamp(3.25rem, 1.0236686391rem + 8.2840236686vw, 5rem);
  }
}
.top-feature3__body::after {
  content: "";
  width: 100%;
  height: clamp(10.375rem, 7.3048054588rem + 6.3879210221vw, 13.8125rem);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-color: var(--main-l);
}
@media (max-width: 768px) {
  .top-feature3__body::after {
    height: 214px;
  }
}
.top-feature3__body-inner {
  max-width: 1523px;
  margin-inline: auto;
}
.top-feature3__title-area {
  max-width: clamp(35rem, 16.5788327526rem + 38.3275261324vw, 55.625rem);
  background-color: var(--base);
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  margin-top: -25px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .top-feature3__title-area {
    max-width: 410px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: clamp(0.5625rem, -0.3121301775rem + 3.2544378698vw, 1.25rem);
    margin-top: calc(clamp(3.375rem, 2.5003698225rem + 3.2544378698vw, 4.0625rem) * -1);
  }
}
.top-feature3__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: clamp(1rem, 0.6819526627rem + 1.1834319527vw, 1.25rem);
  font-weight: 600;
}
.top-feature3__jp {
  color: var(--main);
  font-size: clamp(2.125rem, 1.2318524971rem + 1.8583042973vw, 3.125rem);
  line-height: 1.2333333333;
}
@media (max-width: 768px) {
  .top-feature3__jp {
    font-size: clamp(1.875rem, 1.5569526627rem + 1.1834319527vw, 2.125rem);
    text-align: center;
  }
}
@media (max-width: 429px) {
  .top-feature3__jp {
    font-size: clamp(1.6875rem, -0.8987068966rem + 10.3448275862vw, 1.875rem);
  }
}
.top-feature3__en {
  color: #b6cdf5;
  font-size: clamp(1.25rem, 0.6917828107rem + 1.1614401858vw, 1.875rem);
}
@media (max-width: 768px) {
  .top-feature3__en {
    font-size: clamp(1.125rem, 0.9659763314rem + 0.5917159763vw, 1.25rem);
  }
}
@media (max-width: 429px) {
  .top-feature3__en {
    font-size: clamp(1.0625rem, 0.2004310345rem + 3.4482758621vw, 1.125rem);
  }
}
.top-feature3__number {
  position: absolute;
  top: clamp(0.8125rem, -2.8717334495rem + 7.6655052265vw, 4.9375rem);
  right: clamp(0.875rem, -2.4743031359rem + 6.968641115vw, 4.625rem);
  color: #b1c3e1;
  font-size: clamp(4.6875rem, 2.1755226481rem + 5.2264808362vw, 7.5rem);
  --ls: 0.06em;
}
@media (max-width: 768px) {
  .top-feature3__number {
    position: static;
    font-size: clamp(3.75rem, 2.5573224852rem + 4.4378698225vw, 4.6875rem);
  }
}
.top-feature3__text {
  max-width: 835px;
  --ls: 0.06em;
  margin-top: clamp(-0.5rem, -4.7141272189rem + 15.6804733728vw, 2.8125rem);
  margin-inline: auto;
}
.top-feature3__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  margin-top: calc(clamp(-6.125rem, -8.0109649123rem + 7.0175438596vw, -3.625rem) * -1);
}
@media (max-width: 768px) {
  .top-feature3__items {
    max-width: 487px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 10px;
    margin-inline: auto;
  }
}
@media (max-width: 768px) {
  .top-feature3__item {
    position: relative;
  }
}
@media (max-width: 768px) {
  .top-feature3__item_odd {
    padding-right: 12.7071823204%;
  }
}
.top-feature3__item_even {
  margin-top: 52px;
}
@media (max-width: 768px) {
  .top-feature3__item_even {
    margin-top: 0;
    padding-left: 12.7071823204%;
  }
}
.top-feature3__balloon {
  max-width: clamp(7.5rem, 1.6945412311rem + 12.0789779326vw, 14rem);
  position: relative;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .top-feature3__balloon {
    max-width: clamp(10rem, 6.8195266272rem + 11.8343195266vw, 12.5rem);
    position: absolute;
  }
}
@media (max-width: 768px) {
  .top-feature3__balloon_1 {
    top: -28.5%;
    right: -14px;
  }
}
@media (max-width: 768px) {
  .top-feature3__balloon_2 {
    top: calc(50% + 8px);
    left: -14px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media (max-width: 768px) {
  .top-feature3__balloon_3 {
    top: 0;
    right: -14px;
  }
}
.top-feature3__img {
  margin-top: -20px;
}
@media (max-width: 768px) {
  .top-feature3__img {
    margin-top: 0;
  }
}

.top-feature4 {
  position: relative;
}
.top-feature4::before {
  content: "";
  width: 22.96875%;
  height: 582px;
  position: absolute;
  top: -26px;
  left: 0;
  z-index: -1;
  background-color: var(--main-l);
}
@media (max-width: 768px) {
  .top-feature4::before {
    width: 19.5348837209%;
    top: -20px;
    height: 527px;
    height: clamp(25.3125rem, 15.612056213rem + 36.0946745562vw, 32.9375rem);
  }
}
.top-feature4__pc-inner {
  max-width: 1810px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
  padding-bottom: 127px;
}
@media (max-width: 1000px) {
  .top-feature4__pc-inner {
    padding: 0 clamp(0.875rem, -0.3971893491rem + 4.7337278107vw, 1.875rem) clamp(5.8125rem, 4.3541666667rem + 5.8333333333vw, 8rem);
  }
}
@media (max-width: 768px) {
  .top-feature4__pc-inner {
    display: contents;
  }
}
.top-feature4__body {
  max-width: 1689px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  margin-left: auto;
}
@media (max-width: 1000px) {
  .top-feature4__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: calc(clamp(-6.9375rem, -9.3421052632rem + 8.9473684211vw, -3.75rem) * -1);
  }
}
.top-feature4__sp-inner {
  margin-top: clamp(0rem, -3.1327319588rem + 5.0073637703vw, 2.125rem);
}
@media (max-width: 768px) {
  .top-feature4__sp-inner {
    margin-top: clamp(-1.75rem, -3.9763313609rem + 8.2840236686vw, 0rem);
    padding: 0 clamp(0.9375rem, -0.2551775148rem + 4.4378698225vw, 1.875rem) 93px;
  }
}
.top-feature4__box {
  max-width: 745px;
  width: 100%;
}
.top-feature4__title-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: clamp(0.125rem, -0.5416666667rem + 2.6666666667vw, 1.125rem);
     -moz-column-gap: clamp(0.125rem, -0.5416666667rem + 2.6666666667vw, 1.125rem);
          column-gap: clamp(0.125rem, -0.5416666667rem + 2.6666666667vw, 1.125rem);
  color: var(--main);
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
}
.top-feature4__number {
  font-size: clamp(4.375rem, -0.2319587629rem + 7.3637702504vw, 7.5rem);
  line-height: 1;
  --ls: 0.06em;
  white-space: nowrap;
}
@media (max-width: 1000px) {
  .top-feature4__number {
    font-size: clamp(3.75rem, 1.25rem + 10vw, 7.5rem);
  }
}
@media (max-width: 429px) {
  .top-feature4__number {
    font-size: clamp(3.5rem, 0.9137931034rem + 10.3448275862vw, 3.6875rem);
  }
}
.top-feature4__number::first-letter {
  color: #b1c3e1;
}
.top-feature4__title {
  position: relative;
  font-size: clamp(1.6875rem, 0.6695869837rem + 1.6270337922vw, 2.5rem);
  font-weight: 600;
  line-height: 1.6;
  white-space: pre-line;
  padding-left: clamp(0.3125rem, -1.8016270338rem + 3.37922403vw, 2rem);
}
@media (max-width: 1000px) {
  .top-feature4__title {
    font-size: clamp(1.5rem, 0.8333333333rem + 2.6666666667vw, 2.5rem);
    padding-left: clamp(0.25rem, -0.9166666667rem + 4.6666666667vw, 2rem);
  }
}
@media (max-width: 429px) {
  .top-feature4__title {
    font-size: clamp(1.40625rem, 0.9752155172rem + 1.724137931vw, 1.4375rem);
  }
}
.top-feature4__title::before {
  content: "";
  width: 1px;
  height: 75%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background-color: var(--main);
}
.top-feature4__s {
  font-size: clamp(1.375rem, 0.5136889862rem + 1.3767209011vw, 2.0625rem);
}
@media (max-width: 1000px) {
  .top-feature4__s {
    font-size: clamp(1.125rem, 0.4177631579rem + 2.6315789474vw, 2.0625rem);
  }
}
.top-feature4__text {
  margin-top: clamp(3.0625rem, 2.6649408284rem + 1.4792899408vw, 3.375rem);
}
.top-feature4__img-1 {
  max-width: clamp(24.375rem, -3.8517011834rem + 105.0295857988vw, 46.5625rem);
  margin-top: clamp(5.125rem, -4.0889175258rem + 14.7275405007vw, 11.375rem);
}
@media (max-width: 768px) {
  .top-feature4__img-1 {
    margin-top: clamp(4.375rem, 3.4208579882rem + 3.550295858vw, 5.125rem);
  }
}
.top-feature4__balloon {
  max-width: clamp(15.375rem, -1.3943298969rem + 26.8041237113vw, 26.75rem);
  width: 100%;
  position: absolute;
  top: calc(50% - 33px);
  left: -16.2%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 1000px) {
  .top-feature4__balloon {
    max-width: clamp(15.75rem, 11.1293859649rem + 17.1929824561vw, 21.875rem);
    top: inherit;
    bottom: clamp(-3.1875rem, -6.3936403509rem + 11.9298245614vw, 1.0625rem);
    left: calc(clamp(-1.25rem, -9.0296052632rem + 28.9473684211vw, 9.0625rem) * -1);
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
}
@media (max-width: 1000px) and (max-width: 768px) {
  .top-feature4__balloon {
    left: calc(clamp(-1.25rem, -4.4304733728rem + 11.8343195266vw, 1.25rem) * -1);
  }
}
.top-feature4__img-2 {
  max-width: clamp(26.875rem, -16.8911082474rem + 69.9558173785vw, 56.5625rem);
  width: 100%;
  position: relative;
}
@media (max-width: 1000px) {
  .top-feature4__img-2 {
    max-width: 600px;
  }
}
@media (max-width: 768px) {
  .top-feature4__img-2 {
    padding-left: 35px;
  }
}

.top-feature5 {
  position: relative;
  background-color: var(--main);
}
.top-feature5::before {
  content: "";
  width: 36.71875%;
  aspect-ratio: 705/535;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  background: url(../images/top-feature5-deco.webp) no-repeat center center/cover;
  background-image: -webkit-image-set(url(../images/top-feature5-deco.webp) 1x, url(../images/top-feature5-deco@2x.webp) 2x);
  background-image: image-set(url(../images/top-feature5-deco.webp) 1x, url(../images/top-feature5-deco@2x.webp) 2x);
}
@media (max-width: 1000px) {
  .top-feature5::before {
    width: 300px;
  }
}
@media (max-width: 768px) {
  .top-feature5::before {
    width: clamp(13.5625rem, 6.9630177515rem + 24.5562130178vw, 18.75rem);
    aspect-ratio: 245/189;
    background: url(../images/top-feature5-deco_sp.webp) no-repeat center center/cover;
    background-image: -webkit-image-set(url(../images/top-feature5-deco_sp.webp) 1x, url(../images/top-feature5-deco_sp@2x.webp) 2x);
    background-image: image-set(url(../images/top-feature5-deco_sp.webp) 1x, url(../images/top-feature5-deco_sp@2x.webp) 2x);
  }
}
.top-feature5__outer {
  max-width: 1920px;
  position: relative;
  margin-inline: auto;
  padding-top: 1px;
}
.top-feature5__body {
  max-width: 1801px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  margin-left: auto;
  padding-bottom: clamp(1.25rem, -3.3569587629rem + 7.3637702504vw, 4.375rem);
  padding-left: 30px;
}
@media (max-width: 1000px) {
  .top-feature5__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: clamp(10.25rem, 6.5723684211rem + 13.6842105263vw, 15.125rem);
  }
}
@media (max-width: 768px) {
  .top-feature5__body {
    padding-left: 0;
  }
}
.top-feature5__box-outer {
  max-width: 820px;
  width: 100%;
  margin-top: clamp(0.6875rem, -6.4072164948rem + 11.3402061856vw, 5.5rem);
}
@media (max-width: 1000px) {
  .top-feature5__box-outer {
    max-width: inherit;
    margin-top: clamp(0.375rem, -2.1239035088rem + 9.298245614vw, 3.6875rem);
  }
}
@media (max-width: 768px) {
  .top-feature5__box-outer {
    padding-left: clamp(0.9375rem, -0.2551775148rem + 4.4378698225vw, 1.875rem);
  }
}
.top-feature5__box {
  max-width: 759px;
  color: var(--base);
  padding-right: clamp(0.9375rem, -0.2551775148rem + 4.4378698225vw, 1.875rem);
}
@media (max-width: 1000px) {
  .top-feature5__box {
    margin-inline: auto;
  }
}
.top-feature5__title-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
}
@media (max-width: 1000px) {
  .top-feature5__title-area {
    -webkit-column-gap: 7px;
       -moz-column-gap: 7px;
            column-gap: 7px;
  }
}
.top-feature5__number {
  font-size: clamp(4.375rem, -0.2319587629rem + 7.3637702504vw, 7.5rem);
  line-height: 1;
  --ls: 0.06em;
  white-space: nowrap;
}
@media (max-width: 1000px) {
  .top-feature5__number {
    font-size: clamp(3.75rem, 1.25rem + 10vw, 7.5rem);
  }
}
@media (max-width: 429px) {
  .top-feature5__number {
    font-size: clamp(3.5rem, 0.9137931034rem + 10.3448275862vw, 3.6875rem);
  }
}
.top-feature5__number::first-letter {
  color: #b1c3e1;
}
.top-feature5__title {
  position: relative;
  font-size: clamp(2.125rem, 1.5721649485rem + 0.88365243vw, 2.5rem);
  font-weight: 600;
  line-height: 1.6;
  white-space: pre-line;
  padding-left: clamp(0.3125rem, -2.175257732rem + 3.9764359352vw, 2rem);
}
@media (max-width: 1000px) {
  .top-feature5__title {
    padding-left: clamp(0.9375rem, 0.2291666667rem + 2.8333333333vw, 2rem);
    font-size: clamp(1.5rem, 0.7456140351rem + 2.8070175439vw, 2.5rem);
  }
}
.top-feature5__title::before {
  content: "";
  width: 1px;
  height: 75%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background-color: var(--base);
}
.top-feature5__s {
  font-size: clamp(1.25rem, 0.3286082474rem + 1.4727540501vw, 1.875rem);
}
@media (max-width: 1000px) {
  .top-feature5__s {
    font-size: clamp(1.125rem, 0.5592105263rem + 2.1052631579vw, 1.875rem);
  }
}
@media (max-width: 429px) {
  .top-feature5__s {
    font-size: clamp(1rem, -0.2931034483rem + 5.1724137931vw, 1.09375rem);
  }
}
.top-feature5__text {
  margin-top: clamp(0.9375rem, -2.4716494845rem + 5.4491899853vw, 3.25rem);
}
@media (max-width: 1000px) {
  .top-feature5__text {
    margin-top: clamp(1.8125rem, -0.0162721893rem + 6.8047337278vw, 3.25rem);
  }
}
.top-feature5__en {
  position: relative;
  color: #b1c3e1;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: clamp(1.75rem, -0.2770618557rem + 3.2400589102vw, 3.125rem);
  line-height: 1;
  margin-top: clamp(1.5rem, -0.4349226804rem + 3.0927835052vw, 2.8125rem);
  padding-right: 30px;
}
@media (max-width: 1000px) {
  .top-feature5__en {
    font-size: clamp(1.5625rem, 0.3837719298rem + 4.3859649123vw, 3.125rem);
    margin-top: clamp(2.0625rem, 1.5059171598rem + 2.0710059172vw, 2.5rem);
  }
}
@media (max-width: 429px) {
  .top-feature5__en {
    font-size: clamp(1.4375rem, -0.286637931rem + 6.8965517241vw, 1.5625rem);
  }
}
.top-feature5__en::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: clamp(0.0625rem, -0.7995689655rem + 3.4482758621vw, 0.125rem);
  left: 0;
  background-color: #b1c3e1;
}
.top-feature5__img-1 {
  max-width: 895px;
  width: 100%;
  margin-top: calc(clamp(2.5rem, -4.2889190317rem + 10.8514190317vw, 6.5625rem) * -1);
}
@media (max-width: 1000px) {
  .top-feature5__img-1 {
    max-width: 659px;
    margin-top: -50px;
  }
}
@media (max-width: 768px) {
  .top-feature5__img-1 {
    max-width: 620px;
    margin-top: -45px;
    padding-right: 32px;
    padding-left: 34px;
  }
}

.top-medical_pos {
  margin-top: clamp(8.5rem, 5.9539473684rem + 9.4736842105vw, 11.875rem);
}
@media (max-width: 768px) {
  .top-medical__inner {
    max-width: 708px;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    margin-inline: auto;
    padding: 0 clamp(1.25rem, 0.4548816568rem + 2.9585798817vw, 1.875rem);
  }
}
.top-medical__body {
  background: url(../images/top-medical-bg.webp) no-repeat center center/cover;
  background-image: -webkit-image-set(url(../images/top-medical-bg.webp) 1x, url(../images/top-medical-bg@2x.webp) 2x);
  background-image: image-set(url(../images/top-medical-bg.webp) 1x, url(../images/top-medical-bg@2x.webp) 2x);
  margin-top: 44px;
  padding: clamp(4.0625rem, 1.9407894737rem + 7.8947368421vw, 6.875rem) clamp(0.875rem, -0.3971893491rem + 4.7337278107vw, 1.875rem) clamp(4.9375rem, 3.1087278107rem + 6.8047337278vw, 6.375rem);
}
@media (max-width: 768px) {
  .top-medical__body {
    background: url(../images/top-medical-bg_sp.webp) no-repeat center center/cover;
    background-image: -webkit-image-set(url(../images/top-medical-bg_sp.webp) 1x, url(../images/top-medical-bg_sp@2x.webp) 2x);
    background-image: image-set(url(../images/top-medical-bg_sp.webp) 1x, url(../images/top-medical-bg_sp@2x.webp) 2x);
    margin-top: 54px;
  }
}
.top-medical__body-inner {
  max-width: 1546px;
  margin-inline: auto;
}
@media (max-width: 1000px) {
  .top-medical__body-inner {
    max-width: 728px;
  }
}
.top-medical__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(3.125rem, -1.0545407098rem + 6.6805845511vw, 5.125rem) clamp(0.9375rem, -17.575rem + 20vw, 2.5rem);
}
@media (max-width: 1000px) {
  .top-medical__items {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(0.75rem, -2.2714497041rem + 11.2426035503vw, 3.125rem) 20px;
  }
}
.top-medical__link {
  height: 100%;
  min-height: clamp(21.75rem, 8.4277139875rem + 21.2943632568vw, 28.125rem);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: clamp(1.375rem, -1.2372129436rem + 4.1753653445vw, 2.625rem) 15px 25px;
}
@media (max-width: 1000px) {
  .top-medical__link {
    min-height: clamp(13.5625rem, -4.9637573964rem + 68.9349112426vw, 28.125rem);
    padding: clamp(1.25rem, -0.499260355rem + 6.5088757396vw, 2.625rem) clamp(0.4375rem, -0.1985946746rem + 2.3668639053vw, 0.9375rem) 25px;
  }
}
.top-medical__link::after {
  content: "";
  width: clamp(0.949375rem, -0.3426923077rem + 4.8076923077vw, 1.965rem);
  aspect-ratio: 1/1;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  position: absolute;
  right: 0;
  bottom: 0;
}
.top-medical__link_odd {
  background-color: var(--main-l);
}
.top-medical__link_odd::after {
  background-color: var(--main);
}
.top-medical__link_even {
  background-color: #f2eee9;
}
.top-medical__link_even::after {
  background-color: var(--accent);
}
.top-medical__icon {
  max-width: clamp(6.875rem, 1.128131524rem + 9.1858037578vw, 9.625rem);
}
@media (max-width: 1000px) {
  .top-medical__icon {
    max-width: clamp(4.65rem, -1.6791420118rem + 23.550295858vw, 9.625rem);
  }
}
.top-medical__item-title {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: clamp(1.5rem, 0.7163361169rem + 1.2526096033vw, 1.875rem);
  margin-top: clamp(1.25rem, -1.1009916493rem + 3.75782881vw, 2.375rem);
}
@media (max-width: 1000px) {
  .top-medical__item-title {
    font-size: clamp(1.125rem, 0.1708579882rem + 3.550295858vw, 1.875rem);
    margin-top: clamp(0.9375rem, -0.8912721893rem + 6.8047337278vw, 2.375rem);
  }
}
.top-medical__item-title_odd {
  color: var(--main);
}
.top-medical__item-title_even {
  color: var(--accent);
}
.top-medical__text-items {
  max-width: 284px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: calc(clamp(-0.75rem, -1.3065828402rem + 2.0710059172vw, -0.3125rem) * -1);
  margin-top: clamp(1.0625rem, 0.5059171598rem + 2.0710059172vw, 1.5rem);
}
.top-medical__text-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-column-gap: clamp(0.3125rem, -0.2440828402rem + 2.0710059172vw, 0.75rem);
     -moz-column-gap: clamp(0.3125rem, -0.2440828402rem + 2.0710059172vw, 0.75rem);
          column-gap: clamp(0.3125rem, -0.2440828402rem + 2.0710059172vw, 0.75rem);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 2px;
  font-size: clamp(0.9375rem, 0.5456680585rem + 0.6263048017vw, 1.125rem);
  line-height: 1.75;
  padding-bottom: 2px;
  background-image: -webkit-repeating-linear-gradient(left, var(--accent), var(--accent) 4px, transparent 4px, transparent 6px);
  background-image: repeating-linear-gradient(90deg, var(--accent), var(--accent) 4px, transparent 4px, transparent 6px);
}
@media (max-width: 1000px) {
  .top-medical__text-item {
    font-size: clamp(0.75rem, 0.2729289941rem + 1.775147929vw, 1.125rem);
  }
}
@media (max-width: 768px) {
  .top-medical__text-item {
    line-height: 1.2;
  }
}
.top-medical__text-item::before {
  content: "";
  min-width: clamp(0.375rem, -0.1815828402rem + 2.0710059172vw, 0.8125rem);
  aspect-ratio: 13/16;
  -webkit-mask-image: url(../images/icon-check.svg);
          mask-image: url(../images/icon-check.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.top-medical__text-item_odd {
  background-image: -webkit-repeating-linear-gradient(left, var(--main), var(--main) 4px, transparent 4px, transparent 6px);
  background-image: repeating-linear-gradient(90deg, var(--main), var(--main) 4px, transparent 4px, transparent 6px);
}
.top-medical__text-item_odd::before {
  background-color: var(--main);
}
.top-medical__text-item_even::before {
  background-color: var(--accent);
}

@media (hover: hover) and (pointer: fine) {
  .top-medical__link::after {
    -webkit-transition: width 0.4s;
    transition: width 0.4s;
  }
  .top-medical__link:hover::after, .top-medical__link:focus::after {
    width: clamp(1.25rem, -0.1017011834rem + 5.0295857988vw, 2.3125rem);
  }
  .top-medical__link:hover .top-medical__icon, .top-medical__link:focus .top-medical__icon {
    scale: 1.08;
  }
  .top-medical__icon {
    -webkit-transition: scale 0.4s;
    transition: scale 0.4s;
  }
}
.top-greet {
  position: relative;
}
.top-greet::after {
  content: "";
  width: 100%;
  aspect-ratio: 1920/750;
  position: absolute;
  bottom: calc(clamp(-14.4375rem, -24.0834057341rem + 20.0695047785vw, 0rem) * -1);
  z-index: -1;
  background: url(../images/top-greet-bg.webp) no-repeat center center/cover;
  background-image: -webkit-image-set(url(../images/top-greet-bg.webp) 1x, url(../images/top-greet-bg@2x.webp) 2x);
  background-image: image-set(url(../images/top-greet-bg.webp) 1x, url(../images/top-greet-bg@2x.webp) 2x);
}
@media (max-width: 768px) {
  .top-greet::after {
    aspect-ratio: 430/309;
    top: 31.1%;
    bottom: inherit;
    background: url(../images/top-greet-bg_sp.webp) no-repeat center center/cover;
    background-image: -webkit-image-set(url(../images/top-greet-bg_sp.webp) 1x, url(../images/top-greet-bg_sp@2x.webp) 2x);
    background-image: image-set(url(../images/top-greet-bg_sp.webp) 1x, url(../images/top-greet-bg_sp@2x.webp) 2x);
  }
}
.top-greet_pos {
  margin-top: clamp(9.3125rem, 6.9078947368rem + 8.9473684211vw, 12.5rem);
}
.top-greet__inner {
  max-width: 1825px;
  margin-inline: auto;
  padding: 0 clamp(0.625rem, -1.9872129436rem + 4.1753653445vw, 1.875rem) 45px;
}
@media (max-width: 768px) {
  .top-greet__inner {
    padding: 0;
  }
}
.top-greet__body {
  position: relative;
  margin-top: -1px;
  padding-top: clamp(2.4375rem, 0.2686403509rem + 8.0701754386vw, 5.3125rem);
}
@media (max-width: 768px) {
  .top-greet__body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    row-gap: clamp(2.125rem, 0.8528106509rem + 4.7337278107vw, 3.125rem);
  }
}
.top-greet__box {
  max-width: clamp(25.625rem, 2.7611076345rem + 36.5456821026vw, 43.875rem);
  position: relative;
  z-index: 1;
  margin-inline: auto;
}
@media (max-width: 1000px) {
  .top-greet__box {
    max-width: 762px;
    padding: 0 clamp(1.0625rem, 0.0288461538rem + 3.8461538462vw, 1.875rem);
  }
}
.top-greet__box-title {
  color: var(--main);
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: clamp(1.375rem, 0.7689742968rem + 1.2609117362vw, 2.1875rem);
  font-weight: bold;
  line-height: 1.75;
  text-align: center;
  white-space: pre-line;
}
@media (max-width: 768px) {
  .top-greet__box-title {
    font-size: clamp(1.6875rem, 1.2899408284rem + 1.4792899408vw, 2rem);
  }
}
@media (max-width: 429px) {
  .top-greet__box-title {
    font-size: clamp(1.5625rem, -0.161637931rem + 6.8965517241vw, 1.6875rem);
  }
}
.top-greet__text {
  font-size: 1.125rem;
  line-height: 2.2222222222;
  white-space: pre-line;
  margin-top: 63px;
}
@media (max-width: 1000px) {
  .top-greet__text {
    margin-top: clamp(5.9375rem, -5.505952381rem + 23.8095238095vw, 9.375rem);
  }
}
@media (max-width: 768px) {
  .top-greet__text {
    margin-top: clamp(2.0625rem, 0.7107988166rem + 5.0295857988vw, 3.125rem);
  }
}
.top-greet__name {
  width: 100%;
  position: absolute;
  inset: 0;
}
@media (max-width: 768px) {
  .top-greet__name {
    max-width: 450px;
    position: static;
    margin-inline: auto;
  }
}
.top-greet__link {
  max-width: clamp(22.625rem, 20.9552514793rem + 6.2130177515vw, 23.9375rem);
  height: clamp(4.60375rem, 4.2586686391rem + 1.2840236686vw, 4.875rem);
  font-size: clamp(1.41625rem, 1.309704142rem + 0.3964497041vw, 1.5rem);
  margin-top: clamp(3.3125rem, 1.5208333333rem + 6.6666666667vw, 5.6875rem);
  margin-inline: auto;
  padding-left: 13px;
}

.top-recruit_pos {
  margin-top: clamp(9.875rem, 5.4901315789rem + 16.3157894737vw, 15.6875rem);
}
.top-recruit__inner {
  max-width: 1850px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 10px;
  padding-left: 10px;
  padding-bottom: clamp(4.125rem, -1.8507352941rem + 22.2352941176vw, 15.9375rem);
}
@media (max-width: 768px) {
  .top-recruit__inner {
    padding: 0 0 clamp(4.125rem, -1.8507352941rem + 22.2352941176vw, 15.9375rem);
  }
}
.top-recruit__deco-wrapper {
  max-width: 1836px;
  position: relative;
  margin-left: auto;
  padding: clamp(3.125rem, 1.0372636263rem + 3.3370411568vw, 5rem) clamp(2.8125rem, -3.3811179088rem + 9.8998887653vw, 8.375rem) clamp(3.9375rem, -0.2379727475rem + 6.6740823137vw, 7.6875rem) clamp(2.5rem, -2.510567297rem + 8.0088987764vw, 7rem);
}
@media (max-width: 1000px) {
  .top-recruit__deco-wrapper {
    margin-right: auto;
    padding: clamp(2.5rem, -5.8225108225rem + 17.316017316vw, 5rem) clamp(3.125rem, -14.3522727273rem + 36.3636363636vw, 8.375rem) clamp(3.125rem, -12.0635822511rem + 31.6017316017vw, 7.6875rem) clamp(3.4375rem, -8.4220779221rem + 24.6753246753vw, 7rem);
  }
}
@media (max-width: 768px) {
  .top-recruit__deco-wrapper {
    padding: 0 clamp(1.25rem, -1.5329142012rem + 10.3550295858vw, 3.4375rem) clamp(4.375rem, 1.9896449704rem + 8.875739645vw, 6.25rem);
  }
}
.top-recruit__deco-wrapper::before {
  content: "";
  width: clamp(25.875rem, 11.8871662959rem + 22.3581757508vw, 38.4375rem);
  aspect-ratio: 615/595;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: url(../images/top-recruit-deco-1.webp) no-repeat center center/contain;
  background-image: -webkit-image-set(url(../images/top-recruit-deco-1.webp) 1x, url(../images/top-recruit-deco-1@2x.webp) 2x);
  background-image: image-set(url(../images/top-recruit-deco-1.webp) 1x, url(../images/top-recruit-deco-1@2x.webp) 2x);
}
@media (max-width: 1000px) {
  .top-recruit__deco-wrapper::before {
    max-width: clamp(18.625rem, -5.5102813853rem + 50.2164502165vw, 25.875rem);
  }
}
@media (max-width: 768px) {
  .top-recruit__deco-wrapper::before {
    width: 43.488372093%;
    aspect-ratio: 187/213;
    background: url(../images/top-recruit-deco-1_sp.webp) no-repeat center center/contain;
    background-image: -webkit-image-set(url(../images/top-recruit-deco-1_sp.webp) 1x, url(../images/top-recruit-deco-1_sp@2x.webp) 2x);
    background-image: image-set(url(../images/top-recruit-deco-1_sp.webp) 1x, url(../images/top-recruit-deco-1_sp@2x.webp) 2x);
  }
}
.top-recruit__deco-wrapper::after {
  content: "";
  width: clamp(19.25rem, 12.2908787542rem + 11.1234705228vw, 25.5rem);
  aspect-ratio: 408/456;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  background: url(../images/top-recruit-deco-2.webp) no-repeat center center/contain;
  background-image: -webkit-image-set(url(../images/top-recruit-deco-2.webp) 1x, url(../images/top-recruit-deco-2@2x.webp) 2x);
  background-image: image-set(url(../images/top-recruit-deco-2.webp) 1x, url(../images/top-recruit-deco-2@2x.webp) 2x);
}
@media (max-width: 1000px) {
  .top-recruit__deco-wrapper::after {
    max-width: clamp(16.6875rem, 8.1569264069rem + 17.7489177489vw, 19.25rem);
  }
}
@media (max-width: 768px) {
  .top-recruit__deco-wrapper::after {
    content: none;
  }
}
.top-recruit__body {
  display: grid;
  grid-template-columns: clamp(28.125rem, 7.3868186874rem + 33.147942158vw, 46.75rem) 1fr;
}
@media (max-width: 1000px) {
  .top-recruit__body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.top-recruit__box {
  position: relative;
  background: url(../images/recruit-box-bg.webp) no-repeat center center/cover;
  background-image: -webkit-image-set(url(../images/recruit-box-bg.webp) 1x, url(../images/recruit-box-bg@2x.webp) 2x);
  background-image: image-set(url(../images/recruit-box-bg.webp) 1x, url(../images/recruit-box-bg@2x.webp) 2x);
  color: var(--base);
  padding: clamp(1.375rem, -0.9215100111rem + 3.6707452725vw, 3.4375rem) clamp(0.9375rem, 0.4604289941rem + 1.775147929vw, 1.3125rem) clamp(2.6875rem, -0.2353309232rem + 4.6718576196vw, 5.3125rem);
}
@media (max-width: 768px) {
  .top-recruit__box {
    background: url(../images/recruit-box-bg_sp.webp) no-repeat center center/cover;
    background-image: -webkit-image-set(url(../images/recruit-box-bg_sp.webp) 1x, url(../images/recruit-box-bg_sp@2x.webp) 2x);
    background-image: image-set(url(../images/recruit-box-bg_sp.webp) 1x, url(../images/recruit-box-bg_sp@2x.webp) 2x);
  }
}
.top-recruit__box-inner {
  max-width: 631px;
  margin-left: auto;
}
@media (max-width: 1000px) {
  .top-recruit__box-inner {
    margin-right: auto;
  }
}
.top-recruit__title {
  max-width: 505px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
}
@media (max-width: 1200px) {
  .top-recruit__title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 14px;
  }
}
@media (max-width: 1000px) {
  .top-recruit__title {
    max-width: inherit;
  }
}
.top-recruit__jp {
  font-size: clamp(1.375rem, 0.9978070175rem + 1.4035087719vw, 1.875rem);
  font-weight: 600;
}
.top-recruit__en {
  font-size: clamp(2.5rem, 1.5570175439rem + 3.5087719298vw, 3.75rem);
  font-weight: bold;
}
.top-recruit__text {
  font-size: 1.125rem;
  line-height: 2.2222222222;
  white-space: pre-line;
  margin-top: clamp(1.875rem, 0.3439933259rem + 2.447163515vw, 3.25rem);
}
@media (max-width: 1000px) {
  .top-recruit__text {
    margin-top: clamp(2.1875rem, 0.8357988166rem + 5.0295857988vw, 3.25rem);
  }
}
.top-recruit__link {
  max-width: 338px;
  margin-top: clamp(1.875rem, -3.6227057842rem + 8.787541713vw, 6.8125rem);
  margin-inline: auto;
  padding-left: 27px;
}
@media (max-width: 1000px) {
  .top-recruit__link {
    margin-top: clamp(2.625rem, -0.3964497041rem + 11.2426035503vw, 5rem);
  }
}
.top-recruit__img img {
  height: 100%;
  aspect-ratio: 842/528;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right center;
     object-position: right center;
}

@media (hover: hover) and (pointer: fine) {
  .top-recruit__link {
    -webkit-transition: background-color 0.4s, color 0.4s;
    transition: background-color 0.4s, color 0.4s;
  }
  .top-recruit__link::after {
    -webkit-transition: background-color 0.4s;
    transition: background-color 0.4s;
  }
  .top-recruit__link:hover, .top-recruit__link:focus {
    background-color: var(--base);
    color: var(--main);
  }
  .top-recruit__link:hover::after, .top-recruit__link:focus::after {
    background-color: var(--main);
  }
}
/*###################################################################
  clinic（page）
###################################################################*/
.clinic1_pos {
  margin-top: 37px;
}
.clinic1__inner {
  max-width: 1536px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .clinic1__inner {
    padding: 0 clamp(0.9375rem, -0.2551775148rem + 4.4378698225vw, 1.875rem);
  }
}
.clinic1__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: clamp(0.15625rem, 0.0852272727rem + 0.2840909091vw, 0.3125rem);
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 600;
}
.clinic1__title::before {
  content: "";
  width: clamp(2.5rem, 1.3636363636rem + 4.5454545455vw, 5rem);
  aspect-ratio: 1/1;
  background: url(../images/icon-title-deco.svg) no-repeat 0 0/contain;
}
.clinic1__title-s {
  font-size: clamp(1.25rem, 0.6818181818rem + 2.2727272727vw, 2.5rem);
}
.clinic1__title-l {
  font-size: clamp(1.875rem, 1.0227272727rem + 3.4090909091vw, 3.75rem);
}
.clinic1__title-m {
  font-size: clamp(1.5625rem, 0.8522727273rem + 2.8409090909vw, 3.125rem);
}
.clinic1__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: clamp(3.75rem, 1.25rem + 10vw, 7.5rem);
  margin-top: clamp(3.125rem, -1.2083333333rem + 17.3333333333vw, 9.625rem);
}
.clinic1__item {
  position: relative;
}
.clinic1__item_2 {
  padding-bottom: calc(clamp(-1.875rem, -5.6627087683rem + 6.0542797495vw, -0.0625rem) * -1);
}
@media (max-width: 1000px) {
  .clinic1__item_2 {
    padding-bottom: 0;
  }
}
.clinic1__item_2::after {
  content: "";
  width: 100%;
  height: 93.8517179024%;
  position: absolute;
  bottom: 0;
  z-index: -1;
  background-color: var(--main);
}
@media (max-width: 1000px) {
  .clinic1__item_2::after {
    height: calc(clamp(-36.4375rem, -42.7554347826rem + 25.2717391304vw, -30.625rem) * -1);
    top: 0;
    bottom: inherit;
  }
}
.clinic1__item_3 {
  margin-top: clamp(0rem, -1.9583333333rem + 7.8333333333vw, 2.9375rem);
}
.clinic1__main {
  max-width: 1413px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
@media (max-width: 1000px) {
  .clinic1__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 30px;
  }
}
.clinic1__main_odd {
  margin-left: auto;
}
.clinic1__main_even {
  max-width: 1465px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  padding-right: 30px;
}
@media (max-width: 1000px) {
  .clinic1__main_even {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-right: 0;
  }
}
.clinic1__box {
  max-width: 645px;
  width: 100%;
  margin-top: clamp(0rem, -13.8447286013rem + 22.1294363257vw, 6.625rem);
}
.clinic1__box_even {
  color: var(--base);
  margin-top: clamp(2.9375rem, -4.7685281837rem + 12.3173277662vw, 6.625rem);
}
@media (max-width: 1000px) {
  .clinic1__box_even {
    max-width: 705px;
    margin-top: clamp(1.875rem, 1.1666666667rem + 2.8333333333vw, 2.9375rem);
    padding: 0 15px;
  }
}
.clinic1__item-title-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: clamp(0.75rem, -0.0336638831rem + 1.2526096033vw, 1.125rem);
     -moz-column-gap: clamp(0.75rem, -0.0336638831rem + 1.2526096033vw, 1.125rem);
          column-gap: clamp(0.75rem, -0.0336638831rem + 1.2526096033vw, 1.125rem);
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 600;
}
@media (max-width: 1000px) {
  .clinic1__item-title-area {
    -webkit-column-gap: clamp(0.4375rem, -0.0208333333rem + 1.8333333333vw, 1.125rem);
       -moz-column-gap: clamp(0.4375rem, -0.0208333333rem + 1.8333333333vw, 1.125rem);
            column-gap: clamp(0.4375rem, -0.0208333333rem + 1.8333333333vw, 1.125rem);
  }
}
.clinic1__number {
  font-size: clamp(3.75rem, -1.4744258873rem + 8.3507306889vw, 6.25rem);
  white-space: nowrap;
  margin-top: calc(clamp(0.4375rem, 0.1041666667rem + 1.3333333333vw, 0.9375rem) * -1);
}
@media (max-width: 1000px) {
  .clinic1__number {
    font-size: clamp(2.5rem, 0rem + 10vw, 6.25rem);
  }
}
.clinic1__number::first-letter {
  color: #b1c3e1;
}
.clinic1__number_odd {
  color: var(--main);
}
.clinic1__item-title {
  font-size: clamp(1.875rem, 0.5688935282rem + 2.0876826722vw, 2.5rem);
  line-height: 1.4;
  --ls: 0.02em;
  white-space: pre-line;
}
@media (max-width: 1000px) {
  .clinic1__item-title {
    font-size: clamp(1.5rem, 0.8333333333rem + 2.6666666667vw, 2.5rem);
  }
}
.clinic1__item-title_odd {
  color: var(--main);
}
.clinic1__s {
  font-size: clamp(1.1875rem, 0.4038361169rem + 1.2526096033vw, 1.5625rem);
}
@media (max-width: 1000px) {
  .clinic1__s {
    font-size: clamp(1rem, 0.625rem + 1.5vw, 1.5625rem);
  }
}
.clinic1__text {
  margin-top: clamp(1.5625rem, -2.8782620042rem + 7.0981210856vw, 3.6875rem);
}
.clinic1__img {
  max-width: clamp(25rem, -15.7505219207rem + 65.1356993737vw, 44.5rem);
  width: 100%;
}
.clinic1__img_even {
  max-width: clamp(25rem, -17.448460334rem + 67.8496868476vw, 45.3125rem);
}

.clinic2_pos {
  margin-top: clamp(5rem, 0.2840909091rem + 18.8636363636vw, 15.375rem);
}
.clinic2__inner {
  max-width: 1280px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .clinic2__inner {
    padding: 0 clamp(0.9375rem, -0.0815217391rem + 4.0760869565vw, 1.875rem);
  }
}
.clinic2__title {
  row-gap: clamp(0.5rem, -0.0833333333rem + 2.3333333333vw, 1.375rem);
}
.clinic2__subtitle {
  color: #407ee6;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: clamp(1.375rem, 1.1477272727rem + 0.9090909091vw, 1.875rem);
  line-height: 1.75;
  text-align: center;
  white-space: pre-line;
  margin-top: clamp(2.5rem, 0.6534090909rem + 7.3863636364vw, 6.5625rem);
}
.clinic2__img {
  max-width: 944px;
  margin-top: clamp(2.5rem, 2.0833333333rem + 1.6666666667vw, 3.125rem);
  margin-inline: auto;
}
.clinic2__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: clamp(1.875rem, 1.375rem + 2vw, 2.625rem);
  margin-top: clamp(2.5rem, 0.375rem + 8.5vw, 5.6875rem);
}
.clinic2__item-title {
  position: relative;
  font-size: clamp(1.125rem, 0.9545454545rem + 0.6818181818vw, 1.5rem);
  line-height: 1.75;
  padding-left: clamp(1.0625rem, 0.7784090909rem + 1.1363636364vw, 1.6875rem);
}
.clinic2__item-title::before {
  content: "";
  width: 6px;
  aspect-ratio: 6/31;
  background: url(../images/icon-color-bar.svg) no-repeat 0 0/contain;
  position: absolute;
  top: 7px;
  left: 0;
}
.clinic2__item-title::after {
  content: "";
  width: 100%;
  height: 2px;
  background: var(--main);
  position: absolute;
  bottom: clamp(-0.4375rem, -0.7215909091rem + 1.1363636364vw, 0.1875rem);
  left: 0;
}
.clinic2__text {
  margin-top: 6px;
  padding-left: 19px;
}

.clinic3_pos {
  margin-top: clamp(4.375rem, -1.5056818182rem + 23.5227272727vw, 17.3125rem);
}
.clinic3__inner {
  max-width: 1414px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .clinic3__inner {
    padding: 0 clamp(0.9375rem, -0.0815217391rem + 4.0760869565vw, 1.875rem);
  }
}
.clinic3__title {
  row-gap: clamp(0.5rem, -0.0833333333rem + 2.3333333333vw, 1.375rem);
}
.clinic3__body {
  margin-top: clamp(3.125rem, 0.3333333333rem + 11.1666666667vw, 7.3125rem);
}
.clinic3__slider {
  position: relative;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .clinic3__slider {
    padding: 0;
  }
}
.clinic3__swiper {
  max-width: 1280px;
  margin-inline: auto;
}
.clinic3__img {
  height: 100%;
  aspect-ratio: 1280/780;
  -o-object-fit: cover;
     object-fit: cover;
}
.clinic3__prev, .clinic3__next {
  width: clamp(1.5rem, 0.8885869565rem + 2.4456521739vw, 2.0625rem);
  height: inherit;
  aspect-ratio: 1/1;
  top: calc(50% + 23px);
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
.clinic3__prev::after, .clinic3__next::after {
  content: "";
  width: 100%;
  aspect-ratio: 33/59;
  background-repeat: no-repeat;
  background-size: contain;
  margin: auto;
}
.clinic3__prev {
  left: 0;
}
.clinic3__prev::after {
  background-image: url(../images/icon-slider-l.svg);
}
.clinic3__next {
  right: 0;
}
.clinic3__next::after {
  background-image: url(../images/icon-slider-r.svg);
}
.clinic3__bottom {
  margin-top: 46px;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .clinic3__bottom {
    padding: 0;
  }
}
.clinic3__items {
  max-width: 1280px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(0.5rem, -0.1rem + 1.92vw, 1.1rem) clamp(0.3125rem, 0.1875rem + 0.4vw, 0.4375rem);
  margin-inline: auto;
}
.clinic3__item {
  opacity: 0.5;
}
.clinic3__item_active {
  opacity: 1;
}
.clinic3__item-img {
  height: 100%;
  aspect-ratio: 250/152;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
}

.clinic4 {
  background-color: #f2eee9;
}
.clinic4_pos {
  margin-top: clamp(3.75rem, -2.5694444444rem + 25.2777777778vw, 20.8125rem);
}
.clinic4__inner {
  max-width: 1352px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding: 97px 30px 277px;
}
@media (max-width: 1000px) {
  .clinic4__inner {
    padding: clamp(2.5rem, 0.125rem + 9.5vw, 6.0625rem) clamp(0.9375rem, -0.0815217391rem + 4.0760869565vw, 1.875rem) clamp(7.5rem, -7.2667563601rem + 30.7240704501vw, 17.3125rem);
  }
}
.clinic4__title {
  row-gap: clamp(0.5rem, 0.3333333333rem + 0.6666666667vw, 0.75rem);
}
.clinic4__body {
  background-color: var(--base);
  margin-top: 92px;
  padding: 14px clamp(0.625rem, -0.0543478261rem + 2.7173913043vw, 1.25rem) 48px;
}
.clinic4__body-inner {
  max-width: 1280px;
  margin-inline: auto;
}
.clinic4__items_2 {
  margin-top: -1px;
}
.clinic4__dot {
  font-size: clamp(1rem, 0.9431818182rem + 0.2272727273vw, 1.125rem);
  font-weight: bold;
  line-height: 2.2222222222;
  white-space: pre-line;
  text-indent: -1em;
  padding-left: 1em;
}
.clinic4__text1 {
  font-size: clamp(1rem, 0.9431818182rem + 0.2272727273vw, 1.125rem);
  line-height: 2.24;
  white-space: pre-line;
  padding-left: 1em;
}
.clinic4__text1_under-line {
  text-decoration: underline;
  -webkit-text-decoration-color: var(--text);
          text-decoration-color: var(--text);
  text-decoration-thickness: 1px;
  text-underline-offset: 9px;
}
.clinic4__text2 {
  font-size: clamp(1rem, 0.9431818182rem + 0.2272727273vw, 1.125rem);
  line-height: 2;
  white-space: pre-line;
  text-indent: -1em;
  padding-left: 1em;
}
.clinic4__text3 {
  font-size: clamp(1.125rem, 0.9545454545rem + 0.6818181818vw, 1.5rem);
  line-height: 1.8;
  white-space: pre-line;
  padding-left: 1em;
}
.clinic4__text4 {
  font-size: clamp(1rem, 0.9431818182rem + 0.2272727273vw, 1.125rem);
  line-height: 2;
  text-align: right;
}
.clinic4__subtitle-1 {
  color: var(--main);
  font-size: clamp(1.125rem, 0.9545454545rem + 0.6818181818vw, 1.5rem);
  line-height: 1.5;
  text-indent: -1em;
  padding-left: 1em;
  margin-top: 45px;
}
.clinic4__subtitle-1_long {
  font-size: clamp(1.125rem, 0.9829545455rem + 0.5681818182vw, 1.4375rem);
  margin-top: 47px;
}
.clinic4__subtitle-2 {
  color: var(--main);
  font-size: clamp(1.125rem, 0.9545454545rem + 0.6818181818vw, 1.5rem);
  line-height: 1.5;
  border-bottom: 3px solid var(--main);
  margin-top: 41px;
}

/*###################################################################
  staff（page）
###################################################################*/
.staff1_pos {
  margin-top: 34px;
}
.staff1__inner {
  max-width: 1280px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .staff1__inner {
    padding: 0 clamp(0.9375rem, -0.0815217391rem + 4.0760869565vw, 1.875rem);
  }
}
.staff1__body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  margin-top: 113px;
}
@media (max-width: 900px) {
  .staff1__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: clamp(1.875rem, 1.1956521739rem + 2.7173913043vw, 2.5rem);
  }
}
.staff1__main {
  max-width: 640px;
  width: 100%;
}
.staff1__box {
  position: relative;
  background-color: var(--main-l);
  margin-top: clamp(3.125rem, -8.4197038724rem + 20.5011389522vw, 8.75rem);
  padding: 17px 15px 23px;
}
@media (max-width: 900px) {
  .staff1__box {
    margin-top: clamp(2.1875rem, 1.1684782609rem + 4.0760869565vw, 3.125rem);
  }
}
.staff1__box::before {
  content: "";
  width: 55.3158705701%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ddebfc;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
          clip-path: polygon(0 0, 0% 100%, 100% 0);
}
.staff1__box-inner {
  max-width: 577px;
  position: relative;
  margin-inline: auto;
}
.staff1__box-title {
  font-size: clamp(1.5rem, 1.0923913043rem + 1.6304347826vw, 1.875rem);
  border-bottom: 1px solid var(--text);
  padding-bottom: 5px;
  padding-left: clamp(0rem, -1.9701086957rem + 7.8804347826vw, 1.8125rem);
}
.staff1__items {
  max-width: 517px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 8px;
  margin-top: 20px;
  margin-inline: auto;
}
.staff1__item {
  font-size: clamp(1rem, 0.9431818182rem + 0.2272727273vw, 1.125rem);
  line-height: 1.75;
}
.staff1__item_indent {
  text-indent: -5em;
  padding-left: 5em;
}
.staff1__img-area {
  max-width: 607px;
  width: 100%;
}
.staff1__img {
  max-width: 512px;
  width: 100%;
  margin-left: auto;
}
@media (max-width: 900px) {
  .staff1__img {
    margin-right: auto;
  }
}
.staff1__name-box {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  margin-top: -3px;
}
@media (max-width: 900px) {
  .staff1__name-box {
    margin-top: 20px;
  }
}
.staff1__job {
  max-width: clamp(3.75rem, 0.7608695652rem + 11.9565217391vw, 6.5rem);
  width: 100%;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  background-color: var(--main);
  color: var(--base);
  font-size: clamp(1.125rem, 0.7173913043rem + 1.6304347826vw, 1.5rem);
  font-weight: bold;
  border-radius: 50%;
}
.staff1__name {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: clamp(1.25rem, -0.1766304348rem + 5.7065217391vw, 2.5625rem);
     -moz-column-gap: clamp(1.25rem, -0.1766304348rem + 5.7065217391vw, 2.5625rem);
          column-gap: clamp(1.25rem, -0.1766304348rem + 5.7065217391vw, 2.5625rem);
  font-weight: 600;
}
@media (max-width: 1280px) {
  .staff1__name {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    row-gap: 10px;
  }
}
@media (max-width: 900px) {
  .staff1__name {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.staff1__name-jp {
  font-size: clamp(1.5625rem, 0.5434782609rem + 4.0760869565vw, 2.5rem);
}
.staff1__name-en {
  color: #b7c7e3;
  font-size: clamp(1.25rem, 0.5706521739rem + 2.7173913043vw, 1.875rem);
}

.staff2 {
  position: relative;
}
.staff2::after {
  content: "";
  width: 100%;
  height: clamp(11.5625rem, 0.2061170213rem + 45.4255319149vw, 38.25rem);
  position: absolute;
  bottom: 0;
  z-index: -1;
  background: url(../images/staff2-bg.webp) no-repeat center center/cover;
  background-image: -webkit-image-set(url(../images/staff2-bg.webp) 1x, url(../images/staff2-bg@2x.webp) 2x);
  background-image: image-set(url(../images/staff2-bg.webp) 1x, url(../images/staff2-bg@2x.webp) 2x);
}
.staff2_pos {
  margin-top: clamp(4.375rem, -0.5718085106rem + 19.7872340426vw, 16rem);
}
.staff2__inner {
  max-width: 1280px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
  padding-bottom: 119px;
}
@media (max-width: 1480px) {
  .staff2__inner {
    padding: 0 clamp(0.9375rem, -0.0815217391rem + 4.0760869565vw, 1.875rem) clamp(3.125rem, 1.289893617rem + 7.3404255319vw, 7.4375rem);
  }
}
.staff2__img {
  margin-top: clamp(2.5rem, 1.125rem + 5.5vw, 4.5625rem);
}

.staff-blank {
  height: clamp(7.5rem, -2.5357142857rem + 40.1428571429vw, 42.625rem);
}

/*###################################################################
  medical（page）
###################################################################*/
.med-col1 {
  max-width: 1280px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  margin-inline: auto;
}
@media (max-width: 1000px) {
  .med-col1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 30px;
  }
}
.med-col1__box {
  max-width: 642px;
  width: 100%;
}
.med-col1__title {
  color: var(--main);
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: clamp(1.25rem, 0.9659090909rem + 1.1363636364vw, 1.875rem);
  font-weight: 600;
  line-height: 1.75;
  white-space: pre-line;
  border-bottom: 1px solid var(--main);
  padding-bottom: clamp(0.5625rem, 0.4204545455rem + 0.5681818182vw, 0.875rem);
}
.med-col1__text {
  font-size: clamp(1rem, 0.9431818182rem + 0.2272727273vw, 1.125rem);
  line-height: 2.2222222222;
  white-space: pre-line;
  margin-top: clamp(1.25rem, 1.0227272727rem + 0.9090909091vw, 1.75rem);
}
.med-col1__img {
  max-width: 601px;
  width: 100%;
  margin-top: 15px;
}
@media (max-width: 1000px) {
  .med-col1__img {
    margin-top: 0;
  }
}

.med-col2 {
  max-width: 1280px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  margin-inline: auto;
}
@media (max-width: 1000px) {
  .med-col2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 30px;
  }
}
.med-col2__box {
  max-width: 756px;
  width: 100%;
}
.med-col2__title {
  color: var(--main);
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: clamp(1.25rem, 0.9659090909rem + 1.1363636364vw, 1.875rem);
  font-weight: 600;
  line-height: 1.75;
  white-space: pre-line;
  border-bottom: 1px solid var(--main);
  padding-bottom: clamp(0.5625rem, 0.4204545455rem + 0.5681818182vw, 0.875rem);
}
.med-col2__text {
  font-size: clamp(1rem, 0.9431818182rem + 0.2272727273vw, 1.125rem);
  line-height: 2.2222222222;
  white-space: pre-line;
  margin-top: clamp(1.25rem, 1.0227272727rem + 0.9090909091vw, 1.75rem);
}
.med-col2__img {
  max-width: 475px;
  width: 100%;
  margin-top: 21px;
}
@media (max-width: 1000px) {
  .med-col2__img {
    margin-top: 0;
  }
}

.med-col3 {
  max-width: 1280px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  margin-inline: auto;
}
@media (max-width: 1000px) {
  .med-col3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 30px;
  }
}
.med-col3__box {
  max-width: 642px;
  width: 100%;
}
.med-col3__text {
  font-size: clamp(1rem, 0.9431818182rem + 0.2272727273vw, 1.125rem);
  line-height: 2.2222222222;
  white-space: pre-line;
}
.med-col3__img {
  max-width: 601px;
  width: 100%;
  margin-top: 2px;
}
@media (max-width: 1000px) {
  .med-col3__img {
    margin-top: 0;
  }
}

.med-col4 {
  max-width: 1280px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  margin-inline: auto;
}
@media (max-width: 1000px) {
  .med-col4 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 30px;
  }
}
.med-col4_r {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 1000px) {
  .med-col4_r {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.med-col4__box {
  max-width: 756px;
  width: 100%;
}
.med-col4__title {
  color: var(--main);
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: clamp(1.25rem, 0.9659090909rem + 1.1363636364vw, 1.875rem);
  font-weight: 600;
  line-height: 1.75;
  white-space: pre-line;
  border-bottom: 1px solid var(--main);
  padding-bottom: clamp(0.5625rem, 0.4204545455rem + 0.5681818182vw, 0.875rem);
}
.med-col4__text {
  font-size: clamp(1rem, 0.9431818182rem + 0.2272727273vw, 1.125rem);
  line-height: 2.2222222222;
  white-space: pre-line;
  margin-top: clamp(1.25rem, 1.0227272727rem + 0.9090909091vw, 1.75rem);
}
.med-col4__img {
  max-width: 475px;
  width: 100%;
  margin-top: 20px;
}
@media (max-width: 1000px) {
  .med-col4__img {
    margin-top: 0;
  }
}

.med-consult {
  position: relative;
  background-color: #8fadd7;
}
.med-consult::after {
  content: "";
  width: clamp(20.625rem, 14.9305555556rem + 22.7777777778vw, 36rem);
  aspect-ratio: 576/444;
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(../images/med-consult-deco.webp) no-repeat center center/cover;
  background-image: -webkit-image-set(url(../images/med-consult-deco.webp) 1x, url(../images/med-consult-deco@2x.webp) 2x);
  background-image: image-set(url(../images/med-consult-deco.webp) 1x, url(../images/med-consult-deco@2x.webp) 2x);
}
.med-consult__inner {
  max-width: 1280px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding: 6px 30px 68px;
}
@media (max-width: 1000px) {
  .med-consult__inner {
    padding: 6px clamp(0.9375rem, -0.0815217391rem + 4.0760869565vw, 1.875rem) clamp(3.125rem, 2.375rem + 3vw, 4.25rem);
  }
}
.med-consult__en {
  color: var(--main-l);
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: clamp(2.125rem, 1.0454545455rem + 4.3181818182vw, 4.5rem);
  text-align: center;
}
.med-consult__body {
  min-height: 395px;
  position: relative;
  z-index: 1;
  background-color: var(--base);
  margin-top: calc(clamp(0.3125rem, 0.1420454545rem + 0.6818181818vw, 0.6875rem) * -1);
  padding: 29px 20px 30px;
}
.med-consult__body-inner {
  max-width: 1178px;
  margin-inline: auto;
}
.med-consult__title {
  height: clamp(3.4375rem, 3.2102272727rem + 0.9090909091vw, 3.9375rem);
  display: grid;
  place-items: center;
  background-color: var(--main);
  color: var(--base);
  font-size: clamp(1.25rem, 1.1363636364rem + 0.4545454545vw, 1.5rem);
}
.med-consult__items {
  display: grid;
  gap: 13px 15px;
  margin-top: clamp(1.5625rem, 0.5965909091rem + 3.8636363636vw, 3.6875rem);
  margin-inline: auto;
}
.med-consult__item {
  font-size: clamp(1rem, 0.9431818182rem + 0.2272727273vw, 1.125rem);
  line-height: 1.75;
  text-indent: -1em;
  padding-left: 1em;
}
.med-consult__item::first-letter {
  color: #8fadd7;
  font-size: 10px;
  vertical-align: clamp(0.125rem, 0.0965909091rem + 0.1136363636vw, 0.1875rem);
}
.med-consult__check-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  font-size: clamp(1rem, 0.9431818182rem + 0.2272727273vw, 1.125rem);
  line-height: 1.75;
}
.med-consult__check-item::before {
  content: "";
  min-width: 20px;
  aspect-ratio: 1/1;
  background: url(../images/icon-med-check.svg) no-repeat 0 0/contain;
  margin-top: clamp(0.375rem, 0.3181818182rem + 0.2272727273vw, 0.5rem);
}

.med-fee {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 35px;
  font-size: clamp(1rem, 0.9061913696rem + 0.3752345216vw, 1.125rem);
  line-height: 1.75;
}
.med-fee__table-wrapper {
  overflow-x: auto;
}
.med-fee__table-wrapper.is-scrollable {
  cursor: -webkit-grab;
  cursor: grab;
}
.med-fee__table-wrapper.is-scrollable:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.med-fee__table {
  min-width: 701px;
  width: 100%;
  border: 1px solid var(--accent);
  margin-top: 3px;
}
.med-fee__th {
  height: 62px;
  background-color: #c6b399;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  border: 1px solid var(--accent);
}
.med-fee__td {
  height: 62px;
  text-align: center;
  vertical-align: middle;
  border: 1px solid var(--accent);
}
.med-fee__td_price {
  text-align: left;
  padding-left: clamp(0.625rem, -0.4068949343rem + 4.1275797373vw, 2rem);
}
.med-fee__price {
  width: 49.9%;
}
.med-fee__note {
  text-indent: -1em;
  margin-top: 3px;
  padding-left: 1em;
}

.med-risk {
  min-height: 336px;
  background-color: var(--main-l);
  padding: clamp(1.875rem, 1.1079545455rem + 3.0681818182vw, 3.5625rem) clamp(0.75rem, -0.9051724138rem + 3.4482758621vw, 1.25rem) 30px;
}
.med-risk__inner {
  max-width: 1004px;
  margin-inline: auto;
}
.med-risk__title {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: clamp(1.25rem, 1.1363636364rem + 0.4545454545vw, 1.5rem);
  font-weight: 600;
  text-align: center;
}
.med-risk__subtitle {
  font-size: clamp(1.125rem, 1.0681818182rem + 0.2272727273vw, 1.25rem);
  font-weight: bold;
  margin-top: 27px;
}
.med-risk__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 9px;
  margin-top: 12px;
}
.med-risk__items_no-title {
  margin-top: 22px;
}
.med-risk__item {
  font-size: clamp(1rem, 0.9431818182rem + 0.2272727273vw, 1.125rem);
  line-height: 1.75;
  text-indent: -1em;
  padding-left: 1em;
}

.med1_pos {
  margin-top: 27px;
}

.med1-1__inner {
  max-width: 1280px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .med1-1__inner {
    padding: 0 clamp(0.9375rem, -0.0815217391rem + 4.0760869565vw, 1.875rem);
  }
}
.med1-1__title {
  row-gap: clamp(0.1875rem, -0.2102272727rem + 1.5909090909vw, 1.0625rem);
}
.med1-1__text {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: clamp(1.125rem, 0.9545454545rem + 0.6818181818vw, 1.5rem);
  font-weight: 600;
  line-height: 1.75;
  text-align: center;
  white-space: pre-line;
  margin-top: clamp(2.5rem, 1.2083333333rem + 5.1666666667vw, 4.4375rem);
}
.med1-1__consult {
  margin-top: clamp(2.5rem, 0.875rem + 6.5vw, 4.9375rem);
}
.med1-1__consult::after {
  width: clamp(20.625rem, 12.2916666667rem + 33.3333333333vw, 43.125rem);
}
.med1-1__consult-inner {
  padding-bottom: 25px;
}
.med1-1__consult-body {
  padding-bottom: 26px;
}
.med1-1__items {
  max-width: clamp(33.125rem, 10.4575587084rem + 47.1624266145vw, 48.1875rem);
  grid-template-columns: 1fr clamp(10rem, 3.8858695652rem + 24.4565217391vw, 15.625rem);
  margin-top: clamp(1.5625rem, 1.25rem + 1.25vw, 2.25rem);
}
.med1-1__consult-text {
  max-width: 865px;
  font-size: clamp(1rem, 0.9431818182rem + 0.2272727273vw, 1.125rem);
  text-align: right;
  margin-top: 14px;
  margin-inline: auto;
}
.med1-1__col {
  margin-top: clamp(3.125rem, 0rem + 12.5vw, 10rem);
}
.med1-1__col-title {
  border: none;
}
.med1-1__col-img {
  margin-top: 0;
}

.med1-2_pos {
  margin-top: clamp(3.75rem, 1.4204545455rem + 9.3181818182vw, 8.875rem);
  padding-bottom: clamp(7.5rem, -2.5535714286rem + 40.2142857143vw, 42.6875rem);
}
.med1-2__inner {
  max-width: 1280px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .med1-2__inner {
    padding: 0 clamp(0.9375rem, -0.0815217391rem + 4.0760869565vw, 1.875rem);
  }
}
.med1-2__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: clamp(3.125rem, 0.375rem + 11vw, 7.25rem);
  margin-top: clamp(2.5rem, 1.375rem + 4.5vw, 4.1875rem);
}

.med2_pos {
  margin-top: 27px;
  padding-bottom: clamp(7.5rem, -4.75rem + 49vw, 53.4375rem);
}
.med2__consult {
  margin-top: clamp(2.5rem, -1.1666666667rem + 14.6666666667vw, 8rem);
}
.med2__items {
  max-width: 916px;
  grid-template-columns: 1fr clamp(17.5rem, 5.0162337662rem + 25.974025974vw, 21.25rem);
  margin-top: clamp(1.5625rem, 0.6534090909rem + 3.6363636364vw, 3.5625rem);
}
@media (max-width: 768px) {
  .med2__items {
    max-width: 350px;
    grid-template-columns: 1fr;
  }
}
.med2__inner {
  max-width: 1280px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .med2__inner {
    padding: 0 clamp(0.9375rem, -0.0815217391rem + 4.0760869565vw, 1.875rem);
  }
}

.med2-1__title {
  row-gap: clamp(0.1875rem, -0.2102272727rem + 1.5909090909vw, 1.0625rem);
}
.med2-1__inner {
  max-width: 1189px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .med2-1__inner {
    padding: 0 clamp(0.9375rem, -0.0815217391rem + 4.0760869565vw, 1.875rem);
  }
}
.med2-1__subtitle {
  color: var(--main);
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: clamp(1.25rem, 0.9659090909rem + 1.1363636364vw, 1.875rem);
  line-height: 1.75;
  text-align: center;
  white-space: pre-line;
  margin-top: clamp(2.5rem, 1.7613636364rem + 2.9545454545vw, 4.125rem);
}
.med2-1__text {
  margin-top: clamp(1.25rem, 0.1666666667rem + 4.3333333333vw, 2.875rem);
}

.med2-2_pos {
  margin-top: clamp(1.875rem, -4.2916666667rem + 24.6666666667vw, 11.125rem);
}

.med2-3 {
  position: relative;
  background-color: #f2eee8;
}
.med2-3::before {
  content: "";
  width: 29.53125%;
  aspect-ratio: 378/258;
  position: absolute;
  right: 0;
  bottom: 0;
  background: url(../images/med2-3-deco.webp) no-repeat center center/cover;
  background-image: -webkit-image-set(url(../images/med2-3-deco.webp) 1x, url(../images/med2-3-deco@2x.webp) 2x);
  background-image: image-set(url(../images/med2-3-deco.webp) 1x, url(../images/med2-3-deco@2x.webp) 2x);
}
.med2-3::after {
  content: "";
  width: 98%;
  height: 93%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 2px solid #9e8868;
}
.med2-3_pos {
  margin-top: clamp(3.125rem, 0.0231481481rem + 12.4074074074vw, 11.5rem);
  padding: 42px 20px 78px;
}
.med2-3__title {
  max-width: 1202px;
  height: 63px;
  display: grid;
  place-items: center;
  background-color: #9e8868;
  color: var(--base);
  font-size: clamp(1.25rem, 1.1363636364rem + 0.4545454545vw, 1.5rem);
  margin-inline: auto;
}
.med2-3__items {
  max-width: 704px;
  display: grid;
  grid-template-columns: 1fr 225px;
  gap: 13px 15px;
  margin-top: clamp(1.5625rem, 0.7386363636rem + 3.2954545455vw, 3.375rem);
  margin-inline: auto;
}
@media (max-width: 768px) {
  .med2-3__items {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    grid-template-columns: 1fr;
  }
}
.med2-3__item {
  font-size: clamp(1rem, 0.9431818182rem + 0.2272727273vw, 1.125rem);
  line-height: 1.75;
  text-indent: -1em;
  padding-left: 1em;
}
.med2-3__item::first-letter {
  color: #9e8868;
  font-size: 10px;
}

.med3__title {
  row-gap: clamp(0.1875rem, -0.2102272727rem + 1.5909090909vw, 1.0625rem);
}

.med3-1_pos {
  margin-top: 27px;
}
.med3-1__inner {
  max-width: 1280px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .med3-1__inner {
    padding: 0 clamp(0.9375rem, -0.0815217391rem + 4.0760869565vw, 1.875rem);
  }
}
.med3-1__col {
  margin-top: clamp(3.125rem, -1.3333333333rem + 17.8333333333vw, 9.8125rem);
}
.med3-1__consult {
  margin-top: clamp(3.125rem, 1.625rem + 6vw, 5.375rem);
}
.med3-1__items {
  max-width: 772px;
  grid-template-columns: 1fr 314px;
}
@media (max-width: 768px) {
  .med3-1__items {
    max-width: 350px;
    grid-template-columns: 1fr;
  }
}

.med3-2_pos {
  margin-top: clamp(4.375rem, 0.5113636364rem + 15.4545454545vw, 12.875rem);
}
.med3-2__inner {
  max-width: 1280px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .med3-2__inner {
    padding: 0 clamp(0.9375rem, -0.0815217391rem + 4.0760869565vw, 1.875rem);
  }
}
.med3-2__col {
  margin-top: clamp(3.125rem, 0rem + 12.5vw, 7.8125rem);
}
.med3-2__pmtc {
  position: relative;
  background-color: var(--main);
  color: var(--base);
  margin-top: clamp(3.75rem, 0.2840909091rem + 13.8636363636vw, 11.375rem);
}
.med3-2__pmtc::before, .med3-2__pmtc::after {
  content: "";
  width: 100%;
  height: 21px;
  position: absolute;
  background: url(../images/med3-deco-1.webp) no-repeat center center/cover;
  background-image: -webkit-image-set(url(../images/med3-deco-1.webp) 1x, url(../images/med3-deco-1@2x.webp) 2x);
  background-image: image-set(url(../images/med3-deco-1.webp) 1x, url(../images/med3-deco-1@2x.webp) 2x);
}
.med3-2__pmtc::before {
  top: -1px;
}
.med3-2__pmtc::after {
  bottom: -1px;
}
.med3-2__pmtc-inner {
  max-width: 1280px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding: 72px 30px 48px;
}
@media (max-width: 1000px) {
  .med3-2__pmtc-inner {
    padding: clamp(2.8125rem, 1.6875rem + 4.5vw, 4.5rem) clamp(0.9375rem, -0.0815217391rem + 4.0760869565vw, 1.875rem) 48px;
  }
}
.med3-2__pmtc-title {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: clamp(1.5rem, 1.0454545455rem + 1.8181818182vw, 2.5rem);
  line-height: 1.5;
  text-align: center;
  border-bottom: 1px solid var(--base);
  padding-bottom: 14px;
}
.med3-2__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.9375rem, -0.0815217391rem + 4.0760869565vw, 1.875rem) clamp(0.625rem, -0.4378302348rem + 2.2113502935vw, 1.33125rem);
  margin-top: clamp(1.875rem, 0.4583333333rem + 5.6666666667vw, 4rem);
}
@media (max-width: 768px) {
  .med3-2__items {
    max-width: 600px;
    grid-template-columns: repeat(2, 1fr);
    margin-inline: auto;
  }
}
.med3-2__text {
  text-align: center;
  margin-top: clamp(1.875rem, 0.9583333333rem + 3.6666666667vw, 3.25rem);
}

.med3-3_pos {
  margin-top: clamp(4.375rem, -0.0852272727rem + 17.8409090909vw, 14.1875rem);
}
.med3-3__inner {
  max-width: 1280px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .med3-3__inner {
    padding: 0 clamp(0.9375rem, -0.0815217391rem + 4.0760869565vw, 1.875rem);
  }
}
.med3-3__col {
  margin-top: clamp(3.125rem, 0.2083333333rem + 11.6666666667vw, 7.5rem);
}
.med3-3__col-title {
  margin-top: clamp(1.875rem, 1.4583333333rem + 1.6666666667vw, 2.5rem);
}

.med3-4_pos {
  margin-top: clamp(4.375rem, 0.1420454545rem + 16.9318181818vw, 13.6875rem);
  padding-bottom: clamp(6.25rem, -2.2804054054rem + 34.1216216216vw, 37.8125rem);
}
.med3-4__inner {
  max-width: 1280px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .med3-4__inner {
    padding: 0 clamp(0.9375rem, -0.0815217391rem + 4.0760869565vw, 1.875rem);
  }
}
.med3-4__text-1 {
  text-align: center;
  margin-top: clamp(2.5rem, 0.7102272727rem + 7.1590909091vw, 6.4375rem);
}
@media (max-width: 768px) {
  .med3-4__text-1 {
    text-align: left;
  }
}
.med3-4__wrapper {
  max-width: 1828px;
  position: relative;
  margin-top: clamp(2.1875rem, 0.4261363636rem + 7.0454545455vw, 6.0625rem);
  margin-inline: auto;
  padding: clamp(1.125rem, 0.3842592593rem + 2.962962963vw, 3.625rem) clamp(0.9375rem, -0.2662037037rem + 4.8148148148vw, 5rem) clamp(1.875rem, 0.4305555556rem + 5.7777777778vw, 6.75rem);
}
.med3-4__wrapper::before {
  content: "";
  width: clamp(6.25rem, -3.3240740741rem + 38.2962962963vw, 38.5625rem);
  aspect-ratio: 617/582;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: url(../images/med3-4-deco-1.webp) no-repeat center center/cover;
  background-image: -webkit-image-set(url(../images/med3-4-deco-1.webp) 1x, url(../images/med3-4-deco-1@2x.webp) 2x);
  background-image: image-set(url(../images/med3-4-deco-1.webp) 1x, url(../images/med3-4-deco-1@2x.webp) 2x);
}
.med3-4__wrapper::after {
  content: "";
  width: clamp(4.25rem, -2.0462962963rem + 25.1851851852vw, 25.5rem);
  aspect-ratio: 408/456;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  background: url(../images/med3-4-deco-2.webp) no-repeat center center/cover;
  background-image: -webkit-image-set(url(../images/med3-4-deco-2.webp) 1x, url(../images/med3-4-deco-2@2x.webp) 2x);
  background-image: image-set(url(../images/med3-4-deco-2.webp) 1x, url(../images/med3-4-deco-2@2x.webp) 2x);
}
.med3-4__body {
  max-width: 1407px;
  background-color: var(--main);
  margin-inline: auto;
  padding: clamp(1.875rem, 0.9659090909rem + 3.6363636364vw, 3.875rem) clamp(0.625rem, 0.3869047619rem + 0.9523809524vw, 1.25rem) clamp(2.1875rem, 1.4772727273rem + 2.8409090909vw, 3.75rem);
}
.med3-4__img {
  max-width: 1120px;
  margin-inline: auto;
}
.med3-4__text-2 {
  color: var(--base);
  font-size: clamp(0.9375rem, 0.8522727273rem + 0.3409090909vw, 1.125rem);
  text-align: center;
  margin-top: clamp(1.25rem, 0.2556818182rem + 3.9772727273vw, 3.4375rem);
}
@media (max-width: 768px) {
  .med3-4__text-2 {
    text-align: left;
  }
}

.med4__title {
  row-gap: clamp(0.1875rem, -0.2102272727rem + 1.5909090909vw, 1.0625rem);
}

.med4-1_pos {
  margin-top: 27px;
}
.med4-1__inner-1 {
  max-width: 1280px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .med4-1__inner-1 {
    padding: 0 clamp(0.9375rem, -0.0815217391rem + 4.0760869565vw, 1.875rem);
  }
}
.med4-1__col {
  margin-top: clamp(3.125rem, -1.3333333333rem + 17.8333333333vw, 9.8125rem);
}
.med4-1__consult {
  margin-top: clamp(3.125rem, 1.625rem + 6vw, 5.375rem);
}
.med4-1__items {
  max-width: 772px;
  grid-template-columns: 1fr 314px;
}
@media (max-width: 768px) {
  .med4-1__items {
    max-width: 350px;
    grid-template-columns: 1fr;
  }
}
.med4-1__kids-outer {
  max-width: 1648px;
  margin-top: clamp(2.5rem, 1.6666666667rem + 3.3333333333vw, 3.75rem);
  margin-inline: auto;
}
.med4-1__inner-2 {
  max-width: 1629px;
  position: relative;
  margin-left: auto;
  padding: 70px clamp(4.375rem, -6.9818869427rem + 18.152866242vw, 11.5rem) 77px clamp(4.375rem, -5.0890724522rem + 15.127388535vw, 10.3125rem);
}
@media (max-width: 1000px) {
  .med4-1__inner-2 {
    padding: clamp(1.25rem, -0.8333333333rem + 8.3333333333vw, 4.375rem) clamp(1.25rem, -0.8333333333rem + 8.3333333333vw, 4.375rem) clamp(1.5625rem, -0.6041666667rem + 8.6666666667vw, 4.8125rem);
  }
}
.med4-1__inner-2::before {
  content: "";
  width: clamp(6.25rem, -1.2154190399rem + 29.8616761595vw, 29.1875rem);
  aspect-ratio: 467/416;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: url(../images/med4-1-deco-1.webp) no-repeat center center/cover;
  background-image: -webkit-image-set(url(../images/med4-1-deco-1.webp) 1x, url(../images/med4-1-deco-1@2x.webp) 2x);
  background-image: image-set(url(../images/med4-1-deco-1.webp) 1x, url(../images/med4-1-deco-1@2x.webp) 2x);
}
.med4-1__inner-2::after {
  content: "";
  width: clamp(4.25rem, -2.2796989422rem + 26.1187957689vw, 24.3125rem);
  aspect-ratio: 389/379;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  background: url(../images/med4-1-deco-2.webp) no-repeat center center/cover;
  background-image: -webkit-image-set(url(../images/med4-1-deco-2.webp) 1x, url(../images/med4-1-deco-2@2x.webp) 2x);
  background-image: image-set(url(../images/med4-1-deco-2.webp) 1x, url(../images/med4-1-deco-2@2x.webp) 2x);
}
.med4-1__body {
  position: relative;
  background-color: var(--accent);
  padding: clamp(2.125rem, 1.7083333333rem + 1.6666666667vw, 2.75rem) 15px clamp(2.5rem, 1.625rem + 3.5vw, 3.8125rem);
}
.med4-1__body::before, .med4-1__body::after {
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.med4-1__body::before {
  width: 32.109375%;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
          clip-path: polygon(0 0, 0% 100%, 100% 0);
  background-color: rgba(176, 155, 125, 0.7);
}
.med4-1__body::after {
  width: 48.984375%;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
          clip-path: polygon(0 0, 0% 100%, 100% 100%);
  background-color: rgba(176, 155, 125, 0.9);
}
.med4-1__body-inner {
  max-width: 1141px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  position: relative;
  z-index: 1;
  margin-inline: auto;
}
@media (max-width: 1000px) {
  .med4-1__body-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 30px;
  }
}
.med4-1__box {
  max-width: 656px;
  width: 100%;
  color: var(--base);
}
.med4-1__box-title {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: clamp(1.25rem, 0.9659090909rem + 1.1363636364vw, 1.875rem);
  font-weight: 600;
  line-height: 1.75;
  white-space: pre-line;
  border-bottom: 1px solid var(--base);
  padding-bottom: 8px;
}
.med4-1__box-text {
  font-size: clamp(1rem, 0.9431818182rem + 0.2272727273vw, 1.125rem);
  line-height: 2.2222222222;
  white-space: pre-line;
  margin-top: clamp(1.25rem, 0.8806818182rem + 1.4772727273vw, 2.0625rem);
}
.med4-1__img {
  max-width: 400px;
  width: 100%;
  margin-top: 10px;
}

.med4-2_pos {
  margin-top: clamp(4.375rem, 1.4204545455rem + 11.8181818182vw, 10.875rem);
  padding-bottom: clamp(7.5rem, -0.78125rem + 33.125vw, 34rem);
}
.med4-2__inner {
  max-width: 1280px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .med4-2__inner {
    padding: 0 clamp(0.9375rem, -0.0815217391rem + 4.0760869565vw, 1.875rem);
  }
}
.med4-2__subtitle {
  color: var(--main);
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: clamp(1.125rem, 0.7840909091rem + 1.3636363636vw, 1.875rem);
  font-weight: 600;
  line-height: 1.75;
  text-align: center;
  white-space: pre-line;
  margin-top: clamp(2.5rem, -0.375rem + 11.5vw, 6.8125rem);
}
.med4-2__deco {
  position: relative;
}
.med4-2__deco::before, .med4-2__deco::after {
  content: "";
  width: clamp(1.25rem, 0.4261363636rem + 3.2954545455vw, 3.0625rem);
  aspect-ratio: 49/48;
  position: absolute;
  bottom: -6px;
}
.med4-2__deco::before {
  left: calc(clamp(1.25rem, -0.2556818182rem + 6.0227272727vw, 4.5625rem) * -1);
  background: url(../images/icon-title-deco-l.svg) no-repeat 0 0/contain;
}
.med4-2__deco::after {
  right: calc(clamp(1.25rem, -0.1988636364rem + 5.7954545455vw, 4.4375rem) * -1);
  background: url(../images/icon-title-deco-r.svg) no-repeat 0 0/contain;
}
.med4-2__col {
  margin-top: clamp(2.5rem, 0.4166666667rem + 8.3333333333vw, 5.625rem);
}
.med4-2__body {
  position: relative;
  background-color: var(--main);
  margin-top: clamp(3.75rem, -0.1420454545rem + 15.5681818182vw, 12.3125rem);
  padding: 12px 15px 35px;
}
@media (max-width: 768px) {
  .med4-2__body {
    padding: 30px 15px 35px;
  }
}
.med4-2__body::before, .med4-2__body::after {
  content: "";
  position: absolute;
  left: 0;
}
.med4-2__body::before {
  width: 42.5%;
  height: 100%;
  top: 0;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
          clip-path: polygon(0 0, 0% 100%, 100% 0);
  background-color: rgba(199, 215, 241, 0.4);
}
.med4-2__body::after {
  width: 26.953125%;
  height: 59.5%;
  bottom: 0;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
          clip-path: polygon(0 0, 0% 100%, 100% 100%);
  background-color: rgba(199, 215, 241, 0.4);
}
.med4-2__body-inner {
  max-width: 1112px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  position: relative;
  z-index: 1;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .med4-2__body-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 30px;
  }
}
.med4-2__box {
  max-width: 751px;
  width: 100%;
  color: var(--base);
}
.med4-2__box-title {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: clamp(1.25rem, 0.9659090909rem + 1.1363636364vw, 1.875rem);
  font-weight: 600;
  line-height: 1.75;
  white-space: pre-line;
  border-bottom: 1px solid var(--base);
  padding-bottom: 8px;
}
.med4-2__box-text {
  font-size: clamp(1rem, 0.9431818182rem + 0.2272727273vw, 1.125rem);
  line-height: 2.2222222222;
  white-space: pre-line;
  margin-top: clamp(1.25rem, 0.8806818182rem + 1.4772727273vw, 2.0625rem);
}
.med4-2__img {
  max-width: 301px;
  width: 100%;
  margin-top: 10px;
}

.med4-3_pos {
  margin-top: clamp(4.375rem, 1.25rem + 12.5vw, 11.25rem);
}
.med4-3__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 40px;
  margin-top: 37px;
}
.med4-3__item {
  background-color: #f1f6fd;
  padding-top: 35px;
  padding-left: 30px;
}
@media (max-width: 900px) {
  .med4-3__item {
    padding: 35px 15px 40px;
  }
}
.med4-3__item-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
@media (max-width: 900px) {
  .med4-3__item-inner {
    max-width: 700px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 30px;
    margin-inline: auto;
  }
}
.med4-3__box {
  max-width: 723px;
  width: 100%;
}
.med4-3__box-title {
  color: var(--main);
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: clamp(1.25rem, 0.9659090909rem + 1.1363636364vw, 1.875rem);
  font-weight: 600;
  line-height: 1.75;
  white-space: pre-line;
  border-bottom: 1px solid var(--main);
  padding-bottom: clamp(0.5625rem, 0.3636363636rem + 0.7954545455vw, 1rem);
}
.med4-3__box-text {
  font-size: clamp(1rem, 0.9431818182rem + 0.2272727273vw, 1.125rem);
  line-height: 2.2222222222;
  white-space: pre-line;
  margin-top: clamp(1.25rem, 1.0795454545rem + 0.6818181818vw, 1.625rem);
}
.med4-3__img {
  max-width: 473px;
  width: 100%;
  margin-top: 15px;
}

.med5__title {
  row-gap: clamp(0.1875rem, -0.2102272727rem + 1.5909090909vw, 1.0625rem);
}

.med5-1_pos {
  margin-top: 27px;
}
.med5-1__inner {
  max-width: 1280px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .med5-1__inner {
    padding: 0 clamp(0.9375rem, -0.0815217391rem + 4.0760869565vw, 1.875rem);
  }
}
.med5-1__col {
  margin-top: clamp(3.125rem, -1.3333333333rem + 17.8333333333vw, 9.8125rem);
}
.med5-1__consult {
  margin-top: clamp(3.125rem, 1.625rem + 6vw, 5.375rem);
}
.med5-1__items {
  max-width: 772px;
  grid-template-columns: 1fr 314px;
}
@media (max-width: 768px) {
  .med5-1__items {
    max-width: 350px;
    grid-template-columns: 1fr;
  }
}

.med5-2_pos {
  margin-top: clamp(4.375rem, 0.2556818182rem + 16.4772727273vw, 13.4375rem);
}
.med5-2__inner {
  max-width: 1280px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 1000px) {
  .med5-2__inner {
    max-width: 800px;
    padding: 0 clamp(0.9375rem, -0.0815217391rem + 4.0760869565vw, 1.875rem);
  }
}
.med5-2__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: clamp(2.5rem, 2.0416666667rem + 1.8333333333vw, 3.1875rem);
  margin-top: clamp(2.8125rem, 1.5208333333rem + 5.1666666667vw, 4.75rem);
}
.med5-2__item {
  background-color: #f1f6fd;
  padding-top: 35px;
  padding-left: 30px;
}
@media (max-width: 1000px) {
  .med5-2__item {
    padding: 35px 15px 30px;
  }
}
.med5-2__item-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
@media (max-width: 1000px) {
  .med5-2__item-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 30px;
  }
}
.med5-2__box {
  max-width: 610px;
  width: 100%;
  padding-bottom: 30px;
}
@media (max-width: 1000px) {
  .med5-2__box {
    padding-bottom: 0;
  }
}
.med5-2__box_long {
  max-width: 616px;
}
.med5-2__item-title {
  color: var(--main);
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: clamp(1.25rem, 0.9659090909rem + 1.1363636364vw, 1.875rem);
  font-weight: 600;
  line-height: 1.75;
  white-space: pre-line;
  border-bottom: 1px solid var(--main);
  padding-bottom: clamp(0.5625rem, 0.3636363636rem + 0.7954545455vw, 1rem);
}
.med5-2__item-title-s {
  font-size: clamp(1.0375rem, 0.7988636364rem + 0.9545454545vw, 1.5625rem);
}
.med5-2__text {
  margin-top: clamp(1.25rem, 1.0795454545rem + 0.6818181818vw, 1.625rem);
}
.med5-2__table-area {
  max-width: 534px;
  width: 100%;
  position: relative;
  margin-top: 11px;
  padding-right: clamp(1.5625rem, -0.1375rem + 6.8vw, 2.625rem);
  padding-bottom: clamp(1.375rem, 0.375rem + 4vw, 2rem);
}
@media (max-width: 1000px) {
  .med5-2__table-area {
    margin-top: 0;
  }
}
.med5-2__table-area::after {
  content: "";
  width: clamp(19.375rem, 5.975rem + 53.6vw, 27.75rem);
  height: clamp(18.5625rem, 16.2625rem + 9.2vw, 20rem);
  position: absolute;
  right: 0;
  bottom: 0;
  background: url(../images/med5-2-deco.webp) no-repeat center center/cover;
  background-image: -webkit-image-set(url(../images/med5-2-deco.webp) 1x, url(../images/med5-2-deco@2x.webp) 2x);
  background-image: image-set(url(../images/med5-2-deco.webp) 1x, url(../images/med5-2-deco@2x.webp) 2x);
}
.med5-2__dl {
  max-width: 493px;
  width: 100%;
  display: grid;
  grid-template-columns: clamp(9.375rem, 1.075rem + 33.2vw, 14.5625rem) 1fr;
  position: relative;
  z-index: 1;
  font-size: clamp(1.125rem, 0.925rem + 0.8vw, 1.25rem);
  border: 1px solid var(--main);
}
.med5-2__dt {
  background-color: var(--main);
  color: var(--base);
  font-weight: 500;
  padding: 1.2375rem 0 1.2375rem clamp(0.625rem, -3.475rem + 16.4vw, 3.1875rem);
}
.med5-2__dt:not(:last-of-type) {
  border-bottom: 1px solid var(--base);
}
.med5-2__dd {
  background-color: var(--base);
  color: var(--main);
  padding: 1.2375rem 0 1.2375rem clamp(2.1875rem, -3.4184587814rem + 8.9605734767vw, 3.75rem);
}
@media (max-width: 1000px) {
  .med5-2__dd {
    padding: 1.2375rem 0 1.2375rem clamp(2.0625rem, -0.6375rem + 10.8vw, 3.75rem);
  }
}
.med5-2__dd:not(:last-of-type) {
  border-bottom: 1px solid var(--main);
}

.med5-3_pos {
  margin-top: clamp(4.375rem, -0.8522727273rem + 20.9090909091vw, 15.875rem);
}
.med5-3__inner {
  max-width: 873px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .med5-3__inner {
    padding: 0 clamp(0.9375rem, -0.0815217391rem + 4.0760869565vw, 1.875rem);
  }
}
.med5-3__fee {
  margin-top: clamp(2.5rem, 0.75rem + 7vw, 5.125rem);
}

.med5-4_pos {
  margin-top: clamp(4.375rem, -0.2556818182rem + 18.5227272727vw, 14.5625rem);
  padding-bottom: clamp(7.5rem, -1.5371621622rem + 36.1486486486vw, 40.9375rem);
}
.med5-4__inner {
  max-width: 1280px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .med5-4__inner {
    padding: 0 clamp(0.9375rem, -0.0815217391rem + 4.0760869565vw, 1.875rem);
  }
}
.med5-4__risk {
  margin-top: clamp(2.5rem, 0.9375rem + 6.25vw, 5.9375rem);
}

.med6__title {
  row-gap: clamp(0.1875rem, -0.2102272727rem + 1.5909090909vw, 1.0625rem);
}

.med6-1_pos {
  margin-top: 27px;
}
.med6-1__inner {
  max-width: 1280px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .med6-1__inner {
    padding: 0 clamp(0.9375rem, -0.0815217391rem + 4.0760869565vw, 1.875rem);
  }
}
.med6-1__col {
  margin-top: clamp(3.125rem, -1.3333333333rem + 17.8333333333vw, 9.8125rem);
}
.med6-1__consult {
  margin-top: clamp(3.125rem, 1.625rem + 6vw, 5.375rem);
}
.med6-1__items {
  max-width: 777px;
  grid-template-columns: 1fr 299px;
}
@media (max-width: 768px) {
  .med6-1__items {
    max-width: 350px;
    grid-template-columns: 1fr;
  }
}

.med6-2_pos {
  margin-top: clamp(4.375rem, 0.2272727273rem + 16.5909090909vw, 13.5rem);
}
.med6-2__inner {
  max-width: 1280px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .med6-2__inner {
    padding: 0 clamp(0.9375rem, -0.0815217391rem + 4.0760869565vw, 1.875rem);
  }
}
.med6-2__blocks {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: clamp(3.75rem, 2.2443181818rem + 6.0227272727vw, 7.0625rem);
  margin-top: clamp(3.125rem, 1.3068181818rem + 7.2727272727vw, 7.125rem);
}
.med6-2__col {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  margin-top: 37px;
}
@media (max-width: 1000px) {
  .med6-2__col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 30px;
  }
}
.med6-2__col_even {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 1000px) {
  .med6-2__col_even {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.med6-2__box {
  max-width: 754px;
  width: 100%;
  margin-top: clamp(0rem, -4.2446533923rem + 6.784660767vw, 1.4375rem);
}
.med6-2__box-title {
  color: var(--main);
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: clamp(1.25rem, 0.9659090909rem + 1.1363636364vw, 1.875rem);
  font-weight: 600;
  line-height: 1.75;
  white-space: pre-line;
  border-bottom: 1px solid var(--main);
  padding-bottom: clamp(0.5625rem, 0.2784090909rem + 1.1363636364vw, 1.1875rem);
}
.med6-2__text {
  font-size: clamp(1rem, 0.9431818182rem + 0.2272727273vw, 1.125rem);
  line-height: 2.2222222222;
  white-space: pre-line;
  margin-top: clamp(1.25rem, 1.1647727273rem + 0.3409090909vw, 1.4375rem);
}
.med6-2__img {
  max-width: 474px;
  width: 100%;
}
.med6-2__recommended {
  min-height: 339px;
  position: relative;
  z-index: 1;
  background-color: #f1f6fd;
  margin-top: clamp(2.5rem, 1.5rem + 4vw, 4rem);
  padding: 21px 20px 30px;
}
.med6-2__recommended::after {
  content: "";
  width: 34.453125%;
  aspect-ratio: 441/191;
  position: absolute;
  right: 0;
  bottom: 0;
  background: url(../images/med6-2-deco.webp) no-repeat center center/cover;
  background-image: -webkit-image-set(url(../images/med6-2-deco.webp) 1x, url(../images/med6-2-deco@2x.webp) 2x);
  background-image: image-set(url(../images/med6-2-deco.webp) 1x, url(../images/med6-2-deco@2x.webp) 2x);
}
.med6-2__recommended-inner {
  max-width: 1202px;
  position: relative;
  z-index: 1;
  margin-inline: auto;
}
.med6-2__title {
  height: clamp(3.4375rem, 3.2386363636rem + 0.7954545455vw, 3.875rem);
  display: grid;
  place-items: center;
  background-color: var(--main);
  color: var(--base);
  font-size: clamp(1.25rem, 1.1363636364rem + 0.4545454545vw, 1.5rem);
}
.med6-2__items {
  display: grid;
  gap: 13px 15px;
  margin-top: clamp(1.5625rem, 0.5113636364rem + 4.2045454545vw, 3.875rem);
  margin-inline: auto;
}
.med6-2__items_odd {
  max-width: 814px;
  grid-template-columns: 1fr 299px;
}
@media (max-width: 768px) {
  .med6-2__items_odd {
    max-width: 350px;
    grid-template-columns: 1fr;
  }
}
.med6-2__items_even {
  max-width: 762px;
  grid-template-columns: 1fr 284px;
}
@media (max-width: 768px) {
  .med6-2__items_even {
    max-width: 350px;
    grid-template-columns: 1fr;
  }
}
.med6-2__item {
  font-size: clamp(1rem, 0.9431818182rem + 0.2272727273vw, 1.125rem);
  line-height: 1.75;
  text-indent: -1em;
  padding-left: 1em;
}
.med6-2__item::first-letter {
  color: #8fadd7;
  font-size: 10px;
  vertical-align: clamp(0.125rem, 0.0965909091rem + 0.1136363636vw, 0.1875rem);
}

.med6-3_pos {
  margin-top: clamp(4.375rem, 0.9375rem + 13.75vw, 11.9375rem);
}
.med6-3__inner {
  max-width: 874px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .med6-3__inner {
    padding: 0 clamp(0.9375rem, -0.0815217391rem + 4.0760869565vw, 1.875rem);
  }
}
.med6-3__fee {
  margin-top: clamp(2.5rem, 2.0416666667rem + 1.8333333333vw, 3.1875rem);
}

.med6-4_pos {
  margin-top: clamp(4.375rem, -0.2272727273rem + 18.4090909091vw, 14.5rem);
  padding-bottom: clamp(7.5rem, 1.4204545455rem + 24.3181818182vw, 20.875rem);
}
.med6-4__inner {
  max-width: 1280px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .med6-4__inner {
    padding: 0 clamp(0.9375rem, -0.0815217391rem + 4.0760869565vw, 1.875rem);
  }
}
.med6-4__risk {
  margin-top: clamp(2.5rem, 0.125rem + 9.5vw, 6.0625rem);
}

.med7__title {
  row-gap: clamp(0.1875rem, -0.2102272727rem + 1.5909090909vw, 1.0625rem);
}

.med7-1_pos {
  margin-top: 23px;
}
.med7-1__inner {
  max-width: 1280px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .med7-1__inner {
    padding: 0 clamp(0.9375rem, -0.0815217391rem + 4.0760869565vw, 1.875rem);
  }
}
.med7-1__col {
  margin-top: clamp(3.125rem, -1.3333333333rem + 17.8333333333vw, 9.8125rem);
}
.med7-1__consult {
  margin-top: clamp(3.125rem, 1.625rem + 6vw, 5.375rem);
}
.med7-1__items {
  max-width: 747px;
  grid-template-columns: 1fr 269px;
}
@media (max-width: 768px) {
  .med7-1__items {
    max-width: 350px;
    grid-template-columns: 1fr;
  }
}

.med7-2_pos {
  margin-top: clamp(4.375rem, 0.1136363636rem + 17.0454545455vw, 13.75rem);
}
.med7-2__inner {
  max-width: 1280px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .med7-2__inner {
    padding: 0 clamp(0.9375rem, -0.0815217391rem + 4.0760869565vw, 1.875rem);
  }
}
.med7-2__hr {
  border: 1px solid var(--main);
  margin-top: clamp(2.5rem, 1.0833333333rem + 5.6666666667vw, 4.625rem);
}
.med7-2__col {
  margin-top: clamp(1.875rem, 0.9166666667rem + 3.8333333333vw, 3.3125rem);
}

.med7-3_pos {
  margin-top: clamp(4.375rem, 2.9583333333rem + 5.6666666667vw, 6.5rem);
}
.med7-3__inner {
  max-width: 1280px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .med7-3__inner {
    padding: 0 clamp(0.9375rem, -0.0815217391rem + 4.0760869565vw, 1.875rem);
  }
}
.med7-3__hr {
  border: 1px solid var(--main);
  margin-top: clamp(2.5rem, 1.0833333333rem + 5.6666666667vw, 4.625rem);
}
.med7-3__col {
  margin-top: clamp(1.875rem, 0.9166666667rem + 3.8333333333vw, 3.3125rem);
}

.med7-4_pos {
  margin-top: clamp(4.375rem, -0.56640625rem + 19.765625vw, 20.1875rem);
}
.med7-4__inner {
  max-width: 874px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .med7-4__inner {
    padding: 0 clamp(0.9375rem, -0.0815217391rem + 4.0760869565vw, 1.875rem);
  }
}
.med7-4__fee {
  margin-top: clamp(2.5rem, 1.5833333333rem + 3.6666666667vw, 3.875rem);
}
.med7-4__box {
  border: 1px solid var(--main);
  margin-top: clamp(2.5rem, -0.0833333333rem + 10.3333333333vw, 6.375rem);
  padding: 25px 15px 29px;
}
.med7-4__box-title {
  max-width: 807px;
  height: 48px;
  display: grid;
  place-items: center;
  background-color: var(--main);
  color: var(--base);
  font-size: 1.25rem;
  margin-inline: auto;
}
.med7-4__text {
  max-width: 833px;
  margin-top: 36px;
  margin-inline: auto;
}

.med7-5_pos {
  margin-top: clamp(4.375rem, -1.6477272727rem + 24.0909090909vw, 17.625rem);
  padding-bottom: clamp(7.5rem, -4.2833333333rem + 47.1333333333vw, 51.6875rem);
}
.med7-5__inner {
  max-width: 1280px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .med7-5__inner {
    padding: 0 clamp(0.9375rem, -0.0815217391rem + 4.0760869565vw, 1.875rem);
  }
}
.med7-5__risk {
  margin-top: clamp(2.5rem, 0.25rem + 9vw, 5.875rem);
}

.med8__title {
  row-gap: clamp(0.1875rem, -0.2102272727rem + 1.5909090909vw, 1.0625rem);
}

.med8-1_pos {
  margin-top: 23px;
}
.med8-1__inner {
  max-width: 1280px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .med8-1__inner {
    padding: 0 clamp(0.9375rem, -0.0815217391rem + 4.0760869565vw, 1.875rem);
  }
}
.med8-1__col {
  margin-top: clamp(3.125rem, -1.3333333333rem + 17.8333333333vw, 9.8125rem);
}
.med8-1__consult {
  margin-top: clamp(3.125rem, 1.625rem + 6vw, 5.375rem);
}
.med8-1__items {
  max-width: 767px;
  grid-template-columns: 1fr 309px;
}
@media (max-width: 768px) {
  .med8-1__items {
    max-width: 350px;
    grid-template-columns: 1fr;
  }
}

.med8-2_pos {
  margin-top: clamp(4.375rem, 0.1136363636rem + 17.0454545455vw, 13.75rem);
}
.med8-2__inner {
  max-width: 1280px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .med8-2__inner {
    padding: 0 clamp(0.9375rem, -0.0815217391rem + 4.0760869565vw, 1.875rem);
  }
}
.med8-2__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: clamp(2.5rem, 0.8238636364rem + 6.7045454545vw, 6.1875rem);
  margin-top: clamp(2.3125rem, 0.3806818182rem + 7.7272727273vw, 6.5625rem);
}
.med8-2__item {
  background-color: #f1f6fd;
  padding-top: 35px;
  padding-left: 30px;
}
@media (max-width: 900px) {
  .med8-2__item {
    padding: 35px 15px 40px;
  }
}
.med8-2__item-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
@media (max-width: 900px) {
  .med8-2__item-inner {
    max-width: 700px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 30px;
    margin-inline: auto;
  }
}
.med8-2__box {
  max-width: 723px;
  width: 100%;
  padding-bottom: 30px;
}
@media (max-width: 900px) {
  .med8-2__box {
    padding-bottom: 0;
  }
}
.med8-2__box-title {
  color: var(--main);
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: clamp(1.25rem, 0.9659090909rem + 1.1363636364vw, 1.875rem);
  font-weight: 600;
  line-height: 1.75;
  white-space: pre-line;
  border-bottom: 1px solid var(--main);
  padding-bottom: clamp(0.5625rem, 0.3636363636rem + 0.7954545455vw, 1rem);
}
.med8-2__box-text {
  font-size: clamp(1rem, 0.9431818182rem + 0.2272727273vw, 1.125rem);
  line-height: 2.2222222222;
  white-space: pre-line;
  margin-top: clamp(1.25rem, 1.0795454545rem + 0.6818181818vw, 1.625rem);
}
.med8-2__img {
  max-width: 473px;
  width: 100%;
  margin-top: 15px;
}

.med8-3_pos {
  margin-top: clamp(4.375rem, -1.7329545455rem + 24.4318181818vw, 17.8125rem);
}
.med8-3__inner {
  max-width: 874px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .med8-3__inner {
    padding: 0 clamp(0.9375rem, -0.0815217391rem + 4.0760869565vw, 1.875rem);
  }
}
.med8-3__fee {
  margin-top: clamp(2.5rem, 1.375rem + 4.5vw, 4.1875rem);
  row-gap: 30px;
}

.med8-4_pos {
  margin-top: clamp(4.375rem, -2.3579545455rem + 26.9318181818vw, 19.1875rem);
  padding-bottom: clamp(4.375rem, -5.675rem + 40.2vw, 42.0625rem);
}
.med8-4__inner {
  max-width: 1280px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .med8-4__inner {
    padding: 0 clamp(0.9375rem, -0.0815217391rem + 4.0760869565vw, 1.875rem);
  }
}
.med8-4__risk {
  margin-top: clamp(2.5rem, 0.25rem + 9vw, 5.875rem);
}
.med8-4__risk-inner {
  max-width: 1116px;
}

/*###################################################################
  recruit（page）
###################################################################*/
.recruit1_pos {
  margin-top: 34px;
}
.recruit1__inner {
  max-width: 1280px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .recruit1__inner {
    padding: 0 clamp(0.9375rem, -0.0815217391rem + 4.0760869565vw, 1.875rem);
  }
}
.recruit1__subtitle {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: clamp(1.25rem, 0.9659090909rem + 1.1363636364vw, 1.875rem);
  font-weight: 600;
  line-height: 1.75;
  text-align: center;
  white-space: pre-line;
  margin-top: clamp(2.5rem, 0.75rem + 7vw, 5.125rem);
  margin-inline: auto;
  padding: 0 clamp(1.25rem, 0.2556818182rem + 3.9772727273vw, 3.4375rem);
}
.recruit1__subtitle::before, .recruit1__subtitle::after {
  content: "";
  width: clamp(1.25rem, 0.4261363636rem + 3.2954545455vw, 3.0625rem);
  aspect-ratio: 49/48;
  position: absolute;
  bottom: 4px;
}
@media (max-width: 600px) {
  .recruit1__subtitle::before, .recruit1__subtitle::after {
    bottom: 25px;
  }
}
.recruit1__subtitle::before {
  left: 0;
  background: url(../images/icon-title-deco-l.svg) no-repeat 0 0/contain;
}
.recruit1__subtitle::after {
  right: 0;
  background: url(../images/icon-title-deco-r.svg) no-repeat 0 0/contain;
}
.recruit1__body {
  background-color: var(--main-l);
  margin-top: clamp(2.1875rem, 1.6041666667rem + 2.3333333333vw, 3.0625rem);
  padding: 30px 15px 40px;
}
.recruit1__body-inner {
  max-width: 1184px;
  margin-inline: auto;
}
.recruit1__box {
  max-width: 1171px;
  margin-left: auto;
}
.recruit1__box-title {
  font-size: clamp(1.125rem, 0.9545454545rem + 0.6818181818vw, 1.5rem);
  line-height: 1.5;
  text-indent: -1.7em;
  padding-left: 1.7em;
}
.recruit1__box-title_mt {
  margin-top: 43px;
}

.recruit2_pos {
  margin-top: clamp(4.375rem, 1.1079545455rem + 13.0681818182vw, 11.5625rem);
}
.recruit2__inner {
  max-width: 1086px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .recruit2__inner {
    padding: 0 clamp(0.9375rem, -0.0815217391rem + 4.0760869565vw, 1.875rem);
  }
}
.recruit2__subtitle {
  font-size: clamp(1.125rem, 0.9545454545rem + 0.6818181818vw, 1.5rem);
  margin-top: clamp(3.125rem, -7.0330234834rem + 21.1350293542vw, 9.875rem);
  margin-left: clamp(0rem, -7.8066291585rem + 16.2426614481vw, 5.1875rem);
}
.recruit2__subtitle::first-letter {
  color: var(--main);
}
.recruit2__dl {
  display: grid;
  grid-template-columns: clamp(8.4375rem, -17.6751968504rem + 54.3307086614vw, 21.375rem) 1fr;
  font-size: clamp(1rem, 0.9333333333rem + 0.2666666667vw, 1.125rem);
  line-height: 1.75;
  margin-top: 43px;
}
@media (max-width: 768px) {
  .recruit2__dl {
    grid-template-columns: 1fr;
  }
}
.recruit2__dt {
  background-color: var(--main-l);
  font-weight: 500;
  border-right: 1px solid var(--main);
  border-bottom: 1px solid var(--main);
  border-left: 1px solid var(--main);
  padding: 1.10625rem 5px 1.10625rem clamp(0.3125rem, -9.6532152231rem + 20.7349081365vw, 5.25rem);
}
@media (max-width: 768px) {
  .recruit2__dt {
    text-align: center;
  }
}
.recruit2__dt:first-of-type {
  border-top: 1px solid var(--main);
}
.recruit2__dd {
  white-space: pre-line;
  border-right: 1px solid var(--main);
  border-bottom: 1px solid var(--main);
  padding: 1.10625rem clamp(0.3125rem, -0.3182414698rem + 1.312335958vw, 0.625rem) 1.10625rem clamp(0.3125rem, -12.1761811024rem + 25.9842519685vw, 6.5rem);
}
@media (max-width: 768px) {
  .recruit2__dd {
    border-left: 1px solid var(--main);
  }
}
.recruit2__dd:first-of-type {
  border-top: 1px solid var(--main);
}
@media (max-width: 768px) {
  .recruit2__dd:first-of-type {
    border-top: none;
  }
}

.recruit3_pos {
  margin-top: clamp(4.375rem, -1.3636363636rem + 22.9545454545vw, 17rem);
}
.recruit3__inner {
  max-width: 1086px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
  padding-bottom: 721px;
}
@media (max-width: 1680px) {
  .recruit3__inner {
    padding: 0 clamp(0.9375rem, -0.0815217391rem + 4.0760869565vw, 1.875rem) clamp(7.5rem, -4.23828125rem + 46.953125vw, 45.0625rem);
  }
}
.recruit3__dl {
  display: grid;
  grid-template-columns: clamp(5.3125rem, -27.1076115486rem + 67.4540682415vw, 21.375rem) 1fr;
  font-size: clamp(1rem, 0.9333333333rem + 0.2666666667vw, 1.125rem);
  line-height: 1.75;
  margin-top: clamp(2.5rem, 1.1666666667rem + 5.3333333333vw, 4.5rem);
}
.recruit3__dt {
  background-color: var(--main-l);
  font-weight: 500;
  border-right: 1px solid var(--main);
  border-bottom: 1px solid var(--main);
  border-left: 1px solid var(--main);
  padding: 17px 5px 17px clamp(0.3125rem, -2.967355643rem + 6.8241469816vw, 1.9375rem);
}
.recruit3__dt:first-of-type {
  border-top: 1px solid var(--main);
}
.recruit3__dd {
  white-space: pre-line;
  border-right: 1px solid var(--main);
  border-bottom: 1px solid var(--main);
  padding: 17px clamp(0.3125rem, -0.3182414698rem + 1.312335958vw, 0.625rem) 17px clamp(0.3125rem, -12.1761811024rem + 25.9842519685vw, 6.5rem);
}
.recruit3__dd:first-of-type {
  border-top: 1px solid var(--main);
}
.recruit3__tel {
  color: var(--main);
  font-size: 30px;
}
.recruit3__tel-en {
  font-size: 20px;
}

@media (hover: hover) and (pointer: fine) {
  .recruit3__tel {
    -webkit-transition: color 0.4s;
    transition: color 0.4s;
  }
  .recruit3__tel:hover, .recruit3__tel:focus {
    color: var(--accent);
  }
}
/*###################################################################
  access（page）
###################################################################*/
.access1_pos {
  margin-top: 34px;
}
.access1__img {
  max-width: 1727px;
  margin-top: 75px;
  margin-inline: auto;
}
.access1__inner {
  max-width: 1392px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .access1__inner {
    padding: 0 clamp(0.9375rem, -0.0815217391rem + 4.0760869565vw, 1.875rem);
  }
}
.access1__group {
  max-width: 1254px;
  margin-top: calc(clamp(0.3125rem, -1.1328125rem + 5.78125vw, 4.9375rem) * -1);
  margin-inline: auto;
}
.access1__group-body {
  max-width: 1256px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  margin-top: clamp(3.125rem, 2.1059782609rem + 4.0760869565vw, 4.0625rem);
  margin-left: auto;
}
@media (max-width: 1000px) {
  .access1__group-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: clamp(3.125rem, 1.7916666667rem + 5.3333333333vw, 5.125rem);
  }
}
.access1__med {
  position: relative;
  background-color: #ecf1f8;
  margin-top: clamp(2.8125rem, -2.8051948052rem + 11.6883116883vw, 4.5rem);
  padding: clamp(1.75rem, 1.0681818182rem + 2.7272727273vw, 3.25rem) 20px clamp(1.25rem, 0.4545454545rem + 3.1818181818vw, 3rem);
}
.access1__med::before, .access1__med::after {
  content: "";
  position: absolute;
  left: 0;
  z-index: 0;
  background-color: rgba(199, 215, 241, 0.5);
}
@media (max-width: 768px) {
  .access1__med::before, .access1__med::after {
    content: "";
    position: absolute;
    left: 0;
    z-index: 0;
    background-color: rgba(199, 215, 241, 0.5);
  }
}
.access1__med::before {
  width: 27.2270114943%;
  height: 100%;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
          clip-path: polygon(0 0, 0% 100%, 100% 0);
  top: 0;
}
.access1__med::after {
  width: 16.3793103448%;
  aspect-ratio: 230/236.06;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
          clip-path: polygon(0 0, 0% 100%, 100% 100%);
  bottom: 0;
}
.access1__med-inner {
  max-width: 1301px;
  position: relative;
  z-index: 1;
  margin-inline: auto;
}
.access1__med-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 7px;
  background-image: -webkit-repeating-linear-gradient(left, var(--main), var(--main) 4px, transparent 4px, transparent 6px);
  background-image: repeating-linear-gradient(90deg, var(--main), var(--main) 4px, transparent 4px, transparent 6px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 2px;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  padding-bottom: clamp(1.25rem, 0.8522727273rem + 1.5909090909vw, 2.125rem);
}
.access1__med-jp {
  font-size: clamp(1.25rem, 0.9659090909rem + 1.1363636364vw, 1.875rem);
}
.access1__med-en {
  color: var(--main);
  font-size: clamp(1.5625rem, 0.8522727273rem + 2.8409090909vw, 3.125rem);
}
.access1__text {
  font-size: clamp(1rem, 0.8295454545rem + 0.6818181818vw, 1.375rem);
  line-height: 2.2727272727;
  text-align: center;
  white-space: pre-line;
  margin-top: clamp(1.5rem, 0.3920454545rem + 4.4318181818vw, 3.9375rem);
}
.access1__deco::before, .access1__deco::after {
  content: "";
  position: absolute;
  right: 0;
  z-index: 0;
  background-color: rgba(199, 215, 241, 0.5);
}
.access1__deco::before {
  width: 16.3793103448%;
  aspect-ratio: 230/236.06;
  -webkit-clip-path: polygon(100% 0, 0 0, 100% 100%);
          clip-path: polygon(100% 0, 0 0, 100% 100%);
  top: 0;
}
.access1__deco::after {
  width: 27.2270114943%;
  height: 100%;
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  bottom: 0;
}

.access2_pos {
  margin-top: clamp(4.375rem, 0.7386363636rem + 14.5454545455vw, 12.375rem);
}
.access2__inner {
  max-width: 933px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .access2__inner {
    padding: 0 clamp(0.9375rem, -0.0815217391rem + 4.0760869565vw, 1.875rem);
  }
}
.access2__dl {
  display: grid;
  grid-template-columns: clamp(5rem, -14.974025974rem + 41.5584415584vw, 11rem) 1fr;
  font-size: clamp(0.9375rem, 0.8125rem + 0.5vw, 1.125rem);
  line-height: 1.75;
  margin-top: clamp(3.125rem, -9.9829545455rem + 27.2727272727vw, 7.0625rem);
}
.access2__dt {
  background-color: var(--main-l);
  font-weight: 500;
  border-bottom: 1px solid var(--text);
  padding: 0.98125rem 5px 0.98125rem clamp(0.3125rem, -0.5197510823rem + 1.7316017316vw, 0.5625rem);
}
.access2__dd {
  white-space: pre-line;
  border-bottom: 1px solid var(--text);
  padding: 0.98125rem 5px 0.98125rem clamp(0.3125rem, -5.0971320346rem + 11.2554112554vw, 1.9375rem);
}

.access3_pos {
  margin-top: clamp(4.375rem, 0.4545454545rem + 15.6818181818vw, 13rem);
}
.access3__inner {
  max-width: 1280px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
  padding-bottom: 637px;
}
@media (max-width: 1680px) {
  .access3__inner {
    padding: 0 clamp(0.9375rem, -0.0815217391rem + 4.0760869565vw, 1.875rem) clamp(7.5rem, -2.59765625rem + 40.390625vw, 39.8125rem);
  }
}
.access3__map {
  margin-top: clamp(3.125rem, 1.125rem + 8vw, 6.125rem);
}
.access3__gmap {
  width: 100%;
  height: clamp(28.125rem, 14.8333333333rem + 53.1666666667vw, 48.0625rem);
}
.access3__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  margin-top: clamp(3.125rem, 2.25rem + 3.5vw, 4.4375rem);
}
@media (max-width: 1000px) {
  .access3__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 30px;
  }
}
.access3__item {
  max-width: 614px;
  width: 100%;
  position: relative;
  padding-right: clamp(1.875rem, -0.6358695652rem + 4.0133779264vw, 2.625rem);
  padding-bottom: clamp(1.9375rem, -0.5733695652rem + 4.0133779264vw, 2.6875rem);
}
@media (max-width: 1000px) {
  .access3__item {
    padding-right: clamp(1.25rem, -0.95rem + 8.8vw, 2.625rem);
    padding-bottom: clamp(1.5rem, -0.4rem + 7.6vw, 2.6875rem);
  }
}
.access3__item::after {
  content: "";
  width: clamp(26.4375rem, -7.8777173913rem + 54.8494983278vw, 36.6875rem);
  height: clamp(12.75rem, 9.15rem + 14.4vw, 15rem);
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 1000px) {
  .access3__item::after {
    width: clamp(21.5625rem, -2.6375rem + 96.8vw, 36.6875rem);
  }
}
.access3__item_car::after {
  background: url(../images/access3-deco-1.webp) no-repeat center center/cover;
  background-image: -webkit-image-set(url(../images/access3-deco-1.webp) 1x, url(../images/access3-deco-1@2x.webp) 2x);
  background-image: image-set(url(../images/access3-deco-1.webp) 1x, url(../images/access3-deco-1@2x.webp) 2x);
}
.access3__item_train::after {
  background: url(../images/access3-deco-2.webp) no-repeat center center/cover;
  background-image: -webkit-image-set(url(../images/access3-deco-2.webp) 1x, url(../images/access3-deco-2@2x.webp) 2x);
  background-image: image-set(url(../images/access3-deco-2.webp) 1x, url(../images/access3-deco-2@2x.webp) 2x);
}
.access3__box {
  max-width: 572px;
  min-height: clamp(12.8125rem, 10.1125rem + 10.8vw, 14.5rem);
  background-color: var(--base);
  padding: 34px 15px 37px;
}
.access3__box_car {
  border: 1px solid var(--main);
}
.access3__box_train {
  border: 1px solid var(--accent);
}
.access3__box-title {
  max-width: 476px;
  height: clamp(2.8125rem, 1.6125rem + 4.8vw, 3.5625rem);
  display: grid;
  place-items: center;
  position: relative;
  color: var(--base);
  font-size: clamp(1.25rem, 0.85rem + 1.6vw, 1.5rem);
  margin-inline: auto;
}
.access3__box-title::after {
  content: "";
  position: absolute;
}
.access3__box-title_car {
  background-color: var(--main);
}
.access3__box-title_car::after {
  width: clamp(3rem, 0.8rem + 8.8vw, 4.375rem);
  aspect-ratio: 70/55;
  right: -10px;
  bottom: calc(clamp(4.6875rem, 3.2875rem + 5.6vw, 5.5625rem) * -1);
  background: url(../images/icon-car.svg) no-repeat 0 0/contain;
}
.access3__box-title_train {
  background-color: var(--accent);
}
.access3__box-title_train::after {
  width: clamp(2.1875rem, 0.4875rem + 6.8vw, 3.25rem);
  aspect-ratio: 52/69;
  right: -2px;
  bottom: calc(clamp(4.875rem, 3.475rem + 5.6vw, 5.75rem) * -1);
  background: url(../images/icon-train.svg) no-repeat 0 0/contain;
}
.access3__text {
  font-size: clamp(0.9375rem, 0.8522727273rem + 0.3409090909vw, 1.125rem);
  text-align: center;
}
.access3__text_car {
  text-align: center;
  margin-top: 43px;
}
.access3__text_train {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 22px;
  margin-inline: auto;
}

/*###################################################################
  news（page）
###################################################################*/
.news-list_pos {
  margin-top: clamp(5rem, -0.5658284024rem + 20.7100591716vw, 9.375rem);
}
.news-list__inner {
  max-width: 1000px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
  padding-bottom: 150px;
}
@media (max-width: 768px) {
  .news-list__inner {
    padding: 0 clamp(0.9375rem, -0.625rem + 5.2083333333vw, 1.875rem) 150px;
  }
}
@media (max-width: 600px) {
  .news-list__inner {
    max-width: 400px;
  }
}
.news-list__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: clamp(1.875rem, -0.3571428571rem + 5.9523809524vw, 2.5rem);
  margin-top: 100px;
}
@media (max-width: 600px) {
  .news-list__items {
    row-gap: 50px;
    margin-top: 50px;
  }
}
.news-list__post-link {
  display: grid;
  grid-template-columns: clamp(11.25rem, -4.375rem + 41.6666666667vw, 15.625rem) 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: clamp(0.9375rem, -2.4107142857rem + 8.9285714286vw, 1.875rem);
     -moz-column-gap: clamp(0.9375rem, -2.4107142857rem + 8.9285714286vw, 1.875rem);
          column-gap: clamp(0.9375rem, -2.4107142857rem + 8.9285714286vw, 1.875rem);
  background-color: var(--base);
  border: 1px solid #75778d;
}
@media (max-width: 600px) {
  .news-list__post-link {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }
}
.news-list__thumbnail {
  max-width: 300px;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 600px) {
  .news-list__thumbnail {
    max-width: 100%;
  }
}
.news-list__thumbnail img {
  height: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-list__text-box {
  padding-top: 15px;
  padding-bottom: 15px;
}
@media (max-width: 600px) {
  .news-list__text-box {
    padding-top: 0;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 20px;
  }
}
.news-list__date {
  display: block;
  color: var(--main);
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.75;
}
.news-list__post-title {
  font-size: clamp(1.125rem, 0.6785714286rem + 1.1904761905vw, 1.25rem);
  line-height: 1.75;
  text-align: start;
  word-break: break-all;
  padding-right: 15px;
}
@media (max-width: 600px) {
  .news-list__post-title {
    padding-right: 0;
  }
}
.news-list__no-post {
  height: 200px;
  display: grid;
  place-items: center;
  background-color: var(--main);
  color: var(--base);
  font-size: 1.25rem;
  font-weight: 500;
}
.news-list__pagination {
  font-size: 1.25rem;
  margin-top: 150px;
}
@media (max-width: 768px) {
  .news-list__pagination {
    margin-top: 80px;
  }
}
.news-list__pagination ul.page-numbers {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(1.125rem, -0.875rem + 8vw, 2.125rem);
  margin-inline: auto;
}
.news-list__pagination ul.page-numbers li {
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.news-list__pagination ul.page-numbers li .page-numbers {
  --spacing: 0;
}
.news-list__pagination .page-numbers.current {
  color: var(--main);
}

@media (hover: hover) and (pointer: fine) {
  .news-list__post-link {
    -webkit-transition: background-color 0.4s;
    transition: background-color 0.4s;
  }
  .news-list__post-link:hover .news-list__thumbnail img, .news-list__post-link:focus .news-list__thumbnail img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
  .news-list__post-link:hover .news-list__post-title, .news-list__post-link:focus .news-list__post-title {
    color: var(--main);
    text-decoration: underline;
  }
  .news-list__thumbnail img {
    -webkit-transition: -webkit-transform ease 0.4s;
    transition: -webkit-transform ease 0.4s;
    transition: transform ease 0.4s;
    transition: transform ease 0.4s, -webkit-transform ease 0.4s;
  }
  .news-list__post-title {
    -webkit-transition: color ease 0.4s;
    transition: color ease 0.4s;
    -webkit-text-decoration-color: var(--main);
            text-decoration-color: var(--main);
  }
  .news-list__pagination a {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .news-list__pagination a:hover, .news-list__pagination a:focus {
    opacity: 0.7;
  }
}
.news-post_pos {
  margin-top: clamp(5rem, -0.5658284024rem + 20.7100591716vw, 9.375rem);
}
.news-post__inner {
  max-width: 840px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
  padding-bottom: 150px;
}
@media (max-width: 768px) {
  .news-post__inner {
    padding: 0 clamp(0.9375rem, -0.625rem + 5.2083333333vw, 1.875rem) 150px;
  }
}
.news-post__bg {
  background-color: var(--base);
  border: 1px solid #75778d;
  padding: 50px 20px 100px;
}
@media (max-width: 768px) {
  .news-post__bg {
    padding: 50px clamp(0.9375rem, -0.625rem + 5.2083333333vw, 1.875rem) 100px;
  }
}
.news-post__date {
  display: block;
  color: var(--main);
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: 1.25rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .news-post__date {
    font-size: 1.125rem;
  }
}
.news-post__title {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.75;
  word-break: break-all;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .news-post__title {
    font-size: 1.375rem;
    margin-top: 10px;
  }
}
.news-post__thumbnail {
  margin-top: 40px;
}
.news-post__editor {
  margin-top: 40px;
}

.news-post-pager {
  background-color: var(--base);
  border: 1px solid #75778d;
}
.news-post-pager_pos {
  max-width: 840px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 20px;
  padding-left: 20px;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .news-post-pager_pos {
    margin-top: 60px;
  }
}
.news-post-pager__nav {
  height: 70px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--main);
  font-size: clamp(1rem, 0.1071428571rem + 3.8095238095vw, 1.25rem);
  font-weight: 500;
  padding-right: clamp(0rem, -4.4642857143rem + 19.0476190476vw, 1.25rem);
  padding-left: clamp(0rem, -4.4642857143rem + 19.0476190476vw, 1.25rem);
}
.news-post-pager__link {
  --spacing: 0;
}
.news-post-pager__blank {
  min-width: 106px;
  min-width: clamp(5.4375rem, 0.5267857143rem + 20.9523809524vw, 6.8125rem);
}

@media (hover: hover) and (pointer: fine) {
  .news-post-pager__link {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .news-post-pager__link:hover, .news-post-pager__link:focus {
    opacity: 0.7;
  }
}
/*###################################################################
  page-404（page）
###################################################################*/
.page-404_pos {
  margin-top: clamp(5rem, 2.0833333333rem + 11.6666666667vw, 9.375rem);
}
.page-404__inner {
  max-width: 1000px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-inline: auto;
  padding-right: 30px;
  padding-left: 30px;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .page-404__inner {
    padding: 0 clamp(0.9375rem, -0.0815217391rem + 4.0760869565vw, 1.875rem) 100px;
  }
}
.page-404__title {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
}
.page-404__text {
  line-height: 1.75;
  white-space: pre-line;
  margin-top: 80px;
}
.page-404__button-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 60px;
}
.page-404__button {
  width: 175px;
  height: 48px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  border: 1px solid var(--text);
  margin-inline: auto;
}

@media (hover: hover) and (pointer: fine) {
  .page-404__button {
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .page-404__button:hover, .page-404__button:focus {
    opacity: 0.7;
  }
}
/*###################################################################
  js-（js制御用）
###################################################################*/