@charset "UTF-8";
:root {
  --f-jp: "Zen Maru Gothic", sans-serif;
  --f-en: "Dosis", sans-serif;
  --main-color: #f38300;
  --clr1: #413b32;
  --clr2: #b2d4b2;
  --ttl_size: 30px;
  --wrapper: 74px;
}

/*==========================================================================*/
/*//////////////////////////////////////////////////////////////////////////*/
/*//////                                                              //////*/
/*//////  Copyright (C) 2009 株式会社フリーセル All Rights Reserved.  //////*/
/*//////                                                              //////*/
/*//////////////////////////////////////////////////////////////////////////*/
/*                                                                          */
/*    base.css  --> スタイルの初期設定を行うため、変更しないで下さい。      */
/*    fonts.css --> フォントの初期設定を行うため、変更しないで下さい。      */
/*                                                                          */
/*==========================================================================*/
/*==========================================================================*/
/*                           Common-Setting                                 */
/*==========================================================================*/
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%);
}
body {
  background-color: #ffffff;
  -webkit-text-size-adjust: none;
  letter-spacing: 0.1em;
  color: var(--clr1);
  font-family: var(--f-jp);
}

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: 2;
  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;
}

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

.fl {
  float: left;
}

.fr {
  float: right;
}

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

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

.wrapper {
  overflow: hidden;
}

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

.inner_big {
  max-width: 1240px;
}

.inner {
  max-width: 1100px;
}

.inner_sm {
  max-width: 1200px;
}

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

.btn {
  max-width: 222px;
  margin: 31px auto 0;
}
.btn a::after {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  width: 10px;
  height: 10px;
  right: 1.3103em;
  top: calc(50% - 5px);
  --mask: url(../images/idx_arr.png);
  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);
}
.btn a .jp {
  margin-left: -0.6em;
}

.btn-group {
  font-size: 0.625em;
}
.btn-group .btn {
  font-size: 1em;
}
.btn-group .btn.style01 {
  width: 100%;
  min-width: 100px;
  max-width: 343px;
  overflow: hidden;
}
.btn-group .btn.style01 a {
  display: flex;
  justify-content: center;
  flex-direction: column;
  min-height: 60px;
  padding: 0 36px 0.25em 18px;
  position: relative;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.3675862069;
  color: var(--main-color);
  text-decoration: none;
  text-align: left;
  background-color: #fff;
  border: 1px solid #f0efec;
  transition: all 0.3s;
  border-radius: 10px;
}
.btn-group .btn.style01 a:hover {
  opacity: 1;
}
@media only screen and (min-width: 769px) {
  .btn-group .btn.style01 a:not([target=_blank]):hover {
    background-color: var(--clr2);
    color: #fff;
    border-color: #fff;
  }
  .btn-group .btn.style01 a:not([target=_blank]):hover::after {
    background-color: #fff;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .btn-group .btn.style01 a {
    font-size: 10px;
    letter-spacing: 0.1em;
    padding-left: 1em;
    padding-top: 7px;
    padding-bottom: 4px;
    padding-right: 20px;
  }
  .btn-group .btn.style01 a::after {
    right: 12px;
  }
  .btn-group .btn.style01 a .jp {
    font-size: 10px;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }
}
@media only screen and (max-width: 768px) {
  .btn-group .btn.style01 a {
    font-size: 14px;
    letter-spacing: 0.1em;
    padding-left: 1em;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-right: 20px;
  }
  .btn-group .btn.style01 a::after {
    right: 12px;
  }
  .btn-group .btn.style01 a .jp {
    font-size: 12px;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }
}
.btn-group .btn.bg01 a {
  background-color: transparent;
  color: var(--main-color);
}
.btn-group.col2 {
  margin-top: 31px;
}
.btn-group.col2 .btn {
  margin: 0;
  max-width: 100%;
  width: calc(50% - 7px);
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  .btn-group.col2 .btn a {
    height: 100%;
  }
}

.slick-arrow {
  display: block;
  border: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-color: transparent;
  position: absolute;
  top: calc(50% - 35px);
  width: 70px;
  height: 70px;
  cursor: pointer;
  color: transparent;
}
.slick-arrow:focus {
  outline: 0;
}

.slick-prev {
  left: -35px;
}

.slick-next {
  right: -35px;
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .slick-arrow {
    top: calc(50% - 25px);
    width: 50px;
    height: 50px;
  }
  .slick-prev {
    left: -25px;
  }
  .slick-next {
    right: -25px;
  }
}
/* 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;
}

header.active,
.ovh header {
  background-color: #fff;
}
header.active .logo,
.ovh header .logo {
  margin-top: auto;
  margin-bottom: auto;
}

.header_top {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
  margin: 0 auto;
  height: 100%;
  transition: all 0.3s ease-in-out;
}

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

.logo {
  width: 28%;
  max-width: 356px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-left: 30px;
  margin-bottom: 4px;
}
.logo a {
  display: block;
  width: 100%;
  text-align: center;
}

.right_head {
  width: 70%;
  max-width: 960px;
  padding-right: 50px;
  padding-left: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  background-color: #fff;
  border-radius: 0 0 0 15px;
}

.pc_navi {
  width: 100%;
}
.pc_navi > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  width: 100%;
}
.pc_navi > ul > li {
  position: relative;
}
.pc_navi > ul > li:not(:last-child)::after {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  height: 20px;
  width: 1px;
  background-color: #c7cecb;
  left: calc(100% + 1.2em);
  border-radius: 3px;
  top: calc(50% - 10px);
}
.pc_navi > ul > li.menu-item-has-children > a::after,
.pc_navi > ul > li.menu-item-has-children > p::after {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  border-top: 0.278em solid var(--clr1);
  border-left: 0.223em solid transparent;
  border-right: 0.223em solid transparent;
  left: calc(50% - 0.27em);
  top: calc(100% - 0.0555em);
}
.pc_navi > ul > li.menu-item-has-children:hover > a,
.pc_navi > ul > li.menu-item-has-children:hover > p {
  color: var(--main-color);
}
.pc_navi > ul > li.menu-item-has-children:hover > a::after,
.pc_navi > ul > li.menu-item-has-children:hover > p::after {
  transform: translateY(2px);
  border-top-color: var(--main-color);
}
.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;
  height: 40px;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  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.title::after,
.pc_navi > ul > li:hover p.title::after {
  transform: translateY(5px);
}
.pc_navi > ul .subInner {
  position: absolute;
  width: 18em;
  right: 50%;
  top: 100%;
  padding-top: 1em;
  transform: translateX(50%);
  transition: all 0.2s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 11;
}
.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.6em 1em 1.6em;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
  font-size: 0.875em;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  text-align: left;
  letter-spacing: 0.05em;
}
.pc_navi > ul .subInner ul li a::before {
  content: "›";
  display: block;
  position: absolute;
  top: 50%;
  left: 0.6em;
  transform: translateY(-54%);
}

@media only screen and (min-width: 769px) {
  .pc_navi > ul .col2 .subInner {
    width: 28em;
  }
  .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) {
  .pc_navi > ul .col2 .subInner ul .title_center {
    width: 100% !important;
  }
  .pc_navi > ul .col2 .subInner ul .title_center a {
    pointer-events: none;
    border-bottom: 1px solid #fff;
    font-size: 1.125em;
    padding-left: 0;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
  }
  .pc_navi > ul .col2 .subInner ul .title_center a::before {
    display: none;
  }
  .pc_navi > ul .mcol-2 .subInner {
    width: 640px;
    right: 100%;
  }
  .pc_navi > ul .mcol-2 .subInner .menu_title > a {
    display: none !important;
  }
  .pc_navi > ul .mcol-2 .subInner .title_small {
    padding: 0 10px !important;
  }
  .pc_navi > ul .mcol-2 .subInner .title_small > a {
    pointer-events: none;
    text-align: center;
    border: 0 !important;
    font-size: 14px !important;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.7) !important;
  }
  .pc_navi > ul .mcol-2 .subInner > ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 20px 20px;
  }
  .pc_navi > ul .mcol-2 .subInner > ul .subInner > ul {
    padding: 0;
  }
  .pc_navi > ul .mcol-2 .subInner > ul > .menu-item-has-children {
    width: calc(50% - 10px);
    padding: 0;
  }
  .pc_navi > ul .mcol-2 .subInner > ul > .menu-item-has-children > a, .pc_navi > ul .mcol-2 .subInner > ul > .menu-item-has-children > p {
    pointer-events: none;
    border-bottom: 1px solid #fff;
    font-size: 1.125em;
    padding-left: 0;
    padding-top: 1em;
    padding-bottom: 0.5em;
  }
  .pc_navi > ul .mcol-2 .subInner > ul > .menu-item-has-children > a::before, .pc_navi > ul .mcol-2 .subInner > ul > .menu-item-has-children > p::before {
    display: none;
  }
  .pc_navi > ul .mcol-2 .subInner .subInner {
    width: 100% !important;
    position: static !important;
    transform: unset !important;
    padding-top: 0 !important;
  }
  .pc_navi > ul .mcol-2 .subInner .subInner ul li {
    width: 100%;
  }
  .pc_navi > ul .mcol-2 .subInner .subInner ul li.w50 {
    width: 50%;
  }
  .pc_navi > ul .col2 .subInner {
    width: 500px;
  }
  .pc_navi > ul .col2 .subInner ul {
    display: flex;
    flex-wrap: wrap;
  }
  .pc_navi > ul .col2 .subInner ul li {
    width: 50%;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .pc_navi > ul .mcol-2 .subInner {
    width: 510px;
    right: 160%;
  }
  .pc_navi > ul {
    font-size: 1.4vw;
  }
  .pc_navi > ul .subInner ul li a {
    font-size: 12px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1280px) {
  .pc_navi > ul .subInner ul li a {
    font-size: 12px;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 769px) {
  :root {
    --ttl_size: 22px;
    --wrapper: 60px;
  }
}
.time_sheet {
  margin: 0px auto;
}
.time_sheet .note {
  margin-top: 15px;
  margin-left: -2px;
  line-height: 2;
  font-size: 14px;
  letter-spacing: 0.1em;
}
.time_sheet .note span {
  display: inline-block;
}
.time_sheet table th,
.time_sheet table td {
  border-top: none;
  border-right: none;
  border-left: none;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.1em;
  width: 9.9%;
  border-bottom: 1px solid var(--clr1);
}
.time_sheet table th:first-child,
.time_sheet table td:first-child {
  width: auto;
  padding-left: 1.9%;
}
.time_sheet table th:last-child,
.time_sheet table td:last-child {
  width: 16.05%;
  padding-left: 0.8em;
  text-align: left;
}
.time_sheet table th {
  padding: 0.6em 0.2em;
}
.time_sheet table td {
  padding: 1.35em 0.2em 1.65em;
  color: var(--main-color);
}
.time_sheet table td:first-child {
  color: #333;
}
.time_sheet table tr:nth-child(3) td {
  padding-bottom: 1.6em;
}

.totop {
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  position: fixed;
  z-index: 15;
  bottom: 20px;
  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: 60px;
  height: 60px;
  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;
  }
}
.idx_gallery {
  position: relative;
  z-index: 2;
}
.idx_gallery:not(.slick-initialized) {
  opacity: 0;
  height: 1px;
}
.idx_gallery .item {
  width: 300px;
  height: auto;
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin: 0 15px;
}
.idx_gallery .item:nth-child(odd) {
  margin-top: 70px;
}
.idx_gallery .item1 {
  background-image: url(../images/ft_img1.png);
}
.idx_gallery .item2 {
  background-image: url(../images/ft_img2.png);
}
.idx_gallery .item3 {
  background-image: url(../images/ft_img3.png);
}
.idx_gallery .item4 {
  background-image: url(../images/ft_img4.png);
}

.fixed_banner {
  position: fixed;
  top: 218px;
  right: 0px;
  z-index: 15;
  transition: right 0.3s ease-in-out;
}
.fixed_banner:hover {
  right: 0;
}
.fixed_banner > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
}
.fixed_banner a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  z-index: 1;
}
.fixed_banner .tt {
  margin-bottom: 0;
  color: #fff;
  letter-spacing: 0.12em;
  line-height: 1.2222222222;
  text-align: center;
}
.fixed_banner .tt::before {
  content: "";
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: auto 100%;
  background-color: var(--main-color);
  display: block;
  width: 100%;
  margin-bottom: 8px;
}
.fixed_banner .tel .tt::before {
  mask-image: url(../images/icon_tel.svg);
}
.fixed_banner .reservation .tt::before {
  mask-image: url(../images/icon_reservation.svg);
}
.fixed_banner .tel .tt i {
  font-style: normal;
}
.fixed_banner .tel .tt span {
  writing-mode: tb-rl;
}
.fixed_banner .web {
  position: relative;
}
.fixed_banner .web .tt::before {
  mask-image: url(../images/icon_timer.svg);
}
.fixed_banner .mail .tt::before {
  mask-image: url(../images/icon_location.svg);
}
.fixed_banner .mail .f_address1 {
  font-weight: 500;
  line-height: 1.375;
  margin: 10px 0;
  text-align: center;
}
.fixed_banner .mail .f_address2 {
  max-width: 21em;
  display: flex;
  align-items: center;
  background-color: #fff5e1;
  border-radius: 10px;
  font-size: 0.875em;
  font-weight: 500;
  letter-spacing: 0.06em;
  justify-content: center;
  padding: 0.2143em 2.1429em 0.2857em 2.2857em;
  margin-bottom: 0;
  text-align: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
.fixed_banner .mail .f_address2::before {
  content: "";
  display: block;
  background: url(../images/idx10_icon.svg) no-repeat center/contain;
  width: 1.2857em;
  height: 1.4286em;
  margin-right: 1em;
}
.fixed_banner .ov {
  position: absolute;
  min-width: 34.375em;
  font-size: 1.6em;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s all;
  background: #fdedd4;
  padding: 10px;
  border: 2px solid #fdedd4;
  border-radius: 10px;
  box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.1);
}
.fixed_banner .shared_tbl {
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
}
.fixed_banner p.close {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s all;
  position: absolute;
  inset: 0;
  font-size: 1.6em;
  letter-spacing: 0.05em;
  writing-mode: vertical-lr;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--clr1);
  font-weight: 500;
  background: #fff;
  margin: 0;
}
.fixed_banner p.close:before {
  content: "";
  display: block;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(../images/close.png);
  width: 1em;
  height: 1em;
  background-color: var(--main-color);
  margin-bottom: 0.5em;
}
.fixed_banner div.active p.close {
  opacity: 1;
  visibility: visible;
}
.fixed_banner div.active .ov {
  opacity: 1;
  visibility: visible;
}
.fixed_banner .btn-group .btn {
  max-width: 170px;
  margin-top: 10px;
}
.fixed_banner .f_tel {
  font-family: var(--f-en);
}
.fixed_banner .f_tel a {
  position: static;
  text-decoration: none;
  line-height: 1;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.05em;
  color: var(--main-color);
}
.fixed_banner .f_tel a .num {
  font-size: 1.4286em;
  margin-left: 0.15em;
  letter-spacing: 0.05em;
}

.fixed_banner .reservation:hover {
	background: #fff !important;
}
.fixed_banner .reservation:hover .tt {
	color: #333 !important;
}
.fixed_banner .reservation:hover .tt::before {
	background: var(--main-color) !important;
}

@media only screen and (min-width: 769px) {
  .fixed_banner {
    font-size: 10px;
    border: 1px solid var(--main-color);
    border-radius: 10px 0 0 10px;
  }
  .fixed_banner > div {
    cursor: pointer;
    width: 5.5em;
    height: auto;
    background-color: #fff;
	  padding: 1.5em 0;
  }
  .fixed_banner > div:first-child {
    border-radius: 10px 0 0 0;
  }
  .fixed_banner > div:last-child {
    border-radius: 0 0 0 10px;
  }
  .fixed_banner > div:not(.active):hover {
    background-color: var(--main-color);
  }
  .fixed_banner > div:not(.active):hover p::before {
    background-color: #fff;
  }
  .fixed_banner > div:not(.active):hover p {
    color: #fff;
  }
  .fixed_banner .ov {
    right: calc(100% + 1em);
  }
  .fixed_banner .ov::after {
    content: "";
    display: block;
    position: absolute;
    transition: all 0.3s;
    border-left: 0.625em solid #fdedd4;
    border-bottom: 0.625em solid transparent;
    border-top: 0.625em solid transparent;
    top: calc(50% - 0.625em);
    left: 100%;
  }
  .fixed_banner .tt {
    font-size: 1.5em;
    letter-spacing: 0.05em;
    writing-mode: vertical-lr;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    font-weight: 500;
  }
  .fixed_banner .tt::before {
    display: block;
    width: 1.3333em;
    height: 1.3333em;
    margin-bottom: 0.3333em;
  }
  .fixed_banner .tel::before {
   content: '';
	  position: absolute;
	          height: 1px;
        width: 25px;
        background-color: #ebebeb;
	  top: 0;
  }
  .fixed_banner .tel p.close {
    border-radius: 9px 0 0 0;
  }
  .fixed_banner .tel .ov {
    min-width: unset;
    white-space: nowrap;
  }
  .fixed_banner .tel .f_tel a {
    font-size: 1.5em;
  }
  .fixed_banner p.close {
    transition: 0.3s all;
  }
  .fixed_banner p.close:hover {
    background-color: var(--main-color);
  }
  .fixed_banner p.close:hover::before {
    background-color: #fff;
  }
  .fixed_banner p.close:hover {
    color: #fff;
  }
  .fixed_banner .web {
    cursor: pointer;
    
    position: relative;
    transition: 0.3s all;
  }
  .fixed_banner .web::before, .fixed_banner .web::after {
    content: "";
    display: block;
    position: absolute;
    transition: all 0.3s;
    height: 1px;
    width: 25px;
    background-color: #ebebeb;
  }
  .fixed_banner .web::before {
    top: 0;
  }
  .fixed_banner .web::after {
    bottom: 0;
  }
  .fixed_banner .mail {
    cursor: pointer;
    
    transition: 0.3s all;
  }
  .fixed_banner .mail p.close {
    border-radius: 0 0 0 9px;
  }
  .fixed_banner .mail .ov {
    background: #fdedd4;
    padding: 10px;
    border: 2px solid #fff5e1;
    border-radius: 10px;
  }
  .fixed_banner .mail .ov iframe {
    height: 200px;
    display: block;
    width: 100%;
  }
  .fixed_banner .btn a {
    font-size: 14px !important;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1366px), (min-width: 769px) and (max-height: 720px) {
  .fixed_banner {
    font-size: 8px;
    top: 120px;
  }
  .totop {
    right: 10px;
  }
  .totop .icon {
    width: 50px;
    height: 50px;
  }
}
.ft_link {
  --clr: #fff;
}
.ft_link a {
  text-decoration: none;
}
@media only screen and (min-width: 769px) {
  .ft_link .link_list .link_list_item:first-child {
    padding-top: 25px;
    width: 24%;
  }
  .ft_link .link_list .link_list_item:last-child {
    width: 75.7%;
    border-radius: 70px;
  }
  .ft_link .menu1 {
    width: 54%;
  }
  .ft_link .menu2 {
    width: 45%;
  }
}
@media only screen and (min-width: 1280px) {
  .ft_link .menu {
    white-space: nowrap;
  }
}
.ft_link .link_list .link_list_item:last-child {
  background-color: #a0caa0;
}
.ft_link .title {
  margin-bottom: 21px;
  padding-left: 0;
  font-weight: 600;
  color: var(--clr);
  letter-spacing: 0.1em;
  line-height: 1;
  pointer-events: none;
  font-size: 16px;
  font-family: var(--f-en);
}
.ft_link .title::before {
  display: none;
}
.ft_link .title_small {
  margin-top: 35px;
  padding-left: 1em;
  color: var(--clr);
  letter-spacing: 0.1em;
  font-weight: 500;
  position: relative;
  line-height: 1.5;
  margin-bottom: 14px;
}
.ft_link .title_small::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  width: 6px;
  height: 6px;
  background-color: var(--clr);
  border-radius: 50%;
  top: 0.625em;
  left: 0;
}
.ft_link ul:last-child {
  margin-bottom: 0;
}
.ft_link li {
  margin-bottom: 13.3px;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
.ft_link li.last {
  margin-bottom: 29px;
}
.ft_link li:last-child {
  margin-bottom: 0;
}
.ft_link a {
  padding-left: 1em;
  color: var(--clr);
  letter-spacing: 0.1em;
  font-weight: 500;
  position: relative;
  line-height: 1.4285714286;
  display: table;
}
.ft_link a::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  width: 6px;
  height: 6px;
  background-color: var(--clr);
  border-radius: 50%;
  top: 0.625em;
  left: 0;
}
.ft_link a:hover {
  opacity: 1;
  color: var(--clr);
}
@media only screen and (min-width: 769px) {
  .ft_link a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
  }
}
.ft_link .ft_menu_right {
  background-color: #a0caa0;
  border-radius: 70px;
  padding: 69px 68px;
}
.ft_link .menu {
  padding-left: 0.5em;
}
.ft_link .menu ul li:not(:last-child) {
  margin-bottom: 10px;
}
.ft_link .menu ul li a {
  font-size: 14px;
}
.ft_link .menu ul li a::before {
  border-radius: unset;
  width: 0.3571em;
  height: 1px;
  top: 1em;
}

footer {
  background-color: #fff5e1;
  padding: 74px 0 101px;
  position: relative;
  z-index: 1;
}
footer::after {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  inset: 0;
  background-color: #b2d4b2;
  border-radius: 120px 120px 0 0;
}

.copyright p {
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #fff;
  margin-top: -1.2em;
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
  footer .ft_link ul li a {
    font-size: 12px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1366px) {
  .logo {
    width: 23%;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 769px) {
  .logo {
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    margin-bottom: 0;
  }
  .right_head {
    width: 68%;
    padding-left: 10px;
    padding-right: 10px;
  }
  .pc_navi > ul > li > a,
  .pc_navi > ul > li > p {
    letter-spacing: 0;
    font-size: min(1.4vw, 14px);
  }
  .pc_navi > ul > li:not(:last-child)::after {
    left: calc(100% + 1em);
  }
  .idx_gallery .item {
    width: 200px;
  }
  .idx_gallery .item:nth-child(odd) {
    margin-top: 30px;
  }
  footer {
    padding: 60px 0;
  }
  footer::after {
    border-radius: 80px 80px 0 0;
  }
  footer .inner {
    padding: 0 20px;
  }
  footer .ft_link .link_list .link_list_item:last-child {
    padding: 20px;
    border-radius: 40px;
  }
}
@media only screen and (max-width: 850px) and (min-width: 769px) {
  .pc_navi > ul > li:not(:last-child)::after {
    left: calc(100% + 0.7em);
  }
  .ft_link a {
    letter-spacing: 0;
    font-size: 12px;
  }
}
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*==========================================================================*/
/*                                INDEX                                     */
/*==========================================================================*/
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*==========================================================================*/
/*                                Under                                     */
/*==========================================================================*/
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
.shared_tbl {
  background: #fff5e1;
  border-radius: 10px;
  padding: 4px 30px 8px;
  position: relative;
}
.shared_tbl table tr th,
.shared_tbl table tr td {
  border: 0;
  padding: 0;
  text-align: center;
  border-bottom: 1px solid #e2e2e0;
  font-weight: 500;
  padding-top: 20px;
  padding-bottom: 23px;
  width: 9.7%;
}
.shared_tbl table tr th:first-child,
.shared_tbl table tr td:first-child {
  width: auto;
  padding-left: 1.1em;
}
.shared_tbl table tr th:last-child,
.shared_tbl table tr td:last-child {
  width: 13.25%;
  padding-right: 20px;
}
.shared_tbl table tr td {
  color: var(--main-color);
}
.shared_tbl table tr td:first-child {
  font-size: 18px;
  color: var(--clr1);
}
.shared_tbl .main_clr {
  color: var(--main-color);
  letter-spacing: 0.025em;
}
.shared_tbl .clr1 {
  color: var(--clr1);
}
.shared_tbl .clr2 {
  color: var(--clr2);
}
.shared_tbl .flex {
  padding-top: 15px;
}
.shared_tbl p {
  line-height: 1.7;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.1em;
}
.shared_tbl .btn-group {
  width: 193px;
  position: absolute;
  bottom: -30px;
  right: 30px;
  margin: 0;
}
@media only screen and (max-width: 768px) {
  .shared_tbl {
    padding: 4px 14px 44px;
  }
  .shared_tbl table tr th,
  .shared_tbl table tr td {
    padding-top: 13px;
    padding-bottom: 13px;
    width: 11%;
    font-size: 14px;
  }
  .shared_tbl table tr th:first-child,
  .shared_tbl table tr td:first-child {
    width: auto;
    padding-left: 0;
  }
  .shared_tbl table tr th:last-child,
  .shared_tbl table tr td:last-child {
    width: 9.25%;
    padding-right: 0;
  }
  .shared_tbl table tr th {
    padding-top: 13px;
    padding-bottom: 16px;
  }
  .shared_tbl table tr td:first-child {
    font-size: 16px;
    line-height: 1.125;
    text-align: left;
    padding-left: 0.5em;
  }
  .shared_tbl .flex {
    padding-top: 12px;
    flex-direction: column;
  }
  .shared_tbl .flex .main_clr {
    order: -1;
  }
  .shared_tbl .btn-group {
    width: 162px;
    position: absolute;
    bottom: -30px;
    right: calc(50% - 81px);
    margin: 0;
  }
}
@media only screen and (max-width: 345px) {
  .shared_tbl p {
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 1366px) {
  .shared_tbl table tr th,
  .shared_tbl table tr td {
    letter-spacing: 0;
  }
}

.br769 {
  display: none;
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .br769 {
    display: block;
  }
}
.under .shared_tbl {
  background-color: #fff;
}
.under .shared_tbl table tr {
  padding-bottom: 23px;
}
.under .shared_tbl table tr th,
.under .shared_tbl table tr td {
  padding-top: 20px;
}
.under .shared_tbl table tr th {
  padding-top: 0;
}