/*------------------------------------------------------------------------------ 
  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; } }

*,
*: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(20px, 3vw, 24px); }

h2 {
  font-size: clamp(19px, 2vw, 22px); }

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

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500; }

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: 90%; } }
  @media screen and (min-width: 1280px) {
    .container {
      width: 85%; } }

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

@media screen and (min-width: 1025px) {
  .sp {
    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); }

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

/* 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; } }

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

/* Button
-----------------------------------------------------------*/
.back-btn {
  margin-top: clamp(45px, 6vw, 60px); }
  .back-btn a {
    align-items: center;
    border: 1px solid #656666;
    color: #656666;
    display: flex;
    height: 100%;
    justify-content: center;
    margin: auto;
    max-width: 350px;
    padding: clamp(27px, 4vw, 38px);
    position: relative;
    text-align: center;
    width: 100%; }
    @media screen and (min-width: 1025px) {
      .back-btn a {
        max-width: 450px; } }
    .back-btn a:hover {
      border-color: #9fa0a0;
      opacity: 1; }
      .back-btn a:hover:after {
        width: 10%; }
        @media screen and (min-width: 768px) {
          .back-btn a:hover:after {
            width: 15%; } }
    .back-btn a:before, .back-btn a:after {
      content: '';
      position: absolute;
      top: 50%;
      transform: translateY(-50%); }
    .back-btn a:before {
      background: #656666;
      height: 1px;
      right: 0;
      width: 10%; }
      @media screen and (min-width: 768px) {
        .back-btn a:before {
          width: 15%; } }
    .back-btn a:after {
      background: #5d9990;
      height: 1.8px;
      left: 90%;
      transition: width .4s ease-out;
      width: 0; }
      @media screen and (min-width: 768px) {
        .back-btn a:after {
          left: 85%; } }

/*------------------------------------------------------------------------------ 
  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 .logo {
    align-items: center;
    display: flex;
    font-size: 2em;
    margin: 0;
    padding: 5px;
    transition: .3s;
    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; }

/*------------------------------------------------------------------------------ 
  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 {
    background: url(img/header/hero/news.jpg) no-repeat 70% 50%/cover;
    z-index: -2; }
    @media screen and (min-width: 768px) {
      #sub-hero:before {
        left: auto;
        right: 0;
        width: 80%; } }
    @media screen and (min-width: 1025px) {
      #sub-hero:before {
        background: url(img/header/hero/news.jpg) no-repeat 50% 60%/cover; } }
  #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 .ttl,
    #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 .ttl,
        #sub-hero .ttl-area .name {
          text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.8); } }
    #sub-hero .ttl-area .ttl {
      font-family: "Cormorant Garamond", serif;
      font-size: clamp(50px, 7vw, 80px);
      font-weight: bold;
      letter-spacing: clamp(5px, 1vw, 10px);
      margin: clamp(33px, 4.8vw, 53px) 0;
      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; }

/*------------------------------------------------------------------------------ 
  Side Cta
------------------------------------------------------------------------------*/
#side-cta {
  position: fixed;
  right: 26px;
  top: 35%;
  width: 150px;
  z-index: 40; }
  @media (max-width: 1024px) {
    #side-cta {
      display: none; } }
  #side-cta .cta-li {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    gap: 30px; }
    #side-cta .cta-li li {
      height: 30px;
      width: 100%; }
      #side-cta .cta-li li a {
        display: block;
        height: 100%;
        margin-left: auto;
        position: relative;
        text-align: right;
        transition: background-color .2s; }
        #side-cta .cta-li li a:before, #side-cta .cta-li li a:after {
          content: '';
          position: absolute;
          transform-origin: center;
          transition: .2s; }
        #side-cta .cta-li li a:before {
          background: #84d9cc;
          border-radius: 50%;
          height: 40px;
          right: -6.3px;
          top: -6.5px;
          transform: scale(0, 0);
          width: 40px; }
        #side-cta .cta-li li a:after {
          background: #9fa0a0;
          height: 27px;
          right: 0;
          transform: scale(1, 1);
          top: 0;
          width: 27px; }
        #side-cta .cta-li li a:hover {
          opacity: 1; }
          #side-cta .cta-li li a:hover:before {
            opacity: 1;
            transform: scale(1, 1); }
          #side-cta .cta-li li a:hover:after {
            background: #fff;
            transform: scale(0.7, 0.7); }
          #side-cta .cta-li li a:hover .txt {
            opacity: 1;
            transform: scale(1, 1); }
        #side-cta .cta-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; }
    #side-cta .cta-li .hpb a:hover:after {
      background: #84d9cc;
      transform: scale(0.9, 0.9); }
    #side-cta .cta-li .hpb a:before {
      display: none; }
    #side-cta .cta-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; }
    #side-cta .cta-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; }
    #side-cta .cta-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;
  transform: translateY(20px); }
  .fade.visible {
    opacity: 1;
    transform: translate(0); }

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

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

/*------------------------------------------------------------------------------ 
  Sub Page
------------------------------------------------------------------------------*/
#sub {
  padding: clamp(100px, 10vw, 120px) 0;
  /* Index ----------------------------------------------------
  -----------------------------------------------------------*/
  /* Single ----------------------------------------------------
  -----------------------------------------------------------*/
  /* Sidebar --------------------------------------------------
  -----------------------------------------------------------*/
  /* 404  -----------------------------------------------------
  -----------------------------------------------------------*/ }
  #sub .grid.container {
    gap: clamp(70px, 9vw, 120px); }
    @media screen and (min-width: 768px) {
      #sub .grid.container {
        grid-template-columns: 2fr 1fr; } }
    @media screen and (min-width: 1025px) {
      #sub .grid.container {
        grid-template-columns: 3fr 1fr; } }
  #sub .archive-ttl {
    font-size: clamp(18px, 2vw, 20px);
    font-weight: 500;
    margin: 0 auto clamp(50px, 6vw, 70px); }
    #sub .archive-ttl .en {
      color: #656666;
      font-weight: bold; }
  #sub #news article {
    margin-bottom: 40px; }
    #sub #news article a {
      gap: 20px clamp(30px, 4vw, 50px); }
      @media screen and (min-width: 768px) {
        #sub #news article a {
          grid-template-columns: 2fr 3fr; } }
      @media screen and (min-width: 1280px) {
        #sub #news article a {
          grid-template-columns: 1.5fr 3fr; } }
      #sub #news article a:hover {
        opacity: 1; }
        #sub #news article a:hover img {
          transform: scale(1.03); }
        #sub #news article a:hover h2 {
          color: #5d9990;
          transition: .3s; }
      #sub #news article a .thumb {
        border-radius: 7px;
        overflow: hidden; }
        #sub #news article a .thumb img {
          aspect-ratio: 16 / 9;
          border-radius: 7px;
          object-fit: cover;
          transition: .3s; }
          @media screen and (min-width: 768px) {
            #sub #news article a .thumb img {
              aspect-ratio: 5 / 3; } }
      #sub #news article a .cont {
        display: flex;
        flex-direction: column; }
        #sub #news article a .cont .cat {
          border: 1px solid #5d9990;
          color: #5d9990;
          font-size: 14px;
          padding: 3px 10px;
          width: fit-content; }
        #sub #news article a .cont time {
          color: #656666;
          display: block;
          font-size: 14px;
          margin-top: auto;
          text-align: right; }
        #sub #news article a .cont .ttl {
          font-size: clamp(15px, 2vw, 17px);
          font-weight: 500;
          margin-bottom: 0; }
        #sub #news article a .cont .excerpt {
          font-size: 14px; }
  #sub #news .pagination {
    font-size: clamp(18px, 2vw, 20px);
    margin-top: clamp(70px, 10vw, 120px);
    text-align: center; }
    #sub #news .pagination .screen-reader-text {
      clip: rect(1px, 1px, 1px, 1px);
      clip-path: inset(50%);
      height: 1px;
      margin: -1px;
      overflow: hidden;
      padding: 0;
      position: absolute;
      width: 1px;
      word-wrap: normal !important; }
    #sub #news .pagination .page-numbers {
      border-radius: 5px;
      display: inline-block;
      height: clamp(38px, 5vw, 50px);
      line-height: clamp(38px, 5vw, 50px);
      margin: 10px 0 5px 10px;
      width: clamp(40px, 5vw, 50px); }
      #sub #news .pagination .page-numbers:hover {
        background: #f5f7f7;
        color: #5d9990;
        font-weight: 600;
        opacity: 1; }
    #sub #news .pagination .current {
      background: #edf0f0;
      color: #656666;
      font-weight: 600;
      opacity: 1; }
      #sub #news .pagination .current:hover {
        background: #edf0f0;
        color: #656666; }
    #sub #news .pagination .dots {
      border: none;
      color: #656666; }
      #sub #news .pagination .dots:hover {
        background: none;
        color: #656666;
        font-weight: 400; }
  #sub #single {
    /* Group
    -----------------------------------------------------------*/
    /* Block
    -----------------------------------------------------------*/
    /* Image
    -----------------------------------------------------------*/
    /* Button
    -----------------------------------------------------------*/
    /* Table
    -----------------------------------------------------------*/
    /* Contact Form
    -----------------------------------------------------------*/ }
    #sub #single article .ttl-area {
      border-bottom: 1px solid #9fa0a0;
      padding-bottom: 10px;
      margin-bottom: clamp(60px, 7vw, 80px); }
      #sub #single article .ttl-area time {
        display: block;
        font-size: 14px;
        text-align: right; }
    #sub #single article .post-cont {
      border-bottom: 1px solid #dee0e0;
      margin-bottom: clamp(75px, 9vw, 120px);
      padding-bottom: clamp(65px, 8vw, 100px); }
      #sub #single article .post-cont h2 {
        background: #e9f2f0;
        color: #5d9990;
        margin: clamp(65px, 7vw, 80px) 0 25px;
        padding: 12px 25px; }
      #sub #single article .post-cont h3 {
        margin-top: clamp(40px, 5vw, 50px);
        padding-left: 25px;
        position: relative; }
        #sub #single article .post-cont h3:before {
          background: #dee0e0;
          border-radius: 3px;
          content: '';
          height: 12px;
          left: 7px;
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          width: 12px; }
      #sub #single article .post-cont h4 {
        border-bottom: 1px solid #9fa0a0;
        margin: clamp(28px, 4vw, 40px) 0 20px;
        padding-bottom: 3px;
        width: fit-content; }
      #sub #single article .post-cont strong {
        font-weight: 600; }
      #sub #single article .post-cont ul,
      #sub #single article .post-cont ol {
        margin: clamp(30px, 4vw, 40px) 0;
        padding-left: clamp(25px, 3vw, 30px); }
        #sub #single article .post-cont ul li,
        #sub #single article .post-cont ol li {
          margin-bottom: 8px; }
      #sub #single article .post-cont ul {
        list-style: disc; }
    #sub #single .cat a {
      color: #5d9990;
      font-size: 16px; }
    #sub #single .wp-block-group {
      margin: clamp(65px, 7vw, 80px) 0; }
      #sub #single .wp-block-group .wp-block-gallery,
      #sub #single .wp-block-group .wp-block-columns {
        margin: clamp(20px, 4vw, 40px) 0; }
    #sub #single .wp-block-columns {
      gap: 1em;
      margin: clamp(40px, 6vw, 60px) 0; }
      #sub #single .wp-block-columns .wp-block-image {
        margin: 0; }
      #sub #single .wp-block-columns .wp-block-gallery {
        margin: 0; }
    #sub #single .wp-block-media-text {
      margin: clamp(15px, 3vw, 30px) 0; }
      @media screen and (max-width: 599px) {
        #sub #single .wp-block-media-text .wp-block-media-text__content p {
          margin-top: 8px; } }
      #sub #single .wp-block-media-text .has-normal-font-size {
        font-size: clamp(16px, 2vw, 17px); }
    #sub #single .has-background {
      margin: 25px 0;
      padding: clamp(15px, 2vw, 20px) clamp(20px, 2vw, 25px); }
    #sub #single .wp-block-image {
      margin: clamp(25px, 4vw, 45px) 0; }
    #sub #single .wp-block-gallery {
      margin: clamp(40px, 6vw, 60px) 0; }
      #sub #single .wp-block-gallery .wp-block-image {
        margin: 0; }
    #sub #single .wp-block-buttons {
      margin: clamp(40px, 5vw, 60px) 0; }
      #sub #single .wp-block-buttons .wp-block-button {
        width: auto; }
        #sub #single .wp-block-buttons .wp-block-button .wp-block-button__link {
          font-size: clamp(16px, 2vw, 17px); }
        #sub #single .wp-block-buttons .wp-block-button .wp-block-button.has-custom-font-size .wp-block-button__link {
          font-size: inherit; }
        #sub #single .wp-block-buttons .wp-block-button .has-background {
          margin: 0;
          padding: 25px; }
      #sub #single .wp-block-buttons .btn {
        max-width: 300px;
        width: 95%; }
        #sub #single .wp-block-buttons .btn a {
          background: #fff;
          border: 1px solid #9fa0a0;
          border-radius: 0;
          color: #656666;
          padding: clamp(20px, 2vw, 25px);
          padding: 20px; }
          #sub #single .wp-block-buttons .btn a:hover {
            background: #dee0e0;
            border-color: #dee0e0;
            color: #191a1a !important;
            opacity: 1; }
    #sub #single .wp-block-table {
      margin: clamp(45px, 5vw, 60px) 0; }
      #sub #single .wp-block-table table {
        border-collapse: collapse; }
        #sub #single .wp-block-table table td {
          padding: 15px; }
          @media screen and (max-width: 1024px) {
            #sub #single .wp-block-table table td {
              display: block; } }
    @media screen and (max-width: 1024px) {
      #sub #single .is-style-regular table {
        border-bottom: 1px solid #9fa0a0; } }
    #sub #single .is-style-regular table td {
      border: 1px solid #9fa0a0; }
      @media screen and (max-width: 1024px) {
        #sub #single .is-style-regular table td {
          border-bottom: none; }
          #sub #single .is-style-regular table td:nth-of-type(2) {
            border-top: none;
            padding-top: 0; } }
    @media screen and (max-width: 1024px) {
      #sub #single .is-style-stripes td:nth-of-type(odd) {
        border-bottom: 1px solid #dee0e0; } }
    #sub #single .wpcf7 {
      margin: 40px 0; }
      #sub #single .wpcf7 label {
        display: block;
        margin: 0 auto clamp(30px, 4vw, 45px);
        max-width: 500px;
        width: 95%; }
        @media screen and (min-width: 768px) {
          #sub #single .wpcf7 label {
            max-width: 700px; } }
        #sub #single .wpcf7 label:last-of-type .form-txt {
          margin-bottom: auto; }
        #sub #single .wpcf7 label .form-txt .required {
          color: #e37777;
          font-weight: bold;
          padding: 5px; }
        #sub #single .wpcf7 label .wpcf7-form-control-wrap {
          display: block;
          margin-top: 7px; }
          @media screen and (min-width: 768px) {
            #sub #single .wpcf7 label .wpcf7-form-control-wrap {
              margin-top: 12px; } }
          #sub #single .wpcf7 label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-text,
          #sub #single .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 #single .wpcf7 label .wpcf7-form-control-wrap input.wpcf7-form-control.wpcf7-text,
              #sub #single .wpcf7 label .wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea {
                padding: clamp(13px, 1.5vw, 18px); } }
          #sub #single .wpcf7 label .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
            color: #fff; }
      #sub #single .wpcf7 input[type="checkbox"] {
        display: inline-block;
        height: 18px;
        vertical-align: -3px;
        width: 35px; }
      #sub #single .wpcf7 .wpcf7-acceptance .wpcf7-list-item {
        display: block;
        margin: 0;
        text-align: center; }
      #sub #single .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 #single .wpcf7 input.wpcf7-submit {
            max-width: 600px; } }
        @media screen and (min-width: 1025px) {
          #sub #single .wpcf7 input.wpcf7-submit {
            width: 75%; } }
        #sub #single .wpcf7 input.wpcf7-submit:hover {
          background: #5d9990;
          color: #fff;
          cursor: pointer; }
        #sub #single .wpcf7 input.wpcf7-submit:disabled {
          cursor: not-allowed !important; }
      #sub #single .wpcf7 .recaptcha {
        font-size: clamp(14px, 2vw, 15px); }
        @media screen and (min-width: 1280px) {
          #sub #single .wpcf7 .recaptcha {
            text-align: center; } }
        #sub #single .wpcf7 .recaptcha a {
          font-weight: bold; }
      #sub #single .wpcf7 .wpcf7-response-output {
        color: #191a1a;
        font-size: clamp(16px, 2vw, 18px); }
  #sub #sidebar .side_archive-ttl {
    background: #f5f7f7;
    color: #5d9990;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 25px;
    padding: 10px 15px; }
    #sub #sidebar .side_archive-ttl .en {
      font-size: 15px;
      font-weight: bold; }
  #sub #sidebar .archive:not(:last-of-type) {
    margin-bottom: 60px; }
  #sub #sidebar .archive .archive-li li a {
    border-bottom: 1px solid #eee;
    display: block;
    font-size: 14px;
    font-weight: 500;
    padding: 12px; }
  #sub #sidebar .cat-archive .archive-li .children {
    padding-left: 12px; }
  #sub #sidebar .recent-posts ul li {
    margin-bottom: 20px; }
    #sub #sidebar .recent-posts ul li a {
      align-items: center;
      gap: 10px;
      grid-template-columns: 2fr 3fr; }
      #sub #sidebar .recent-posts ul li a .thumb {
        overflow: hidden; }
        #sub #sidebar .recent-posts ul li a .thumb img {
          aspect-ratio: 3 / 2;
          object-fit: cover; }
      #sub #sidebar .recent-posts ul li a .data h3 {
        font-size: 12px;
        font-weight: 400;
        margin: 0 0 5px; }
      #sub #sidebar .recent-posts ul li a .data time {
        display: block;
        font-size: 12px; }
  #sub .not-found {
    margin: clamp(50px, 7vw, 70px) auto;
    text-align: center; }

/*------------------------------------------------------------------------------ 
  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 */
