<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Klee+One:wght@400;600&amp;family=Lora:ital@0;1&amp;display=swap");
/*カラー*/
/*Webフォント*/
/*フォントサイズ*/
/*サイト全体のフォント指定*/
html {
  font-size: 10px;
}

body {
  font-family: "Arial", "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #333;
}
body br.pc {
  display: block;
}
@media screen and (max-width: 830px) {
  body br.pc {
    display: none;
  }
}
body br.sp {
  display: none;
}
@media screen and (max-width: 830px) {
  body br.sp {
    display: block;
  }
}

figure {
  margin: 0;
}

/*キーフレーム*/
@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}
/*-------------パーツ-------------*/
/*-------------フェードアップ-------------*/
/*-------------トップテキスト-------------*/
/*-------------ボタン-------------*/
/*-------------波アニメーション-------------*/
/*-------------タグ-------------*/
/*-------------ヘッダー-------------*/
header {
  position: relative;
  z-index: 98;
  /*　SPナビゲーション　*/
  /*　ローカルナビゲーション　*/
  /*　固定メニュー　*/
}
header .header_wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  background: #fff;
  box-sizing: border-box;
  padding: 20px 163px 20px 20px;
  /*　グローバルナビゲーション　*/
  /*　ハンバーガーボタン　*/
}
@media screen and (max-width: 1100px) {
  header .header_wrap {
    height: 60px;
    border-top: none;
    padding: 15px;
  }
}
header .header_wrap h1 {
  margin: 0;
  transform: translate(0, -50px);
  transition: all 900ms;
  opacity: 0;
}
header .header_wrap h1.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 1400px) {
  header .header_wrap h1 {
    margin: 0 30px 0 0;
  }
}
header .header_wrap h1 a {
  display: block;
}
header .header_wrap h1 a img {
  max-width: 238px;
  width: 100%;
  display: block;
}
@media screen and (max-width: 1100px) {
  header .header_wrap h1 a img {
    max-width: 102px;
  }
}
header .header_wrap .g_nav {
  /*　メインメニュー　*/
  /*　Web予約ボタン　*/
}
header .header_wrap .g_nav .main_menu {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1100px) {
  header .header_wrap .g_nav .main_menu {
    display: none;
  }
}
header .header_wrap .g_nav .main_menu li {
  list-style: none;
  margin: 0 60px 0 0;
  transition: all 900ms;
  opacity: 0;
  /*　サブメニュー　*/
}
@media screen and (max-width: 1400px) {
  header .header_wrap .g_nav .main_menu li {
    margin: 0 30px 0 0;
  }
}
header .header_wrap .g_nav .main_menu li.is-animated {
  opacity: 1;
}
header .header_wrap .g_nav .main_menu li:nth-of-type(2) {
  transition-delay: 300ms;
}
header .header_wrap .g_nav .main_menu li:nth-of-type(3) {
  transition-delay: 600ms;
}
header .header_wrap .g_nav .main_menu li:nth-of-type(4) {
  transition-delay: 900ms;
}
header .header_wrap .g_nav .main_menu li:last-child {
  margin: 0;
  transition-delay: 1200ms;
}
header .header_wrap .g_nav .main_menu li:nth-last-of-type(-n+2)::after {
  content: "";
  display: inline-block;
  background: #ffc7dc;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin: 0 0 0 8px;
  position: relative;
  bottom: 2px;
}
header .header_wrap .g_nav .main_menu li a {
  display: inline-block;
  font-size: 1.6rem;
  text-decoration: none;
  color: #333;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s;
}
@media screen and (max-width: 1400px) {
  header .header_wrap .g_nav .main_menu li a {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1100px) {
  header .header_wrap .g_nav .main_menu li a {
    position: static;
  }
}
header .header_wrap .g_nav .main_menu li a::after {
  position: absolute;
  bottom: -6px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
@media screen and (max-width: 1100px) {
  header .header_wrap .g_nav .main_menu li a::after {
    position: static;
  }
}
header .header_wrap .g_nav .main_menu li a:hover::after {
  transform: scale(1, 1);
}
header .header_wrap .g_nav .main_menu li .sub-menu {
  position: absolute;
  top: 110px;
  left: 0;
  transition: all 0.3s ease;
  visibility: hidden;
  opacity: 0;
  z-index: 99;
  width: 100%;
  padding: 50px 30px;
  box-sizing: border-box;
  background: url(../../images/bg_pc_sea.jpg);
  background-size: cover;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
header .header_wrap .g_nav .main_menu li .sub-menu li {
  border-left: solid 2px #fff;
  width: 20%;
  box-sizing: border-box;
  margin: 0;
  text-align: center;
  transform: none;
  transition: none;
  opacity: 1;
}
header .header_wrap .g_nav .main_menu li .sub-menu li::after {
  content: none;
}
header .header_wrap .g_nav .main_menu li .sub-menu li:nth-of-type(5) {
  border-right: solid 2px #fff;
}
header .header_wrap .g_nav .main_menu li .sub-menu li:last-child {
  border-right: solid 2px #fff;
}
header .header_wrap .g_nav .main_menu li .sub-menu li:nth-of-type(-n+5) {
  margin: 0 0 50px 0;
}
header .header_wrap .g_nav .main_menu li .sub-menu li a {
  color: #fff;
  text-align: center;
}
header .header_wrap .g_nav .main_menu li .sub-menu li a::after {
  background: #fff;
}
@media screen and (max-width: 1100px) {
  header .header_wrap .g_nav .main_menu li .sub-menu li a::after {
    position: static;
  }
}
header .header_wrap .g_nav .main_menu li:hover .sub-menu {
  top: 110px;
  visibility: visible;
  opacity: 1;
  transition: all 0.3s ease;
}
header .header_wrap .g_nav .web_menu {
  margin: 0;
  padding: 0;
  position: absolute;
  top: 10px;
  right: 156px;
}
@media screen and (max-width: 1100px) {
  header .header_wrap .g_nav .web_menu {
    top: 13px;
    right: 75px;
  }
}
header .header_wrap .g_nav .web_menu li {
  list-style: none;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
  transition-delay: 1500ms;
}
@media screen and (max-width: 830px) {
  header .header_wrap .g_nav .web_menu li {
    transform: translate(0, 40px);
  }
}
header .header_wrap .g_nav .web_menu li.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 830px) {
  header .header_wrap .g_nav .web_menu li {
    transition-delay: 0ms;
  }
}
header .header_wrap .g_nav .web_menu li a {
  display: block;
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  border-radius: 25px;
  text-decoration: none;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 8px 20px;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  header .header_wrap .g_nav .web_menu li a {
    font-size: 1.2rem;
    padding: 8px 15px;
  }
}
header .header_wrap .g_nav .web_menu li a::before {
  content: "";
  display: inline-block;
  background: url(../../images/icon_calendar_w.png);
  background-size: 15px;
  width: 15px;
  height: 16px;
  margin: 0 10px 0 0;
  position: relative;
  top: 2px;
}
@media screen and (max-width: 1100px) {
  header .header_wrap .g_nav .web_menu li a::before {
    background: url(../../images/icon_calendar_w.png);
    background-size: 12px;
    width: 12px;
    height: 13px;
    margin: 0 5px 0 0;
  }
}
header .header_wrap .g_nav .web_menu li a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  header .header_wrap .g_nav .web_menu li a:hover {
    opacity: 1;
  }
}
header .header_wrap .hamburger {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  background: #4ad4f0;
  box-sizing: border-box;
  height: 110px;
  width: 110px;
}
header .header_wrap .hamburger .icon_menu_pc {
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  top: 26px;
  width: 35px;
  height: 35px;
  cursor: pointer;
  z-index: 15;
}
header .header_wrap .hamburger .icon_menu_pc span {
  display: block;
  position: absolute;
  width: 35px;
  height: 2px;
  background: #fff;
  transition: 0.3s ease-in-out;
}
header .header_wrap .hamburger .icon_menu_pc span:nth-child(1) {
  top: 0;
}
header .header_wrap .hamburger .icon_menu_pc span:nth-child(2) {
  top: 12px;
  width: 30px;
}
header .header_wrap .hamburger .icon_menu_pc span:nth-child(3) {
  top: 24px;
  width: 25px;
}
header .header_wrap .hamburger .icon_menu_pc.close span:nth-child(1) {
  top: 12px;
  transform: rotate(-45deg);
}
header .header_wrap .hamburger .icon_menu_pc.close span:nth-child(2) {
  top: 12px;
  transform: rotate(45deg);
  width: 35px;
}
header .header_wrap .hamburger .icon_menu_pc.close span:nth-child(3) {
  top: 12px;
  transform: rotate(45deg);
  width: 35px;
}
header .header_wrap .hamburger p {
  position: absolute;
  bottom: 16px;
  right: 50%;
  transform: translateX(50%);
  margin: 0;
  padding: 0;
  text-align: center;
  font-family: "Lora", serif;
  font-size: 2rem;
  color: #fff;
  z-index: 15;
}
header .header_wrap .hamburger.pc {
  display: block;
}
@media screen and (max-width: 1100px) {
  header .header_wrap .hamburger.pc {
    display: none;
  }
}
header .header_wrap .hamburger.sp {
  display: none;
}
@media screen and (max-width: 1100px) {
  header .header_wrap .hamburger.sp {
    display: block;
    height: 60px;
    width: 60px;
  }
  header .header_wrap .hamburger.sp .icon_menu_sp {
    position: absolute;
    right: 50%;
    transform: translateX(50%);
    top: 15px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    z-index: 15;
  }
  header .header_wrap .hamburger.sp .icon_menu_sp span {
    display: block;
    position: absolute;
    width: 18px;
    height: 2px;
    background: #fff;
    transition: 0.3s ease-in-out;
  }
  header .header_wrap .hamburger.sp .icon_menu_sp span:nth-child(1) {
    top: 0;
  }
  header .header_wrap .hamburger.sp .icon_menu_sp span:nth-child(2) {
    top: 6px;
    width: 16px;
  }
  header .header_wrap .hamburger.sp .icon_menu_sp span:nth-child(3) {
    top: 12px;
    width: 14px;
  }
  header .header_wrap .hamburger.sp .icon_menu_sp.close span:nth-child(1) {
    top: 6px;
    transform: rotate(-45deg);
  }
  header .header_wrap .hamburger.sp .icon_menu_sp.close span:nth-child(2) {
    top: 6px;
    transform: rotate(45deg);
    width: 18px;
  }
  header .header_wrap .hamburger.sp .icon_menu_sp.close span:nth-child(3) {
    top: 6px;
    transform: rotate(45deg);
    width: 18px;
  }
  header .header_wrap .hamburger.sp p {
    position: absolute;
    bottom: 10px;
    right: 50%;
    transform: translateX(50%);
    margin: 0;
    padding: 0;
    text-align: center;
    font-family: "Lora", serif;
    font-size: 1rem;
    color: #fff;
    z-index: 15;
  }
}
header .s_open {
  display: none;
}
header .s_open .sp_nav {
  position: fixed;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  width: 92%;
  height: 100%;
  z-index: 2;
  top: 0;
  right: 0;
  padding: 60px 20px 20px 20px;
  box-sizing: border-box;
  margin: 0;
  background: url(../../images/bg_sp_sea.jpg);
  background-size: cover;
}
header .s_open .sp_nav .sp_menu {
  padding: 0;
  margin: 0;
}
header .s_open .sp_nav .sp_menu li {
  list-style: none;
  position: relative;
}
header .s_open .sp_nav .sp_menu li:nth-of-type(n+4):nth-child(-n+5)::after {
  content: "";
  display: inline-block;
  background: #fff;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  margin: 0;
  position: absolute;
  right: 20px;
  top: 25px;
}
header .s_open .sp_nav .sp_menu li a {
  text-decoration: none;
  color: #fff;
  font-size: 1.5rem;
  display: block;
  padding: 15px 0;
  border-bottom: dotted 1px #fff;
  transition: all 0.3s;
  position: relative;
}
header .s_open .sp_nav .sp_menu li a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  header .s_open .sp_nav .sp_menu li a:hover {
    opacity: 1;
  }
}
header .s_open .sp_nav .sp_menu li a::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
header .s_open .sp_nav .sp_menu li .sub-menu {
  opacity: 0;
  visibility: inherit;
  padding: 0;
  height: 0;
  transition: all 0.3s ease;
  background: rgba(0, 169, 205, 0.5);
}
header .s_open .sp_nav .sp_menu li .sub-menu li:nth-of-type(n+4):nth-child(-n+5)::after {
  content: none;
}
header .s_open .sp_nav .sp_menu li .sub-menu li a {
  padding: 15px;
}
header .s_open .sp_nav .sp_menu li.active_sp .sub-menu {
  line-height: normal;
  height: auto;
  opacity: 1;
  transition: all 0.3s ease;
}
header .s_open .sp_nav .sp_menu li.active_sp .sub-menu li a {
  padding: 15px;
  font-weight: normal;
}
header .s_open .sp_nav .sp_menu li a[href*="/taopalace_asakusa_sora"]::after {
  background: url(../../images/icon_instagram_w.png);
  background-size: 12px;
  width: 12px;
  height: 12px;
}
header .s_open .sp_nav .sp_menu li a[href*="/blog"]::after {
  background: url(../../images/icon_tab_w.png);
  background-size: 12px;
  width: 12px;
  height: 12px;
}
header .s_open .sp_nav .sp_menu li a[href*="/taopalace-sora.stores.jp"]::after {
  background: url(../../images/icon_tab_w.png);
  background-size: 12px;
  width: 12px;
  height: 12px;
}
header .s_open .sp_nav .btn_list {
  padding: 0;
  margin: 0;
}
header .s_open .sp_nav .btn_list li {
  list-style: none;
  margin: 20px 0 0 0;
}
header .s_open .sp_nav .btn_list li a {
  display: block;
  text-decoration: none;
  text-align: center;
  color: #4ad4f0;
  background: #fff;
  border-radius: 40px;
  padding: 15px;
  width: 100%;
  font-size: 1.5rem;
  font-weight: bold;
  transition: all 0.3s;
  box-sizing: border-box;
}
header .s_open .sp_nav .btn_list li a:hover {
  opacity: 0.8;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  header .s_open .sp_nav .btn_list li a:hover {
    opacity: 1;
  }
}
header .s_open .sp_nav .btn_list li a::before {
  content: "";
  display: inline-block;
  position: relative;
  top: 1px;
  margin: 0 5px 0 0;
}
header .s_open .sp_nav .btn_list li a[href*="tel:03-6884-8911"]::before {
  background: url(../../images/icon_call_b.png);
  background-size: 12px;
  width: 12px;
  height: 12px;
}
header .s_open .sp_nav .btn_list li a[href*="/slnH000520420"]::before {
  background: url(../../images/icon_calendar_b.png);
  background-size: 12px;
  width: 12px;
  height: 13px;
}
header .s_open .sp_nav .btn_list li a[href*="/line"]::before {
  background: url(../../images/icon_line_b.png);
  background-size: 12px;
  width: 12px;
  height: 11px;
}
header .s_open .sp_nav .language_btn {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
}
header .s_open .sp_nav .language_btn li {
  list-style: none;
  margin: 20px 0 0 0;
  width: 47.73%;
}
header .s_open .sp_nav .language_btn li a {
  display: block;
  text-decoration: none;
  text-align: center;
  color: #4ad4f0;
  background: #fff;
  border-radius: 40px;
  padding: 15px;
  width: 100%;
  font-size: 1.5rem;
  font-weight: bold;
  transition: all 0.3s;
  box-sizing: border-box;
}
header .s_open .sp_nav .language_btn li a:hover {
  opacity: 0.8;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  header .s_open .sp_nav .language_btn li a:hover {
    opacity: 1;
  }
}
header .s_open .sp_nav .language_btn li a::before {
  content: "";
  display: inline-block;
  position: relative;
  top: 1px;
  margin: 0 5px 0 0;
  background: url(../../images/icon_global_b.png);
  background-size: 12px;
  width: 12px;
  height: 12px;
}
header .s_open .k_bg {
  display: block;
  background: rgba(0, 0, 0, 0.3);
  width: 100vw;
  height: 100%;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
}
header .l_open {
  display: none;
}
header .l_open .l_nav {
  position: fixed;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  top: 0;
  right: 0;
  z-index: 2;
  max-width: 520px;
  width: 100%;
  height: 100%;
  padding: 120px 40px 40px 40px;
  box-sizing: border-box;
  margin: 0;
  background: url(../../images/bg_sp_sea.jpg);
  background-size: cover;
}
header .l_open .l_nav .local_menu {
  padding: 0;
  margin: 0;
}
header .l_open .l_nav .local_menu li {
  list-style: none;
}
header .l_open .l_nav .local_menu li a {
  text-decoration: none;
  color: #fff;
  font-size: 1.6rem;
  display: block;
  padding: 20px 0;
  border-bottom: dotted 2px #fff;
  transition: all 0.3s;
  position: relative;
}
header .l_open .l_nav .local_menu li a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  header .l_open .l_nav .local_menu li a:hover {
    opacity: 1;
  }
}
header .l_open .l_nav .local_menu li a[href*="/taopalace_asakusa_sora"]::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  background: url(../../images/icon_instagram_w.png);
  background-size: 16px;
  width: 16px;
  height: 16px;
}
header .l_open .l_nav .local_menu li a[href*="/blog"]::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  background: url(../../images/icon_tab_w.png);
  background-size: 16px;
  width: 16px;
  height: 16px;
}
header .l_open .l_nav .local_menu li a[href*="/taopalace-sora.stores.jp"]::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  background: url(../../images/icon_tab_w.png);
  background-size: 16px;
  width: 16px;
  height: 16px;
}
header .l_open .l_nav .btn_list {
  padding: 0;
  margin: 0;
}
header .l_open .l_nav .btn_list li {
  list-style: none;
  margin: 20px 0 0 0;
}
header .l_open .l_nav .btn_list li a {
  display: block;
  text-decoration: none;
  text-align: center;
  color: #4ad4f0;
  background: #fff;
  border-radius: 40px;
  padding: 20px 0;
  width: 100%;
  font-size: 1.6rem;
  font-weight: bold;
  transition: all 0.3s;
}
header .l_open .l_nav .btn_list li a:hover {
  opacity: 0.8;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  header .l_open .l_nav .btn_list li a:hover {
    opacity: 1;
  }
}
header .l_open .l_nav .btn_list li a::before {
  content: "";
  display: inline-block;
  position: relative;
  top: 3px;
  margin: 0 10px 0 0;
}
header .l_open .l_nav .btn_list li a[href*="tel:03-6884-8911"]::before {
  background: url(../../images/icon_call_b.png);
  background-size: 20px;
  width: 20px;
  height: 20px;
}
header .l_open .l_nav .btn_list li a[href*="/slnH000520420"]::before {
  background: url(../../images/icon_calendar_b.png);
  background-size: 19px;
  width: 19px;
  height: 20px;
}
header .l_open .l_nav .btn_list li a[href*="/line"]::before {
  background: url(../../images/icon_line_b.png);
  background-size: 20px;
  width: 20px;
  height: 19px;
}
header .l_open .l_nav .language_btn {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
}
header .l_open .l_nav .language_btn li {
  list-style: none;
  margin: 20px 0 0 0;
  width: 47.73%;
}
header .l_open .l_nav .language_btn li a {
  display: block;
  text-decoration: none;
  text-align: center;
  color: #4ad4f0;
  background: #fff;
  border-radius: 40px;
  padding: 15px 0;
  width: 100%;
  font-size: 1.5rem;
  font-weight: bold;
  transition: all 0.3s;
  box-sizing: border-box;
}
header .l_open .l_nav .language_btn li a:hover {
  opacity: 0.8;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  header .l_open .l_nav .language_btn li a:hover {
    opacity: 1;
  }
}
header .l_open .l_nav .language_btn li a::before {
  content: "";
  display: inline-block;
  position: relative;
  top: 1px;
  margin: 0 5px 0 0;
  background: url(../../images/icon_global_b.png);
  background-size: 12px;
  width: 12px;
  height: 12px;
}
header .l_open .k_bg {
  display: block;
  background: rgba(0, 0, 0, 0.3);
  width: 100vw;
  height: 100vw;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
}
header.m_fixed {
  z-index: 98;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
}
header.m_fixed .header_wrap {
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 112px 15px 15px;
}
header.m_fixed .header_wrap h1 {
  transform: none;
  transition: none;
}
header.m_fixed .header_wrap h1 a img {
  max-width: 173px;
}
@media screen and (max-width: 1100px) {
  header.m_fixed .header_wrap h1 a img {
    max-width: 102px;
  }
}
header.m_fixed .header_wrap .hamburger.pc {
  height: 81px;
  width: 81px;
}
@media screen and (max-width: 1100px) {
  header.m_fixed .header_wrap .hamburger.pc {
    display: none;
  }
}
header.m_fixed .header_wrap .hamburger.pc .icon_menu_pc {
  top: 16px;
}
header.m_fixed .header_wrap .hamburger.pc p {
  font-size: 1.4rem;
  bottom: 10px;
}
header.m_fixed .header_wrap .g_nav .main_menu li {
  transition-delay: 0ms;
  transition: none;
}
header.m_fixed .header_wrap .g_nav .main_menu li:hover .sub-menu {
  top: 80px;
}
header.m_fixed .header_wrap .g_nav .web_menu {
  right: 112px;
}
@media screen and (max-width: 1100px) {
  header.m_fixed .header_wrap .g_nav .web_menu {
    right: 75px;
  }
}
header.m_fixed .header_wrap .g_nav .web_menu li {
  transition: none;
  transition-delay: 0ms;
}
header.m_fixed .header_wrap .g_nav .web_menu li a {
  padding: 2px 10px;
  font-size: 1.2rem;
}
@media screen and (max-width: 1100px) {
  header.m_fixed .header_wrap .g_nav .web_menu li a {
    font-size: 1.2rem;
    padding: 8px 15px;
  }
}

/*-------------下層見出し-------------*/
.lower_h1 {
  background-color: #54dffb;
  background-image: url(../../images/loewr_h1_bg_left.png), url(../../images/loewr_h1_bg_right.png);
  background-position: right, left;
  background-repeat: no-repeat, no-repeat;
  position: relative;
  /* 波アニメーション */
}
@media screen and (max-width: 1200px) {
  .lower_h1 {
    background-image: url(../../images/loewr_h1_bg_sp.jpg);
    background-size: cover;
    background-position: center;
  }
}
.lower_h1 h1 {
  text-align: center;
  margin: 0;
  padding: 110px 0 0 0;
  color: #fff;
  font-size: 5.2rem;
  font-family: "Lora", serif;
  font-weight: 100;
  margin: 0 0 20px 0;
  letter-spacing: 0.2em;
  transition-delay: 1200ms;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 830px) {
  .lower_h1 h1 {
    transform: translate(0, 40px);
  }
}
.lower_h1 h1.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 830px) {
  .lower_h1 h1 {
    font-size: 3rem;
    padding: 60px 0 0 0;
    margin: 0 0 10px 0;
    transition-delay: 0ms;
  }
}
.lower_h1 .jp_txt {
  text-align: center;
  color: #fff;
  padding: 0 0 120px 0;
  font-size: 2rem;
  margin: 0;
  font-weight: 600;
  font-family: "Klee One", cursive;
  transition-delay: 1200ms;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 830px) {
  .lower_h1 .jp_txt {
    transform: translate(0, 40px);
  }
}
.lower_h1 .jp_txt.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 830px) {
  .lower_h1 .jp_txt {
    font-size: 1.6rem;
    padding: 0 0 60px 0;
    margin: 0 0 10px 0;
    transition-delay: 0ms;
  }
}
.lower_h1 .waves_area {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
}
@media screen and (max-width: 830px) {
  .lower_h1 .waves_area {
    height: 40px;
  }
}
.lower_h1 .waves_area .waves {
  width: 100%;
  height: 100px;
  min-height: 100px;
  max-height: 150px;
}
@media screen and (max-width: 830px) {
  .lower_h1 .waves_area .waves {
    height: 40px;
    min-height: 40px;
  }
}
.lower_h1 .waves_area .waves .parallax &gt; use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
  animation-duration: 4s;
}

/*-------------パンくずリスト-------------*/
.breadcrumb {
  width: auto;
  max-width: 1720px;
  padding: 0 20px;
  margin: 60px auto 0 auto;
  display: flex;
}
@media screen and (max-width: 1100px) {
  .breadcrumb {
    display: none;
  }
}
.breadcrumb .bread_border {
  width: 100%;
  padding: 0 20px 20px 20px;
  border-bottom: solid 1px #d1d1d1;
}
.breadcrumb .bread_border span {
  display: inline-block;
  font-size: 1.4rem;
  font-family: "Klee One", cursive;
}
.breadcrumb .bread_border span a {
  display: inline-block;
  text-decoration: none;
  color: #4ad4f0;
  position: relative;
  font-weight: 600;
}
.breadcrumb .bread_border span a::after {
  position: absolute;
  bottom: -6px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #4ad4f0;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
@media screen and (max-width: 1100px) {
  .breadcrumb .bread_border span a::after {
    position: static;
  }
}
.breadcrumb .bread_border span a:hover::after {
  transform: scale(1, 1);
}
.breadcrumb .bread_border span:nth-of-type(2n) {
  margin: 0 30px;
}

/*-------------メイン動画-------------*/
.key_movie {
  height: 780px;
  position: relative;
  /* 波アニメーション */
}
@media screen and (max-width: 830px) {
  .key_movie {
    height: 450px;
  }
}
.key_movie .catch_txt {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 900ms;
  transition-delay: 1500ms;
  width: 100%;
}
.key_movie .catch_txt.is-animated {
  opacity: 1;
}
@media screen and (max-width: 830px) {
  .key_movie .catch_txt {
    transition-delay: 300ms;
  }
}
.key_movie .catch_txt img {
  max-width: 300px;
  width: 100%;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 830px) {
  .key_movie .catch_txt img {
    max-width: 180px;
  }
}
.key_movie .catch_txt p {
  font-size: 2.4rem;
  font-family: "Klee One", cursive;
  font-weight: normal;
  margin: 40px 0 0 0;
  line-height: 2;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 830px) {
  .key_movie .catch_txt p {
    font-size: 1.6rem;
    margin: 30px 0 0 0;
  }
}
.key_movie video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.key_movie .waves_area {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
}
@media screen and (max-width: 830px) {
  .key_movie .waves_area {
    height: 40px;
  }
}
.key_movie .waves_area .waves {
  width: 100%;
  height: 100px;
  min-height: 100px;
  max-height: 150px;
}
@media screen and (max-width: 830px) {
  .key_movie .waves_area .waves {
    height: 40px;
    min-height: 40px;
  }
}
.key_movie .waves_area .waves .parallax &gt; use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
  animation-duration: 4s;
}

/*-------------SOLAについて-------------*/
.top_contents_sora {
  padding: 160px 0 200px 0;
  background: #fff;
}
@media screen and (max-width: 830px) {
  .top_contents_sora {
    box-sizing: border-box;
    order: 2;
    padding: 70px 20px 90px 20px;
  }
}
.top_contents_sora .contents_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.top_contents_sora .contents_flex .contents_left {
  width: 42%;
  height: 100%;
}
@media screen and (max-width: 830px) {
  .top_contents_sora .contents_flex .contents_left {
    width: 100%;
    order: 2;
  }
}
.top_contents_sora .contents_flex .contents_left .img_b {
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 830px) {
  .top_contents_sora .contents_flex .contents_left .img_b {
    transform: translate(0, 40px);
  }
}
.top_contents_sora .contents_flex .contents_left .img_b.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
.top_contents_sora .contents_flex .contents_left .img_b img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 5px;
}
.top_contents_sora .contents_flex .contents_left .img_flex {
  display: flex;
  max-width: 786px;
  width: 100%;
  margin: 10px -70px 0 auto;
}
@media screen and (max-width: 830px) {
  .top_contents_sora .contents_flex .contents_left .img_flex {
    margin: 5px 0 0 0;
  }
}
.top_contents_sora .contents_flex .contents_left .img_flex .img_s:first-child {
  margin: 0 10px 0 0;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 830px) {
  .top_contents_sora .contents_flex .contents_left .img_flex .img_s:first-child {
    transform: translate(0, 40px);
  }
}
.top_contents_sora .contents_flex .contents_left .img_flex .img_s:first-child.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 830px) {
  .top_contents_sora .contents_flex .contents_left .img_flex .img_s:first-child {
    margin: 0 5px 0 0;
  }
}
.top_contents_sora .contents_flex .contents_left .img_flex .img_s:nth-of-type(2) {
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
  transition-delay: 300ms;
}
@media screen and (max-width: 830px) {
  .top_contents_sora .contents_flex .contents_left .img_flex .img_s:nth-of-type(2) {
    transform: translate(0, 40px);
  }
}
.top_contents_sora .contents_flex .contents_left .img_flex .img_s:nth-of-type(2).is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
.top_contents_sora .contents_flex .contents_left .img_flex .img_s img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
}
.top_contents_sora .contents_flex .contents_right {
  width: 50%;
  box-sizing: border-box;
  padding: 0 20px;
}
@media screen and (max-width: 830px) {
  .top_contents_sora .contents_flex .contents_right {
    width: 100%;
    padding: 0 0 50px 0;
  }
}
.top_contents_sora .contents_flex .contents_right .top_h1_en {
  margin: 0 0 80px 0;
}
@media screen and (max-width: 830px) {
  .top_contents_sora .contents_flex .contents_right .top_h1_en {
    margin: 0 0 50px 0;
  }
}
.top_contents_sora .contents_flex .contents_right .top_h1_en h1 {
  margin: 0 0 40px 0;
  text-align: center;
  font-family: "Lora", serif;
  font-weight: 100;
  line-height: 1.3;
  letter-spacing: 0.2em;
  font-size: 4.8rem;
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0);
  transition: 0.8s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}
.top_contents_sora .contents_flex .contents_right .top_h1_en h1.p1 {
  color: #4ad4f0;
}
.top_contents_sora .contents_flex .contents_right .top_h1_en h1.p2 {
  color: #fff;
}
.top_contents_sora .contents_flex .contents_right .top_h1_en h1.is-animated {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
@media screen and (max-width: 830px) {
  .top_contents_sora .contents_flex .contents_right .top_h1_en h1 {
    font-size: 3rem;
    margin: 0 0 10px 0;
  }
}
.top_contents_sora .contents_flex .contents_right .top_h1_en .jp_txt {
  font-family: "Klee One", cursive;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0;
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0);
  transition: 0.8s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}
.top_contents_sora .contents_flex .contents_right .top_h1_en .jp_txt.p1 {
  color: #d97d50;
}
.top_contents_sora .contents_flex .contents_right .top_h1_en .jp_txt.p2 {
  color: #fff;
}
.top_contents_sora .contents_flex .contents_right .top_h1_en .jp_txt.is-animated {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
@media screen and (max-width: 830px) {
  .top_contents_sora .contents_flex .contents_right .top_h1_en .jp_txt {
    font-size: 1.6rem;
  }
}
.top_contents_sora .contents_flex .contents_right .top_sora_txt {
  margin: 0 auto 80px auto;
  max-width: 660px;
  width: 100%;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 830px) {
  .top_contents_sora .contents_flex .contents_right .top_sora_txt {
    transform: translate(0, 40px);
  }
}
.top_contents_sora .contents_flex .contents_right .top_sora_txt.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 830px) {
  .top_contents_sora .contents_flex .contents_right .top_sora_txt {
    max-width: 100%;
    margin: 0 auto 50px auto;
  }
}
.top_contents_sora .contents_flex .contents_right .top_sora_txt p {
  font-size: 1.6rem;
  font-family: "Klee One", cursive;
  color: #333;
  line-height: 2.2;
  margin: 0 0 40px 0;
}
@media screen and (max-width: 830px) {
  .top_contents_sora .contents_flex .contents_right .top_sora_txt p {
    font-size: 1.5rem;
    margin: 0 0 20px 0;
  }
}
.top_contents_sora .contents_flex .contents_right .top_sora_txt p:last-child {
  margin: 0;
}
.top_contents_sora .contents_flex .contents_right .wp-block-buttons {
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 830px) {
  .top_contents_sora .contents_flex .contents_right .wp-block-buttons {
    transform: translate(0, 40px);
  }
}
.top_contents_sora .contents_flex .contents_right .wp-block-buttons.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
.top_contents_sora .contents_flex .contents_right .wp-block-buttons .wp-block-button {
  display: block;
}
.top_contents_sora .contents_flex .contents_right .wp-block-buttons .wp-block-button a {
  padding: 20px;
  border-radius: 40px;
  display: block;
  max-width: 440px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  font-size: 1.8rem;
  transition: all 0.3s;
  box-sizing: border-box;
}
@media screen and (max-width: 830px) {
  .top_contents_sora .contents_flex .contents_right .wp-block-buttons .wp-block-button a {
    max-width: 330px;
    font-size: 1.5rem;
    padding: 15px;
  }
}
.top_contents_sora .contents_flex .contents_right .wp-block-buttons .wp-block-button a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .top_contents_sora .contents_flex .contents_right .wp-block-buttons .wp-block-button a:hover {
    opacity: 1;
  }
}
.top_contents_sora .contents_flex .contents_right .wp-block-buttons.gc a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_sora .contents_flex .contents_right .wp-block-buttons.gc a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_w.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .top_contents_sora .contents_flex .contents_right .wp-block-buttons.gc a::after {
    right: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}
.top_contents_sora .contents_flex .contents_right .wp-block-buttons.back a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_sora .contents_flex .contents_right .wp-block-buttons.back a::after {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_w_left.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .top_contents_sora .contents_flex .contents_right .wp-block-buttons.back a::after {
    left: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}
.top_contents_sora .contents_flex .contents_right .wp-block-buttons.news a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_sora .contents_flex .contents_right .wp-block-buttons.news a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_instagram_w.png);
  background-size: 20px;
  width: 20px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .top_contents_sora .contents_flex .contents_right .wp-block-buttons.news a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 15px;
  }
}
.top_contents_sora .contents_flex .contents_right .wp-block-buttons.call a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_sora .contents_flex .contents_right .wp-block-buttons.call a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_call_w.png);
  background-size: 20px;
  width: 20px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .top_contents_sora .contents_flex .contents_right .wp-block-buttons.call a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 15px;
  }
}
.top_contents_sora .contents_flex .contents_right .wp-block-buttons.calendar a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_sora .contents_flex .contents_right .wp-block-buttons.calendar a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_calendar_w.png);
  background-size: 20px;
  width: 20px;
  height: 21px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .top_contents_sora .contents_flex .contents_right .wp-block-buttons.calendar a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 16px;
  }
}
.top_contents_sora .contents_flex .contents_right .wp-block-buttons.line a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_sora .contents_flex .contents_right .wp-block-buttons.line a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_line_w.png);
  background-size: 21px;
  width: 21px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .top_contents_sora .contents_flex .contents_right .wp-block-buttons.line a::before {
    top: 2px;
    background-size: 16px;
    width: 16px;
    height: 15px;
  }
}
.top_contents_sora .contents_flex .contents_right .wp-block-buttons.tab a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_sora .contents_flex .contents_right .wp-block-buttons.tab a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_tab_w.png);
  background-size: 18px;
  width: 18px;
  height: 18px;
}
@media screen and (max-width: 830px) {
  .top_contents_sora .contents_flex .contents_right .wp-block-buttons.tab a::after {
    right: 15px;
    background-size: 10px;
    width: 10px;
    height: 10px;
  }
}
.top_contents_sora .contents_flex .contents_right .wp-block-buttons.blue a {
  background: #fff;
  color: #4ad4f0;
  border: solid 1px #4ad4f0;
}
.top_contents_sora .contents_flex .contents_right .wp-block-buttons.blue a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_b.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .top_contents_sora .contents_flex .contents_right .wp-block-buttons.blue a::after {
    right: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}

/*-------------おすすめメニュー-------------*/
.top_contents_spmenu {
  padding: 200px 20px;
  width: 100%;
  box-sizing: border-box;
  background: url(../../images/bg_pc_sky.jpg);
  background-size: cover;
  position: relative;
}
@media screen and (max-width: 830px) {
  .top_contents_spmenu {
    padding: 90px 20px;
    background: url(../../images/bg_sp_sky.jpg);
    background-position: center;
    background-size: cover;
  }
}
.top_contents_spmenu .top_h1_en {
  margin: 0 0 80px 0;
}
@media screen and (max-width: 830px) {
  .top_contents_spmenu .top_h1_en {
    margin: 0 0 50px 0;
  }
}
.top_contents_spmenu .top_h1_en h1 {
  margin: 0 0 40px 0;
  text-align: center;
  font-family: "Lora", serif;
  font-weight: 100;
  line-height: 1.3;
  letter-spacing: 0.2em;
  font-size: 4.8rem;
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0);
  transition: 0.8s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}
.top_contents_spmenu .top_h1_en h1.p1 {
  color: #4ad4f0;
}
.top_contents_spmenu .top_h1_en h1.p2 {
  color: #fff;
}
.top_contents_spmenu .top_h1_en h1.is-animated {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
@media screen and (max-width: 830px) {
  .top_contents_spmenu .top_h1_en h1 {
    font-size: 3rem;
    margin: 0 0 10px 0;
  }
}
.top_contents_spmenu .top_h1_en .jp_txt {
  font-family: "Klee One", cursive;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0;
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0);
  transition: 0.8s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}
.top_contents_spmenu .top_h1_en .jp_txt.p1 {
  color: #d97d50;
}
.top_contents_spmenu .top_h1_en .jp_txt.p2 {
  color: #fff;
}
.top_contents_spmenu .top_h1_en .jp_txt.is-animated {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
@media screen and (max-width: 830px) {
  .top_contents_spmenu .top_h1_en .jp_txt {
    font-size: 1.6rem;
  }
}
.top_contents_spmenu .contents_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1720px;
  width: 100%;
}
.top_contents_spmenu .contents_flex .contents {
  width: 49.15%;
  background: rgba(255, 255, 255, 0.9);
  padding: 100px 50px;
  box-sizing: border-box;
  border-radius: 8px;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 830px) {
  .top_contents_spmenu .contents_flex .contents {
    transform: translate(0, 40px);
  }
}
.top_contents_spmenu .contents_flex .contents.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 830px) {
  .top_contents_spmenu .contents_flex .contents {
    padding: 50px 20px;
  }
}
.top_contents_spmenu .contents_flex .contents.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
.top_contents_spmenu .contents_flex .contents:nth-of-type(2) {
  transition-delay: 300ms;
}
@media screen and (max-width: 1100px) {
  .top_contents_spmenu .contents_flex .contents:nth-of-type(2) {
    margin: 30px 0 0 0;
    transition-delay: 0ms;
  }
}
@media screen and (max-width: 1100px) {
  .top_contents_spmenu .contents_flex .contents {
    width: 100%;
  }
}
.top_contents_spmenu .contents_flex .contents h2 {
  font-size: 2.4rem;
  font-family: "Klee One", cursive;
  line-height: 1.7;
  text-align: center;
  color: #d97d50;
  padding: 0 0 20px 0;
  margin: 0 0 30px 0;
  border-bottom: solid 1px #d97d50;
}
@media screen and (max-width: 830px) {
  .top_contents_spmenu .contents_flex .contents h2 {
    font-size: 1.8rem;
    padding: 0 0 15px 0;
    margin: 0 0 20px 0;
  }
}
.top_contents_spmenu .contents_flex .contents .img_flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 0 50px 0;
}
@media screen and (max-width: 830px) {
  .top_contents_spmenu .contents_flex .contents .img_flex {
    margin: 0 0 30px 0;
  }
}
.top_contents_spmenu .contents_flex .contents .img_flex img {
  width: 48.1%;
  height: 100%;
  display: block;
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1.6/1;
}
@media screen and (max-width: 830px) {
  .top_contents_spmenu .contents_flex .contents .img_flex img {
    width: 100%;
  }
  .top_contents_spmenu .contents_flex .contents .img_flex img:nth-of-type(2) {
    margin: 20px 0 0 0;
  }
}
.top_contents_spmenu .contents_flex .contents .img_flex a {
  display: block;
  width: 48.1%;
  transition: all 0.3s;
}
@media screen and (max-width: 830px) {
  .top_contents_spmenu .contents_flex .contents .img_flex a {
    width: 100%;
    margin: 30px 0 0 0;
  }
}
.top_contents_spmenu .contents_flex .contents .img_flex a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .top_contents_spmenu .contents_flex .contents .img_flex a:hover {
    opacity: 1;
  }
}
.top_contents_spmenu .contents_flex .contents .img_flex a img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1.6/1;
}
.top_contents_spmenu .contents_flex .contents p {
  font-size: 1.6rem;
  font-family: "Klee One", cursive;
  color: #333;
  line-height: 2.2;
  margin: 0 0 50px 0;
}
@media screen and (max-width: 830px) {
  .top_contents_spmenu .contents_flex .contents p {
    font-size: 1.5rem;
    margin: 0 0 30px 0;
  }
}
.top_contents_spmenu .contents_flex .contents .wp-block-buttons .wp-block-button {
  display: block;
}
.top_contents_spmenu .contents_flex .contents .wp-block-buttons .wp-block-button a {
  padding: 20px;
  border-radius: 40px;
  display: block;
  max-width: 440px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  font-size: 1.8rem;
  transition: all 0.3s;
  box-sizing: border-box;
}
@media screen and (max-width: 830px) {
  .top_contents_spmenu .contents_flex .contents .wp-block-buttons .wp-block-button a {
    max-width: 330px;
    font-size: 1.5rem;
    padding: 15px;
  }
}
.top_contents_spmenu .contents_flex .contents .wp-block-buttons .wp-block-button a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .top_contents_spmenu .contents_flex .contents .wp-block-buttons .wp-block-button a:hover {
    opacity: 1;
  }
}
.top_contents_spmenu .contents_flex .contents .wp-block-buttons.gc a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_spmenu .contents_flex .contents .wp-block-buttons.gc a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_w.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .top_contents_spmenu .contents_flex .contents .wp-block-buttons.gc a::after {
    right: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}
.top_contents_spmenu .contents_flex .contents .wp-block-buttons.back a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_spmenu .contents_flex .contents .wp-block-buttons.back a::after {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_w_left.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .top_contents_spmenu .contents_flex .contents .wp-block-buttons.back a::after {
    left: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}
.top_contents_spmenu .contents_flex .contents .wp-block-buttons.news a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_spmenu .contents_flex .contents .wp-block-buttons.news a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_instagram_w.png);
  background-size: 20px;
  width: 20px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .top_contents_spmenu .contents_flex .contents .wp-block-buttons.news a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 15px;
  }
}
.top_contents_spmenu .contents_flex .contents .wp-block-buttons.call a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_spmenu .contents_flex .contents .wp-block-buttons.call a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_call_w.png);
  background-size: 20px;
  width: 20px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .top_contents_spmenu .contents_flex .contents .wp-block-buttons.call a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 15px;
  }
}
.top_contents_spmenu .contents_flex .contents .wp-block-buttons.calendar a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_spmenu .contents_flex .contents .wp-block-buttons.calendar a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_calendar_w.png);
  background-size: 20px;
  width: 20px;
  height: 21px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .top_contents_spmenu .contents_flex .contents .wp-block-buttons.calendar a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 16px;
  }
}
.top_contents_spmenu .contents_flex .contents .wp-block-buttons.line a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_spmenu .contents_flex .contents .wp-block-buttons.line a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_line_w.png);
  background-size: 21px;
  width: 21px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .top_contents_spmenu .contents_flex .contents .wp-block-buttons.line a::before {
    top: 2px;
    background-size: 16px;
    width: 16px;
    height: 15px;
  }
}
.top_contents_spmenu .contents_flex .contents .wp-block-buttons.tab a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_spmenu .contents_flex .contents .wp-block-buttons.tab a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_tab_w.png);
  background-size: 18px;
  width: 18px;
  height: 18px;
}
@media screen and (max-width: 830px) {
  .top_contents_spmenu .contents_flex .contents .wp-block-buttons.tab a::after {
    right: 15px;
    background-size: 10px;
    width: 10px;
    height: 10px;
  }
}
.top_contents_spmenu .contents_flex .contents .wp-block-buttons.blue a {
  background: #fff;
  color: #4ad4f0;
  border: solid 1px #4ad4f0;
}
.top_contents_spmenu .contents_flex .contents .wp-block-buttons.blue a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_b.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .top_contents_spmenu .contents_flex .contents .wp-block-buttons.blue a::after {
    right: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}

/*-------------症例別メニュー-------------*/
.top_contents_category {
  padding: 200px 20px 180px 20px;
  width: 100%;
  box-sizing: border-box;
  background: url(../../images/bg_pc_sea.jpg);
  background-size: cover;
  position: relative;
  /* 波アニメーション */
}
@media screen and (max-width: 830px) {
  .top_contents_category {
    padding: 90px 0 60px 0;
    background: url(../../images/bg_sp_sea.jpg);
    background-position: center;
    background-size: cover;
  }
}
.top_contents_category .top_h1_en {
  margin: 0 0 80px 0;
}
@media screen and (max-width: 830px) {
  .top_contents_category .top_h1_en {
    margin: 0 0 50px 0;
  }
}
.top_contents_category .top_h1_en h1 {
  margin: 0 0 40px 0;
  text-align: center;
  font-family: "Lora", serif;
  font-weight: 100;
  line-height: 1.3;
  letter-spacing: 0.2em;
  font-size: 4.8rem;
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0);
  transition: 0.8s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}
.top_contents_category .top_h1_en h1.p1 {
  color: #4ad4f0;
}
.top_contents_category .top_h1_en h1.p2 {
  color: #fff;
}
.top_contents_category .top_h1_en h1.is-animated {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
@media screen and (max-width: 830px) {
  .top_contents_category .top_h1_en h1 {
    font-size: 3rem;
    margin: 0 0 10px 0;
  }
}
.top_contents_category .top_h1_en .jp_txt {
  font-family: "Klee One", cursive;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0;
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0);
  transition: 0.8s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}
.top_contents_category .top_h1_en .jp_txt.p1 {
  color: #d97d50;
}
.top_contents_category .top_h1_en .jp_txt.p2 {
  color: #fff;
}
.top_contents_category .top_h1_en .jp_txt.is-animated {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
@media screen and (max-width: 830px) {
  .top_contents_category .top_h1_en .jp_txt {
    font-size: 1.6rem;
  }
}
.top_contents_category .top_category_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1250px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  align-content: space-between;
}
.top_contents_category .top_category_list li {
  list-style: none;
  max-width: 200px;
  width: 100%;
  margin: 0 25px 80px 25px;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 830px) {
  .top_contents_category .top_category_list li {
    transform: translate(0, 40px);
  }
}
.top_contents_category .top_category_list li.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
.top_contents_category .top_category_list li:nth-of-type(2) {
  transition-delay: 200ms;
}
.top_contents_category .top_category_list li:nth-of-type(3) {
  transition-delay: 400ms;
}
@media screen and (max-width: 830px) {
  .top_contents_category .top_category_list li:nth-of-type(3) {
    transition-delay: 0ms;
  }
}
.top_contents_category .top_category_list li:nth-of-type(4) {
  transition-delay: 600ms;
}
@media screen and (max-width: 830px) {
  .top_contents_category .top_category_list li:nth-of-type(4) {
    transition-delay: 200ms;
  }
}
.top_contents_category .top_category_list li:nth-of-type(5) {
  transition-delay: 800ms;
}
@media screen and (max-width: 830px) {
  .top_contents_category .top_category_list li:nth-of-type(5) {
    transition-delay: 0ms;
  }
}
@media screen and (max-width: 830px) {
  .top_contents_category .top_category_list li:nth-of-type(6) {
    transition-delay: 200ms;
  }
}
.top_contents_category .top_category_list li:nth-of-type(7) {
  transition-delay: 200ms;
}
@media screen and (max-width: 830px) {
  .top_contents_category .top_category_list li:nth-of-type(7) {
    transition-delay: 0ms;
  }
}
.top_contents_category .top_category_list li:nth-of-type(8) {
  transition-delay: 400ms;
}
@media screen and (max-width: 830px) {
  .top_contents_category .top_category_list li:nth-of-type(8) {
    transition-delay: 200ms;
  }
}
.top_contents_category .top_category_list li:nth-of-type(9) {
  transition-delay: 600ms;
}
@media screen and (max-width: 830px) {
  .top_contents_category .top_category_list li:nth-of-type(9) {
    transition-delay: 0ms;
  }
}
@media screen and (max-width: 830px) {
  .top_contents_category .top_category_list li {
    margin: 0 15px 30px 15px;
    max-width: 152px;
  }
}
.top_contents_category .top_category_list li a {
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}
.top_contents_category .top_category_list li a .img img {
  width: 100%;
  height: 100%;
  display: block;
}
.top_contents_category .top_category_list li a h2 {
  margin: 30px 0 0 0;
  text-align: center;
  color: #fff;
  font-size: 2rem;
  font-family: "Klee One", cursive;
  text-decoration: none;
}
@media screen and (max-width: 830px) {
  .top_contents_category .top_category_list li a h2 {
    margin: 15px 0 0 0;
    font-size: 1.6rem;
  }
}
.top_contents_category .top_category_list li a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .top_contents_category .top_category_list li a:hover {
    opacity: 1;
  }
}
.top_contents_category .waves_area {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
}
@media screen and (max-width: 830px) {
  .top_contents_category .waves_area {
    height: 40px;
  }
}
.top_contents_category .waves_area .waves {
  width: 100%;
  height: 100px;
  min-height: 100px;
  max-height: 150px;
}
@media screen and (max-width: 830px) {
  .top_contents_category .waves_area .waves {
    height: 40px;
    min-height: 40px;
  }
}
.top_contents_category .waves_area .waves .parallax &gt; use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
  animation-duration: 4s;
}

/*-------------お客様の声-------------*/
.top_contents_voice {
  padding: 200px 0;
  width: 100%;
  background: #fff;
  position: relative;
}
@media screen and (max-width: 830px) {
  .top_contents_voice {
    padding: 90px 0;
  }
}
.top_contents_voice .top_h1_en {
  margin: 0 0 80px 0;
}
@media screen and (max-width: 830px) {
  .top_contents_voice .top_h1_en {
    margin: 0 0 50px 0;
  }
}
.top_contents_voice .top_h1_en h1 {
  margin: 0 0 40px 0;
  text-align: center;
  font-family: "Lora", serif;
  font-weight: 100;
  line-height: 1.3;
  letter-spacing: 0.2em;
  font-size: 4.8rem;
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0);
  transition: 0.8s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}
.top_contents_voice .top_h1_en h1.p1 {
  color: #4ad4f0;
}
.top_contents_voice .top_h1_en h1.p2 {
  color: #fff;
}
.top_contents_voice .top_h1_en h1.is-animated {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
@media screen and (max-width: 830px) {
  .top_contents_voice .top_h1_en h1 {
    font-size: 3rem;
    margin: 0 0 10px 0;
  }
}
.top_contents_voice .top_h1_en .jp_txt {
  font-family: "Klee One", cursive;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0;
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0);
  transition: 0.8s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}
.top_contents_voice .top_h1_en .jp_txt.p1 {
  color: #d97d50;
}
.top_contents_voice .top_h1_en .jp_txt.p2 {
  color: #fff;
}
.top_contents_voice .top_h1_en .jp_txt.is-animated {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
@media screen and (max-width: 830px) {
  .top_contents_voice .top_h1_en .jp_txt {
    font-size: 1.6rem;
  }
}
.top_contents_voice .top_voice_list {
  padding: 0;
  margin: 100px 0 80px 0;
  display: flex;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 830px) {
  .top_contents_voice .top_voice_list {
    margin: 50px 0;
  }
}
.top_contents_voice .top_voice_list li {
  list-style: none;
  background: #4ad4f0;
  margin: 0 15px;
  border-radius: 10px;
  padding: 60px 40px;
  box-sizing: border-box;
  max-width: 510px;
  width: 100%;
}
@media screen and (max-width: 830px) {
  .top_contents_voice .top_voice_list li {
    padding: 30px 20px;
    margin: 0 10px;
  }
}
.top_contents_voice .top_voice_list li .img {
  background: #fff;
  border-radius: 50%;
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto;
}
@media screen and (max-width: 830px) {
  .top_contents_voice .top_voice_list li .img {
    width: 100px;
    height: 100px;
  }
}
.top_contents_voice .top_voice_list li .img img {
  display: block;
  max-width: 80px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 830px) {
  .top_contents_voice .top_voice_list li .img img {
    width: 50px;
  }
}
.top_contents_voice .top_voice_list li p {
  margin: 40px 0;
  font-size: 1.6rem;
  line-height: 2.2;
  color: #fff;
}
@media screen and (max-width: 830px) {
  .top_contents_voice .top_voice_list li p {
    font-size: 1.5rem;
    margin: 20px 0;
  }
}
.top_contents_voice .top_voice_list li .name {
  padding: 40px 0 0 0;
  font-size: 1.8rem;
  font-family: "Klee One", cursive;
  font-weight: 600;
  line-height: 1.7;
  color: #fff;
  text-align: center;
  border-top: solid 2px #fff;
  position: relative;
}
@media screen and (max-width: 830px) {
  .top_contents_voice .top_voice_list li .name {
    padding: 20px 0 0 0;
    font-size: 1.6rem;
  }
}
.top_contents_voice .top_voice_list li .name::before {
  position: absolute;
  content: "";
  background: url(../../images/icon_triangle.png);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-size: 16px;
  width: 16px;
  height: 12px;
}
.top_contents_voice .top_voice_list .slick-track {
  display: flex;
}
.top_contents_voice .top_voice_list .slick-slide {
  height: auto !important;
}
.top_contents_voice .wp-block-buttons {
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 830px) {
  .top_contents_voice .wp-block-buttons {
    transform: translate(0, 40px);
  }
}
.top_contents_voice .wp-block-buttons.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
.top_contents_voice .wp-block-buttons .wp-block-button {
  display: block;
}
.top_contents_voice .wp-block-buttons .wp-block-button a {
  padding: 20px;
  border-radius: 40px;
  display: block;
  max-width: 440px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  font-size: 1.8rem;
  transition: all 0.3s;
  box-sizing: border-box;
}
@media screen and (max-width: 830px) {
  .top_contents_voice .wp-block-buttons .wp-block-button a {
    max-width: 330px;
    font-size: 1.5rem;
    padding: 15px;
  }
}
.top_contents_voice .wp-block-buttons .wp-block-button a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .top_contents_voice .wp-block-buttons .wp-block-button a:hover {
    opacity: 1;
  }
}
.top_contents_voice .wp-block-buttons.gc a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_voice .wp-block-buttons.gc a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_w.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .top_contents_voice .wp-block-buttons.gc a::after {
    right: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}
.top_contents_voice .wp-block-buttons.back a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_voice .wp-block-buttons.back a::after {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_w_left.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .top_contents_voice .wp-block-buttons.back a::after {
    left: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}
.top_contents_voice .wp-block-buttons.news a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_voice .wp-block-buttons.news a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_instagram_w.png);
  background-size: 20px;
  width: 20px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .top_contents_voice .wp-block-buttons.news a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 15px;
  }
}
.top_contents_voice .wp-block-buttons.call a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_voice .wp-block-buttons.call a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_call_w.png);
  background-size: 20px;
  width: 20px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .top_contents_voice .wp-block-buttons.call a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 15px;
  }
}
.top_contents_voice .wp-block-buttons.calendar a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_voice .wp-block-buttons.calendar a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_calendar_w.png);
  background-size: 20px;
  width: 20px;
  height: 21px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .top_contents_voice .wp-block-buttons.calendar a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 16px;
  }
}
.top_contents_voice .wp-block-buttons.line a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_voice .wp-block-buttons.line a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_line_w.png);
  background-size: 21px;
  width: 21px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .top_contents_voice .wp-block-buttons.line a::before {
    top: 2px;
    background-size: 16px;
    width: 16px;
    height: 15px;
  }
}
.top_contents_voice .wp-block-buttons.tab a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_voice .wp-block-buttons.tab a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_tab_w.png);
  background-size: 18px;
  width: 18px;
  height: 18px;
}
@media screen and (max-width: 830px) {
  .top_contents_voice .wp-block-buttons.tab a::after {
    right: 15px;
    background-size: 10px;
    width: 10px;
    height: 10px;
  }
}
.top_contents_voice .wp-block-buttons.blue a {
  background: #fff;
  color: #4ad4f0;
  border: solid 1px #4ad4f0;
}
.top_contents_voice .wp-block-buttons.blue a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_b.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .top_contents_voice .wp-block-buttons.blue a::after {
    right: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}

/*-------------お知らせ-------------*/
.top_contents_news {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto 200px auto;
  background: #f8f8f8;
  padding: 140px 20px;
  box-sizing: border-box;
}
.top_contents_news .top_h1_en {
  margin: 0 0 80px 0;
}
@media screen and (max-width: 830px) {
  .top_contents_news .top_h1_en {
    margin: 0 0 50px 0;
  }
}
.top_contents_news .top_h1_en h1 {
  margin: 0 0 40px 0;
  text-align: center;
  font-family: "Lora", serif;
  font-weight: 100;
  line-height: 1.3;
  letter-spacing: 0.2em;
  font-size: 4.8rem;
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0);
  transition: 0.8s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}
.top_contents_news .top_h1_en h1.p1 {
  color: #4ad4f0;
}
.top_contents_news .top_h1_en h1.p2 {
  color: #fff;
}
.top_contents_news .top_h1_en h1.is-animated {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
@media screen and (max-width: 830px) {
  .top_contents_news .top_h1_en h1 {
    font-size: 3rem;
    margin: 0 0 10px 0;
  }
}
.top_contents_news .top_h1_en .jp_txt {
  font-family: "Klee One", cursive;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0;
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0);
  transition: 0.8s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}
.top_contents_news .top_h1_en .jp_txt.p1 {
  color: #d97d50;
}
.top_contents_news .top_h1_en .jp_txt.p2 {
  color: #fff;
}
.top_contents_news .top_h1_en .jp_txt.is-animated {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
@media screen and (max-width: 830px) {
  .top_contents_news .top_h1_en .jp_txt {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 830px) {
  .top_contents_news {
    padding: 90px 20px;
    margin: 0 auto;
  }
}
.top_contents_news p {
  font-size: 1.6rem;
  font-family: "Klee One", cursive;
  color: #333;
  line-height: 2.2;
  margin: 80px 0;
  text-align: center;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 830px) {
  .top_contents_news p {
    transform: translate(0, 40px);
  }
}
.top_contents_news p.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 830px) {
  .top_contents_news p {
    font-size: 1.5rem;
    margin: 50px 0;
  }
}
.top_contents_news p:last-child {
  margin: 0;
}
.top_contents_news #sb_instagram {
  margin: 0 auto 80px auto;
  padding: 0;
  max-width: 1200px;
  width: 100%;
}
@media screen and (max-width: 830px) {
  .top_contents_news #sb_instagram {
    margin: 0 auto 50px auto;
  }
}
.top_contents_news #sb_instagram .sbi_item .sbi_photo_wrap a svg {
  display: none !important;
}
.top_contents_news .top_insta_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 80px auto;
}
.top_contents_news .top_insta_list li {
  list-style: none;
  width: 16.17%;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 830px) {
  .top_contents_news .top_insta_list li {
    transform: translate(0, 40px);
  }
}
.top_contents_news .top_insta_list li.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 830px) {
  .top_contents_news .top_insta_list li {
    width: 49.27%;
  }
}
.top_contents_news .top_insta_list li:nth-of-type(2) {
  transition-delay: 200ms;
}
.top_contents_news .top_insta_list li:nth-of-type(3) {
  transition-delay: 400ms;
}
@media screen and (max-width: 830px) {
  .top_contents_news .top_insta_list li:nth-of-type(3) {
    transition-delay: 0ms;
  }
}
.top_contents_news .top_insta_list li:nth-of-type(4) {
  transition-delay: 600ms;
}
@media screen and (max-width: 830px) {
  .top_contents_news .top_insta_list li:nth-of-type(4) {
    transition-delay: 200ms;
  }
}
.top_contents_news .top_insta_list li:nth-of-type(5) {
  transition-delay: 800ms;
}
@media screen and (max-width: 830px) {
  .top_contents_news .top_insta_list li:nth-of-type(5) {
    transition-delay: 0ms;
  }
}
.top_contents_news .top_insta_list li:nth-of-type(6) {
  transition-delay: 1000ms;
}
@media screen and (max-width: 830px) {
  .top_contents_news .top_insta_list li:nth-of-type(6) {
    transition-delay: 200ms;
  }
}
@media screen and (max-width: 830px) {
  .top_contents_news .top_insta_list li:nth-of-type(-n+4) {
    margin: 0 0 5px 0;
  }
}
.top_contents_news .top_insta_list li a {
  display: block;
  transition: all 0.3s;
}
.top_contents_news .top_insta_list li a:hover {
  opacity: 0.5;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .top_contents_news .top_insta_list li a:hover {
    opacity: 1;
  }
}
.top_contents_news .top_insta_list li a img {
  width: 100%;
  height: 100%;
  display: block;
}
.top_contents_news .wp-block-buttons {
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 830px) {
  .top_contents_news .wp-block-buttons {
    transform: translate(0, 40px);
  }
}
.top_contents_news .wp-block-buttons.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
.top_contents_news .wp-block-buttons .wp-block-button {
  display: block;
}
.top_contents_news .wp-block-buttons .wp-block-button a {
  padding: 20px;
  border-radius: 40px;
  display: block;
  max-width: 440px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  font-size: 1.8rem;
  transition: all 0.3s;
  box-sizing: border-box;
}
@media screen and (max-width: 830px) {
  .top_contents_news .wp-block-buttons .wp-block-button a {
    max-width: 330px;
    font-size: 1.5rem;
    padding: 15px;
  }
}
.top_contents_news .wp-block-buttons .wp-block-button a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .top_contents_news .wp-block-buttons .wp-block-button a:hover {
    opacity: 1;
  }
}
.top_contents_news .wp-block-buttons.gc a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_news .wp-block-buttons.gc a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_w.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .top_contents_news .wp-block-buttons.gc a::after {
    right: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}
.top_contents_news .wp-block-buttons.back a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_news .wp-block-buttons.back a::after {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_w_left.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .top_contents_news .wp-block-buttons.back a::after {
    left: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}
.top_contents_news .wp-block-buttons.news a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_news .wp-block-buttons.news a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_instagram_w.png);
  background-size: 20px;
  width: 20px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .top_contents_news .wp-block-buttons.news a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 15px;
  }
}
.top_contents_news .wp-block-buttons.call a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_news .wp-block-buttons.call a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_call_w.png);
  background-size: 20px;
  width: 20px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .top_contents_news .wp-block-buttons.call a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 15px;
  }
}
.top_contents_news .wp-block-buttons.calendar a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_news .wp-block-buttons.calendar a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_calendar_w.png);
  background-size: 20px;
  width: 20px;
  height: 21px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .top_contents_news .wp-block-buttons.calendar a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 16px;
  }
}
.top_contents_news .wp-block-buttons.line a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_news .wp-block-buttons.line a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_line_w.png);
  background-size: 21px;
  width: 21px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .top_contents_news .wp-block-buttons.line a::before {
    top: 2px;
    background-size: 16px;
    width: 16px;
    height: 15px;
  }
}
.top_contents_news .wp-block-buttons.tab a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_news .wp-block-buttons.tab a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_tab_w.png);
  background-size: 18px;
  width: 18px;
  height: 18px;
}
@media screen and (max-width: 830px) {
  .top_contents_news .wp-block-buttons.tab a::after {
    right: 15px;
    background-size: 10px;
    width: 10px;
    height: 10px;
  }
}
.top_contents_news .wp-block-buttons.blue a {
  background: #fff;
  color: #4ad4f0;
  border: solid 1px #4ad4f0;
}
.top_contents_news .wp-block-buttons.blue a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_b.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .top_contents_news .wp-block-buttons.blue a::after {
    right: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}

/*-------------スタッフ-------------*/
.top_contents_staff {
  padding: 200px 20px 260px 20px;
  width: 100%;
  box-sizing: border-box;
  background: url(../../images/bg_pc_sea.jpg);
  background-size: cover;
  position: relative;
  /* 波アニメーション */
}
@media screen and (max-width: 830px) {
  .top_contents_staff {
    padding: 90px 0 140px 0;
    background: url(../../images/bg_sp_sea.jpg);
    background-position: center;
    background-size: cover;
  }
}
.top_contents_staff .top_h1_en {
  margin: 0 0 80px 0;
}
@media screen and (max-width: 830px) {
  .top_contents_staff .top_h1_en {
    margin: 0 0 50px 0;
  }
}
.top_contents_staff .top_h1_en h1 {
  margin: 0 0 40px 0;
  text-align: center;
  font-family: "Lora", serif;
  font-weight: 100;
  line-height: 1.3;
  letter-spacing: 0.2em;
  font-size: 4.8rem;
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0);
  transition: 0.8s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}
.top_contents_staff .top_h1_en h1.p1 {
  color: #4ad4f0;
}
.top_contents_staff .top_h1_en h1.p2 {
  color: #fff;
}
.top_contents_staff .top_h1_en h1.is-animated {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
@media screen and (max-width: 830px) {
  .top_contents_staff .top_h1_en h1 {
    font-size: 3rem;
    margin: 0 0 10px 0;
  }
}
.top_contents_staff .top_h1_en .jp_txt {
  font-family: "Klee One", cursive;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0;
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0);
  transition: 0.8s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}
.top_contents_staff .top_h1_en .jp_txt.p1 {
  color: #d97d50;
}
.top_contents_staff .top_h1_en .jp_txt.p2 {
  color: #fff;
}
.top_contents_staff .top_h1_en .jp_txt.is-animated {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
@media screen and (max-width: 830px) {
  .top_contents_staff .top_h1_en .jp_txt {
    font-size: 1.6rem;
  }
}
.top_contents_staff .top_staff_list {
  margin: 100px auto 40px auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  box-sizing: border-box;
  max-width: 1200px;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 830px) {
  .top_contents_staff .top_staff_list {
    padding: 0 20px;
    margin: 50px auto;
  }
}
.top_contents_staff .top_staff_list::after {
  content: "";
  display: block;
  height: auto;
  width: 31.86%;
}
@media screen and (max-width: 830px) {
  .top_contents_staff .top_staff_list::after {
    width: 100%;
  }
}
.top_contents_staff .top_staff_list li {
  list-style: none;
  width: 31.86%;
  display: flex;
  margin: 0 0 40px 0;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 830px) {
  .top_contents_staff .top_staff_list li {
    transform: translate(0, 40px);
  }
}
.top_contents_staff .top_staff_list li.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 830px) {
  .top_contents_staff .top_staff_list li {
    width: 100%;
    margin: 0 0 20px 0;
  }
  .top_contents_staff .top_staff_list li:last-child {
    margin: 0;
  }
}
.top_contents_staff .top_staff_list li:nth-of-type(2) {
  transition-delay: 200ms;
}
@media screen and (max-width: 830px) {
  .top_contents_staff .top_staff_list li:nth-of-type(2) {
    transition-delay: 0ms;
  }
}
.top_contents_staff .top_staff_list li:nth-of-type(3) {
  transition-delay: 400ms;
}
@media screen and (max-width: 830px) {
  .top_contents_staff .top_staff_list li:nth-of-type(3) {
    transition-delay: 0ms;
  }
}
.top_contents_staff .top_staff_list li a {
  width: 100%;
  display: block;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: 30px 30px 80px 30px;
  text-decoration: none;
  transition: all 0.3s;
}
@media screen and (max-width: 830px) {
  .top_contents_staff .top_staff_list li a {
    padding: 40px 20px;
  }
}
.top_contents_staff .top_staff_list li a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 830px) {
  .top_contents_staff .top_staff_list li a:hover {
    opacity: 1;
  }
}
.top_contents_staff .top_staff_list li a .img {
  height: 326px;
}
@media screen and (max-width: 830px) {
  .top_contents_staff .top_staff_list li a .img {
    max-width: 193px;
    width: 100%;
    margin: 0 auto;
    height: 178px;
  }
}
.top_contents_staff .top_staff_list li a .img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.top_contents_staff .top_staff_list li a h2 {
  font-family: "Lora", serif;
  font-weight: 100;
  letter-spacing: 0.2em;
  font-size: 3.6rem;
  color: #4ad4f0;
  text-align: center;
  margin: 40px 0 10px 0;
}
@media screen and (max-width: 830px) {
  .top_contents_staff .top_staff_list li a h2 {
    font-size: 2.4rem;
    margin: 20px 0 5px 0;
  }
}
.top_contents_staff .top_staff_list li a .name {
  padding: 10px;
  background: #4ad4f0;
  color: #fff;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  font-size: 1.8rem;
  font-family: "Klee One", cursive;
}
@media screen and (max-width: 830px) {
  .top_contents_staff .top_staff_list li a .name {
    font-size: 1.6rem;
  }
}
.top_contents_staff .top_staff_list li a h3 {
  font-size: 1.6rem;
  font-family: "Klee One", cursive;
  font-weight: 400;
  padding: 0 0 0 15px;
  border-left: solid 2px #d97d50;
  line-height: 2;
  margin: 40px 0;
  color: #333;
}
@media screen and (max-width: 830px) {
  .top_contents_staff .top_staff_list li a h3 {
    font-size: 1.5rem;
    margin: 20px 0;
  }
}
.top_contents_staff .top_staff_list li a h3:last-child {
  margin: 0;
}
.top_contents_staff .wp-block-buttons {
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 830px) {
  .top_contents_staff .wp-block-buttons {
    transform: translate(0, 40px);
  }
}
.top_contents_staff .wp-block-buttons.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
.top_contents_staff .wp-block-buttons .wp-block-button {
  display: block;
}
.top_contents_staff .wp-block-buttons .wp-block-button a {
  padding: 20px;
  border-radius: 40px;
  display: block;
  max-width: 440px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  font-size: 1.8rem;
  transition: all 0.3s;
  box-sizing: border-box;
}
@media screen and (max-width: 830px) {
  .top_contents_staff .wp-block-buttons .wp-block-button a {
    max-width: 330px;
    font-size: 1.5rem;
    padding: 15px;
  }
}
.top_contents_staff .wp-block-buttons .wp-block-button a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .top_contents_staff .wp-block-buttons .wp-block-button a:hover {
    opacity: 1;
  }
}
.top_contents_staff .wp-block-buttons.gc a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_staff .wp-block-buttons.gc a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_w.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .top_contents_staff .wp-block-buttons.gc a::after {
    right: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}
.top_contents_staff .wp-block-buttons.back a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_staff .wp-block-buttons.back a::after {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_w_left.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .top_contents_staff .wp-block-buttons.back a::after {
    left: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}
.top_contents_staff .wp-block-buttons.news a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_staff .wp-block-buttons.news a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_instagram_w.png);
  background-size: 20px;
  width: 20px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .top_contents_staff .wp-block-buttons.news a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 15px;
  }
}
.top_contents_staff .wp-block-buttons.call a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_staff .wp-block-buttons.call a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_call_w.png);
  background-size: 20px;
  width: 20px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .top_contents_staff .wp-block-buttons.call a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 15px;
  }
}
.top_contents_staff .wp-block-buttons.calendar a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_staff .wp-block-buttons.calendar a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_calendar_w.png);
  background-size: 20px;
  width: 20px;
  height: 21px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .top_contents_staff .wp-block-buttons.calendar a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 16px;
  }
}
.top_contents_staff .wp-block-buttons.line a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_staff .wp-block-buttons.line a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_line_w.png);
  background-size: 21px;
  width: 21px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .top_contents_staff .wp-block-buttons.line a::before {
    top: 2px;
    background-size: 16px;
    width: 16px;
    height: 15px;
  }
}
.top_contents_staff .wp-block-buttons.tab a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_staff .wp-block-buttons.tab a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_tab_w.png);
  background-size: 18px;
  width: 18px;
  height: 18px;
}
@media screen and (max-width: 830px) {
  .top_contents_staff .wp-block-buttons.tab a::after {
    right: 15px;
    background-size: 10px;
    width: 10px;
    height: 10px;
  }
}
.top_contents_staff .wp-block-buttons.blue a {
  background: #fff;
  color: #4ad4f0;
  border: solid 1px #4ad4f0;
}
.top_contents_staff .wp-block-buttons.blue a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_b.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .top_contents_staff .wp-block-buttons.blue a::after {
    right: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}
.top_contents_staff .waves_area {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
}
@media screen and (max-width: 830px) {
  .top_contents_staff .waves_area {
    height: 40px;
  }
}
.top_contents_staff .waves_area .waves {
  width: 100%;
  height: 100px;
  min-height: 100px;
  max-height: 150px;
}
@media screen and (max-width: 830px) {
  .top_contents_staff .waves_area .waves {
    height: 40px;
    min-height: 40px;
  }
}
.top_contents_staff .waves_area .waves .parallax &gt; use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
  animation-duration: 4s;
}

/*-------------オーナー挨拶-------------*/
.top_contents_owner {
  padding: 200px 0;
  background: #fff;
}
@media screen and (max-width: 830px) {
  .top_contents_owner {
    box-sizing: border-box;
    order: 2;
    padding: 70px 20px 90px 20px;
  }
}
.top_contents_owner .contents_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.top_contents_owner .contents_flex .contents_left {
  width: 50%;
  box-sizing: border-box;
  padding: 0 20px;
}
@media screen and (max-width: 830px) {
  .top_contents_owner .contents_flex .contents_left {
    width: 100%;
    padding: 0 0 50px 0;
  }
}
.top_contents_owner .contents_flex .contents_left .top_h1_en {
  margin: 0 0 80px 0;
}
@media screen and (max-width: 830px) {
  .top_contents_owner .contents_flex .contents_left .top_h1_en {
    margin: 0 0 50px 0;
  }
}
.top_contents_owner .contents_flex .contents_left .top_h1_en h1 {
  margin: 0 0 40px 0;
  text-align: center;
  font-family: "Lora", serif;
  font-weight: 100;
  line-height: 1.3;
  letter-spacing: 0.2em;
  font-size: 4.8rem;
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0);
  transition: 0.8s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}
.top_contents_owner .contents_flex .contents_left .top_h1_en h1.p1 {
  color: #4ad4f0;
}
.top_contents_owner .contents_flex .contents_left .top_h1_en h1.p2 {
  color: #fff;
}
.top_contents_owner .contents_flex .contents_left .top_h1_en h1.is-animated {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
@media screen and (max-width: 830px) {
  .top_contents_owner .contents_flex .contents_left .top_h1_en h1 {
    font-size: 3rem;
    margin: 0 0 10px 0;
  }
}
.top_contents_owner .contents_flex .contents_left .top_h1_en .jp_txt {
  font-family: "Klee One", cursive;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0;
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0);
  transition: 0.8s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}
.top_contents_owner .contents_flex .contents_left .top_h1_en .jp_txt.p1 {
  color: #d97d50;
}
.top_contents_owner .contents_flex .contents_left .top_h1_en .jp_txt.p2 {
  color: #fff;
}
.top_contents_owner .contents_flex .contents_left .top_h1_en .jp_txt.is-animated {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
@media screen and (max-width: 830px) {
  .top_contents_owner .contents_flex .contents_left .top_h1_en .jp_txt {
    font-size: 1.6rem;
  }
}
.top_contents_owner .contents_flex .contents_left .top_sora_txt {
  margin: 0 auto 80px auto;
  max-width: 660px;
  width: 100%;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 830px) {
  .top_contents_owner .contents_flex .contents_left .top_sora_txt {
    transform: translate(0, 40px);
  }
}
.top_contents_owner .contents_flex .contents_left .top_sora_txt.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 830px) {
  .top_contents_owner .contents_flex .contents_left .top_sora_txt {
    max-width: 100%;
    margin: 0 auto 50px auto;
  }
}
.top_contents_owner .contents_flex .contents_left .top_sora_txt p {
  font-size: 1.6rem;
  font-family: "Klee One", cursive;
  color: #333;
  line-height: 2.2;
  margin: 0 0 40px 0;
}
@media screen and (max-width: 830px) {
  .top_contents_owner .contents_flex .contents_left .top_sora_txt p {
    font-size: 1.5rem;
    margin: 0 0 20px 0;
  }
}
.top_contents_owner .contents_flex .contents_left .top_sora_txt p:last-child {
  margin: 0;
}
.top_contents_owner .contents_flex .contents_left .wp-block-buttons {
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 830px) {
  .top_contents_owner .contents_flex .contents_left .wp-block-buttons {
    transform: translate(0, 40px);
  }
}
.top_contents_owner .contents_flex .contents_left .wp-block-buttons.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
.top_contents_owner .contents_flex .contents_left .wp-block-buttons .wp-block-button {
  display: block;
}
.top_contents_owner .contents_flex .contents_left .wp-block-buttons .wp-block-button a {
  padding: 20px;
  border-radius: 40px;
  display: block;
  max-width: 440px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  font-size: 1.8rem;
  transition: all 0.3s;
  box-sizing: border-box;
}
@media screen and (max-width: 830px) {
  .top_contents_owner .contents_flex .contents_left .wp-block-buttons .wp-block-button a {
    max-width: 330px;
    font-size: 1.5rem;
    padding: 15px;
  }
}
.top_contents_owner .contents_flex .contents_left .wp-block-buttons .wp-block-button a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .top_contents_owner .contents_flex .contents_left .wp-block-buttons .wp-block-button a:hover {
    opacity: 1;
  }
}
.top_contents_owner .contents_flex .contents_left .wp-block-buttons.gc a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_owner .contents_flex .contents_left .wp-block-buttons.gc a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_w.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .top_contents_owner .contents_flex .contents_left .wp-block-buttons.gc a::after {
    right: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}
.top_contents_owner .contents_flex .contents_left .wp-block-buttons.back a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_owner .contents_flex .contents_left .wp-block-buttons.back a::after {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_w_left.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .top_contents_owner .contents_flex .contents_left .wp-block-buttons.back a::after {
    left: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}
.top_contents_owner .contents_flex .contents_left .wp-block-buttons.news a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_owner .contents_flex .contents_left .wp-block-buttons.news a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_instagram_w.png);
  background-size: 20px;
  width: 20px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .top_contents_owner .contents_flex .contents_left .wp-block-buttons.news a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 15px;
  }
}
.top_contents_owner .contents_flex .contents_left .wp-block-buttons.call a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_owner .contents_flex .contents_left .wp-block-buttons.call a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_call_w.png);
  background-size: 20px;
  width: 20px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .top_contents_owner .contents_flex .contents_left .wp-block-buttons.call a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 15px;
  }
}
.top_contents_owner .contents_flex .contents_left .wp-block-buttons.calendar a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_owner .contents_flex .contents_left .wp-block-buttons.calendar a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_calendar_w.png);
  background-size: 20px;
  width: 20px;
  height: 21px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .top_contents_owner .contents_flex .contents_left .wp-block-buttons.calendar a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 16px;
  }
}
.top_contents_owner .contents_flex .contents_left .wp-block-buttons.line a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_owner .contents_flex .contents_left .wp-block-buttons.line a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_line_w.png);
  background-size: 21px;
  width: 21px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .top_contents_owner .contents_flex .contents_left .wp-block-buttons.line a::before {
    top: 2px;
    background-size: 16px;
    width: 16px;
    height: 15px;
  }
}
.top_contents_owner .contents_flex .contents_left .wp-block-buttons.tab a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_owner .contents_flex .contents_left .wp-block-buttons.tab a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_tab_w.png);
  background-size: 18px;
  width: 18px;
  height: 18px;
}
@media screen and (max-width: 830px) {
  .top_contents_owner .contents_flex .contents_left .wp-block-buttons.tab a::after {
    right: 15px;
    background-size: 10px;
    width: 10px;
    height: 10px;
  }
}
.top_contents_owner .contents_flex .contents_left .wp-block-buttons.blue a {
  background: #fff;
  color: #4ad4f0;
  border: solid 1px #4ad4f0;
}
.top_contents_owner .contents_flex .contents_left .wp-block-buttons.blue a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_b.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .top_contents_owner .contents_flex .contents_left .wp-block-buttons.blue a::after {
    right: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}
.top_contents_owner .contents_flex .contents_right {
  width: 42%;
  height: 100%;
}
@media screen and (max-width: 830px) {
  .top_contents_owner .contents_flex .contents_right {
    width: 100%;
    order: 2;
  }
}
.top_contents_owner .contents_flex .contents_right .img_b {
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 830px) {
  .top_contents_owner .contents_flex .contents_right .img_b {
    transform: translate(0, 40px);
  }
}
.top_contents_owner .contents_flex .contents_right .img_b.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
.top_contents_owner .contents_flex .contents_right .img_b img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 5px;
}
.top_contents_owner .contents_flex .contents_right .img_flex {
  display: flex;
  max-width: 786px;
  width: 100%;
  margin: 10px auto 0 -70px;
}
@media screen and (max-width: 830px) {
  .top_contents_owner .contents_flex .contents_right .img_flex {
    margin: 5px 0 0 0;
  }
}
.top_contents_owner .contents_flex .contents_right .img_flex .img_s:first-child {
  margin: 0 10px 0 0;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 830px) {
  .top_contents_owner .contents_flex .contents_right .img_flex .img_s:first-child {
    transform: translate(0, 40px);
  }
}
.top_contents_owner .contents_flex .contents_right .img_flex .img_s:first-child.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 830px) {
  .top_contents_owner .contents_flex .contents_right .img_flex .img_s:first-child {
    margin: 0 5px 0 0;
  }
}
.top_contents_owner .contents_flex .contents_right .img_flex .img_s:nth-of-type(2) {
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
  transition-delay: 300ms;
}
@media screen and (max-width: 830px) {
  .top_contents_owner .contents_flex .contents_right .img_flex .img_s:nth-of-type(2) {
    transform: translate(0, 40px);
  }
}
.top_contents_owner .contents_flex .contents_right .img_flex .img_s:nth-of-type(2).is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
.top_contents_owner .contents_flex .contents_right .img_flex .img_s img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
}

/*-------------おすすめグッズ販売-------------*/
.top_contents_shop {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto 200px auto;
  background: #f8f8f8;
  padding: 140px 20px;
  box-sizing: border-box;
}
.top_contents_shop .top_h1_en {
  margin: 0 0 80px 0;
}
@media screen and (max-width: 830px) {
  .top_contents_shop .top_h1_en {
    margin: 0 0 50px 0;
  }
}
.top_contents_shop .top_h1_en h1 {
  margin: 0 0 40px 0;
  text-align: center;
  font-family: "Lora", serif;
  font-weight: 100;
  line-height: 1.3;
  letter-spacing: 0.2em;
  font-size: 4.8rem;
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0);
  transition: 0.8s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}
.top_contents_shop .top_h1_en h1.p1 {
  color: #4ad4f0;
}
.top_contents_shop .top_h1_en h1.p2 {
  color: #fff;
}
.top_contents_shop .top_h1_en h1.is-animated {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
@media screen and (max-width: 830px) {
  .top_contents_shop .top_h1_en h1 {
    font-size: 3rem;
    margin: 0 0 10px 0;
  }
}
.top_contents_shop .top_h1_en .jp_txt {
  font-family: "Klee One", cursive;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0;
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0);
  transition: 0.8s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}
.top_contents_shop .top_h1_en .jp_txt.p1 {
  color: #d97d50;
}
.top_contents_shop .top_h1_en .jp_txt.p2 {
  color: #fff;
}
.top_contents_shop .top_h1_en .jp_txt.is-animated {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
@media screen and (max-width: 830px) {
  .top_contents_shop .top_h1_en .jp_txt {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 830px) {
  .top_contents_shop {
    padding: 90px 20px;
    margin: 0 auto;
  }
}
.top_contents_shop p {
  font-size: 1.6rem;
  font-family: "Klee One", cursive;
  color: #333;
  line-height: 2.2;
  margin: 80px 0;
  text-align: center;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 830px) {
  .top_contents_shop p {
    transform: translate(0, 40px);
  }
}
.top_contents_shop p.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 830px) {
  .top_contents_shop p {
    font-size: 1.5rem;
    margin: 50px 0;
  }
}
.top_contents_shop p:last-child {
  margin: 0;
}
.top_contents_shop .top_shop_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 80px auto;
}
@media screen and (max-width: 830px) {
  .top_contents_shop .top_shop_list {
    margin: 0 auto 50px auto;
  }
}
.top_contents_shop .top_shop_list li {
  list-style: none;
  width: 16.17%;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 830px) {
  .top_contents_shop .top_shop_list li {
    transform: translate(0, 40px);
  }
}
.top_contents_shop .top_shop_list li.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 830px) {
  .top_contents_shop .top_shop_list li {
    width: 49.27%;
  }
}
.top_contents_shop .top_shop_list li:nth-of-type(2) {
  transition-delay: 200ms;
}
.top_contents_shop .top_shop_list li:nth-of-type(3) {
  transition-delay: 400ms;
}
@media screen and (max-width: 830px) {
  .top_contents_shop .top_shop_list li:nth-of-type(3) {
    transition-delay: 0ms;
  }
}
.top_contents_shop .top_shop_list li:nth-of-type(4) {
  transition-delay: 600ms;
}
@media screen and (max-width: 830px) {
  .top_contents_shop .top_shop_list li:nth-of-type(4) {
    transition-delay: 200ms;
  }
}
.top_contents_shop .top_shop_list li:nth-of-type(5) {
  transition-delay: 800ms;
}
@media screen and (max-width: 830px) {
  .top_contents_shop .top_shop_list li:nth-of-type(5) {
    transition-delay: 0ms;
  }
}
.top_contents_shop .top_shop_list li:nth-of-type(6) {
  transition-delay: 1000ms;
}
@media screen and (max-width: 830px) {
  .top_contents_shop .top_shop_list li:nth-of-type(6) {
    transition-delay: 200ms;
  }
}
@media screen and (max-width: 830px) {
  .top_contents_shop .top_shop_list li:nth-of-type(-n+4) {
    margin: 0 0 5px 0;
  }
}
.top_contents_shop .top_shop_list li img {
  width: 100%;
  height: 100%;
  display: block;
}
.top_contents_shop .wp-block-buttons {
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 830px) {
  .top_contents_shop .wp-block-buttons {
    transform: translate(0, 40px);
  }
}
.top_contents_shop .wp-block-buttons.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
.top_contents_shop .wp-block-buttons .wp-block-button {
  display: block;
}
.top_contents_shop .wp-block-buttons .wp-block-button a {
  padding: 20px;
  border-radius: 40px;
  display: block;
  max-width: 440px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  font-size: 1.8rem;
  transition: all 0.3s;
  box-sizing: border-box;
}
@media screen and (max-width: 830px) {
  .top_contents_shop .wp-block-buttons .wp-block-button a {
    max-width: 330px;
    font-size: 1.5rem;
    padding: 15px;
  }
}
.top_contents_shop .wp-block-buttons .wp-block-button a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .top_contents_shop .wp-block-buttons .wp-block-button a:hover {
    opacity: 1;
  }
}
.top_contents_shop .wp-block-buttons.gc a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_shop .wp-block-buttons.gc a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_w.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .top_contents_shop .wp-block-buttons.gc a::after {
    right: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}
.top_contents_shop .wp-block-buttons.back a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_shop .wp-block-buttons.back a::after {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_w_left.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .top_contents_shop .wp-block-buttons.back a::after {
    left: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}
.top_contents_shop .wp-block-buttons.news a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_shop .wp-block-buttons.news a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_instagram_w.png);
  background-size: 20px;
  width: 20px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .top_contents_shop .wp-block-buttons.news a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 15px;
  }
}
.top_contents_shop .wp-block-buttons.call a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_shop .wp-block-buttons.call a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_call_w.png);
  background-size: 20px;
  width: 20px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .top_contents_shop .wp-block-buttons.call a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 15px;
  }
}
.top_contents_shop .wp-block-buttons.calendar a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_shop .wp-block-buttons.calendar a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_calendar_w.png);
  background-size: 20px;
  width: 20px;
  height: 21px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .top_contents_shop .wp-block-buttons.calendar a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 16px;
  }
}
.top_contents_shop .wp-block-buttons.line a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_shop .wp-block-buttons.line a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_line_w.png);
  background-size: 21px;
  width: 21px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .top_contents_shop .wp-block-buttons.line a::before {
    top: 2px;
    background-size: 16px;
    width: 16px;
    height: 15px;
  }
}
.top_contents_shop .wp-block-buttons.tab a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_shop .wp-block-buttons.tab a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_tab_w.png);
  background-size: 18px;
  width: 18px;
  height: 18px;
}
@media screen and (max-width: 830px) {
  .top_contents_shop .wp-block-buttons.tab a::after {
    right: 15px;
    background-size: 10px;
    width: 10px;
    height: 10px;
  }
}
.top_contents_shop .wp-block-buttons.blue a {
  background: #fff;
  color: #4ad4f0;
  border: solid 1px #4ad4f0;
}
.top_contents_shop .wp-block-buttons.blue a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_b.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .top_contents_shop .wp-block-buttons.blue a::after {
    right: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}

/*-------------タイ古式マッサージスクールー-------------*/
.top_contents_scholl {
  padding: 200px 0 260px 0;
  width: 100%;
  box-sizing: border-box;
  background: url(../../images/bg_pc_sea.jpg);
  background-size: cover;
  position: relative;
  /* 波アニメーション */
}
@media screen and (max-width: 830px) {
  .top_contents_scholl {
    padding: 90px 20px 140px 20px;
    background: url(../../images/bg_sp_sea.jpg);
    background-position: center;
    background-size: cover;
  }
}
.top_contents_scholl .top_h1_en {
  margin: 0 0 80px 0;
}
@media screen and (max-width: 830px) {
  .top_contents_scholl .top_h1_en {
    margin: 0 0 50px 0;
  }
}
.top_contents_scholl .top_h1_en h1 {
  margin: 0 0 40px 0;
  text-align: center;
  font-family: "Lora", serif;
  font-weight: 100;
  line-height: 1.3;
  letter-spacing: 0.2em;
  font-size: 4.8rem;
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0);
  transition: 0.8s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}
.top_contents_scholl .top_h1_en h1.p1 {
  color: #4ad4f0;
}
.top_contents_scholl .top_h1_en h1.p2 {
  color: #fff;
}
.top_contents_scholl .top_h1_en h1.is-animated {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
@media screen and (max-width: 830px) {
  .top_contents_scholl .top_h1_en h1 {
    font-size: 3rem;
    margin: 0 0 10px 0;
  }
}
.top_contents_scholl .top_h1_en .jp_txt {
  font-family: "Klee One", cursive;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0;
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0);
  transition: 0.8s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}
.top_contents_scholl .top_h1_en .jp_txt.p1 {
  color: #d97d50;
}
.top_contents_scholl .top_h1_en .jp_txt.p2 {
  color: #fff;
}
.top_contents_scholl .top_h1_en .jp_txt.is-animated {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
@media screen and (max-width: 830px) {
  .top_contents_scholl .top_h1_en .jp_txt {
    font-size: 1.6rem;
  }
}
.top_contents_scholl .waves_area {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
}
@media screen and (max-width: 830px) {
  .top_contents_scholl .waves_area {
    height: 40px;
  }
}
.top_contents_scholl .waves_area .waves {
  width: 100%;
  height: 100px;
  min-height: 100px;
  max-height: 150px;
}
@media screen and (max-width: 830px) {
  .top_contents_scholl .waves_area .waves {
    height: 40px;
    min-height: 40px;
  }
}
.top_contents_scholl .waves_area .waves .parallax &gt; use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
  animation-duration: 4s;
}
.top_contents_scholl .contents_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.top_contents_scholl .contents_flex .contents_left {
  width: 42%;
  height: 100%;
}
@media screen and (max-width: 830px) {
  .top_contents_scholl .contents_flex .contents_left {
    width: 100%;
    order: 2;
  }
}
.top_contents_scholl .contents_flex .contents_left .img_b {
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 830px) {
  .top_contents_scholl .contents_flex .contents_left .img_b {
    transform: translate(0, 40px);
  }
}
.top_contents_scholl .contents_flex .contents_left .img_b.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
.top_contents_scholl .contents_flex .contents_left .img_b img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 5px;
}
.top_contents_scholl .contents_flex .contents_left .img_flex {
  display: flex;
  max-width: 786px;
  width: 100%;
  margin: 10px -70px 0 auto;
}
@media screen and (max-width: 830px) {
  .top_contents_scholl .contents_flex .contents_left .img_flex {
    margin: 5px 0 0 0;
  }
}
.top_contents_scholl .contents_flex .contents_left .img_flex .img_s:first-child {
  margin: 0 10px 0 0;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 830px) {
  .top_contents_scholl .contents_flex .contents_left .img_flex .img_s:first-child {
    transform: translate(0, 40px);
  }
}
.top_contents_scholl .contents_flex .contents_left .img_flex .img_s:first-child.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 830px) {
  .top_contents_scholl .contents_flex .contents_left .img_flex .img_s:first-child {
    margin: 0 5px 0 0;
  }
}
.top_contents_scholl .contents_flex .contents_left .img_flex .img_s:nth-of-type(2) {
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
  transition-delay: 300ms;
}
@media screen and (max-width: 830px) {
  .top_contents_scholl .contents_flex .contents_left .img_flex .img_s:nth-of-type(2) {
    transform: translate(0, 40px);
  }
}
.top_contents_scholl .contents_flex .contents_left .img_flex .img_s:nth-of-type(2).is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
.top_contents_scholl .contents_flex .contents_left .img_flex .img_s img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
}
.top_contents_scholl .contents_flex .contents_right {
  width: 50%;
  box-sizing: border-box;
  padding: 0 20px;
}
@media screen and (max-width: 830px) {
  .top_contents_scholl .contents_flex .contents_right {
    width: 100%;
    padding: 0 0 50px 0;
  }
}
.top_contents_scholl .contents_flex .contents_right .top_h1_en {
  margin: 0 0 80px 0;
}
@media screen and (max-width: 830px) {
  .top_contents_scholl .contents_flex .contents_right .top_h1_en {
    margin: 0 0 50px 0;
  }
}
.top_contents_scholl .contents_flex .contents_right .top_h1_en h1 {
  margin: 0 0 40px 0;
  text-align: center;
  font-family: "Lora", serif;
  font-weight: 100;
  line-height: 1.3;
  letter-spacing: 0.2em;
  font-size: 4.8rem;
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0);
  transition: 0.8s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}
.top_contents_scholl .contents_flex .contents_right .top_h1_en h1.p1 {
  color: #4ad4f0;
}
.top_contents_scholl .contents_flex .contents_right .top_h1_en h1.p2 {
  color: #fff;
}
.top_contents_scholl .contents_flex .contents_right .top_h1_en h1.is-animated {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
@media screen and (max-width: 830px) {
  .top_contents_scholl .contents_flex .contents_right .top_h1_en h1 {
    font-size: 3rem;
    margin: 0 0 10px 0;
  }
}
.top_contents_scholl .contents_flex .contents_right .top_h1_en .jp_txt {
  font-family: "Klee One", cursive;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0;
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0);
  transition: 0.8s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}
.top_contents_scholl .contents_flex .contents_right .top_h1_en .jp_txt.p1 {
  color: #d97d50;
}
.top_contents_scholl .contents_flex .contents_right .top_h1_en .jp_txt.p2 {
  color: #fff;
}
.top_contents_scholl .contents_flex .contents_right .top_h1_en .jp_txt.is-animated {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
@media screen and (max-width: 830px) {
  .top_contents_scholl .contents_flex .contents_right .top_h1_en .jp_txt {
    font-size: 1.6rem;
  }
}
.top_contents_scholl .contents_flex .contents_right .top_sora_txt {
  margin: 0 auto 80px auto;
  max-width: 660px;
  width: 100%;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 830px) {
  .top_contents_scholl .contents_flex .contents_right .top_sora_txt {
    transform: translate(0, 40px);
  }
}
.top_contents_scholl .contents_flex .contents_right .top_sora_txt.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 830px) {
  .top_contents_scholl .contents_flex .contents_right .top_sora_txt {
    max-width: 100%;
    margin: 0 auto 50px auto;
  }
}
.top_contents_scholl .contents_flex .contents_right .top_sora_txt p {
  font-size: 1.6rem;
  font-family: "Klee One", cursive;
  font-weight: 600;
  color: #fff;
  line-height: 2.2;
  margin: 0 0 40px 0;
}
@media screen and (max-width: 830px) {
  .top_contents_scholl .contents_flex .contents_right .top_sora_txt p {
    font-size: 1.5rem;
    margin: 0 0 20px 0;
  }
}
.top_contents_scholl .contents_flex .contents_right .top_sora_txt p:last-child {
  margin: 0;
}
.top_contents_scholl .contents_flex .contents_right .wp-block-buttons {
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 830px) {
  .top_contents_scholl .contents_flex .contents_right .wp-block-buttons {
    transform: translate(0, 40px);
  }
}
.top_contents_scholl .contents_flex .contents_right .wp-block-buttons.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
.top_contents_scholl .contents_flex .contents_right .wp-block-buttons .wp-block-button {
  display: block;
}
.top_contents_scholl .contents_flex .contents_right .wp-block-buttons .wp-block-button a {
  padding: 20px;
  border-radius: 40px;
  display: block;
  max-width: 440px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  font-size: 1.8rem;
  transition: all 0.3s;
  box-sizing: border-box;
}
@media screen and (max-width: 830px) {
  .top_contents_scholl .contents_flex .contents_right .wp-block-buttons .wp-block-button a {
    max-width: 330px;
    font-size: 1.5rem;
    padding: 15px;
  }
}
.top_contents_scholl .contents_flex .contents_right .wp-block-buttons .wp-block-button a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .top_contents_scholl .contents_flex .contents_right .wp-block-buttons .wp-block-button a:hover {
    opacity: 1;
  }
}
.top_contents_scholl .contents_flex .contents_right .wp-block-buttons.gc a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_scholl .contents_flex .contents_right .wp-block-buttons.gc a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_w.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .top_contents_scholl .contents_flex .contents_right .wp-block-buttons.gc a::after {
    right: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}
.top_contents_scholl .contents_flex .contents_right .wp-block-buttons.back a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_scholl .contents_flex .contents_right .wp-block-buttons.back a::after {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_w_left.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .top_contents_scholl .contents_flex .contents_right .wp-block-buttons.back a::after {
    left: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}
.top_contents_scholl .contents_flex .contents_right .wp-block-buttons.news a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_scholl .contents_flex .contents_right .wp-block-buttons.news a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_instagram_w.png);
  background-size: 20px;
  width: 20px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .top_contents_scholl .contents_flex .contents_right .wp-block-buttons.news a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 15px;
  }
}
.top_contents_scholl .contents_flex .contents_right .wp-block-buttons.call a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_scholl .contents_flex .contents_right .wp-block-buttons.call a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_call_w.png);
  background-size: 20px;
  width: 20px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .top_contents_scholl .contents_flex .contents_right .wp-block-buttons.call a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 15px;
  }
}
.top_contents_scholl .contents_flex .contents_right .wp-block-buttons.calendar a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_scholl .contents_flex .contents_right .wp-block-buttons.calendar a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_calendar_w.png);
  background-size: 20px;
  width: 20px;
  height: 21px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .top_contents_scholl .contents_flex .contents_right .wp-block-buttons.calendar a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 16px;
  }
}
.top_contents_scholl .contents_flex .contents_right .wp-block-buttons.line a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_scholl .contents_flex .contents_right .wp-block-buttons.line a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_line_w.png);
  background-size: 21px;
  width: 21px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .top_contents_scholl .contents_flex .contents_right .wp-block-buttons.line a::before {
    top: 2px;
    background-size: 16px;
    width: 16px;
    height: 15px;
  }
}
.top_contents_scholl .contents_flex .contents_right .wp-block-buttons.tab a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_scholl .contents_flex .contents_right .wp-block-buttons.tab a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_tab_w.png);
  background-size: 18px;
  width: 18px;
  height: 18px;
}
@media screen and (max-width: 830px) {
  .top_contents_scholl .contents_flex .contents_right .wp-block-buttons.tab a::after {
    right: 15px;
    background-size: 10px;
    width: 10px;
    height: 10px;
  }
}
.top_contents_scholl .contents_flex .contents_right .wp-block-buttons.blue a {
  background: #fff;
  color: #4ad4f0;
  border: solid 1px #4ad4f0;
}
.top_contents_scholl .contents_flex .contents_right .wp-block-buttons.blue a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_b.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .top_contents_scholl .contents_flex .contents_right .wp-block-buttons.blue a::after {
    right: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}

/*-------------店舗情報-------------*/
.top_contents_info {
  padding: 200px 20px;
  background: #fff;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (max-width: 1100px) {
  .top_contents_info {
    padding: 90px 20px;
  }
}
.top_contents_info .top_h1_en {
  margin: 0 0 80px 0;
}
@media screen and (max-width: 830px) {
  .top_contents_info .top_h1_en {
    margin: 0 0 50px 0;
  }
}
.top_contents_info .top_h1_en h1 {
  margin: 0 0 40px 0;
  text-align: center;
  font-family: "Lora", serif;
  font-weight: 100;
  line-height: 1.3;
  letter-spacing: 0.2em;
  font-size: 4.8rem;
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0);
  transition: 0.8s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}
.top_contents_info .top_h1_en h1.p1 {
  color: #4ad4f0;
}
.top_contents_info .top_h1_en h1.p2 {
  color: #fff;
}
.top_contents_info .top_h1_en h1.is-animated {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
@media screen and (max-width: 830px) {
  .top_contents_info .top_h1_en h1 {
    font-size: 3rem;
    margin: 0 0 10px 0;
  }
}
.top_contents_info .top_h1_en .jp_txt {
  font-family: "Klee One", cursive;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0;
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0);
  transition: 0.8s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}
.top_contents_info .top_h1_en .jp_txt.p1 {
  color: #d97d50;
}
.top_contents_info .top_h1_en .jp_txt.p2 {
  color: #fff;
}
.top_contents_info .top_h1_en .jp_txt.is-animated {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
@media screen and (max-width: 830px) {
  .top_contents_info .top_h1_en .jp_txt {
    font-size: 1.6rem;
  }
}
.top_contents_info table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.top_contents_info table tbody tr {
  display: block;
  padding: 40px 0;
  border-bottom: dotted 1px #aeaeae;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 830px) {
  .top_contents_info table tbody tr {
    transform: translate(0, 40px);
  }
}
.top_contents_info table tbody tr.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 830px) {
  .top_contents_info table tbody tr {
    padding: 20px 0;
  }
}
.top_contents_info table tbody tr.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
.top_contents_info table tbody tr:first-child {
  padding: 0 0 40px 0;
}
@media screen and (max-width: 830px) {
  .top_contents_info table tbody tr:first-child {
    padding: 0 0 20px 0;
  }
}
.top_contents_info table tbody tr td {
  font-size: 1.6rem;
  display: block;
  font-family: "Klee One", cursive;
}
@media screen and (max-width: 830px) {
  .top_contents_info table tbody tr td {
    font-size: 1.5rem;
  }
}
.top_contents_info table tbody tr td a {
  display: inline-block;
  text-decoration: none;
  color: #4ad4f0;
  position: relative;
  font-weight: 600;
}
.top_contents_info table tbody tr td a::after {
  position: absolute;
  bottom: -6px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #4ad4f0;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
@media screen and (max-width: 1100px) {
  .top_contents_info table tbody tr td a::after {
    position: static;
  }
}
.top_contents_info table tbody tr td a:hover::after {
  transform: scale(1, 1);
}
.top_contents_info table tbody tr td:first-child {
  font-weight: 600;
  margin: 0 0 10px 0;
  font-size: 1.8rem;
}
@media screen and (max-width: 830px) {
  .top_contents_info table tbody tr td:first-child {
    font-size: 1.6rem;
  }
}
.top_contents_info .top_access_contents {
  width: 100%;
  margin: 120px 0 0 0;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 830px) {
  .top_contents_info .top_access_contents {
    transform: translate(0, 40px);
  }
}
.top_contents_info .top_access_contents.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 830px) {
  .top_contents_info .top_access_contents {
    margin: 50px 0 0 0;
  }
}
.top_contents_info .top_access_contents h2 {
  font-size: 2.4rem;
  font-family: "Klee One", cursive;
  line-height: 1.7;
  text-align: center;
  color: #d97d50;
  padding: 0 0 20px 0;
  margin: 0 0 30px 0;
  border-bottom: solid 1px #d97d50;
}
@media screen and (max-width: 830px) {
  .top_contents_info .top_access_contents h2 {
    font-size: 1.8rem;
    padding: 0 0 15px 0;
    margin: 0 0 20px 0;
  }
}
.top_contents_info .top_access_contents .map img {
  width: 100%;
}

/*-------------ご予約-------------*/
.top_contents_reserve {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto 200px auto;
  background: #f8f8f8;
  padding: 140px 20px;
  box-sizing: border-box;
}
.top_contents_reserve .top_h1_en {
  margin: 0 0 80px 0;
}
@media screen and (max-width: 830px) {
  .top_contents_reserve .top_h1_en {
    margin: 0 0 50px 0;
  }
}
.top_contents_reserve .top_h1_en h1 {
  margin: 0 0 40px 0;
  text-align: center;
  font-family: "Lora", serif;
  font-weight: 100;
  line-height: 1.3;
  letter-spacing: 0.2em;
  font-size: 4.8rem;
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0);
  transition: 0.8s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}
.top_contents_reserve .top_h1_en h1.p1 {
  color: #4ad4f0;
}
.top_contents_reserve .top_h1_en h1.p2 {
  color: #fff;
}
.top_contents_reserve .top_h1_en h1.is-animated {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
@media screen and (max-width: 830px) {
  .top_contents_reserve .top_h1_en h1 {
    font-size: 3rem;
    margin: 0 0 10px 0;
  }
}
.top_contents_reserve .top_h1_en .jp_txt {
  font-family: "Klee One", cursive;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0;
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0);
  transition: 0.8s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}
.top_contents_reserve .top_h1_en .jp_txt.p1 {
  color: #d97d50;
}
.top_contents_reserve .top_h1_en .jp_txt.p2 {
  color: #fff;
}
.top_contents_reserve .top_h1_en .jp_txt.is-animated {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
@media screen and (max-width: 830px) {
  .top_contents_reserve .top_h1_en .jp_txt {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 830px) {
  .top_contents_reserve {
    padding: 90px 20px;
    margin: 0 auto;
  }
}
.top_contents_reserve p {
  font-size: 1.6rem;
  font-family: "Klee One", cursive;
  color: #333;
  line-height: 2.2;
  margin: 80px 0;
  text-align: center;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 830px) {
  .top_contents_reserve p {
    transform: translate(0, 40px);
  }
}
.top_contents_reserve p.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 830px) {
  .top_contents_reserve p {
    font-size: 1.5rem;
    margin: 50px 0;
  }
}
.top_contents_reserve p:last-child {
  margin: 0;
}
.top_contents_reserve .wp-block-buttons {
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
  margin: 0 0 30px 0;
}
@media screen and (max-width: 830px) {
  .top_contents_reserve .wp-block-buttons {
    transform: translate(0, 40px);
  }
}
.top_contents_reserve .wp-block-buttons.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
.top_contents_reserve .wp-block-buttons:last-child {
  margin: 0;
}
.top_contents_reserve .wp-block-buttons.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
.top_contents_reserve .wp-block-buttons .wp-block-button {
  display: block;
}
.top_contents_reserve .wp-block-buttons .wp-block-button a {
  padding: 20px;
  border-radius: 40px;
  display: block;
  max-width: 440px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  font-size: 1.8rem;
  transition: all 0.3s;
  box-sizing: border-box;
}
@media screen and (max-width: 830px) {
  .top_contents_reserve .wp-block-buttons .wp-block-button a {
    max-width: 330px;
    font-size: 1.5rem;
    padding: 15px;
  }
}
.top_contents_reserve .wp-block-buttons .wp-block-button a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .top_contents_reserve .wp-block-buttons .wp-block-button a:hover {
    opacity: 1;
  }
}
.top_contents_reserve .wp-block-buttons.gc a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_reserve .wp-block-buttons.gc a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_w.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .top_contents_reserve .wp-block-buttons.gc a::after {
    right: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}
.top_contents_reserve .wp-block-buttons.back a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_reserve .wp-block-buttons.back a::after {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_w_left.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .top_contents_reserve .wp-block-buttons.back a::after {
    left: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}
.top_contents_reserve .wp-block-buttons.news a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_reserve .wp-block-buttons.news a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_instagram_w.png);
  background-size: 20px;
  width: 20px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .top_contents_reserve .wp-block-buttons.news a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 15px;
  }
}
.top_contents_reserve .wp-block-buttons.call a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_reserve .wp-block-buttons.call a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_call_w.png);
  background-size: 20px;
  width: 20px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .top_contents_reserve .wp-block-buttons.call a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 15px;
  }
}
.top_contents_reserve .wp-block-buttons.calendar a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_reserve .wp-block-buttons.calendar a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_calendar_w.png);
  background-size: 20px;
  width: 20px;
  height: 21px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .top_contents_reserve .wp-block-buttons.calendar a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 16px;
  }
}
.top_contents_reserve .wp-block-buttons.line a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_reserve .wp-block-buttons.line a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_line_w.png);
  background-size: 21px;
  width: 21px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .top_contents_reserve .wp-block-buttons.line a::before {
    top: 2px;
    background-size: 16px;
    width: 16px;
    height: 15px;
  }
}
.top_contents_reserve .wp-block-buttons.tab a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.top_contents_reserve .wp-block-buttons.tab a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_tab_w.png);
  background-size: 18px;
  width: 18px;
  height: 18px;
}
@media screen and (max-width: 830px) {
  .top_contents_reserve .wp-block-buttons.tab a::after {
    right: 15px;
    background-size: 10px;
    width: 10px;
    height: 10px;
  }
}
.top_contents_reserve .wp-block-buttons.blue a {
  background: #fff;
  color: #4ad4f0;
  border: solid 1px #4ad4f0;
}
.top_contents_reserve .wp-block-buttons.blue a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_b.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .top_contents_reserve .wp-block-buttons.blue a::after {
    right: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}

/*-------------メニューページ-------------*/
/*-------------メニュー/予約-------------*/
.menu_archive {
  display: flex;
  padding: 0 20px;
  width: auto;
  margin: 30px auto 0 auto;
  max-width: 1720px;
  /*-------------サイドバー-------------*/
}
@media screen and (max-width: 1100px) {
  .menu_archive {
    display: block;
    padding: 0;
  }
}
@media screen and (max-width: 830px) {
  .menu_archive {
    margin: 20px auto 0 auto;
  }
}
.menu_archive .main_contents {
  flex: 1;
  background: #f8f8f8;
  padding: 30px;
  box-sizing: border-box;
  margin: 0 60px 0 0;
  /*-------------メニュー一覧-------------*/
  /*-------------ページネーション-------------*/
  /*-------------メニュー詳細-------------*/
}
@media screen and (max-width: 1100px) {
  .menu_archive .main_contents {
    padding: 20px;
    margin: 0 0 50px 0;
  }
}
.menu_archive .main_contents h1 {
  font-size: 2.4rem;
  font-family: "Klee One", cursive;
  line-height: 1.7;
  text-align: center;
  color: #d97d50;
  padding: 0 0 20px 0;
  margin: 30px 0;
  border-bottom: solid 1px #d97d50;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents h1 {
    font-size: 1.8rem;
    padding: 0 0 15px 0;
    margin: 20px 0;
  }
}
.menu_archive .main_contents ul {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0;
}
.menu_archive .main_contents ul::after {
  display: block;
  width: 31.76%;
  height: 0;
  content: "";
}
.menu_archive .main_contents ul li {
  list-style: none;
  width: 31.76%;
  margin: 0 0 30px 0;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
  border-radius: 8px;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents ul li {
    transform: translate(0, 40px);
  }
}
.menu_archive .main_contents ul li.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 1100px) {
  .menu_archive .main_contents ul li {
    width: 48.94%;
    margin: 0 0 20px 0;
  }
}
@media screen and (max-width: 540px) {
  .menu_archive .main_contents ul li {
    width: 100%;
  }
}
.menu_archive .main_contents ul li:nth-of-type(2) {
  transition-delay: 200ms;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents ul li:nth-of-type(2) {
    transition-delay: 0ms;
  }
}
.menu_archive .main_contents ul li:nth-of-type(3) {
  transition-delay: 400ms;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents ul li:nth-of-type(3) {
    transition-delay: 0ms;
  }
}
.menu_archive .main_contents ul li:nth-of-type(5) {
  transition-delay: 200ms;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents ul li:nth-of-type(5) {
    transition-delay: 0ms;
  }
}
.menu_archive .main_contents ul li:nth-of-type(6) {
  transition-delay: 400ms;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents ul li:nth-of-type(6) {
    transition-delay: 0ms;
  }
}
.menu_archive .main_contents ul li:nth-of-type(8) {
  transition-delay: 200ms;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents ul li:nth-of-type(8) {
    transition-delay: 0ms;
  }
}
.menu_archive .main_contents ul li:nth-of-type(9) {
  transition-delay: 400ms;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents ul li:nth-of-type(9) {
    transition-delay: 0ms;
  }
}
.menu_archive .main_contents ul li a {
  display: block;
  padding: 15px;
  box-sizing: border-box;
  width: 100%;
  background: #fff;
  position: relative;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s;
  height: 100%;
}
@media screen and (max-width: 1100px) {
  .menu_archive .main_contents ul li a {
    padding: 10px;
  }
}
.menu_archive .main_contents ul li a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .menu_archive .main_contents ul li a:hover {
    opacity: 1;
  }
}
.menu_archive .main_contents ul li a .new {
  position: absolute;
  top: 0;
  left: 0;
}
.menu_archive .main_contents ul li a .new img {
  display: block;
  width: 82px;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents ul li a .new img {
    width: 62px;
  }
}
.menu_archive .main_contents ul li a .thumbnail {
  height: 220px;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents ul li a .thumbnail {
    height: 180px;
  }
}
.menu_archive .main_contents ul li a .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 8px;
}
.menu_archive .main_contents ul li a .text {
  padding: 0 15px;
  margin: 40px 0 15px 0;
}
@media screen and (max-width: 1100px) {
  .menu_archive .main_contents ul li a .text {
    margin: 20px 0 10px 0;
    padding: 0 10px;
  }
}
.menu_archive .main_contents ul li a .text h2 {
  color: #d97d50;
  margin: 0 0 15px 0;
  padding: 0 0 20px 0;
  font-family: "Klee One", cursive;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.8;
  border-bottom: solid 1px #d97d50;
}
@media screen and (max-width: 1100px) {
  .menu_archive .main_contents ul li a .text h2 {
    font-size: 1.8rem;
  }
}
.menu_archive .main_contents ul li a .text .s_category ul {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu_archive .main_contents ul li a .text .s_category ul::after {
  content: none;
}
.menu_archive .main_contents ul li a .text .s_category ul li {
  display: block;
  list-style: none;
  width: 48.6%;
  background: #4ad4f0;
  padding: 8px;
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 30px;
  box-sizing: border-box;
  margin: 0 0 10px 0;
  opacity: 1;
  transform: none;
  transition: none;
}
@media screen and (max-width: 1100px) {
  .menu_archive .main_contents ul li a .text .s_category ul li {
    font-size: 1.2rem;
    padding: 5px;
  }
}
.menu_archive .main_contents ul li a .text .c_category ul {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu_archive .main_contents ul li a .text .c_category ul::after {
  content: none;
}
.menu_archive .main_contents ul li a .text .c_category ul li {
  display: block;
  list-style: none;
  width: 48.6%;
  background: #4ad4f0;
  padding: 8px;
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 30px;
  box-sizing: border-box;
  margin: 0 0 10px 0;
  opacity: 1;
  transform: none;
  transition: none;
}
@media screen and (max-width: 1100px) {
  .menu_archive .main_contents ul li a .text .c_category ul li {
    font-size: 1.2rem;
    padding: 5px;
  }
}
.menu_archive .main_contents ul li a .text .c_category ul li:nth-last-of-type(-n+2) {
  margin: 0;
}
.menu_archive .main_contents ul li a .text .price {
  margin: 30px 0 0 0;
  color: #4ad4f0;
  font-size: 2.4rem;
  font-family: "Lora", serif;
  font-style: italic;
}
@media screen and (max-width: 1100px) {
  .menu_archive .main_contents ul li a .text .price {
    font-size: 1.8rem;
    margin: 20px 0 0 0;
  }
}
.menu_archive .main_contents .m-pagenation {
  display: flex;
  margin: 0 auto;
  justify-content: center;
  margin: 70px 0;
}
@media screen and (max-width: 1100px) {
  .menu_archive .main_contents .m-pagenation {
    margin: 30px 0;
  }
}
.menu_archive .main_contents .m-pagenation .m-pagenation__prev {
  margin: 0 10px;
}
@media screen and (max-width: 1100px) {
  .menu_archive .main_contents .m-pagenation .m-pagenation__prev {
    margin: 0 5px;
  }
}
.menu_archive .main_contents .m-pagenation .m-pagenation__prev a {
  display: block;
  text-decoration: none;
  text-align: center;
  font-family: "Lora", serif;
  font-size: 2.4rem;
  padding: 8px 0;
  box-sizing: border-box;
  border-radius: 50%;
  background: #fff;
  color: #4ad4f0;
  border: solid 1px #4ad4f0;
  width: 52px;
  height: 52px;
  transition: all 0.3s;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .m-pagenation .m-pagenation__prev a {
    font-size: 1.8rem;
    width: 32px;
    height: 32px;
    padding: 2px 0;
  }
}
.menu_archive .main_contents .m-pagenation .m-pagenation__prev a:hover {
  background: #4ad4f0;
  color: #fff;
  transition: all 0.3s;
  opacity: 1;
}
@media screen and (max-width: 1100px) {
  .menu_archive .main_contents .m-pagenation .m-pagenation__prev a:hover {
    background: #fff;
    color: #4ad4f0;
  }
}
.menu_archive .main_contents .m-pagenation .m-pagenation__body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}
.menu_archive .main_contents .m-pagenation .m-pagenation__body::after {
  content: none;
}
.menu_archive .main_contents .m-pagenation .m-pagenation__body li {
  display: block;
  list-style: none;
  margin: 0 10px;
  width: auto;
  opacity: 1;
  transform: none;
  transition: none;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .m-pagenation .m-pagenation__body li {
    margin: 0 5px;
  }
}
.menu_archive .main_contents .m-pagenation .m-pagenation__body li.current {
  text-decoration: none;
  text-align: center;
  font-family: "Lora", serif;
  font-size: 2.4rem;
  padding: 8px 0;
  box-sizing: border-box;
  border-radius: 50%;
  background: #4ad4f0;
  color: #fff;
  border: solid 1px #4ad4f0;
  width: 52px;
  height: 52px;
  transition: all 0.3s;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .m-pagenation .m-pagenation__body li.current {
    font-size: 1.8rem;
    width: 32px;
    height: 32px;
    padding: 2px 0;
  }
}
.menu_archive .main_contents .m-pagenation .m-pagenation__body li.current:hover {
  background: #fff;
  color: #4ad4f0;
  transition: all 0.3s;
  opacity: 1;
}
@media screen and (max-width: 1100px) {
  .menu_archive .main_contents .m-pagenation .m-pagenation__body li.current:hover {
    background: #4ad4f0;
    color: #fff;
  }
}
.menu_archive .main_contents .m-pagenation .m-pagenation__body li a {
  display: block;
  text-decoration: none;
  text-align: center;
  font-family: "Lora", serif;
  font-size: 2.4rem;
  padding: 8px 0;
  box-sizing: border-box;
  border-radius: 50%;
  background: #fff;
  color: #4ad4f0;
  border: solid 1px #4ad4f0;
  width: 52px;
  height: 52px;
  transition: all 0.3s;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .m-pagenation .m-pagenation__body li a {
    font-size: 1.8rem;
    width: 32px;
    height: 32px;
    padding: 2px 0;
  }
}
.menu_archive .main_contents .m-pagenation .m-pagenation__body li a:hover {
  background: #4ad4f0;
  color: #fff;
  transition: all 0.3s;
  opacity: 1;
}
@media screen and (max-width: 1100px) {
  .menu_archive .main_contents .m-pagenation .m-pagenation__body li a:hover {
    background: #fff;
    color: #4ad4f0;
  }
}
.menu_archive .main_contents .m-pagenation .m-pagenation__next {
  margin: 0 10px;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .m-pagenation .m-pagenation__next {
    margin: 0 5px;
  }
}
.menu_archive .main_contents .m-pagenation .m-pagenation__next a {
  display: block;
  text-decoration: none;
  text-align: center;
  font-family: "Lora", serif;
  font-size: 2.4rem;
  padding: 8px 0;
  box-sizing: border-box;
  border-radius: 50%;
  background: #fff;
  color: #4ad4f0;
  border: solid 1px #4ad4f0;
  width: 52px;
  height: 52px;
  transition: all 0.3s;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .m-pagenation .m-pagenation__next a {
    font-size: 1.8rem;
    width: 32px;
    height: 32px;
    padding: 2px 0;
  }
}
.menu_archive .main_contents .m-pagenation .m-pagenation__next a:hover {
  background: #4ad4f0;
  color: #fff;
  transition: all 0.3s;
  opacity: 1;
}
@media screen and (max-width: 1100px) {
  .menu_archive .main_contents .m-pagenation .m-pagenation__next a:hover {
    background: #fff;
    color: #4ad4f0;
  }
}
.menu_archive .main_contents .menu_contetnts {
  max-width: 1170px;
  margin: 70px auto;
  width: 100%;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts {
    margin: 30px auto;
  }
}
.menu_archive .main_contents .menu_contetnts h1 {
  font-size: 2.8rem;
  font-family: "Klee One", cursive;
  line-height: 2;
  margin: 0 0 50px 0;
  padding: 0 0 30px 0;
  border-bottom: solid 1px #d97d50;
  color: #d97d50;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts h1 {
    font-size: 2rem;
    padding: 0 0 15px 0;
    margin: 0 0 30px 0;
  }
}
.menu_archive .main_contents .menu_contetnts .thumbnail {
  margin: 0 0 50px 0;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .thumbnail {
    margin: 0 0 30px 0;
  }
}
.menu_archive .main_contents .menu_contetnts .thumbnail img {
  max-width: 960px;
  width: 100%;
  height: 100%;
  display: block;
  margin: 0 auto;
  border-radius: 5px;
}
.menu_archive .main_contents .menu_contetnts .condition_menu {
  margin: 0 0 30px 0;
  background: #fff;
  width: 100%;
  padding: 50px;
  box-sizing: border-box;
  padding: 50px 50px 35px 20px;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .condition_menu {
    padding: 30px 20px;
    margin: 0 0 20px 0;
  }
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .condition_menu {
    padding: 30px 20px 15px 20px;
  }
}
.menu_archive .main_contents .menu_contetnts .condition_menu h2 {
  font-size: 2.4rem;
  font-family: "Klee One", cursive;
  line-height: 1.7;
  text-align: center;
  color: #d97d50;
  padding: 0 0 20px 0;
  margin: 0 0 30px 0;
  border-bottom: solid 1px #d97d50;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .condition_menu h2 {
    font-size: 1.8rem;
    padding: 0 0 15px 0;
    margin: 0 0 20px 0;
  }
}
.menu_archive .main_contents .menu_contetnts .condition_menu ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.menu_archive .main_contents .menu_contetnts .condition_menu ul::after {
  content: none;
}
.menu_archive .main_contents .menu_contetnts .condition_menu ul li {
  list-style: none;
  margin: 0 15px 15px 15px;
  width: auto;
  opacity: 1;
  transform: none;
  transition: none;
}
.menu_archive .main_contents .menu_contetnts .condition_menu ul li a {
  display: block;
  color: #333;
  font-size: 1.6rem;
  position: relative;
  text-decoration: none;
  position: relative;
  transition: all 0.3s;
  box-sizing: border-box;
  padding: 14px 0 14px 72px;
  position: relative;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .condition_menu ul li a {
    font-size: 1.5rem;
    padding: 5px 0 5px 42px;
  }
}
.menu_archive .main_contents .menu_contetnts .condition_menu ul li a::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 52px;
  height: 52px;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .condition_menu ul li a::before {
    width: 32px;
    height: 32px;
  }
}
.menu_archive .main_contents .menu_contetnts .condition_menu ul li a:hover {
  opacity: 0.5;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .menu_archive .main_contents .menu_contetnts .condition_menu ul li a:hover {
    opacity: 1;
  }
}
.menu_archive .main_contents .menu_contetnts .condition_menu ul li a[href*="/shoulder"]::before {
  background: url(../../images/c_menu_01.png);
  background-size: 52px;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .condition_menu ul li a[href*="/shoulder"]::before {
    background-size: 32px;
  }
}
.menu_archive .main_contents .menu_contetnts .condition_menu ul li a[href*="/pregnancy"]::before {
  background: url(../../images/c_menu_02.png);
  background-size: 52px;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .condition_menu ul li a[href*="/pregnancy"]::before {
    background-size: 32px;
  }
}
.menu_archive .main_contents .menu_contetnts .condition_menu ul li a[href*="/postpartum"]::before {
  background: url(../../images/c_menu_03.png);
  background-size: 52px;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .condition_menu ul li a[href*="/postpartum"]::before {
    background-size: 32px;
  }
}
.menu_archive .main_contents .menu_contetnts .condition_menu ul li a[href*="/waist"]::before {
  background: url(../../images/c_menu_04.png);
  background-size: 52px;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .condition_menu ul li a[href*="/waist"]::before {
    background-size: 32px;
  }
}
.menu_archive .main_contents .menu_contetnts .condition_menu ul li a[href*="/warm"]::before {
  background: url(../../images/c_menu_05.png);
  background-size: 52px;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .condition_menu ul li a[href*="/warm"]::before {
    background-size: 32px;
  }
}
.menu_archive .main_contents .menu_contetnts .condition_menu ul li a[href*="/upset"]::before {
  background: url(../../images/c_menu_06.png);
  background-size: 52px;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .condition_menu ul li a[href*="/upset"]::before {
    background-size: 32px;
  }
}
.menu_archive .main_contents .menu_contetnts .condition_menu ul li a[href*="/head"]::before {
  background: url(../../images/c_menu_07.png);
  background-size: 52px;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .condition_menu ul li a[href*="/head"]::before {
    background-size: 32px;
  }
}
.menu_archive .main_contents .menu_contetnts .condition_menu ul li a[href*="/eye"]::before {
  background: url(../../images/c_menu_08.png);
  background-size: 52px;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .condition_menu ul li a[href*="/eye"]::before {
    background-size: 32px;
  }
}
.menu_archive .main_contents .menu_contetnts .condition_menu ul li a[href*="/detox"]::before {
  background: url(../../images/c_menu_09.png);
  background-size: 52px;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .condition_menu ul li a[href*="/detox"]::before {
    background-size: 32px;
  }
}
.menu_archive .main_contents .menu_contetnts .time_price {
  margin: 0 0 30px 0;
  background: #fff;
  width: 100%;
  padding: 50px;
  box-sizing: border-box;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .time_price {
    padding: 30px 20px;
    margin: 0 0 20px 0;
  }
}
.menu_archive .main_contents .menu_contetnts .time_price h2 {
  font-size: 2.4rem;
  font-family: "Klee One", cursive;
  line-height: 1.7;
  text-align: center;
  color: #d97d50;
  padding: 0 0 20px 0;
  margin: 0 0 30px 0;
  border-bottom: solid 1px #d97d50;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .time_price h2 {
    font-size: 1.8rem;
    padding: 0 0 15px 0;
    margin: 0 0 20px 0;
  }
}
.menu_archive .main_contents .menu_contetnts .time_price table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.menu_archive .main_contents .menu_contetnts .time_price table tbody tr {
  display: block;
  padding: 30px 0;
  border-bottom: dotted 1px #aeaeae;
}
.menu_archive .main_contents .menu_contetnts .time_price table tbody tr:first-child {
  padding: 0 0 30px 0;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .time_price table tbody tr:first-child {
    padding: 0 0 20px 0;
  }
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .time_price table tbody tr {
    padding: 20px 0;
  }
}
.menu_archive .main_contents .menu_contetnts .time_price table tbody tr td {
  font-size: 1.6rem;
  font-family: "Klee One", cursive;
  display: inline-block;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .time_price table tbody tr td {
    font-size: 1.5rem;
    display: block;
  }
}
.menu_archive .main_contents .menu_contetnts .time_price table tbody tr td:first-child {
  width: 20%;
  font-weight: 600;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .time_price table tbody tr td:first-child {
    width: 100%;
    margin: 0 0 10px 0;
  }
}
.menu_archive .main_contents .menu_contetnts .contents_flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.menu_archive .main_contents .menu_contetnts .contents_flex .treatment {
  margin: 0 0 30px 0;
  background: #fff;
  width: 100%;
  padding: 50px;
  box-sizing: border-box;
  padding: 50px 50px 40px 50px;
  width: 48.72%;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .contents_flex .treatment {
    padding: 30px 20px;
    margin: 0 0 20px 0;
  }
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .contents_flex .treatment {
    padding: 30px 20px 20px 20px;
  }
}
.menu_archive .main_contents .menu_contetnts .contents_flex .treatment h2 {
  font-size: 2.4rem;
  font-family: "Klee One", cursive;
  line-height: 1.7;
  text-align: center;
  color: #d97d50;
  padding: 0 0 20px 0;
  margin: 0 0 30px 0;
  border-bottom: solid 1px #d97d50;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .contents_flex .treatment h2 {
    font-size: 1.8rem;
    padding: 0 0 15px 0;
    margin: 0 0 20px 0;
  }
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .contents_flex .treatment {
    width: 100%;
  }
}
.menu_archive .main_contents .menu_contetnts .contents_flex .treatment ul {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu_archive .main_contents .menu_contetnts .contents_flex .treatment ul::after {
  content: "";
  display: block;
  height: 0;
  width: 31.99%;
}
.menu_archive .main_contents .menu_contetnts .contents_flex .treatment ul li {
  display: block;
  list-style: none;
  width: 31.99%;
  background: #4ad4f0;
  padding: 10px;
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 30px;
  box-sizing: border-box;
  margin: 0 0 10px 0;
  opacity: 1;
  transform: none;
  transition: none;
}
@media screen and (max-width: 1100px) {
  .menu_archive .main_contents .menu_contetnts .contents_flex .treatment ul li {
    font-size: 1.2rem;
    padding: 5px;
  }
}
.menu_archive .main_contents .menu_contetnts .contents_flex .recommend {
  margin: 0 0 30px 0;
  background: #fff;
  width: 100%;
  padding: 50px;
  box-sizing: border-box;
  padding: 50px 50px 40px 50px;
  width: 48.72%;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .contents_flex .recommend {
    padding: 30px 20px;
    margin: 0 0 20px 0;
  }
}
.menu_archive .main_contents .menu_contetnts .contents_flex .recommend h2 {
  font-size: 2.4rem;
  font-family: "Klee One", cursive;
  line-height: 1.7;
  text-align: center;
  color: #d97d50;
  padding: 0 0 20px 0;
  margin: 0 0 30px 0;
  border-bottom: solid 1px #d97d50;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .contents_flex .recommend h2 {
    font-size: 1.8rem;
    padding: 0 0 15px 0;
    margin: 0 0 20px 0;
  }
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .contents_flex .recommend {
    width: 100%;
  }
}
.menu_archive .main_contents .menu_contetnts .contents_flex .recommend ul {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu_archive .main_contents .menu_contetnts .contents_flex .recommend ul::after {
  content: "";
  display: block;
  height: 0;
  width: 31.99%;
}
.menu_archive .main_contents .menu_contetnts .contents_flex .recommend ul li {
  display: block;
  list-style: none;
  width: 31.99%;
  background: #4ad4f0;
  padding: 10px;
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 30px;
  box-sizing: border-box;
  margin: 0 0 10px 0;
  opacity: 1;
  transform: none;
  transition: none;
}
@media screen and (max-width: 1100px) {
  .menu_archive .main_contents .menu_contetnts .contents_flex .recommend ul li {
    font-size: 1.2rem;
    padding: 5px;
  }
}
.menu_archive .main_contents .menu_contetnts .wp-block-buttons .wp-block-button {
  display: block;
}
.menu_archive .main_contents .menu_contetnts .wp-block-buttons .wp-block-button a {
  padding: 20px;
  border-radius: 40px;
  display: block;
  max-width: 440px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  font-size: 1.8rem;
  transition: all 0.3s;
  box-sizing: border-box;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .wp-block-buttons .wp-block-button a {
    max-width: 330px;
    font-size: 1.5rem;
    padding: 15px;
  }
}
.menu_archive .main_contents .menu_contetnts .wp-block-buttons .wp-block-button a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .menu_archive .main_contents .menu_contetnts .wp-block-buttons .wp-block-button a:hover {
    opacity: 1;
  }
}
.menu_archive .main_contents .menu_contetnts .wp-block-buttons.gc a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.menu_archive .main_contents .menu_contetnts .wp-block-buttons.gc a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_w.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .wp-block-buttons.gc a::after {
    right: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}
.menu_archive .main_contents .menu_contetnts .wp-block-buttons.back a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.menu_archive .main_contents .menu_contetnts .wp-block-buttons.back a::after {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_w_left.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .wp-block-buttons.back a::after {
    left: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}
.menu_archive .main_contents .menu_contetnts .wp-block-buttons.news a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.menu_archive .main_contents .menu_contetnts .wp-block-buttons.news a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_instagram_w.png);
  background-size: 20px;
  width: 20px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .wp-block-buttons.news a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 15px;
  }
}
.menu_archive .main_contents .menu_contetnts .wp-block-buttons.call a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.menu_archive .main_contents .menu_contetnts .wp-block-buttons.call a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_call_w.png);
  background-size: 20px;
  width: 20px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .wp-block-buttons.call a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 15px;
  }
}
.menu_archive .main_contents .menu_contetnts .wp-block-buttons.calendar a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.menu_archive .main_contents .menu_contetnts .wp-block-buttons.calendar a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_calendar_w.png);
  background-size: 20px;
  width: 20px;
  height: 21px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .wp-block-buttons.calendar a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 16px;
  }
}
.menu_archive .main_contents .menu_contetnts .wp-block-buttons.line a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.menu_archive .main_contents .menu_contetnts .wp-block-buttons.line a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_line_w.png);
  background-size: 21px;
  width: 21px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .wp-block-buttons.line a::before {
    top: 2px;
    background-size: 16px;
    width: 16px;
    height: 15px;
  }
}
.menu_archive .main_contents .menu_contetnts .wp-block-buttons.tab a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.menu_archive .main_contents .menu_contetnts .wp-block-buttons.tab a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_tab_w.png);
  background-size: 18px;
  width: 18px;
  height: 18px;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .wp-block-buttons.tab a::after {
    right: 15px;
    background-size: 10px;
    width: 10px;
    height: 10px;
  }
}
.menu_archive .main_contents .menu_contetnts .wp-block-buttons.blue a {
  background: #fff;
  color: #4ad4f0;
  border: solid 1px #4ad4f0;
}
.menu_archive .main_contents .menu_contetnts .wp-block-buttons.blue a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_b.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .wp-block-buttons.blue a::after {
    right: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}
.menu_archive .main_contents .menu_contetnts .menu_about {
  margin: 140px 0;
}
.menu_archive .main_contents .menu_contetnts .menu_about h2 {
  font-size: 2.4rem;
  font-family: "Klee One", cursive;
  line-height: 1.7;
  text-align: center;
  color: #d97d50;
  padding: 0 0 20px 0;
  margin: 0 0 30px 0;
  border-bottom: solid 1px #d97d50;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .menu_about h2 {
    font-size: 1.8rem;
    padding: 0 0 15px 0;
    margin: 0 0 20px 0;
  }
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .menu_about {
    margin: 50px 0;
  }
}
.menu_archive .main_contents .menu_contetnts .menu_about p {
  font-size: 1.8rem;
  font-family: "Klee One", cursive;
  font-weight: 600;
  color: #333;
  line-height: 2.2;
  margin: 60px 0 80px 0;
}
.menu_archive .main_contents .menu_contetnts .menu_about p span {
  color: #f9301d;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .menu_about p {
    font-size: 1.6rem;
    margin: 20px 0;
  }
}
.menu_archive .main_contents .menu_contetnts .menu_about .img_list {
  display: flex;
  justify-content: space-between;
  margin: 70px 0 0 0;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .menu_about .img_list {
    margin: 20px 0 0 0;
  }
}
.menu_archive .main_contents .menu_contetnts .menu_about .img_list::after {
  content: none;
}
.menu_archive .main_contents .menu_contetnts .menu_about .img_list li {
  opacity: 1;
  transform: none;
  transition: none;
  width: 49.59%;
  margin: 0 0 10px 0;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .menu_about .img_list li {
    width: 48.59%;
  }
}
.menu_archive .main_contents .menu_contetnts .menu_about .img_list li:nth-last-of-type(-n+2) {
  margin: 0;
}
.menu_archive .main_contents .menu_contetnts .menu_about .img_list li img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 5px;
}
.menu_archive .main_contents .menu_contetnts .menu_flow {
  margin: 140px 0;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .menu_flow {
    margin: 50px 0;
  }
}
.menu_archive .main_contents .menu_contetnts .menu_flow h2 {
  font-size: 2.4rem;
  font-family: "Klee One", cursive;
  line-height: 1.7;
  text-align: center;
  color: #d97d50;
  padding: 0 0 20px 0;
  margin: 0 0 30px 0;
  border-bottom: solid 1px #d97d50;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .menu_flow h2 {
    font-size: 1.8rem;
    padding: 0 0 15px 0;
    margin: 0 0 20px 0;
  }
}
.menu_archive .main_contents .menu_contetnts .menu_flow .flow_contents h3 {
  padding: 25px;
  background: #4ad4f0;
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .menu_flow .flow_contents h3 {
    font-size: 1.6rem;
    padding: 15px;
  }
}
.menu_archive .main_contents .menu_contetnts .menu_flow .flow_contents p {
  margin: 0;
  padding: 50px 100px;
  background: #fff;
  font-size: 1.6rem;
  font-family: "Klee One", cursive;
  color: #333;
  line-height: 2.2;
  position: relative;
}
.menu_archive .main_contents .menu_contetnts .menu_flow .flow_contents p:last-child::after {
  position: static;
  content: none;
}
.menu_archive .main_contents .menu_contetnts .menu_flow .flow_contents p::after {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  background: url(../../images/flow_triangle.png);
  background-size: 40px;
  width: 40px;
  height: 14px;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .menu_flow .flow_contents p::after {
    bottom: -10px;
    background-size: 30px;
    width: 30px;
    height: 10px;
  }
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .menu_flow .flow_contents p {
    font-size: 1.5rem;
    padding: 30px 20px;
  }
}
.menu_archive .main_contents .menu_contetnts .menu_caution h2 {
  font-size: 2.4rem;
  font-family: "Klee One", cursive;
  line-height: 1.7;
  text-align: center;
  color: #d97d50;
  padding: 0 0 20px 0;
  margin: 0 0 30px 0;
  border-bottom: solid 1px #d97d50;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .menu_caution h2 {
    font-size: 1.8rem;
    padding: 0 0 15px 0;
    margin: 0 0 20px 0;
  }
}
.menu_archive .main_contents .menu_contetnts .menu_caution p {
  font-size: 1.6rem;
  font-family: "Klee One", cursive;
  color: #333;
  line-height: 2.2;
  margin: 60px 0 80px 0;
}
@media screen and (max-width: 830px) {
  .menu_archive .main_contents .menu_contetnts .menu_caution p {
    font-size: 1.5rem;
    margin: 20px 0;
  }
}
.menu_archive .sidebar {
  max-width: 240px;
  width: 100%;
  margin: 30px 0 0 0;
}
@media screen and (max-width: 1100px) {
  .menu_archive .sidebar {
    max-width: 100%;
    margin: 0;
    padding: 0 20px;
    width: auto;
  }
}
.menu_archive .sidebar aside {
  margin: 0 0 60px 0;
}
@media screen and (max-width: 830px) {
  .menu_archive .sidebar aside {
    margin: 0 0 30px 0;
  }
}
.menu_archive .sidebar aside:last-child {
  margin: 0;
}
.menu_archive .sidebar aside h2 {
  color: #d97d50;
  font-family: "Klee One", cursive;
  font-size: 2rem;
  border-bottom: solid 1px #d97d50;
  margin: 0 0 20px 0;
  padding: 0 0 20px 0;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
  transition-delay: 300ms;
}
@media screen and (max-width: 830px) {
  .menu_archive .sidebar aside h2 {
    transform: translate(0, 40px);
  }
}
.menu_archive .sidebar aside h2.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 830px) {
  .menu_archive .sidebar aside h2 {
    font-size: 1.8rem;
    padding: 0 0 15px 0;
  }
}
.menu_archive .sidebar aside ul {
  margin: 0;
  padding: 0;
}
.menu_archive .sidebar aside ul li {
  list-style: none;
  margin: 0 0 20px 0;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
  transition-delay: 300ms;
}
@media screen and (max-width: 830px) {
  .menu_archive .sidebar aside ul li {
    transform: translate(0, 40px);
  }
}
.menu_archive .sidebar aside ul li.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
.menu_archive .sidebar aside ul li:last-child {
  margin: 0;
}
.menu_archive .sidebar aside ul li a {
  display: block;
  color: #333;
  font-size: 1.6rem;
  position: relative;
  text-decoration: none;
  position: relative;
  transition: all 0.3s;
  box-sizing: border-box;
  padding: 14px 0 14px 72px;
  position: relative;
}
@media screen and (max-width: 830px) {
  .menu_archive .sidebar aside ul li a {
    font-size: 1.5rem;
    padding: 5px 0 5px 42px;
  }
}
.menu_archive .sidebar aside ul li a::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 52px;
  height: 52px;
}
@media screen and (max-width: 830px) {
  .menu_archive .sidebar aside ul li a::before {
    width: 32px;
    height: 32px;
  }
}
.menu_archive .sidebar aside ul li a:hover {
  opacity: 0.5;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .menu_archive .sidebar aside ul li a:hover {
    opacity: 1;
  }
}
.menu_archive .sidebar aside ul li a[href*="/thai_m"]::before {
  background: url(../../images/s_menu_01.png);
  background-size: 52px;
}
@media screen and (max-width: 830px) {
  .menu_archive .sidebar aside ul li a[href*="/thai_m"]::before {
    background-size: 32px;
  }
}
.menu_archive .sidebar aside ul li a[href*="/chinazan"]::before {
  background: url(../../images/s_menu_02.png);
  background-size: 52px;
}
@media screen and (max-width: 830px) {
  .menu_archive .sidebar aside ul li a[href*="/chinazan"]::before {
    background-size: 32px;
  }
}
.menu_archive .sidebar aside ul li a[href*="/oil"]::before {
  background: url(../../images/s_menu_03.png);
  background-size: 52px;
}
@media screen and (max-width: 830px) {
  .menu_archive .sidebar aside ul li a[href*="/oil"]::before {
    background-size: 32px;
  }
}
.menu_archive .sidebar aside ul li a[href*="/esalen"]::before {
  background: url(../../images/s_menu_04.png);
  background-size: 52px;
}
@media screen and (max-width: 830px) {
  .menu_archive .sidebar aside ul li a[href*="/esalen"]::before {
    background-size: 32px;
  }
}
.menu_archive .sidebar aside ul li a[href*="/talksen"]::before {
  background: url(../../images/s_menu_05.png);
  background-size: 52px;
}
@media screen and (max-width: 830px) {
  .menu_archive .sidebar aside ul li a[href*="/talksen"]::before {
    background-size: 32px;
  }
}
.menu_archive .sidebar aside ul li a[href*="/foot_m"]::before {
  background: url(../../images/s_menu_06.png);
  background-size: 52px;
}
@media screen and (max-width: 830px) {
  .menu_archive .sidebar aside ul li a[href*="/foot_m"]::before {
    background-size: 32px;
  }
}
.menu_archive .sidebar aside ul li a[href*="/other_m"]::before {
  background: url(../../images/s_menu_07.png);
  background-size: 52px;
}
@media screen and (max-width: 830px) {
  .menu_archive .sidebar aside ul li a[href*="/other_m"]::before {
    background-size: 32px;
  }
}
.menu_archive .sidebar aside ul li a[href*="/shoulder"]::before {
  background: url(../../images/c_menu_01.png);
  background-size: 52px;
}
@media screen and (max-width: 830px) {
  .menu_archive .sidebar aside ul li a[href*="/shoulder"]::before {
    background-size: 32px;
  }
}
.menu_archive .sidebar aside ul li a[href*="/pregnancy"]::before {
  background: url(../../images/c_menu_02.png);
  background-size: 52px;
}
@media screen and (max-width: 830px) {
  .menu_archive .sidebar aside ul li a[href*="/pregnancy"]::before {
    background-size: 32px;
  }
}
.menu_archive .sidebar aside ul li a[href*="/postpartum"]::before {
  background: url(../../images/c_menu_03.png);
  background-size: 52px;
}
@media screen and (max-width: 830px) {
  .menu_archive .sidebar aside ul li a[href*="/postpartum"]::before {
    background-size: 32px;
  }
}
.menu_archive .sidebar aside ul li a[href*="/waist"]::before {
  background: url(../../images/c_menu_04.png);
  background-size: 52px;
}
@media screen and (max-width: 830px) {
  .menu_archive .sidebar aside ul li a[href*="/waist"]::before {
    background-size: 32px;
  }
}
.menu_archive .sidebar aside ul li a[href*="/warm"]::before {
  background: url(../../images/c_menu_05.png);
  background-size: 52px;
}
@media screen and (max-width: 830px) {
  .menu_archive .sidebar aside ul li a[href*="/warm"]::before {
    background-size: 32px;
  }
}
.menu_archive .sidebar aside ul li a[href*="/upset"]::before {
  background: url(../../images/c_menu_06.png);
  background-size: 52px;
}
@media screen and (max-width: 830px) {
  .menu_archive .sidebar aside ul li a[href*="/upset"]::before {
    background-size: 32px;
  }
}
.menu_archive .sidebar aside ul li a[href*="/head"]::before {
  background: url(../../images/c_menu_07.png);
  background-size: 52px;
}
@media screen and (max-width: 830px) {
  .menu_archive .sidebar aside ul li a[href*="/head"]::before {
    background-size: 32px;
  }
}
.menu_archive .sidebar aside ul li a[href*="/eye"]::before {
  background: url(../../images/c_menu_08.png);
  background-size: 52px;
}
@media screen and (max-width: 830px) {
  .menu_archive .sidebar aside ul li a[href*="/eye"]::before {
    background-size: 32px;
  }
}
.menu_archive .sidebar aside ul li a[href*="/detox"]::before {
  background: url(../../images/c_menu_09.png);
  background-size: 52px;
}
@media screen and (max-width: 830px) {
  .menu_archive .sidebar aside ul li a[href*="/detox"]::before {
    background-size: 32px;
  }
}

/*-------------他のメニュー一覧-------------*/
.menu_other {
  margin: 200px auto 0 auto;
  padding: 0 20px;
  max-width: 1200px;
  width: auto;
}
@media screen and (max-width: 830px) {
  .menu_other {
    margin: 90px auto 0 auto;
  }
}
.menu_other .top_h1_en {
  margin: 0 0 80px 0;
}
@media screen and (max-width: 830px) {
  .menu_other .top_h1_en {
    margin: 0 0 50px 0;
  }
}
.menu_other .top_h1_en h1 {
  margin: 0 0 40px 0;
  text-align: center;
  font-family: "Lora", serif;
  font-weight: 100;
  line-height: 1.3;
  letter-spacing: 0.2em;
  font-size: 4.8rem;
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0);
  transition: 0.8s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}
.menu_other .top_h1_en h1.p1 {
  color: #4ad4f0;
}
.menu_other .top_h1_en h1.p2 {
  color: #fff;
}
.menu_other .top_h1_en h1.is-animated {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
@media screen and (max-width: 830px) {
  .menu_other .top_h1_en h1 {
    font-size: 3rem;
    margin: 0 0 10px 0;
  }
}
.menu_other .top_h1_en .jp_txt {
  font-family: "Klee One", cursive;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0;
  -webkit-clip-path: inset(100% 0 0 0);
          clip-path: inset(100% 0 0 0);
  transition: 0.8s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
}
.menu_other .top_h1_en .jp_txt.p1 {
  color: #d97d50;
}
.menu_other .top_h1_en .jp_txt.p2 {
  color: #fff;
}
.menu_other .top_h1_en .jp_txt.is-animated {
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}
@media screen and (max-width: 830px) {
  .menu_other .top_h1_en .jp_txt {
    font-size: 1.6rem;
  }
}
.menu_other ul {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 0 80px 0;
}
@media screen and (max-width: 830px) {
  .menu_other ul {
    margin: 0;
  }
}
.menu_other ul::after {
  display: block;
  width: 31.76%;
  height: 0;
  content: "";
}
.menu_other ul li {
  list-style: none;
  width: 31.76%;
  margin: 0 0 30px 0;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
  border-radius: 8px;
}
@media screen and (max-width: 830px) {
  .menu_other ul li {
    transform: translate(0, 40px);
  }
}
.menu_other ul li.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 1100px) {
  .menu_other ul li {
    width: 48.94%;
    margin: 0 0 20px 0;
  }
}
@media screen and (max-width: 540px) {
  .menu_other ul li {
    width: 100%;
  }
}
.menu_other ul li:nth-of-type(2) {
  transition-delay: 200ms;
}
@media screen and (max-width: 830px) {
  .menu_other ul li:nth-of-type(2) {
    transition-delay: 0ms;
  }
}
.menu_other ul li:nth-of-type(3) {
  transition-delay: 400ms;
}
@media screen and (max-width: 830px) {
  .menu_other ul li:nth-of-type(3) {
    transition-delay: 0ms;
  }
}
.menu_other ul li:nth-of-type(5) {
  transition-delay: 200ms;
}
@media screen and (max-width: 830px) {
  .menu_other ul li:nth-of-type(5) {
    transition-delay: 0ms;
  }
}
.menu_other ul li:nth-of-type(6) {
  transition-delay: 400ms;
}
@media screen and (max-width: 830px) {
  .menu_other ul li:nth-of-type(6) {
    transition-delay: 0ms;
  }
}
.menu_other ul li a {
  display: block;
  padding: 15px;
  box-sizing: border-box;
  width: 100%;
  background: #fff;
  position: relative;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s;
  height: 100%;
  border: solid 1px #d1d1d1;
}
@media screen and (max-width: 1100px) {
  .menu_other ul li a {
    padding: 10px;
  }
}
.menu_other ul li a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .menu_other ul li a:hover {
    opacity: 1;
  }
}
.menu_other ul li a .new {
  position: absolute;
  top: 0;
  left: 0;
}
.menu_other ul li a .new img {
  display: block;
  width: 82px;
}
@media screen and (max-width: 830px) {
  .menu_other ul li a .new img {
    width: 62px;
  }
}
.menu_other ul li a .thumbnail {
  height: 220px;
}
@media screen and (max-width: 830px) {
  .menu_other ul li a .thumbnail {
    height: 180px;
  }
}
.menu_other ul li a .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 8px;
}
.menu_other ul li a .text {
  padding: 0 15px;
  margin: 40px 0 15px 0;
}
@media screen and (max-width: 1100px) {
  .menu_other ul li a .text {
    margin: 20px 0 10px 0;
    padding: 0 10px;
  }
}
.menu_other ul li a .text h2 {
  color: #d97d50;
  margin: 0 0 15px 0;
  padding: 0 0 20px 0;
  font-family: "Klee One", cursive;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.8;
  border-bottom: solid 1px #d97d50;
}
@media screen and (max-width: 1100px) {
  .menu_other ul li a .text h2 {
    font-size: 1.8rem;
  }
}
.menu_other ul li a .text .s_category ul {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu_other ul li a .text .s_category ul::after {
  content: none;
}
.menu_other ul li a .text .s_category ul li {
  display: block;
  list-style: none;
  width: 48.6%;
  background: #4ad4f0;
  padding: 8px;
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 30px;
  box-sizing: border-box;
  margin: 0 0 10px 0;
  opacity: 1;
  transform: none;
  transition: none;
  border: none;
}
@media screen and (max-width: 1100px) {
  .menu_other ul li a .text .s_category ul li {
    font-size: 1.2rem;
    padding: 5px;
  }
}
.menu_other ul li a .text .c_category ul {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu_other ul li a .text .c_category ul::after {
  content: none;
}
.menu_other ul li a .text .c_category ul li {
  display: block;
  list-style: none;
  width: 48.6%;
  background: #4ad4f0;
  padding: 8px;
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 30px;
  box-sizing: border-box;
  margin: 0 0 10px 0;
  opacity: 1;
  transform: none;
  transition: none;
  border: none;
}
@media screen and (max-width: 1100px) {
  .menu_other ul li a .text .c_category ul li {
    font-size: 1.2rem;
    padding: 5px;
  }
}
.menu_other ul li a .text .c_category ul li:nth-last-of-type(-n+2) {
  margin: 0;
}
.menu_other ul li a .text .price {
  margin: 30px 0 0 0;
  color: #4ad4f0;
  font-size: 2.4rem;
  font-family: "Lora", serif;
  font-style: italic;
}
@media screen and (max-width: 1100px) {
  .menu_other ul li a .text .price {
    font-size: 1.8rem;
    margin: 20px 0 0 0;
  }
}
.menu_other .wp-block-buttons {
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 830px) {
  .menu_other .wp-block-buttons {
    transform: translate(0, 40px);
  }
}
.menu_other .wp-block-buttons.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
.menu_other .wp-block-buttons .wp-block-button {
  display: block;
}
.menu_other .wp-block-buttons .wp-block-button a {
  padding: 20px;
  border-radius: 40px;
  display: block;
  max-width: 440px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  font-size: 1.8rem;
  transition: all 0.3s;
  box-sizing: border-box;
}
@media screen and (max-width: 830px) {
  .menu_other .wp-block-buttons .wp-block-button a {
    max-width: 330px;
    font-size: 1.5rem;
    padding: 15px;
  }
}
.menu_other .wp-block-buttons .wp-block-button a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .menu_other .wp-block-buttons .wp-block-button a:hover {
    opacity: 1;
  }
}
.menu_other .wp-block-buttons.gc a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.menu_other .wp-block-buttons.gc a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_w.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .menu_other .wp-block-buttons.gc a::after {
    right: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}
.menu_other .wp-block-buttons.back a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.menu_other .wp-block-buttons.back a::after {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_w_left.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .menu_other .wp-block-buttons.back a::after {
    left: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}
.menu_other .wp-block-buttons.news a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.menu_other .wp-block-buttons.news a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_instagram_w.png);
  background-size: 20px;
  width: 20px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .menu_other .wp-block-buttons.news a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 15px;
  }
}
.menu_other .wp-block-buttons.call a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.menu_other .wp-block-buttons.call a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_call_w.png);
  background-size: 20px;
  width: 20px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .menu_other .wp-block-buttons.call a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 15px;
  }
}
.menu_other .wp-block-buttons.calendar a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.menu_other .wp-block-buttons.calendar a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_calendar_w.png);
  background-size: 20px;
  width: 20px;
  height: 21px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .menu_other .wp-block-buttons.calendar a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 16px;
  }
}
.menu_other .wp-block-buttons.line a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.menu_other .wp-block-buttons.line a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_line_w.png);
  background-size: 21px;
  width: 21px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .menu_other .wp-block-buttons.line a::before {
    top: 2px;
    background-size: 16px;
    width: 16px;
    height: 15px;
  }
}
.menu_other .wp-block-buttons.tab a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.menu_other .wp-block-buttons.tab a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_tab_w.png);
  background-size: 18px;
  width: 18px;
  height: 18px;
}
@media screen and (max-width: 830px) {
  .menu_other .wp-block-buttons.tab a::after {
    right: 15px;
    background-size: 10px;
    width: 10px;
    height: 10px;
  }
}
.menu_other .wp-block-buttons.blue a {
  background: #fff;
  color: #4ad4f0;
  border: solid 1px #4ad4f0;
}
.menu_other .wp-block-buttons.blue a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_b.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .menu_other .wp-block-buttons.blue a::after {
    right: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}

/*-------------下層ページ-------------*/
/*-------------スタッフ一覧-------------*/
.staff_archive {
  padding: 0 20px;
  width: 100%;
  background: #fff;
  box-sizing: border-box;
}
.staff_archive .staff_list {
  margin: 100px auto 40px auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  box-sizing: border-box;
  max-width: 1200px;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 830px) {
  .staff_archive .staff_list {
    margin: 50px auto;
  }
}
.staff_archive .staff_list::after {
  content: "";
  display: block;
  height: auto;
  width: 31.86%;
}
@media screen and (max-width: 830px) {
  .staff_archive .staff_list::after {
    width: 100%;
  }
}
.staff_archive .staff_list li {
  list-style: none;
  width: 31.86%;
  background: #fff;
  border-radius: 10px;
  padding: 30px 30px 80px 30px;
  box-sizing: border-box;
  border: solid 1px #d1d1d1;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
  margin: 0 0 40px 0;
}
@media screen and (max-width: 830px) {
  .staff_archive .staff_list li {
    transform: translate(0, 40px);
  }
}
.staff_archive .staff_list li.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 830px) {
  .staff_archive .staff_list li {
    width: 100%;
    margin: 0 0 20px 0;
    padding: 40px 20px;
  }
  .staff_archive .staff_list li:last-child {
    margin: 0;
  }
}
.staff_archive .staff_list li:nth-of-type(2) {
  transition-delay: 200ms;
}
@media screen and (max-width: 830px) {
  .staff_archive .staff_list li:nth-of-type(2) {
    transition-delay: 0ms;
  }
}
.staff_archive .staff_list li:nth-of-type(3) {
  transition-delay: 400ms;
}
@media screen and (max-width: 830px) {
  .staff_archive .staff_list li:nth-of-type(3) {
    transition-delay: 0ms;
  }
}
.staff_archive .staff_list li .img {
  height: 326px;
}
@media screen and (max-width: 830px) {
  .staff_archive .staff_list li .img {
    max-width: 193px;
    width: 100%;
    margin: 0 auto;
    height: 178px;
  }
}
.staff_archive .staff_list li .img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.staff_archive .staff_list li h2 {
  font-family: "Lora", serif;
  font-weight: 100;
  letter-spacing: 0.2em;
  font-size: 3.6rem;
  color: #4ad4f0;
  text-align: center;
  margin: 40px 0 10px 0;
}
@media screen and (max-width: 830px) {
  .staff_archive .staff_list li h2 {
    font-size: 2.4rem;
    margin: 20px 0 5px 0;
  }
}
.staff_archive .staff_list li .name {
  padding: 10px;
  background: #4ad4f0;
  color: #fff;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  font-size: 1.8rem;
  font-family: "Klee One", cursive;
}
@media screen and (max-width: 830px) {
  .staff_archive .staff_list li .name {
    font-size: 1.6rem;
  }
}
.staff_archive .staff_list li h3 {
  font-size: 1.6rem;
  font-family: "Klee One", cursive;
  font-weight: 400;
  padding: 0 0 0 15px;
  border-left: solid 2px #d97d50;
  line-height: 2;
  margin: 40px 0;
  color: #333;
}
@media screen and (max-width: 830px) {
  .staff_archive .staff_list li h3 {
    font-size: 1.5rem;
    margin: 20px 0;
  }
}
.staff_archive .staff_list li h3:last-child {
  margin: 0;
}
.staff_archive .staff_list li .wp-block-buttons .wp-block-button {
  display: block;
}
.staff_archive .staff_list li .wp-block-buttons .wp-block-button a {
  padding: 20px;
  border-radius: 40px;
  display: block;
  max-width: 440px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  font-size: 1.8rem;
  transition: all 0.3s;
  box-sizing: border-box;
}
@media screen and (max-width: 830px) {
  .staff_archive .staff_list li .wp-block-buttons .wp-block-button a {
    max-width: 330px;
    font-size: 1.5rem;
    padding: 15px;
  }
}
.staff_archive .staff_list li .wp-block-buttons .wp-block-button a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .staff_archive .staff_list li .wp-block-buttons .wp-block-button a:hover {
    opacity: 1;
  }
}
.staff_archive .staff_list li .wp-block-buttons.gc a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.staff_archive .staff_list li .wp-block-buttons.gc a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_w.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .staff_archive .staff_list li .wp-block-buttons.gc a::after {
    right: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}
.staff_archive .staff_list li .wp-block-buttons.back a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.staff_archive .staff_list li .wp-block-buttons.back a::after {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_w_left.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .staff_archive .staff_list li .wp-block-buttons.back a::after {
    left: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}
.staff_archive .staff_list li .wp-block-buttons.news a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.staff_archive .staff_list li .wp-block-buttons.news a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_instagram_w.png);
  background-size: 20px;
  width: 20px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .staff_archive .staff_list li .wp-block-buttons.news a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 15px;
  }
}
.staff_archive .staff_list li .wp-block-buttons.call a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.staff_archive .staff_list li .wp-block-buttons.call a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_call_w.png);
  background-size: 20px;
  width: 20px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .staff_archive .staff_list li .wp-block-buttons.call a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 15px;
  }
}
.staff_archive .staff_list li .wp-block-buttons.calendar a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.staff_archive .staff_list li .wp-block-buttons.calendar a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_calendar_w.png);
  background-size: 20px;
  width: 20px;
  height: 21px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .staff_archive .staff_list li .wp-block-buttons.calendar a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 16px;
  }
}
.staff_archive .staff_list li .wp-block-buttons.line a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.staff_archive .staff_list li .wp-block-buttons.line a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_line_w.png);
  background-size: 21px;
  width: 21px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .staff_archive .staff_list li .wp-block-buttons.line a::before {
    top: 2px;
    background-size: 16px;
    width: 16px;
    height: 15px;
  }
}
.staff_archive .staff_list li .wp-block-buttons.tab a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.staff_archive .staff_list li .wp-block-buttons.tab a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_tab_w.png);
  background-size: 18px;
  width: 18px;
  height: 18px;
}
@media screen and (max-width: 830px) {
  .staff_archive .staff_list li .wp-block-buttons.tab a::after {
    right: 15px;
    background-size: 10px;
    width: 10px;
    height: 10px;
  }
}
.staff_archive .staff_list li .wp-block-buttons.blue a {
  background: #fff;
  color: #4ad4f0;
  border: solid 1px #4ad4f0;
}
.staff_archive .staff_list li .wp-block-buttons.blue a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_b.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .staff_archive .staff_list li .wp-block-buttons.blue a::after {
    right: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}

/*-------------スタッフ詳細-------------*/
.staff_page {
  margin: 140px auto 0 auto;
  padding: 0 20px;
  max-width: 1200px;
  width: auto;
  background: #fff;
}
@media screen and (max-width: 830px) {
  .staff_page {
    margin: 50px 0 0 0;
  }
}
.staff_page .staff_self {
  margin: 0 0 140px 0;
}
@media screen and (max-width: 830px) {
  .staff_page .staff_self {
    margin: 0 0 90px 0;
  }
}
.staff_page .staff_self .contents_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 0 80px 0;
}
@media screen and (max-width: 830px) {
  .staff_page .staff_self .contents_flex {
    margin: 0 0 20px 0;
  }
}
.staff_page .staff_self .contents_flex .img {
  width: 45.84%;
}
@media screen and (max-width: 830px) {
  .staff_page .staff_self .contents_flex .img {
    width: 100%;
  }
}
@media screen and (max-width: 540px) {
  .staff_page .staff_self .contents_flex .img {
    max-width: 295px;
    margin: 0 auto;
  }
}
.staff_page .staff_self .contents_flex .img img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 5px;
}
.staff_page .staff_self .contents_flex .txt {
  width: 45.84%;
}
@media screen and (max-width: 830px) {
  .staff_page .staff_self .contents_flex .txt {
    width: 100%;
    margin: 30px 0 0 0;
  }
}
.staff_page .staff_self .contents_flex .txt .lower_h2 {
  display: flex;
  align-items: baseline;
  padding: 0 0 15px 0;
  margin: 0 0 30px 0;
  border-bottom: solid 1px #4ad4f0;
}
@media screen and (max-width: 830px) {
  .staff_page .staff_self .contents_flex .txt .lower_h2 {
    padding: 0 0 15px 0;
    margin: 0 0 30px 0;
  }
}
.staff_page .staff_self .contents_flex .txt .lower_h2 h2 {
  margin: 0 20px;
  font-size: 4.8rem;
  color: #4ad4f0;
  font-family: "Lora", serif;
  font-weight: 100;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 830px) {
  .staff_page .staff_self .contents_flex .txt .lower_h2 h2 {
    font-size: 3rem;
    margin: 0 10px;
  }
}
.staff_page .staff_self .contents_flex .txt .lower_h2 .jp_txt {
  margin: 0;
  font-size: 2.4rem;
  font-family: "Klee One", cursive;
  font-weight: 600;
  color: #4ad4f0;
}
@media screen and (max-width: 830px) {
  .staff_page .staff_self .contents_flex .txt .lower_h2 .jp_txt {
    font-size: 1.8rem;
  }
}
.staff_page .staff_self .contents_flex .txt h3 {
  font-size: 1.6rem;
  font-family: "Klee One", cursive;
  font-weight: 400;
  padding: 0 0 0 15px;
  border-left: solid 2px #d97d50;
  line-height: 2;
  margin: 40px 0;
  color: #333;
}
@media screen and (max-width: 830px) {
  .staff_page .staff_self .contents_flex .txt h3 {
    font-size: 1.5rem;
    margin: 20px 0;
  }
}
.staff_page .staff_self .contents_flex .txt h3:last-child {
  margin: 0;
}
.staff_page .staff_self .contents_flex .txt p {
  font-size: 1.6rem;
  font-family: "Klee One", cursive;
  color: #333;
  line-height: 2.2;
  margin: 0;
}
@media screen and (max-width: 830px) {
  .staff_page .staff_self .contents_flex .txt p {
    font-size: 1.5rem;
  }
}
.staff_page .staff_self .wp-block-buttons .wp-block-button {
  display: block;
}
.staff_page .staff_self .wp-block-buttons .wp-block-button a {
  padding: 20px;
  border-radius: 40px;
  display: block;
  max-width: 440px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  font-size: 1.8rem;
  transition: all 0.3s;
  box-sizing: border-box;
}
@media screen and (max-width: 830px) {
  .staff_page .staff_self .wp-block-buttons .wp-block-button a {
    max-width: 330px;
    font-size: 1.5rem;
    padding: 15px;
  }
}
.staff_page .staff_self .wp-block-buttons .wp-block-button a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .staff_page .staff_self .wp-block-buttons .wp-block-button a:hover {
    opacity: 1;
  }
}
.staff_page .staff_self .wp-block-buttons.gc a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.staff_page .staff_self .wp-block-buttons.gc a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_w.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .staff_page .staff_self .wp-block-buttons.gc a::after {
    right: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}
.staff_page .staff_self .wp-block-buttons.back a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.staff_page .staff_self .wp-block-buttons.back a::after {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_w_left.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .staff_page .staff_self .wp-block-buttons.back a::after {
    left: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}
.staff_page .staff_self .wp-block-buttons.news a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.staff_page .staff_self .wp-block-buttons.news a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_instagram_w.png);
  background-size: 20px;
  width: 20px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .staff_page .staff_self .wp-block-buttons.news a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 15px;
  }
}
.staff_page .staff_self .wp-block-buttons.call a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.staff_page .staff_self .wp-block-buttons.call a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_call_w.png);
  background-size: 20px;
  width: 20px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .staff_page .staff_self .wp-block-buttons.call a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 15px;
  }
}
.staff_page .staff_self .wp-block-buttons.calendar a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.staff_page .staff_self .wp-block-buttons.calendar a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_calendar_w.png);
  background-size: 20px;
  width: 20px;
  height: 21px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .staff_page .staff_self .wp-block-buttons.calendar a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 16px;
  }
}
.staff_page .staff_self .wp-block-buttons.line a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.staff_page .staff_self .wp-block-buttons.line a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_line_w.png);
  background-size: 21px;
  width: 21px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .staff_page .staff_self .wp-block-buttons.line a::before {
    top: 2px;
    background-size: 16px;
    width: 16px;
    height: 15px;
  }
}
.staff_page .staff_self .wp-block-buttons.tab a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.staff_page .staff_self .wp-block-buttons.tab a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_tab_w.png);
  background-size: 18px;
  width: 18px;
  height: 18px;
}
@media screen and (max-width: 830px) {
  .staff_page .staff_self .wp-block-buttons.tab a::after {
    right: 15px;
    background-size: 10px;
    width: 10px;
    height: 10px;
  }
}
.staff_page .staff_self .wp-block-buttons.blue a {
  background: #fff;
  color: #4ad4f0;
  border: solid 1px #4ad4f0;
}
.staff_page .staff_self .wp-block-buttons.blue a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_b.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .staff_page .staff_self .wp-block-buttons.blue a::after {
    right: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}
.staff_page .img_list {
  padding: 0;
  margin: 0 0 140px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 830px) {
  .staff_page .img_list {
    margin: 0 0 90px 0;
  }
}
.staff_page .img_list li {
  list-style: none;
  width: 49.59%;
}
@media screen and (max-width: 830px) {
  .staff_page .img_list li {
    width: 100%;
  }
  .staff_page .img_list li:first-child {
    margin: 0 0 5px 0;
  }
}
.staff_page .img_list li img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 5px;
}
.staff_page .staff_skil {
  margin: 140px 0;
  background: #fff;
  border: solid 1px #d1d1d1;
  width: 100%;
  padding: 50px;
  box-sizing: border-box;
  border-radius: 5px;
}
@media screen and (max-width: 830px) {
  .staff_page .staff_skil {
    padding: 30px 20px;
    margin: 0 0 90px 0;
  }
}
.staff_page .staff_skil .staff_skil__inner {
  margin: 0 0 100px 0;
}
.staff_page .staff_skil .staff_skil__inner h2 {
  font-size: 2.4rem;
  font-family: "Klee One", cursive;
  line-height: 1.7;
  text-align: center;
  color: #d97d50;
  padding: 0 0 20px 0;
  margin: 0 0 30px 0;
  border-bottom: solid 1px #d97d50;
}
@media screen and (max-width: 830px) {
  .staff_page .staff_skil .staff_skil__inner h2 {
    font-size: 1.8rem;
    padding: 0 0 15px 0;
    margin: 0 0 20px 0;
  }
}
@media screen and (max-width: 830px) {
  .staff_page .staff_skil .staff_skil__inner {
    margin: 0 0 20px 0;
  }
}
.staff_page .staff_skil .staff_skil__inner:last-child {
  margin: 0;
}
.staff_page .staff_skil .staff_skil__inner p {
  font-size: 1.6rem;
  font-family: "Klee One", cursive;
  color: #333;
  line-height: 2.2;
  margin: 0;
}
@media screen and (max-width: 830px) {
  .staff_page .staff_skil .staff_skil__inner p {
    font-size: 1.5rem;
  }
}
.staff_page .staff_skil .wp-block-buttons .wp-block-button {
  display: block;
}
.staff_page .staff_skil .wp-block-buttons .wp-block-button a {
  padding: 20px;
  border-radius: 40px;
  display: block;
  max-width: 440px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  font-size: 1.8rem;
  transition: all 0.3s;
  box-sizing: border-box;
}
@media screen and (max-width: 830px) {
  .staff_page .staff_skil .wp-block-buttons .wp-block-button a {
    max-width: 330px;
    font-size: 1.5rem;
    padding: 15px;
  }
}
.staff_page .staff_skil .wp-block-buttons .wp-block-button a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .staff_page .staff_skil .wp-block-buttons .wp-block-button a:hover {
    opacity: 1;
  }
}
.staff_page .staff_skil .wp-block-buttons.gc a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.staff_page .staff_skil .wp-block-buttons.gc a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_w.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .staff_page .staff_skil .wp-block-buttons.gc a::after {
    right: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}
.staff_page .staff_skil .wp-block-buttons.back a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.staff_page .staff_skil .wp-block-buttons.back a::after {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_w_left.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .staff_page .staff_skil .wp-block-buttons.back a::after {
    left: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}
.staff_page .staff_skil .wp-block-buttons.news a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.staff_page .staff_skil .wp-block-buttons.news a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_instagram_w.png);
  background-size: 20px;
  width: 20px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .staff_page .staff_skil .wp-block-buttons.news a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 15px;
  }
}
.staff_page .staff_skil .wp-block-buttons.call a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.staff_page .staff_skil .wp-block-buttons.call a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_call_w.png);
  background-size: 20px;
  width: 20px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .staff_page .staff_skil .wp-block-buttons.call a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 15px;
  }
}
.staff_page .staff_skil .wp-block-buttons.calendar a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.staff_page .staff_skil .wp-block-buttons.calendar a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_calendar_w.png);
  background-size: 20px;
  width: 20px;
  height: 21px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .staff_page .staff_skil .wp-block-buttons.calendar a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 16px;
  }
}
.staff_page .staff_skil .wp-block-buttons.line a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.staff_page .staff_skil .wp-block-buttons.line a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_line_w.png);
  background-size: 21px;
  width: 21px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .staff_page .staff_skil .wp-block-buttons.line a::before {
    top: 2px;
    background-size: 16px;
    width: 16px;
    height: 15px;
  }
}
.staff_page .staff_skil .wp-block-buttons.tab a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.staff_page .staff_skil .wp-block-buttons.tab a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_tab_w.png);
  background-size: 18px;
  width: 18px;
  height: 18px;
}
@media screen and (max-width: 830px) {
  .staff_page .staff_skil .wp-block-buttons.tab a::after {
    right: 15px;
    background-size: 10px;
    width: 10px;
    height: 10px;
  }
}
.staff_page .staff_skil .wp-block-buttons.blue a {
  background: #fff;
  color: #4ad4f0;
  border: solid 1px #4ad4f0;
}
.staff_page .staff_skil .wp-block-buttons.blue a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_b.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .staff_page .staff_skil .wp-block-buttons.blue a::after {
    right: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}
.staff_page .staff_btn {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 830px) {
  .staff_page .staff_btn {
    max-width: 400px;
  }
}
.staff_page .staff_btn a {
  display: flex;
  text-decoration: none;
  align-items: center;
  box-sizing: border-box;
  height: 200px;
  transition: all 0.3s;
}
@media screen and (max-width: 830px) {
  .staff_page .staff_btn a {
    height: 100%;
    flex-wrap: wrap;
  }
}
.staff_page .staff_btn a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .staff_page .staff_btn a:hover {
    opacity: 1;
  }
}
.staff_page .staff_btn a .img {
  height: 200px;
  max-width: 320px;
  width: 100%;
}
@media screen and (max-width: 830px) {
  .staff_page .staff_btn a .img {
    height: 100%;
    max-width: 100%;
  }
}
.staff_page .staff_btn a .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.staff_page .staff_btn a .txt {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  width: 100%;
  padding: 30px 40px;
  box-sizing: border-box;
  height: 100%;
}
@media screen and (max-width: 830px) {
  .staff_page .staff_btn a .txt {
    padding: 20px 30px;
  }
}
.staff_page .staff_btn a .txt .lower_h2 {
  display: flex;
  align-items: baseline;
  padding: 0 0 15px 0;
  margin: 0 0 30px 0;
  border-bottom: solid 1px #fff;
}
@media screen and (max-width: 830px) {
  .staff_page .staff_btn a .txt .lower_h2 {
    padding: 0 0 15px 0;
    margin: 0 0 20px 0;
  }
}
.staff_page .staff_btn a .txt .lower_h2 h2 {
  margin: 0 20px;
  font-size: 4.8rem;
  color: #fff;
  font-family: "Lora", serif;
  font-weight: 100;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 830px) {
  .staff_page .staff_btn a .txt .lower_h2 h2 {
    font-size: 3rem;
    margin: 0 10px;
  }
}
.staff_page .staff_btn a .txt .lower_h2 .jp_txt {
  margin: 0;
  font-size: 2.4rem;
  font-family: "Klee One", cursive;
  font-weight: 600;
  color: #fff;
}
@media screen and (max-width: 830px) {
  .staff_page .staff_btn a .txt .lower_h2 .jp_txt {
    font-size: 1.8rem;
  }
}
.staff_page .staff_btn a .txt .reserve {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  margin: 0 20px;
}
@media screen and (max-width: 830px) {
  .staff_page .staff_btn a .txt .reserve {
    font-size: 1.6rem;
    margin: 0 10px;
  }
}
.staff_page .staff_btn a .txt .reserve::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_calendar_w.png);
  background-size: 20px;
  width: 20px;
  height: 21px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .staff_page .staff_btn a .txt .reserve::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 16px;
  }
}

/*-------------SORAについて-------------*/
.sora_page {
  margin: 140px auto 0 auto;
  width: 100%;
  width: auto;
  background: #fff;
}
@media screen and (max-width: 830px) {
  .sora_page {
    margin: 50px 0 0 0;
  }
}
.sora_page .contents_flex &gt; div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.sora_page .contents_flex &gt; div .contents_left {
  width: 42%;
  height: 100%;
}
@media screen and (max-width: 830px) {
  .sora_page .contents_flex &gt; div .contents_left {
    width: 100%;
    order: 2;
    padding: 0 20px;
  }
}
.sora_page .contents_flex &gt; div .contents_left .img_b {
  margin: 0;
}
.sora_page .contents_flex &gt; div .contents_left .img_b img {
  display: block;
  border-radius: 5px;
  width: 100%;
  height: 100%;
}
.sora_page .contents_flex &gt; div .contents_left .img_flex div {
  display: flex;
  max-width: 786px;
  width: 100%;
  margin: 10px -70px 0 auto;
}
@media screen and (max-width: 830px) {
  .sora_page .contents_flex &gt; div .contents_left .img_flex div {
    margin: 5px 0 0 0;
  }
}
.sora_page .contents_flex &gt; div .contents_left .img_flex div .img_s {
  margin: 0;
}
.sora_page .contents_flex &gt; div .contents_left .img_flex div .img_s:first-child {
  margin: 0 10px 0 0;
}
@media screen and (max-width: 830px) {
  .sora_page .contents_flex &gt; div .contents_left .img_flex div .img_s:first-child {
    margin: 0 5px 0 0;
  }
}
.sora_page .contents_flex &gt; div .contents_left .img_flex div .img_s img {
  display: block;
  border-radius: 5px;
  width: 100%;
  height: 100%;
}
.sora_page .contents_flex &gt; div .contents_right {
  width: 50%;
  box-sizing: border-box;
  padding: 0 20px;
}
@media screen and (max-width: 830px) {
  .sora_page .contents_flex &gt; div .contents_right {
    width: 100%;
    padding: 0 20px 50px 20px;
  }
}
.sora_page .contents_flex &gt; div .contents_right .sora_txt {
  margin: 0 auto;
  max-width: 660px;
  width: 100%;
}
@media screen and (max-width: 830px) {
  .sora_page .contents_flex &gt; div .contents_right .sora_txt {
    max-width: 100%;
    margin: 0 auto;
  }
}
.sora_page .contents_flex &gt; div .contents_right .sora_txt .lower_h2 &gt; div {
  display: flex;
  align-items: baseline;
  padding: 0 0 15px 0;
  margin: 0 0 30px 0;
  border-bottom: solid 1px #4ad4f0;
}
@media screen and (max-width: 1300px) {
  .sora_page .contents_flex &gt; div .contents_right .sora_txt .lower_h2 &gt; div {
    display: block;
  }
}
.sora_page .contents_flex &gt; div .contents_right .sora_txt .lower_h2 &gt; div h2 {
  margin: 0 0 0 20px;
  font-size: 4.8rem;
  color: #4ad4f0;
  font-family: "Lora", serif;
  font-weight: 100;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 830px) {
  .sora_page .contents_flex &gt; div .contents_right .sora_txt .lower_h2 &gt; div h2 {
    font-size: 3rem;
    margin: 0 0 0 10px;
  }
}
.sora_page .contents_flex &gt; div .contents_right .sora_txt .lower_h2 &gt; div .jp_txt {
  margin: 0 0 0 20px;
  font-size: 2.4rem;
  font-family: "Klee One", cursive;
  font-weight: 600;
  color: #4ad4f0;
}
@media screen and (max-width: 830px) {
  .sora_page .contents_flex &gt; div .contents_right .sora_txt .lower_h2 &gt; div .jp_txt {
    font-size: 1.8rem;
    margin: 0 0 0 10px;
  }
}
.sora_page .contents_flex &gt; div .contents_right .sora_txt p {
  font-size: 1.6rem;
  font-family: "Klee One", cursive;
  color: #333;
  line-height: 2.2;
  margin: 0 0 40px 0;
}
@media screen and (max-width: 830px) {
  .sora_page .contents_flex &gt; div .contents_right .sora_txt p {
    font-size: 1.5rem;
    margin: 0 0 20px 0;
  }
}
.sora_page .contents_flex &gt; div .contents_right .sora_txt p:last-child {
  margin: 0;
}
.sora_page .img_list &gt; div {
  padding: 0 20px;
  margin: 140px auto 200px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  width: auto;
}
@media screen and (max-width: 830px) {
  .sora_page .img_list &gt; div {
    margin: 50px auto 90px auto;
  }
}
.sora_page .img_list &gt; div figure {
  width: 49.59%;
}
@media screen and (max-width: 830px) {
  .sora_page .img_list &gt; div figure {
    width: 100%;
  }
  .sora_page .img_list &gt; div figure:first-child {
    margin: 0 0 5px 0;
  }
}
.sora_page .img_list &gt; div figure img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 5px;
}
.sora_page .sora_information {
  padding: 0 20px;
  max-width: 1200px;
  width: auto;
  margin: 0 auto;
}
.sora_page .sora_information .lower_h2_center div {
  border-bottom: solid 1px #4ad4f0;
  padding: 0 0 15px 0;
  margin: 0 0 30px 0;
}
.sora_page .sora_information .lower_h2_center div h2 {
  margin: 0;
  font-size: 4.8rem;
  color: #4ad4f0;
  font-family: "Lora", serif;
  font-weight: 100;
  letter-spacing: 0.2em;
  text-align: center;
}
@media screen and (max-width: 830px) {
  .sora_page .sora_information .lower_h2_center div h2 {
    font-size: 3rem;
    margin: 0 0 10px 0;
  }
}
.sora_page .sora_information .lower_h2_center div .jp_txt {
  margin: 0;
  font-size: 2.4rem;
  font-family: "Klee One", cursive;
  font-weight: 600;
  color: #4ad4f0;
  text-align: center;
}
@media screen and (max-width: 830px) {
  .sora_page .sora_information .lower_h2_center div .jp_txt {
    font-size: 1.8rem;
    margin: 0;
  }
}
.sora_page .sora_information .sora_table {
  margin: 80px 0 0 0;
}
@media screen and (max-width: 830px) {
  .sora_page .sora_information .sora_table {
    margin: 30px 0 0 0;
  }
}
.sora_page .sora_information .sora_table h3 {
  padding: 25px;
  background: #4ad4f0;
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0;
}
@media screen and (max-width: 830px) {
  .sora_page .sora_information .sora_table h3 {
    font-size: 1.6rem;
    padding: 15px;
  }
}
.sora_page .sora_information .sora_table .txt {
  margin: 0;
  padding: 50px 100px;
  background: #fff;
  font-size: 1.6rem;
  font-family: "Klee One", cursive;
  color: #333;
  line-height: 2.2;
  position: relative;
}
.sora_page .sora_information .sora_table .txt p {
  margin: 0;
}
.sora_page .sora_information .sora_table .txt .wp-block-buttons {
  display: block;
  font-family: "Arial", "YuGothic", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
}
.sora_page .sora_information .sora_table .txt .wp-block-buttons .wp-block-button {
  display: block;
}
.sora_page .sora_information .sora_table .txt .wp-block-buttons .wp-block-button a {
  padding: 20px;
  border-radius: 40px;
  display: block;
  max-width: 440px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  font-size: 1.8rem;
  transition: all 0.3s;
  box-sizing: border-box;
}
@media screen and (max-width: 830px) {
  .sora_page .sora_information .sora_table .txt .wp-block-buttons .wp-block-button a {
    max-width: 330px;
    font-size: 1.5rem;
    padding: 15px;
  }
}
.sora_page .sora_information .sora_table .txt .wp-block-buttons .wp-block-button a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .sora_page .sora_information .sora_table .txt .wp-block-buttons .wp-block-button a:hover {
    opacity: 1;
  }
}
.sora_page .sora_information .sora_table .txt .wp-block-buttons.gc a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.sora_page .sora_information .sora_table .txt .wp-block-buttons.gc a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_w.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .sora_page .sora_information .sora_table .txt .wp-block-buttons.gc a::after {
    right: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}
.sora_page .sora_information .sora_table .txt .wp-block-buttons.back a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.sora_page .sora_information .sora_table .txt .wp-block-buttons.back a::after {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_w_left.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .sora_page .sora_information .sora_table .txt .wp-block-buttons.back a::after {
    left: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}
.sora_page .sora_information .sora_table .txt .wp-block-buttons.news a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.sora_page .sora_information .sora_table .txt .wp-block-buttons.news a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_instagram_w.png);
  background-size: 20px;
  width: 20px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .sora_page .sora_information .sora_table .txt .wp-block-buttons.news a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 15px;
  }
}
.sora_page .sora_information .sora_table .txt .wp-block-buttons.call a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.sora_page .sora_information .sora_table .txt .wp-block-buttons.call a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_call_w.png);
  background-size: 20px;
  width: 20px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .sora_page .sora_information .sora_table .txt .wp-block-buttons.call a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 15px;
  }
}
.sora_page .sora_information .sora_table .txt .wp-block-buttons.calendar a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.sora_page .sora_information .sora_table .txt .wp-block-buttons.calendar a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_calendar_w.png);
  background-size: 20px;
  width: 20px;
  height: 21px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .sora_page .sora_information .sora_table .txt .wp-block-buttons.calendar a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 16px;
  }
}
.sora_page .sora_information .sora_table .txt .wp-block-buttons.line a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.sora_page .sora_information .sora_table .txt .wp-block-buttons.line a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_line_w.png);
  background-size: 21px;
  width: 21px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .sora_page .sora_information .sora_table .txt .wp-block-buttons.line a::before {
    top: 2px;
    background-size: 16px;
    width: 16px;
    height: 15px;
  }
}
.sora_page .sora_information .sora_table .txt .wp-block-buttons.tab a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.sora_page .sora_information .sora_table .txt .wp-block-buttons.tab a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_tab_w.png);
  background-size: 18px;
  width: 18px;
  height: 18px;
}
@media screen and (max-width: 830px) {
  .sora_page .sora_information .sora_table .txt .wp-block-buttons.tab a::after {
    right: 15px;
    background-size: 10px;
    width: 10px;
    height: 10px;
  }
}
.sora_page .sora_information .sora_table .txt .wp-block-buttons.blue a {
  background: #fff;
  color: #4ad4f0;
  border: solid 1px #4ad4f0;
}
.sora_page .sora_information .sora_table .txt .wp-block-buttons.blue a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_b.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .sora_page .sora_information .sora_table .txt .wp-block-buttons.blue a::after {
    right: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}
.sora_page .sora_information .sora_table .txt img {
  width: 100%;
  height: 100%;
  display: block;
}
@media screen and (max-width: 830px) {
  .sora_page .sora_information .sora_table .txt {
    font-size: 1.5rem;
    padding: 30px 20px;
  }
}

/*-------------オーナー挨拶-------------*/
.owner_page {
  margin: 140px auto 0 auto;
  width: 100%;
  width: auto;
  background: #fff;
}
@media screen and (max-width: 830px) {
  .owner_page {
    margin: 50px 0 0 0;
  }
}
.owner_page .contents_flex &gt; div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.owner_page .contents_flex &gt; div .contents_right {
  width: 42%;
  height: 100%;
}
@media screen and (max-width: 830px) {
  .owner_page .contents_flex &gt; div .contents_right {
    width: 100%;
    order: 2;
    padding: 0 20px;
  }
}
.owner_page .contents_flex &gt; div .contents_right .img_b {
  margin: 0;
}
.owner_page .contents_flex &gt; div .contents_right .img_b img {
  display: block;
  border-radius: 5px;
  width: 100%;
  height: 100%;
}
.owner_page .contents_flex &gt; div .contents_right .img_flex {
  width: 100%;
}
.owner_page .contents_flex &gt; div .contents_right .img_flex div {
  display: flex;
  max-width: 786px;
  width: 100%;
  margin: 10px auto 0 -70px;
}
@media screen and (max-width: 830px) {
  .owner_page .contents_flex &gt; div .contents_right .img_flex div {
    margin: 5px 0 0 0;
  }
}
.owner_page .contents_flex &gt; div .contents_right .img_flex div .img_s {
  margin: 0;
}
.owner_page .contents_flex &gt; div .contents_right .img_flex div .img_s:first-child {
  margin: 0 10px 0 0;
}
@media screen and (max-width: 830px) {
  .owner_page .contents_flex &gt; div .contents_right .img_flex div .img_s:first-child {
    margin: 0 5px 0 0;
  }
}
.owner_page .contents_flex &gt; div .contents_right .img_flex div .img_s img {
  display: block;
  border-radius: 5px;
  width: 100%;
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.owner_page .contents_flex &gt; div .contents_left {
  width: 50%;
  box-sizing: border-box;
  padding: 0 20px;
}
@media screen and (max-width: 830px) {
  .owner_page .contents_flex &gt; div .contents_left {
    width: 100%;
    padding: 0 20px 50px 20px;
  }
}
.owner_page .contents_flex &gt; div .contents_left .sora_txt {
  margin: 0 auto;
  max-width: 660px;
  width: 100%;
}
@media screen and (max-width: 830px) {
  .owner_page .contents_flex &gt; div .contents_left .sora_txt {
    max-width: 100%;
    margin: 0 auto;
  }
}
.owner_page .contents_flex &gt; div .contents_left .sora_txt .lower_h2 &gt; div {
  display: flex;
  align-items: baseline;
  padding: 0 0 15px 0;
  margin: 0 0 30px 0;
  border-bottom: solid 1px #4ad4f0;
}
@media screen and (max-width: 1300px) {
  .owner_page .contents_flex &gt; div .contents_left .sora_txt .lower_h2 &gt; div {
    display: block;
  }
}
.owner_page .contents_flex &gt; div .contents_left .sora_txt .lower_h2 &gt; div h2 {
  margin: 0 0 0 20px;
  font-size: 4.8rem;
  color: #4ad4f0;
  font-family: "Lora", serif;
  font-weight: 100;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 830px) {
  .owner_page .contents_flex &gt; div .contents_left .sora_txt .lower_h2 &gt; div h2 {
    font-size: 3rem;
    margin: 0 0 0 10px;
  }
}
.owner_page .contents_flex &gt; div .contents_left .sora_txt .lower_h2 &gt; div .jp_txt {
  margin: 0 0 0 20px;
  font-size: 2.4rem;
  font-family: "Klee One", cursive;
  font-weight: 600;
  color: #4ad4f0;
}
@media screen and (max-width: 830px) {
  .owner_page .contents_flex &gt; div .contents_left .sora_txt .lower_h2 &gt; div .jp_txt {
    font-size: 1.8rem;
    margin: 0 0 0 10px;
  }
}
.owner_page .contents_flex &gt; div .contents_left .sora_txt p {
  font-size: 1.6rem;
  font-family: "Klee One", cursive;
  color: #333;
  line-height: 2.2;
  margin: 0 0 40px 0;
}
@media screen and (max-width: 830px) {
  .owner_page .contents_flex &gt; div .contents_left .sora_txt p {
    font-size: 1.5rem;
    margin: 0 0 20px 0;
  }
}
.owner_page .contents_flex &gt; div .contents_left .sora_txt p:last-child {
  margin: 0;
}
.owner_page .img_list &gt; div {
  padding: 0 20px;
  margin: 140px auto 200px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  width: auto;
}
@media screen and (max-width: 830px) {
  .owner_page .img_list &gt; div {
    margin: 50px auto 90px auto;
  }
}
.owner_page .img_list &gt; div figure {
  width: 49.59%;
}
@media screen and (max-width: 830px) {
  .owner_page .img_list &gt; div figure {
    width: 100%;
  }
  .owner_page .img_list &gt; div figure:first-child {
    margin: 0 0 5px 0;
  }
}
.owner_page .img_list &gt; div figure img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 5px;
}
.owner_page .owner_profile {
  padding: 0 20px;
  max-width: 1200px;
  width: auto;
  margin: 0 auto;
}
.owner_page .owner_profile .lower_h2_center div {
  border-bottom: solid 1px #4ad4f0;
  padding: 0 0 15px 0;
  margin: 0 0 30px 0;
}
.owner_page .owner_profile .lower_h2_center div h2 {
  margin: 0;
  font-size: 4.8rem;
  color: #4ad4f0;
  font-family: "Lora", serif;
  font-weight: 100;
  letter-spacing: 0.2em;
  text-align: center;
}
@media screen and (max-width: 830px) {
  .owner_page .owner_profile .lower_h2_center div h2 {
    font-size: 3rem;
    margin: 0 0 10px 0;
  }
}
.owner_page .owner_profile .lower_h2_center div .jp_txt {
  margin: 0;
  font-size: 2.4rem;
  font-family: "Klee One", cursive;
  font-weight: 600;
  color: #4ad4f0;
  text-align: center;
}
@media screen and (max-width: 830px) {
  .owner_page .owner_profile .lower_h2_center div .jp_txt {
    font-size: 1.8rem;
    margin: 0;
  }
}
.owner_page .owner_profile ul {
  padding: 0 0 0 20px;
  margin: 80px 0 0 0;
}
@media screen and (max-width: 830px) {
  .owner_page .owner_profile ul {
    margin: 30px 0 0 0;
  }
}
.owner_page .owner_profile ul li {
  font-size: 1.6rem;
  font-family: "Klee One", cursive;
  color: #333;
  line-height: 2;
  margin: 0 0 20px 0;
}
.owner_page .owner_profile ul li::marker {
  color: #4ad4f0;
}
@media screen and (max-width: 830px) {
  .owner_page .owner_profile ul li {
    font-size: 1.5rem;
  }
}

/*-------------お客さまの声-------------*/
.voice_page {
  padding: 140px 20px 0 20px;
  width: auto;
  max-width: 1720px;
  margin: 0 auto;
  width: auto;
  background: #fff;
}
@media screen and (max-width: 830px) {
  .voice_page {
    padding: 50px 20px 0 20px;
  }
}
.voice_page .voice_list {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.voice_page .voice_list li {
  list-style: none;
  background: #4ad4f0;
  border-radius: 10px;
  padding: 60px 40px;
  margin: 0 0 30px 0;
  box-sizing: border-box;
  width: 32.155%;
  opacity: 0;
  transform: translate(0, 80px);
  transition: all 900ms;
}
@media screen and (max-width: 830px) {
  .voice_page .voice_list li {
    transform: translate(0, 40px);
  }
}
.voice_page .voice_list li.is-animated {
  opacity: 1;
  transform: translate(0, 0);
}
.voice_page .voice_list li:nth-of-type(2) {
  transition-delay: 200ms;
}
@media screen and (max-width: 830px) {
  .voice_page .voice_list li:nth-of-type(2) {
    transition-delay: 0ms;
  }
}
.voice_page .voice_list li:nth-of-type(3) {
  transition-delay: 400ms;
}
@media screen and (max-width: 830px) {
  .voice_page .voice_list li:nth-of-type(3) {
    transition-delay: 0ms;
  }
}
.voice_page .voice_list li:nth-of-type(5) {
  transition-delay: 200ms;
}
@media screen and (max-width: 830px) {
  .voice_page .voice_list li:nth-of-type(5) {
    transition-delay: 0ms;
  }
}
.voice_page .voice_list li:nth-of-type(6) {
  transition-delay: 400ms;
}
@media screen and (max-width: 830px) {
  .voice_page .voice_list li:nth-of-type(6) {
    transition-delay: 0ms;
  }
}
.voice_page .voice_list li:nth-of-type(8) {
  transition-delay: 200ms;
}
@media screen and (max-width: 830px) {
  .voice_page .voice_list li:nth-of-type(8) {
    transition-delay: 0ms;
  }
}
.voice_page .voice_list li:nth-of-type(9) {
  transition-delay: 400ms;
}
@media screen and (max-width: 830px) {
  .voice_page .voice_list li:nth-of-type(9) {
    transition-delay: 0ms;
  }
}
@media screen and (max-width: 830px) {
  .voice_page .voice_list li {
    padding: 30px 20px;
    margin: 0 0 20px 0;
    width: 100%;
  }
}
.voice_page .voice_list li .img {
  background: #fff;
  border-radius: 50%;
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto;
}
@media screen and (max-width: 830px) {
  .voice_page .voice_list li .img {
    width: 100px;
    height: 100px;
  }
}
.voice_page .voice_list li .img img {
  display: block;
  max-width: 80px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 830px) {
  .voice_page .voice_list li .img img {
    width: 50px;
  }
}
.voice_page .voice_list li p {
  margin: 40px 0;
  font-size: 1.6rem;
  line-height: 2.2;
  color: #fff;
}
@media screen and (max-width: 830px) {
  .voice_page .voice_list li p {
    font-size: 1.5rem;
    margin: 20px 0;
  }
}
.voice_page .voice_list li .name {
  padding: 40px 0 0 0;
  font-size: 1.8rem;
  font-family: "Klee One", cursive;
  font-weight: 600;
  line-height: 1.7;
  color: #fff;
  text-align: center;
  border-top: solid 2px #fff;
  position: relative;
}
@media screen and (max-width: 830px) {
  .voice_page .voice_list li .name {
    padding: 20px 0 0 0;
    font-size: 1.6rem;
  }
}
.voice_page .voice_list li .name::before {
  position: absolute;
  content: "";
  background: url(../../images/icon_triangle.png);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-size: 16px;
  width: 16px;
  height: 12px;
}

/*-------------お問い合わせ-------------*/
.contact_page {
  padding: 140px 20px 0 20px;
  width: auto;
  margin: 0 auto;
  width: auto;
  background: #fff;
}
@media screen and (max-width: 830px) {
  .contact_page {
    padding: 50px 20px 0 20px;
  }
}
.contact_page .contact_contents {
  max-width: 1200px;
  margin: 0 auto 140px auto;
}
@media screen and (max-width: 830px) {
  .contact_page .contact_contents {
    margin: 0 auto 50px auto;
  }
}
.contact_page .contact_contents:last-child {
  margin: 0 auto;
}
.contact_page .contact_contents h2 {
  font-size: 2.4rem;
  font-family: "Klee One", cursive;
  line-height: 1.7;
  text-align: center;
  color: #d97d50;
  padding: 0 0 20px 0;
  margin: 0 0 30px 0;
  border-bottom: solid 1px #d97d50;
}
@media screen and (max-width: 830px) {
  .contact_page .contact_contents h2 {
    font-size: 1.8rem;
    padding: 0 0 15px 0;
    margin: 0 0 20px 0;
  }
}
.contact_page .contact_contents p {
  font-size: 1.6rem;
  font-family: "Klee One", cursive;
  color: #333;
  line-height: 2.2;
  margin: 0;
}
@media screen and (max-width: 830px) {
  .contact_page .contact_contents p {
    font-size: 1.5rem;
  }
}
.contact_page .contact_contents .contents_line &gt; div {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  box-sizing: border-box;
  background: #fff;
  border: solid 1px #d1d1d1;
  margin: 60px 0 0 0;
}
@media screen and (max-width: 830px) {
  .contact_page .contact_contents .contents_line &gt; div {
    margin: 30px 0 0 0;
    display: block;
    padding: 30px 20px;
  }
}
.contact_page .contact_contents .contents_line &gt; div figure img {
  max-width: 200px;
  width: 100%;
  height: 100%;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 830px) {
  .contact_page .contact_contents .contents_line &gt; div figure img {
    max-width: 120px;
  }
}
.contact_page .contact_contents .contents_line &gt; div .text {
  margin: 0 0 0 40px;
}
@media screen and (max-width: 830px) {
  .contact_page .contact_contents .contents_line &gt; div .text {
    margin: 0;
  }
}
.contact_page .contact_contents .contents_line &gt; div .text h3 {
  font-size: 2.4rem;
  margin: 0 0 40px 0;
}
@media screen and (max-width: 830px) {
  .contact_page .contact_contents .contents_line &gt; div .text h3 {
    font-size: 1.8rem;
    margin: 20px 0;
  }
}
.contact_page .contact_contents .contents_line &gt; div .text h3 span {
  color: #0bc152;
}
.contact_page .contact_contents .contents_line &gt; div .text .wp-block-buttons {
  display: block;
}
.contact_page .contact_contents .contents_line &gt; div .text .wp-block-buttons .wp-block-button {
  display: block;
}
.contact_page .contact_contents .contents_line &gt; div .text .wp-block-buttons .wp-block-button a {
  padding: 20px;
  border-radius: 40px;
  display: block;
  max-width: 440px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  font-size: 1.8rem;
  transition: all 0.3s;
  box-sizing: border-box;
}
@media screen and (max-width: 830px) {
  .contact_page .contact_contents .contents_line &gt; div .text .wp-block-buttons .wp-block-button a {
    max-width: 330px;
    font-size: 1.5rem;
    padding: 15px;
  }
}
.contact_page .contact_contents .contents_line &gt; div .text .wp-block-buttons .wp-block-button a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .contact_page .contact_contents .contents_line &gt; div .text .wp-block-buttons .wp-block-button a:hover {
    opacity: 1;
  }
}
.contact_page .contact_contents .contents_line &gt; div .text .wp-block-buttons.gc a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.contact_page .contact_contents .contents_line &gt; div .text .wp-block-buttons.gc a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_w.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .contact_page .contact_contents .contents_line &gt; div .text .wp-block-buttons.gc a::after {
    right: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}
.contact_page .contact_contents .contents_line &gt; div .text .wp-block-buttons.back a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.contact_page .contact_contents .contents_line &gt; div .text .wp-block-buttons.back a::after {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_w_left.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .contact_page .contact_contents .contents_line &gt; div .text .wp-block-buttons.back a::after {
    left: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}
.contact_page .contact_contents .contents_line &gt; div .text .wp-block-buttons.news a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.contact_page .contact_contents .contents_line &gt; div .text .wp-block-buttons.news a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_instagram_w.png);
  background-size: 20px;
  width: 20px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .contact_page .contact_contents .contents_line &gt; div .text .wp-block-buttons.news a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 15px;
  }
}
.contact_page .contact_contents .contents_line &gt; div .text .wp-block-buttons.call a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.contact_page .contact_contents .contents_line &gt; div .text .wp-block-buttons.call a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_call_w.png);
  background-size: 20px;
  width: 20px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .contact_page .contact_contents .contents_line &gt; div .text .wp-block-buttons.call a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 15px;
  }
}
.contact_page .contact_contents .contents_line &gt; div .text .wp-block-buttons.calendar a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.contact_page .contact_contents .contents_line &gt; div .text .wp-block-buttons.calendar a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_calendar_w.png);
  background-size: 20px;
  width: 20px;
  height: 21px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .contact_page .contact_contents .contents_line &gt; div .text .wp-block-buttons.calendar a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 16px;
  }
}
.contact_page .contact_contents .contents_line &gt; div .text .wp-block-buttons.line a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.contact_page .contact_contents .contents_line &gt; div .text .wp-block-buttons.line a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_line_w.png);
  background-size: 21px;
  width: 21px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .contact_page .contact_contents .contents_line &gt; div .text .wp-block-buttons.line a::before {
    top: 2px;
    background-size: 16px;
    width: 16px;
    height: 15px;
  }
}
.contact_page .contact_contents .contents_line &gt; div .text .wp-block-buttons.tab a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.contact_page .contact_contents .contents_line &gt; div .text .wp-block-buttons.tab a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_tab_w.png);
  background-size: 18px;
  width: 18px;
  height: 18px;
}
@media screen and (max-width: 830px) {
  .contact_page .contact_contents .contents_line &gt; div .text .wp-block-buttons.tab a::after {
    right: 15px;
    background-size: 10px;
    width: 10px;
    height: 10px;
  }
}
.contact_page .contact_contents .contents_line &gt; div .text .wp-block-buttons.blue a {
  background: #fff;
  color: #4ad4f0;
  border: solid 1px #4ad4f0;
}
.contact_page .contact_contents .contents_line &gt; div .text .wp-block-buttons.blue a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_b.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .contact_page .contact_contents .contents_line &gt; div .text .wp-block-buttons.blue a::after {
    right: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}
.contact_page .contact_contents .contents_call &gt; div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  box-sizing: border-box;
  background: #fff;
  border: solid 1px #d1d1d1;
  margin: 60px 0 0 0;
}
@media screen and (max-width: 830px) {
  .contact_page .contact_contents .contents_call &gt; div {
    margin: 30px 0 0 0;
    display: block;
    padding: 30px 20px;
  }
}
.contact_page .contact_contents .contents_call &gt; div .call {
  width: 50%;
  padding: 0 40px 0 0;
}
@media screen and (max-width: 830px) {
  .contact_page .contact_contents .contents_call &gt; div .call {
    width: 100%;
    padding: 0 0 20px 0;
  }
}
.contact_page .contact_contents .contents_call &gt; div .call h4 {
  margin: 0 0 10px 0;
  color: #4ad4f0;
  font-size: 2.4rem;
  font-family: "Klee One", cursive;
  text-align: center;
}
@media screen and (max-width: 830px) {
  .contact_page .contact_contents .contents_call &gt; div .call h4 {
    font-size: 1.8rem;
    margin: 0 0 5px 0;
  }
}
.contact_page .contact_contents .contents_call &gt; div .call .tel {
  margin: 0;
}
.contact_page .contact_contents .contents_call &gt; div .call .tel a {
  display: block;
  text-decoration: none;
  color: #4ad4f0;
  font-family: "Lora", serif;
  font-size: 5.2rem;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.18em;
  transition: all 0.3s;
}
@media screen and (max-width: 830px) {
  .contact_page .contact_contents .contents_call &gt; div .call .tel a {
    font-size: 2.4rem;
  }
}
.contact_page .contact_contents .contents_call &gt; div .call .tel a:hover {
  opacity: 0.5;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .contact_page .contact_contents .contents_call &gt; div .call .tel a:hover {
    opacity: 1;
  }
}
.contact_page .contact_contents .contents_call &gt; div .txt {
  width: 50%;
  padding: 0 0 0 40px;
  border-left: solid 1px #d1d1d1;
}
@media screen and (max-width: 830px) {
  .contact_page .contact_contents .contents_call &gt; div .txt {
    width: 100%;
    padding: 20px 0 0 0;
    border-top: solid 1px #d1d1d1;
    border-left: none;
  }
}
.contact_page .contact_contents .contents_call &gt; div .txt h4 {
  margin: 0 0 10px 0;
  color: #333;
  font-size: 1.8rem;
  font-family: "Klee One", cursive;
}
@media screen and (max-width: 830px) {
  .contact_page .contact_contents .contents_call &gt; div .txt h4 {
    font-size: 1.6rem;
    margin: 0 0 5px 0;
  }
}
.contact_page .contact_contents .contents_call &gt; div .txt p {
  font-size: 1.6rem;
  font-family: "Klee One", cursive;
  color: #333;
  line-height: 2.2;
  margin: 0;
}
@media screen and (max-width: 830px) {
  .contact_page .contact_contents .contents_call &gt; div .txt p {
    font-size: 1.5rem;
  }
}

/*-------------スタッフ募集-------------*/
.recruit_page {
  padding: 140px 0 0 0;
  width: auto;
  margin: 0 auto;
  width: auto;
  background: #fff;
}
@media screen and (max-width: 830px) {
  .recruit_page {
    padding: 50px 20px 0 20px;
  }
}
.recruit_page .contents_flex &gt; div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 830px) {
  .recruit_page .contents_flex &gt; div {
    flex-wrap: wrap;
  }
}
.recruit_page .contents_flex &gt; div figure {
  width: 50%;
}
@media screen and (max-width: 830px) {
  .recruit_page .contents_flex &gt; div figure {
    width: 100%;
    order: 2;
  }
}
.recruit_page .contents_flex &gt; div figure img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 5px;
}
.recruit_page .contents_flex &gt; div .contents_right {
  width: 50%;
  margin: 0 auto;
  max-width: 660px;
  padding: 0 20px 0 40px;
}
@media screen and (max-width: 830px) {
  .recruit_page .contents_flex &gt; div .contents_right {
    width: 100%;
    padding: 0 0 50px 0;
    order: 1;
  }
}
.recruit_page .contents_flex &gt; div .contents_right .lower_h2 &gt; div {
  display: flex;
  align-items: baseline;
  padding: 0 0 15px 0;
  margin: 0 0 30px 0;
  border-bottom: solid 1px #4ad4f0;
}
@media screen and (max-width: 1300px) {
  .recruit_page .contents_flex &gt; div .contents_right .lower_h2 &gt; div {
    display: block;
  }
}
.recruit_page .contents_flex &gt; div .contents_right .lower_h2 &gt; div h2 {
  margin: 0 0 0 20px;
  font-size: 4.8rem;
  color: #4ad4f0;
  font-family: "Lora", serif;
  font-weight: 100;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 830px) {
  .recruit_page .contents_flex &gt; div .contents_right .lower_h2 &gt; div h2 {
    font-size: 3rem;
    margin: 0 0 0 10px;
  }
}
.recruit_page .contents_flex &gt; div .contents_right .lower_h2 &gt; div .jp_txt {
  margin: 0 0 0 20px;
  font-size: 2.4rem;
  font-family: "Klee One", cursive;
  font-weight: 600;
  color: #4ad4f0;
}
@media screen and (max-width: 830px) {
  .recruit_page .contents_flex &gt; div .contents_right .lower_h2 &gt; div .jp_txt {
    font-size: 1.8rem;
    margin: 0 0 0 10px;
  }
}
.recruit_page .contents_flex &gt; div .contents_right p {
  font-size: 1.6rem;
  font-family: "Klee One", cursive;
  color: #333;
  line-height: 2.2;
  margin: 0 0 40px 0;
}
@media screen and (max-width: 830px) {
  .recruit_page .contents_flex &gt; div .contents_right p {
    font-size: 1.5rem;
    margin: 0 0 20px 0;
  }
}
.recruit_page .contents_flex &gt; div .contents_right p:last-child {
  margin: 0;
}
.recruit_page .jpb_information {
  max-width: 960px;
  padding: 0 20px;
  width: auto;
  margin: 200px auto 0 auto;
}
@media screen and (max-width: 830px) {
  .recruit_page .jpb_information {
    margin: 90px auto 0 auto;
    padding: 0;
  }
}
.recruit_page .jpb_information .lower_h2_center div {
  border-bottom: solid 1px #4ad4f0;
  padding: 0 0 15px 0;
  margin: 0 0 30px 0;
}
.recruit_page .jpb_information .lower_h2_center div h2 {
  margin: 0;
  font-size: 4.8rem;
  color: #4ad4f0;
  font-family: "Lora", serif;
  font-weight: 100;
  letter-spacing: 0.2em;
  text-align: center;
}
@media screen and (max-width: 830px) {
  .recruit_page .jpb_information .lower_h2_center div h2 {
    font-size: 3rem;
    margin: 0 0 10px 0;
  }
}
.recruit_page .jpb_information .lower_h2_center div .jp_txt {
  margin: 0;
  font-size: 2.4rem;
  font-family: "Klee One", cursive;
  font-weight: 600;
  color: #4ad4f0;
  text-align: center;
}
@media screen and (max-width: 830px) {
  .recruit_page .jpb_information .lower_h2_center div .jp_txt {
    font-size: 1.8rem;
    margin: 0;
  }
}
.recruit_page .jpb_information table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 80px 0 140px 0;
}
@media screen and (max-width: 830px) {
  .recruit_page .jpb_information table {
    margin: 30px 0 50px 0;
  }
}
.recruit_page .jpb_information table tbody tr {
  display: block;
  padding: 40px 0;
  border-bottom: dotted 1px #aeaeae;
}
@media screen and (max-width: 830px) {
  .recruit_page .jpb_information table tbody tr {
    padding: 20px 0;
  }
}
.recruit_page .jpb_information table tbody tr:first-child {
  padding: 0 0 40px 0;
}
@media screen and (max-width: 830px) {
  .recruit_page .jpb_information table tbody tr:first-child {
    padding: 0 0 20px 0;
  }
}
.recruit_page .jpb_information table tbody tr td {
  font-size: 1.6rem;
  display: block;
  font-family: "Klee One", cursive;
}
@media screen and (max-width: 830px) {
  .recruit_page .jpb_information table tbody tr td {
    font-size: 1.5rem;
  }
}
.recruit_page .jpb_information table tbody tr td a {
  display: inline-block;
  text-decoration: none;
  color: #4ad4f0;
  position: relative;
  font-weight: 600;
}
.recruit_page .jpb_information table tbody tr td a::after {
  position: absolute;
  bottom: -6px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #4ad4f0;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
@media screen and (max-width: 1100px) {
  .recruit_page .jpb_information table tbody tr td a::after {
    position: static;
  }
}
.recruit_page .jpb_information table tbody tr td a:hover::after {
  transform: scale(1, 1);
}
.recruit_page .jpb_information table tbody tr td:first-child {
  font-weight: 600;
  margin: 0 0 10px 0;
  font-size: 1.8rem;
}
@media screen and (max-width: 830px) {
  .recruit_page .jpb_information table tbody tr td:first-child {
    font-size: 1.6rem;
  }
}
.recruit_page .jpb_information h3 {
  font-size: 2.4rem;
  font-family: "Klee One", cursive;
  line-height: 1.7;
  text-align: center;
  color: #d97d50;
  padding: 0 0 20px 0;
  margin: 0 0 60px 0;
  border-bottom: solid 1px #d97d50;
}
@media screen and (max-width: 830px) {
  .recruit_page .jpb_information h3 {
    font-size: 1.8rem;
    padding: 0 0 15px 0;
    margin: 0 0 20px 0;
  }
}
.recruit_page .jpb_information .wp-block-buttons {
  display: block;
}
.recruit_page .jpb_information .wp-block-buttons .wp-block-button {
  display: block;
}
.recruit_page .jpb_information .wp-block-buttons .wp-block-button a {
  padding: 20px;
  border-radius: 40px;
  display: block;
  max-width: 440px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  font-size: 1.8rem;
  transition: all 0.3s;
  box-sizing: border-box;
}
@media screen and (max-width: 830px) {
  .recruit_page .jpb_information .wp-block-buttons .wp-block-button a {
    max-width: 330px;
    font-size: 1.5rem;
    padding: 15px;
  }
}
.recruit_page .jpb_information .wp-block-buttons .wp-block-button a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .recruit_page .jpb_information .wp-block-buttons .wp-block-button a:hover {
    opacity: 1;
  }
}
.recruit_page .jpb_information .wp-block-buttons.gc a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.recruit_page .jpb_information .wp-block-buttons.gc a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_w.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .recruit_page .jpb_information .wp-block-buttons.gc a::after {
    right: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}
.recruit_page .jpb_information .wp-block-buttons.back a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.recruit_page .jpb_information .wp-block-buttons.back a::after {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_w_left.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .recruit_page .jpb_information .wp-block-buttons.back a::after {
    left: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}
.recruit_page .jpb_information .wp-block-buttons.news a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.recruit_page .jpb_information .wp-block-buttons.news a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_instagram_w.png);
  background-size: 20px;
  width: 20px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .recruit_page .jpb_information .wp-block-buttons.news a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 15px;
  }
}
.recruit_page .jpb_information .wp-block-buttons.call a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.recruit_page .jpb_information .wp-block-buttons.call a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_call_w.png);
  background-size: 20px;
  width: 20px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .recruit_page .jpb_information .wp-block-buttons.call a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 15px;
  }
}
.recruit_page .jpb_information .wp-block-buttons.calendar a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.recruit_page .jpb_information .wp-block-buttons.calendar a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_calendar_w.png);
  background-size: 20px;
  width: 20px;
  height: 21px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .recruit_page .jpb_information .wp-block-buttons.calendar a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 16px;
  }
}
.recruit_page .jpb_information .wp-block-buttons.line a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.recruit_page .jpb_information .wp-block-buttons.line a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_line_w.png);
  background-size: 21px;
  width: 21px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .recruit_page .jpb_information .wp-block-buttons.line a::before {
    top: 2px;
    background-size: 16px;
    width: 16px;
    height: 15px;
  }
}
.recruit_page .jpb_information .wp-block-buttons.tab a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.recruit_page .jpb_information .wp-block-buttons.tab a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_tab_w.png);
  background-size: 18px;
  width: 18px;
  height: 18px;
}
@media screen and (max-width: 830px) {
  .recruit_page .jpb_information .wp-block-buttons.tab a::after {
    right: 15px;
    background-size: 10px;
    width: 10px;
    height: 10px;
  }
}
.recruit_page .jpb_information .wp-block-buttons.blue a {
  background: #fff;
  color: #4ad4f0;
  border: solid 1px #4ad4f0;
}
.recruit_page .jpb_information .wp-block-buttons.blue a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_b.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .recruit_page .jpb_information .wp-block-buttons.blue a::after {
    right: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}

/*-------------スクール-------------*/
.school_page {
  margin: 140px auto 0 auto;
  width: 100%;
  width: auto;
  background: #fff;
  padding: 0 20px;
}
@media screen and (max-width: 830px) {
  .school_page {
    margin: 50px auto 0 auto;
  }
}
.school_page h2 {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 80px auto;
  padding: 0 0 40px 0;
  color: #4ad4f0;
  border-bottom: solid 1px #4ad4f0;
  font-size: 3.6rem;
  line-height: 1.7;
  font-family: "Klee One", cursive;
}
@media screen and (max-width: 830px) {
  .school_page h2 {
    font-size: 2rem;
    padding: 0 0 15px 0;
    margin: 0 auto 30px auto;
  }
}
.school_page .contents_flex_s &gt; div {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  width: auto;
  margin: 0 auto 140px auto;
}
@media screen and (max-width: 830px) {
  .school_page .contents_flex_s &gt; div {
    flex-wrap: wrap;
    margin: 0 auto 50px auto;
  }
  .school_page .contents_flex_s &gt; div:last-child {
    margin: 0 auto 90px auto;
  }
}
.school_page .contents_flex_s &gt; div figure {
  width: 45.85%;
}
@media screen and (max-width: 830px) {
  .school_page .contents_flex_s &gt; div figure {
    width: 100%;
    order: 2;
  }
}
.school_page .contents_flex_s &gt; div figure img {
  width: 100%;
  display: block;
  border-radius: 5px;
}
.school_page .contents_flex_s &gt; div .txt {
  width: 45.85%;
}
@media screen and (max-width: 830px) {
  .school_page .contents_flex_s &gt; div .txt {
    width: 100%;
    margin: 0 0 30px 0;
    order: 1;
  }
}
.school_page .contents_flex_s &gt; div .txt h3 {
  font-size: 2.4rem;
  font-family: "Klee One", cursive;
  line-height: 1.7;
  color: #d97d50;
  padding: 0 0 20px 0;
  margin: 0 0 60px 0;
  border-bottom: solid 1px #d97d50;
}
@media screen and (max-width: 830px) {
  .school_page .contents_flex_s &gt; div .txt h3 {
    font-size: 1.8rem;
    padding: 0 0 15px 0;
    margin: 0 0 30px 0;
  }
}
.school_page .contents_flex_s &gt; div .txt h4 {
  font-size: 1.8rem;
  font-family: "Klee One", cursive;
  color: #333;
  padding: 0 0 0 30px;
  margin: 40px 0;
  line-height: 1.7;
  border-left: solid 2px #d97d50;
}
@media screen and (max-width: 830px) {
  .school_page .contents_flex_s &gt; div .txt h4 {
    font-size: 1.6rem;
    margin: 15px 0;
    padding: 0 0 0 10px;
  }
}
.school_page .contents_flex_s &gt; div .txt p {
  font-size: 1.6rem;
  font-family: "Klee One", cursive;
  color: #333;
  line-height: 2.2;
  margin: 0;
}
@media screen and (max-width: 830px) {
  .school_page .contents_flex_s &gt; div .txt p {
    font-size: 1.5rem;
  }
}
.school_page .school_flow {
  max-width: 1200px;
  margin: 0 auto;
}
.school_page .school_flow &gt; div &gt; h3 {
  font-size: 2.4rem;
  font-family: "Klee One", cursive;
  line-height: 1.7;
  color: #d97d50;
  padding: 0 0 20px 0;
  margin: 0 0 60px 0;
  border-bottom: solid 1px #d97d50;
  text-align: center;
}
@media screen and (max-width: 830px) {
  .school_page .school_flow &gt; div &gt; h3 {
    font-size: 1.8rem;
    padding: 0 0 15px 0;
    margin: 0 0 20px 0;
  }
}
.school_page .school_flow &gt; div .flow_contents {
  margin: 0 0 140px 0;
}
@media screen and (max-width: 830px) {
  .school_page .school_flow &gt; div .flow_contents {
    margin: 0 0 20px 0;
  }
}
.school_page .school_flow &gt; div .flow_contents h3 {
  padding: 25px;
  background: #4ad4f0;
  color: #fff;
  text-align: center;
  font-size: 2rem;
  letter-spacing: 0.1em;
  margin: 0;
  font-family: "Lora", serif;
}
@media screen and (max-width: 830px) {
  .school_page .school_flow &gt; div .flow_contents h3 {
    font-size: 1.6rem;
    padding: 15px;
  }
}
.school_page .school_flow &gt; div .flow_contents .txt {
  padding: 50px 100px;
  background: #fff;
  position: relative;
}
@media screen and (max-width: 830px) {
  .school_page .school_flow &gt; div .flow_contents .txt {
    padding: 20px 20px 30px 20px;
  }
}
.school_page .school_flow &gt; div .flow_contents .txt:last-child::after {
  position: static;
  content: none;
}
.school_page .school_flow &gt; div .flow_contents .txt::after {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  background: url(../../images/flow_triangle.png);
  background-size: 40px;
  width: 40px;
  height: 14px;
}
@media screen and (max-width: 830px) {
  .school_page .school_flow &gt; div .flow_contents .txt::after {
    bottom: -10px;
    background-size: 30px;
    width: 30px;
    height: 10px;
  }
}
.school_page .school_flow &gt; div .flow_contents .txt p {
  margin: 0;
  font-size: 1.6rem;
  font-family: "Klee One", cursive;
  color: #333;
  line-height: 2.2;
}
@media screen and (max-width: 830px) {
  .school_page .school_flow &gt; div .flow_contents .txt p {
    font-size: 1.5rem;
  }
}
.school_page .school_flow &gt; div .flow_contents .txt .price {
  padding: 40px;
  background: #fff;
  border: dotted 2px #d97d50;
  text-align: center;
  font-size: 2.4rem;
  margin: 40px 0 0 0;
  font-weight: 600;
}
@media screen and (max-width: 830px) {
  .school_page .school_flow &gt; div .flow_contents .txt .price {
    padding: 20px;
    font-size: 1.8rem;
    margin: 20px 0 0 0;
  }
}
.school_page .school_flow &gt; div .flow_contents .txt h4 {
  font-size: 1.8rem;
  font-family: "Klee One", cursive;
  color: #333;
  padding: 0 0 0 30px;
  margin: 40px 0;
  line-height: 1.7;
  border-left: solid 2px #d97d50;
}
@media screen and (max-width: 830px) {
  .school_page .school_flow &gt; div .flow_contents .txt h4 {
    font-size: 1.6rem;
    margin: 15px 0;
    padding: 0 0 0 10px;
  }
}
.school_page .school_flow &gt; div .flow_contents .txt ul {
  padding: 0 0 0 20px;
  margin: 40px 0;
}
@media screen and (max-width: 830px) {
  .school_page .school_flow &gt; div .flow_contents .txt ul {
    margin: 20px 0 0 0;
  }
}
.school_page .school_flow &gt; div .flow_contents .txt ul li {
  font-size: 1.6rem;
  font-family: "Klee One", cursive;
  color: #333;
  line-height: 2;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 830px) {
  .school_page .school_flow &gt; div .flow_contents .txt ul li {
    font-size: 1.5rem;
  }
}
.school_page .school_contents {
  margin: 0 auto 140px auto;
  max-width: 1200px;
}
@media screen and (max-width: 830px) {
  .school_page .school_contents {
    margin: 0 auto 90px auto;
  }
}
.school_page .school_contents:last-child {
  margin: 0 auto;
}
.school_page .school_contents p {
  margin: 0;
  font-size: 1.6rem;
  font-family: "Klee One", cursive;
  color: #333;
  line-height: 2.2;
}
@media screen and (max-width: 830px) {
  .school_page .school_contents p {
    font-size: 1.5rem;
  }
}
.school_page .school_contents .price {
  padding: 40px;
  background: #fff;
  border: dotted 2px #d97d50;
  text-align: center;
  font-size: 2.4rem;
  margin: 40px 0 0 0;
  font-weight: 600;
}
@media screen and (max-width: 830px) {
  .school_page .school_contents .price {
    padding: 20px;
    font-size: 1.8rem;
    margin: 20px 0 0 0;
  }
}

/*-------------not found-------------*/
.not_page {
  max-width: 1200px;
  margin: 140px auto 0 auto;
  width: auto;
  width: auto;
  background: #fff;
  padding: 0 20px;
}
@media screen and (max-width: 830px) {
  .not_page {
    margin: 50px auto 0 auto;
  }
}
.not_page p {
  font-size: 1.6rem;
  font-family: "Klee One", cursive;
  color: #333;
  line-height: 2.2;
  margin: 0 0 100px 0;
  text-align: center;
}
@media screen and (max-width: 830px) {
  .not_page p {
    font-size: 1.5rem;
    margin: 0 0 30px 0;
  }
}
.not_page .wp-block-buttons .wp-block-button {
  display: block;
}
.not_page .wp-block-buttons .wp-block-button a {
  padding: 20px;
  border-radius: 40px;
  display: block;
  max-width: 440px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  font-size: 1.8rem;
  transition: all 0.3s;
  box-sizing: border-box;
}
@media screen and (max-width: 830px) {
  .not_page .wp-block-buttons .wp-block-button a {
    max-width: 330px;
    font-size: 1.5rem;
    padding: 15px;
  }
}
.not_page .wp-block-buttons .wp-block-button a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  .not_page .wp-block-buttons .wp-block-button a:hover {
    opacity: 1;
  }
}
.not_page .wp-block-buttons.gc a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.not_page .wp-block-buttons.gc a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_w.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .not_page .wp-block-buttons.gc a::after {
    right: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}
.not_page .wp-block-buttons.back a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.not_page .wp-block-buttons.back a::after {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_w_left.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .not_page .wp-block-buttons.back a::after {
    left: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}
.not_page .wp-block-buttons.news a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.not_page .wp-block-buttons.news a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_instagram_w.png);
  background-size: 20px;
  width: 20px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .not_page .wp-block-buttons.news a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 15px;
  }
}
.not_page .wp-block-buttons.call a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.not_page .wp-block-buttons.call a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_call_w.png);
  background-size: 20px;
  width: 20px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .not_page .wp-block-buttons.call a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 15px;
  }
}
.not_page .wp-block-buttons.calendar a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.not_page .wp-block-buttons.calendar a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_calendar_w.png);
  background-size: 20px;
  width: 20px;
  height: 21px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .not_page .wp-block-buttons.calendar a::before {
    top: 2px;
    background-size: 15px;
    width: 15px;
    height: 16px;
  }
}
.not_page .wp-block-buttons.line a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.not_page .wp-block-buttons.line a::before {
  content: "";
  display: inline-block;
  margin: 0 10px 0 0;
  background: url(../../images/icon_line_w.png);
  background-size: 21px;
  width: 21px;
  height: 20px;
  position: relative;
  top: 4px;
}
@media screen and (max-width: 830px) {
  .not_page .wp-block-buttons.line a::before {
    top: 2px;
    background-size: 16px;
    width: 16px;
    height: 15px;
  }
}
.not_page .wp-block-buttons.tab a {
  background: linear-gradient(90deg, #ffd1e2, 10%, #ffbad5, #72e6ff);
  color: #fff;
}
.not_page .wp-block-buttons.tab a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_tab_w.png);
  background-size: 18px;
  width: 18px;
  height: 18px;
}
@media screen and (max-width: 830px) {
  .not_page .wp-block-buttons.tab a::after {
    right: 15px;
    background-size: 10px;
    width: 10px;
    height: 10px;
  }
}
.not_page .wp-block-buttons.blue a {
  background: #fff;
  color: #4ad4f0;
  border: solid 1px #4ad4f0;
}
.not_page .wp-block-buttons.blue a::after {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background: url(../../images/icon_arrow_b.png);
  background-size: 9px;
  width: 9px;
  height: 15px;
}
@media screen and (max-width: 830px) {
  .not_page .wp-block-buttons.blue a::after {
    right: 15px;
    background-size: 5px;
    width: 5px;
    height: 8px;
  }
}

/*-------------リダイレクトページ-------------*/
.fixed_page {
  max-width: 1200px;
  margin: 140px auto 0 auto;
  width: auto;
  width: auto;
  background: #fff;
  padding: 0 20px;
}
@media screen and (max-width: 830px) {
  .fixed_page {
    margin: 50px auto 0 auto;
  }
}
.fixed_page p {
  font-size: 1.6rem;
  font-family: "Klee One", cursive;
  color: #333;
  line-height: 2.2;
  margin: 0 0 40px 0;
}
.fixed_page p:last-child {
  margin: 0;
}
@media screen and (max-width: 830px) {
  .fixed_page p {
    font-size: 1.5rem;
    margin: 0 0 15px 0;
  }
}
.fixed_page p a {
  display: inline-block;
  text-decoration: none;
  color: #4ad4f0;
  position: relative;
  font-weight: 600;
}
.fixed_page p a::after {
  position: absolute;
  bottom: -6px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #4ad4f0;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
@media screen and (max-width: 1100px) {
  .fixed_page p a::after {
    position: static;
  }
}
.fixed_page p a:hover::after {
  transform: scale(1, 1);
}
.fixed_page .policy_txt {
  margin: 0 0 40px 0;
}
@media screen and (max-width: 830px) {
  .fixed_page .policy_txt {
    margin: 0 0 20px 0;
  }
}
.fixed_page .policy_txt:last-child {
  margin: 0;
}
.fixed_page .policy_txt h4 {
  font-size: 2rem;
  margin: 0 0 20px 0;
  font-family: "Klee One", cursive;
  line-height: 1.7;
  color: #d97d50;
}
@media screen and (max-width: 830px) {
  .fixed_page .policy_txt h4 {
    font-size: 1.6rem;
    margin: 0 0 10px 0;
  }
}

/*-------------フッター-------------*/
footer {
  position: relative;
  width: 100%;
  background: #4ad4f0;
  padding: 40px 0 0 0;
  margin: 200px 0 0 0;
}
@media screen and (max-width: 830px) {
  footer {
    margin: 90px 0 0 0;
    padding: 30px 0 0 0;
  }
}
footer .pagetop {
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
footer .pagetop a {
  display: block;
  text-decoration: none;
}
footer .pagetop a img {
  max-width: 13px;
  width: 100%;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 830px) {
  footer .pagetop a img {
    max-width: 10px;
  }
}
footer .pagetop a p {
  font-size: 1.8rem;
  margin: 15px 0 0 0;
  font-family: "Lora", serif;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 830px) {
  footer .pagetop a p {
    font-size: 1.5rem;
    margin: 10px 0 0 0;
  }
}
footer .f_nav {
  padding: 60px 20px 20px 20px;
  margin: 40px auto 0 auto;
  border-top: solid 1px #fff;
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 830px) {
  footer .f_nav {
    padding: 30px 0 0 0;
    border-top: none;
    margin: 0 auto;
  }
}
footer .f_nav .footer_menu {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
footer .f_nav .footer_menu li {
  list-style: none;
  margin: 0 30px 40px 30px;
}
@media screen and (max-width: 830px) {
  footer .f_nav .footer_menu li {
    width: 50%;
    border: 1px solid #fff;
    box-sizing: border-box;
    margin: 0 0 -1px 0;
    display: flex;
    align-items: center;
  }
  footer .f_nav .footer_menu li:nth-of-type(2n) {
    border-left: none;
  }
  footer .f_nav .footer_menu li:last-child {
    width: 100%;
  }
}
footer .f_nav .footer_menu li a {
  color: #fff;
  display: inline-block;
  font-size: 1.6rem;
  text-decoration: none;
  transition: all 0.3s;
  line-height: 1.7;
}
@media screen and (max-width: 830px) {
  footer .f_nav .footer_menu li a {
    text-align: center;
    font-size: 1.5rem;
    padding: 20px 10px;
    width: 100%;
    box-sizing: border-box;
  }
}
footer .f_nav .footer_menu li a:hover {
  opacity: 0.5;
  transition: all 0.3s;
}
@media screen and (max-width: 1100px) {
  footer .f_nav .footer_menu li a:hover {
    opacity: 1;
  }
}
footer .f_nav .footer_menu li a[href*="/taopalace_asakusa_sora"]::after {
  content: "";
  display: inline-block;
  margin: 0 0 0 10px;
  background: url(../../images/icon_instagram_w.png);
  background-size: 16px;
  width: 16px;
  height: 16px;
  position: relative;
  top: 2px;
}
@media screen and (max-width: 830px) {
  footer .f_nav .footer_menu li a[href*="/taopalace_asakusa_sora"]::after {
    background-size: 14px;
    width: 14px;
    height: 14px;
  }
}
footer .f_nav .footer_menu li a[href*="/blog"]::after {
  content: "";
  display: inline-block;
  margin: 0 0 0 10px;
  background: url(../../images/icon_tab_w.png);
  background-size: 16px;
  width: 16px;
  height: 16px;
}
@media screen and (max-width: 830px) {
  footer .f_nav .footer_menu li a[href*="/blog"]::after {
    background-size: 14px;
    width: 14px;
    height: 14px;
  }
}
footer .f_nav .footer_menu li a[href*="/taopalace-sora.stores.jp"]::after {
  content: "";
  display: inline-block;
  margin: 0 0 0 10px;
  background: url(../../images/icon_tab_w.png);
  background-size: 16px;
  width: 16px;
  height: 16px;
}
@media screen and (max-width: 830px) {
  footer .f_nav .footer_menu li a[href*="/taopalace-sora.stores.jp"]::after {
    background-size: 14px;
    width: 14px;
    height: 14px;
  }
}
footer .copy_txt {
  margin: 0;
  padding: 30px 20px;
  width: 100%;
  background: #fff;
  color: #4ad4f0;
  font-family: "Lora", serif;
  font-size: 1.6rem;
  text-align: center;
  box-sizing: border-box;
}
@media screen and (max-width: 830px) {
  footer .copy_txt {
    padding: 20px;
    font-size: 1.4rem;
  }
}/*# sourceMappingURL=style.css.map */</pre></body></html>