@charset "UTF-8";
:root {
  --f-jp: "Zen Maru Gothic", sans-serif;
  --f-en: "Montserrat Alternates", sans-serif;
  --fs-base: 16px;
  --lh-base: calc(35 / 16);
  --ls-base: .1em;
  --ttl_size: 28px;
  --wrapper: 116px;
  --border-radius: 10px;
  --main-color: #f6985e;
  --main-color-rgb: 246 152 94;
  --clr1: #3f342d;
  --clr1-rgb: 63 52 45;
  --clr2: #8cdbb0;
  --clr2-rgb: 140 219 176;
  --clr-orange1: #fef0d5;
  --clr-orange1-rgb: 254 240 213;
  --clr-orange2: #f6be98;
  --clr-orange2-rgb: 246 190 152;
  --clr-orange3: #f8b62e;
  --clr-orange3-rgb: 248 182 46;
  --clr-orange4: #ef8442;
  --clr-orange4-rgb: 239 132 66;
  --clr-pink1: #fdf2ea;
  --clr-pink1-rgb: 253 242 234;
  --clr-pink2: #fcebe0;
  --clr-pink2-rgb: 252 235 224;
  --clr-pink3: #fadbc6;
  --clr-pink3-rgb: 250 219 198;
  --clr-pink4: #dbc6ba;
  --clr-pink4-rgb: 219 198 186;
  --clr-pink5: #fbe2d1;
  --clr-pink5-rgb: 251 226 209;
  --clr-green1: #e8f8ef;
  --clr-green1-rgb: 232 248 239;
  --clr-green2: #c0ebd4;
  --clr-green2-rgb: 192 235 212;
  --clr-gray1: #e2e2e2;
  --clr-gray1-rgb: 226 226 226;
  --clr-gray2: #b2aeab;
  --clr-gray2-rgb: 178 174 171;
}

/*==========================================================================*/
/*//////////////////////////////////////////////////////////////////////////*/
/*//////                                                              //////*/
/*//////  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: var(--ls-base);
  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;
}

.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;
  background: url(../images/pattern_bg1.png) repeat center/8px 8px;
}

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

.inner_max {
  max-width: 1220px;
}

.inner_big {
  max-width: 1200px;
}

.inner {
  max-width: 1100px;
}

.inner_sm {
  max-width: 1060px;
}

.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;
  }
}
.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);
}

.txt-cls {
  color: var(--clr-gray2) !important;
}

.txt-opt {
  color: var(--clr-orange2) !important;
}

.ico_arrow {
  position: relative;
  font-size: 0.625em;
  width: round(1.8em, 1px);
  height: round(1.8em, 1px);
  border-radius: 50%;
}
.ico_arrow::before, .ico_arrow::after {
  content: "";
  position: absolute;
  width: round(100%, 1px);
  height: round(100%, 1px);
  border-radius: 50%;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
}
.ico_arrow::before {
  background-color: var(--clr2);
}
.ico_arrow::after {
  --mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' %3E%3Cpath d='M12.22,8.38l-4.51-2.89c-.49-.32-1.14.04-1.14.62v5.78c0,.59.65.94,1.14.62l4.51-2.89c.46-.29.46-.96,0-1.25Z'/%3E%3C/svg%3E");
  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: #fff;
}
.ico_arrow.st2::before, .ico_arrow.st2::after {
  content: "";
  position: absolute;
  width: round(100%, 1px);
  height: round(100%, 1px);
  border-radius: 50%;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
}
.ico_arrow.st2::before {
  background-color: var(--clr-orange2);
}
.ico_arrow.st2::after {
  --mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' %3E%3Cpath d='M12.22,8.38l-4.51-2.89c-.49-.32-1.14.04-1.14.62v5.78c0,.59.65.94,1.14.62l4.51-2.89c.46-.29.46-.96,0-1.25Z'/%3E%3C/svg%3E");
  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: #fff;
}

.btn-group {
  font-size: 0.625em;
}
.btn-group .btn {
  font-size: 1em;
  margin-bottom: 0;
}
.btn-group .btn.style01 {
  --clr-btn: var(--clr2);
  width: 100%;
  min-width: 120px;
  max-width: 25em;
}
.btn-group .btn.style01 a {
  display: flex;
  align-items: center;
  min-height: round(3.8125em, 1px);
  padding: 0.5em 2.5em 0.5em 1.5em;
  position: relative;
  font-size: 1.6em;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  color: var(--clr1);
  text-decoration: none;
  text-align: left;
  background-color: #fff;
  border-radius: 999em;
  border: 1px solid var(--clr-btn);
  box-shadow: 0px 3px 0 var(--clr-btn);
  transition: all 0.3s;
}
.btn-group .btn.style01 a::before, .btn-group .btn.style01 a::after {
  content: "";
  position: absolute;
  width: round(1.125em, 1px);
  height: round(1.125em, 1px);
  border-radius: 50%;
  transition: all 0.3s ease;
  top: calc(50% - 0.5625em);
  right: 1.25em;
}
.btn-group .btn.style01 a::before {
  background-color: var(--clr-btn);
}
.btn-group .btn.style01 a::after {
  --mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18' %3E%3Cpath d='M12.22,8.38l-4.51-2.89c-.49-.32-1.14.04-1.14.62v5.78c0,.59.65.94,1.14.62l4.51-2.89c.46-.29.46-.96,0-1.25Z'/%3E%3C/svg%3E");
  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: #fff;
}
.btn-group .btn.style01 a .sm {
  font-size: 0.8125em;
}
.btn-group .btn.style01 a:hover {
  opacity: 1;
}
@media only screen and (min-width: 769px) {
  .btn-group .btn.style01 a:not([target]):hover {
    transform: translateY(3px);
    box-shadow: none;
    background-color: var(--clr-btn);
    color: #fff;
  }
  .btn-group .btn.style01 a:not([target]):hover::before {
    background-color: #fff;
  }
  .btn-group .btn.style01 a:not([target]):hover::after {
    background-color: var(--clr-btn);
  }
}
.btn-group .btn.sm {
  max-width: 180px;
}
.btn-group .btn.md {
  min-width: 100px;
  max-width: 190px;
}
.btn-group .btn.md a {
  min-height: round(2.875em, 1px);
}
.btn-group .btn.white a {
  color: #fff;
}
.btn-group .btn.clr2 {
  --clr-btn: var(--clr-orange2);
}

.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_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;
  justify-content: center;
  align-items: center;
}

.header_top {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  transition: all 0.3s ease-in-out;
  background-color: #fff;
}

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

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo a {
  display: block;
  width: 100%;
  text-align: center;
}

.right_head {
  flex-grow: 1;
  padding-top: 0.2em;
  padding-right: 0.9em;
}

.nav_info {
  display: flex;
  width: fit-content;
  min-height: 2.5em;
  justify-content: flex-end;
  background-color: var(--clr-pink1);
  border-radius: 5px;
  padding: 2px 1.5em;
  margin-left: auto;
  margin-bottom: 0.8em;
}
.nav_info > p {
  position: relative;
  font-size: 1.25em;
  line-height: 1.2;
  letter-spacing: 0.1em;
  margin-bottom: 0;
}
.nav_info > p:not(:last-child) {
  padding-right: 1.12em;
  margin-right: 1.12em;
}
.nav_info > p:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 1.2em;
  top: calc(50% - 0.64em);
  right: 0px;
  background: url("../images/nav_info_line.svg") no-repeat center/cover;
}
.nav_info > p::before {
  content: "";
  position: relative;
  display: inline-block;
  top: 0.24em;
  margin-right: 0.48em;
  height: 1.2em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.nav_info .nav_address::before {
  width: 1.04em;
  background-image: url(../images/ico_address.svg);
}
.nav_info .nav_tel::before {
  width: 1.2em;
  background-image: url(../images/ico_tel.svg);
}

.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.85em;
}
.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: 9px;
  height: 5px;
  position: absolute;
  bottom: -0.3em;
  left: calc(50% - 4.5px);
  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: 1;
}
.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(--clr-orange4);
}
.pc_navi > ul > li:hover a.title::after,
.pc_navi > ul > li:hover p.title::after {
  transform: translateY(2px);
}
.pc_navi > ul .subInner {
  position: absolute;
  width: 30em;
  right: 50%;
  bottom: -15px;
  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 .subInner ul {
  background-color: var(--main-color);
  padding-bottom: 10px;
}
.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.95vw, 10px);
  }
  .header_top {
    padding: 0.5em 4em 0.4em;
    width: calc(100% - 2.5em);
    height: calc(100% - 2.5em);
    border-radius: 45px;
  }
  .logo {
    width: round(37%, 1px);
    max-width: 412px;
  }
  .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%;
  }
  .menu_toggle .inside .ft_link {
    width: 100%;
    max-width: 900px;
    margin: auto;
    min-height: 100%;
    display: flex;
    align-items: center;
  }
  .menu_toggle .inside .ft_link .link_list {
    width: 100%;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .header_top {
    padding: 0.4em 2em;
  }
  .pc_navi > ul > li:not(:last-child) {
    margin-right: 1em;
  }
}
@media only screen and (max-width: 992px) and (min-width: 769px) {
  :root {
    --fs-base: 14px;
    --ttl_size: 22px;
    --wrapper: 80px;
  }
}
.box_time_sheet .time_sheet {
  border-radius: 10px;
  border: 1px solid var(--clr-gray1);
  overflow: hidden;
  background-color: #fff;
}
.box_time_sheet .time_sheet table {
  margin-top: 0;
}
.box_time_sheet .time_sheet th,
.box_time_sheet .time_sheet td {
  font-size: 1.3em;
  font-weight: 500;
  line-height: 1.8153846154;
  text-align: center;
  border: none;
  width: 7.4%;
  padding: 0.8667em 0.2em;
  border-top: 1px solid var(--clr-gray1);
  border-right: 1px solid var(--clr-gray1);
}
.box_time_sheet .time_sheet th.title,
.box_time_sheet .time_sheet td.title {
  width: auto;
}
.box_time_sheet .time_sheet th.time,
.box_time_sheet .time_sheet td.time {
  width: 20.5%;
}
.box_time_sheet .time_sheet th:last-child,
.box_time_sheet .time_sheet td:last-child {
  border-right: 0;
}
.box_time_sheet .time_sheet td {
  color: var(--clr2);
}
.box_time_sheet .time_sheet td.title, .box_time_sheet .time_sheet td.time {
  color: var(--clr1);
}
.box_time_sheet .time_sheet td.time {
  font-size: 1.5em;
}
.box_time_sheet .time_sheet tr:first-child {
  background-color: var(--clr-green1);
}
.box_time_sheet .time_sheet tr:first-child th {
  color: var(--clr1);
  border-top: 0;
  padding: 1em 0.2em;
}
.box_time_sheet .time_sheet_note {
  margin-top: 0.9231em;
  font-size: max(9px, 1.3em);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--clr1);
  line-height: 1.5;
}
@media only screen and (min-width: 769px) {
  .box_time_sheet {
    font-size: min(0.95vw, 0.625em);
  }
}
@media only screen and (max-width: 768px) {
  .box_time_sheet {
    font-size: clamp(5px, 1.5625vw, 8.75px);
  }
}

.totop {
  font-size: clamp(7.5px, 0.75vw, 0.625em);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  position: fixed;
  z-index: 14;
  bottom: 8em;
  right: 20px;
}
.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(6em, 1px);
  height: round(6em, 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;
  bottom: 0;
  transition: bottom 0.3s ease-in-out;
  display: flex;
  align-items: flex-end;
}
.fixed_banner > .item {
  position: relative;
  height: 87%;
  border-radius: 10px 10px 0 0;
  border: 1px solid var(--clr-orange2);
  border-bottom: 0;
  background-color: #fff;
  transition: all 0.3s ease;
}
.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 .tt {
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  color: var(--clr1);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.fixed_banner .tt::before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-bottom: 0.2778em;
}
.fixed_banner .popup {
  position: absolute;
  z-index: -1;
}
.fixed_banner .popup .panel {
  position: absolute;
  border: 1px solid var(--clr-orange2);
  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 .popup {
  width: 100%;
  height: auto;
  bottom: calc(100% + 5px);
  right: 0;
}
.fixed_banner .popup .panel {
  bottom: 0;
  right: 0;
  width: 100%;
  transform: translateY(100%);
}
.fixed_banner .popup .panel.active {
  transform: translateY(0);
}
.fixed_banner .popup .panel[data-content=time] .box_time_sheet {
  width: 100%;
}
.fixed_banner .popup .panel[data-content=map] .box_map {
  width: 100%;
  height: 100%;
  border-radius: 0.625em;
  overflow: hidden;
}
.fixed_banner .tel {
  max-height: 100%;
  height: 100%;
}
.fixed_banner .tel .tt {
  text-align: left;
  flex-direction: row;
}
.fixed_banner .tel .tt::before {
  width: round(2.0556em, 1px);
  height: round(2.0556em, 1px);
  background-image: url("../images/shared_fixed_bnr_icon01.svg");
  margin-bottom: 0;
  margin-right: 0.3333em;
}
.fixed_banner .tel .tt .txt {
  display: block;
  font-size: 0.6667em;
  font-weight: 500;
  margin-bottom: 0.3333em;
}
.fixed_banner .tel .tt .num {
  font-family: var(--f-en);
  font-weight: 600;
  font-size: 1.4167em;
  letter-spacing: 0.05em;
}
.fixed_banner .web .tt::before {
  width: 1.1111em;
  height: 1.1111em;
  --mask: url("../images/shared_fixed_bnr_icon02.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(--clr-orange2);
}
.fixed_banner .map .tt::before {
  width: 1em;
  height: 1.1111em;
  --mask: url("../images/shared_fixed_bnr_icon04.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(--clr-orange2);
}
.fixed_banner .time .tt::before {
  width: 1.1111em;
  height: 1.1111em;
  --mask: url("../images/shared_fixed_bnr_icon03.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(--clr-orange2);
}

@media only screen and (min-width: 769px) {
  .fixed_banner {
    font-size: clamp(7.5px, 0.75vw, 0.625em);
    right: 20px;
    height: 7.4em;
  }
  .fixed_banner .popup .panel {
    height: 40em;
    padding: 2em;
    border-radius: 0.625em;
  }
  .fixed_banner .popup .panel[data-content=time] .box_time_sheet {
    font-size: min(1vw, 10px);
  }
  .fixed_banner > .item {
    width: 11.2em;
    max-height: 6.4em;
  }
  .fixed_banner > .item:not(:last-child) {
    margin-right: 0.5em;
  }
  .fixed_banner > .item .tt {
    font-size: 1.8em;
  }
  .fixed_banner > .item[data-target]:hover {
    background-color: var(--clr-orange2);
  }
  .fixed_banner > .item[data-target]:hover .tt {
    color: #fff;
  }
  .fixed_banner > .item[data-target]:hover .tt::before {
    background-color: #fff;
  }
  .fixed_banner .tel {
    width: 26.2em;
  }
}
@media only screen and (min-width: 769px) and (max-height: 675px) {
  .fixed_banner {
    font-size: 8.75px;
  }
  .totop .icon {
    width: 50px;
    height: 50px;
  }
}
footer {
  position: relative;
  background-color: var(--clr-pink1);
  padding: calc(var(--h-img) * 0.558) 0 0;
  z-index: 0;
}
footer::before {
  content: "";
  position: absolute;
  width: 100%;
  height: var(--h-img);
  top: 0;
  left: 0;
  background: url("../images/ft_bg.jpg") no-repeat top center/cover;
  z-index: -1;
}
footer::after {
  content: "";
  position: absolute;
  width: 100vw;
  aspect-ratio: 10/1;
  top: calc(var(--h-img) - round(down, 10vw, 1px));
  left: 0px;
  right: 0px;
  background: url("../images/ft_bg_decor.png") no-repeat center/cover;
  z-index: -1;
}
footer .ft_about .wrap {
  border-radius: 15px;
  background: url(../images/pattern_bg1.png) repeat top left/8px 8px #fff;
}
footer p {
  margin-bottom: 0;
}
footer p,
footer a {
  color: #fff;
  text-decoration: none;
}
footer .ft_logo {
  display: table;
  max-width: 380px;
}
footer .ft_logo a:hover {
  opacity: 1;
}
footer .ft_address .btn-group {
  max-width: 19em;
}
footer .info_address {
  position: relative;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.35;
  color: var(--clr1);
  padding-left: 2.7222em;
}
footer .info_address .sm {
  display: block;
  font-size: 0.7778em;
}
footer .info_address::before {
  content: "";
  position: absolute;
  width: 2.0556em;
  height: 2.0556em;
  top: 0.2222em;
  left: 0;
  background: url("../images/ft_ico_address.svg") no-repeat center/cover;
}
footer .ft_map {
  border-radius: 10px;
  overflow: hidden;
}
footer .ft_map iframe {
  height: 100%;
}
footer .ft_bnr {
  display: flex;
  justify-content: center;
}
footer .ft_bnr .bnr {
  position: relative;
  max-width: 32em;
  min-height: 8.5em;
  border: 0.6em solid var(--clr-green1);
  background-color: #fff;
  box-shadow: 0 0.6em 0 var(--clr-green2);
}
footer .ft_bnr .bnr .txt {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.1em;
}
footer .ft_bnr .bnr .txt .sm {
  display: block;
  color: var(--clr2);
  font-size: 1.4em;
  letter-spacing: 0.1em;
}
footer .ft_bnr .bnr .txt .lg {
  font-weight: 600;
  color: var(--clr1);
  font-size: 2.8em;
  letter-spacing: 0.1em;
}
footer .ft_bnr .bnr .txt .md {
  font-weight: 700;
  font-size: 0.8214em;
  letter-spacing: 0.1em;
  margin-left: 0.087em;
}
footer .ft_bnr .bnr .txt::before {
  content: "";
  position: absolute;
  width: round(3.7em, 1px);
  height: round(3.7em, 1px);
  top: calc(50% - 1.85em);
  left: 1.6em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
footer .ft_bnr .bnr_tel .txt {
  padding-left: 4.6em;
}
footer .ft_bnr .bnr_tel .txt::before {
  background-image: url(../images/ft_ico_tel.svg);
}
footer .ft_bnr .bnr_tel .txt .sm {
  margin-bottom: 0.1304em;
}
footer .ft_bnr .bnr_web .txt {
  padding-left: 2em;
}
footer .ft_bnr .bnr_web .txt::before {
  left: 2em;
  background-image: url(../images/ft_ico_web.svg);
}
footer .ft_bnr .bnr_web .txt::after {
  content: "";
  position: absolute;
  width: round(1.8em, 1px);
  height: round(1.8em, 1px);
  top: calc(50% - 0.9em);
  right: 1.9em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(../images/ico_arrow3.svg);
}
footer .ft_bnr .bnr_web .txt .sm {
  margin-bottom: 0.0435em;
}
footer .page_link {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
footer .page_link .item {
  max-width: 696px;
}
footer .page_link .item:hover {
  opacity: 1;
}
footer .ft_link .link_list {
  display: flex;
  justify-content: space-between;
}
footer .ft_link .link_list .menu01 {
  border-right: 2px solid var(--clr-gray1);
  width: 25.7%;
}
footer .ft_link .link_list .menu01 > ul li:not(:last-child) {
  margin-bottom: 15.7px;
}
footer .ft_link .link_list .title {
  margin-bottom: 1.1429em;
}
footer .ft_link .link_list .menu02 {
  width: 70.1%;
}
footer .ft_link .link_list .menu02 > ul {
  display: grid;
  gap: 5.3em 4.5em;
  grid-template-columns: repeat(3, auto);
}
footer .ft_link .link_list .menu-child > a {
  margin-bottom: 0.6667em;
}
footer .ft_link .link_list .menu-child > ul {
  padding-left: 1.4em;
}
footer .ft_link .link_list .menu-child > ul > li:not(:last-child) {
  margin-bottom: 1.27em;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  footer .ft_link {
    font-size: min(0.95vw, 8.75px);
  }
  footer .ft_link .link_list .menu02 > ul {
    gap: 3em 2em;
  }
}

.ft_link {
  font-size: 10px;
}
.ft_link a {
  text-decoration: none;
}
.ft_link .title {
  pointer-events: none;
  position: relative;
  font-family: var(--f-en);
  color: var(--clr2);
  font-size: max(12px, 1.4em);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
}
.ft_link .title::before {
  content: none;
}
.ft_link .menu01 a,
.ft_link .menu-child > a {
  position: relative;
  color: var(--clr1);
  font-size: 1.8em;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding-left: 0.8333em;
  line-height: 1.4;
}
.ft_link .menu01 a::before,
.ft_link .menu-child > a::before {
  content: "";
  position: absolute;
  width: 0.3333em;
  height: 0.3889em;
  top: 0.5556em;
  left: 0;
  background: url(../images/ico_arrow2.svg) no-repeat center/cover;
}
.ft_link .menu-child > a {
  display: block;
  pointer-events: none;
}
.ft_link a {
  display: table;
  position: relative;
  padding-left: 1em;
  color: var(--clr1);
  font-size: 1.4em;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.1em;
}
.ft_link a .sm {
  font-size: 0.8571em;
}
.ft_link a::before {
  content: "-";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--clr2);
}
@media only screen and (min-width: 769px) {
  .ft_link a:hover {
    opacity: 1;
    color: var(--clr2);
  }
}

.copyright {
  position: relative;
  z-index: 1;
}
.copyright p {
  font-family: var(--f-en);
  font-size: 0.75em;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--clr2);
}
@media only screen and (min-width: 1025px) {
  .copyright {
    right: -8px;
  }
}
@media only screen and (min-width: 769px) {
  .copyright {
    display: table;
    margin-left: auto;
    top: -1.25em;
  }
  .copyright p {
    text-align: right;
  }
}

@media only screen and (min-width: 769px) {
  footer {
    --h-img: clamp(420px, 54vw, 690px);
  }
  footer .ft_about .wrap {
    padding: min(4.8vw, 61px) min(4.8vw, 60px) min(4.8vw, 56px);
  }
  footer .ft_logo {
    width: round(75%, 1px);
    margin-bottom: 27px;
  }
  footer .ft_address {
    font-size: min(0.9vw, 0.625em);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.25em;
    padding-right: 0.2em;
    margin-bottom: 2.6em;
  }
  footer .ft_address .btn-group {
    font-size: 1em;
    width: 35%;
  }
  footer .info_address {
    font-size: 1.8em;
    flex-shrink: 0;
  }
  footer .ft_info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
  }
  footer .ft_info .info {
    width: 55%;
    max-width: 570px;
  }
  footer .ft_map {
    width: 42%;
    max-width: 443px;
    max-height: 387px;
    margin-top: 8px;
  }
  footer .ft_bnr {
    font-size: 0.625em;
    gap: 1.5em;
  }
  footer .ft_bnr .bnr {
    border-radius: 15px;
    width: calc(50% - 0.75em);
  }
  footer .page_link {
    padding: 3.0625em 0;
    gap: 10px;
  }
  footer .page_link .item {
    width: calc(50% - 5px);
  }
  footer .ft_menu {
    background-color: #fff;
    padding: clamp(60px, 8vw, 99px) 0 72px;
    border-radius: clamp(60px, 8vw, 100px) clamp(60px, 8vw, 100px) 0 0;
  }
  .grecaptcha-badge {
    bottom: clamp(110px, 12vw, 150px) !important;
  }
}
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*==========================================================================*/
/*                                INDEX                                     */
/*==========================================================================*/
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*==========================================================================*/
/*                                Under                                     */
/*==========================================================================*/
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/

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