@charset "UTF-8";
:root {
  --f-spr: "Shippori Mincho", serif;
  --f-jp: "Zen Maru Gothic", sans-serif;
  --f-en: "Forum", serif;
  --fs-base: 16px;
  --lh-base: calc(32 / 16);
  --ls-base: .1em;
  --ttl_size: 28px;
  --wrapper: 100px;
  --border-radius: 10px;
  --main-color: #2d96c1;
  --main-color-rgb: 45 150 193;
  --clr1: #444;
  --clr1-rgb: 68 68 68;
  --clr2: #ed929b;
  --clr2-rgb: 237 146 155;
  --clr-pink1: #fdf4f5;
  --clr-pink1-rgb: 253 244 245;
  --clr-pink2: #fdf3f4;
  --clr-pink2-rgb: 253 243 244;
  --clr-gray1: #e0e0e0;
  --clr-gray1-rgb: 224 224 224;
  --clr-purple1: #f9faff;
  --clr-purple1-rgb: 249 250 255;
  --clr-black1: #000;
  --clr-black1-rgb: 0 0 0;
  --clr-brown1: #3f342d;
  --clr-brown1-rgb: 63 52 45;
  --clr-blue1: #eaf4f9;
  --clr-blue1-rgb: 234 244 249;
}

/*==========================================================================*/
/*//////////////////////////////////////////////////////////////////////////*/
/*//////                                                              //////*/
/*//////  Copyright (C) 2009 株式会社フリーセル All Rights Reserved.  //////*/
/*//////                                                              //////*/
/*//////////////////////////////////////////////////////////////////////////*/
/*                                                                          */
/*    base.css  --> スタイルの初期設定を行うため、変更しないで下さい。      */
/*    fonts.css --> フォントの初期設定を行うため、変更しないで下さい。      */
/*                                                                          */
/*==========================================================================*/
/*==========================================================================*/
/*                           Common-Setting                                 */
/*==========================================================================*/
body {
  background-color: #ffffff;
  -webkit-text-size-adjust: none;
  letter-spacing: var(--ls-base);
  font-weight: 500;
  color: var(--clr1);
  font-family: var(--f-jp);
}
body::-webkit-scrollbar {
  display: block;
  width: 10px;
  height: 10px;
}
body::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #fff;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: linear-gradient(to bottom, var(--clr2) 0%, var(--main-color) 50%, var(--clr2) 100%);
  box-shadow: inset 0 0 6px #fff;
}
body::-webkit-scrollbar-thumb:window-inactive {
  background: linear-gradient(to bottom, var(--clr2) 0%, var(--main-color) 50%, var(--clr2) 100%);
}

h1,
h2,
h3,
h4,
h5,
h6,
input,
button,
textarea,
select,
p,
blockquote,
th,
td,
pre,
address,
li,
dt,
dd {
  font-size: 100%;
  -webkit-text-size-adjust: none;
}

header,
section,
footer,
aside,
nav,
main,
article,
figure,
picture {
  display: block;
  padding: 0;
  margin: 0;
}

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

a:not(.tel_click) {
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  color: #64b5f7;
}
a:not(.tel_click):hover, a:not(.tel_click):active {
  color: #64b5f7;
}
a.tel_click {
  text-decoration: none;
  color: inherit;
}

@media only screen and (min-width: 769px) {
  a:not([target*=_blank]) {
    transition: opacity 0.3s ease;
  }
  a:not([target*=_blank]):hover {
    opacity: 0.7;
  }
  a.tel_click {
    pointer-events: none;
  }
}
a.logo:hover,
.logo a:hover,
a.ft_logo:hover,
.ft_logo a:hover,
a.tel_click:hover {
  opacity: 1 !important;
}

table {
  width: 100%;
}

iframe {
  width: 100%;
  height: 100%;
}

.captcha_box iframe {
  height: auto;
}

.link > a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

p {
  line-height: var(--lh-base);
  letter-spacing: inherit;
  word-wrap: break-word;
  word-break: break-word;
  margin-bottom: 15px;
}
p:empty {
  display: none !important;
}
p:last-child {
  margin-bottom: 0;
}

.red {
  color: #ca0a0a !important;
}

.clr2 {
  color: var(--clr2) !important;
}

.bold {
  font-weight: bold !important;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

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

/*==========================================================================*/
/*                            Container                                     */
/*==========================================================================*/
html {
  overflow-x: auto !important;
}

.wrapper {
  padding-top: 0;
  overflow: hidden;
}

.inner_max,
.inner_big,
.inner,
.inner_sm {
  margin: 0 auto;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}

.inner_max {
  max-width: 1200px;
}

.inner_big {
  max-width: 1200px;
}

.inner {
  max-width: 1100px;
}

.inner_sm {
  max-width: 1100px;
}

.fullWidthBreak {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.txt_ver {
  writing-mode: vertical-rl;
}

@media only screen and (min-width: 769px) {
  .txt_ver_pc {
    writing-mode: vertical-rl;
  }
}
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*==========================================================================*/
/*                           WordPress Core                                 */
/*==========================================================================*/
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 35px;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
a img.alignnone {
  margin: 5px 20px 20px 0;
}
a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}
.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}
.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}
.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: var(--clr1);
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/*==========================================================================*/
/*==========================================================================*/
/*==========================================================================*/
/*                              General                                     */
/*==========================================================================*/
@media only screen and (max-width: 768px) {
  .pc_only {
    display: none !important;
  }
}
@media only screen and (min-width: 769px) {
  .sp_only {
    display: none !important;
  }
  .pc_navi > ul > li > a:hover,
  .pc_navi > ul > li > p:hover {
    text-shadow: none;
  }
}
@media only screen and (min-width: 361px) {
  .sp_320 {
    display: none !important;
  }
}
.accBtn::before, .accBtn::after {
  transition: all 0.3s ease-in-out;
}
.accBtn.triangle, .accBtn.triangle_btt {
  position: relative;
}
.accBtn.triangle::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 0;
  height: 0;
  border-radius: 20px;
  border-color: inherit;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 10px solid;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}
.accBtn.triangle.rotate::after {
  transform: translateY(-50%) rotateX(180deg);
}
.accBtn.triangle_btt::after {
  content: "";
  position: relative;
  top: 0px;
  width: 0;
  height: 0;
  border-radius: 20px;
  border-color: inherit;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 10px solid;
  display: block;
  margin: 10px auto 0;
  transition: all 0.3s ease-in-out;
}
.accBtn.rotate::after {
  transform: rotateX(180deg);
}

.TabContainer:not(.init) .TabContent li:not(.active) {
  display: none;
}
.TabContainer.init .TabContent {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.TabContainer.init .TabContent > ul {
  transition: all 0.3s ease-in-out;
}
.TabContainer.init .TabContent > ul > li {
  opacity: 0;
  z-index: -10;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transition: all 0.5s ease-in-out;
}
.TabContainer.init .TabContent > ul > li.active {
  opacity: 1;
  z-index: 1;
  visibility: visible;
}
.TabContainer .TabPager {
  display: flex;
  justify-content: space-between;
  min-width: 290px;
}
.TabContainer .TabPager li {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  margin: 0;
  padding: 9px 20px;
  box-shadow: 2px 1px 10px rgba(0, 0, 0, 0.4);
  width: calc(33.33% - 1px);
  transition: all 0.3s ease;
  cursor: pointer;
  color: #797b7d;
}
.TabContainer .TabPager li p {
  margin: 0;
}
.TabContainer .TabPager li.active {
  background-color: #edf0f5;
  z-index: 1;
}

.rel {
  position: relative;
}

.ovh {
  overflow: hidden !important;
}

.ovs {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  /* Lets it scroll lazy */
}

.lt0 {
  letter-spacing: 0 !important;
}

figure,
picture {
  text-align: center;
  line-height: 1;
}

.fblock {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.key {
  position: relative;
}

.gMap {
  width: 100%;
  height: 100%;
}

.txt_l {
  float: left;
  width: calc(100% - 385px);
}

.txt_r {
  float: right;
  width: calc(100% - 385px);
}

.image_alone {
  display: table;
  max-width: 500px;
  margin: 0 auto;
  border: 7px solid rgba(231, 231, 231, 0.5);
  border-radius: 11px;
  overflow: hidden;
}

.tel_click {
  text-decoration: none;
}

.en {
  font-family: var(--f-en);
}

.btn-group {
  font-size: 0.625em;
}
.btn-group .btn {
  font-size: 1em;
  width: 100%;
  min-width: 120px;
  max-width: 23.2em;
  overflow: hidden;
  margin-bottom: 0;
}
.btn-group .btn a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  min-height: 4.1429em;
  padding: 0.5em 1.7143em;
  position: relative;
  font-size: 1.4em;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.3428571429;
  text-decoration: none;
  text-align: left;
  color: var(--clr1);
  border-radius: 4px;
  transition: all 0.3s ease;
}
.btn-group .btn a::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  top: calc(50% - 3.5px);
  right: 1.3571em;
  --mask: url("../images/ico_arrow.svg");
  mask-image: var(--mask);
  -webkit-mask-image: var(--mask);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: 100% auto;
  -webkit-mask-size: 100% auto;
  mask-position: center;
  -webkit-mask-position: center;
  transition: all 0.3s ease;
}
.btn-group .btn a:hover {
  opacity: 1;
}
@media only screen and (min-width: 769px) {
  .btn-group .btn a:not([target]):hover {
    color: #fff;
  }
  .btn-group .btn a:not([target]):hover::after {
    background-color: #fff !important;
  }
}
.btn-group .btn.style01 a {
  border: 1px solid var(--clr-gray1);
  background-color: #fff;
}
.btn-group .btn.style01 a::after {
  background-color: var(--main-color);
}
@media only screen and (min-width: 769px) {
  .btn-group .btn.style01 a:not([target]):hover {
    background-color: var(--main-color);
  }
}
.btn-group .btn.style01.st2 a::after {
  background-color: var(--clr2);
}
@media only screen and (min-width: 769px) {
  .btn-group .btn.style01.st2 a:not([target]):hover {
    background-color: var(--clr2);
  }
}
.btn-group .btn.style02 a {
  min-height: 49px;
  padding: 15px 0;
  border: 0;
  background-color: transparent;
}
.btn-group .btn.style02 a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0px;
  left: 0px;
  --mask: url("../images/ico_item_line.svg");
  mask-image: var(--mask);
  -webkit-mask-image: var(--mask);
  mask-repeat: repeat-x;
  -webkit-mask-repeat: repeat-x;
  mask-size: 220px 1px;
  -webkit-mask-size: 220px 1px;
  mask-position: center;
  -webkit-mask-position: center;
  background-color: currentColor;
}
.btn-group .btn.style02 a::after {
  right: 0;
  background-color: var(--clr2);
}
@media only screen and (min-width: 769px) {
  .btn-group .btn.style02 a:not([target]):hover {
    padding-left: 0.5em;
    padding-right: 0.5em;
    background-color: var(--clr2);
  }
  .btn-group .btn.style02 a:not([target]):hover::before {
    content: none;
  }
  .btn-group .btn.style02 a:not([target]):hover::after {
    right: 0.5em;
  }
}
.btn-group .btn.style02.white a {
  color: #fff;
}
.btn-group .btn.style02.white a::before, .btn-group .btn.style02.white a::after {
  background-color: #fff;
}
@media only screen and (min-width: 769px) {
  .btn-group .btn.style02.white a:not([target]):hover {
    color: var(--clr1);
    background-color: #fff;
  }
  .btn-group .btn.style02.white a:not([target]):hover::after {
    background-color: var(--clr1) !important;
  }
}
.btn-group .btn.white a {
  color: #fff;
}
.btn-group .btn.md {
  max-width: 24.5em;
}
.btn-group .btn.sm {
  max-width: 22.2em;
}
.btn-group .btn.xs {
  max-width: 19.2em;
}
@media only screen and (max-width: 1024px) {
  .btn-group .btn a {
    padding: 0.5em 1.25em;
  }
  .btn-group .btn a::after {
    right: 8px;
  }
}

.slick-arrow {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  cursor: pointer;
  color: transparent;
}
.slick-arrow:focus {
  outline: 0;
}

.br_auto {
  display: inline-block;
}
@media only screen and (max-width: 319px) {
  .br_auto {
    display: inline;
  }
}

.br_1170 {
  display: none;
}

@media only screen and (min-width: 769px) and (max-width: 1170px) {
  .br_1170 {
    display: block;
  }
  .dis_1170 {
    display: none;
  }
}
.br_992 {
  display: none;
}

@media only screen and (min-width: 769px) and (max-width: 992px) {
  .br_992 {
    display: block;
  }
  .dis_992 {
    display: none;
  }
}
.br_769 {
  display: none;
}

@media only screen and (min-width: 769px) and (max-width: 992px) {
  .br_769 {
    display: block;
  }
  .dis_769 {
    display: none;
  }
}
@media only screen and (max-width: 319px) {
  .br_769 {
    display: none;
  }
}
.br_768 {
  display: none;
}

@media only screen and (max-width: 768px) {
  .br_768 {
    display: block;
  }
  .in_768 {
    display: inline;
  }
  .dis_768 {
    display: none;
  }
}
@media only screen and (max-width: 319px) {
  .br_768 {
    display: none;
  }
}
.br_750 {
  display: none;
}

@media only screen and (max-width: 750px) {
  .br_750 {
    display: block;
  }
  .in_750 {
    display: inline;
  }
  .dis_750 {
    display: none;
  }
}
@media only screen and (max-width: 319px) {
  .br_750 {
    display: none;
  }
}
.br_640 {
  display: none;
}

@media only screen and (max-width: 640px) {
  .br_640 {
    display: block;
  }
  .in_640 {
    display: inline;
  }
  .dis_640 {
    display: none;
  }
}
@media only screen and (max-width: 319px) {
  .br_640 {
    display: none;
  }
}
.br_520 {
  display: none;
}

@media only screen and (max-width: 520px) {
  .br_520 {
    display: block;
  }
  .in_520 {
    display: inline;
  }
  .dis_520 {
    display: none;
  }
}
@media only screen and (max-width: 319px) {
  .br_520 {
    display: none;
  }
}
.br_480 {
  display: none;
}

@media only screen and (max-width: 480px) {
  .br_480 {
    display: block;
  }
  .in_480 {
    display: inline;
  }
  .dis_480 {
    display: none;
  }
}
@media only screen and (max-width: 319px) {
  .br_480 {
    display: none;
  }
}
.br_430 {
  display: none;
}

@media only screen and (max-width: 430px) {
  .br_430 {
    display: block;
  }
  .in_430 {
    display: inline;
  }
  .dis_430 {
    display: none;
  }
}
@media only screen and (max-width: 319px) {
  .br_430 {
    display: none;
  }
}
.br_390 {
  display: none;
}

@media only screen and (max-width: 390px) {
  .br_390 {
    display: block;
  }
  .in_390 {
    display: inline;
  }
  .dis_390 {
    display: none;
  }
}
@media only screen and (max-width: 319px) {
  .br_390 {
    display: none;
  }
}
.br_375 {
  display: none;
}

@media only screen and (max-width: 375px) {
  .br_375 {
    display: block;
  }
  .in_375 {
    display: inline;
  }
  .dis_375 {
    display: none;
  }
}
@media only screen and (max-width: 319px) {
  .br_375 {
    display: none;
  }
}
.br_360 {
  display: none;
}

@media only screen and (max-width: 360px) {
  .br_360 {
    display: block;
  }
  .in_360 {
    display: inline;
  }
  .dis_360 {
    display: none;
  }
}
@media only screen and (max-width: 319px) {
  .br_360 {
    display: none;
  }
}
.br_320 {
  display: none;
}

@media only screen and (max-width: 320px) {
  .br_320 {
    display: block;
  }
  .in_320 {
    display: inline;
  }
  .dis_320 {
    display: none;
  }
}
@media only screen and (max-width: 319px) {
  .br_320 {
    display: none;
  }
}
/* Tablet
-------------------------------------------*/
@media only screen and (min-width: 769px) and (max-width: 1080px) {
  body {
    font-size: 87.5%;
  }
}
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*==========================================================================*/
/*                           Header - Footer                                */
/*==========================================================================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--wrapper);
  z-index: 20;
  display: flex;
  align-items: center;
}

.ovh header,
header.active {
  background-color: #fff;
}

.header_top {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  transition: all 0.3s ease;
}

h1 {
  position: absolute;
  overflow: hidden;
  height: 0;
  width: 0;
  padding: 0;
  border: 0;
}

.logo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.logo a {
  display: block;
  width: 100%;
  height: 100%;
}
.logo img {
  width: auto;
  height: 100%;
}

.right_head {
  flex-grow: 1;
  height: 2.5em;
  border-right: 1px solid var(--clr-gray1);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 2.3em;
  margin-right: 2em;
}

.h_banner {
  display: flex;
  align-items: center;
}

.h_instagram,
.h_line,
.h_book {
  margin-bottom: 0;
}
.h_instagram a,
.h_line a,
.h_book a {
  text-decoration: none;
}
.h_instagram a:hover,
.h_line a:hover,
.h_book a:hover {
  opacity: 1;
  color: inherit;
}

.h_book {
  margin-right: 0.6em;
}
.h_book a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 12.1429em;
  height: 2.7143em;
  background-color: #fff;
  border-radius: 999em;
  font-size: 1.4em;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  color: var(--clr1);
}
.h_book a > span {
  position: relative;
  padding-right: 0.8571em;
}
.h_book a > span::after {
  content: "";
  position: absolute;
  width: 0.5em;
  height: 0.5em;
  top: 0.2143em;
  right: -0.3571em;
  --mask: url("../images/ico_arrow.svg");
  mask-image: var(--mask);
  -webkit-mask-image: var(--mask);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: 100% auto;
  -webkit-mask-size: 100% auto;
  mask-position: center;
  -webkit-mask-position: center;
  background-color: var(--main-color);
}

.pc_navi > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  text-align: center;
  width: 100%;
}
.pc_navi > ul > li {
  position: relative;
}
.pc_navi > ul > li:not(:last-child) {
  margin-right: 2.35em;
}
.pc_navi > ul > li.menu-item-has-children > a::after,
.pc_navi > ul > li.menu-item-has-children > p::after {
  content: "";
  background: url(../images/shared_pc_navi_arrow.png) center no-repeat;
  background-size: 100% auto;
  width: 0.6429em;
  aspect-ratio: 11/6;
  position: absolute;
  bottom: -0.5em;
  left: calc(50% - 0.3214em);
  transition: all 0.5s ease;
}
.pc_navi > ul > li > a,
.pc_navi > ul > li > p {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0;
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  font-size: 1.4em;
  line-height: 1.5;
  letter-spacing: 0.1em;
  transition: all 0.2s ease;
  color: var(--clr1);
}
.pc_navi > ul > li > a:hover,
.pc_navi > ul > li > p:hover {
  opacity: 0.8;
  color: var(--main-color);
}
.pc_navi > ul > li > a span,
.pc_navi > ul > li > p span {
  display: block;
  width: 100%;
  padding-top: 0px;
  font-size: 66.6666666667%;
  font-weight: 600;
}
.pc_navi > ul > li:hover a,
.pc_navi > ul > li:hover p {
  color: var(--main-color);
}
.pc_navi > ul > li:hover a.title::after,
.pc_navi > ul > li:hover p.title::after {
  transform: translateY(2px);
}
.pc_navi > ul .lv2 > .subInner {
  position: absolute;
  width: 30em;
  right: 50%;
  bottom: -2em;
  padding-top: 0px;
  transform: translate(50%, 100%);
  transition: all 0.2s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}
.pc_navi > ul .subInner.active {
  opacity: 1;
  visibility: visible;
}
.pc_navi > ul .lv2 > .subInner > ul {
  background-color: var(--main-color);
  padding-bottom: 10px;
  border-radius: 0.5em;
}
.pc_navi > ul .subInner ul li {
  padding: 0 10px;
}
.pc_navi > ul .subInner ul li a {
  position: relative;
  display: block;
  padding: 1em 0.5em 1em 1.5em;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
  font-size: 1.4em;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  text-align: left;
  letter-spacing: 0px;
}
.pc_navi > ul .subInner ul li a::before {
  content: "›";
  display: block;
  position: absolute;
  top: 50%;
  left: 0.5em;
  transform: translateY(-54%);
  font-size: 1em;
}

@media only screen and (min-width: 769px) {
  header {
    font-size: min(0.9vw, 10px);
  }
  .ovh header,
  header.active {
    --wrapper: 8em;
  }
  .ovh header .logo,
  header.active .logo {
    top: 0;
    height: 100%;
  }
  .ovh header .h_book a,
  header.active .h_book a {
    color: #fff;
    background-color: var(--main-color);
  }
  .ovh header .h_book a > span::after,
  header.active .h_book a > span::after {
    background-color: #fff;
  }
  .header_top {
    padding: 5px 3.6em;
  }
  .logo {
    width: 15%;
    max-width: 169px;
    top: 2.8em;
  }
  .pc_navi > ul .col2 .subInner {
    width: 55em;
  }
  .pc_navi > ul .col2 .subInner ul {
    display: flex;
    flex-wrap: wrap;
  }
  .pc_navi > ul .col2 .subInner ul li {
    width: 50%;
  }
  .pc_navi > ul .spec_col2 .subInner {
  width: 90em;
  }
  .pc_navi > ul .spec_col2 .subInner > ul >li.mn_tl{padding: 0;}
  .pc_navi > ul .spec_col2 .subInner > ul >li.mn_tl >a{
    pointer-events: none;
    font-size: 1.8em;
    border-bottom: 0;
    padding: 1em 0 0 1.9em;
    line-height: 1.4;
  }
  .pc_navi > ul .spec_col2 .subInner > ul >li.mn_tl >a::before{
    content: '';
    width: 0.5em;
    height: 0.5em;
    border-radius: 50%;
    background-color: #fff;
    top: 72%;
    left: 1em;
  }
  .pc_navi > ul .spec_col2 .subInner .subInner ul{
    display: flex;
    flex-wrap: wrap;
  }
  .pc_navi > ul .spec_col2 .subInner .subInner ul >li{
    width: 25%;
  }
   .pc_navi > ul .spec_col2 .subInner .subInner ul >li a{
    display: flex;
    align-items: center;
    height: 100%;
   }
  .h_instagram {
    width: 2.5em;
    margin-right: 1.25em;
  }
  .h_line {
    width: 2.5em;
    margin-right: 2em;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1400px) {
  .pc_navi > ul .subInner ul li a{padding: 0.4em 0.5em 0.4em 1.5em;}
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  :root {
    --wrapper: 80px;
  }
  .header_top {
    padding: 5px 10px;
  }
  .right_head {
    margin: 0 1em;
  }
  .pc_navi > ul > li:not(:last-child) {
    margin-right: 1.2em;
  }
}
@media only screen and (max-width: 992px) and (min-width: 769px) {
  :root {
    --fs-base: 14px;
    --ttl_size: 22px;
    --wrapper: 70px;
  }
}
.time_sheet {
  border-radius: 4px;
  background-color: #fff;
  padding: 10px;
}
.time_sheet .clr2 {
  color: var(--clr2) !important;
}
.time_sheet .cls {
  color: #a1a1a1 !important;
}
.time_sheet table {
  margin: 0 auto !important;
}
.time_sheet table th,
.time_sheet table td {
  border: none;
  font-size: 1.6em;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  width: 10%;
  border-bottom: 1px solid var(--clr-gray1);
}
.time_sheet table th:last-child,
.time_sheet table td:last-child {
  width: 9.2%;
}
.time_sheet table th:first-child,
.time_sheet table td:first-child {
  width: auto;
}
.time_sheet table td {
  padding: 0.9375em 0 1.125em;
  text-align: center;
  color: var(--main-color);
}
.time_sheet table td:first-child {
  color: var(--clr1);
}
.time_sheet table td .note {
  position: relative;
}
.time_sheet table td .note::after {
  content: "※";
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  right: 0;
  font-size: 0.75em;
  font-weight: 400;
  color: var(--clr2);
}
.time_sheet table td .time {
  display: block;
  font-size: 1.375em;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 0.2273em;
}
.time_sheet table td .sm {
  font-size: 0.75em;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.time_sheet table tr:first-child th {
  padding: 1.1875em 0 1.875em;
}
.time_sheet .notes {
  margin-top: 13px;
}
.time_sheet .notes p {
  color: var(--clr1);
  font-size: max(10px, 1.4em);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin: 0 auto;
  margin-bottom: 1.5em;
}
.time_sheet .notes p:not(:last-of-type) {
  margin-bottom: 0;
}
.time_sheet .notes ul {
  border-radius: 4px;
  background-color: rgb(var(--clr2-rgb)/0.1);
}
.time_sheet .notes ul li {
  position: relative;
  font-size: max(10px, 1.4em);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding-left: 1.1429em;
}
.time_sheet .notes ul li:not(:last-child) {
  margin-bottom: -1px;
}
.time_sheet .notes ul li.tt {
  font-size: 1.6em;
  margin-bottom: 0.3125em;
  padding-left: 0;
}
.time_sheet .notes ul li.tt::before {
  content: none;
}
.time_sheet .notes ul li::before {
  content: "";
  position: absolute;
  width: round(0.2143em, 1px);
  height: round(0.2143em, 1px);
  top: 0.6429em;
  left: 0.3571em;
  border-radius: 50%;
  background-color: var(--clr2);
}
@media only screen and (min-width: 769px) {
  .time_sheet {
    font-size: min(1vw, 0.625em);
  }
  .time_sheet table,
  .time_sheet .notes p {
    max-width: 572px;
    width: calc(100% - 20px);
  }
  .time_sheet .notes ul {
    padding: 1.2em 4.6em 1.4em 4.8em;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .time_sheet .notes ul {
    padding: 1.2em;
  }
}
@media only screen and (max-width: 768px) {
  .time_sheet {
    font-size: min(1.875vw, 8.75px);
  }
  .time_sheet .notes ul {
    padding: 10px;
  }
}

.totop {
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  position: fixed;
  z-index: 10;
  bottom: 25px;
  right: 10px;
}
.totop.active {
  opacity: 1;
  visibility: visible;
}
.totop .icon {
  background-image: url(../images/totop.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  border: 0px;
  width: round(3.75em, 1px);
  height: round(3.75em, 1px);
  margin: 0;
}

@media only screen and (min-width: 769px) {
  .totop:hover .icon {
    opacity: 0.9;
    animation-name: bounces;
  }
}
.bounce {
  animation-name: bounces;
}

.animateds {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes bounces {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
@keyframes fixed_banner {
  0% {
    left: 0;
    opacity: 1;
  }
  100% {
    left: -3px;
    opacity: 0.7;
  }
}
.fixed_banner {
  position: fixed;
  z-index: 15;
  transition: right 0.3s ease-in-out;
  border: 1px solid var(--clr-gray1);
  background-color: #fff;
}
.fixed_banner > .item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  z-index: 1;
}
.fixed_banner > .item[data-target] .tt {
  cursor: pointer;
}
.fixed_banner > .item.active .tt::before {
  --mask: url("../images/ico_close.svg");
}
.fixed_banner a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  z-index: 1;
}
.fixed_banner .popup {
  position: absolute;
  z-index: 0;
}
.fixed_banner .popup .panel {
  position: absolute;
  border: 1px solid var(--clr-gray1);
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.fixed_banner .popup .panel.active {
  opacity: 1;
  visibility: visible;
}
.fixed_banner >div > .tt {
  width: 100%;
  margin-bottom: 0;
  color: var(--clr1);
  text-align: center;
}
.fixed_banner >div > .tt::before {
  content: "";
  display: block;
  mask-image: var(--mask);
  -webkit-mask-image: var(--mask);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: 100% auto;
  -webkit-mask-size: 100% auto;
  mask-position: center;
  -webkit-mask-position: center;
  background-color: var(--main-color);
}
.fixed_banner .tel > .tt::before {
  width: 1.4286em;
  height: 1.4286em;
  --mask: url("../images/shared_fixed_bnr_icon01.svg");
}
.fixed_banner .line > .tt::before {
  width: 1.4286em;
  height: 1.4286em;
  --mask: none;
  background: url(../images/shared_fixed_bnr_icon02.svg) no-repeat center/cover;
}
.fixed_banner .time > .tt::before {
  width: 1.4286em;
  height: 1.4286em;
  --mask: url("../images/shared_fixed_bnr_icon03.svg");
}
.fixed_banner .map > .tt::before {
  width: 1.2857em;
  height: 1.4286em;
  --mask: url("../images/shared_fixed_bnr_icon04.svg");
}
.fixed_banner .f_map{
  width: 100%;
  height: 29.9em;
}
.fixed_banner .box_in{
  width: 100%;
}
.fixed_banner .box_in .btn-group .btn{
  max-width: 19.2em;
  font-size: 10px;
  margin: 3em auto 0;
}
@media only screen and (min-width: 769px) {
  .fixed_banner {
    --h-tel-atv: 11.5em;
    font-size: min(0.9vw, 0.625em);
    top: 16.1em;
    right: 0;
    border-radius: 0.8em 0 0 0.8em;
    border-right: 0;
  }
  .fixed_banner .popup {
    width: auto;
    height: 100%;
    top: 0;
    right: calc(100% + 5px);
  }
  .fixed_banner .popup .panel {
    top: 0;
    right: 0;
    width: 42em;
    height: 100%;
    padding: 2em;
    border-radius: 0.8em;
    transform: translateX(100%);
  }
  .fixed_banner .popup .panel.active {
    transform: translateX(0);
  }
  .fixed_banner .popup .time_sheet{
    font-size: min(0.7em, 0.7vw);
  }
  .fixed_banner > .item {
    width: 5.5em;
  }
  .fixed_banner > .item:not(:nth-last-of-type(2))::after {
    content: "";
    position: absolute;
    width: 2.5em;
    height: 1px;
    bottom: -1px;
    left: 0px;
    right: 0px;
    margin: 0 auto;
    background-color: var(--clr-gray1);
  }
  .fixed_banner > .item[data-target] .tt:hover {
    background-color: var(--main-color);
    color: #fff;
  }
  .fixed_banner > .item[data-target] .tt:hover::before {
    background-color: #fff;
  }
  .fixed_banner >div > .tt {
    display: flex;
    align-items: center;
    font-size: 1.4em;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1;
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -webkit-text-orientation: upright;
    -moz-text-orientation: upright;
    -ms-text-orientation: upright;
    text-orientation: upright;
    padding: 1.4286em 0 1.2857em;
  }
  .fixed_banner >div > .tt::before {
    margin-bottom: 0.4286em;
  }
  .fixed_banner .line > .tt {
    letter-spacing: 0.025em;
  }
  .fixed_banner .map > .tt {
    padding-top: 1.5em;
  }
  .fixed_banner .map > .tt:hover {
    border-bottom-left-radius: 0.5714em;
  }
  .fixed_banner .tel > .tt:hover {
    border-top-left-radius: 0.5714em;
  }
  .fixed_banner .tel.active {
    height: var(--h-tel-atv);
  }
  .fixed_banner .tel.active > .tt {
    justify-content: center;
    height: 100%;
  }
  .fixed_banner .panel[data-content=tel] {
    width: 25em;
    height: var(--h-tel-atv);
  }
  .fixed_banner .panel[data-content=tel] .txt {
    font-size: 1.2em;
    font-weight: 500;
    line-height: 1.3;
    position: relative;
    padding-left: 3.3333em;
    color: var(--clr1);
  }
  .fixed_banner .panel[data-content=tel] .txt::before, .fixed_banner .panel[data-content=tel] .txt::after {
    content: "";
    position: absolute;
    width: 2.75em;
    height: 2.75em;
    left: 0;
    top: calc(50% - 1.375em);
  }
  .fixed_banner .panel[data-content=tel] .txt::after {
    --mask: url("../images/shared_fixed_bnr_icon01.svg");
    mask-image: var(--mask);
    -webkit-mask-image: var(--mask);
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-size: 1.375em 1.375em;
    -webkit-mask-size: 1.375em 1.375em;
    mask-position: center;
    -webkit-mask-position: center;
    background-color: #fff;
  }
  .fixed_banner .panel[data-content=tel] .txt::before {
    border-radius: 50%;
    background-color: var(--main-color);
  }
  .fixed_banner .panel[data-content=tel] .txt .num {
    display: block;
    font-family: var(--f-en);
    font-weight: 400;
    letter-spacing: 0.05em;
    font-size: 2.25em;
    color: var(--main-color);
  }
}
@media only screen and (min-width: 769px) and (max-height: 1000px) {
  .fixed_banner .popup.fixed_time .panel{
    height: auto;
    width: 48em;
  }
}
@media only screen and (min-width: 769px) and (max-height: 768px) {
  .fixed_banner {
    font-size: min(0.9vw, 8.75px);
    top: 10em;
  }
  .totop {
    bottom: 20px;
  }
  .totop .icon {
    width: 50px;
    height: 50px;
  }
}
footer {
  position: relative;
}
footer p {
  margin-bottom: 0;
}
footer p,
footer a {
  color: #fff;
  text-decoration: none;
}
footer .ft_info {
  background: url(../images/ft_bg1.png) no-repeat top left/856px 753px, url(../images/ft_bg2.png) no-repeat center/cover;
}
footer .ft_logo {
  display: table;
  max-width: 460px;
  margin: 0 auto;
}
footer .ft_logo a:hover {
  opacity: 1;
}
footer .ft_address {
  font-family: var(--f-spr);
  font-weight: 500;
  letter-spacing: 0.09em;
  color: var(--clr1);
  text-align: center;
}
footer .ft_tel {
  font-family: var(--f-en);
  font-size: 1.5em;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--clr1);
  text-align: center;
  text-transform: uppercase;
}
footer .ft_tel span {
  position: relative;
  font-size: 1.75em;
  letter-spacing: 0.05em;
  top: 2px;
}
footer .btn-group {
  display: flex;
  flex-wrap: wrap;
}
footer .ft_banner {
  display: table;
  margin: 0 auto;
  filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.05));
}
footer .ft_banner a:hover {
  opacity: 1;
}
footer .ft_menu {
  background-color: #fff;
}
footer .ft_link {
  position: relative;
}
footer .ft_link .link_list {
  display: flex;
  justify-content: space-between;
}
footer .ft_link .link_list .title {
  font-size: calc(var(--fs-base) - 4px);
  margin-bottom: 2.25em;
  padding-bottom: 12px;
}
footer .ft_link .link_list .menu04 {
  width: 34.4%;
}
footer .ft_link .link_list .menu04 > ul {
  display: flex;
  flex-flow: column wrap;
  align-content: space-between;
  max-height: 70em;
}
footer .ft_link .link_list .menu04 > ul li {
  width: fit-content;
}
/* footer .ft_link .link_list .menu04 > ul li:nth-child(-n+9) {
  width: 58%;
} */
footer .ft_link .link_list > div {
  min-width: 17.4%;
}
footer .ft_link .link_list > div > ul > li:not(:last-child) {
  margin-bottom: 8px;
}
@media only screen and (min-width: 769px) {
  footer .ft_link .link_list .menu04 > ul li:not(:last-child){margin-bottom: 8px;}
   footer .ft_link .link_list .menu04 > ul li.mn_tl:nth-child(2),
   footer .ft_link .link_list .menu04 > ul li.mn_tl:nth-child(4){
    margin-top: 10px;
   }
  footer .ft_info {
    padding: clamp(80px, 10vw, 122px) 0 clamp(80px, 10vw, 120px);
  }
  footer .ft_info .wrap {
    display: flex;
    justify-content: space-between;
  }
  footer .ft_info .wrap .box01 {
    width: 38%;
    max-width: 378px;
  }
  footer .ft_info .wrap .box02 {
    width: 60%;
    max-width: 632px;
  }
  footer .ft_logo {
    margin-bottom: 2.5em;
  }
  footer .ft_address {
    margin-bottom: 3px;
  }
  footer .ft_tel {
    margin-bottom: 25px;
  }
  footer .btn-group {
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 12px;
  }
  footer .btn-group .btn {
    width: calc(50% - 7.5px);
    max-width: 181.5px;
  }
  footer .ft_menu {
    padding: 4.6875em 0 3em;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  footer .ft_info .wrap {
    padding: 0 30px;
  }
  footer .ft_link {
    font-size: min(1vw, 8.75px);
    padding: 0 10px;
  }
  footer .ft_link .link_list > div{min-width: 3.4%;}
  footer .ft_link .link_list .menu04 {
    width: 38%;
  }
  /* footer .ft_link .link_list .menu04 > ul li:nth-child(-n+9){
    width: 53%;
  } */
}

.ft_link {
  font-size: 0.625em;
}
.ft_link a {
  text-decoration: none;
}
.ft_link .title {
  position: relative;
  font-family: var(--f-spr);
  font-weight: 500;
  letter-spacing: 0;
  color: rgb(var(--clr1-rgb)/0.54);
  line-height: 1;
  text-transform: uppercase;
}
.ft_link .title > span {
  display: block;
  font-family: var(--f-en);
  font-size: 2em;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--clr1);
  margin-top: 10px;
}
.ft_link .title::before {
  content: none;
}
.ft_link .title::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background: url("../images/ico_menu_line.svg") repeat-x top left/196.5px 1px;
}
.ft_link a {
  display: table;
  position: relative;
  color: var(--clr1);
  font-size: 1.4em;
  font-weight: 500;
  line-height: 1.4285714286;
  letter-spacing: 0.1em;
  padding-left: 13px;
}
.ft_link a::before {
  content: "-";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--main-color);
}
.ft_link li.mn_tl >a{
  font-weight: 500;
  font-size: 1.6em;
  margin-bottom: 0.5em;
}
.ft_link li.mn_tl >a::before{
  content: '';
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background-color: var(--main-color);
  top: 0.5em;
}
@media only screen and (min-width: 769px) {
.ft_link li.mn_tl >a{
  pointer-events: none;
}
  .ft_link a:hover {
    opacity: 1;
    color: var(--main-color);
  }
}

.idx_map {
  position: relative;
  height: clamp(299px, 50vw, 500px);
}
.idx_map iframe {
  height: 100%;
}

.copyright {
  background-color: #fff;
}
.copyright .textwidget {
  border-top: 1px solid var(--clr-gray1);
}
.copyright .textwidget p {
  font-family: var(--f-spr);
  font-size: calc(var(--fs-base) - 4px);
  font-weight: 500;
  letter-spacing: 0em;
  color: var(--clr1);
  text-align: center;
}
@media only screen and (min-width: 769px) {
  .copyright .textwidget {
    padding: 1.4375em 0;
  }
}

/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*==========================================================================*/
/*                                INDEX                                     */
/*==========================================================================*/
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*==========================================================================*/
/*                                Under                                     */
/*==========================================================================*/
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/

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