@charset "UTF-8";
/*--------------------------------------
共通
---------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@200;300;400;500;600;700;800;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Tenor+Sans&display=swap");
.col_yel {
  color: #d6fe42;
}

*:where(:not(iframe, canvas, img, svg, video):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

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

a, button {
  cursor: revert;
}

ol, ul, menu {
  list-style: none;
}

img {
  max-width: 100%;
}

table {
  border-collapse: collapse;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  appearance: revert;
}

::placeholder {
  color: unset;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

img {
  vertical-align: bottom;
}

* {
  font-family: "Tenor Sans", "Noto Serif JP", serif;
  font-weight: 400;
  color: #333;
}

.noto {
  font-family: "Noto Serif JP", serif;
}

.tenor {
  font-family: "Tenor Sans", sans-serif;
  font-weight: 400;
}

html {
  scroll-behavior: smooth;
}

@keyframes zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.2);
  }
}
@media print, screen and (min-width: 768px) {
  * {
    font-size: 16px;
    letter-spacing: 0.8px;
    line-height: 1.8;
  }
  body {
    min-width: 1180px;
  }
  .sp {
    display: none;
  }
  .menu_active {
    opacity: 1 !important;
    visibility: visible !important;
  }
  .menu_active .inner {
    transform: translate(0, 0) !important;
  }
  .active_list {
    transform: translate(0, 0) !important;
    opacity: 1 !important;
  }
  #main_menu {
    background-color: rgba(51, 53, 55, 0.3);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    visibility: hidden;
    overflow: hidden;
    opacity: 0;
  }
  #main_menu .inner {
    transition: 0.5s;
    transform: translate(100%, 0);
    background-color: #39504d;
    position: fixed;
    top: 0;
    right: 0;
    width: 640px;
    height: 100%;
    padding: 10% 5% 10%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 800;
    overflow-y: auto;
  }
  #main_menu .inner nav ul li {
    margin-bottom: 30px;
    white-space: nowrap;
    transition: 1s all;
    opacity: 0;
    transform: translate(25%, 0);
  }
  #main_menu .inner nav ul li:last-child {
    margin-bottom: 0;
  }
  #main_menu .inner nav ul li a {
    color: #fff;
    font-family: "Tenor Sans", sans-serif;
    font-size: 34px;
    line-height: 1.4;
  }
  #main_menu .inner nav ul li a span {
    display: block;
    color: #fff;
    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    line-height: 1;
  }
  #wrp {
    overflow-x: hidden;
  }
  .header_bg {
    background-color: rgba(57, 80, 77, 0.5);
  }
  header {
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
    padding: 16px 50px;
    width: 100%;
    transition: 0.5s;
  }
  header p img {
    width: auto;
    height: 59px;
    object-fit: contain;
  }
  .menu_wrp {
    text-align: center;
    position: fixed;
    z-index: 1000;
    right: 50px;
    top: 18px;
  }
  .menu_wrp p {
    font-size: 15px;
    font-family: "Tenor Sans", sans-serif;
    letter-spacing: 1.5px;
    font-weight: 400;
    color: #fff;
    line-height: 1;
  }
  .btn-trigger {
    position: relative;
    width: 50px;
    height: 30px;
    cursor: pointer;
    display: inline-block;
    transition: all 0.5s;
    box-sizing: border-box;
  }
  .btn-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    display: inline-block;
    transition: all 0.5s;
    box-sizing: border-box;
    z-index: 1000;
  }
  .btn-trigger span:nth-of-type(1) {
    top: 0;
  }
  .btn-trigger span:nth-of-type(2) {
    top: 14px;
  }
  .btn-trigger span:nth-of-type(3) {
    bottom: 0;
    width: 30px;
  }
  #btn01 span:nth-of-type(1) {
    -webkit-animation: btn07-bar01 0.75s forwards;
    animation: btn07-bar01 0.75s forwards;
  }
  @-webkit-keyframes btn07-bar01 {
    0% {
      -webkit-transform: translateY(14px) rotate(45deg);
    }
    50% {
      -webkit-transform: translateY(14px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
    }
  }
  @keyframes btn07-bar01 {
    0% {
      transform: translateY(14px) rotate(45deg);
    }
    50% {
      transform: translateY(14px) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  #btn01 span:nth-of-type(2) {
    transition: all 0.25s 0.25s;
    opacity: 1;
  }
  #btn01 span:nth-of-type(3) {
    -webkit-animation: btn07-bar03 0.75s forwards;
    animation: btn07-bar03 0.75s forwards;
  }
  @-webkit-keyframes btn07-bar03 {
    0% {
      -webkit-transform: translateY(-14px) rotate(-45deg);
    }
    50% {
      -webkit-transform: translateY(-14px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
    }
  }
  @keyframes btn07-bar03 {
    0% {
      transform: translateY(-14px) rotate(-45deg);
    }
    50% {
      transform: translateY(-14px) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  #btn01.active span:nth-of-type(1) {
    -webkit-animation: active-btn07-bar01 0.75s forwards;
    animation: active-btn07-bar01 0.75s forwards;
  }
  #btn01.active span:nth-of-type(3) {
    width: 100%;
  }
  @-webkit-keyframes active-btn07-bar01 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(14px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(14px) rotate(45deg);
    }
  }
  @keyframes active-btn07-bar01 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(14px) rotate(0);
    }
    100% {
      transform: translateY(14px) rotate(45deg);
    }
  }
  #btn01.active span:nth-of-type(2) {
    opacity: 0;
  }
  #btn01.active span:nth-of-type(3) {
    -webkit-animation: active-btn07-bar03 0.75s forwards;
    animation: active-btn07-bar03 0.75s forwards;
  }
  @-webkit-keyframes active-btn07-bar03 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(-14px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(-14px) rotate(-45deg);
    }
  }
  @keyframes active-btn07-bar03 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(-14px) rotate(0);
    }
    100% {
      transform: translateY(-14px) rotate(-45deg);
    }
  }
  #reserve_fix {
    position: fixed;
    right: 150px;
    top: 18px;
    width: 100%;
    text-align: center;
    z-index: 10;
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    opacity: 1 !important;
  }
}
@media print and (max-width: 960px), screen and (min-width: 768px) and (max-width: 960px) {
  #reserve_fix p {
    display: none !important;
  }
}
@media print, screen and (min-width: 768px) {
  #reserve_fix p {
    font-size: 14px;
    color: #fff;
  }
  #reserve_fix p span {
    display: none;
  }
  #reserve_fix .box01 {
    display: flex;
    justify-content: space-between;
  }
  #reserve_fix .box01 .line {
    background-color: #4cc764;
    text-align: right;
  }
  #reserve_fix .box01 .line span {
    position: relative;
  }
  #reserve_fix .box01 .line span:before {
    position: absolute;
    content: "";
    background-image: url("../img/icon_reservation_line.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 27px;
    height: 26px;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
  }
  #reserve_fix .box01 .form {
    background-color: #8a6b4c;
  }
  #reserve_fix .box01 div {
    width: 200px;
    display: inline-block;
    margin-left: 10px;
  }
  #reserve_fix .box01 a {
    display: inline-block;
    padding: 2px;
    width: 100%;
    transition: 0.3s;
  }
  #reserve_fix .box01 a:hover {
    opacity: 0.6;
  }
  #reserve_fix .box01 a span {
    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    display: inline-block;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    width: 100%;
    padding: 15px 28px;
    line-height: 1;
    font-weight: bold;
    letter-spacing: 1.6px;
  }
  .page_top_abs {
    position: absolute !important;
    bottom: auto !important;
    top: -30px;
  }
  #page_top {
    position: fixed;
    right: 3%;
    bottom: 5%;
    z-index: 99;
    display: none;
  }
  #page_top a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #84a3a0;
  }
  #page_top a img {
    width: 31px;
  }
  main #main_visual .main_visual_inner {
    width: 100%;
    height: 100vh;
  }
  main #main_visual .main_visual_inner #bg_wrp {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: -1;
  }
  main #main_visual .main_visual_inner #bg_wrp .mv_bg {
    position: relative;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 1;
  }
  main #main_visual .main_visual_inner #bg_wrp .mv_bg:before {
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    background-color: rgba(57, 80, 77, 0.5);
    left: 0;
    top: 0;
    z-index: 3;
  }
  main #main_visual .main_visual_inner #bg_wrp .mv_bg .zoom {
    animation-name: zoom;
    animation-duration: 10s;
    animation-fill-mode: forwards;
    z-index: 2;
  }
  main #main_visual .main_visual_inner #bg_wrp .mv_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
  }
  main #main_visual .main_visual_inner h1 {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
  }
  main #main_visual .main_visual_inner h1 div {
    margin: 0 auto;
    max-width: 1380px;
    padding-left: 40px;
    width: 100%;
    display: flex;
    align-items: center;
  }
  main #main_visual .main_visual_inner h1 img {
    width: 208px;
    position: relative;
    top: 5px;
  }
  main #main_visual .main_visual_inner h1 span {
    font-family: "Noto Serif JP", serif;
    font-size: 44px;
    color: #fff;
    font-weight: bold;
    line-height: 1.81;
    letter-spacing: 4.4px;
    display: inline-block;
    margin-left: 65px;
  }
  main #main_visual .main_lead {
    position: relative;
    z-index: 1;
    padding: 40px;
  }
  main #main_visual .main_lead:before {
    content: "";
    position: absolute;
    border-style: none;
    left: 0;
    bottom: -300px;
    z-index: -1;
    width: 100%;
    height: 600px;
    background: linear-gradient(rgba(57, 80, 77, 0) 0, #39504d 300px);
  }
  main #main_visual .main_lead p {
    font-size: 16px;
    color: #fff;
    line-height: 1.9;
    letter-spacing: 1px;
    margin: 0 auto;
    max-width: 1380px;
    width: 100%;
    font-family: "Noto Serif JP", serif;
  }
  main #sec_menu {
    background-color: #39504d;
  }
  main #sec_menu .sec_menu_img01 {
    margin-left: 11px;
    width: 100%;
    position: relative;
    bottom: -15px;
    z-index: 5;
    margin: 0 auto;
    max-width: 1580px;
    padding-left: 40px;
  }
  main #sec_menu .sec_menu_img01 img {
    max-width: 438px;
  }
  main #sec_menu .slide_area {
    position: relative;
    z-index: 3;
  }
  main #sec_menu .slide_area ul {
    z-index: 2;
  }
  main #sec_menu .slide_area ul li {
    width: 25%;
    margin: 0 6px;
  }
  main #sec_menu .slide_area ul li img {
    width: 100%;
  }
  main #sec_menu .anchor_menu {
    margin-top: 70px;
    padding: 0 0 70px;
    width: 100%;
  }
  main #sec_menu .anchor_menu h2 {
    text-align: center;
    font-size: 32px;
    letter-spacing: 0.96px;
    color: #ebebe5;
    margin-bottom: 30px;
  }
  main #sec_menu .anchor_menu ul {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 940px;
    margin: 0 auto;
  }
  main #sec_menu .anchor_menu ul li {
    width: 200px;
    margin: 0 8px;
    margin-bottom: 16px;
  }
  main #sec_menu .anchor_menu ul li a {
    transition: 0.3s;
  }
  main #sec_menu .anchor_menu ul li a:hover {
    opacity: 0.6;
  }
  main #main_contents {
    background-color: #f5f5f0;
  }
  main #main_contents .sec_txt01 {
    color: #8a6b4c;
    font-size: 18px;
    line-height: 1.57;
    letter-spacing: 1.4px;
    text-align: center;
    margin-top: -10px;
  }
  main #main_contents h2 {
    font-size: 42px;
    color: #9e9e91;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
  }
  main #main_contents h2 span {
    color: #39504d;
    font-size: 20px;
    font-weight: bold;
    display: block;
    border-top: 2px solid #84a3a0;
    padding-top: 5px;
    margin-top: 8px;
  }
  main #main_contents h3 {
    color: #8a6b4c;
    line-height: 1.59;
    letter-spacing: 1.8px;
    font-size: 24px;
    font-weight: bold;
    white-space: nowrap;
  }
  main #main_contents section {
    padding-top: 100px;
  }
  main #main_contents .inner {
    width: 1180px;
    margin: 0 auto;
    padding: 0 40px;
  }
  main #main_contents .about_box01 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 85px;
  }
  main #main_contents .about_box01 .img01 {
    width: 46%;
  }
  main #main_contents .about_box01 .txtbox {
    width: 50%;
  }
  main #main_contents .about_box01 .txtbox p {
    margin-top: 20px;
    text-align: justify;
  }
  main #main_contents .about_box02 {
    margin-left: auto;
    flex-direction: row-reverse;
    margin-bottom: 55px;
  }
  main #main_contents .about_box02 .txtbox h3 {
    text-align: right;
    text-align: left;
  }
  main #main_contents .about_box02 .txtbox ol {
    margin-top: 20px;
  }
  main #main_contents .about_box02 .txtbox ol li {
    padding-left: 1.15em;
    position: relative;
    margin-bottom: 15px;
    letter-spacing: 0.3px;
    text-align: justify;
  }
  main #main_contents .about_box02 .txtbox ol li:before {
    position: absolute;
    content: "●";
    color: #8a6b4c;
    left: 0;
    top: 4px;
    font-size: 12px;
  }
  main #main_contents .about_box03 ol {
    display: flex;
    flex-wrap: wrap;
    margin-top: 35px;
    margin-right: -8px;
  }
  main #main_contents .about_box03 ol li {
    height: 130px;
    width: 130px;
    background-color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 8px;
    margin-right: 8px;
  }
  main #main_contents .about_box03 ol li div {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  main #main_contents .about_box03 ol li p {
    font-size: 14px;
    color: #39504d;
    font-weight: bold;
    line-height: 1.36;
    margin-top: auto;
    padding-bottom: 15px;
  }
  main #main_contents .about_box03 ol li:nth-child(1) img {
    width: 57px;
  }
  main #main_contents .about_box03 ol li:nth-child(2) img {
    width: 52px;
  }
  main #main_contents .about_box03 ol li:nth-child(3) img {
    width: 54.5px;
  }
  main #main_contents .about_box03 ol li:nth-child(4) img {
    width: 25.5px;
  }
  main #main_contents .about_box03 ol li:nth-child(5) img {
    width: 52.5px;
  }
  main #main_contents .about_box03 ol li:nth-child(6) img {
    width: 39.5px;
  }
  main #main_contents .about_box03 ol li:nth-child(7) img {
    width: 60px;
  }
  main #main_contents .about_box03 ol li:nth-child(8) img {
    width: 75px;
  }
  main #main_contents .about_box03 ol li:nth-child(9) img {
    width: 70px;
  }
  main #main_contents .about_box03 ol li:nth-child(10) img {
    width: 52.5px;
  }
  main #main_contents .about_box03 ol li:nth-child(11) img {
    width: 52.5px;
  }
  main #main_contents .about_box03 ol li:nth-child(12) img {
    width: 44px;
  }
  main #main_contents .about_box03 ol li:nth-child(13) img {
    width: 40px;
  }
  main #main_contents .about_box03 ol li:nth-child(14) img {
    width: 41px;
  }
  main #main_contents .about_box03 ol li:nth-child(15) img {
    width: 60px;
  }
  main #main_contents .type .inner {
    width: 1260px;
    padding: 0 40px;
  }
  main #main_contents .type .inner .anno {
    padding: 0 40px;
    font-size: 14px;
    margin-left: 1rem;
    text-indent: -1rem;
    margin-top: -10px;
    text-align: justify;
  }
  main #main_contents .type_list {
    padding: 0 40px;
    margin-top: 55px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  main #main_contents .type_list .tl {
    margin-bottom: 30px;
    width: 32%;
  }
  main #main_contents .type_list .tl .type_sp {
    display: block !important;
  }
  main #main_contents .type_list .tl:nth-child(even) {
    background-color: #8a6b4c;
  }
  main #main_contents .type_list .tl:nth-child(odd) {
    background-color: #39504d;
  }
  main #main_contents .type_list .tl .type_sp {
    display: none;
  }
  main #main_contents .type_list .tl .type_btn {
    width: 100%;
    height: 210px;
    background-position: left center;
    background-size: cover;
    position: relative;
    pointer-events: none;
  }
  main #main_contents .type_list .tl .type_btn p {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  main #main_contents .type_list .tl .type_btn p span {
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    padding-right: 35px;
  }
  main #main_contents .type_list .tl .type_ac span:before {
    transform: translateY(-50%) rotate(180deg) !important;
  }
  main #main_contents .type_list .tl .type_list_box {
    padding: 30px 25px;
  }
  main #main_contents .type_list .tl .type_list_box * {
    color: #fff;
  }
  main #main_contents .type_list .tl .type_list_box p {
    text-align: justify;
  }
  main #main_contents .type_list .tl .type_list_box .img {
    margin-top: 30px;
  }
  main #main_contents .type_list .tl .type_list_box .img img {
    width: 200px;
  }
  main #main_contents .type_list .tl .type_list_box ol {
    margin-top: 20px;
    margin-left: 10px;
  }
  main #main_contents .type_list .tl .type_list_box ol li {
    padding-left: 1.15em;
    position: relative;
    margin-bottom: 12px;
  }
  main #main_contents .type_list .tl .type_list_box ol li:last-child {
    margin-bottom: 0;
  }
  main #main_contents .type_list .tl .type_list_box ol li:before {
    position: absolute;
    content: "●";
    color: #84a3a0;
    left: 0;
    top: 4px;
    font-size: 12px;
  }
  main #main_contents .plan .plan_inner {
    margin: 0 auto;
    width: 1260px;
    padding: 0 40px;
  }
  main #main_contents .plan .plan_inner .plan_pr {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  main #main_contents .plan .plan_inner .plan_pr li {
    margin: 0 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20%;
    height: 80px;
    font-weight: bold;
    color: #8a6b4c;
    font-size: 20px;
    background-color: #fff;
    border-radius: 16px;
    margin-bottom: 14px;
    line-height: 1.4;
  }
  main #main_contents .plan .plan_inner .plan_pr li span {
    color: #8a6b4c;
    font-size: 16px;
    position: relative;
    top: -3px;
  }
  main #main_contents .plan .price_wrp {
    margin-top: 40px;
  }
  main #main_contents .plan .price_wrp .top_anno {
    font-size: 14px;
    text-align: right;
    margin-bottom: 5px;
  }
  main #main_contents .plan .price_wrp .btm_anno {
    font-size: 14px;
    letter-spacing: 1.2px;
    line-height: 1.58;
    margin-left: 1rem;
    text-indent: -1rem;
    text-align: justify;
  }
  main #main_contents .plan .price_wrp .payment {
    margin-top: 30px;
  }
  main #main_contents .plan .price_wrp .price_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  main #main_contents .plan .price_wrp .price_list li {
    margin-bottom: 25px;
    width: 32%;
    background-color: #fff;
  }
  main #main_contents .plan .price_wrp .price_list li:nth-child(odd) .price_box01 {
    background-color: #39504d;
  }
  main #main_contents .plan .price_wrp .price_list li:nth-child(even) .price_box01 {
    background-color: #8a6b4c;
  }
  main #main_contents .plan .price_wrp .price_list li:last-child {
    width: 100%;
    display: flex;
  }
  main #main_contents .plan .price_wrp .price_list li:last-child .price_box01 {
    width: 38%;
    flex-direction: row;
    align-items: center;
  }
  main #main_contents .plan .price_wrp .price_list li:last-child .price_box01 p {
    display: inline-block;
  }
  main #main_contents .plan .price_wrp .price_list li:last-child .price_box01 .txt02 {
    margin-left: 30px;
  }
  main #main_contents .plan .price_wrp .price_list li:last-child .price_box02 {
    width: 62%;
    padding: 25px 20px;
  }
  main #main_contents .plan .price_wrp .price_list li:last-child .price_box02 .price_box02_box01_pr {
    position: relative;
    top: 5px;
  }
  main #main_contents .plan .price_wrp .price_list li .price_box01 {
    width: 100%;
    height: 140px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url("../img/mandara.svg");
    background-size: 240px auto;
    background-repeat: no-repeat;
    background-position: right -80px top 23px;
  }
  main #main_contents .plan .price_wrp .price_list li .price_box01 .txt01 {
    color: #fff;
    font-weight: bold;
    font-size: 24px;
    letter-spacing: 2.3px;
  }
  main #main_contents .plan .price_wrp .price_list li .price_box01 .txt02 {
    color: #f5f5f0;
    font-size: 18px;
    letter-spacing: 1.7px;
  }
  main #main_contents .plan .price_wrp .price_list li .price_box02 {
    background-color: #fff;
    padding: 30px 20px;
  }
  main #main_contents .plan .price_wrp .price_list li .price_box02 .price_box02_box01_02 {
    margin-top: 60px;
  }
  main #main_contents .plan .price_wrp .price_list li .price_box02 .price_box02_box01 {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  main #main_contents .plan .price_wrp .price_list li .price_box02 .price_box02_box01 .circle {
    color: #fff;
    background-color: #9e9e91;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 3px;
  }
  main #main_contents .plan .price_wrp .price_list li .price_box02 .price_box02_box01 .circle span {
    color: #fff;
    font-size: 24px;
  }
  main #main_contents .plan .price_wrp .price_list li .price_box02 .price_box02_box01 .price_box02_box01_pr {
    width: 73%;
  }
  main #main_contents .plan .price_wrp .price_list li .price_box02 .price_box02_box01 .price_box02_box01_pr .txt01 {
    color: #8a6b4c;
    font-size: 40px;
    letter-spacing: 1.52px;
    line-height: 1;
    text-align: right;
    border-bottom: 1px solid #9e9e91;
    padding-bottom: 4px;
  }
  main #main_contents .plan .price_wrp .price_list li .price_box02 .price_box02_box01 .price_box02_box01_pr .txt01 .sp01 {
    font-size: 16px;
    display: inline-block;
    padding-right: 15px;
    letter-spacing: 1.8px;
  }
  main #main_contents .plan .price_wrp .price_list li .price_box02 .price_box02_box01 .price_box02_box01_pr .txt01 .sp02 {
    font-size: 26px;
    color: #9e9e91;
    font-weight: bold;
  }
  main #main_contents .plan .price_wrp .price_list li .price_box02 .price_box02_box01 .price_box02_box01_pr .txt02 {
    color: #39504d;
    font-size: 24px;
    letter-spacing: 1.04px;
    line-height: 1;
    text-align: right;
    padding-top: 6px;
  }
  main #main_contents .plan .price_wrp .price_list li .price_box02 .price_box02_box01 .price_box02_box01_pr .txt02 .sp01 {
    font-size: 14px;
    line-height: 1;
    display: inline-block;
    color: #9e9e91;
    border: 1px solid #9e9e91;
    border-radius: 24px;
    padding: 6px 14px 5px;
    position: relative;
    top: -3px;
    margin-right: 15px;
  }
  main #main_contents .plan .price_wrp .price_list li .price_box02 .price_box02_box01 .price_box02_box01_pr .txt02 .sp02 {
    font-size: 18px;
    color: #9e9e91;
    font-weight: bold;
  }
  main #main_contents .plan .price_wrp .price_list li .price_box02 .price_box02_box01 .price_box02_box01_pr .txt03 {
    color: #8a6b4c;
    font-size: 40px;
    letter-spacing: 1.52px;
    line-height: 1;
    text-align: right;
  }
  main #main_contents .plan .price_wrp .price_list li .price_box02 .price_box02_box01 .price_box02_box01_pr .txt03 .sp01 {
    font-size: 14px;
    display: inline-block;
    letter-spacing: 1.8px;
    color: #9e9e91;
  }
  main #main_contents .plan .price_wrp .price_list li .price_box02 .price_box02_box01 .price_box02_box01_pr .txt03 .sp02 {
    font-size: 26px;
    color: #9e9e91;
    font-weight: bold;
  }
  main #main_contents .plan .price_wrp .price_list li .price_box02 .price_box02_box01 .price_box02_box01_pr .txt04 {
    color: #39504d;
    font-size: 24px;
    letter-spacing: 1.04px;
    line-height: 1;
    text-align: right;
    padding-top: 6px;
  }
  main #main_contents .plan .price_wrp .price_list li .price_box02 .price_box02_box01 .price_box02_box01_pr .txt04 .sp01 {
    font-size: 14px;
    line-height: 1;
    display: inline-block;
    color: #9e9e91;
    padding: 6px 14px 5px;
    position: relative;
    top: -3px;
    margin-right: 5px;
  }
  main #main_contents .plan .price_wrp .price_list li .price_box02 .price_box02_box01 .price_box02_box01_pr .txt04 .sp02 {
    font-size: 18px;
    color: #9e9e91;
    font-weight: bold;
  }
  main #main_contents .plan .price_wrp .price_list li .price_box02 .price_box02_box02 {
    display: flex;
    justify-content: center;
  }
  main #main_contents .plan .price_wrp .price_list li .price_box02 .price_box02_box02 .price_box02_box01_pr {
    display: inline-block;
    width: auto !important;
    margin-left: 20px;
    display: flex;
    align-items: center;
    gap: 30px;
  }
  main #main_contents .plan .price_wrp .price_list li .price_box02 .price_box02_box02 .circle {
    top: 0 !important;
  }
  main #main_contents .plan .price_wrp .price_list li .price_box02 .anno {
    text-align: right;
    color: #9e9e91;
    font-size: 14px;
    margin-right: -10px;
  }
  main #main_contents .schedule .schedule_table {
    margin: 0 auto;
    padding: 0 40px;
    margin-top: 65px;
    width: 800px;
  }
  main #main_contents .schedule .schedule_table table {
    width: 100%;
  }
  main #main_contents .schedule .schedule_table table tr td, main #main_contents .schedule .schedule_table table tr th {
    border: 1px solid #c6beb6;
    background-color: #fff;
    text-align: center;
    vertical-align: middle;
    padding: 10px;
    font-family: "Noto Serif JP", serif;
    color: #39504d;
  }
  main #main_contents .schedule .schedule_table table tr td {
    font-size: 22px;
    font-weight: bold;
  }
  main #main_contents .schedule .schedule_table table tr th {
    font-size: 20px;
  }
  main #main_contents .schedule .schedule_table table .holiday td, main #main_contents .schedule .schedule_table table .holiday th {
    background-color: #e4e4da;
  }
  main #main_contents .schedule .schedule_table p {
    margin-left: 1rem;
    text-indent: -1rem;
    font-size: 14px;
    margin-top: 20px;
  }
  main #main_contents .instructor .instructor_wrp {
    background-color: #39504d;
    width: 1180px;
    margin: 0 auto;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner {
    background-color: #39504d;
    padding-top: 60px;
    margin-right: calc(50% - 50vw);
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .box_wrp {
    width: 1180px;
    padding: 0 60px;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_box01 {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-left: -60px;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_box01 .img {
    display: inline-block;
    margin-left: -100px;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_box01 .img img {
    width: 526px;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_box01 .txtbox {
    text-align: right;
    width: 590px;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_box01 .txtbox .txt01 {
    display: inline-block;
    background-color: #8a6b4c;
    color: #fff;
    font-family: "Tenor Sans", sans-serif;
    line-height: 1;
    font-size: 34px;
    padding: 15px 65px;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_box01 .txtbox .txt02 {
    font-weight: bold;
    font-size: 22px;
    line-height: 1.82;
    letter-spacing: 1.7px;
    color: #fffffe;
    text-shadow: 0 0 12px rgba(57, 80, 77, 0.8);
    margin-top: 30px;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_box01 .txtbox .instructor_contents_box01 h3 {
    color: #fff;
    font-family: "Tenor Sans", sans-serif;
    font-weight: 400;
    font-size: 30px;
    border-bottom: 1px solid #c6beb6;
    line-height: 1;
    padding-bottom: 15px;
    text-align: left;
    margin-top: 31px;
    margin-bottom: 35px;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_box01 .txtbox .instructor_contents_box01 .box01_txt01 {
    text-align: justify;
    color: #fff;
    margin-bottom: 18px;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_contents {
    padding: 10px 0 70px;
    margin-top: -30px;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_contents .instructor_contents_box01 {
    margin-bottom: 70px;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_contents .instructor_contents_box01:last-child {
    margin-bottom: 0;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_contents .instructor_contents_box01 .i_c_btn_active:before {
    transform: rotate(180deg) !important;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_contents .instructor_contents_box01 h3 {
    color: #fff;
    font-family: "Tenor Sans", sans-serif;
    font-weight: 400;
    font-size: 30px;
    border-bottom: 1px solid #c6beb6;
    line-height: 1;
    padding-bottom: 15px;
    text-align: left;
    margin-top: 45px;
    margin-bottom: 35px;
    pointer-events: none;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_contents .instructor_contents_box01 .box01 {
    display: block !important;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_contents .instructor_contents_box01 .box01 .txt01 {
    line-height: 1.69;
    letter-spacing: 1.3px;
    text-align: justify;
    color: #fff;
    margin-bottom: 18px;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_contents .instructor_contents_box01 .box01 .txt01:last-child {
    margin-bottom: 0;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_contents .instructor_contents_box01 .box01 .box01_row {
    display: flex;
    justify-content: space-between;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_contents .instructor_contents_box01 .box01 .box01_row .box01_row_col01 {
    display: flex;
    gap: 10px;
    background-color: #fff;
    padding: 10px;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_contents .instructor_contents_box01 .box01 .box01_row .box01_row_col01 img {
    max-width: 90px;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_contents .instructor_contents_box01 .box02 {
    margin-top: -30px;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_contents .instructor_contents_box01 .box02.box02_01 {
    margin-top: 0 !important;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_contents .instructor_contents_box01 .box02 .tag {
    background-color: #8a6b4c;
    display: inline-block;
    line-height: 1;
    border-radius: 22px;
    padding: 6px 20px 5px;
    color: #fff;
    margin-bottom: 12px;
    margin-top: 45px;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_contents .instructor_contents_box01 .box02 ol {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_contents .instructor_contents_box01 .box02 ol:after {
    content: "";
    width: 32%;
    height: 1px;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_contents .instructor_contents_box01 .box02 ol li {
    color: #fff;
    font-family: "Noto Serif JP", serif;
    width: 32%;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_contents .instructor_contents_box01 .before_event {
    margin-top: 40px;
    width: 90%;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_contents .instructor_contents_box01 .before_event .tag02 {
    color: #fff;
    position: relative;
    cursor: pointer;
    display: inline-block;
    padding: 12px 0 14px;
    padding-right: 75px;
    border-bottom: 1px solid #fff;
    margin-bottom: 28px;
    width: 340px;
    line-height: 1;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_contents .instructor_contents_box01 .before_event .tag02:before {
    position: absolute;
    content: "";
    background-image: url("../img/arrow.svg");
    background-repeat: no-repeat;
    width: 28px;
    height: 28px;
    right: 0;
    top: 5px;
    transform: rotate(0);
    transition: 0.3s;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_contents .instructor_contents_box01 .before_event ol {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_contents .instructor_contents_box01 .before_event ol li {
    width: 32%;
    font-size: 13px;
    margin-bottom: 5px;
  }
  main #main_contents .studio .inner {
    padding: 0 40px;
    width: 1260px;
    margin: 0 auto;
  }
  main #main_contents .studio .inner .imgbox {
    display: flex;
    justify-content: space-between;
    margin: 55px auto;
    max-width: 900px;
  }
  main #main_contents .studio .inner .imgbox div {
    width: 49.5%;
  }
  main #main_contents .studio .inner .imgbox div img {
    width: 100%;
  }
  main #main_contents .studio .inner .txt01 {
    font-size: 22px;
    letter-spacing: 1.7px;
    color: #8a6b4c;
    font-weight: bold;
    margin-bottom: 30px;
  }
  main #main_contents .studio .inner table {
    width: 100%;
    margin-bottom: 60px;
  }
  main #main_contents .studio .inner table tr:first-child td, main #main_contents .studio .inner table tr:first-child th {
    border-top: 1px solid #c6beb6;
  }
  main #main_contents .studio .inner table tr td, main #main_contents .studio .inner table tr th {
    border-bottom: 1px solid #c6beb6;
    vertical-align: middle;
    padding: 25px 0;
    font-family: "Noto Serif JP", serif;
  }
  main #main_contents .studio .inner table tr td a, main #main_contents .studio .inner table tr th a {
    display: inline-block;
    border-bottom: 1px solid #8a6b4c;
    color: #8a6b4c;
    position: relative;
    line-height: 1.1;
  }
  main #main_contents .studio .inner table tr td a:before, main #main_contents .studio .inner table tr th a:before {
    position: absolute;
    content: "";
    background-image: url("../img/icon_external.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 22px;
    height: 20px;
    right: -28px;
    bottom: 2px;
  }
  main #main_contents .studio .inner table tr th {
    padding-right: 40px;
    font-weight: bold;
    color: #84a3a0;
  }
  main #main_contents .studio .inner .studio_box01 {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  main #main_contents .studio .inner .studio_box01 .box01 {
    width: 48%;
  }
  main #main_contents .studio .inner .studio_box01 .box02 {
    width: 47%;
  }
  main #main_contents .studio .inner .gmap {
    border: 1px solid #c6beb6;
    overflow: hidden;
  }
  main #main_contents .studio .inner .gmap iframe {
    width: 100%;
    height: 400px;
    vertical-align: bottom;
  }
  main #main_contents .studio .inner .pr_box {
    background-color: #6c6a5e;
    text-align: center;
    padding: 60px 60px;
    margin-top: 0px;
  }
  main #main_contents .studio .inner .pr_box h3 {
    color: #fff;
    font-size: 26px;
    font-weight: bold;
    line-height: 1.44;
    letter-spacing: 1.6px;
  }
  main #main_contents .studio .inner .pr_box .banner {
    margin-top: 34px;
    margin-bottom: 55px;
  }
  main #main_contents .studio .inner .pr_box .banner a {
    display: inline-block;
    transition: 0.3s;
  }
  main #main_contents .studio .inner .pr_box .banner a:hover {
    opacity: 0.6;
  }
  main #main_contents .studio .inner .pr_box .banner a img {
    width: 400px;
  }
  main #main_contents .studio .inner .pr_box .txt01 {
    display: inline-block;
    color: #6c6a5e;
    font-weight: bold;
    background-color: #fff;
    line-height: 1;
    padding: 10px 28px 8px;
    border-radius: 25px;
    font-size: 16px;
    margin-bottom: 25px;
    text-align: justify;
  }
  main #main_contents .studio .inner .pr_box .txt02 {
    text-align: justify;
    color: #fff;
  }
  main #main_contents .studio .inner .pr_box .pr_box_box01 {
    text-align: center;
  }
  main #main_contents .studio .inner .pr_box .pr_box_box01 .box01 {
    width: 100%;
  }
  main #main_contents .studio .inner .pr_box .pr_box_box01 .box01 .txt02 {
    text-align: center;
  }
  main #main_contents .studio .inner .pr_box .pr_box_box01 .box02 {
    width: 39%;
  }
  main #main_contents .faq {
    padding-bottom: 120px;
  }
  main #main_contents .faq .inner {
    padding: 0 40px;
    margin-top: 45px;
  }
  main #main_contents .faq .inner ul .q_active {
    background-color: #cbdbd9 !important;
  }
  main #main_contents .faq .inner ul .q_active:after {
    transform: translateY(-50%) rotate(180deg) !important;
  }
  main #main_contents .faq .inner ul li {
    border-bottom: 1px solid #e4e4da;
  }
  main #main_contents .faq .inner ul li .question {
    min-height: 100px;
    font-weight: bold;
    color: #39504d;
    background-color: #fff;
    padding: 25px 110px 25px 95px;
    display: flex;
    align-items: center;
    position: relative;
    transition: 0.3s all;
    cursor: pointer;
  }
  main #main_contents .faq .inner ul li .question:before {
    position: absolute;
    content: "Q";
    font-size: 42px;
    line-height: 1;
    font-family: "Tenor Sans", sans-serif;
    color: #84a3a0;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 400;
  }
  main #main_contents .faq .inner ul li .question:after {
    position: absolute;
    content: "";
    background-image: url("../img/arrow_faq.svg");
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
  }
  main #main_contents .faq .inner ul li .question:hover {
    background-color: #cbdbd9 !important;
  }
  main #main_contents .faq .inner ul li .answer {
    background-color: #fff;
    padding: 45px;
    display: none;
  }
  main #main_contents .faq .inner ul li .answer p {
    text-align: justify;
  }
  main #main_contents .insta {
    background-color: #c6beb6;
    padding: 60px 40px 100px;
  }
  main #main_contents .insta .inner {
    width: 960px !important;
  }
  main #main_contents .insta h2 {
    text-align: left;
    color: #f5f5f0;
  }
  .dara_box {
    background-color: #8a6b4c;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    gap: 30px;
  }
  .dara_box p {
    text-align: left;
    color: #fff;
    font-size: 16px;
    line-height: 1.57;
    letter-spacing: 1.4px;
    font-weight: 400;
  }
  .dara_box a {
    transition: 0.3s;
  }
  .dara_box a:hover {
    opacity: 0.6;
  }
  .dara_box img {
    width: 300px;
  }
  footer {
    background-color: #39504d;
    padding: 40px !important;
    position: relative;
  }
  footer .inner {
    width: 1180px;
    margin: 0 auto;
  }
  footer .inner .box01 {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
  footer .inner .box01 .logo p img {
    width: 100px;
  }
  footer .inner .box01 .box02 {
    width: 88%;
    display: flex;
    justify-content: space-between;
  }
  footer .inner .box01 .box02 div:first-child {
    position: relative;
    top: -11px;
  }
  footer .inner .box01 .box02 .txt01 {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 8px;
  }
  footer .inner .box01 .box02 .txt02 {
    color: #fff;
    font-size: 16px;
    font-family: "Noto Serif JP", serif;
  }
  footer .inner .box01 .box02 .sns {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 55px;
  }
  footer .inner .box01 .box02 .sns a {
    display: inline-block;
    margin-left: 20px;
  }
  footer .inner .box01 .box02 .sns img {
    width: 30px;
  }
  footer .copyright {
    font-size: 12px;
    text-align: right;
    color: #fff;
    font-family: "Tenor Sans", sans-serif;
    margin-top: 45px;
  }
}
@media screen and (max-width: 767px) {
  * {
    font-size: 3.3854166667vw;
    line-height: 1.69;
    letter-spacing: 0.1692708333vw;
    font-family: "Noto Serif JP", serif;
  }
  .pc {
    display: none;
  }
  body {
    height: 100vh;
  }
  img {
    width: 100%;
  }
  .menu_active {
    opacity: 1 !important;
    visibility: visible !important;
  }
  .menu_active .inner {
    transform: translate(0, 0) !important;
  }
  .active_list {
    transform: translate(0, 0) !important;
    opacity: 1 !important;
  }
  #main_menu {
    background-color: rgba(51, 53, 55, 0.3);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    visibility: hidden;
    overflow: hidden;
    opacity: 0;
  }
  #main_menu .inner {
    transition: 0.5s;
    transform: translate(100%, 0);
    background-color: #39504d;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    padding: 10% 5% 10%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 800;
    overflow-y: auto;
  }
  #main_menu .inner nav ul li {
    margin-bottom: 5.2083333333vw;
    white-space: nowrap;
    transition: 1s all;
    opacity: 0;
    transform: translate(25%, 0);
  }
  #main_menu .inner nav ul li:last-child {
    margin-bottom: 0;
  }
  #main_menu .inner nav ul li a {
    color: #fff;
    font-family: "Tenor Sans", sans-serif;
    font-size: 5.2083333333vw;
    line-height: 1.5;
  }
  #main_menu .inner nav ul li a span {
    display: block;
    color: #fff;
    font-family: "Noto Serif JP", serif;
    font-size: 3.6458333333vw;
    line-height: 1;
  }
  .header_bg {
    background-color: rgba(57, 80, 77, 0.5);
  }
  header {
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    padding: 3.2552083333vw;
    width: 100%;
    transition: 0.5s;
  }
  header p img {
    width: 20.703125vw;
    object-fit: contain;
  }
  .menu_wrp {
    position: fixed;
    right: 3.2552083333vw;
    top: 4.5572916667vw;
    z-index: 1000;
  }
  .btn-trigger {
    position: relative;
    width: 9.1145833333vw;
    height: 5.7291666667vw;
    cursor: pointer;
    display: inline-block;
    transition: all 0.5s;
    box-sizing: border-box;
  }
  .btn-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    display: inline-block;
    transition: all 0.5s;
    box-sizing: border-box;
  }
  .btn-trigger span:nth-of-type(1) {
    top: 0;
  }
  .btn-trigger span:nth-of-type(2) {
    top: 2.6041666667vw;
  }
  .btn-trigger span:nth-of-type(3) {
    bottom: 0;
    width: 5.2083333333vw;
  }
  #btn01 span:nth-of-type(1) {
    -webkit-animation: btn07-bar01 0.75s forwards;
    animation: btn07-bar01 0.75s forwards;
  }
  @-webkit-keyframes btn07-bar01 {
    0% {
      -webkit-transform: translateY(2.6041666667vw) rotate(45deg);
    }
    50% {
      -webkit-transform: translateY(2.6041666667vw) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
    }
  }
  @keyframes btn07-bar01 {
    0% {
      transform: translateY(2.6041666667vw) rotate(45deg);
    }
    50% {
      transform: translateY(2.6041666667vw) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  #btn01 span:nth-of-type(2) {
    transition: all 0.25s 0.25s;
    opacity: 1;
  }
  #btn01 span:nth-of-type(3) {
    -webkit-animation: btn07-bar03 0.75s forwards;
    animation: btn07-bar03 0.75s forwards;
  }
  @-webkit-keyframes btn07-bar03 {
    0% {
      -webkit-transform: translateY(-2.6041666667vw) rotate(-45deg);
    }
    50% {
      -webkit-transform: translateY(-2.6041666667vw) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
    }
  }
  @keyframes btn07-bar03 {
    0% {
      transform: translateY(-2.6041666667vw) rotate(-45deg);
    }
    50% {
      transform: translateY(-2.6041666667vw) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  #btn01.active span:nth-of-type(1) {
    -webkit-animation: active-btn07-bar01 0.75s forwards;
    animation: active-btn07-bar01 0.75s forwards;
  }
  #btn01.active span:nth-of-type(3) {
    width: 100%;
  }
  @-webkit-keyframes active-btn07-bar01 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(2.6041666667vw) rotate(0);
    }
    100% {
      -webkit-transform: translateY(2.6041666667vw) rotate(45deg);
    }
  }
  @keyframes active-btn07-bar01 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(2.6041666667vw) rotate(0);
    }
    100% {
      transform: translateY(2.6041666667vw) rotate(45deg);
    }
  }
  #btn01.active span:nth-of-type(2) {
    opacity: 0;
  }
  #btn01.active span:nth-of-type(3) {
    -webkit-animation: active-btn07-bar03 0.75s forwards;
    animation: active-btn07-bar03 0.75s forwards;
  }
  @-webkit-keyframes active-btn07-bar03 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(-2.6041666667vw) rotate(0);
    }
    100% {
      -webkit-transform: translateY(-2.6041666667vw) rotate(-45deg);
    }
  }
  @keyframes active-btn07-bar03 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(-2.6041666667vw) rotate(0);
    }
    100% {
      transform: translateY(-2.6041666667vw) rotate(-45deg);
    }
  }
  #reserve_fix {
    background-color: rgba(57, 80, 77, 0.5);
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 2.734375vw 5.2083333333vw 3.6458333333vw;
    z-index: 99;
    display: none;
  }
  #reserve_fix p {
    font-size: 3.6458333333vw;
    color: #fff;
  }
  #reserve_fix p span {
    color: #fff;
  }
  #reserve_fix .box01 {
    display: flex;
    justify-content: space-between;
    margin-top: 1.953125vw;
  }
  #reserve_fix .box01 .line {
    background-color: #4cc764;
    text-align: right;
  }
  #reserve_fix .box01 .line span {
    position: relative;
  }
  #reserve_fix .box01 .line span:before {
    position: absolute;
    content: "";
    background-image: url("../img/icon_reservation_line.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 7.8125vw;
    height: 7.421875vw;
    left: 4.5572916667vw;
    top: 50%;
    transform: translateY(-50%);
  }
  #reserve_fix .box01 .form {
    background-color: #8a6b4c;
  }
  #reserve_fix .box01 div {
    width: 49%;
    display: inline-block;
  }
  #reserve_fix .box01 a {
    display: inline-block;
    padding: 2px;
    width: 100%;
  }
  #reserve_fix .box01 a span {
    font-family: "Noto Serif JP", serif;
    font-size: 4.1666666667vw;
    display: inline-block;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    width: 100%;
    padding: 3.90625vw 3.6458333333vw;
    line-height: 1;
    font-weight: bold;
    letter-spacing: 0.2083333333vw;
  }
  .page_top_abs {
    position: absolute !important;
    bottom: auto !important;
    top: -6.5104166667vw;
  }
  #page_top {
    position: fixed;
    right: 5.2083333333vw;
    bottom: 32.5520833333vw;
    z-index: 99;
    display: none;
  }
  #page_top a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 13.0208333333vw;
    height: 13.0208333333vw;
    background-color: #84a3a0;
  }
  #page_top a img {
    width: 5.3385416667vw;
  }
  main #main_visual .main_visual_inner {
    width: 100%;
    height: 100vh;
  }
  main #main_visual .main_visual_inner #bg_wrp {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: -1;
  }
  main #main_visual .main_visual_inner #bg_wrp .mv_bg {
    position: relative;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 1;
  }
  main #main_visual .main_visual_inner #bg_wrp .mv_bg:before {
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    background-color: rgba(57, 80, 77, 0.5);
    left: 0;
    top: 0;
    z-index: 3;
  }
  main #main_visual .main_visual_inner #bg_wrp .mv_bg .zoom {
    animation-name: zoom;
    animation-duration: 10s;
    animation-fill-mode: forwards;
    z-index: 2;
  }
  main #main_visual .main_visual_inner #bg_wrp .mv_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
  }
  main #main_visual .main_visual_inner h1 {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 100%;
  }
  main #main_visual .main_visual_inner h1 img {
    width: 31.9010416667vw;
    position: relative;
    top: -1.953125vw;
  }
  main #main_visual .main_visual_inner h1 span {
    font-size: 6.7708333333vw;
    color: #fff;
    font-weight: bold;
    line-height: 1.81;
    letter-spacing: 0.6770833333vw;
    display: inline-block;
    margin-left: 8.4635416667vw;
    font-family: "Noto Serif JP", serif;
  }
  main #main_visual .main_lead {
    position: relative;
    z-index: 1;
    padding: 5.2083333333vw;
    margin-top: 0 !important;
  }
  main #main_visual .main_lead:before {
    content: "";
    position: absolute;
    border-style: none;
    left: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    height: 70%;
    background: linear-gradient(rgba(57, 80, 77, 0) 0, #39504d 100px);
  }
  main #main_visual .main_lead p {
    font-size: 3.6458333333vw;
    color: #fff;
    line-height: 1.64;
    letter-spacing: 0.1822916667vw;
    font-family: "Noto Serif JP", serif;
  }
  main #sec_menu {
    background-color: #39504d;
  }
  main #sec_menu .sec_menu_img01 {
    margin-left: 1.4322916667vw;
    width: 80%;
    position: relative;
    bottom: -1.953125vw;
    z-index: 5;
  }
  main #sec_menu .slide_area {
    position: relative;
    z-index: 3;
  }
  main #sec_menu .slide_area ul li {
    margin: 0 0.78125vw;
  }
  main #sec_menu .anchor_menu {
    margin-top: 13.0208333333vw;
    padding: 0 5.2083333333vw 9.1145833333vw;
  }
  main #sec_menu .anchor_menu h2 {
    text-align: center;
    font-size: 6.25vw;
    letter-spacing: 0.125vw;
    color: #ebebe5;
  }
  main #sec_menu .anchor_menu ul {
    margin: 0 -3.90625vw;
    margin-top: 6.5104166667vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  main #sec_menu .anchor_menu ul li {
    width: 45%;
    margin: 0 1.953125vw;
    margin-bottom: 3.90625vw;
  }
  main #main_contents {
    background-color: #f5f5f0;
  }
  main #main_contents .sec_txt01 {
    color: #8a6b4c;
    font-size: 3.6458333333vw;
    line-height: 1.57;
    letter-spacing: 0.1822916667vw;
    text-align: center;
  }
  main #main_contents h2 {
    font-size: 9.375vw;
    color: #9e9e91;
    text-align: center;
    margin-bottom: 7.8125vw;
    line-height: 1.2;
  }
  main #main_contents h2 span {
    color: #39504d;
    font-size: 4.1666666667vw;
    font-weight: bold;
    display: block;
    border-top: 2px solid #84a3a0;
    padding-top: 0.6510416667vw;
    margin-top: 1.0416666667vw;
  }
  main #main_contents h3 {
    color: #8a6b4c;
    line-height: 1.39;
    letter-spacing: 0.234375vw;
    font-size: 4.6875vw;
    font-weight: bold;
    white-space: nowrap;
  }
  main #main_contents section {
    padding-top: 13.0208333333vw;
  }
  main #main_contents .about_box01 {
    width: 90%;
    margin-bottom: 11.0677083333vw;
  }
  main #main_contents .about_box01 .txtbox {
    padding: 7.8125vw 0 0 5.2083333333vw;
  }
  main #main_contents .about_box01 .txtbox p {
    margin-top: 5.2083333333vw;
    text-align: justify;
  }
  main #main_contents .about_box02 {
    margin-left: auto;
  }
  main #main_contents .about_box02 .txtbox {
    padding: 7.8125vw 5.2083333333vw 0 0;
  }
  main #main_contents .about_box02 .txtbox h3 {
    text-align: right;
  }
  main #main_contents .about_box02 .txtbox ol {
    margin-top: 5.2083333333vw;
  }
  main #main_contents .about_box02 .txtbox ol li {
    padding-left: 1.15em;
    position: relative;
    margin-bottom: 2.6041666667vw;
    text-align: justify;
  }
  main #main_contents .about_box02 .txtbox ol li:before {
    position: absolute;
    content: "●";
    color: #8a6b4c;
    left: 0;
    top: 0.78125vw;
    font-size: 2.6041666667vw;
  }
  main #main_contents .about_box03 {
    padding: 0 5.2083333333vw;
  }
  main #main_contents .about_box03 ol {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 5.859375vw;
  }
  main #main_contents .about_box03 ol li {
    height: 27.8645833333vw;
    width: 27.8645833333vw;
    background-color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 3.2552083333vw;
  }
  main #main_contents .about_box03 ol li div {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  main #main_contents .about_box03 ol li p {
    font-size: 2.734375vw;
    color: #39504d;
    font-weight: bold;
    line-height: 1.36;
    margin-top: auto;
    padding-bottom: 1.953125vw;
  }
  main #main_contents .about_box03 ol li:nth-child(1) img {
    width: 14.84375vw;
  }
  main #main_contents .about_box03 ol li:nth-child(2) img {
    width: 13.5416666667vw;
  }
  main #main_contents .about_box03 ol li:nth-child(3) img {
    width: 14.1927083333vw;
  }
  main #main_contents .about_box03 ol li:nth-child(4) img {
    width: 6.640625vw;
  }
  main #main_contents .about_box03 ol li:nth-child(5) img {
    width: 13.671875vw;
  }
  main #main_contents .about_box03 ol li:nth-child(6) img {
    width: 10.2864583333vw;
  }
  main #main_contents .about_box03 ol li:nth-child(7) img {
    width: 15.625vw;
  }
  main #main_contents .about_box03 ol li:nth-child(8) img {
    width: 19.53125vw;
  }
  main #main_contents .about_box03 ol li:nth-child(9) img {
    width: 18.2291666667vw;
  }
  main #main_contents .about_box03 ol li:nth-child(10) img {
    width: 13.671875vw;
  }
  main #main_contents .about_box03 ol li:nth-child(11) img {
    width: 13.671875vw;
  }
  main #main_contents .about_box03 ol li:nth-child(12) img {
    width: 11.4583333333vw;
  }
  main #main_contents .about_box03 ol li:nth-child(13) img {
    width: 10.4166666667vw;
  }
  main #main_contents .about_box03 ol li:nth-child(14) img {
    width: 10.6770833333vw;
  }
  main #main_contents .about_box03 ol li:nth-child(15) img {
    width: 15.625vw;
  }
  main #main_contents .type .inner .anno {
    padding: 0 5.2083333333vw;
    font-size: 3.125vw;
    margin-left: 1rem;
    text-indent: -1rem;
    margin-top: 2.6041666667vw;
    text-align: justify;
  }
  main #main_contents .type_list {
    padding: 0 5.2083333333vw;
    margin-top: 7.1614583333vw;
  }
  main #main_contents .type_list .tl {
    margin-bottom: 1.3020833333vw;
  }
  main #main_contents .type_list .tl:nth-child(even) {
    background-color: #8a6b4c;
  }
  main #main_contents .type_list .tl:nth-child(odd) {
    background-color: #39504d;
  }
  main #main_contents .type_list .tl .type_sp {
    display: none;
  }
  main #main_contents .type_list .tl .type_btn {
    width: 100%;
    height: 27.34375vw;
    background-position: left center;
    background-size: cover;
    position: relative;
  }
  main #main_contents .type_list .tl .type_btn p {
    position: absolute;
    right: 3.125vw;
    top: 50%;
    transform: translateY(-50%);
  }
  main #main_contents .type_list .tl .type_btn p span {
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 4.6875vw;
    font-weight: bold;
    padding-right: 11.71875vw;
  }
  main #main_contents .type_list .tl .type_btn p span:before {
    position: absolute;
    content: "";
    background-image: url("../img/arrow.svg");
    background-repeat: no-repeat;
    width: 9.1145833333vw;
    height: 9.1145833333vw;
    right: 0;
    top: -0.9114583333vw;
    transform: rotate(0);
    transition: 0.3s;
  }
  main #main_contents .type_list .tl .type_ac span:before {
    transform: rotate(180deg) !important;
  }
  main #main_contents .type_list .tl .type_list_box {
    padding: 6.5104166667vw 5.2083333333vw;
  }
  main #main_contents .type_list .tl .type_list_box * {
    color: #fff;
  }
  main #main_contents .type_list .tl .type_list_box .type_box_txt01 {
    height: auto !important;
  }
  main #main_contents .type_list .tl .type_list_box .type_box_txt02 {
    height: auto !important;
  }
  main #main_contents .type_list .tl .type_list_box p {
    text-align: justify;
  }
  main #main_contents .type_list .tl .type_list_box .img {
    margin-top: 7.1614583333vw;
  }
  main #main_contents .type_list .tl .type_list_box .img img {
    width: 41.6666666667vw;
  }
  main #main_contents .type_list .tl .type_list_box ol {
    margin-top: 3.90625vw;
    margin-left: 2.6041666667vw;
  }
  main #main_contents .type_list .tl .type_list_box ol li {
    padding-left: 1.15em;
    position: relative;
    margin-bottom: 2.6041666667vw;
  }
  main #main_contents .type_list .tl .type_list_box ol li:last-child {
    margin-bottom: 0;
  }
  main #main_contents .type_list .tl .type_list_box ol li:before {
    position: absolute;
    content: "●";
    color: #84a3a0;
    left: 0;
    top: 0.78125vw;
    font-size: 2.6041666667vw;
  }
  main #main_contents .plan .plan_inner {
    padding: 0 5.2083333333vw;
  }
  main #main_contents .plan .plan_inner .plan_pr {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  main #main_contents .plan .plan_inner .plan_pr li {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48%;
    height: 13.0208333333vw;
    font-weight: bold;
    color: #8a6b4c;
    font-size: 3.90625vw;
    background-color: #fff;
    border-radius: 2.0833333333vw;
    margin-bottom: 1.8229166667vw;
    line-height: 1.2;
  }
  main #main_contents .plan .plan_inner .plan_pr li span {
    color: #8a6b4c;
    font-size: 2.6041666667vw;
    position: relative;
    top: -0.390625vw;
  }
  main #main_contents .plan .price_wrp {
    margin-top: 5.2083333333vw;
  }
  main #main_contents .plan .price_wrp .top_anno {
    font-size: 3.125vw;
    text-align: right;
    margin-bottom: 0.6510416667vw;
  }
  main #main_contents .plan .price_wrp .btm_anno {
    font-size: 3.125vw;
    letter-spacing: 0.15625vw;
    line-height: 1.58;
    margin-left: 1rem;
    text-indent: -1rem;
    text-align: justify;
  }
  main #main_contents .plan .price_wrp .payment {
    margin-top: 3.90625vw;
  }
  main #main_contents .plan .price_wrp .price_list li {
    margin-bottom: 6.5104166667vw;
  }
  main #main_contents .plan .price_wrp .price_list li:nth-child(odd) .price_box01 {
    background-color: #39504d;
  }
  main #main_contents .plan .price_wrp .price_list li:nth-child(even) .price_box01 {
    background-color: #8a6b4c;
  }
  main #main_contents .plan .price_wrp .price_list li .price_box01 {
    width: 100%;
    height: 26.0416666667vw;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url("../img/mandara.svg");
    background-size: 43.2291666667vw auto;
    background-repeat: no-repeat;
    background-position: right -10.4166666667vw top 2.9947916667vw;
  }
  main #main_contents .plan .price_wrp .price_list li .price_box01 .txt01 {
    color: #fff;
    font-weight: bold;
    font-size: 5.9895833333vw;
    letter-spacing: 0.2994791667vw;
  }
  main #main_contents .plan .price_wrp .price_list li .price_box01 .txt02 {
    color: #f5f5f0;
    font-size: 4.4270833333vw;
    letter-spacing: 0.2213541667vw;
    font-family: "Tenor Sans", "Noto Serif JP", serif;
  }
  main #main_contents .plan .price_wrp .price_list li .price_box02 {
    background-color: #fff;
    padding: 9.1145833333vw 5.2083333333vw;
  }
  main #main_contents .plan .price_wrp .price_list li .price_box02 .price_box02_box01_02 {
    margin-top: 7.8125vw;
  }
  main #main_contents .plan .price_wrp .price_list li .price_box02 .price_box02_box01 {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  main #main_contents .plan .price_wrp .price_list li .price_box02 .price_box02_box01 .circle {
    color: #fff;
    background-color: #9e9e91;
    width: 20.8333333333vw;
    height: 20.8333333333vw;
    border-radius: 50%;
    font-size: 7.03125vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 1.3020833333vw;
    font-family: "Tenor Sans", sans-serif;
  }
  main #main_contents .plan .price_wrp .price_list li .price_box02 .price_box02_box01 .circle span {
    color: #fff;
    font-size: 5.2083333333vw;
  }
  main #main_contents .plan .price_wrp .price_list li .price_box02 .price_box02_box01 .price_box02_box01_pr {
    width: 73%;
  }
  main #main_contents .plan .price_wrp .price_list li .price_box02 .price_box02_box01 .price_box02_box01_pr .txt01 {
    color: #8a6b4c;
    font-size: 9.8958333333vw;
    letter-spacing: 0.1979166667vw;
    line-height: 1;
    text-align: right;
    border-bottom: 1px solid #9e9e91;
    padding-bottom: 0.6510416667vw;
    font-family: "Tenor Sans", sans-serif;
  }
  main #main_contents .plan .price_wrp .price_list li .price_box02 .price_box02_box01 .price_box02_box01_pr .txt01 .sp01 {
    font-size: 3.90625vw;
    display: inline-block;
    padding-right: 1.953125vw;
    letter-spacing: 0.234375vw;
  }
  main #main_contents .plan .price_wrp .price_list li .price_box02 .price_box02_box01 .price_box02_box01_pr .txt01 .sp02 {
    font-size: 5.46875vw;
    color: #9e9e91;
    font-weight: bold;
  }
  main #main_contents .plan .price_wrp .price_list li .price_box02 .price_box02_box01 .price_box02_box01_pr .txt02 {
    color: #39504d;
    font-size: 6.7708333333vw;
    letter-spacing: 0.1354166667vw;
    line-height: 1;
    text-align: right;
    padding-top: 2.6041666667vw;
    font-family: "Tenor Sans", sans-serif;
  }
  main #main_contents .plan .price_wrp .price_list li .price_box02 .price_box02_box01 .price_box02_box01_pr .txt02 .sp01 {
    font-size: 3.6458333333vw;
    line-height: 1;
    display: inline-block;
    color: #9e9e91;
    border: 1px solid #9e9e91;
    border-radius: 3.125vw;
    padding: 1.3020833333vw 2.4739583333vw;
    position: relative;
    top: -1.0416666667vw;
    margin-right: 1.953125vw;
  }
  main #main_contents .plan .price_wrp .price_list li .price_box02 .price_box02_box01 .price_box02_box01_pr .txt02 .sp02 {
    font-size: 4.1666666667vw;
    color: #9e9e91;
    font-weight: bold;
  }
  main #main_contents .plan .price_wrp .price_list li .price_box02 .price_box02_box01 .price_box02_box01_pr .txt03 {
    color: #8a6b4c;
    font-size: 9.8958333333vw;
    letter-spacing: 0.1979166667vw;
    line-height: 1;
    text-align: right;
  }
  main #main_contents .plan .price_wrp .price_list li .price_box02 .price_box02_box01 .price_box02_box01_pr .txt03 .sp01 {
    font-size: 3.6458333333vw;
    display: inline-block;
    letter-spacing: 0.234375vw;
    color: #9e9e91;
  }
  main #main_contents .plan .price_wrp .price_list li .price_box02 .price_box02_box01 .price_box02_box01_pr .txt03 .sp02 {
    font-size: 5.46875vw;
    color: #9e9e91;
    font-weight: bold;
  }
  main #main_contents .plan .price_wrp .price_list li .price_box02 .price_box02_box02 .circle {
    top: 0 !important;
  }
  main #main_contents .plan .price_wrp .price_list li .price_box02 .anno {
    text-align: right;
    color: #9e9e91;
    font-size: 3.6458333333vw;
    margin-right: -1.3020833333vw;
  }
  main #main_contents .plan .price_wrp .price_list li .price_box02 .txt04 {
    color: #39504d;
    font-size: 6.7708333333vw;
    letter-spacing: 0.1354166667vw;
    line-height: 1;
    text-align: center;
    padding-top: 2.6041666667vw;
  }
  main #main_contents .plan .price_wrp .price_list li .price_box02 .txt04 .sp01 {
    font-size: 3.6458333333vw;
    line-height: 1;
    display: inline-block;
    color: #9e9e91;
    padding: 1.3020833333vw 2.4739583333vw;
    position: relative;
    top: -1.0416666667vw;
    margin-right: 0.6510416667vw;
  }
  main #main_contents .plan .price_wrp .price_list li .price_box02 .txt04 .sp02 {
    font-size: 4.1666666667vw;
    color: #9e9e91;
    font-weight: bold;
  }
  main #main_contents .schedule .schedule_table {
    padding: 0 5.2083333333vw;
    margin-top: 8.4635416667vw;
  }
  main #main_contents .schedule .schedule_table table {
    width: 100%;
  }
  main #main_contents .schedule .schedule_table table tr td, main #main_contents .schedule .schedule_table table tr th {
    border: 1px solid #c6beb6;
    background-color: #fff;
    text-align: center;
    vertical-align: middle;
    padding: 3.2552083333vw;
    font-family: "Noto Serif JP", serif;
    color: #39504d;
  }
  main #main_contents .schedule .schedule_table table tr td {
    font-size: 4.4270833333vw;
    font-weight: bold;
    font-family: "Tenor Sans", sans-serif;
  }
  main #main_contents .schedule .schedule_table table tr th {
    font-size: 4.1666666667vw;
  }
  main #main_contents .schedule .schedule_table table .holiday td, main #main_contents .schedule .schedule_table table .holiday th {
    background-color: #e4e4da;
  }
  main #main_contents .schedule .schedule_table p {
    margin-left: 1rem;
    text-indent: -1rem;
    font-size: 3.125vw;
    margin-top: 6.5104166667vw;
  }
  main #main_contents .instructor .instructor_wrp {
    padding-left: 5.2083333333vw;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner {
    background-color: #39504d;
    padding-top: 7.8125vw;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_box01 {
    position: relative;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_box01 .img {
    margin-left: -5.2083333333vw;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_box01 .img img {
    width: 68.4895833333vw;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_box01 .txtbox {
    position: absolute;
    bottom: 10%;
    right: 0;
    text-align: right;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_box01 .txtbox .txt01 {
    display: inline-block;
    background-color: #8a6b4c;
    color: #fff;
    font-family: "Tenor Sans", sans-serif;
    line-height: 1;
    font-size: 6.5104166667vw;
    padding: 3.90625vw 6.5104166667vw;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_box01 .txtbox .txt02 {
    padding-right: 5.859375vw;
    font-weight: bold;
    font-size: 4.4270833333vw;
    line-height: 1.65;
    letter-spacing: 0.2213541667vw;
    color: #fffffe;
    text-shadow: 0 0 1.5625vw rgba(57, 80, 77, 0.8);
    margin-top: 13.0208333333vw;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_contents {
    padding: 10.4166666667vw 6.5104166667vw 9.1145833333vw;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_contents .instructor_contents_box01 {
    margin-bottom: 9.1145833333vw;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_contents .instructor_contents_box01:last-child {
    margin-bottom: 0;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_contents .instructor_contents_box01 .i_c_btn_active:before {
    transform: rotate(180deg) !important;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_contents .instructor_contents_box01 h3 {
    font-family: "Tenor Sans", sans-serif;
    font-size: 5.7291666667vw;
    letter-spacing: 0.2864583333vw;
    color: #fff;
    font-weight: 400;
    position: relative;
    line-height: 1;
    padding-bottom: 3.2552083333vw;
    padding-top: 2.6041666667vw;
    border-bottom: 1px solid #c6beb6;
    cursor: pointer;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_contents .instructor_contents_box01 h3:before {
    position: absolute;
    content: "";
    background-image: url("../img/arrow.svg");
    background-repeat: no-repeat;
    width: 9.1145833333vw;
    height: 9.1145833333vw;
    right: 0;
    top: 0;
    transform: rotate(0);
    transition: 0.3s;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_contents .instructor_contents_box01 .box01 {
    padding-top: 5.46875vw;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_contents .instructor_contents_box01 .box01 .txt01 {
    line-height: 1.69;
    letter-spacing: 0.1692708333vw;
    text-align: justify;
    color: #fff;
    margin-bottom: 2.34375vw;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_contents .instructor_contents_box01 .box01 .txt01:last-child {
    margin-bottom: 0;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_contents .instructor_contents_box01 .box01 .box01_row {
    display: flex;
    flex-direction: column;
    margin-bottom: 3.90625vw;
    align-items: flex-start;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_contents .instructor_contents_box01 .box01 .box01_row .box01_row_col01 {
    display: flex;
    gap: 1.953125vw;
    background-color: #fff;
    padding: 2.6041666667vw;
    justify-content: flex-start;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_contents .instructor_contents_box01 .box01 .box01_row .box01_row_col01 img {
    max-width: 15.625vw;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_contents .instructor_contents_box01 .box02 {
    margin-top: -3.90625vw;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_contents .instructor_contents_box01 .box02 .tag {
    background-color: #8a6b4c;
    display: inline-block;
    line-height: 1;
    border-radius: 2.8645833333vw;
    padding: 1.4322916667vw 3.2552083333vw 0.9114583333vw;
    color: #fff;
    margin-bottom: 1.5625vw;
    margin-top: 5.859375vw;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_contents .instructor_contents_box01 .box02 ol li {
    color: #fff;
    font-family: "Noto Serif JP", serif;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_contents .instructor_contents_box01 .before_event {
    margin-top: 5.2083333333vw;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_contents .instructor_contents_box01 .before_event .tag02 {
    color: #fff;
    position: relative;
    cursor: pointer;
    display: inline-block;
    padding: 1.5625vw 0 2.6041666667vw;
    padding-right: 9.765625vw;
    border-bottom: 1px solid #fff;
    margin-bottom: 3.6458333333vw;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_contents .instructor_contents_box01 .before_event .tag02:before {
    position: absolute;
    content: "";
    background-image: url("../img/arrow.svg");
    background-repeat: no-repeat;
    width: 6.5104166667vw;
    height: 6.5104166667vw;
    right: 0;
    top: 0.6510416667vw;
    transform: rotate(0);
    transition: 0.3s;
  }
  main #main_contents .instructor .instructor_wrp .instructor_inner .instructor_contents .instructor_contents_box01 .before_event ol li {
    font-size: 3.125vw;
  }
  main #main_contents .studio .inner {
    padding: 0 5.2083333333vw;
  }
  main #main_contents .studio .inner .imgbox {
    display: flex;
    justify-content: space-between;
    margin: 7.1614583333vw 0;
  }
  main #main_contents .studio .inner .imgbox div {
    width: 49.5%;
  }
  main #main_contents .studio .inner .txt01 {
    font-size: 4.4270833333vw;
    letter-spacing: 0.2213541667vw;
    color: #8a6b4c;
    font-weight: bold;
    margin-bottom: 3.90625vw;
  }
  main #main_contents .studio .inner table {
    width: 100%;
    margin-bottom: 7.8125vw;
  }
  main #main_contents .studio .inner table tr:first-child td, main #main_contents .studio .inner table tr:first-child th {
    border-top: 1px solid #c6beb6;
  }
  main #main_contents .studio .inner table tr td, main #main_contents .studio .inner table tr th {
    border-bottom: 1px solid #c6beb6;
    vertical-align: middle;
    padding: 3.2552083333vw 0;
    font-family: "Noto Serif JP", serif;
  }
  main #main_contents .studio .inner table tr td a, main #main_contents .studio .inner table tr th a {
    display: inline-block;
    border-bottom: 1px solid #8a6b4c;
    color: #8a6b4c;
    position: relative;
    line-height: 1.1;
  }
  main #main_contents .studio .inner table tr td a:before, main #main_contents .studio .inner table tr th a:before {
    position: absolute;
    content: "";
    background-image: url("../img/icon_external.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 3.7760416667vw;
    height: 3.3854166667vw;
    right: -4.9479166667vw;
    bottom: 0.6510416667vw;
  }
  main #main_contents .studio .inner table tr th {
    padding-right: 5.2083333333vw;
    font-weight: bold;
    color: #84a3a0;
  }
  main #main_contents .studio .inner .gmap {
    border: 1px solid #c6beb6;
    overflow: hidden;
  }
  main #main_contents .studio .inner .gmap iframe {
    width: 100%;
    height: 52.0833333333vw;
    vertical-align: bottom;
  }
  main #main_contents .studio .inner .pr_box {
    background-color: #6c6a5e;
    text-align: center;
    padding: 7.8125vw 5.2083333333vw;
    margin-top: 7.8125vw;
  }
  main #main_contents .studio .inner .pr_box h3 {
    color: #fff;
    font-size: 4.1666666667vw;
    font-weight: bold;
    line-height: 1.44;
    letter-spacing: 0.2083333333vw;
  }
  main #main_contents .studio .inner .pr_box a {
    display: inline-block;
    margin-top: 4.4270833333vw;
    margin-bottom: 7.1614583333vw;
  }
  main #main_contents .studio .inner .pr_box .txt01 {
    display: inline-block;
    color: #6c6a5e;
    font-weight: bold;
    background-color: #fff;
    line-height: 1;
    padding: 1.3020833333vw 3.6458333333vw 1.0416666667vw;
    border-radius: 3.2552083333vw;
    font-size: 3.3854166667vw;
    margin-bottom: 3.2552083333vw;
  }
  main #main_contents .studio .inner .pr_box .txt02 {
    text-align: justify;
    color: #fff;
  }
  main #main_contents .faq {
    padding-bottom: 15.625vw;
  }
  main #main_contents .faq .inner {
    padding: 0 5.2083333333vw;
    margin-top: 7.1614583333vw;
  }
  main #main_contents .faq .inner ul .q_active {
    background-color: #cbdbd9 !important;
  }
  main #main_contents .faq .inner ul .q_active:after {
    transform: translateY(-50%) rotate(180deg) !important;
  }
  main #main_contents .faq .inner ul li {
    border-bottom: 1px solid #e4e4da;
  }
  main #main_contents .faq .inner ul li .question {
    min-height: 17.1875vw;
    font-weight: bold;
    color: #39504d;
    background-color: #fff;
    padding: 3.2552083333vw 14.3229166667vw 3.2552083333vw 12.3697916667vw;
    display: flex;
    align-items: center;
    position: relative;
    transition: 0.3s all;
  }
  main #main_contents .faq .inner ul li .question:before {
    position: absolute;
    content: "Q";
    font-size: 7.8125vw;
    line-height: 1;
    font-family: "Tenor Sans", sans-serif;
    color: #84a3a0;
    left: 3.2552083333vw;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 400;
  }
  main #main_contents .faq .inner ul li .question:after {
    position: absolute;
    content: "";
    background-image: url("../img/arrow_faq.svg");
    width: 6.5104166667vw;
    height: 6.5104166667vw;
    background-size: contain;
    background-repeat: no-repeat;
    right: 3.2552083333vw;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
  }
  main #main_contents .faq .inner ul li .answer {
    background-color: #fff;
    padding: 5.859375vw;
    display: none;
  }
  main #main_contents .faq .inner ul li .answer p {
    text-align: justify;
  }
  main #main_contents .insta {
    background-color: #c6beb6;
    padding: 7.8125vw 5.2083333333vw 13.0208333333vw;
  }
  main #main_contents .insta h2 {
    text-align: left;
    color: #f5f5f0;
    font-family: "Tenor Sans", sans-serif;
  }
  .dara_box {
    background-color: #8a6b4c;
    padding: 9.765625vw 9.765625vw 10.4166666667vw;
  }
  .dara_box p {
    text-align: center;
    color: #fff;
    font-size: 3.6458333333vw;
    line-height: 1.57;
    letter-spacing: 0.1822916667vw;
    font-weight: 400;
    margin-bottom: 5.859375vw;
  }
  footer {
    background-color: #39504d;
    padding: 5.2083333333vw;
    position: relative;
  }
  footer .inner .box01 {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
  footer .inner .box01 .logo p img {
    width: 20.4427083333vw;
  }
  footer .inner .box01 .box02 {
    width: 73%;
  }
  footer .inner .box01 .box02 .txt01 {
    color: #fff;
    font-size: 3.6458333333vw;
    font-weight: bold;
    margin-bottom: 1.0416666667vw;
  }
  footer .inner .box01 .box02 .txt02 {
    color: #fff;
    font-size: 3.125vw;
    font-family: "Noto Serif JP", serif;
  }
  footer .inner .box01 .box02 .sns {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 7.1614583333vw;
  }
  footer .inner .box01 .box02 .sns a {
    display: inline-block;
    margin-left: 5.2083333333vw;
  }
  footer .inner .box01 .box02 .sns img {
    width: 6.25vw;
  }
  footer .copyright {
    font-size: 2.8645833333vw;
    text-align: right;
    color: #fff;
    font-family: "Tenor Sans", sans-serif;
    margin-top: 5.859375vw;
  }
}