@charset "UTF-8";
:root {
  --f-jp: "Shippori Mincho B1", serif;
  --f-en: "EB Garamond", serif;
  --main-color: #163a64;
  --clr1: #333;
  --clr2: #5a95c6;
  --hv-main: #0b4b94;
  --hv-clr2: #26689e;
  --ttl_size: 30px;
  --wrapper: 90px;
  --size-w-hamburger: clamp(80px, 5.73vw, 110px);
  --border-radius: 10px;
  --line-height-p: 2;
  --value-transition: all 0.3s;
  --fs-18: 18px;
  --fs-16: 16px;
}

@media only screen and (max-width: 1024px) {
  :root {
    --fs-18: 16px;
    --fs-16: 14px;
  }
}
.fs18 {
  font-size: var(--fs-18);
}

.fs16 {
  font-size: var(--fs-16);
}

/*==========================================================================*/
/*//////////////////////////////////////////////////////////////////////////*/
/*//////                                                              //////*/
/*//////  Copyright (C) 2009 株式会社フリーセル All Rights Reserved.  //////*/
/*//////                                                              //////*/
/*//////////////////////////////////////////////////////////////////////////*/
/*                                                                          */
/*    base.css  --> スタイルの初期設定を行うため、変更しないで下さい。      */
/*    fonts.css --> フォントの初期設定を行うため、変更しないで下さい。      */
/*                                                                          */
/*==========================================================================*/
/*==========================================================================*/
/*                           Common-Setting                                 */
/*==========================================================================*/
body {
  background-color: #ffffff;
  -webkit-text-size-adjust: none;
  letter-spacing: 0.05em;
  color: var(--main-color);
  font-family: var(--f-jp);
  font-size: 1.25rem;
  font-weight: 500;
}
body::-webkit-scrollbar {
  display: block;
  width: 10px;
  height: 10px;
}
body::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #fcfbf7;
  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.tel_click {
  text-decoration: none;
  color: inherit;
}

@media only screen and (min-width: 769px) {
  a:not(.tel_click, [target*="_blank"]) {
    transition: all 0.3s ease;
  }
  a:not(.tel_click, [target*="_blank"]):hover {
    opacity: 0.7;
  }
  a.tel_click {
    pointer-events: none;
  }
  a:not(.tel_click, [target*="_blank"]):hover,
  a:not(.tel_click, [target*="_blank"]):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.05em;
  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: 1480px;
}

.inner_big {
  max-width: 1340px;
}

.inner {
  max-width: 1210px;
}

.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 .TabContent {
  position: relative;
  z-index: 2;
}
.TabContainer .TabContent .content {
  transition: all 0.3s ease-in-out;
}
.TabContainer .TabContent .content > div {
  opacity: 0;
  z-index: 1;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transition: all 0.5s ease-in-out;
}
.TabContainer .TabContent .content > div.active {
  opacity: 1;
  z-index: 1;
  visibility: visible;
}
.TabContainer .TabPager > div {
  position: relative;
  z-index: 1;
}

.TabContainer.st01 .TabPager {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  font-size: clamp(8px, 1vw, 10px);
}
.TabContainer.st01 .TabPager::after {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 200vw;
  height: 2px;
  background-color: rgba(226, 226, 226, 0.5);
}
.TabContainer.st01 .TabPager > div {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding: 0.2em 1em 2em;
  width: 50%;
  min-height: 6.2em;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.TabContainer.st01 .TabPager > div::after {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  opacity: 0;
  background-color: var(--main-color);
}
.TabContainer.st01 .TabPager > div p {
  display: table;
  font-size: 2.2em;
  letter-spacing: 0.05em;
  line-height: 1.5;
  padding-right: 1.3636em;
  text-align: center;
  transition: var(--value-transition);
  color: var(--main-color);
  background: url(../images/tab_st01_tabpager_arr_ico.svg) no-repeat right center/0.4545em auto;
}
.TabContainer.st01 .TabPager > div.active::after {
  opacity: 0.5;
}
@media only screen and (min-width: 769px) {
  .TabContainer.st01 .TabPager > div:not(.active):hover p {
    color: var(--clr2);
  }
}
@media only screen and (max-width: 768px) {
  .TabContainer.st01 .TabPager {
    font-size: clamp(7px, 1.5vw, 8px);
  }
  .TabContainer.st01 .TabPager > div p {
    padding-right: 1em;
    font-size: 20px;
  }
}
.TabContainer.st03 .TabPager {
  display: flex;
  justify-content: center;
  font-size: clamp(8px, 1vw, 10px);
}
.TabContainer.st03 .TabPager > div {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1em;
  width: 50%;
  max-width: 550px;
  min-height: 13.8em;
  transition: var(--value-transition);
  cursor: pointer;
  background-color: #f0eee4;
}
.TabContainer.st03 .TabPager > div p {
  text-align: center;
  line-height: 1.5;
}
.TabContainer.st03 .TabPager > div .en {
  margin-bottom: 3px;
  font-size: 1.6em;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: var(--clr2);
}
.TabContainer.st03 .TabPager > div .tt {
  margin-bottom: 0;
  font-size: 2.5em;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.TabContainer.st03 .TabPager > div.active {
  background-color: #f7f6f0;
}
@media only screen and (min-width: 769px) {
  .TabContainer.st03 .TabPager > div:not(.active):hover {
    background-color: #c7c6be;
  }
}
.TabContainer.st03 .ct_catch::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  left: calc(50% - 50vw);
  top: 0;
  width: 100vw;
  height: 100%;
  background-color: #f7f6f0;
}

@media only screen and (min-width: 769px) {
  .TabContainer.st03 .catch01 {
    padding-top: clamp(60px, 5.1vw, 97px);
  }
  .TabContainer.st03 .catch02 {
    padding-top: clamp(60px, 4.3vw, 82px);
    padding-bottom: clamp(60px, 4.3vw, 81px);
  }
}
@media only screen and (min-width: 1921px) {
  .TabContainer.st03 .ct_catch::before {
    max-width: 1920px;
    left: calc(50% - 960px);
  }
}
@media only screen and (max-width: 768px) {
  .TabContainer.st03 .TabPager {
    font-size: min(2vw, 8px);
  }
  .TabContainer.st03 .TabPager > div .en {
    font-size: 2em;
  }
  .TabContainer.st03 .ct_catch {
    padding: 40px 0;
  }
}
.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);
}

.btn a {
  color: var(--main-color);
  text-decoration: none;
  font-family: var(--f-jp);
}
.btn a::after {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  width: 1em;
  height: 0.2778em;
  right: 1.3333em;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  --mask: url(../images/idx_btn_arr.svg);
  mask-image: var(--mask);
  -webkit-mask-image: var(--mask);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: 100% auto;
  -webkit-mask-size: 100% auto;
  mask-position: center;
  -webkit-mask-position: center;
  background-color: white;
}

.btn-group {
  font-size: 10px;
}
.btn-group .btn {
  font-size: 1em;
}
.btn-group .btn.style01 {
  width: 100%;
  min-width: 180px;
  max-width: 300px;
  overflow: hidden;
}
.btn-group .btn.style01 a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 90px;
  height: 100%;
  padding: 0.5em 2.5em 0.5em 1.8889em;
  font-size: 1.8em;
  font-family: var(--f-jp);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #fff;
  text-align: left;
  background-color: var(--main-color);
  transition: all 0.3s;
  transition: var(--value-transition);
}
.btn-group .btn.style01 a::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  left: 0;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  width: 100%;
  height: calc(100% - 10px);
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  opacity: 0.5;
}
.btn-group .btn.style01 a:hover {
  opacity: 1;
}
@media only screen and (min-width: 769px) {
  .btn-group .btn.style01 a:hover {
    background-color: var(--hv-main);
  }
  .btn-group .btn.style01 a:hover::after {
    right: 0.5em;
  }
}
.btn-group .btn.center {
  margin-left: auto;
  margin-right: auto;
}

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

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

.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: 1.125rem;
  }
}
@media only screen and (max-width: 1024px) {
  .btn-group .btn.style01 a {
    font-size: 1.6em;
    min-height: 70px;
  }
}
.br_auto {
  display: inline-block;
}

@media only screen and (max-width: 319px) {
  .br_auto {
    display: inline;
  }
}
.br_1366,
.br_1280,
.br_1170,
.br_769,
.br_1024,
.ft_br_1024,
.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_1024 {
    display: block;
  }
  .br_1024 {
    display: block;
  }
  .dis_1024 {
    display: none;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  footer .ft_br_769,
  .br_769 {
    display: block;
  }
  .dis_769 {
    display: none;
  }
  .in_769 {
    display: inline;
  }
}
@media only screen and (max-width: 768px) {
  .br_750 {
    display: block;
  }
  .dis_750 {
    display: none;
  }
  .in_750 {
    display: inline;
  }
}
@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));
  }
}

/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*==========================================================================*/
/*                           Header - Footer                                */
/*==========================================================================*/
h1 {
  position: absolute;
  overflow: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
}

body {
  position: relative;
}

header {
  --size-w-right-head: 75%;
  position: fixed;
  top: 15px;
  left: 0;
  width: 100%;
  height: var(--wrapper);
  z-index: 20;
  font-size: min(0.69vw, 10px);
  transition: var(--value-transition);
}

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

.logo {
  width: 19%;
  max-width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: brightness(0) invert(1);
  transition: var(--value-transition);
}
.logo a {
  display: block;
  width: 100%;
  text-align: center;
}
.logo img {
  width: auto;
}

.right_head {
  position: fixed;
  right: 0;
  z-index: 1;
  width: var(--size-w-right-head);
  max-width: 1100px;
  height: var(--wrapper);
  padding-right: var(--size-w-hamburger);
  padding-left: 1em;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  background-color: #ffffff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.pc_navi {
  --size-w-ico-menu-has-child: 11px;
  width: 100%;
  height: 100%;
}
.pc_navi > ul {
  display: flex;
  justify-content: flex-end;
  text-align: center;
  width: 100%;
  height: 100%;
}
.pc_navi > ul > li {
  height: 100%;
  display: flex;
  align-items: center;
}
.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 > a > span,
.pc_navi > ul > li.menu-item-has-children > p > span {
  position: relative;
  padding-right: 1.3889em;
}
.pc_navi > ul > li.menu-item-has-children > a > span::before,
.pc_navi > ul > li.menu-item-has-children > a > span::after,
.pc_navi > ul > li.menu-item-has-children > p > span::before,
.pc_navi > ul > li.menu-item-has-children > p > span::after {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  z-index: -1;
  background-color: var(--clr2);
}
.pc_navi > ul > li.menu-item-has-children > a > span::before,
.pc_navi > ul > li.menu-item-has-children > p > span::before {
  right: 0;
  width: var(--size-w-ico-menu-has-child);
  height: 1px;
}
.pc_navi > ul > li.menu-item-has-children > a > span::after,
.pc_navi > ul > li.menu-item-has-children > p > span::after {
  right: calc((var(--size-w-ico-menu-has-child) - 1px) / 2);
  width: 1px;
  height: var(--size-w-ico-menu-has-child);
}
.pc_navi > ul > li.menu-item-has-children:hover > a > span::after,
.pc_navi > ul > li.menu-item-has-children:hover > p > span::after {
  transform: rotate(90deg);
  opacity: 0;
}
.pc_navi > ul > li:not(.menu-item-has-children) > a > span,
.pc_navi > ul > li:not(.menu-item-has-children) > p > span {
  padding-right: 1.2778em;
  background-size: 0.3889em auto;
  background-image: url(../images/pc_navi_item_menu_ico.svg);
}
.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;
  padding-left: 2.17em;
  padding-right: 2.15em;
  height: clamp(40px, 2.7vw, 50px);
  border-right: 2px solid rgba(230, 230, 230, 0.5);
  text-decoration: none;
  text-align: center;
  font-weight: 400;
  font-size: 1.8em;
  font-family: var(--f-jp);
  line-height: 1.5;
  letter-spacing: 0.025em;
  transition: var(--value-transition);
  color: var(--main-color);
}
.pc_navi > ul > li > a > span,
.pc_navi > ul > li > p > span {
  background-repeat: no-repeat;
  background-position: right center;
}
.pc_navi > ul > li:hover a,
.pc_navi > ul > li:hover p {
  color: var(--clr2);
}
.pc_navi > ul .subInner {
  position: absolute;
  width: 100%;
  right: 0;
  top: var(--wrapper);
  padding: 8em 9em 5.9em;
  background-color: #f7f7f7;
  transition: all 0.2s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}
.pc_navi > ul .subInner.active {
  opacity: 1;
  visibility: visible;
}
.pc_navi > ul .subInner ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-content: start;
  column-gap: 10em;
}
.pc_navi > ul .subInner ul li {
  margin-bottom: 1.9em;
}
.pc_navi > ul .subInner ul li a {
  position: relative;
  display: table;
  transition: all 0.2s ease;
  font-size: 1.8em;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--main-color);
  text-decoration: none;
  text-align: left;
}

@media only screen and (min-width: 769px) {
  header {
    position: absolute;
  }
  .logo {
    position: relative;
    top: 0.9em;
    left: 5em;
  }
  .pc_navi > ul > li:nth-child(1) {
    flex-grow: 1;
  }
  .pc_navi > ul > li:nth-child(1) > a,
  .pc_navi > ul > li:nth-child(1) > p {
    width: 100%;
  }
  .pc_navi > ul > li:nth-child(1) .subInner ul {
    max-height: 13em;
  }
  .pc_navi > ul > li:nth-child(4) .subInner ul {
    max-height: 29em;
  }
  .pc_navi > ul > li:nth-child(5) .subInner ul {
    max-height: 18em;
  }
  .pc_navi > ul > li:last-child > a,
  .pc_navi > ul > li:last-child > p {
    border-right: none;
  }
  header .menu_toggle {
    width: var(--size-w-right-head);
    max-width: 1100px;
    height: calc(100vh - 4.6em - var(--wrapper));
  }
  header .menu_toggle::before {
    content: "";
    position: fixed;
    z-index: -1;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    transition: var(--value-transition);
    opacity: 0;
  }
  header .menu_toggle.active::before {
    opacity: 0.5;
  }
  header .menu_toggle .inside .ft_link {
    padding-top: 20px;
    padding-bottom: 46px;
  }
  .menu_toggle .inside .ft_link {
    width: 100%;
    max-width: 960px;
    margin: auto;
    min-height: 100%;
    display: flex;
    align-items: center;
    font-size: min(0.75vw, 10px);
  }
  .menu_toggle .inside .ft_link .link_list {
    width: 100%;
  }
  .menu_toggle .inside .ft_link li a:not(:hover) {
    color: var(--main-color);
  }
  .menu_toggle .inside .ft_link li a:hover {
    opacity: 1;
  }
  .menu_toggle .inside .ft_link .menu02 {
    position: relative;
    left: 0.45em;
  }
  .menu_toggle .inside .ft_link .menu03 {
    position: relative;
    max-width: 185px;
  }
  .menu_toggle .inside .ft_link .menu03 > ul > li > a,
  .menu_toggle .inside .ft_link .menu03 > ul > li p {
    font-size: 2.1em;
  }
  .menu_toggle .inside .ft_link .menu03 > ul > li:not(:first-child) {
    margin-top: 1.85em;
  }
  .menu_toggle .inside {
    position: relative;
    z-index: 2;
    background-color: #fcfbf7;
  }
  .inside .ttl-has-child > ul {
    display: block !important;
  }
  
  .menu_toggle .inside .ft_link .ft_link_menu > ul > li > ul > li{margin-bottom: 1.4em;}
  .menu_toggle .inside .ft_link .ft_link_menu > ul > li > a, .menu_toggle .inside .ft_link .ft_link_menu > ul > li p{
    margin-bottom: 0.5em;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1560px) {
  header .menu_toggle .inside .ft_link {
    padding-bottom: 20px;
    font-size: min(0.65vw, 9px);
  }
  header .menu_toggle {
    height: calc(100vh - 30px - var(--wrapper));
  }
}
@media only screen and (min-width: 769px) and (max-width: 1366px) {
  :root {
    --wrapper: 100px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1280px) {
  header {
    font-size: min(0.78vw, 10px);
  }
  .pc_navi > ul > li > a,
  .pc_navi > ul > li > p {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1170px) {
  header {
    font-size: min(0.77vw, 9px);
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .logo {
    left: 20px;
  }
  .pc_navi {
    --size-w-ico-menu-has-child: 7px;
  }
  .pc_navi > ul > li > a,
  .pc_navi > ul > li > p {
    padding-left: 1em;
    padding-right: 1em;
  }
  .pc_navi > ul .subInner {
    padding: 40px;
  }
  .menu_toggle .inside .ft_link {
    font-size: min(0.8vw, 8px);
  }
  .menu_toggle .inside .ft_link .menu01 {
    width: 35%;
  }
  .menu_toggle .inside .ft_link .menu02 {
    width: 35%;
  }
  .menu_toggle .inside .ft_link .menu03 {
    left: 0;
    width: 21%;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1366px) and (max-height: 650px) {
  header .menu_toggle .inside .ft_link {
    font-size: clamp(6.25px, 0.5vw, 7px);
  }
}
.idx_gallery {
  position: relative;
  z-index: 5;
  background-color: white;
}
.idx_gallery .ttl {
  position: absolute;
  z-index: 4;
  left: 0.9571em;
  bottom: 0.2286em;
  display: flex;
  align-items: center;
  width: 100%;
  font-size: clamp(45px, 3.7vw, 70px);
  font-weight: 400;
  font-family: var(--f-en);
  letter-spacing: 0.05em;
  line-height: 1;
  color: white;
}
.idx_gallery .ttl::after {
  content: "";
  position: relative;
  top: 0.0857em;
  display: block;
  margin-left: 1.0429em;
  flex-grow: 1;
  height: 2px;
  width: auto;
  background-color: white;
  opacity: 0.5;
}
.idx_gallery .ttl > span {
  min-width: 6.7143em;
}
.idx_gallery .list {
  display: flex;
}

@media only screen and (min-width: 769px) and (max-width: 1560px) {
  .idx_gallery .img img {
    max-width: 400px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .idx_gallery .img img {
    max-width: 300px;
  }
}
.time_sheet {
  margin: 0px auto;
  max-width: 540px;
}
.time_sheet .time_sheet_note {
  padding: 10px 18px 11px;
  margin-top: 21px;
  background-color: #fcfbf7;
}
.time_sheet .time_sheet_note .txt01 {
  display: flex;
}
.time_sheet .time_sheet_note .txt01 .left {
  position: relative;
  z-index: 1;
  min-width: 3.8889em;
  padding-right: 0.7222em;
  margin-right: 0.8889em;
}
.time_sheet .time_sheet_note .txt01 .left::after {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  right: 0;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  width: 1px;
  height: calc(100% - 0.5556em);
  background-color: #d9d6c6;
}
.time_sheet table {
  font-size: clamp(8px, 1vw, 10px);
}
.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.05em;
  width: 7.5%;
  border-bottom: 2px solid rgba(90, 149, 198, 0.5);
}
.time_sheet table th:first-child,
.time_sheet table td:first-child {
  width: 26%;
  padding-right: 1.9%;
  border-right: 2px solid rgba(90, 149, 198, 0.5);
}
.time_sheet table th:nth-child(2),
.time_sheet table td:nth-child(2) {
  width: 11%;
  padding-left: 1.2em;
}
.time_sheet table th:last-child,
.time_sheet table td:last-child {
  width: 10.7%;
  padding-left: 0;
  padding-right: 1em;
}
.time_sheet table th {
  padding: 0.1em 0.2em 0.85em;
  font-size: 2em;
}
.time_sheet table td {
  padding: 0.6111em 0.2em 0.5556em;
  font-size: 1.8em;
  color: var(--main-color);
}
.time_sheet table td:not(:first-child) {
  color: var(--clr2);
}
.time_sheet table tr:last-child td {
  border-bottom: none;
}

@media only screen and (min-width: 769px) and (max-width: 1440px) {
  :root {
    --ttl_size: 28px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1366px) {
  :root {
    --ttl_size: clamp(22px, 1.95vw, 26px);
    --wrapper: 80px;
  }
}
@media only screen and (max-width: 992px) and (min-width: 769px) {
  :root {
    --ttl_size: 22px;
    --wrapper: 60px;
  }
}
.totop {
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  position: fixed;
  z-index: 19;
  bottom: 25px;
  right: 25px;
}
.totop.active {
  opacity: 1;
  visibility: visible;
}
.totop .icon {
  background-image: url(../images/totop.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  border: 0px;
  width: 80px;
  height: 80px;
  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(50% - 9.7em);
  right: 0px;
  z-index: 15;
  transition: right 0.3s ease-in-out;
}
.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;
  letter-spacing: 0;
  font-weight: 400;
  line-height: 1.2222222222;
  text-align: center;
  text-decoration: none;
  transition: var(--value-transition);
}
.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: #c0e1f5;
}
.fixed_banner .tel p {
  background-color: var(--main-color);
}
.fixed_banner .tel p .tt::before {
  width: 1.28em;
  height: 1.4667em;
  --mask: url(../images/fixed_banner_ico01.svg);
}
.fixed_banner .mail p {
  background-color: var(--clr2);
}
.fixed_banner .mail p .tt::before {
  width: 1.73334em;
  height: 1.13334em;
  --mask: url(../images/fixed_banner_ico02.svg);
}

.fixed_banner .access{
  background-color: var(--clr2);
}
.fixed_banner .access p .tt::before {
  width: 1.7333em;
  height: 1.7333em;
  --mask: url(../images/ic_cal.svg);
}
@media only screen and (min-width: 769px) {
  .fixed_banner {
    font-size: 10px;
    --size: 9em;
    width: 9em;
  }
  .fixed_banner > div {
    width: var(--size);
    height: var(--size);
  }
  .fixed_banner p {
    padding-top: 0.8em;
    width: 100%;
    height: 100%;
  }
  .fixed_banner p .tt {
    font-size: 1.5em;
  }
  .fixed_banner p .tt::before {
    margin-bottom: 0.8667em;
  }
  .fixed_banner .tel{
    height: 150px;
  }
  .fixed_banner .tel p .text{font-size: 1.2em;}
  /*.fixed_banner .tel {
    --w_tel: 15em;
    transform: translateX(calc(-var(--size) - var(--w_tel)));
    transition: all 0.3s ease;
  }
  .fixed_banner .tel .tt::before {
    margin-bottom: 0.6667em;
  }
  .fixed_banner .tel:hover {
    transform: translateX(calc(0em - var(--w_tel)));
  }
   .fixed_banner .tel:hover a {
    width: calc(var(--size) + var(--w_tel));
  } */
  .fixed_banner .tel .ov {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main-color);
    position: absolute;
    left: var(--size);
    height: 100%;
    top: 0;
    width: var(--w_tel);
    border-left: 1px solid #fff;
  }
  .fixed_banner .tel .ov .text {
    font-size: 2em;
    font-family: var(--f-jp);
  }
  .fixed_banner .access:hover p {
    background-color: var(--hv-clr2);
  }
}
@media only screen and (min-width: 769px) and (max-width: 1560px) {
  .fixed_banner {
    font-size: 8px;
  }
  .totop .icon {
    width: 60px;
    height: 60px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1366px) {
  .fixed_banner {
    font-size: 7px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .fixed_banner {
    top: calc(var(--wrapper) + 15px + 12em);
    font-size: 6px;
  }
}
.fixed_banner_left {
  position: fixed;
  z-index: 5;
  bottom: 18px;
  left: 15px;
  font-size: clamp(8px, 0.8vw, 10px);
}
.fixed_banner_left .banner {
  position: relative;
  z-index: 1;
  max-width: 28em;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  transition: var(--value-transition);
}
.fixed_banner_left .banner .close {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  width: 11px;
  height: 11px;
  cursor: pointer;
  transition: var(--value-transition);
  background: url(../images/ico_close.svg) no-repeat center/cover;
  opacity: 0.5;
}
.fixed_banner_left .banner picture {
  transition: var(--value-transition);
}

@media only screen and (min-width: 769px) {
  .fixed_banner_left .banner a:not([target*="_blank"]):hover {
    opacity: 0.9;
  }
  .fixed_banner_left .banner .close:hover {
    opacity: 1;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .fixed_banner_left {
    --pos-first: calc(56vw - 2em);
  }
  .fixed_banner_left:not(.active) {
    bottom: calc(100vh - var(--pos-first));
  }
}
@media only screen and (min-width: 769px) and (max-width: 800px) {
  .fixed_banner_left {
    --pos-first: calc(500px - 2em);
  }
}
footer {
  position: relative;
  z-index: 3;
  padding: 115px 0 47px;
  background: no-repeat center/cover;
}
footer p {
  margin-bottom: 0;
}
footer p,
footer a {
  color: #fff;
  text-decoration: none;
}
footer .ft_logo {
  max-width: 300px;
}
footer .ft_logo img {
  filter: brightness(0) invert(1);
}
footer .ft_info {
  width: 22%;
}
footer .ft_info .des {
  margin-bottom: 26px;
  font-size: 14px;
  letter-spacing: 0.1em;
}
footer .ft_link {
  width: calc(78% - 30px);
  max-width: 970px;
  font-size: min(10px, 0.75vw);
}

.ft_link a {
  text-decoration: none;
}
@media only screen and (min-width: 769px) {
  .ft_link .link_list > div > ul {
    display: flex;
    flex-flow: column wrap;
    align-content: space-between;
  }
  .ft_link .menu01,
  .ft_link .menu02,
  .ft_link .menu03 {
    width: 32%;
  }
  .ft_link .menu02 {
    max-width: 301px;
  }
  .ft_link .menu03 {
    max-width: 21.5em;
  }
  .ft_link li a:hover {
    color: var(--clr2);
  }
  .ft_link li a[href="#"] {
    pointer-events: none;
  }
}
.ft_link .title {
  margin-bottom: 28px;
  padding-left: 0;
  font-size: calc(var(--ttl_size) + 4px);
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1;
  pointer-events: none;
  font-family: var(--f-en);
}
.ft_link .title::before {
  display: none;
}
.ft_link .ft_link_menu > ul > li:not(:first-child) {
  margin-top: 4em;
}
.ft_link .ft_link_menu > ul > li:not(:has(> ul)) > a,
.ft_link .ft_link_menu > ul > li:not(:has(> ul)) > p {
  margin-bottom: 0;
}
.ft_link .ft_link_menu > ul > li > a,
.ft_link .ft_link_menu > ul > li p {
  display: table;
  margin-bottom: 1.16em;
  font-size: 2.5em;
  letter-spacing: 0.05em;
}
.ft_link .ft_link_menu > ul > li > ul > li {
  margin-bottom: 1.9em;
}
.ft_link .ft_link_menu > ul > li > ul a {
  font-size: 1.8em;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.ft_link .menu03 > ul > li:not(:first-child) {
  margin-top: 2.95em;
}

.copyright {
  margin: 0 auto 0;
  color: #fff;
  position: relative;
  z-index: 1;
}
.copyright .flex {
  align-items: center;
  justify-content: flex-start;
}
.copyright .textwidget {
  display: block;
  font-weight: 400;
}
.copyright .textwidget p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: inherit;
  letter-spacing: 0.05em;
  font-weight: 400;
  font-family: var(--f-en);
}
.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) {
  footer {
    background-image: url(../images/ft_bg.jpg);
  }
  footer > .inner {
    padding-left: 6.05%;
    max-width: 1532px;
  }
  footer .copyright {
    top: -63px;
    margin: 0;
    width: 21%;
  }
  footer .ft_info {
    padding-top: 7px;
  }
  footer .ft_link a:hover {
    color: white;
    opacity: 0.5;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1366px) {
  footer > .inner {
    padding-left: 20px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  footer {
    padding: 70px 0 10px;
  }
}
.idx_logo {
  display: table;
  margin: 0 auto 38px;
  max-width: 300px;
}
.idx_logo a:hover {
  opacity: 1;
}

.infor_address {
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
}
.infor_address .pos_code {
  position: relative;
  z-index: 1;
  padding-left: 25px;
}
.infor_address .pos_code::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  left: 0;
  top: 0.1667em;
  width: 0.8333em;
  height: 1.2222em;
  background: url(../images/icon_map.svg) no-repeat center/cover;
}

.infor_tel {
  display: table;
  margin-left: auto;
  margin-right: auto;
}
.infor_tel a {
  position: relative;
  z-index: 1;
  padding-left: 28px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: var(--main-color);
}
.infor_tel a::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  left: 0;
  top: 0.1111em;
  width: 1em;
  height: 1.1111em;
  background: url(../images/infor_tel_ico.svg) no-repeat center/cover;
}

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

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