/*------------------------------------------------------------------------------ 
  Base
------------------------------------------------------------------------------*/
html {
  font-size: 62.5%;
  line-height: 1.7;
  --mouse-x: 0;
  --mouse-y: 0; }

@media screen and (min-width: 1280px) {
  .cursor-shadow {
    background: rgba(159, 160, 160, 0.3);
    border-radius: 50%;
    height: 30px;
    left: var(--mouse-x);
    opacity: 1;
    pointer-events: none;
    position: fixed;
    top: var(--mouse-y);
    transform: translate(-50%, -50%);
    transition: top .5s ease-out, left .5s ease-out;
    width: 30px;
    z-index: 999; } }

[v-cloak] {
  display: none; }

*,
*:before,
*:after {
  box-sizing: border-box; }

body {
  color: #191a1a;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(15px, 2vw, 16px);
  letter-spacing: .05em; }

.en {
  font-family: "Cormorant Garamond", serif; }

.uppercase {
  text-transform: uppercase; }

a {
  color: #191a1a;
  text-decoration: none;
  transition: .3s; }
  a:hover {
    opacity: .8; }

h1 {
  font-size: clamp(24px, 3vw, 26px); }

h2 {
  font-size: clamp(22px, 2.5vw, 24px); }

h3 {
  font-size: clamp(20px, 2vw, 22px); }

h4 {
  font-size: clamp(18px, 2vw, 20px); }

h5 {
  font-size: clamp(16px, 2vw, 17px); }

h6 {
  font-size: clamp(15px, 2vw, 16px); }

ul {
  list-style: none;
  margin: 0;
  padding: 0; }

.disc {
  list-style: disc;
  padding-left: clamp(20px, 3vw, 40px); }

.in-bl {
  display: inline-block; }

img {
  height: auto;
  vertical-align: bottom;
  width: 100%; }

.container {
  padding: 0 30px; }
  @media screen and (min-width: 768px) {
    .container {
      margin: 0 auto;
      max-width: 1300px;
      padding: 0;
      width: 80%; } }

.max-width {
  margin: 0 auto;
  max-width: 100%;
  width: 1600px; }

@media screen and (min-width: 1025px) {
  .sp {
    display: none !important; } }

@media screen and (min-width: 768px) {
  .tab-under {
    display: none !important; } }

@media screen and (max-width: 767px) {
  .tab-over {
    display: none !important; } }

@media screen and (max-width: 1024px) {
  .pc {
    display: none !important; } }

.grecaptcha-badge {
  visibility: hidden; }

/*------------------------------------------------------------------------------ 
  Common
------------------------------------------------------------------------------*/
/* Flex
-----------------------------------------------------------*/
.flex {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  row-gap: clamp(20px, 3vw, 40px); }

.between {
  justify-content: space-between; }

.around {
  justify-content: space-around; }

/* Column
-----------------------------------------------------------*/
@media screen and (min-width: 768px) {
  .cols {
    align-items: center;
    display: flex;
    flex-wrap: wrap; } }

@media screen and (min-width: 768px) {
  .col-between {
    justify-content: space-between; } }

/* Pc Flex
-----------------------------------------------------------*/
@media screen and (min-width: 1025px) {
  .pc-flex {
    align-items: center;
    display: flex;
    flex-wrap: wrap; } }

@media screen and (min-width: 1025px) {
  .pc-between {
    justify-content: space-between; } }

@media screen and (min-width: 1025px) {
  .pc-around {
    justify-content: space-around; } }

/* Grid
-----------------------------------------------------------*/
.grid {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr;
  gap: 45px 30px; }
  @media (min-width: 768px) {
    .grid {
      grid-template-columns: repeat(2, 1fr); } }

/* Table
-----------------------------------------------------------*/
table {
  width: 100%; }
  table th,
  table td {
    padding: clamp(15px, 2vw, 20px); }
  table th {
    font-weight: 500; }

/* Cta
-----------------------------------------------------------*/
.cta {
  align-items: stretch;
  row-gap: 30px; }
  @media screen and (min-width: 768px) {
    .cta {
      margin: auto;
      max-width: 1000px;
      width: 90%; } }
  .cta li {
    width: 100%; }
    @media screen and (max-width: 767px) {
      .cta li {
        height: 100px; } }
    @media screen and (min-width: 768px) {
      .cta li {
        margin: 0;
        width: 45%; } }
    .cta li a {
      align-items: center;
      border: 1px solid #fff;
      color: #fff;
      display: flex;
      height: 100%;
      justify-content: center;
      padding: clamp(25px, 4vw, 40px);
      position: relative;
      text-align: center; }
      @media screen and (max-width: 767px) {
        .cta li a {
          margin: auto;
          max-width: 350px;
          width: 85%; } }
      .cta li a:hover {
        border-color: #9fa0a0;
        opacity: 1; }
        .cta li a:hover:after {
          width: 10%; }
          @media screen and (min-width: 768px) {
            .cta li a:hover:after {
              width: 15%; } }
      .cta li a:before, .cta li a:after {
        content: '';
        height: 1px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%); }
      .cta li a:before {
        background: #fff;
        right: 0;
        width: 10%; }
        @media screen and (min-width: 768px) {
          .cta li a:before {
            width: 15%; } }
      .cta li a:after {
        background: #c5e5e0;
        left: 90%;
        transition: width .4s ease-out;
        width: 0; }
        @media screen and (min-width: 768px) {
          .cta li a:after {
            left: 85%; } }
  .cta .web .en {
    font-size: clamp(24px, 2.5vw, 28px);
    font-weight: 600; }
  .cta .web .jp {
    font-size: clamp(15px, 1vw, 16px); }
  .cta .tel .en {
    font-size: clamp(22px, 2vw, 28px); }
  .cta .tel .jp {
    font-size: clamp(21px, 2vw, 25px); }

/*------------------------------------------------------------------------------ 
  Loading
------------------------------------------------------------------------------*/
#loading {
  background: #fff;
  height: 100dvh;
  left: 0;
  opacity: 1;
  position: fixed;
  top: 0;
  transition: opacity .7s;
  width: 100%;
  z-index: 1000; }
  #loading img {
    left: 50%;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: opacity .7s ease-in-out;
    width: clamp(250px, 28vw, 300px); }

/*------------------------------------------------------------------------------ 
  Header
------------------------------------------------------------------------------*/
header {
  align-items: normal !important;
  left: 0;
  padding: 0 0 0 15px;
  position: fixed;
  top: 0;
  transition: all .4s ease;
  width: 100%;
  z-index: 50; }
  @media screen and (min-width: 1025px) {
    header {
      height: 75px; } }
  header.scrolled {
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 2px 4px rgba(101, 102, 102, 0.2); }
    header.scrolled .top-logo {
      filter: none;
      width: 110px; }
      @media screen and (min-width: 768px) {
        header.scrolled .top-logo {
          width: 130px; } }
      @media screen and (min-width: 1025px) {
        header.scrolled .top-logo {
          padding: 0 5px; } }
  header .top-logo,
  header .logo {
    align-items: center;
    display: flex;
    font-size: 2em;
    margin: 0;
    padding: 5px;
    transition: .3s; }
  header .top-logo {
    width: 180px; }
    @media screen and (max-width: 767px) {
      header .top-logo {
        filter: brightness(0) invert(1); } }
  header .logo {
    width: 110px; }
    @media screen and (min-width: 768px) {
      header .logo {
        width: 130px; } }
    @media screen and (min-width: 1025px) {
      header .logo {
        padding: 0 5px; } }
  header input[type="checkbox"] {
    display: none; }
  header input[type="checkbox"]:checked ~ .toggle span {
    width: 30px; }
    header input[type="checkbox"]:checked ~ .toggle span:first-of-type {
      top: 47%;
      transform: rotate(135deg); }
    header input[type="checkbox"]:checked ~ .toggle span:nth-of-type(2) {
      opacity: 0; }
    header input[type="checkbox"]:checked ~ .toggle span:last-of-type {
      bottom: 50%;
      transform: rotate(-135deg); }
  header input[type="checkbox"]:checked ~ nav {
    opacity: 1;
    visibility: visible; }
  header .toggle {
    height: 65px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 65px;
    z-index: 100; }
    header .toggle span {
      background: #191a1a;
      border-radius: 2px;
      display: block;
      height: 2px;
      position: absolute;
      right: 13px;
      transition: .2s; }
      @media screen and (min-width: 768px) {
        header .toggle span {
          right: 25px; } }
      header .toggle span:first-of-type {
        top: 37%;
        width: 40px; }
      header .toggle span:nth-of-type(2) {
        top: 50%;
        width: 30px; }
      header .toggle span:last-of-type {
        bottom: 35%;
        width: 20px; }
  @media screen and (max-width: 1024px) {
    header nav {
      background: #dee0e0;
      height: 100vh;
      left: 0;
      opacity: 0;
      overflow-x: hidden;
      overflow-y: scroll;
      padding: 70px 0;
      position: absolute;
      top: 0;
      transition: .2s;
      visibility: hidden;
      width: 100%; } }
  @media screen and (min-width: 1025px) {
    header nav {
      height: 100%;
      max-width: 900px;
      width: 78%; } }
  @media screen and (max-width: 1024px) {
    header nav #nav {
      position: relative; }
      header nav #nav:after {
        background: #9fa0a0;
        content: '';
        height: 350px;
        opacity: .25;
        position: absolute;
        right: 10%;
        top: 50%;
        transform: translateY(-50%);
        width: 75px;
        mask-image: url(../img/header/logo-txt.svg) no-repeat center/cover;
        -webkit-mask: url(../img/header/logo-txt.svg) no-repeat center/cover; } }
  header nav #nav li label {
    color: #656666; }
    @media screen and (max-width: 1024px) {
      header nav #nav li label {
        display: block;
        line-height: 1.4;
        padding: 17px 35px; } }
    header nav #nav li label .en {
      display: block;
      font-size: 23px;
      font-weight: 500;
      text-transform: uppercase; }
      @media screen and (min-width: 1025px) {
        header nav #nav li label .en {
          font-size: 19px; } }
    header nav #nav li label .jp {
      font-size: 13px; }
      @media screen and (min-width: 1025px) {
        header nav #nav li label .jp {
          font-size: 12px; } }
  header nav #nav li a {
    color: #656666;
    display: block;
    line-height: 1.4;
    padding: 17px 35px; }
    @media screen and (min-width: 1025px) {
      header nav #nav li a {
        line-height: 1.2;
        padding: 0;
        text-align: center; } }
    header nav #nav li a .en {
      display: block;
      font-size: 23px;
      font-weight: 500;
      text-transform: uppercase; }
      @media screen and (min-width: 1025px) {
        header nav #nav li a .en {
          font-size: 19px; } }
    header nav #nav li a .jp {
      font-size: 13px; }
      @media screen and (min-width: 1025px) {
        header nav #nav li a .jp {
          font-size: 12px; } }
  header nav #nav .reserve-btn {
    height: 75px; }
    header nav #nav .reserve-btn a {
      background: #dee0e0;
      color: #656666;
      display: flex;
      height: 100%;
      justify-content: center;
      position: relative;
      width: 80px; }
      header nav #nav .reserve-btn a:hover {
        background: #656666;
        opacity: 1; }
        header nav #nav .reserve-btn a:hover:before {
          background: #fff; }
        header nav #nav .reserve-btn a:hover span {
          color: #fff; }
      header nav #nav .reserve-btn a:before {
        background: #656666;
        content: '';
        height: 23px;
        left: 50%;
        position: absolute;
        top: 20px;
        transform: translateX(-50%);
        transition: .3s;
        width: 23px;
        mask-image: url(../img/common/calendar.svg) no-repeat center/cover;
        -webkit-mask: url(../img/common/calendar.svg) no-repeat center/cover; }
      header nav #nav .reserve-btn a span {
        font-size: 11px;
        margin: auto 0 12px;
        transition: .3s; }
  header nav .cta-area {
    background: #f5f7f7;
    border: 1px solid #9fa0a0;
    border-radius: 6px;
    padding: 10px 0;
    margin: 40px auto 0;
    max-width: 400px;
    width: 85%; }
    header nav .cta-area li:first-of-type {
      width: 40px; }
      header nav .cta-area li:first-of-type a {
        background: #fff;
        border-radius: 10px; }
    header nav .cta-area li:not(:first-of-type) {
      width: 50px; }
      header nav .cta-area li:not(:first-of-type) a {
        background: #fff;
        border: 1px solid #656666;
        border-radius: 50%;
        padding: 12px; }
    header nav .cta-area li a {
      display: block; }

/*------------------------------------------------------------------------------ 
  Hero
------------------------------------------------------------------------------*/
@keyframes bounce {
  0%,
    100% {
    transform: translate(-50%, 0); }
  50% {
    transform: translate(-50%, 12px); } }
#hero {
  align-items: normal;
  background: linear-gradient(to right, #f5f7f7 30%, #e9f2f0 45%);
  height: 100vh;
  overflow: hidden;
  position: relative;
  width: 100%; }
  @media screen and (min-width: 768px) {
    #hero:before {
      bottom: clamp(30px, 3vw, 60px);
      color: #6db3a8;
      content: 'Nail Salon';
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(85px, 8vw, 110px);
      font-weight: 600;
      height: max-content;
      left: 3%;
      line-height: 1;
      position: absolute;
      writing-mode: vertical-rl; } }
  @media screen and (min-width: 768px) {
    #hero:after {
      background: url(../img/header/hero/bg.png) no-repeat 50% 10%/contain;
      content: '';
      height: 100%;
      max-width: 650px;
      max-width: 450px;
      position: absolute;
      right: 80px;
      top: 0;
      width: 80%;
      width: 50%; } }
  @media screen and (min-width: 1180px) {
    #hero:after {
      background: url(../img/header/hero/bg.png) no-repeat 50% 20%/contain; } }
  @media (min-width: 1280px) and (min-height: 900px) {
    #hero:after {
      background: url(../img/header/hero/bg.png) no-repeat 50% 20%/contain; } }
  @media screen and (min-width: 1920px) {
    #hero:after {
      max-width: 700px; } }
  #hero .left-cont {
    height: 100%;
    position: relative;
    width: calc(100% - 65px); }
    @media screen and (min-width: 768px) {
      #hero .left-cont {
        width: calc(100% - 80px); } }
    #hero .left-cont .carousel {
      height: 100%; }
      @media screen and (max-width: 767px) {
        #hero .left-cont .carousel {
          overflow: hidden; } }
      @media screen and (min-width: 768px) {
        #hero .left-cont .carousel .slides {
          border-radius: 7px;
          overflow: hidden;
          position: absolute; } }
      #hero .left-cont .carousel .slides img {
        height: 100%;
        left: 100%;
        object-fit: cover;
        opacity: 1;
        position: absolute;
        top: 0;
        transition: none;
        width: 100%;
        z-index: 1; }
      #hero .left-cont .carousel .slides img.active {
        z-index: 2; }
      #hero .left-cont .carousel .left-slide {
        height: 100%;
        position: relative;
        width: 100%; }
        @media (min-width: 768px) {
          #hero .left-cont .carousel .left-slide {
            aspect-ratio: 5 / 7;
            height: auto;
            left: 20%;
            top: 18%;
            width: 280px; } }
        @media (min-width: 768px) and (min-height: 1024px) {
          #hero .left-cont .carousel .left-slide {
            left: 40px;
            height: 43%;
            top: 13%;
            width: auto; } }
        @media screen and (min-width: 1025px) {
          #hero .left-cont .carousel .left-slide {
            left: 16%;
            top: 20%;
            width: 320px; } }
        @media screen and (min-width: 1280px) {
          #hero .left-cont .carousel .left-slide {
            height: 70%;
            left: 15%;
            top: 17%;
            width: auto; } }
        @media (min-width: 1280px) and (min-height: 900px) {
          #hero .left-cont .carousel .left-slide {
            height: 58%; } }
        @media screen and (min-width: 1920px) {
          #hero .left-cont .carousel .left-slide {
            height: 70%; } }
      #hero .left-cont .carousel .right-slide {
        aspect-ratio: 3 / 4;
        height: 32%;
        right: 30px;
        top: 53%; }
        @media screen and (min-width: 1025px) {
          #hero .left-cont .carousel .right-slide {
            height: 50%;
            left: 52%;
            right: auto;
            top: 42%; } }
        @media screen and (min-width: 1280px) {
          #hero .left-cont .carousel .right-slide {
            left: 50%;
            height: 47%;
            top: 47%; } }
        @media (min-width: 1280px) and (min-height: 1024px) {
          #hero .left-cont .carousel .right-slide {
            left: 53%; } }
        @media screen and (min-width: 1920px) {
          #hero .left-cont .carousel .right-slide {
            left: 50%; } }
    #hero .left-cont h1 {
      bottom: 10px;
      color: #fff;
      font-size: 15px;
      font-weight: 400;
      line-height: 1.5;
      margin: 0;
      position: absolute;
      right: 15px;
      text-align: right;
      z-index: 10; }
      @media screen and (max-width: 767px) {
        #hero .left-cont h1 {
          text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8); } }
      @media screen and (min-width: 768px) {
        #hero .left-cont h1 {
          color: #656666;
          font-size: 14px;
          margin: 0;
          right: 30px; } }
      #hero .left-cont h1 span {
        font-size: 17px;
        font-weight: 500; }
        @media screen and (min-width: 768px) {
          #hero .left-cont h1 span {
            font-size: 16px; } }
  #hero .right-cont {
    background: #fff;
    position: relative;
    width: 65px; }
    @media screen and (min-width: 768px) {
      #hero .right-cont {
        width: 80px; } }
    #hero .right-cont .scroll-dwn {
      animation: bounce 3s infinite;
      bottom: clamp(150px, 15vw, 180px);
      left: 50%;
      position: absolute;
      transform: translateX(-50%);
      writing-mode: vertical-rl;
      z-index: 10; }
      #hero .right-cont .scroll-dwn .scroll-link .txt {
        display: inline-block;
        font-size: 16px;
        letter-spacing: 8px;
        position: relative; }
        #hero .right-cont .scroll-dwn .scroll-link .txt:after {
          background: #9fa0a0;
          content: '';
          height: 100%;
          left: 50%;
          position: absolute;
          top: calc(100% + 15px);
          transform: translateX(-50%);
          width: 1px; }

/*------------------------------------------------------------------------------ 
  Sidebar
------------------------------------------------------------------------------*/
#sidebar {
  position: fixed;
  right: 26px;
  top: 35%;
  width: 150px;
  z-index: 40; }
  @media (max-width: 1024px) {
    #sidebar {
      display: none; } }
  #sidebar .sidebar-li {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    gap: 30px; }
    #sidebar .sidebar-li li {
      height: 30px;
      width: 100%; }
      #sidebar .sidebar-li li a {
        display: block;
        height: 100%;
        margin-left: auto;
        position: relative;
        text-align: right;
        transition: background-color .2s; }
        #sidebar .sidebar-li li a:before, #sidebar .sidebar-li li a:after {
          content: '';
          position: absolute;
          transform-origin: center;
          transition: .2s; }
        #sidebar .sidebar-li li a:before {
          background: #84d9cc;
          border-radius: 50%;
          height: 40px;
          right: -6.3px;
          top: -6.5px;
          transform: scale(0, 0);
          width: 40px; }
        #sidebar .sidebar-li li a:after {
          background: #9fa0a0;
          height: 27px;
          right: 0;
          transform: scale(1, 1);
          top: 0;
          width: 27px; }
        #sidebar .sidebar-li li a:hover {
          opacity: 1; }
          #sidebar .sidebar-li li a:hover:before {
            opacity: 1;
            transform: scale(1, 1); }
          #sidebar .sidebar-li li a:hover:after {
            background: #fff;
            transform: scale(0.7, 0.7); }
          #sidebar .sidebar-li li a:hover .txt {
            opacity: 1;
            transform: scale(1, 1); }
        #sidebar .sidebar-li li a .txt {
          color: #84d9cc;
          display: block;
          font-size: 16px;
          opacity: 0;
          position: absolute;
          right: 40px;
          text-align: center;
          top: 0;
          transform-origin: right top;
          transform: scale(0, 1);
          transition: .2s; }
    #sidebar .sidebar-li .hpb a:hover:after {
      background: #84d9cc;
      transform: scale(0.9, 0.9); }
    #sidebar .sidebar-li .hpb a:before {
      display: none; }
    #sidebar .sidebar-li .hpb a:after {
      mask-image: url(../img/common/cta/hpb.svg) no-repeat center/cover;
      -webkit-mask: url(../img/common/cta/hpb.svg) no-repeat center/cover; }
    #sidebar .sidebar-li .tel a:after {
      mask-image: url(../img/common/cta/tel.svg) no-repeat center/cover;
      -webkit-mask: url(../img/common/cta/tel.svg) no-repeat center/cover; }
    #sidebar .sidebar-li .insta a:after {
      mask-image: url(../img/common/cta/insta.svg) no-repeat center/cover;
      -webkit-mask: url(../img/common/cta/insta.svg) no-repeat center/cover; }

/*------------------------------------------------------------------------------ 
  Fade
------------------------------------------------------------------------------*/
.fade {
  opacity: 0;
  transition: opacity 2s, transform .7s ease-out, filter 1s; }
  .fade.blur {
    filter: blur(10px); }
    .fade.blur.visible {
      filter: blur(0); }
  .fade.under {
    transform: translateY(20px); }
    .fade.under.visible {
      transform: translate(0); }
  .fade.left {
    transform: translateX(-20px);
    transition-delay: .5s; }
    .fade.left.visible {
      transform: translateX(0); }
  .fade.right {
    transform: translateX(20px);
    transition-delay: .5s; }
    .fade.right.visible {
      transform: translate(0); }
  .fade.visible {
    opacity: 1; }

.fade.delay {
  transition-delay: 2.3s; }

@media screen and (max-width: 767px) {
  .fade.sp-delay {
    transition-delay: 2s; } }

@media screen and (min-width: 768px) {
  .fade.pc-delay {
    transition-delay: 2.3s; } }

/* After Fade
-----------------------------------------------------------*/
.ele-fade:before {
  transition: width 1s;
  width: 0; }

.fade-opacity:before {
  width: calc(100% + 100px); }

/*------------------------------------------------------------------------------ 
  Top Page
------------------------------------------------------------------------------*/
#top-page {
  /* Concept
  -----------------------------------------------------------*/
  /* Menu
  -----------------------------------------------------------*/
  /* Access
  -----------------------------------------------------------*/
  /* News
  -----------------------------------------------------------*/
  /* Contact
  -----------------------------------------------------------*/ }
  #top-page section {
    padding: clamp(70px, 9vw, 100px) 0; }
    #top-page section h2 {
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(50px, 7vw, 80px);
      font-weight: 600;
      letter-spacing: 3px;
      margin-top: 0;
      text-transform: uppercase; }
    #top-page section .view-btn {
      font-family: "Cormorant Garamond", serif;
      font-size: 20px;
      font-weight: bold;
      margin: auto 0 0 auto; }
      #top-page section .view-btn a {
        color: #9fa0a0;
        display: block;
        padding-left: 70px;
        position: relative; }
        #top-page section .view-btn a:hover {
          opacity: 1; }
          #top-page section .view-btn a:hover:before {
            width: 60px; }
        #top-page section .view-btn a:before {
          background: #9fa0a0;
          content: '';
          height: 1px;
          left: 0;
          position: absolute;
          top: 50%;
          transition: width .3s;
          transform: translateY(-50%);
          width: 50px; }
  #top-page #concept .container {
    max-width: 1000px; }
  @media screen and (min-width: 768px) {
    #top-page #concept .grid .left-cont h2 {
      text-align: center; } }
  #top-page #concept .grid .left-cont h3 {
    color: #5d9990; }
  #top-page #concept .grid .left-cont .en {
    margin-top: clamp(45px, 5vw, 60px); }
@keyframes scroll-left {
  0% {
    transform: translateY(0); }
  99.9%,
        100% {
    transform: translateY(-100%); } }
@keyframes scroll-right {
  0% {
    transform: translateY(0); }
  99.9%,
        100% {
    transform: translateY(100%); } }
  #top-page #menu {
    background: #f5f7f7;
    overflow: hidden;
    position: relative; }
    #top-page #menu .side-txt {
      color: #dee0e0;
      display: flex;
      font-size: clamp(25px, 4vw, 50px);
      height: 100%;
      line-height: 1.2;
      opacity: .7;
      position: absolute;
      top: 0;
      width: auto;
      z-index: 10; }
      #top-page #menu .side-txt .txt {
        display: flex;
        white-space: wrap;
        height: auto;
        height: 100%; }
    #top-page #menu .left-side {
      left: 6px;
      writing-mode: vertical-rl; }
      @media screen and (min-width: 768px) {
        #top-page #menu .left-side {
          left: 15px; } }
      #top-page #menu .left-side .txt {
        animation: scroll-left 30s infinite linear .5s both; }
    #top-page #menu .right-side {
      right: 6px;
      writing-mode: sideways-lr; }
      @media screen and (min-width: 768px) {
        #top-page #menu .right-side {
          right: 15px; } }
      #top-page #menu .right-side .txt {
        animation: scroll-right 30s infinite linear .5s both; }
    #top-page #menu h2 {
      color: #9fa0a0;
      font-size: clamp(65px, 9vw, 100px);
      font-weight: bold;
      letter-spacing: .1em;
      text-align: center; }
    @media screen and (max-width: 767px) {
      #top-page #menu #menu-li {
        margin: auto;
        width: 95%; } }
    #top-page #menu #menu-li .cont {
      gap: 20px clamp(30px, 4vw, 60px);
      margin: 0 auto clamp(70px, 9vw, 120px); }
      @media screen and (min-width: 768px) {
        #top-page #menu #menu-li .cont {
          align-items: flex-start;
          justify-content: space-around; } }
      @media screen and (min-width: 1025px) {
        #top-page #menu #menu-li .cont {
          width: 95%; } }
      #top-page #menu #menu-li .cont .img {
        position: relative;
        z-index: 1; }
        @media screen and (min-width: 768px) {
          #top-page #menu #menu-li .cont .img {
            margin-top: 30px; } }
        #top-page #menu #menu-li .cont .img:before {
          bottom: -100px;
          content: '';
          height: calc(100% + 50px);
          position: absolute;
          z-index: -1; }
          @media screen and (min-width: 768px) {
            #top-page #menu #menu-li .cont .img:before {
              bottom: -50px;
              height: calc(100% + 10px); } }
        @media screen and (max-width: 767px) {
          #top-page #menu #menu-li .cont .img img {
            display: block;
            margin: auto;
            width: 85%; } }
      @media screen and (min-width: 768px) {
        #top-page #menu #menu-li .cont:nth-of-type(odd) {
          grid-template-columns: 1fr 2fr; } }
      #top-page #menu #menu-li .cont:nth-of-type(odd) .img:before {
        right: -150px; }
      @media screen and (min-width: 768px) {
        #top-page #menu #menu-li .cont:nth-of-type(even) {
          grid-template-areas: "border img";
          grid-template-columns: 2fr 1fr; } }
      @media screen and (min-width: 768px) {
        #top-page #menu #menu-li .cont:nth-of-type(even) .border {
          grid-area: border; } }
      @media screen and (min-width: 768px) {
        #top-page #menu #menu-li .cont:nth-of-type(even) .img {
          grid-area: img; } }
      #top-page #menu #menu-li .cont:nth-of-type(even) .img:before {
        left: -150px; }
      #top-page #menu #menu-li .cont:first-of-type .img:before {
        background: #e9f2f0; }
      #top-page #menu #menu-li .cont:first-of-type .border h3 {
        border-color: #5d9990;
        color: #5d9990; }
      #top-page #menu #menu-li .cont:nth-of-type(2) .img:before {
        background: #e6eff2; }
      #top-page #menu #menu-li .cont:nth-of-type(2) .border h3 {
        border-color: #4e7380;
        color: #4e7380; }
      #top-page #menu #menu-li .cont:nth-of-type(3) .img:before {
        background: #f7eeeb; }
      #top-page #menu #menu-li .cont:nth-of-type(3) .border h3 {
        border-color: #e38e77;
        color: #e38e77; }
      #top-page #menu #menu-li .cont:last-of-type {
        margin-bottom: clamp(30px, 4vw, 50px); }
        @media screen and (min-width: 1280px) {
          #top-page #menu #menu-li .cont:last-of-type {
            margin-bottom: clamp(90px, 7vw, 100px); } }
        #top-page #menu #menu-li .cont:last-of-type .img:before {
          background: #f7f1eb; }
        #top-page #menu #menu-li .cont:last-of-type .border h3 {
          border-color: #e0a870;
          color: #e0a870; }
      #top-page #menu #menu-li .cont .border {
        border: 10px solid #fff;
        padding: 5px;
        position: relative;
        z-index: 1; }
        @media screen and (min-width: 1280px) {
          #top-page #menu #menu-li .cont .border {
            margin-bottom: 30px; } }
        #top-page #menu #menu-li .cont .border .box {
          background: #fff;
          display: flex;
          flex-direction: column;
          padding: clamp(20px, 2.5vw, 30px); }
          #top-page #menu #menu-li .cont .border .box h3 {
            border-bottom: 1px solid;
            margin-top: 0;
            padding-bottom: 7px; }
            @media screen and (min-width: 1025px) {
              #top-page #menu #menu-li .cont .border .box h3 {
                padding-bottom: clamp(10px, 1vw, 20px); } }
            #top-page #menu #menu-li .cont .border .box h3 .en {
              display: block;
              font-size: 16px;
              margin-bottom: clamp(5px, 1vw, 10px);
              text-transform: uppercase; }
              @media screen and (min-width: 1025px) {
                #top-page #menu #menu-li .cont .border .box h3 .en {
                  font-size: 28px; } }
            #top-page #menu #menu-li .cont .border .box h3 .jp {
              display: block;
              font-size: 18px;
              font-weight: 500; }
              @media screen and (min-width: 1025px) {
                #top-page #menu #menu-li .cont .border .box h3 .jp {
                  font-size: 17px; } }
          #top-page #menu #menu-li .cont .border .box .txt {
            margin: 0 auto clamp(15px, 2vw, 25px); }
            @media screen and (min-width: 768px) {
              #top-page #menu #menu-li .cont .border .box .txt {
                max-width: 520px;
                width: 90%; } }
            #top-page #menu #menu-li .cont .border .box .txt .en {
              margin-top: clamp(40px, 5vw, 50px); }
  #top-page #info {
    padding: 0; }
    #top-page #info .grid {
      align-items: normal;
      gap: 0; }
      #top-page #info .grid .left-cont {
        background: #dee0e0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: clamp(55px, 6vw, 75px) clamp(20px, 5vw, 60px) clamp(45px, 5vw, 60px); }
        #top-page #info .grid .left-cont h2 {
          font-size: clamp(40px, 5vw, 50px);
          font-weight: bold;
          margin-bottom: 1.5rem;
          text-align: center; }
        #top-page #info .grid .left-cont table {
          border-collapse: separate;
          border-spacing: 5px 20px; }
          #top-page #info .grid .left-cont table th {
            background: #f5f7f7;
            border-radius: 3px;
            font-weight: 500;
            padding: 5px; }
            @media screen and (min-width: 1280px) {
              #top-page #info .grid .left-cont table th {
                width: 120px; } }
          #top-page #info .grid .left-cont table td {
            padding-left: 10px; }
        #top-page #info .grid .left-cont .sns {
          display: flex;
          gap: clamp(20px, 3vw, 30px);
          justify-content: space-evenly;
          margin: clamp(15px, 2vw, 20px) 0 35px; }
          @media screen and (min-width: 1025px) {
            #top-page #info .grid .left-cont .sns {
              justify-content: flex-start;
              padding-left: 20px; } }
          #top-page #info .grid .left-cont .sns li a {
            display: block;
            padding-left: 40px;
            position: relative; }
            #top-page #info .grid .left-cont .sns li a:before {
              background: #656666;
              content: '';
              height: 28px;
              left: 0;
              position: absolute;
              top: 50%;
              transform: translateY(-50%);
              width: 28px; }
          #top-page #info .grid .left-cont .sns .hpb a:before {
            mask-image: url(../img/common/cta/hpb.svg) no-repeat center/cover;
            -webkit-mask: url(../img/common/cta/hpb.svg) no-repeat center/cover; }
          #top-page #info .grid .left-cont .sns .insta a:before {
            mask-image: url(../img/common/cta/insta.svg) no-repeat center/cover;
            -webkit-mask: url(../img/common/cta/insta.svg) no-repeat center/cover; }
        #top-page #info .grid .left-cont .view-btn a {
          color: #191a1a; }
          #top-page #info .grid .left-cont .view-btn a:before {
            background: #191a1a; }
      #top-page #info .grid .right-cont {
        position: relative; }
        @media screen and (max-width: 767px) {
          #top-page #info .grid .right-cont {
            height: clamp(300px, 53vw, 400px); } }
        #top-page #info .grid .right-cont:after {
          background: url(../img/top/info.png) no-repeat 50% 50%/cover;
          content: '';
          height: 100%;
          left: 0;
          position: absolute;
          top: 0;
          width: 100%; }
        #top-page #info .grid .right-cont img {
          object-fit: cover;
          height: 100%; }
  #top-page #news {
    margin-bottom: 5px; }
    @media screen and (min-width: 768px) {
      #top-page #news .container {
        align-items: normal;
        gap: clamp(65px, 7vw, 80px);
        grid-template-columns: 1fr; } }
    @media screen and (min-width: 1280px) {
      #top-page #news .container {
        gap: 40px;
        grid-template-columns: 1fr 2fr;
        width: 85%; } }
    #top-page #news .container h2 {
      font-size: clamp(34px, 7vw, 70px);
      margin-bottom: 0; }
      @media screen and (min-width: 1280px) {
        #top-page #news .container h2 {
          font-size: clamp(40px, 3.5vw, 50px); } }
    #top-page #news .container .news-li article {
      border-bottom: 1px solid #dee0e0;
      padding-bottom: 25px; }
      #top-page #news .container .news-li article:first-of-type {
        margin-bottom: 60px; }
        @media screen and (min-width: 768px) {
          #top-page #news .container .news-li article:first-of-type {
            margin-bottom: 35px; } }
      #top-page #news .container .news-li article a:hover {
        opacity: 1; }
        #top-page #news .container .news-li article a:hover .thumb img {
          transform: scale(1.03); }
        #top-page #news .container .news-li article a:hover .view-btn span:before {
          width: 60px !important; }
      @media screen and (min-width: 768px) {
        #top-page #news .container .news-li article a {
          gap: 40px;
          grid-template-columns: 1fr 2fr; } }
      #top-page #news .container .news-li article a .thumb {
        border-radius: 7px;
        overflow: hidden; }
        #top-page #news .container .news-li article a .thumb img {
          aspect-ratio: 5 / 3;
          object-fit: cover;
          transition: .3s; }
      #top-page #news .container .news-li article a .right-cont .meta time {
        color: #656666;
        font-size: 15px; }
      #top-page #news .container .news-li article a .right-cont .meta h3 {
        font-size: 16px;
        font-weight: 500;
        margin: 10px 0 0; }
      #top-page #news .container .news-li article a .right-cont .excerpt {
        color: #9fa0a0;
        margin: 30px 0; }
      #top-page #news .container .news-li article a .right-cont .view-btn {
        color: #656666;
        text-align: right; }
        #top-page #news .container .news-li article a .right-cont .view-btn span {
          display: inline-block;
          padding-left: 70px;
          position: relative; }
          #top-page #news .container .news-li article a .right-cont .view-btn span:before {
            background: #9fa0a0;
            content: '';
            height: 1px;
            left: 0;
            position: absolute;
            top: 50%;
            transition: width .3s;
            transform: translateY(-50%);
            width: 50px; }
  #top-page #reservation {
    padding: clamp(90px, 13vw, 150px) 0;
    position: relative; }
    #top-page #reservation:before, #top-page #reservation:after {
      content: '';
      height: 100%;
      left: 0;
      position: absolute;
      top: 0;
      width: 100%;
      z-index: -1; }
    #top-page #reservation:before {
      background: url(../img/top/cta.jpg) no-repeat 50% 50%/cover;
      background: url(../img/top/1cta.jpg) no-repeat 95% 90%/cover; }
    #top-page #reservation:after {
      background: rgba(25, 26, 26, 0.75); }
    #top-page #reservation h2 {
      color: #fff;
      line-height: .7;
      margin-bottom: clamp(50px, 7vw, 90px);
      text-align: center; }
      #top-page #reservation h2 .en {
        display: block;
        font-size: clamp(35px, 7vw, 80px); }
      #top-page #reservation h2 .jp {
        font-size: clamp(16px, 2vw, 20px);
        font-weight: 500; }

/*------------------------------------------------------------------------------ 
  Sub Hero
------------------------------------------------------------------------------*/
#sub-hero {
  margin-top: 61px;
  position: relative; }
  @media screen and (min-width: 768px) {
    #sub-hero {
      margin-top: 72px;
      padding-left: clamp(25px, 3vw, 40px); } }
  @media screen and (min-width: 1025px) {
    #sub-hero {
      margin-top: 75px;
      width: calc(100% - 80px); } }
  #sub-hero:before, #sub-hero:after {
    content: '';
    left: 0;
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%; }
  #sub-hero:before {
    z-index: -2; }
    @media screen and (min-width: 768px) {
      #sub-hero:before {
        left: auto;
        right: 0;
        width: 80%; } }
  #sub-hero:after {
    background: rgba(250, 250, 250, 0.3);
    z-index: -1; }
  #sub-hero .ttl-area {
    color: #fff;
    padding: 60px 0;
    position: relative; }
    @media screen and (min-width: 768px) {
      #sub-hero .ttl-area {
        color: #656666;
        width: 35%; } }
    #sub-hero .ttl-area h1,
    #sub-hero .ttl-area .name {
      text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5); }
      @media screen and (min-width: 768px) {
        #sub-hero .ttl-area h1,
        #sub-hero .ttl-area .name {
          text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8); } }
    #sub-hero .ttl-area h1 {
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(50px, 7vw, 80px);
      letter-spacing: clamp(5px, 1vw, 10px);
      text-align: center;
      text-transform: uppercase; }
    #sub-hero .ttl-area .name {
      bottom: 20px;
      content: '';
      font-size: 15px;
      line-height: 1.5;
      position: absolute;
      right: 30px;
      text-align: right; }
      @media screen and (min-width: 768px) {
        #sub-hero .ttl-area .name {
          right: 0; } }
      #sub-hero .ttl-area .name span {
        font-size: 16px;
        font-weight: 500; }

.menu:before {
  background: url(../img/header/hero/menu.jpg) no-repeat center/cover; }

.access:before {
  background: url(../img/header/hero/access.jpg) no-repeat center/cover; }

.contact:before {
  background: url(../img/header/hero/contact.jpg) no-repeat center/cover; }
  @media screen and (min-width: 768px) {
    .contact:before {
      background-position: 50% 65%; } }
  @media screen and (min-width: 1280px) {
    .contact:before {
      background-position: 50% 55%; } }
@media (min-width: 768px) and (max-width: 1439px) {
  .contact .ttl-area {
    width: fit-content !important; } }

/*------------------------------------------------------------------------------ 
  Sub Page
------------------------------------------------------------------------------*/
#sub {
  /* Menu -----------------------------------------------------
  -----------------------------------------------------------*/
  /* Access ---------------------------------------------------
  -----------------------------------------------------------*/
  /* Contact --------------------------------------------------
  -----------------------------------------------------------*/ }
  #sub .sec {
    padding: clamp(80px, 9vw, 100px) 0; }
  #sub #menu {
    overflow: hidden;
    padding: clamp(100px, 10vw, 120px) 0 clamp(30px, 7vw, 80px); }
    #sub #menu .sec {
      padding: clamp(60px, 7vw, 100px) 0; }
      @media screen and (max-width: 767px) {
        #sub #menu .sec .container {
          padding: 0 10px; } }
      #sub #menu .sec .ttl {
        position: relative; }
        @media screen and (max-width: 767px) {
          #sub #menu .sec .ttl {
            padding: 0 40px; } }
        #sub #menu .sec .ttl h2 {
          font-size: clamp(20px, 2vw, 24px);
          font-weight: 500;
          position: relative;
          padding: 20px; }
          #sub #menu .sec .ttl h2:before {
            background: #9fa0a0;
            content: '';
            left: -30px;
            height: 1px;
            position: absolute;
            top: 0;
            width: 100%; }
            @media screen and (min-width: 768px) {
              #sub #menu .sec .ttl h2:before {
                left: -40px; } }
        #sub #menu .sec .ttl .sub-ttl {
          color: #9fa0a0;
          font-family: "Cormorant Garamond", serif;
          font-size: clamp(23px, 3vw, 30px);
          height: max-content;
          left: -5px;
          position: absolute;
          transform: rotate(180deg) translateY(-20px);
          writing-mode: vertical-rl;
          z-index: 1; }
          @media screen and (min-width: 768px) {
            #sub #menu .sec .ttl .sub-ttl {
              left: -50px; } }
          #sub #menu .sec .ttl .sub-ttl:after {
            background: #9fa0a0;
            content: '';
            left: 0;
            position: absolute;
            width: 1px; }
          #sub #menu .sec .ttl .sub-ttl.visible {
            transform: rotate(180deg) translate(0); }
      #sub #menu .sec table {
        color: #656666; }
        #sub #menu .sec table th .en {
          display: block; }
      #sub #menu .sec .cont {
        position: relative; }
        #sub #menu .sec .cont .img {
          margin: auto;
          position: relative;
          width: 90%; }
          @media screen and (min-width: 768px) {
            #sub #menu .sec .cont .img {
              left: 0;
              position: absolute;
              top: 0;
              width: 45%;
              z-index: 1; } }
          @media screen and (min-width: 1280px) {
            #sub #menu .sec .cont .img {
              left: 30px; } }
          #sub #menu .sec .cont .img:after {
            content: '';
            height: 100%;
            left: 0;
            opacity: .1;
            position: absolute;
            top: 0;
            width: 100%; }
          #sub #menu .sec .cont .img img {
            position: relative; }
            #sub #menu .sec .cont .img img:before, #sub #menu .sec .cont .img img:after {
              content: '';
              left: -15px;
              position: absolute;
              width: 100%; }
            #sub #menu .sec .cont .img img:before {
              border-top: 1px solid #fff;
              border-bottom: 1px solid #fff;
              height: 96%;
              top: 50%;
              transform: translateY(-50%); }
            #sub #menu .sec .cont .img img:after {
              border-right: 1px solid #fff;
              bottom: 10px;
              height: 25%; }
        @media screen and (min-width: 768px) {
          #sub #menu .sec .cont .container {
            margin: auto;
            width: 95%; } }
        @media screen and (min-width: 768px) {
          #sub #menu .sec .cont .container .right-cont {
            margin-left: auto;
            max-width: 600px; } }
        #sub #menu .sec .cont .container .right-cont .bg {
          padding: 30px 0;
          position: relative; }
          #sub #menu .sec .cont .container .right-cont .bg:before, #sub #menu .sec .cont .container .right-cont .bg:after {
            content: '';
            height: 100%;
            position: absolute;
            top: 0;
            z-index: -1; }
          #sub #menu .sec .cont .container .right-cont .bg:before {
            left: -100vw;
            opacity: .8;
            width: 200vw; }
          #sub #menu .sec .cont .container .right-cont .bg:after {
            background: url(../img/header/hero/bg.png) no-repeat center/contain;
            left: -20vw;
            width: 100%; }
    #sub #menu .link-area {
      padding-bottom: 60px; }
      #sub #menu .link-area .link-li {
        align-items: stretch;
        gap: 0; }
        @media screen and (min-width: 1280px) {
          #sub #menu .link-area .link-li {
            grid-template-columns: repeat(4, 1fr); } }
        #sub #menu .link-area .link-li li {
          border: 1px solid #9fa0a0; }
          @media screen and (max-width: 767px) {
            #sub #menu .link-area .link-li li:not(:first-of-type) {
              border-top: none; } }
          @media screen and (min-width: 1280px) {
            #sub #menu .link-area .link-li li:not(:first-of-type) {
              border-left: none; } }
          @media (min-width: 768px) and (max-width: 1279px) {
            #sub #menu .link-area .link-li li:first-of-type {
              border-bottom: none;
              border-right: none; } }
          @media (min-width: 768px) and (max-width: 1279px) {
            #sub #menu .link-area .link-li li:nth-of-type(2) {
              border-bottom: none; } }
          @media (min-width: 768px) and (max-width: 1279px) {
            #sub #menu .link-area .link-li li:nth-of-type(3) {
              border-right: none; } }
          #sub #menu .link-area .link-li li a {
            align-items: center;
            display: grid;
            grid-template-columns: 65px calc(100% - 65px);
            gap: 15px;
            padding: 20px clamp(10px, 2vw, 20px);
            position: relative; }
            #sub #menu .link-area .link-li li a:hover {
              opacity: 1; }
              #sub #menu .link-area .link-li li a:hover:after {
                bottom: 8px; }
                @media screen and (min-width: 600px) {
                  #sub #menu .link-area .link-li li a:hover:after {
                    bottom: 12px; } }
              #sub #menu .link-area .link-li li a:hover .img img {
                transform: scale(1.1); }
            #sub #menu .link-area .link-li li a:after {
              background: url(../img/footer/up.svg) no-repeat center/cover;
              bottom: 10px;
              content: '';
              height: 20px;
              position: absolute;
              right: 7px;
              transform: rotate(180deg) scale(-1, 1);
              transition: bottom .3s;
              width: 20px;
              z-index: -1; }
              @media screen and (min-width: 600px) {
                #sub #menu .link-area .link-li li a:after {
                  bottom: 15px;
                  right: 18px; } }
              @media screen and (min-width: 1280px) {
                #sub #menu .link-area .link-li li a:after {
                  right: 7px; } }
            #sub #menu .link-area .link-li li a .img {
              aspect-ratio: 1 / 1;
              border-radius: 50%;
              overflow: hidden;
              width: 65px; }
              #sub #menu .link-area .link-li li a .img img {
                height: 100%;
                object-fit: cover;
                transition: .3s; }
            #sub #menu .link-area .link-li li a .link-ttl {
              line-height: 1.5; }
              #sub #menu .link-area .link-li li a .link-ttl .jp {
                color: #656666;
                font-size: clamp(16px, 1vw, 17px); }
              #sub #menu .link-area .link-li li a .link-ttl .en {
                color: #9fa0a0;
                display: block;
                font-size: 18px;
                font-weight: 600;
                margin-top: 5px; }
    @media screen and (min-width: 768px) {
      #sub #menu .reversed .img {
        left: auto !important;
        right: 0; } }
    @media screen and (min-width: 1280px) {
      #sub #menu .reversed .img {
        right: 30px; } }
    #sub #menu .reversed .right-cont .bg:after {
      left: auto !important;
      right: -20vw; }
    #sub #menu #nail .ttl h2 {
      color: #65a69c; }
    #sub #menu #nail .ttl .sub-ttl {
      top: 70px; }
      #sub #menu #nail .ttl .sub-ttl:after {
        height: calc(100% + 120px);
        top: -15px; }
    #sub #menu #nail .txt {
      border: 2px solid #5d9990;
      margin: clamp(20px, 3vw, 40px) 20px clamp(65px, 10vw, 110px) 50px;
      padding: clamp(15px, 2vw, 25px) clamp(25px, 5vw, 50px); }
    #sub #menu #nail .cont {
      margin-bottom: clamp(75px, 8vw, 130px); }
      @media screen and (max-width: 767px) {
        #sub #menu #nail .cont .img {
          margin-bottom: 30px; } }
      #sub #menu #nail .cont .img:after {
        background: #e9f2f0; }
      @media screen and (min-width: 768px) {
        #sub #menu #nail .cont .right-cont {
          width: 55%; } }
      #sub #menu #nail .cont .right-cont h3 {
        font-size: clamp(25px, 3vw, 35px);
        line-height: 1;
        margin: 0 0 clamp(5px, 1vw, 10px);
        position: relative;
        text-align: right;
        z-index: 1; }
      #sub #menu #nail .cont .right-cont .bg:before {
        background: #e9f2f0; }
    @media screen and (min-width: 768px) {
      #sub #menu #nail .foot-nail .right-cont {
        margin: 0 auto 0 0 !important; }
        #sub #menu #nail .foot-nail .right-cont h3 {
          text-align: left; } }
    #sub #menu #nail .option {
      border: 2px solid #65a69c;
      margin: auto;
      max-width: 500px;
      padding: clamp(15px, 2vw, 20px);
      width: 90%; }
      @media screen and (max-width: 767px) {
        #sub #menu #nail .option {
          padding-top: 25px;
          position: relative; }
          #sub #menu #nail .option h3 {
            align-items: center;
            background: #fff;
            display: flex;
            font-size: 25px;
            justify-content: center;
            left: 15px;
            position: absolute;
            top: -52px;
            width: 130px; } }
      @media screen and (min-width: 768px) {
        #sub #menu #nail .option {
          display: flex;
          justify-content: space-between;
          max-width: 800px; }
          #sub #menu #nail .option h3 {
            align-items: center;
            border-right: 1px solid #65a69c;
            display: flex;
            font-size: 30px;
            justify-content: center;
            margin: 15px 0;
            width: 30%; }
          #sub #menu #nail .option table {
            color: #191a1a;
            width: 65%; }
            #sub #menu #nail .option table .en {
              color: #656666; } }
    #sub #menu #paraffin .ttl .sub-ttl,
    #sub #menu #ear .ttl .sub-ttl,
    #sub #menu #enzyme .ttl .sub-ttl {
      top: 20px; }
      #sub #menu #paraffin .ttl .sub-ttl:after,
      #sub #menu #ear .ttl .sub-ttl:after,
      #sub #menu #enzyme .ttl .sub-ttl:after {
        height: calc(100% + 80px);
        top: -20px; }
    @media screen and (max-width: 767px) {
      #sub #menu #paraffin .cont .img,
      #sub #menu #ear .cont .img,
      #sub #menu #enzyme .cont .img {
        margin-bottom: 60px; } }
    @media (min-width: 768px) and (max-width: 1024px) {
      #sub #menu #paraffin .cont .img,
      #sub #menu #ear .cont .img,
      #sub #menu #enzyme .cont .img {
        aspect-ratio: 4 / 3;
        top: 60px; }
        #sub #menu #paraffin .cont .img img,
        #sub #menu #ear .cont .img img,
        #sub #menu #enzyme .cont .img img {
          height: 100%;
          object-fit: cover; } }
    @media screen and (min-width: 768px) {
      #sub #menu #paraffin .cont .right-cont,
      #sub #menu #ear .cont .right-cont,
      #sub #menu #enzyme .cont .right-cont {
        width: 46%; } }
    #sub #menu #paraffin .cont .right-cont table,
    #sub #menu #ear .cont .right-cont table,
    #sub #menu #enzyme .cont .right-cont table {
      margin: 0 0 20px auto;
      width: 85%; }
      @media screen and (min-width: 768px) {
        #sub #menu #paraffin .cont .right-cont table,
        #sub #menu #ear .cont .right-cont table,
        #sub #menu #enzyme .cont .right-cont table {
          margin: 0 auto clamp(20px, 3vw, 40px); } }
      @media screen and (min-width: 1025px) {
        #sub #menu #paraffin .cont .right-cont table th,
        #sub #menu #ear .cont .right-cont table th,
        #sub #menu #enzyme .cont .right-cont table th {
          text-align: left; } }
    #sub #menu #paraffin .cont .bg,
    #sub #menu #ear .cont .bg,
    #sub #menu #enzyme .cont .bg {
      display: flex; }
      @media screen and (min-width: 768px) {
        #sub #menu #paraffin .cont .bg,
        #sub #menu #ear .cont .bg,
        #sub #menu #enzyme .cont .bg {
          min-height: clamp(300px, 27vw, 400px); } }
      #sub #menu #paraffin .cont .bg .detail,
      #sub #menu #ear .cont .bg .detail,
      #sub #menu #enzyme .cont .bg .detail {
        margin: auto;
        width: 88%; }
        #sub #menu #paraffin .cont .bg .detail .effect,
        #sub #menu #ear .cont .bg .detail .effect,
        #sub #menu #enzyme .cont .bg .detail .effect {
          margin-top: clamp(40px, 5vw, 50px); }
          #sub #menu #paraffin .cont .bg .detail .effect h3,
          #sub #menu #ear .cont .bg .detail .effect h3,
          #sub #menu #enzyme .cont .bg .detail .effect h3 {
            border-bottom: 1px solid;
            font-size: clamp(18px, 2vw, 20px);
            font-weight: 500;
            margin-bottom: 30px;
            width: fit-content; }
            #sub #menu #paraffin .cont .bg .detail .effect h3 .en,
            #sub #menu #ear .cont .bg .detail .effect h3 .en,
            #sub #menu #enzyme .cont .bg .detail .effect h3 .en {
              display: block; }
          #sub #menu #paraffin .cont .bg .detail .effect .disc li,
          #sub #menu #ear .cont .bg .detail .effect .disc li,
          #sub #menu #enzyme .cont .bg .detail .effect .disc li {
            margin-bottom: 20px; }
            #sub #menu #paraffin .cont .bg .detail .effect .disc li .en,
            #sub #menu #ear .cont .bg .detail .effect .disc li .en,
            #sub #menu #enzyme .cont .bg .detail .effect .disc li .en {
              display: block; }
    @media (min-width: 1025px) and (max-width: 1279px) {
      #sub #menu #paraffin .cont .img,
      #sub #menu #ear .cont .img {
        top: 40px; } }
    #sub #menu #paraffin .cont .img:after {
      background: #e6eff2; }
    #sub #menu #paraffin .cont .right-cont .ttl h2 {
      color: #4e7380; }
    #sub #menu #paraffin .cont .right-cont .bg:before {
      background: #e6eff2; }
    #sub #menu #paraffin .cont .right-cont .bg .effect h3 {
      border-color: #4e7380; }
    @media screen and (max-width: 767px) {
      #sub #menu #ear .bg,
      #sub #menu #enzyme .bg {
        padding-top: 50px !important; } }
    #sub #menu #ear .cont .img:after {
      background: #f7eeeb; }
    @media screen and (min-width: 768px) {
      #sub #menu #ear .cont .right-cont {
        margin: 0 auto 0 50px !important; } }
    #sub #menu #ear .cont .right-cont .ttl h2 {
      color: #e38e77; }
    #sub #menu #ear .cont .right-cont .bg:before {
      background: #f7eeeb; }
    #sub #menu #ear .cont .right-cont .bg .effect h3 {
      border-color: #e38e77; }
    #sub #menu #enzyme .cont .img:after {
      background: #f7f1eb; }
    #sub #menu #enzyme .cont .right-cont .ttl h2 {
      color: #e0a870; }
    @media screen and (max-width: 1024px) {
      #sub #menu #enzyme .cont .right-cont table th {
        line-height: 3; }
        #sub #menu #enzyme .cont .right-cont table th .en {
          line-height: 1.5; } }
    #sub #menu #enzyme .cont .right-cont table td {
      width: 35%; }
      @media screen and (min-width: 768px) {
        #sub #menu #enzyme .cont .right-cont table td {
          width: 32%; } }
    #sub #menu #enzyme .cont .right-cont .bg:before {
      background: #f7f1eb; }
    #sub #menu #enzyme .cont .right-cont .bg .effect h3 {
      border-color: #e0a870; }
  #sub #access .grid {
    align-items: normal;
    background: rgba(245, 247, 247, 0.3);
    gap: 40px 30px; }
    @media screen and (min-width: 1280px) {
      #sub #access .grid {
        grid-template-columns: 35% calc(65% - 30px); } }
    #sub #access .grid .img {
      position: relative; }
      @media screen and (max-width: 767px) {
        #sub #access .grid .img {
          order: 2; } }
      #sub #access .grid .img:after {
        background: #f5f7f7;
        content: '';
        height: 100%;
        left: 0;
        opacity: .05;
        position: absolute;
        top: 0;
        width: 100%; }
    @media screen and (max-width: 767px) {
      #sub #access .grid .inner {
        order: 1;
        padding-top: 40px; } }
    @media screen and (min-width: 768px) {
      #sub #access .grid .inner {
        display: flex;
        flex-direction: column; } }
    #sub #access .grid .inner table {
      margin: auto;
      width: 90%; }
      @media screen and (min-width: 768px) {
        #sub #access .grid .inner table {
          width: 100%; } }
      @media screen and (min-width: 1025px) {
        #sub #access .grid .inner table {
          width: 80%; } }
      @media screen and (max-width: 767px) {
        #sub #access .grid .inner table th,
        #sub #access .grid .inner table td {
          display: block; } }
      #sub #access .grid .inner table th {
        color: #5d9990; }
        @media screen and (max-width: 767px) {
          #sub #access .grid .inner table th {
            padding-bottom: 0;
            text-align: left; } }
      @media screen and (max-width: 767px) {
        #sub #access .grid .inner table td {
          padding-top: 10px; } }
  #sub #access .map {
    filter: saturate(0.5);
    height: 0;
    padding-top: 70%;
    position: relative; }
    @media screen and (min-width: 600px) {
      #sub #access .map {
        padding-top: 40%; } }
    @media screen and (min-width: 1025px) {
      #sub #access .map {
        padding-top: 30%; } }
    @media screen and (min-width: 1280px) {
      #sub #access .map {
        padding-top: 30%; } }
    #sub #access .map iframe {
      height: 100%;
      position: absolute;
      top: 0;
      width: 100%; }
  #sub #contact {
    padding: 60px 0; }
    @media screen and (min-width: 768px) {
      #sub #contact {
        padding: clamp(80px, 11vw, 150px) 0; } }
    #sub #contact .cta-area {
      border-bottom: 1px solid #9fa0a0;
      margin: 0 20px 60px;
      padding-bottom: clamp(60px, 7vw, 90px); }
      @media screen and (min-width: 768px) {
        #sub #contact .cta-area {
          margin: 0 auto clamp(60px, 7vw, 90px);
          max-width: 1100px;
          width: 90%; } }
      @media screen and (min-width: 768px) {
        #sub #contact .cta-area .cta {
          max-width: 980px;
          width: 95%; } }
      #sub #contact .cta-area .cta li a {
        border: 1px solid #656666;
        color: #656666; }
        @media screen and (max-width: 767px) {
          #sub #contact .cta-area .cta li a {
            width: 90%; } }
        #sub #contact .cta-area .cta li a:hover {
          border-color: #5d9990; }
        #sub #contact .cta-area .cta li a:before {
          background: #191a1a; }
        #sub #contact .cta-area .cta li a:after {
          background: #5d9990;
          height: 2px; }
    #sub #contact .form .caution {
      margin: 0 auto clamp(30px, 4vw, 45px);
      max-width: 500px;
      width: 95%; }
      @media screen and (min-width: 768px) {
        #sub #contact .form .caution {
          max-width: 700px; } }
      #sub #contact .form .caution span {
        color: #e37777; }
    #sub #contact .form .wpcf7 label {
      display: block;
      margin: 0 auto clamp(30px, 4vw, 45px);
      max-width: 500px;
      width: 95%; }
      @media screen and (min-width: 768px) {
        #sub #contact .form .wpcf7 label {
          max-width: 700px; } }
      #sub #contact .form .wpcf7 label:last-of-type .form-txt {
        margin-bottom: auto; }
      #sub #contact .form .wpcf7 label .form-txt .required {
        color: #e37777;
        font-weight: bold;
        padding: 5px; }
      #sub #contact .form .wpcf7 label .wpcf7-form-control-wrap {
        display: block;
        margin-top: 7px; }
        @media screen and (min-width: 768px) {
          #sub #contact .form .wpcf7 label .wpcf7-form-control-wrap {
            margin-top: 12px; } }
        #sub #contact .form .wpcf7 label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-text,
        #sub #contact .form .wpcf7 label .wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea {
          background: #f5f7f7;
          border: 1px solid #dee0e0;
          border-radius: 2px;
          padding: 8px;
          width: 100%; }
          @media screen and (min-width: 768px) {
            #sub #contact .form .wpcf7 label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-text,
            #sub #contact .form .wpcf7 label .wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea {
              padding: clamp(13px, 1.5vw, 18px); } }
        #sub #contact .form .wpcf7 label .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
          color: #fff; }
    #sub #contact .form .wpcf7 input[type="checkbox"] {
      display: inline-block;
      height: 18px;
      vertical-align: -3px;
      width: 35px; }
    #sub #contact .form .wpcf7 .wpcf7-acceptance .wpcf7-list-item {
      display: block;
      margin: 0;
      text-align: center; }
    #sub #contact .form .wpcf7 input.wpcf7-submit {
      background: #fff;
      border: 2px solid #5d9990;
      border-radius: 2px;
      color: #191a1a;
      display: block;
      font-size: clamp(17px, 2vw, 19px);
      font-weight: 500;
      letter-spacing: 8px;
      margin: clamp(20px, 3vw, 30px) auto;
      padding: 25px 0;
      transition: .2s;
      width: 100%; }
      @media screen and (min-width: 768px) {
        #sub #contact .form .wpcf7 input.wpcf7-submit {
          max-width: 600px;
          width: 75%; } }
      #sub #contact .form .wpcf7 input.wpcf7-submit:hover {
        background: #5d9990;
        color: #fff;
        cursor: pointer; }
      #sub #contact .form .wpcf7 input.wpcf7-submit:disabled {
        cursor: not-allowed !important; }
    #sub #contact .form .wpcf7 .recaptcha {
      font-size: clamp(14px, 2vw, 15px); }
      @media screen and (min-width: 1280px) {
        #sub #contact .form .wpcf7 .recaptcha {
          text-align: center; } }
      #sub #contact .form .wpcf7 .recaptcha a {
        font-weight: bold; }
    #sub #contact .form .wpcf7 .wpcf7-response-output {
      color: #191a1a;
      font-size: clamp(16px, 2vw, 18px); }

/*------------------------------------------------------------------------------ 
  Breadcrumbs
------------------------------------------------------------------------------*/
.breadcrumbs {
  font-size: clamp(13px, 1vw, 14px);
  margin: 0;
  padding: 10px; }
  .breadcrumbs li {
    display: inline-block;
    margin-right: 5px; }
    .breadcrumbs li:not(:last-of-type):after {
      content: ' > '; }
    .breadcrumbs li a {
      margin-right: 5px; }

/*------------------------------------------------------------------------------ 
  Footer
------------------------------------------------------------------------------*/
footer {
  background: #f5f7f7; }
  @media screen and (max-width: 1024px) {
    footer {
      padding-bottom: 58px; } }
  footer #foot-nav {
    border-bottom: 1px solid #dee0e0;
    margin: auto;
    max-width: 900px;
    padding: clamp(30px, 3vw, 35px) 0;
    width: 80%; }
    footer #foot-nav li a {
      color: #656666;
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(18px, 2vw, 20px);
      font-weight: 500;
      text-transform: uppercase; }
  footer .foot-cont {
    max-width: 1100px;
    padding: clamp(50px, 6vw, 65px) 20px 0;
    position: relative; }
    @media screen and (min-width: 768px) {
      footer .foot-cont {
        width: 85%; } }
    footer .foot-cont .foot-logo {
      width: 160px; }
    footer .foot-cont .foot-info {
      align-items: normal;
      padding: 40px 0 clamp(70px, 7vw, 90px);
      justify-content: center;
      row-gap: 30px; }
      @media screen and (min-width: 768px) {
        footer .foot-cont .foot-info {
          justify-content: space-between; } }
      @media screen and (min-width: 1025px) {
        footer .foot-cont .foot-info {
          margin: auto;
          width: 95%; } }
      @media screen and (max-width: 767px) {
        footer .foot-cont .foot-info .left-cont {
          border-bottom: 1px solid #656666;
          padding: 0 20px 45px;
          width: 95%; } }
      footer .foot-cont .foot-info .left-cont .tel {
        font-size: 16px;
        margin-bottom: 40px;
        text-align: center; }
        footer .foot-cont .foot-info .left-cont .tel a {
          background: linear-gradient(transparent 70%, #c5e5e0 30%);
          display: inline-block;
          padding: 0px 7px; }
          footer .foot-cont .foot-info .left-cont .tel a .num {
            color: #656666;
            font-size: clamp(25px, 3vw, 27px);
            font-weight: 500; }
      footer .foot-cont .foot-info .left-cont .time {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin: auto;
        max-width: 400px; }
        footer .foot-cont .foot-info .left-cont .time .tab {
          background: #fff;
          border: 1px solid #656666;
          border-radius: 3px;
          color: #656666;
          display: inline-block;
          font-size: 14px;
          margin-right: 10px;
          padding: 3px;
          text-align: center;
          width: 90px; }
      @media screen and (max-width: 767px) {
        footer .foot-cont .foot-info .address .g-map {
          text-align: center; } }
      footer .foot-cont .foot-info .address .g-map a {
        background: linear-gradient(transparent 70%, #c5e5e0 30%);
        display: inline-block;
        padding: 0 40px 0 5px;
        position: relative; }
        footer .foot-cont .foot-info .address .g-map a:hover {
          opacity: 1; }
          footer .foot-cont .foot-info .address .g-map a:hover:after {
            right: 5px; }
        footer .foot-cont .foot-info .address .g-map a:after {
          background: url(../img/common/arrow.svg) no-repeat center/cover;
          content: '';
          height: 12px;
          position: absolute;
          right: 8px;
          top: 50%;
          transition: right .3s;
          transform: translateY(-50%);
          width: 20px; }
      footer .foot-cont .foot-info .foot-sns {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin: auto 0; }
        footer .foot-cont .foot-info .foot-sns li a {
          display: block;
          padding-left: 40px;
          position: relative; }
          footer .foot-cont .foot-info .foot-sns li a:before {
            background: #656666;
            content: '';
            height: 28px;
            left: 0;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 28px; }
        footer .foot-cont .foot-info .foot-sns .hpb a:before {
          mask-image: url(../img/common/cta/hpb.svg) no-repeat center/cover;
          -webkit-mask: url(../img/common/cta/hpb.svg) no-repeat center/cover; }
        footer .foot-cont .foot-info .foot-sns .insta a:before {
          mask-image: url(../img/common/cta/insta.svg) no-repeat center/cover;
          -webkit-mask: url(../img/common/cta/insta.svg) no-repeat center/cover; }
    footer .foot-cont .up a {
      align-items: center;
      background: #fff;
      border: 1px solid #656666;
      border-radius: 50%;
      bottom: clamp(45px, 5vw, 65px);
      display: flex;
      height: clamp(40px, 5vw, 55px);
      justify-content: center;
      padding: clamp(10px, 1.4vw, 16px);
      position: absolute;
      right: 20px;
      transition: transform .3s;
      width: clamp(40px, 5vw, 55px); }
      footer .foot-cont .up a:hover {
        opacity: 1;
        transform: translateY(-5px); }
    footer .foot-cont #copyright {
      font-size: 13px;
      padding: 15px 0;
      text-align: center; }
      @media screen and (min-width: 1025px) {
        footer .foot-cont #copyright {
          text-align: right; } }

/* Sp Nav
-----------------------------------------------------------*/
#sp-nav {
  background: #c5e5e0;
  bottom: 0;
  left: 0;
  padding: 3px 0;
  position: fixed;
  transform: translateY(100%);
  transition: transform .3s ease;
  width: 100%;
  z-index: 40; }
  @media (min-width: 1025px) {
    #sp-nav {
      display: none; } }
  #sp-nav.visible {
    transform: translateY(0); }
  #sp-nav .sp-nav_li {
    align-items: center;
    display: flex;
    justify-content: space-around;
    margin: 0 auto;
    max-width: 500px; }
    #sp-nav .sp-nav_li li {
      width: 20%; }
      #sp-nav .sp-nav_li li a {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 5px;
        text-align: center; }
        #sp-nav .sp-nav_li li a .icon {
          background: #656666;
          height: 23px;
          margin: 0 auto 2px;
          width: 23px; }
        #sp-nav .sp-nav_li li a .hpb {
          mask-image: url(../img/common/cta/hpb.svg) no-repeat center/cover;
          -webkit-mask: url(../img/common/cta/hpb.svg) no-repeat center/cover; }
        #sp-nav .sp-nav_li li a .tel {
          mask-image: url(../img/common/cta/tel.svg) no-repeat center/cover;
          -webkit-mask: url(../img/common/cta/tel.svg) no-repeat center/cover; }
        #sp-nav .sp-nav_li li a .insta {
          mask-image: url(../img/common/cta/insta.svg) no-repeat center/cover;
          -webkit-mask: url(../img/common/cta/insta.svg) no-repeat center/cover; }
        #sp-nav .sp-nav_li li a .label {
          font-size: 10px; }

/*# sourceMappingURL=style.css.map */
