@charset "UTF-8";
:root {
  --f-gothic: "游ゴシック体", "Yu Gothic", "YuGothic", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --f-notosans: "Noto Sans JP", sans-serif;
  --f-jp: var(--f-gothic);
  --f-en: var(--f-gothic);
  --main-color: #1d3d6e;
  --clr1: #343434;
  --clr2: #96c76b;
  --clr3: #142f60;
  --ttl_size: 30px;
  --wrapper: 90px;
  --line-height-p: 2;
  --fs-p-02:18px;
}

@media only screen and (max-width: 1024px) {
  :root {
    --fs-p-02:16px;
  }
}
/*==========================================================================*/
/*//////////////////////////////////////////////////////////////////////////*/
/*//////                                                              //////*/
/*//////  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-gothic);
}
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: 1780px;
}

.inner_big {
  max-width: 1320px;
}

.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;
  overflow: hidden;
}
.TabContainer .TabContent .content {
  transition: all 0.3s ease-in-out;
  background-color: #ccc;
}
.TabContainer .TabContent .content > div {
  opacity: 0;
  z-index: -10;
  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 {
  display: flex;
  justify-content: center;
  width: 90%;
  margin: 0px auto;
  max-width: 1118px;
}
.TabContainer .TabPager > div {
  background-color: #a4c7ce;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  margin: 0;
  padding: 20px 20px;
  width: calc(50% - 0px);
  transition: all 0.3s ease;
  cursor: pointer;
  color: #ffffff;
  border-radius: 10px 10px 0px 0px;
}
.TabContainer .TabPager > div p {
  margin: 0;
  font-size: 1.5em;
  line-height: 2;
  border-bottom: 1px solid transparent;
}
.TabContainer .TabPager > div.active {
  background-color: #fff;
  z-index: 1;
  color: #3d9e81;
}
.TabContainer .TabPager > div.active p {
  border-bottom: 1px solid;
}

.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: 80px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 1;
  text-align: center;
  color: var(--clr3);
  opacity: 0.08;
}
@media only screen and (max-width: 768px) {
  .en-big {
    font-size: 60px;
  }
}

.btn a,
.btn02 a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: var(--main-color);
  text-decoration: none;
  font-family: var(--f-jp);
  transition: all 0.3s;
}

.btn a::after {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  width: 0.6111em;
  height: 1em;
  right: 5%;
  top: 0;
  bottom: 0;
  margin: auto 0;
  --mask: url(../images/idx_btn_arr_mask.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(--clr2);
}

.btn-group {
  font-size: 10px;
}
.btn-group .btn {
  font-size: 1em;
}
.btn-group .btn.style01 {
  --cl-mode:
      width: 100%;
  min-width: 180px;
  max-width: 400px;
  overflow: hidden;
}
.btn-group .btn.style01 a {
  min-height: 4.44445em;
  padding: 0.5em 2em;
  line-height: 1.5;
  color: var(--main-color);
  text-align: center;
  border: 1px solid var(--main-color);
  background-color: white;
}
.btn-group .btn.style01 a:hover {
  opacity: 1;
}
@media only screen and (min-width: 769px) {
  .btn-group .btn.style01 a:not([target*=_blank]):hover {
    background-color: var(--clr2);
    color: white;
    border-color: white;
  }
  .btn-group .btn.style01 a:not([target*=_blank]):hover::after {
    background-color: white;
  }
}
.btn-group .btn.style01.center {
  margin-left: auto;
  margin-right: auto;
}
.btn-group .btn02 {
  --cl-mode: var(--main-color);
  display: table;
}
.btn-group .btn02 a {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-right: 4.2em;
  min-height: 3.1111em;
  color: var(--cl-mode);
}
.btn-group .btn02 a .arr {
  position: absolute;
  z-index: -1;
  right: 0;
  top: -0.1111em;
  bottom: 0;
  display: block;
  margin: auto 0;
  width: 3.1111em;
  height: 3.1111em;
  border-radius: 50px;
  border: 1px solid var(--cl-mode);
  transition: all 0.3s;
}
.btn-group .btn02 a .arr::after {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  inset: 0;
  margin: auto;
  --mask: url(../images/idx_btn_arr_mask.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;
  width: 0.6111em;
  height: 1em;
  background-color: var(--cl-mode);
}
@media only screen and (min-width: 769px) {
  .btn-group .btn02 a:not([target*=_blank]):hover {
    --cl-mode:#0747a8;
    opacity: 1;
  }
  .btn-group .btn02 a:not([target*=_blank]):hover .arr {
    background-color: var(--cl-mode);
  }
  .btn-group .btn02 a:not([target*=_blank]):hover .arr::after {
    background-color: white;
  }
}
.btn-group .btn02.bg02 {
  --cl-mode: var(--clr3);
}
.btn-group .btn02.bg02 a .arr {
  background-color: var(--cl-mode);
}
.btn-group .btn02.bg02 a .arr::after {
  background-color: white;
}
@media only screen and (min-width: 769px) {
  .btn-group .btn02.bg02 a:not([target*=_blank]):hover {
    --cl-mode: var(--clr2);
  }
}
.btn-group .btn02.fs02 a {
  padding-right: 3.4444em;
  min-height: 2.2222em;
}
.btn-group .btn02.fs02 a .arr {
  width: 2.2222em;
  height: 2.2222em;
}

.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: 87.5%;
  }
  .btn-group {
    font-size: 8.75px;
  }
}
.br_custom {
  display: none;
}

.br_auto {
  display: inline-block;
}

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

@media only screen and (min-width: 769px) and (max-width: 1560px) {
  .br_1560 {
    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);
}
.flex_gr .item.btn.style01 {
  margin-top: 10px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  .flex_gr .item.btn.style01 {
    margin-top: 5px;
    margin-bottom: 5px;
  }
}
@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;
}

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

header {
  --cl-mode: white;
  --cl-mode-hv: var(--main-color);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--wrapper);
  z-index: 20;
}

header.active,
.ovh header {
  --cl-mode: var(--main-color);
  --cl-mode-hv: var(--clr2);
  background-color: #fff;
}

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

.logo {
  width: 25%;
  max-width: 446px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo a {
  display: block;
  width: 100%;
  text-align: center;
}
.logo img {
  width: auto;
}

.right_head {
  width: 73%;
  padding-right: calc(var(--wrapper) + 6.35%);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: min(0.85vw, 10px);
}

.pc_navi {
  width: 100%;
}
.pc_navi > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  text-align: center;
  width: 100%;
}
.pc_navi > ul > li {
  position: relative;
}
.pc_navi > ul > li:hover > a,
.pc_navi > ul > li:hover > p {
  opacity: 0.8;
  color: var(--cl-mode-hv);
}
.pc_navi > ul > li.menu-item-has-children > a::after,
.pc_navi > ul > li.menu-item-has-children > p::after {
  content: "";
  background: url(../images/shared_pc_navi_arrow.png) center no-repeat;
  background-size: 100% auto;
  width: 9px;
  height: 5px;
  position: absolute;
  bottom: 0px;
  left: calc(50% - 4.5px);
  transition: all 0.5s ease;
  /*border-color: #fff transparent transparent transparent;
  border-style: solid;
  border-width: 6px 6px 0px 6px;
  width: 0;
  height: 0;*/
}
.pc_navi > ul > li.menu-item-has-children:hover > a::after,
.pc_navi > ul > li.menu-item-has-children:hover > p::after {
  transform: translateY(5px);
}
.pc_navi > ul > li > a,
.pc_navi > ul > li > p {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0;
  height: 40px;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  font-size: 1.8em;
  line-height: 1.5;
  letter-spacing: 0.1em;
  transition: all 0.2s ease;
  color: var(--cl-mode);
}
.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:not(:last-of-type) {
  margin-right: 12.72em;
}
.pc_navi > ul .subInner {
  position: absolute;
  width: min(45em, 350px);
  right: 50%;
  bottom: -15px;
  padding-top: 0px;
  transform: translate(50%, 100%);
  transition: all 0.2s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}
.pc_navi > ul .subInner.active {
  opacity: 1;
  visibility: visible;
}
.pc_navi > ul .subInner ul {
  background-color: var(--main-color);
  padding-bottom: 10px;
}
.pc_navi > ul .subInner ul li {
  padding: 0 10px;
}
.pc_navi > ul .subInner ul li a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1.2em 0.6em 1.2em 1.6em;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
  font-size: 1.4em;
  height: 100%;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  text-align: left;
  letter-spacing: 0.05em;
}
.pc_navi > ul .subInner ul li a::before {
  content: "›";
  position: absolute;
  left: 0.6em;
  display: flex;
  align-items: center;
  height: 100%;
}

@media only screen and (min-width: 769px) {
  .pc_navi > ul .col2 .subInner {
    width: 440px;
  }
  .pc_navi > ul .col2 .subInner ul {
    display: flex;
    flex-wrap: wrap;
  }
  .pc_navi > ul .col2 .subInner ul li {
    width: 50%;
  }
  .menu_toggle .inside .ft_link {
    width: 100%;
    max-width: 900px;
    margin: auto;
    min-height: 100%;
    display: flex;
    align-items: center;
    font-size: min(1.1vw, 10px);
  }
  .menu_toggle .inside .ft_link .link_list {
    width: 100%;
  }
  .menu_toggle .inside .ft_link .title {
    color: var(--main-color);
  }
  .menu_toggle .inside .ft_link .menu01 {
    width: 52%;
  }
  .menu_toggle .inside .ft_link .menu02 {
    margin-top: 0;
    width: calc(48% - 30px);
    max-width: 355px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1440px) {
  .header_top {
    padding-left: 20px;
    padding-right: 20px;
  }
  .right_head {
    --size-space: 8em;
    padding-right: calc(var(--wrapper) - 20px + var(--size-space));
  }
  .pc_navi > ul > li:not(:last-of-type) {
    margin-right: var(--size-space);
  }
}
@media only screen and (min-width: 769px) and (max-width: 1366px) {
  :root {
    --wrapper: 80px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .pc_navi > ul .subInner ul li a {
    font-size: 12px;
  }
  .right_head {
    --size-space: 5.5em;
  }
}
.idx_gallery {
  margin: 1px 0;
}
.idx_gallery .list {
  display: flex;
}
.idx_gallery .list .img img {
  overflow: hidden;
  margin: 0 1px;
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .idx_gallery .list .img img {
    width: 300px;
  }
}
.idx_map {
  height: 480px;
}
.idx_map iframe {
  height: 100%;
  border: 0;
}
@media only screen and (max-width: 768px) {
  .idx_map {
    height: 299px;
  }
}

.time_sheet {
  margin: 0px auto;
  max-width: 585px;
  font-size: min(0.96vw, 10px);
}
.time_sheet .time_sheet_note {
  margin-top: 19px;
  margin-left: 15px;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .time_sheet .time_sheet_note {
    margin-left: 0.6em;
  }
}
@media only screen and (max-width: 480px) {
  .time_sheet .time_sheet_note {
    margin-left: 5px;
  }
}
.time_sheet .time_sheet_note p {
  line-height: 1.875;
  font-size: 16px;
  color: white;
  letter-spacing: 0.05em;
  font-weight: 400;
  font-feature-settings: "palt";
}
@media only screen and (max-width: 1024px) {
  .time_sheet .time_sheet_note p {
    font-size: 14px;
  }
}
.time_sheet .time_sheet_note span {
  display: inline-block;
}
.time_sheet table th,
.time_sheet table td {
  border-top: none;
  border-right: none;
  border-left: none;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 1.6em;
  width: 9.8%;
  border: none;
}
.time_sheet table th:first-child,
.time_sheet table td:first-child {
  width: 22.4%;
  padding-left: 1%;
}
.time_sheet table th:last-child,
.time_sheet table td:last-child {
  width: 10.5%;
  padding-right: 1.5%;
}
.time_sheet table th {
  padding: 1.05em 0.2em 0.8em;
  background-color: white;
  color: var(--clr3);
}
.time_sheet table td {
  position: relative;
  z-index: 1;
  padding: 1.45em 0.2em 1.15em;
  color: white;
}
.time_sheet table td::after {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: white;
}
.time_sheet table tbody tr:last-of-type td {
  padding-top: 1.1em;
}

@media only screen and (min-width: 769px) and (max-width: 1366px) {
  :root {
    --ttl_size: 24px;
  }
}
@media only screen and (max-width: 992px) and (min-width: 769px) {
  :root {
    --ttl_size: 22px;
    --wrapper: 70px;
  }
}
.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.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  border: 0px;
  width: 72px;
  height: 72px;
  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% - 3.9em);
  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;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2222222222;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
}
.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: #fff;
}
.fixed_banner .tel p {
  background-color: var(--clr2);
}
.fixed_banner .tel p .tt::before {
  width: 1.6875em;
  height: 1.6875em;
  --mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 258 259' %3E%3Cpath d='M257.129,215.799 C258.097,239.411 252.520,247.297 229.516,253.556 C194.970,262.958 162.542,257.607 133.078,237.428 C88.749,207.062 51.256,169.576 21.145,125.000 C-0.371,93.165 -4.412,58.430 7.649,21.937 C12.853,6.192 21.533,0.448 38.193,0.869 C62.423,1.459 62.406,1.459 70.090,24.893 C73.523,35.342 76.752,45.895 80.587,56.204 C85.328,68.936 82.872,79.601 73.642,89.526 C58.915,105.383 59.113,105.654 70.403,124.130 C89.232,154.927 114.809,178.417 146.607,195.377 C151.964,198.203 155.690,198.567 159.881,193.731 C163.233,189.886 167.349,186.724 171.170,183.281 C179.169,176.116 188.229,173.599 198.625,177.079 C215.619,182.832 232.730,188.212 249.502,194.535 C252.557,195.695 255.080,200.251 256.293,203.769 C257.555,207.427 256.936,211.767 257.129,215.799 Z'/%3E%3C/svg%3E");
}
.fixed_banner .web p {
  background-color: #192b4a;
}
.fixed_banner .web p .tt::before {
  width: 1.5em;
  height: 1.5625em;
  --mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 250' %3E%3Cpath d='M235.090,249.963 L13.830,249.963 C6.190,249.963 -0.000,244.079 -0.000,236.819 L-0.000,52.630 C-0.000,45.351 6.190,39.448 13.830,39.448 L55.309,39.448 L55.309,13.152 C55.309,5.883 61.499,-0.011 69.139,-0.011 C76.779,-0.011 82.969,5.883 82.969,13.152 L82.969,39.448 L165.939,39.448 L165.939,13.152 C165.939,5.883 172.140,-0.011 179.769,-0.011 C187.410,-0.011 193.600,5.883 193.600,13.152 L193.600,39.448 L221.260,39.448 L235.090,39.448 C242.731,39.448 239.181,45.351 239.181,52.630 L239.181,236.819 C239.181,244.079 242.731,249.963 235.090,249.963 ZM114.082,165.591 L89.290,142.007 C83.889,136.861 75.135,136.861 69.735,142.007 C64.335,147.152 64.335,155.459 69.735,160.604 L104.310,193.496 C106.907,195.975 110.424,197.341 114.082,197.341 C117.751,197.341 121.268,195.975 123.865,193.496 L179.174,140.865 C184.585,135.720 184.585,127.413 179.174,122.258 C173.775,117.132 165.030,117.132 159.619,122.258 L114.082,165.591 Z'/%3E%3C/svg%3E");
}
.fixed_banner .mail p {
  background-color: #7a81ff;
}
.fixed_banner .mail p .tt::before {
  width: 2.4615em;
  height: 1.6923em;
  --mask: url("../images/shared_fixed_bnr_icon04.png");
}

@media only screen and (min-width: 769px) {
  .fixed_banner {
    font-size: 10px;
    --size: var(--wrapper);
    width: var(--wrapper);
  }
  .fixed_banner > div {
    width: var(--size);
    height: var(--size);
  }
  .fixed_banner > div:not(:last-of-type) {
    margin-bottom: 1px;
  }
  .fixed_banner p {
    width: var(--size);
    height: var(--size);
  }
  .fixed_banner p .tt {
    font-size: 1.6em;
  }
  .fixed_banner p .tt::before {
    margin-bottom: 0.5em;
  }
  .fixed_banner .tel {
    --w_tel: 18em;
    transform: translateX(calc(-var(--size) - var(--w_tel)));
    transition: all 0.3s ease;
  }
  .fixed_banner .tel .tt {
    padding-top: 0.35em;
  }
  .fixed_banner .tel .tt::before {
    margin-bottom: 0.45em;
  }
  .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 {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--clr2);
    position: absolute;
    left: var(--size);
    height: 100%;
    top: 0;
    width: var(--w_tel);
  }
  .fixed_banner .tel .ov::before {
    content: "";
    display: block;
    position: absolute;
    transition: all 0.3s;
    z-index: -1;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: white;
    opacity: 0.5;
  }
  .fixed_banner .tel .ov .text {
    font-size: 2em;
    font-family: var(--f-en);
  }
  .fixed_banner .web p .tt {
    padding-top: 0.25em;
  }
  .fixed_banner .web p .tt::before {
    margin-bottom: 0.5em;
  }
  .fixed_banner .mail p .tt {
    font-size: 1.3em;
  }
  .fixed_banner .mail p .tt::before {
    margin-bottom: 0.8em;
  }
  .fixed_banner .mail:hover p {
    background-color: #96c76b;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1366px) {
  .fixed_banner {
    font-size: 8px;
  }
  .totop .icon {
    width: 60px;
    height: 60px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1366px) {
  .fixed_banner {
    --min-height-key-mv: 58vw;
    top: calc(var(--min-height-key-mv) / 2 - var(--wrapper));
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .fixed_banner {
    --min-height-key-mv: 600px;
  }
}
@media only screen and (max-width: 1366px) and (min-width: 769px) and (max-height: 700px) {
  .fixed_banner {
    top: calc(50% - var(--wrapper));
  }
}
footer {
  padding: 80px 0 78px;
  background: no-repeat center/cover;
}
@media only screen and (min-width: 769px) {
  footer {
    background-image: url(../images/ft_bg.jpg);
  }
}
@media only screen and (max-width: 768px) {
  footer {
    background-image: url(../images/ft_bg_sp.jpg);
  }
}
footer .inner {
  max-width: 1266px;
}
footer p,
footer a {
  color: #fff;
  text-decoration: none;
}
footer .ft_banner_gr {
  margin-top: 27px;
  margin-left: 6px;
}
footer .ft_banner_gr .banner {
  max-width: 420px;
}
footer .ft_banner_gr .banner.bd a {
  position: relative;
  display: table;
}
footer .ft_banner_gr .banner.bd a::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--clr2);
}
footer .infor_logo {
  margin-bottom: 14px;
}
footer .infor_address {
  margin-bottom: 26px;
}
footer .infor_tell {
  margin-bottom: 26px;
}
footer .time_sheet {
  margin-bottom: 39px;
}
footer .idx_map {
  margin-bottom: 25px;
  height: 240px;
}
footer .ft_info {
  width: calc(53% - 20px);
  max-width: 585px;
}
footer .ft_left {
  width: 47%;
}
@media only screen and (min-width: 769px) {
  footer .ft_left {
    padding-top: 4px;
    max-width: 450px;
  }
}
footer .ft_left a {
  color: white;
}

.ft_link {
  font-size: min(1.2vw, 10px);
}
.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 .link_list > div > ul li {
    width: 100%;
  }
  .ft_link .menu01 {
    width: 100%;
  }
  .ft_link .menu02 {
    margin-top: 2.3em;
    width: 100%;
  }
  .ft_link .menu02 .title {
    margin-left: 7px;
  }
  .ft_link .menu02 .title::after {
    margin-left: 0.92em;
  }
}
.ft_link .title {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 26px;
  margin-left: 5px;
  padding-left: 0;
  font-size: calc(var(--ttl_size) + 2px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  pointer-events: none;
  font-family: var(--f-en);
  text-transform: uppercase;
}
.ft_link .title::after {
  content: "";
  position: relative;
  bottom: 0.23em;
  display: block;
  margin-left: 0.4375em;
  flex-grow: 1;
  height: 1px;
  background-color: white;
  opacity: 0.5;
}
.ft_link .title::before {
  display: none;
}
.ft_link ul:last-child {
  margin-bottom: 0;
}
.ft_link li {
  margin-bottom: 1.64em;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
.ft_link a {
  display: table;
  position: relative;
  padding-left: 1.125em;
  color: inherit;
  font-size: 1.6em;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: var(--clr1);
  line-height: 1.6;
  transition: all 0.3s;
}
.ft_link a::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 100%;
  width: auto;
  height: auto;
}
.ft_link a:hover {
  opacity: 1;
}
@media only screen and (min-width: 769px) {
  .ft_link a:hover:hover {
    color: var(--clr2);
  }
}

.copyright {
  margin: 0 auto 0;
  color: #fff;
  padding: 24px 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: #0d2654;
}
.copyright .textwidget {
  display: block;
  line-height: 29px;
  padding-left: 27px;
  margin-left: 26px;
  border-left: 1px solid rgba(243, 238, 230, 0.4);
  font-weight: 400;
  letter-spacing: 0.1em;
}
.copyright .textwidget p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: inherit;
  letter-spacing: 0.1em;
}
.copyright .grits {
  margin-bottom: 0;
  line-height: 2.501;
}
.copyright .grits a {
  display: block;
}
.copyright .grits img {
  max-width: 200px;
}

@media only screen and (min-width: 1281px) {
  footer .inner {
    padding-left: 4.8%;
  }
  .copyright .flex {
    position: relative;
    left: 2px;
  }
  .copyright .textwidget p {
    position: relative;
    top: 3px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1280px) {
  footer .inner {
    padding-left: 6%;
    padding-right: 6%;
  }
}
.infor_logo {
  max-width: 417px;
  margin-left: auto;
  margin-right: auto;
}
.infor_logo a:hover {
  opacity: 1;
}

@media only screen and (max-width: 1024px) {
  .infor_logo {
    max-width: 300px;
  }
}
.infor_address {
  text-align: center;
  line-height: 1.666667;
  font-size: var(--fs-p-02);
  letter-spacing: 0.1em;
}

.infor_tell {
  display: table;
  margin-left: auto;
  margin-right: auto;
  font-size: min(0.8vw, 10px);
}
.infor_tell a {
  position: relative;
  z-index: 1;
  padding-left: 0.9048em;
  min-height: 0.7857em;
  font-size: 4.2em;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: white;
}
.infor_tell a::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  left: 0.0952em;
  bottom: 0.06em;
  width: 0.5952em;
  height: 0.7em;
  --mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 237 239' %3E%3Cpath d='M236.744,199.078 C237.637,220.912 232.485,228.190 211.227,233.962 C179.303,242.653 149.338,237.714 122.112,219.069 C81.149,191.014 46.502,156.354 18.679,115.182 C-1.203,85.761 -4.937,53.655 6.207,19.930 C11.016,5.383 19.036,0.098 34.434,0.463 C56.822,1.033 56.807,1.033 63.907,22.653 C67.077,32.326 70.063,42.083 73.607,51.606 C77.988,63.347 75.718,73.207 67.189,82.393 C53.580,97.099 53.763,97.296 64.195,114.369 C81.594,142.836 105.230,164.530 134.613,180.199 C139.564,182.828 143.006,183.127 146.879,178.693 C149.976,175.138 153.780,172.210 157.314,169.030 C164.702,162.387 173.076,160.086 182.682,163.304 C198.386,168.618 214.198,173.604 229.695,179.442 C232.517,180.508 234.848,184.718 235.971,187.964 C237.137,191.360 236.566,195.336 236.744,199.078 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: white;
}

.infor_traffic {
  --fs-icon: 10px;
}
.infor_traffic .item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding-left: calc(var(--fs-icon) * 6.2);
  font-weight: 700;
  min-height: 52px;
}
.infor_traffic .item::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 5.2em;
  height: 5.2em;
  border-radius: 50%;
  font-size: var(--fs-icon);
  background: no-repeat center/25px auto;
  background-color: var(--clr3);
}
.infor_traffic .item:not(:last-of-type) {
  margin-bottom: 6px;
}
.infor_traffic .item.item01::before {
  background-image: url(../images/infor_traffic_ico1.png);
}
.infor_traffic .item.item02::before {
  background-image: url(../images/infor_traffic_ico2.png);
}

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

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