@charset "UTF-8";
:root {
  --f-notosans: "Noto Sans JP", sans-serif;
  --f-jp: "Noto Sans JP", sans-serif;
  --f-en: "Roboto", sans-serif;
  --main-color: #339ACC;
  --clr1: #262626;
  --clr2: #AAAAAA;
  --clr3: #F6CE49;
  --clr3-hv: #ff6600;
  --ttl_size: 30px;
  --border-radius: 20px;
  --value-transition: all .3s;
  --line-height-p: 2.1875;
  --size-space-hd-around: 20px;
  --wrapper: 85px;
  --size-w-hamburger: 96px;
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
  :root {
    --size-w-hamburger: 80px;
  }
}
/*==========================================================================*/
/*//////////////////////////////////////////////////////////////////////////*/
/*//////                                                              //////*/
/*//////  Copyright (C) 2009 株式会社フリーセル All Rights Reserved.  //////*/
/*//////                                                              //////*/
/*//////////////////////////////////////////////////////////////////////////*/
/*                                                                          */
/*    base.css  --> スタイルの初期設定を行うため、変更しないで下さい。      */
/*    fonts.css --> フォントの初期設定を行うため、変更しないで下さい。      */
/*                                                                          */
/*==========================================================================*/
/*==========================================================================*/
/*                           Common-Setting                                 */
/*==========================================================================*/
body {
  background-color: #ffffff;
  -webkit-text-size-adjust: none;
  letter-spacing: 0.1em;
  color: var(--clr1);
  font-family: var(--f-notosans);
}
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 {
  display: table;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

a:not(.tel_click) {
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  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:not(.tel_click):hover, a:not(.tel_click):active {
    color: #64b5f7;
  }
}
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;
}

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

p {
  line-height: var(--line-height-p);
  letter-spacing: 0.1em;
  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_max,
.inner_big,
.inner,
.inner_sm {
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.inner_max {
  max-width: 1640px;
}

.inner_big {
  max-width: 1440px;
}

.inner {
  max-width: 1140px;
}

.inner_sm {
  max-width: 1020px;
}

.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;
  }
}
.TabContainer {
  --cl-mode: var(--cl-mode-main);
}
.TabContainer .TabContent {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.TabContainer .TabContent .content {
  transition: all 0.3s ease-in-out;
  background-color: white;
}
.TabContainer .TabContent .content > div {
  opacity: 0;
  z-index: -10;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 60px 80px 60px;
  transition: all 0.5s ease-in-out;
}
.TabContainer .TabContent .content > div.active {
  opacity: 1;
  z-index: 1;
  visibility: visible;
}
.TabContainer .TabPager {
  display: flex;
  justify-content: center;
  width: calc(100% - 60px);
  font-size: min(0.9vw, 10px);
}
.TabContainer .TabPager.item_left {
  justify-content: flex-start;
}
.TabContainer .TabPager.item_right {
  justify-content: flex-end;
  margin-right: 0;
  margin-left: auto;
}
.TabContainer .TabPager > div {
  background-color: #a4c7ce;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  margin: 0;
  padding: 1em;
  width: fit-content;
  min-width: 22em;
  min-height: 12em;
  transition: all 0.3s ease;
  cursor: pointer;
  background-color: #EFEFEF;
}
.TabContainer .TabPager > div:first-child {
  border-top-left-radius: 20px;
}
.TabContainer .TabPager > div:last-child {
  border-top-right-radius: 20px;
}
.TabContainer .TabPager > div p {
  margin-bottom: 0;
  font-size: 1.6em;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.5;
  color: var(--clr1);
  text-align: center;
  transition: var(--value-transition);
}
.TabContainer .TabPager > div p .txt-top {
  display: block;
  margin-bottom: -1px;
  font-size: 1.125em;
  color: var(--clr2);
}
.TabContainer .TabPager > div.active {
  background-color: #fff;
  z-index: 1;
}
.TabContainer .TabPager > div.active p .txt-top {
  color: var(--cl-mode);
}
@media only screen and (min-width: 769px) {
  .TabContainer .TabPager > div:not(.active):hover {
    background-color: #d3d2d2;
  }
}

@media only screen and (min-width: 769px) and (max-width: 1280px) {
  .TabContainer .TabContent .content > div {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .TabContainer .TabContent .content > div {
    padding: 40px 20px;
  }
}
@media only screen and (max-width: 768px) {
  .TabContainer .TabPager {
    font-size: min(1.7vw, 8px);
  }
  .TabContainer .TabPager > div {
    min-width: 50%;
  }
  .TabContainer .TabPager > div > p {
    font-size: 2em;
  }
  .TabContainer .TabContent .content > div {
    padding: 40px 20px;
  }
}
.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;
}

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

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

.link > a {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.tel_click {
  display: table;
  text-decoration: none;
}
.tel_click .icon {
  display: flex;
  align-items: center;
  font-family: var(--f-en);
  font-weight: 700;
  color: var(--main-color);
  letter-spacing: 0.05em;
  font-size: 1.5em;
}
.tel_click .icon::before {
  content: "";
  display: block;
  margin-right: 0.3214em;
  margin-top: 0.1786em;
  width: 0.893em;
  height: 0.893em;
  --mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 101' %3E%3Cpath d='M97.829,82.824 C98.198,91.823 96.073,94.826 87.308,97.205 C74.144,100.791 61.788,98.752 50.561,91.066 C33.671,79.497 19.384,65.207 7.912,48.225 C-0.287,36.096 -1.826,22.855 2.769,8.952 C4.752,2.953 8.059,0.771 14.407,0.925 C23.639,1.157 23.633,1.157 26.561,10.079 C27.869,14.063 29.100,18.078 30.561,22.007 C32.367,26.859 31.432,30.918 27.914,34.711 C22.303,40.765 22.378,40.854 26.680,47.891 C33.854,59.628 43.600,68.580 55.717,75.040 C57.758,76.123 59.178,76.250 60.774,74.416 C62.051,72.951 63.620,71.738 65.076,70.429 C68.123,67.696 71.576,66.743 75.537,68.072 C82.013,70.255 88.532,72.319 94.923,74.723 C96.087,75.162 97.048,76.900 97.511,78.240 C97.992,79.641 97.756,81.285 97.829,82.824 Z'/%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: var(--main-color);
}

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

.en-big {
  font-size: clamp(110px, 11.2vw, 215px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  .en-big {
    font-size: min(21vw, 120px);
  }
}

.btn a {
  position: relative;
  color: var(--main-color);
  text-decoration: none;
  font-family: var(--f-jp);
}
.btn a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0.9375em;
  margin: auto 0;
  width: 1.25em;
  height: 1.25em;
  border-radius: 50%;
  background: url(../images/idx_btn_arrow.svg) no-repeat left 51% top 50%/0.375em auto;
  background-color: white;
}

.btn-group {
  font-size: 0.625em;
}
.btn-group .btn {
  font-size: 1em;
}
.btn-group .btn.style01 {
  width: 100%;
  min-width: 120px;
  max-width: 330px;
  overflow: hidden;
}
.btn-group .btn.style01 a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 4.375em;
  height: 100%;
  padding: 0.5em 2.5em 0.5em 1.6875em;
  font-size: 1.6em;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 500;
  text-align: left;
  background-color: var(--main-color);
  transition: all 0.3s;
  border-radius: 10px;
  color: var(--clr1);
  background-color: var(--clr3);
}
.btn-group .btn.style01 a::after {
  background-color: #fff;
}
.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: #DEB42B;
  }
}
@media only screen and (min-width: 769px) {
  .btn-group .btn.space02 a {
    padding-left: 2.4em;
  }
}
.btn-group .btn.bg01 a {
  background-color: #fff;
  color: var(--main-color);
}
.btn-group .btn.bg01 a::after {
  background-color: var(--main-color);
}
@media only screen and (min-width: 769px) {
  .btn-group .btn.center {
    margin-left: auto;
    margin-right: auto;
  }
}
.btn-group .btn-news {
  display: table;
  min-width: 180px;
}
.btn-group .btn-news a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5em;
  border-radius: 30px;
  width: 100%;
  height: 100%;
  min-height: 55px;
  font-size: 1.6em;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--value-transition);
  color: #A57B07;
  background-color: var(--clr3);
}
.btn-group .btn-news a:hover {
  opacity: 1;
}
@media only screen and (min-width: 769px) {
  .btn-group .btn-news a:not([target*=_blank]):hover {
    background-color: var(--clr3-hv);
    color: #fff;
  }
}

.yt {
  max-width: 960px;
  margin: 0px auto;
}

.box_yt {
  max-width: 630px;
  border-radius: 10px;
  overflow: hidden;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.slick-arrow {
  display: block;
  border: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-color: transparent;
  position: absolute;
  top: 37%;
  width: 2em;
  height: 2em;
  transform: translateY(-50%);
  cursor: pointer;
  color: transparent;
}
.slick-arrow:focus {
  outline: 0;
}

.slick-prev {
  left: -1em;
}

.slick-next {
  right: -1em;
}

/* Tablet
-------------------------------------------*/
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  body {
    font-size: 87.5%;
  }
}
.br_auto {
  display: inline-block;
}

@media only screen and (max-width: 319px) {
  .br_auto {
    display: inline;
  }
}
.br_1366,
.br_1280,
.br_1170,
.br_769,
.ft_br_769,
.br_750,
.br_640,
.br_520,
.br_480,
.br_430,
.br_390,
.br_375,
.br_360,
.br_320 {
  display: none;
}

@media only screen and (min-width: 769px) and (max-width: 1366px) {
  .br_1366 {
    display: block;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1280px) {
  .br_1280,
  footer .ft_br_1280 {
    display: block;
  }
  .dis_1280 {
    display: none;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1170px) {
  .br_1170 {
    display: block;
  }
  .dis_1170 {
    display: none;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  footer .ft_br_769,
  .br_769 {
    display: block;
  }
  .dis_769 {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .br_750 {
    display: block;
  }
  .dis_750 {
    display: none;
  }
}
@media only screen and (max-width: 640px) {
  .br_640 {
    display: block;
  }
  .dis_640 {
    display: none;
  }
}
@media only screen and (max-width: 520px) {
  .br_520 {
    display: block;
  }
  .dis_520 {
    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: 430px) {
  .br_430 {
    display: block;
  }
  .in_430 {
    display: inline;
  }
  .dis_430 {
    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: 375px) {
  .br_375 {
    display: block;
  }
  .in_375 {
    display: inline;
  }
  .dis_375 {
    display: none;
  }
}
@media only screen and (max-width: 360px) {
  .br_360 {
    display: block;
  }
  .dis_360 {
    display: none;
  }
  .in_360 {
    display: inline;
  }
}
@media only screen and (max-width: 350px) {
  .in_320 {
    display: inline;
  }
  .br_320 {
    display: block;
  }
  .dis_320 {
    display: none;
  }
  .inside .inside_br_320 {
    display: block;
  }
}
@media only screen and (max-width: 319px) {
  .br_769,
  .br_640,
  .br_520,
  .br_480,
  .br_430,
  .br_375 {
    display: none;
  }
}
.flex_gr {
  --size-mg: 5px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: calc(var(--size-mg) * -1);
}
.flex_gr .item {
  width: 100%;
  margin: var(--size-mg);
}
@media only screen and (min-width: 769px) {
  .flex_gr.col-2 .item {
    width: calc(50% - 2 * var(--size-mg));
  }
  .flex_gr.col-3 .item {
    width: calc(33.333333% - 2 * var(--size-mg));
  }
  .flex_gr.col-4 .item {
    width: calc(25% - 2 * var(--size-mg));
  }
  .flex_gr.col-5 .item {
    width: calc(20% - 2 * var(--size-mg));
  }
}

.link a {
  position: absolute;
  display: block;
  inset: 0;
  z-index: 2;
}

.faq_gr {
  counter-reset: count_faq;
}

.under .faq_box .box {
  margin-bottom: 30px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}
.under .faq_box .box:last-child {
  margin-bottom: 0;
}
.under .faq_box .box h4 {
  margin-bottom: 0;
}

.faq_box {
  --f-size-h4: 18px;
  --size-space-right: 30px;
  --cl-mode: var(--main-color);
}
.faq_box .box {
  border-radius: 10px;
  background-color: white;
  overflow: hidden;
}
.faq_box .box:not(:last-child) {
  margin-bottom: 10px;
}
.faq_box .accBtn {
  position: relative;
  z-index: 1;
  padding: 24px calc(var(--size-space-right) + 25px) 24px 24px;
  min-height: 42px;
  cursor: pointer;
  transition: all 0.3s;
}
.faq_box .accBtn.rotate .plus::before {
  transform: rotate(90deg);
  opacity: 0;
}
@media only screen and (min-width: 769px) {
  .faq_box .accBtn:hover {
    --cl-mode: var(--clr3);
  }
}
.faq_box .plus {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 15px;
  height: 15px;
  right: var(--size-space-right);
}
.faq_box .plus::before, .faq_box .plus::after {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: var(--cl-mode);
}
.faq_box .plus::before {
  width: 2px;
  height: 100%;
}
.faq_box .plus::after {
  height: 2px;
  width: 100%;
}
.faq_box h4 {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  padding: 0;
  margin-bottom: 0;
  border-bottom: none;
  color: #fff;
  border-radius: 0;
  transition: all 0.3s;
  font-size: var(--f-size-h4) !important;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--clr1);
  transition: var(--value-transition);
}
.faq_box h4:hover {
  cursor: pointer;
}
.faq_box h4::before {
  display: none;
}
.faq_box h4::after {
  content: "Q." counter(count_faq, decimal-leading-zero);
  counter-increment: count_faq;
  position: relative;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: flex-start;
  margin-right: 15px;
  min-width: 5em;
  height: 2.625em;
  border-radius: 21px;
  line-height: 1;
  font-family: var(--f-en);
  font-size: calc(var(--f-size-h4) - 2px);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: white;
  background-color: var(--cl-mode);
  transition: var(--value-transition);
}
.faq_box .content {
  padding: 0 var(--size-space-right) 26px;
  transform: translateY(-4px);
}
.faq_box .content p {
  letter-spacing: 0.05em;
  line-height: 1.875;
}
.faq_box .content p:not(:last-child) {
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .faq_box .content p:not(:last-child) {
    margin-bottom: 15px;
  }
}
.faq_box .content .ct_catch {
  padding: 26px 30px;
  border-radius: 10px;
  border: 1px solid #EDEDED;
}

@media only screen and (max-width: 768px) {
  .faq_box {
    --f-size-h4: 16px;
    --size-space-right: 20px;
  }
  .faq_box .accBtn {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: var(--size-space-right);
  }
  .faq_box .content .ct_catch {
    padding: 15px 20px;
  }
}
@media only screen and (max-width: 430px) {
  .faq_box {
    --size-space-right: 15px;
  }
  .faq_box h4::after {
    min-width: 60px;
    margin-right: 10px;
  }
}
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*==========================================================================*/
/*                           Header - Footer                                */
/*==========================================================================*/
h1 {
  position: absolute;
  overflow: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
}

header {
  --navi-radius: 60px;
  position: fixed;
  top: var(--size-space-hd-around);
  left: 0;
  width: 100%;
  z-index: 20;
  font-size: min(0.7vw, 10px);
}

.ovh .hamburger-btn {
  width: 80px;
  height: 80px;
  top: 25px;
  right: 25px;
  border-radius: 20px;
  background-color: #EAE3D2;
}
.ovh .hamburger-btn #nav-icon {
  width: 27px;
}
.ovh .hamburger-btn #nav-icon span {
  background-color: #9D9D9D;
}

.ovh header .header_top {
  opacity: 0;
  height: 0;
}

.header_top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  padding-left: var(--size-space-hd-around);
  margin: 0 auto;
  height: 100%;
  transition: all 0.3s;
}

.logo {
  width: 26%;
  max-width: 490px;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
}
.logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 45px 7px;
  height: var(--wrapper);
  border-radius: 55px;
  width: 100%;
  text-align: center;
  background-color: white;
}
.right_head {
  position: relative;
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  height: var(--wrapper);
}

.pc_navi {
  position: relative;
  padding-right: var(--size-w-hamburger);
  padding-left: 2.4em;
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: var(--navi-radius) 0 0 var(--navi-radius);
  transition: var(--value-transition);
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
}
.pc_navi.show-sub {
  border-bottom-left-radius: 0;
  border-top-left-radius: 42.5px;
}
.pc_navi > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  text-align: center;
  width: 100%;
}
.pc_navi > ul > li {
  border-right: 1px solid #EDEDED;
}
@media only screen and (min-width: 769px) {
  .pc_navi > ul > li:hover > a,
  .pc_navi > ul > li:hover > p {
    opacity: 1;
    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 {
    background-image: url(../images/hd_pc_navi_icon_arr_hv.png);
    background-size: 0.75em auto;
  }
}
.pc_navi > ul > li:last-child {
  border-right: none;
}
.pc_navi > ul > li.menu-item-has-children > a,
.pc_navi > ul > li.menu-item-has-children > p {
  display: flex;
}
.pc_navi > ul > li.menu-item-has-children > a::before,
.pc_navi > ul > li.menu-item-has-children > p::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(100% + (var(--wrapper) - 2.8125em) / 2);
}
.pc_navi > ul > li.menu-item-has-children > a::after,
.pc_navi > ul > li.menu-item-has-children > p::after {
  content: "";
  display: block;
  min-width: 1.2813em;
  height: 100%;
  background: url(../images/hd_pc_navi_icon_arr.png) no-repeat right top 54%/0.5em auto;
  transition: all 0.2s ease;
}
.pc_navi > ul > li > a,
.pc_navi > ul > li > p {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0 2.125em;
  height: 2.8125em;
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 1.5;
  letter-spacing: 0.1em;
  transition: all 0.2s ease;
  color: var(--clr1);
}
.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 > .subInner {
  position: absolute;
  width: 100%;
  right: 0;
  top: var(--wrapper);
  padding-top: 0px;
  transition: var(--value-transition);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}
.pc_navi > ul > li > .subInner::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(237, 237, 237, 0.6);
}
.pc_navi > ul > li > .subInner.active {
  opacity: 1;
  visibility: visible;
}

.pc_navi {
  --size-space-item-menu: 5px;
}

.pc_navi > ul > li > .subInner .subInner {
  position: relative;
}
.pc_navi > ul > li > .subInner li {
  margin-bottom: 2.5em;
}
.pc_navi > ul > li > .subInner li:last-child {
  margin-bottom: 0;
}
.pc_navi > ul > li > .subInner > ul {
  padding: 4.1em 13.2% 4.5em 4.5em;
  background-color: white;
  border-bottom-left-radius: 42.5px;
}
.pc_navi > ul > li > .subInner li.col-2 > a,
.pc_navi > ul > li > .subInner li.col-3 > a {
  display: table;
  padding: 0;
  margin-bottom: 0.45em;
  margin-left: 0.3em;
  min-height: unset;
  background-color: transparent;
  font-size: 2em;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: var(--main-color);
  pointer-events: none;
  background: transparent;
}
.pc_navi > ul > li > .subInner li.col-2 > a::after,
.pc_navi > ul > li > .subInner li.col-3 > a::after {
  display: none;
}
.pc_navi > ul > li > .subInner ul > li > a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.3125em 1.875em 0.3125em 1.125em;
  max-width: 365px;
  min-height: 3.25em;
  border-radius: 5px;
  font-size: 1.6em;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-decoration: none;
  text-align: left;
  color: var(--clr1);
  background: url(../images/subinner_arr_ico.png) no-repeat center right 0.8438em/0.4688em auto;
  background-color: #F7F7F7;
  transition: var(--value-transition);
}
.pc_navi > ul > li > .subInner ul > li > a:hover {
  opacity: 1;
  background-color: #dbdada;
}

.pc_navi > ul li.col-2 .subInner ul, .pc_navi > ul li.col-3 .subInner ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.pc_navi > ul li.col-2 .subInner ul li, .pc_navi > ul li.col-3 .subInner ul li {
  margin: var(--size-space-item-menu);
}
.pc_navi > ul li.col-2 .subInner ul li {
  width: calc(50% - 2 * var(--size-space-item-menu));
  margin: var(--size-space-item-menu);
}
.pc_navi > ul li.col-3 .subInner ul li {
  width: calc(33.3333% - 2 * var(--size-space-item-menu));
  max-width: 240px;
}

@media only screen and (min-width: 769px) and (max-width: 1366px) {
  .pc_navi > ul > li > .subInner > ul {
    font-size: 0.8em;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .pc_navi > ul > li > .subInner > ul {
    font-size: min(1.1em, 7px);
  }
  .pc_navi > ul > li > .subInner > ul {
    padding-right: 4em;
    padding-left: 4em;
  }
  .pc_navi > ul > li > .subInner ul > li > a {
    min-height: 4em;
  }
}
@media only screen and (min-width: 769px) {
  .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: 1366px) {
  :root {
    --wrapper: 75px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .logo a {
    padding: 10px 20px;
  }
  :root {
    --wrapper: 60px;
  }
  .pc_navi > ul > li > a,
  .pc_navi > ul > li > p {
    padding-left: 1em;
    padding-right: 1em;
  }
  .pc_navi > ul .subInner ul li a {
    font-size: 12px;
  }
}
.inside_menu {
  font-size: min(0.55vw, 10px);
}
.inside_menu .item_box {
  padding: 4em 3.9em 3.5em;
  border-radius: 20px;
  margin-bottom: 2em;
  background-color: white;
}
.inside_menu .item_box .title {
  margin-bottom: 13px;
  font-size: 2.5em;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: var(--main-color);
}
.inside_menu .item_box .title-sub {
  margin-top: 1.05em;
  margin-bottom: 3px;
  font-size: 2em;
  font-weight: 700;
}
.inside_menu .item_box ul {
  display: flex;
  flex-flow: column wrap;
  align-content: space-between;
  margin-left: calc(var(--size-mg) * -1);
  margin-right: calc(var(--size-mg) * -1);
}
.inside_menu .item_box ul > li {
  margin: var(--size-mg);
}
.inside_menu .item_box ul > li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.5em 1.7em 0.5em 1.125em;
  min-height: 3.25em;
  border-radius: 5px;
  font-size: 1.6em;
  color: var(--clr1);
  line-height: 1.6;
  text-decoration: none;
  background: url(../images/subinner_arr_ico.png) no-repeat center right 0.8438em/0.4688em auto;
  background-color: #F7F7F7;
}
@media only screen and (min-width: 769px) {
  .inside_menu .item_box ul > li a:hover {
    opacity: 1;
    background-color: #dbdada;
  }
}
@media only screen and (min-width: 769px) {
  .inside_menu .item_box .menu01 > ul {
    max-height: var(--height-menu01);
  }
  .inside_menu .item_box .menu02 > ul {
    max-height: var(--height-menu02);
  }
  .inside_menu .item_box .menu03 > ul {
    max-height: var(--height-menu03);
  }
  .inside_menu .item_box .menu04 > ul {
    max-height: var(--height-menu04);
    flex-direction: row;
  }
}
@media only screen and (min-width: 769px) {
  .inside_menu .menu_catch.col-2 > ul li {
    width: calc(50% - var(--size-mg) * 2);
    max-width: 365px;
  }
  .inside_menu .menu_catch.col-3 > ul li {
    width: calc(33.33333333% - var(--size-mg) * 2);
    max-width: 240px;
  }
  .inside_menu .menu_catch + .title-sub {
    margin-top: 1.35em;
  }
}
.inside_menu .item_btn_gr {
  font-size: 1em;
}
.inside_menu .item_btn_gr .btn-link a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.5em 1em 0.5em 1.6em;
  max-width: 400px;
  min-height: 4.24em;
  border-radius: 20px;
  font-size: 2.5em;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-decoration: none;
  color: var(--main-color);
  background-color: white;
  transition: var(--value-transition);
}
.inside_menu .item_btn_gr .btn-link a > span {
  position: relative;
  z-index: 1;
  display: block;
  padding-right: 1.95em;
}
.inside_menu .item_btn_gr .btn-link a > span::after {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 1.2em;
  height: 1.2em;
  border-radius: 50%;
  background: url(../images/inside_btn_big_arr.png) no-repeat center/0.3em auto;
  background-color: var(--main-color);
}
@media only screen and (min-width: 769px) {
  .inside_menu .item_btn_gr .btn-link a:hover {
    opacity: 1;
    background-color: var(--clr3);
  }
}

@media only screen and (min-width: 769px) {
  .menu_toggle .inside {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 63px;
    padding-bottom: 50px;
  }
  .inside_logo {
    position: absolute;
    top: 52px;
    left: 49px;
    max-width: 42%;
  }
  .inside_menu {
    --size-mg: .5em;
    --height-menu01: 30em;
    --height-menu02: 17em;
    --height-menu03: 20em;
    --height-menu04: 30em;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1840px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 90px;
    padding-right: 90px;
  }
  .inside_menu .item_box:last-child {
    margin-bottom: 0;
  }
  .inside_menu .col_menu {
    width: calc(50% - 10px);
  }
  .inside_menu .item_btn_gr {
    --size-mg: 1em;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1560px) {
  .ovh .hamburger-btn {
    right: 15px;
    width: 60px;
    height: 60px;
    border-radius: 10px;
  }
  .inside_menu {
    font-size: min(0.65vw, 8px);
  }
}
@media only screen and (min-width: 769px) and (max-width: 1366px) {
  .menu_toggle .inside {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .inside_menu .item_box {
    padding-top: 3em;
    padding-bottom: 3em;
  }
  .inside_menu .item_box .title {
    margin-bottom: 10px;
  }
  .inside_menu .item_box .title-sub {
    margin-top: 0.8em;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1366px) {
  .ovh .hamburger-btn {
    top: 10px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }
  .inside_menu {
    font-size: 0.5vw;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1280px) {
  .inside_menu {
    --height-menu01: 33em;
    --height-menu02: 20em;
    --height-menu03: 30em;
    --height-menu04: 35em;
    padding-left: 75px;
    padding-right: 75px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .inside_menu {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 0.54vw;
  }
  .inside_logo {
    top: 62px;
    left: 20px;
  }
  .inside_menu .item_box ul > li a {
    min-height: 4.5em;
  }
  .menu_toggle .inside {
    padding-top: 70px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .inside_menu {
    font-size: 0.7vw;
  }
}
.idx_gallery {
  padding-bottom: 92px;
}
.idx_gallery .list {
  display: flex;
}
.idx_gallery .list .img img {
  overflow: hidden;
  border-radius: 10px;
  margin: 0 10px;
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .idx_gallery .list .img img {
    max-width: 350px;
  }
}
.time_sheet {
  margin: 0px auto;
  max-width: 630px;
}
.time_sheet .time_sheet_note {
  margin-top: 7px;
  font-family: var(--f-en);
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.time_sheet table {
  --cl-mode: var(--main-color);
  font-size: min(0.7vw, 10px);
}
.time_sheet table th,
.time_sheet table td {
  border-top: none;
  border-right: none;
  border-left: none;
  text-align: center;
  width: 10.3%;
  font-family: var(--f-en);
  border: none;
  border-right: 1px solid #EDEDED;
}
.time_sheet table th:first-child,
.time_sheet table td:first-child {
  width: 25.8%;
  border-left: 1px solid #EDEDED;
}
.time_sheet table th {
  padding: 1.2em 0.2em 1.2em;
  font-size: 1.4em;
  font-weight: 700;
  letter-spacing: 0;
  color: white;
  background-color: var(--cl-mode);
}
.time_sheet table th:first-child {
  position: relative;
  z-index: 1;
  border-left: none;
  border-top-left-radius: 10px;
}
.time_sheet table th:first-child::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  left: -1px;
  top: 0;
  width: 100%;
  height: 100%;
  border-top-left-radius: 11px;
  border-left: 1px solid var(--cl-mode);
}
.time_sheet table th:last-child {
  border-top-right-radius: 10px;
  border-right: none;
}
.time_sheet table td {
  padding: 1em 0.2em 0.9em;
  font-size: 1.6em;
  font-weight: 400;
  letter-spacing: 0.1em;
  justify-self: center;
}
.time_sheet table td:first-child {
  color: #333;
}
.time_sheet table td:not(:first-child) {
  font-size: 1.8em;
}
.time_sheet table tr:nth-child(even) {
  background-color: #F7F7F7;
}
.time_sheet table tr:last-child td {
  border-bottom: 1px solid #EDEDED;
}
.time_sheet table tr:last-child td:first-child, .time_sheet table tr:last-child td:last-child {
  position: relative;
  z-index: 1;
  border-bottom: none;
}
.time_sheet table tr:last-child td:first-child::before, .time_sheet table tr:last-child td:last-child::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  left: -1px;
  top: 0;
  width: calc(100% + 1px);
  height: 100%;
  border-bottom: 1px solid #EDEDED;
}
.time_sheet table tr:last-child td:first-child {
  border-left: none;
}
.time_sheet table tr:last-child td:first-child::before {
  border-bottom-left-radius: 11px;
  border-left: 1px solid #EDEDED;
}
.time_sheet table tr:last-child td:last-child {
  border-right: none;
}
.time_sheet table tr:last-child td:last-child::before {
  border-bottom-right-radius: 11px;
  border-right: 1px solid #EDEDED;
}
.time_sheet table .td-circle,
.time_sheet table .td-line {
  justify-items: center;
}
.time_sheet table .td-circle::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  background-color: var(--cl-mode);
}
.time_sheet table .td-line::after {
  content: "";
  display: block;
  width: 0.5556em;
  height: 1px;
  margin-left: auto;
  margin-right: auto;
  background-color: #707070;
}
.time_sheet table .td-triangle {
  color: var(--cl-mode);
}

@media only screen and (min-width: 769px) {
  .time_sheet table tr:nth-child(2) td {
    padding-top: 0.7em;
    padding-bottom: 0.7em;
  }
}
@media only screen and (max-width: 992px) and (min-width: 769px) {
  :root {
    --ttl_size: 22px;
    --wrapper: 60px;
  }
}
.totop {
  --fs-fixed-banner: 10px;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  position: fixed;
  z-index: 19;
  bottom: 30px;
  right: 30px;
  font-size: var(--fs-fixed-banner);
}
.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: 50px;
  height: 50px;
  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;
  top: calc(var(--wrapper) + 8em);
  right: 20px;
  z-index: 15;
  transition: right 0.3s ease-in-out;
  filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.15));
}
.fixed_banner > div {
  position: relative;
  transition: all 0.3s ease;
}
.fixed_banner a {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: 2;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.fixed_banner p {
  display: block;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  color: #fff;
  font-weight: 700;
  color: white;
  letter-spacing: 0.1em;
  line-height: 1.2222222222;
  text-align: center;
  text-decoration: none;
}
.fixed_banner p:hover {
  color: #fff;
}
.fixed_banner p .tt {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex-direction: column;
}
.fixed_banner p .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: #F6CE49;
}
.fixed_banner .tel p {
  background-color: var(--main-color);
  font-family: var(--f-en);
}
.fixed_banner .tel p .tt::before {
  margin-bottom: 0.5em;
  width: 1.2813em;
  height: 1.375em;
  --mask: url(../images/fixed_ico01.svg);
}
.fixed_banner .web p {
  background-color: var(--main-color);
}
.fixed_banner .web p .tt::before {
  margin-bottom: 0.5em;
  width: 1.2813em;
  height: 1.25em;
  --mask: url(../images/fixed_ico02.svg);
}
.fixed_banner .mail p {
  background-color: var(--main-color);
}
.fixed_banner .mail p .tt::before {
  margin-bottom: 0.5em;
  width: 1.375em;
  height: 1.0625em;
  --mask: url(../images/fixed_ico03.svg);
}
.fixed_banner .support_online p {
  background-color: var(--main-color);
}
.fixed_banner .support_online p .tt::before {
  margin-bottom: 0.5em;
  width: 1.5em;
  height: 1.5625em;
  --mask: url(../images/fixed_ico04.svg);
}

@media only screen and (min-width: 769px) {
  .fixed_banner {
    font-size: min(0.7vw, 10px);
    --size: 8em;
    width: 8em;
  }
  .fixed_banner > div {
    width: var(--size);
    height: 18em;
  }
  .fixed_banner > div:first-child p {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  .fixed_banner > div:last-child p {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-bottom: none;
  }
  .fixed_banner > div:has(a:not([target*=_blank])):hover p {
    background-color: #135E82;
  }
  .fixed_banner p {
    width: var(--size);
    height: 18em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.38);
    transition: var(--value-transition);
  }
  .fixed_banner p .tt {
    letter-spacing: 0.11em;
    font-size: 1.6em;
  }
  .fixed_banner p .txt {
    writing-mode: vertical-rl;
    text-orientation: upright;
    text-align: left;
  }
  .fixed_banner p .txt .line {
    text-orientation: mixed;
    
  }
  .fixed_banner .tel {
    transition: all 0.3s ease;
  }
  .fixed_banner .tel .tt {
    letter-spacing: 0px;
    letter-spacing: -0.13em;
    line-height: 1;
  }
  .fixed_banner .tel .tt::before {
    margin-bottom: 0.8125em;
  }
  .fixed_banner .tel .line {
    margin-top: 0.25em;
    margin-bottom: 0.25em;
  }
  .fixed_banner .web p {
    padding-bottom: 0.1em;
  }
  .fixed_banner .web p .tt::before {
    margin-bottom: 0.8125em;
  }
  .fixed_banner .mail p .tt::before {
    margin-bottom: 0.8125em;
  }
  .fixed_banner .support_online p .tt::before {
    margin-bottom: 0.625em;
  }
  .fixed_banner.active > div {
    font-size: 0.9em;
  }
}

@media only screen and (min-width: 1561px){
  .fixed_banner p .txt .line {
position: relative;
    left: .05em;
  }

}
@media only screen and (min-width: 769px) and (max-width: 1366px), (min-width: 769px) and (max-height: 650px) {
  .totop .icon {
    width: 45px;
    height: 45px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .fixed_banner {
    right: 10px;
    top: calc(10px + var(--wrapper) + 4em);
  }
  .totop {
    bottom: 10px;
    right: 20px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1566px) and (max-height: 800px) {
  .fixed_banner {
    font-size: 1.05vmin;
  }
  .totop {
    --fs-fixed-banner: 1.05vmin;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) and (max-height: 800px) {
  .fixed_banner {
    font-size: 0.9vmin;
  }
}
@media only screen and (min-width: 769px) and (max-height: 650px) {
  .fixed_banner {
    font-size: 1vmin;
    top: calc(10px + var(--wrapper) + 5.5em);
  }
  .totop {
    right: 25px;
    bottom: 20px;
  }
}
footer {
  padding: 100px 0 100px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #F9F6EE;
}
footer .inner {
  max-width: 1640px;
}
footer .ft_map {
  height: 544px;
}
footer .time_sheet {
  margin-bottom: 40px;
}
footer p {
  margin-bottom: 0;
}
footer p,
footer a {
  text-decoration: none;
}
footer .ft_bot {
  padding: 100px 100px 88px;
  border-radius: 30px;
  background-color: white;
}
footer .ft_logo {
  max-width: 548px;
  margin: 0 auto 14px;
}
footer .infor_tel {
  margin-bottom: 9px;
}
footer .infor_address {
  margin-bottom: 44px;
}
footer .ft_info {
  width: 45%;
  max-width: 630px;
}
footer .ft_info .des {
  margin-bottom: 26px;
  font-size: 14px;
  letter-spacing: 0.1em;
}
@media only screen and (min-width: 769px) {
  footer .ft_link {
    width: calc(55% - 30px);
    max-width: 688px;
  }
  footer .ft_link .link_list > div > ul li.mb-02 {
    margin-bottom: 2.5em;
  }
  footer .ft_link .menu01 {
    max-width: 52em;
  }
  footer .ft_link .menu01 > ul {
    max-height: 14em;
  }
  footer .ft_link .menu02 {
    margin-top: 4em;
    max-width: 21em;
  }
  footer .ft_link .menu02 > ul {
    max-height: 5em;
  }
  footer .ft_link .menu03 {
    margin-top: 4em;
  }
  footer .ft_link .menu03 > ul {
    max-height: 13em;
  }
  footer .ft_link .sub01 + ul {
    max-width: 53em;
  }
  footer .ft_link .sub02 + ul {
    max-width: 65.7em;
  }
  footer .ft_link .menu04 {
    margin-top: 4em;
  }
  footer .ft_link .menu04 > ul {
    max-height: 8em;
  }
}

.ft_link {
  font-size: min(0.65vw, 10px);
}
.ft_link a {
  text-decoration: none;
}
@media only screen and (min-width: 769px) {
  .ft_link {
    --size-space: 6em;
  }
  .ft_link .link_list > div > ul {
    display: flex;
    flex-flow: column wrap;
    align-content: flex-start;
    align-content: space-between;
  }
  .ft_link .link_list > div > ul li {
    width: auto;
  }
  .ft_link .menu01 {
    width: 100%;
  }
}
.ft_link .title {
  margin-bottom: 19px;
  padding-left: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: var(--main-color);
}
.ft_link .title::before {
  display: none;
}
.ft_link .title-sub {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75em;
  margin-top: 0.6em;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.6;
  color: var(--main-color);
}
.ft_link .title-sub::after {
  content: "";
  display: block;
  flex-grow: 1;
  max-width: 566px;
  margin-left: 20px;
  height: 1px;
  background-color: #EDEDED;
}
.ft_link ul:last-child {
  margin-bottom: 0;
}
.ft_link li {
  margin-bottom: 0.85em;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
.ft_link a {
  display: table;
  position: relative;
  padding-left: 0em;
  color: inherit;
  font-size: 1.6em;
  letter-spacing: 0.05em;
  color: var(--clr1);
  line-height: 1.6;
}
.ft_link a:hover {
  opacity: 1;
}

.copyright {
  margin: 0 auto 0;
  color: #fff;
  padding: 17px 0px 23px;
  position: relative;
  z-index: 1;
}
.copyright .flex {
  align-items: center;
  justify-content: center;
  min-height: 40px;
}
.copyright .inner_big {
  max-width: 1135px;
}
.copyright::before {
  position: absolute;
  content: "";
  display: block;
  z-index: -1;
  left: calc(50% - 50vw);
  top: 0;
  height: 100%;
  width: 100vw;
  background-color: var(--main-color);
}
.copyright .textwidget {
  display: block;
}
.copyright .textwidget p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.5;
  font-family: var(--f-en);
  letter-spacing: 0.1em;
  text-align: center;
}
.copyright .grits {
  margin-bottom: 0;
  line-height: 2.501;
}
.copyright .grits a {
  display: block;
}
.copyright .grits img {
  max-width: 159px;
}

@media only screen and (min-width: 769px) and (max-width: 1366px) {
  footer .ft_bot {
    padding-left: 70px;
    padding-right: 70px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  footer {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  footer .ft_bot {
    padding: 50px 30px;
  }
  footer .ft_map {
    height: clamp(400px, 45vw, 600px);
  }
  footer .ft_link {
    --size-space: 4em;
    font-size: 0.7vw;
  }
}
.idx_map,
.ft_map {
  border-radius: 14px;
  overflow: hidden;
}
.idx_map iframe,
.ft_map iframe {
  border: 0;
}

.idx_map {
  height: 415px;
}
.idx_map iframe {
  height: 100%;
}

.idx_logo {
  max-width: 515px;
  margin-left: auto;
  margin-right: auto;
}
.idx_logo a:hover {
  opacity: 1;
}

.infor_tel {
  display: table;
  font-size: min(0.8vw, 10px);
}
.infor_tel a {
  font-size: 4.7em;
  font-weight: 500;
  font-family: var(--f-en);
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--main-color);
  text-decoration: none;
}
.infor_tel.center {
  margin-left: auto;
  margin-right: auto;
}

.infor_address {
  display: table;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.infor_address .pos-num {
  position: relative;
  z-index: 1;
  padding-left: 26px;
}
.infor_address .pos-num::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  left: 0;
  top: 0;
  width: 0.9531em;
  height: 1.5em;
  background: url(../images/ico_map.svg) no-repeat center/cover;
}

.infor_traffic {
  --size-mg: 5px;
  font-size: min(0.7vw, 10px);
}
.infor_traffic .box_traffic {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1em;
  max-width: 345px;
  min-height: 10.5em;
  border-radius: 10px;
}
.infor_traffic .box_traffic::after {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  border: 5px solid #F5EEE6;
}
.infor_traffic .box_traffic .box_ttl {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding-left: 3.5em;
  margin-bottom: 0;
  min-height: 2.4375em;
  font-size: 1.6em;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.075em;
  text-align: center;
  color: #5F482E;
}
.infor_traffic .box_traffic .box_ttl::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  left: 0;
  top: 0;
  width: 2.25em;
  min-height: 100%;
  background: no-repeat left center/100% auto;
}
.infor_traffic .b1 .box_ttl::before {
  background-image: url(../images/box_traffic_ico1.svg);
}
.infor_traffic .b2 .box_ttl {
  padding-left: 3.125em;
}
.infor_traffic .b2 .box_ttl::before {
  width: 1.75em;
  background-image: url(../images/box_traffic_ico2.svg);
}
@media only screen and (min-width: 769px) {
  .infor_traffic .box_traffic .box_ttl {
    padding-bottom: 2px;
  }
  .infor_traffic .box_traffic.b1 .box_ttl::before {
    top: -2px;
  }
}

.banner_above_ft {
  padding: 80px 40px;
}
.banner_above_ft .style01 {
  --cl-mode-text: #5F482E;
  --cl-mode-bg: #D8BFA3;
}
@media only screen and (min-width: 769px) {
  .banner_above_ft .style01:hover {
    --cl-mode-bg: #E1AF77;
  }
}
.banner_above_ft .style02 {
  --cl-mode-text: white;
  --cl-mode-bg: #AAAAAA;
}
.banner_above_ft .banner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 47em;
  min-height: 10.5em;
  border-radius: 10px;
  background-color: var(--cl-mode-bg);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  transition: var(--value-transition);
}
.banner_above_ft .banner .banner_ct {
  position: relative;
  z-index: 1;
  padding-left: 7.6em;
  padding-top: 0.7em;
  min-height: 5.6em;
}
.banner_above_ft .banner .banner_ct::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  left: 0;
  top: 0;
  width: 5.6em;
  height: 5.6em;
  border-radius: 50%;
  background: no-repeat center/2.45em auto;
  background-color: white;
}
.banner_above_ft .banner .banner_ct .en {
  display: block;
  margin-bottom: 3px;
  font-size: 1.4em;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--cl-mode-text);
  opacity: 0.5;
}
.banner_above_ft .banner .banner_ct .title {
  position: relative;
  z-index: 1;
  display: table;
  padding-right: 1.1667em;
  font-size: 1.8em;
  font-weight: 700;
  line-height: 1.5;
  color: var(--cl-mode-text);
}
.banner_above_ft .banner .banner_ct .title::after {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  right: 0;
  top: 0.1em;
  bottom: 0;
  margin: auto 0;
  width: 0.4722em;
  height: 0.7778em;
  --mask: url(../images/idx09_thumbnail_item_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(--cl-mode-text);
  opacity: 0.5;
}
.banner_above_ft .bn01 .banner_ct::before {
  background-position: left 57% center;
}
.banner_above_ft .bn02 .banner_ct::before {
  background-size: 2.65em auto;
}
.banner_above_ft .banner:nth-child(1) .banner_ct::before {
  background-image: url(../images/banner_above_ft_icon01.png);
}
.banner_above_ft .banner:nth-child(2) .banner_ct::before {
  background-image: url(../images/banner_above_ft_icon02.png);
}

@media only screen and (min-width: 769px) {
  .banner_above_ft {
    --size-mg: 1em;
    font-size: min(1vw, 10px);
  }
}
.banner_out_gr {
  --size-mg: 6px;
  padding: 74px 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: calc(var(--size-mg) * -1);
  margin-right: calc(var(--size-mg) * -1);
  background-color: #F6CE49;
}
.banner_out_gr .bn {
  max-width: 375px;
  margin: var(--size-mg);
}
.banner_out_gr .bn.bn-big {
  max-width: 627px;
}

@media only screen and (min-width: 769px) {
  .banner_out_gr {
    flex-wrap: nowrap;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .banner_out_gr {
    padding: 60px 30px;
  }
}
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*==========================================================================*/
/*                                INDEX                                     */
/*==========================================================================*/
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*==========================================================================*/
/*                                Under                                     */
/*==========================================================================*/
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/

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