:root {
    --color-txt: #000000;
    --color-green01: #006F64;
    --color-greenblue01: #60ABB7;
    --color-purple01: #A260B7;
    --color-gray: #5D5D5D;
    --font-base: "Noto Serif JP", serif;
    --font-gfs: "GFS Neohellenic", sans-serif;
    --font-size-base: 1.6rem;
    --font-size-sp14: 1.4rem;
    --viewport-min: 392;
    --viewport-max: 1440;
    --breakpoint-sp: 768;
    --breakpoint-pc: 1640;
    --content-max-width: 1224;
    --rem-base: 10;
    --space-xs: 0.5em;
    --space-sm: 1.5em;
    --space-md: 2.5em;
    --space-lg: 5em;
}
@media screen and (min-width: 768px) {
    :root {
        --font-size-sp14: 1.6rem;
        --space-sm: 2.5em;
        --space-md: 5em;
        --space-lg: 10em;
    }
}
html {
    font-size: calc(var(--rem-base) / var(--viewport-min) * 100vw);
}
@media screen and (min-width: 768px) {
    html { font-size: calc(var(--rem-base) / var(--viewport-max) * 100vw); }
}
@media screen and (min-width: 1856px) { /* 1640+(108*2) */
    html { font-size: 12.7px; }
}

*,*::before,*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
    font-family: var(--font-base);
    font-size: var(--font-size-base);
    font-optical-sizing: auto;
    line-height: 1.6em;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.2em;
    color: var(--color-txt);
    background: transparent;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
  margin: 0;
}
ul, ol, li {
  list-style: none;
  padding: 0;
}
blockquote, q {
  quotes: none;
}
blockquote::before, blockquote::after, q::before, q::after {
  content: '';
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  text-decoration: none;
  transition: 0.3s;
  color: var(--color-txt);
  word-break: break-word;
  overflow-wrap: break-word;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}
picture img,figure img {
  width: 100%;
  height: auto;
}
input, textarea, select, button {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  background: none;
  font: inherit;
  color: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
input[type="submit"], input[type="button"] {
  cursor: pointer;
}
select::-ms-expand {
  display: none;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
  font-weight: 400;
  line-height: 1em;
  font-size: 1em;
  text-rendering: optimizeLegibility;
}
p {
  line-height: 2em;
}
p.clear {
  margin-bottom: 1em;
}
small {
  font-size: 0.875em;
}
strong {
	font-size: 1.25em;
	font-weight: 700;
}
b {
	font-weight: 700;
}
a.txtlink {
  text-decoration: underline;
}
a.txtlink:hover {
  text-decoration: none;
}
.clear {
  clear: both;
  display: block;
  overflow: hidden;
}
p.clear {
  margin-bottom: 1em;
}
p:has(small) {
  line-height: 2em;
}
.textleft { text-align: left; }
.textright { text-align: right; }
.textcenter { text-align: center; }
@media only screen and (max-width:767px) {
  .pc { display: none !important; }
  .--sp-textright { text-align: right; }
}
@media only screen and (min-width: 768px) {
  .sp { display: none !important; }
  a img,.hover-op a { transition: .3s;}
  .hover-op a:hover { opacity: .5; }
}
.color-purple {
  color: var(--color-purple01);
}
.color-gray {
  color: var(--color-gray);
}
/** list **/
.list > li {
	padding-left: 1.25em;
  line-height: 2em;
	position: relative;
}
.list > li::before {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}
.list.list-maru > li::before {
	content: "●";
}
.list.list-maru2 > li::before {
	content: "◯";
}
.list.list-maru.--maru-purple > li::before  {
  color: var(--color-main);
}
.list.list-maru.--maru-pink > li::before  {
  color: var(--color-puple_pink);
}
.list.list-nom > li::before {
	content: "・";
}
.list.list-note > li::before {
	content: "※";
}
.term-list dt {
  font-size: 1.8rem;
}
.term-list dd {
  margin-top: 1em;
  color: var(--color-gray);
}
.term-list dd a {
  color: var(--color-gray);
}
.toggle__pointer {
  display: inline-block;
  position: relative;
  padding-right: 3em;
  cursor: pointer;
}
.toggle__pointer span {
  display: block;
}
.toggle__pointer::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  border: 1px solid black;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.toggle__pointer span::before,
.toggle__pointer span::after {
  content: "";
  display: block;
  border-radius: 1px;
  height: 1px;
  width: .6em;
  background-color: black;
  position: absolute;
  top: calc(50% - 0.5px);
  right: .2em
}
.toggle__pointer span::after {
  transform: rotate(90deg);
  transition: .3s;
}
.toggle__pointer.active span::after {
  transform: rotate(0deg);
}
.toggle__content {
  display: none;
}
.tel {
  font-weight: 500;
  letter-spacing: .2em;
}
.title {
  text-align: center;
  line-height: 1.6em;
  letter-spacing: .1em;
  font-weight: 400;
  font-size: 2.4rem;
  margin-bottom: var(--space-md);
}
.title .title__sub {
  font-size: 1.4rem;
  margin-top: .5em;
}
.title:has(.title__main01) {
  color: var(--color-green01);
}
.title .title__main01 .char-en {
  font-size: 3.2rem;
}
.title:has(.title__main02),
.title:has(.title__main03) {
  color: var(--color-gray);
}
.title:has(.title__main-page) {
  color: var(--color-green01);
  font-size: 1.25em;
  letter-spacing: .2em;
}
.title .title__main02,
.title .title__main03 {
  line-height: 1.6em;
  letter-spacing: .2em;
}
.title .title__main03 {
  position: relative;
  padding-bottom: 3.2rem;
  line-height: 1.6em;
}
.title .title__main03::before {
  content: "";
  display: block;
  width: 4.4rem;
  height: .4em;
  background-image: url('../images/ttl_dot.svg?11');
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.title__main-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}
@media screen and (max-width: 767px) {
  .title__main-page .line-pc {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.6rem;
  }
  .title__main-page span.line {
    display: inline-block;
    background-image: url('../images/bg_nami.svg');
    padding-bottom: 2.4rem;
    background-size: auto 1.6rem;
    background-repeat: repeat-x;
    background-position: bottom;
  }
}
@media screen and (min-width: 768px) {
  .title:has(.title__main-page) {
    font-size: 1.375em;
  }
  .title__main-page span.line-pc {
    display: inline-block;
    background-image: url('../images/bg_nami.svg');
    padding-bottom: 2.4rem;
    background-size: auto 1.6rem;
    background-repeat: repeat-x;
    background-position: bottom;
  }
}
.wrapper { overflow: hidden;}
.container {
    display: block;
    padding-left: 1em;
    padding-right: 1em;
    margin: 0 auto;
    width: 100%;
}
/** common **/
.sec-space {
    padding-top: var(--space-lg);
    padding-bottom: var(--space-lg);
}
.page-btm__space {
    margin-bottom: var(--space-lg);
}
.--space-btm12 { margin-bottom: 5em; }
.--space-btm-lg { margin-bottom: var(--space-lg); }
.--space-btm-md { margin-bottom: var(--space-md); }
.page-lead {
    padding-top: 4.5em;
    padding-bottom: 4.5em;
}
.media-full {
    display: block;
    width: 100vw;
    transform: translateX(-1em);
}
.media-full.--col2 {
    display: flex;
}
.media-full.--col2 picture {
    width: 50%;
}
.media-content__wrap {
    display: flex;
    flex-direction: column;
    gap: 2.5em;
}
.media-content__txt:has(.media-content__lead) p {
  color: var(--color-gray);
}
.media-content__txt .media-content__lead {
  color: var(--color-green01);
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: .75em;
}
/** header **/
body.admin-bar .header {
    top: 32px;
}
.header {
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 90;
}
.header.fixed {
    position: fixed;
    animation: fade01 .5s ease-in-out;
    background-color: rgba(255, 255, 255, .8)
}
.nav_open .header {
    animation: fade02 .5s ease-in-out;
}
@keyframes fade01 {
    from { opacity: 0; transform: translateY(-10%); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fade02 {
    from { opacity: 0; transform: translateY(-10%); }
    to { opacity: 1; transform: translateY(0); }
}
.header .header__area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    height: 4.25em;
    z-index: 100;
}
.header .header__logo {
    width: 19.4rem;
    display: block;
    margin: 1em;
}
.header .header__logo img {
    width: 100%;
}
.header .header__logo .header__logo-white {
    display: none;
}
.hamburger {
    display: block;
    width: 6.8rem;
    height: 6.8rem;
}
.hamburger .hamburger__btn {
    display: block;
    width: 100%;
    height: 100%;
    cursor: pointer;
    transition: .3s;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    position: relative;
}
.hamburger .hamburger__btn > span {
    width: 60%;
    height: 60%;
    display: block;
    position: relative;
}
.hamburger .hamburger__btn > span::before,
.hamburger .hamburger__btn > span::after {
    content: " ";
    display: block;
    background: black;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .5s;
}
.hamburger .hamburger__btn > span::before { top: 0; }
.hamburger .hamburger__btn > span::after { top: 35%; }
.nav_open .hamburger .hamburger__btn > span::before,
.nav_open .hamburger .hamburger__btn > span::after { top: 20%;}
.nav_open .hamburger .hamburger__btn > span::before { transform: translate(-50%,-50%) rotate(45deg); }
.nav_open .hamburger .hamburger__btn > span::after { transform: translate(-50%,-50%) rotate(-45deg); }
.hamburger .hamburger__btn::after {
    content: "Menu";
    display: block;
    width: 100%;
    text-align: center;
    color: black;
    font-size: 1.2rem;
    line-height: 1em;
    position: absolute;
    bottom: 1.2rem;
    left: 0;
}
.nav_open .hamburger .hamburger__btn::after {
      content: "Close"; 
}
.nav_open .header {
    width: 100%;
    height: 100dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
    z-index: 1002;
    background: rgba(255, 255, 255, .95);
}
.nav_open .header::-webkit-scrollbar {
    display: none;
}
.hamburger__nav {
    display: none;
}
.nav_open .hamburger__nav {
    display: block;
}
.hamburger__nav-btn {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 1em;
    margin: 2.5em 0 2em 0;
}
.hamburger__nav-btn .button {
    border: 1px solid black;
    display: block;
}
.menu-nav .menu-nav__links a {
    display: block;
}
.menu-nav .menu-nav__links a::before {
    content: "−";
    display: inline-block;
    margin-right: .8rem;
}
.menu-nav .menu-nav__links a {
    font-size: 1.4rem;
    line-height: 1em;
}
/** footer **/
.footer {
    background-image: url('../images/bg_footer.png');
    background-size: 20rem auto;
    color: white;
    overflow: hidden;
}
.footer a {
    color: white;
}
.footer__info {
    padding: 2.5em 0;
}
.footer__info .footer__info-txt {
    text-align: center;
}
.footer__info-logo img {
    width: 23.3rem;
    margin: 2.5em auto;
}
.footer__info {
    padding: 1.25em 0 2.5em 0;
}
.footer__info .footer__info-addr {
    font-size: 1.4rem;
    white-space: nowrap;
    margin: 1.6em 0;
}
.footer__info .footer__info-tel .tel {
    font-size: 2rem;
}
.footer__info .footer__info-tel p {
    font-size: 1rem;
    margin-top: .5em;
}
.footer__info-btn {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1em;
}
.footer__info-btn .button {
    border: 1px solid white;
    display: block;
}
.footer__info-sns {
    margin-top: 1.5em;
}
.footer__info-sns a {
    display: block;
}
.footer__info-sns .bnr-insta {
    display: block;
    position: relative;
}
.footer__info-sns .bnr-insta::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0, .3);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: .5s;
}
.footer__info-sns .bnr-insta .bnr-insta__ttl {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 31rem;
    z-index: 2;
}
.footer__logo {
    border-top: 1px solid rgba(255, 255, 255, .5);
    padding: 2.5em 0;
    text-align: center;
}
.footer__logo img {
    width: 23rem;
    margin: 0 auto;
}
.footer__copy {
    border-top: 1px solid rgba(255, 255, 255, .5);
    text-align: center;
    padding: 2em 0;
}
.footer__copy .copy {
    font-size: 1rem;
    letter-spacing: 0.2em;
}
.page-top {
    position: fixed;
    bottom: 1em;
    right: 1em;
    display: block;
    width: 2em;
    height: 12rem;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transform: translateY(2em);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.page-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.page-top a {
    height: 100%;
    display: block;
    position: relative;
}
.page-top .page-top__arrow {
   height: 4.2rem;
   width: 1.1rem;
   display: block;
   position: absolute;
   bottom: 0;
   left: .5rem;
   transition: 0.3s;
}
.page-top .page-top__arrow::before,
.page-top .page-top__arrow::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.page-top .page-top__arrow::before {
    bottom: auto;
    top: 0;
    background-image: url('../images/page-up.svg?0901');
    background-size: contain;
    background-repeat: no-repeat;
    width: 1.1rem;
    height: 1.1rem;
}
.page-top .page-top__arrow::after {
    width: 1.5px;
    height: 100%;
    top: 1px;
    background-color: var(--color-greenblue01);
}
.page-top .page-top__txt {
    font-size: 1.4rem;
    line-height: 1em;
    text-align: right;
    transform-origin: bottom right;
    transform: rotate(-90deg);
    display: block;
    white-space: nowrap;
    position: absolute;
    bottom: 2.75em;
    right: 0;
    color: var(--color-greenblue01);
    font-weight: 600;
}
.page-top a:hover .page-top__arrow {
    height: 100%;
}
/** page **/
.page-heading {
    padding-top: 6.8rem;
}
.page-heading .title {
    margin-top: 5em;
    margin-bottom: 2.5em;
}
.page-heading .breadcrumbs {
    display: none;
}
.page-heading__img {
    position: relative;
}
.page-heading__img::before,
.page-heading__img::after {
    content: "";
    display: block;
    width: 100%;
    background-repeat: no-repeat;
    background-size: 100% auto;
    position: absolute;
    left: 0;
    transform: scaleX(1.01);
}
.page-heading__img::before {
    background-image: url('../images/mask-top_sp.svg');
    background-position: top center;
    aspect-ratio: 1 / 0.061;
    top: 0;
}
.page-heading__img::after {
    background-image: url('../images/mask-btm_sp.svg');
    background-position: bottom -1px center;
    aspect-ratio: 1 / 0.066;
    bottom: 0;
}
@media only screen and (max-width:767px){
    body.admin-bar .header {
        top: 46px;
    }
    .header__nav,.header__button {
        display: none;
    }
    .nav_open .header .header__area {
        position: fixed;
        top: 0;
        left: 0;
        background-color: rgb(255, 255, 255, .5);
    }
    .nav_open .hamburger__nav {
        padding-top: 4.25em;
    }
    .hamburger__nav-inner.container {
        padding: 0;
    }
    .hamburger__nav-btn {
        padding: 0 1em;
    }
    .hamburger__nav .menu-nav {
        border-bottom: 1px solid rgba(0, 0, 0, .5);
    }
    .menu-nav .menu-nav__links li {
        border-top: 1px solid rgba(0, 0, 0, .5);
    }
    .menu-nav .menu-nav__links li > ul > li {
        padding-left: 1.25em;
    }
    .menu-nav .menu-nav__links li a {
        padding: 1.5em 1.6rem;
        position: relative;
    }
    .menu-nav .menu-nav__links li a:after {
        content: "→";
        display: inline-block;
        position: absolute;
        right: 1.6rem;
        top: 50%;
        transform: translateY(-50%);
    }
    .breadcrumbs {
        text-align: right;
        margin-bottom: 1em;
    }
    .breadcrumbs .breadcrumbs__links {
        font-size: 1.4rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    .footer__nav {
        width: calc(100% + 2em);
        transform: translateX(-1em);
        border-bottom: 1px solid rgba(255, 255, 255, .5);
    }
    .footer__nav .toggle {
        display: block;
        border-top: 1px solid rgba(255, 255, 255, .5);
        padding: 1em;
        position: relative;
    }
    .footer__nav .toggle span {
        font-size: 1.4rem;
        cursor: pointer;
        display: block;
    }
    .footer__nav .toggle::before {
       content: "";
       display: block;
       width: 1.2em;
       height: 1.2em;
       border: 1px solid rgba(255, 255, 255, .5);
       border-radius: 50%;
       position: absolute;
       top: 50%;
       right: 1.6rem;
       transform: translateY(-50%);
    }
    .footer__nav span.toggle__btn::before,
    .footer__nav span.toggle__btn::after {
        content: "";
        display: block;
        border-radius: 1px;
        height: 1px;
        width: 1.2rem;
        background-color: white;
        position: absolute;
        top: calc(50% - 1px);
        right: calc(1.9rem + 1px);
    }
    .footer__nav span.toggle__btn::after {
        transform: rotate(90deg);
        transition: .3s;
    }
    .footer__nav .active span.toggle__btn::after {
        transform: rotate(0deg);
    }
    .footer__nav .menu-nav {
        display: none;
    }
    .footer__nav .menu-nav .menu-nav__links li {
        border-top: 1px solid rgba(255, 255, 255, .5);
    }
    .fix__button-sp {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 1px;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 100;
        transform: translateY(100%);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        pointer-events: none;
    }
    .fixed.fix__button-sp {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .fix__button-sp li a {
        font-size: 1.2rem;
        line-height: 1em;
        color: white;
        display: block;
        text-align: center;
        padding: 2em 0;
        border-top-left-radius: .5em;
        border-top-right-radius: .5em;
        background-color: rgb(0, 0, 0, .8);
    }
    .page-top {
        bottom: 4em;
    }
    /** page **/
    .page-heading__img {
        width: 100vw;
        transform: translateX(-1em);
    }
    .page-heading__img.--fit-sp,
    .swiper-container picture.--fit-sp {
        height: 26.4rem;
    }
    .--fit-sp {
        position: relative;
        display: block;
    }
    .--fit-sp img {
        max-width: auto !important;
        height: 100% !important;
        object-fit: cover;
    }
    .media-content.--lay-img01 picture {
        display: block;
        width: 100vw;
        transform: translateX(-1em);
    }
    .media-content.--lay-img01 .media-content__txt {
        margin-top: 2.5em;
    }
    .media-content.--lay-img02 .media-content__txt {
        margin-top: 1.5em;
    }
}
@media (min-width: 768px) {
    .container {
        width: calc(var(--content-max-width) / var(--rem-base) * 1rem);
        padding-left: 0;
        padding-right: 0;
    }
    .container.-outer {
        width: 100%;
        max-width: calc(var(--breakpoint-pc) / var(--rem-base) * 1rem);
    }
    .--space-btm12 { margin-bottom: 7.5em; }
    .media-full {
        width: 144rem;
        transform: translateX(-10.8rem);
    }
    .header .header__area {
        max-width: 144rem;
        margin: 0 auto;
        padding: 1.5em 2em;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: auto;
    }
    .header .header__logo {
        width: 24rem;
        margin: 0;
    }
    .header__g-nav {
        display: flex;
        align-items: center;
    }
    .header__nav {
        font-size: 1.4rem;
        padding-right: 1.5em;
    }
    .header__nav .header__nav-list {
        display: flex;
        column-gap: 1.5em;
        line-height: 1em;
    }
    .header__nav .header__nav-lang {
        display: flex;
        float: right;
        line-height: 1.6rem;
        margin-top: 1em;
    }
    .header__nav .header__nav-lang li {
        padding-left: .5em;
    }
    .header__nav .header__nav-lang li:first-child {
        border-right: 1px solid black;
        padding-right: .5em;
        padding-left: 0;
    }
    .header__nav .header__nav-lang li.active span,
    .header__nav .header__nav-lang li a {
        position: relative;
    }
    .header__nav .header__nav-lang li a::before,
    .header__nav .header__nav-lang li.active span::before {
        content: "";
        display: block;
        width: 100%;
        height: 1px;
        background-color: var(--color-greenblue01);
        position: absolute;
        bottom: -.25em;
        left: 0;
    }
    .header__nav .header__nav-lang li a::before {
        width: 0;
        transition: .3s;
    }
    .header__nav .header__nav-lang li a:hover::before {
        width: 100%;
    }
    .header__nav div.header__nav-lang a {
        border: 1px solid white;
        padding: .25em .5em;
        font-size: 1.4rem;
    }
    .header__button a {
        display: block;
        background-color: var(--color-greenblue01);
        font-size: 1.4rem;
        line-height: 1em;
        padding: 1.25em 2em;
        border-radius: 2em;
        color: white;
    }
    .hamburger__nav .menu-nav {
        margin-top: 3.5em;
    }
    .hamburger__info {
        display: flex;
        align-items: center;
        justify-content: center;
        column-gap: 2em;
        margin: 3.5em 0 5em 0;
    }
    .hamburger__info-tel {
        width: 28.7rem;
        display: block;
        text-align: center;
    }
    .hamburger__info-tel .tel {
        font-size: 1.5em;
    }
    .hamburger__info-tel p {
        font-size: 1.2rem;
    }
    .hamburger__info-tel.--page-en {
        width: 30rem;
    }
    .hamburger__nav-btn {
        grid-template-columns: repeat(2, 28.8rem);
        row-gap: 0;
        column-gap: 2em;
        margin: 0;
    }
    .hamburger__nav-insta {
        width: 3.75em;
    }
    .nav_open .header {
        height: auto;
    }
    /** menu **/
    .menu-nav {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        column-gap: 1.5em;
    }
    .menu-nav .menu-nav__links {
        border-left: 1px solid rgba(0, 0, 0, .5);
        padding-left: 1em;
    }
    .menu-nav .menu-nav__links li > ul > li {
        margin-left: 1.25em;
    }
    .menu-nav .menu-nav__links a {
        line-height: 2em;
    }
    /** footer **/
    .footer__info {
        border-top: 1px solid rgba(255, 255, 255, .5);
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: row-reverse;
        padding-top: 2.5em;
    }
    .footer__info .footer__info-links {
        width: 60rem;
    }
    .footer__info-logo img {
        margin-top: 0;
    }
    .footer__info .footer__info-txt {
        width: 56rem;
        line-height: 1em;
    }
    .footer__info-logo img {
        width: 31.9rem;
    }
    .footer__info .footer__info-txt .footer__info-addr {
        margin: 1.5em 0;
        line-height: 2em;
    }
    .footer__info .footer__info-txt .footer__info-addr.--page-en p {
        text-align: left;
        display: inline-block;
        margin: 0 auto;
    }
    .footer__info-sns {
        margin-top: 2em;
    }
    .footer__info-sns .bnr-insta .bnr-insta__ttl {
        width: 49.4rem;
    }
    .footer__info-sns .bnr-insta:hover::before {
        background-color: rgb(0, 0, 0, 0);
    }
    .footer__nav {
        padding: 5em 0 2.5em 0;
    }
    .footer__nav .menu-nav .menu-nav__links {
        border-left: 1px solid rgba(255, 255, 255, .5);
    }
    /** page **/
    .page-heading {
        padding-top: 12rem;
    }
    .page-heading .breadcrumbs {
        width: 144rem;
        display: block;
        margin: 0 auto;
        padding-right: 3em;
        text-align: right;
    }
    .page-heading .breadcrumbs .breadcrumbs__links {
        line-height: 1em;
        font-size: 1.4rem;
    }
    .page-heading .container {
        padding: 1px 0;
        position: relative;
    }
    .page-heading .title {
        margin-top: 6.5em;
        margin-bottom: 5em;
    }
    .page-heading__img::before {
        background-image: url('../images/mask-top.svg');
        aspect-ratio: 1 / 0.033;
    }
    .page-heading__img::after {
        background-image: url('../images/mask-btm.svg');
        aspect-ratio: 1 / 0.033;
    }
    .page-lead {
        padding-top: 7.5em;
        padding-bottom: 7.5em;
    }
    .media-content__wrap {
        gap: 7.5em;
    }
    .media-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .media-content picture {
        display: block;
        width: 50%;
    }
    .media-content.--lay-img01 picture img,
    .media-content.--lay-img02 picture img {
        min-width: 72rem;
        transform: translateX(-10.8rem);
    }
    .media-content.--lay-img01.--lay-reverse picture img,
    .media-content.--lay-img02.--lay-reverse picture img {
        transform: translateX(0);
    }
    .media-content.--lay-reverse {
        flex-direction: row-reverse;
    }
    .media-content.--lay-img01 .media-content__txt:has(.media-content__lead),
    .media-content.--lay-img02 .media-content__txt {
        display: block;
        width: 30em;
    }
}

.fade-in {
    opacity: 0;
    transition: opacity 1.2s ease;
}
.bg-fade {
    opacity: 0;
    transition: opacity 5s ease;
}
.fade-in.inview,.bg-fade.inview {
    opacity: 1;
}
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 0.8s ease;
}
.fade-up.inview {
    opacity: 1;
    transform: translateY(0);
}
.char-ja {
    font-family: var(--font-base);
    font-weight: 500;
}
.char-en {
    font-family: var(--font-gfs);
    font-weight: 400;
}
.ttl-animation {
    display: inline-block;
    align-items: center;
    overflow: hidden;
    line-height: 1.6em;
}
.ttl-animation span {
    display: inline-block;
    transform: translate(0, 105%);
    transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
    white-space: pre;
}
.ttl-animation.inview span {
    transform: translate(0, 0);
}
.text-animation .char-ja,
.text-animation .char-en {
    margin-right: .1em;
}
.text-animation span:last-child {
    margin-right: 0;
}
.button {
    text-align: center;
    border-radius: 2em;
    padding: 1em 0;
    line-height: 1em;
    background-color: transparent;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease;
    position: relative;
    display: block;
}
.button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    aspect-ratio: 1/1;
    width: 0;
    height: 0;
    background-color: rgba(96, 171, 183, .2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: none;
    z-index: -1;
}
.button:hover::before {
    animation: expandCircle 0.8s ease-in-out forwards;
}
.button01 .button,.button02 .button,.button-link .button {
    width: 100%;
    border: 1px solid var(--color-gray);
    margin: 0 auto;
}
.button02 .button {
    background-color: var(--color-gray);
    color: white;
}
@keyframes expandCircle {
    0% {
        width: 0;
        height: 0;
    }
    40% {
        width: 1.5em;
        height: 1.5em;
    }
    60% {
        width: 0.5em;
        height: 0.5em;
    }
    100% {
        width: 200%;
        height: 400%;
    }
}
.button span {
    display: inline-block;
    padding-right: 2em;
    position: relative;
    margin: 0 auto;
}
.button span::after {
    content: "→";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.button-link .button span {
    padding-right: 1em;
}
.button-link .button span::after {
    content: "";
    width: 1em;
    height: 1em;
    background-image: url('../images/icon_window.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}
/** bg **/
.bg-gray01 {
    background-image: url('../images/bg_gray02.jpg');
    background-size: 180px auto;
    position: relative;
    padding-top: var(--space-md);
    padding-bottom: var(--space-md);
}
.bg-gray01::before,.bg-gray01::after {
    content: "";
    display: block;
    width: 100%;
    height: var(--space-md);
    position: absolute;
    left: 0;
    background-repeat: no-repeat;
    background-size: 100%;
    transform: scaleX(1.01);
}
.bg-gray01::before {
    background-image: url('../images/bg-nami-top_sp.svg');
    background-position: top center 50%;
    border-top: 1px solid white;
    top: -1px;
}
.bg-gray01::after {
    background-image: url('../images/bg-nami-btm_sp.svg');
    background-position: bottom center;
    bottom: -1px;
}
.bg-gray01.bg-gray01-btmno::after {
    display: none;
}
.bg-gray01.bg-gray01-topno::before {
    display: none;
}
.page-line img {
  width: 100%;
}
/** box **/
.page-box__gray {
  background-image: url('../images/bg_gray02.png');
  background-size: 200px auto;
  padding: 5em 1em;
}
.page-box__ttl {
  font-size: 1.375em;
  line-height: 1.6em;
  text-align: center;
  margin-bottom: 4rem;
}
.btn-lay {
  margin-top: 2em;
  row-gap: 2em;
  display: flex;
  flex-direction: column;
}
.btn-lay.button01 .button {
  background-color: white;
  margin: 0;
}
/** table **/
table.detail-table {
  width: 100%;
  border-top: 1px solid #B3B3B3;
  margin-bottom: 1.5em;
}
table.detail-table th {
  font-weight: 500;
  font-size: 1.125em;
  text-align: left;
  line-height: 1em;
  padding: 1.5em 0;
}
table.detail-table td {
  border-bottom: 1px solid #B3B3B3;
  font-weight: 400;
  color: var(--color-gray);
  line-height: 2em;
}
table.detail-table td p,
table.detail-table td li {
  line-height: 2em;
}
/** img loop **/
.img-loop {
  width: 100vw;
  transform: translateX(-1em);
  display: block;
}
.img-loop .img-loop__track,.img-loop .img-loop__track--left {
  display: flex;
}
.img-loop .img-loop__track--left picture img {
  width: 100%;
}
.img-loop .img-loop__track--left picture {
  width: 28rem;
}
.img-loop .img-loop__track--left {
    animation: scroll-left 50s linear infinite;
}
@keyframes scroll-left {
    from { transform: translateX(0);}
    to {transform: translateX(-100%);}
}
/** lists **/
.aesthemenu-list {
  border-top: 1px solid #0000004D;
}
.list-col2__block:has(.aesthemenu-list) {
  border-bottom: 1px solid #0000004D;
}
.price-list__ttl {
  font-size: 1.8rem;
  line-height: 1.6em;
  font-weight: 500;
  color: var(--color-green01);
  padding-top: 2.4rem;
  padding-bottom: .5em;
}
.price-list__desc {
  padding-bottom: 1em;
}
.price-list,.price-list__desc {
  color: var(--color-gray);
  font-weight: 400;
  line-height: 2em;
}
.price-list li,dd.price-list {
  padding: 1em 0;
}
.price-list li::before,dd.price-list::before,
.price-list li:last-child::after,dd.price-list::after {
  content: "";
  height: 1px;
  width: 100%;
  background-image: url('../images/line_dot.svg?11');
  background-repeat: repeat-x;
  position: absolute;
  top: 0;
  left: 0;
}
.price-list li:last-child::after,dd.price-list::after {
  top: auto;
  bottom: 0;
}
.price-list.--border-btmnone li:last-child::after,
dd.price-list.--border-btmnone::after {
  display: none;
}
.price-list li,dd.price-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.price-list span.price {
  font-weight: 500;
  line-height: 1.6em;
}
.faq-list {
  width: 100%;
  border-top: 1px solid #B3B3B3;
  color: var(--color-gray);
}
.faq-list:last-child {
  border-bottom: 1px solid #B3B3B3;
}
.faq-list .faq-list__q {
  padding-left: 2.5em;
  padding-right: 2em;
  display: block;
  position: relative;
}
.faq-list .faq-list__q p {
  margin: 1.5em 0;
}
.faq-list .faq-list__q p::before {
  content: "Q.";
  font-family: var(--font-gfs);
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 2em;
  color: var(--color-greenblue01);
}
.faq-list .faq-list__a {
  border-top: 1px solid #B3B3B3;
}
.faq-list .faq-list__a > div::before {
  content: "A.";
  font-family: var(--font-gfs);
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 2em;
  color: var(--color-greenblue01);
}
.faq-list .faq-list__a > div {
  display: block;
  margin: 1.5em 0 1.5em 1em;
  position: relative;
  padding-left: 2.5em;
}
.faq-list .faq-list__a {
  color: var(--color-gray);
}
/** map **/
.map__wrap iframe {
    width: 100%;
    height: 46rem;
    filter: grayscale(100%);
}
/** swiper */
.swiper-button_in {
  position: relative;
  overflow: visible !important;
  width: 100%;
  padding-left: 1em;
  padding-right: 1em;
}
.swiper-button_in .swiper-container {
  overflow: hidden;
  display: block;
  width: 100%;
  max-width: 101.6rem;
  margin: 0 auto;
}
.swiper-button-next:after,.swiper-button-prev:after {
  display: none !important;
}
.swiper-button-prev,.swiper-button-next {
  content: "";
  display: block;
  background-image: url('../images/arrow_left.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 1.1em !important;
  height: 1.1em !important;
  position: absolute;
  left: -.75em !important;
  top: 50% !important;
  transform: translateY(-50%);
  color: black !important;
  z-index: 2;
}
.swiper-button-next {
  left: auto !important;
  right: -.75em !important;
  transform: translateY(-50%) rotate(180deg);
  transform-origin: center center;
}
.swiper-caption {
  text-align: center;
  margin-top: 1.5em;
}
.swiper-container.slide {
  overflow: hidden;
  display: block;
  position: relative;
}
.swiper-container .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 1.5em;
  bottom: 0;
}
.swiper-pagination-bullet {
  border: 1px solid var(--color-gray) !important;
  background-color: white !important;
  margin: 0 !important;
  opacity: 1 !important;
}
.swiper-pagination-bullet-active {
  background-color: var(--color-gray) !important;
}
.swiper-button_in:has(.swiper-pagination) .swiper-container {
  padding-bottom: calc(1.5em + .5em);
}
@media screen and (max-width: 768px) {
    table.detail-table th,table.detail-table td {
        display: block;
        width: 100%;
    }
    table.detail-table th {
        padding-bottom: 1em;
    }
    table.detail-table td {
        padding-bottom: 1.5em;
    }
    table.detail-table .tbl-inline-sp {
        width: 100%;
        display: table;
    }
    table.detail-table .tbl-inline-sp th,
    table.detail-table .tbl-inline-sp td {
        display: table-cell;
        width: auto;
        padding: 1.5em 0;
    }
    table.detail-table .tbl-inline-sp th {
        width: 5em;
        border-bottom: 1px solid #B3B3B3;
    }
    /** lists **/
    .list-col2__block:has(.aesthemenu-list):nth-child(1) {
        border-bottom: none;
    }
    /** map **/
    .map__wrap iframe {
      height: 20rem;
    }
}
@media screen and (min-width: 768px) {
    /** fix futton **/
    .fix__button-ai {
        display: inline-block;
        height: 20rem;
        width: 2em;
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 100;
    }
    .fix__button-ai a {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgba(0, 0, 0, .8);
        border-top-right-radius: .5em;
        border-bottom-right-radius: .5em;
        padding: 3rem 0.75em;
    }
    .fix__button-ai a span {
        display: inline-block;
        font-size: 1rem;
        line-height: 1em;
        color: white;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        -webkit-text-orientation: upright;
        text-orientation: upright;
        text-align: center;
        align-items: center;
        white-space: nowrap;
        margin: auto;
    }
    .button01 .button,.button02 .button,.button-link .button {
        width: 36rem;
    }
    .bg-gray01::before {
        background-image: url('../images/bg-nami-top.svg');
    }
    .bg-gray01::after {
        background-image: url('../images/bg-nami-btm.svg');
    }
    /** table **/
    table.detail-table th {
        border-bottom: 1px solid #B3B3B3;
        width: 25rem;
        padding-left: 1.6rem;
    }
    table.detail-table td {
        padding-top: 1.5em;
        padding-bottom: 1.5em;
    }
    table.detail-table td ul {
        margin: 1.5em 0;
    }
    /** img loop **/
    .img-loop {
        transform: translateX(-10.8rem);
        width: calc(100% + 21.6rem);
    }
    .img-loop .img-loop__track--left {
        animation: scroll-left 80s linear infinite;
    }
    .img-loop .img-loop__track--left picture {
       width: 43rem;
    }
    @keyframes scroll-left {
        from { transform: translateX(0);}
        to {transform: translateX(-100%);}
    }
    /** lists **/
    .list-col2 {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        align-items: start;
        column-gap: 8.4rem;
    }
    .price-list__ttl {
        padding: 3.2rem 3.2rem 2.4rem 3.2rem;
    }
    .price-list__desc {
        padding: 0 3.2rem 3.2rem 3.2rem;
    }
    dd.price-list,.price-list li {
        padding: 3.2rem;
    }
    /** box **/
    .page-box__gray {
        padding: 7.5em 6.5em;
    }
    .btn-lay {
        flex-direction: row;
        justify-content: center;
        column-gap: 5em;
        margin-top: 2.5em;
    }
    /**faq**/
    .faq-list .faq-list__q {
        padding-left: 3.5em;
    }
    .faq-list .faq-list__q p::before {
        left: 1.6rem;
    }
    .faq-list .faq-list__a > div {
        margin: 1.5em 0 1.5em 2.5em;
    }
    /** swiper **/
    .swiper-button_in {
        padding: 0;
    }
    .swiper-button-prev,.swiper-button-next {
        font-size: 2.5em !important;
        width: auto !important;
        height: 1em !important;
        line-height: 1em;
        background-image: none;
        left: 0 !important;
    }
    .swiper-button-next {
        right: 0 !important;
        left: auto !important;
    }
    .swiper-button-prev::before,.swiper-button-next::before {
        content: "←";
        display: block;
    }
    .swiper-button_in:has(.swiper-pagination) .swiper-container {
        padding-bottom: calc(2.5em + .5em);
    }
    .swiper-caption {
        margin-top: 2.5em;
    }
}
@charset "utf-8";
/*
Theme Name: the yukawa 2025
*/

/* 自動改行への対応 */
.post-body p {
	margin-top: 2em;
	margin-bottom: 2em;
}
.post-body p:first-child {
	margin-top: 0;
}
.post-body p:last-child {
	margin-bottom: 0;
}


