@charset "UTF-8";
:root {
  --f-jp: "Shippori Mincho B1", serif;
  --f-zen: "Zen Kaku Gothic New", sans-serif;
  --f-en-jp: "Shippori Mincho B1", serif;
  --f-en: "Cinzel", serif;
  --main-color: #1C428B;
  --clr1: #292929;
  --clr2: #7CA1D6;
  --clr3: #CDDDF4;
  --ttl_size: 30px;
  --wrapper: 90px;
  --border-radius: 0;
  --line-height-p: 1.88235;
  --fs-fixed-banner: clamp(7px, .6vw, 10px);
  --size-w-fixed-banner: calc(var(--fs-fixed-banner) * 8.3);
  --value-transition: all .3s;
  --value-transition-fixed: all .5s linear;
}

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

.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 .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: 2;
  visibility: visible;
}
.TabContainer .TabPager {
  display: flex;
  justify-content: center;
  margin: 0px auto;
}
.TabContainer .TabPager > div {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  margin: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}
.TabContainer .TabPager > div.active {
  z-index: 1;
}

.TabContainer .TabPager.st01 {
  position: relative;
  z-index: 1;
  margin-bottom: 70px;
  font-size: clamp(8px, 0.8vw, 10px);
}
.TabContainer .TabPager.st01::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  left: calc(50% - 1px);
  top: 0;
  width: 2px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
}
.TabContainer .TabPager.st01 > div {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1em;
  min-height: 10em;
  width: 50%;
  max-width: 550px;
  transition: var(--value-transition);
}
.TabContainer .TabPager.st01 > div::before, .TabContainer .TabPager.st01 > div::after {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -2;
  width: 100vw;
  height: 2px;
  background-color: white;
  opacity: 0.4;
}
.TabContainer .TabPager.st01 > div::before {
  top: -1px;
  width: 0;
}
.TabContainer .TabPager.st01 > div::after {
  z-index: -1;
  bottom: -1px;
  width: 100vw;
}
.TabContainer .TabPager.st01 > div p {
  line-height: 1.5;
  text-align: center;
  color: white;
}
.TabContainer .TabPager.st01 > div .ttl {
  margin-bottom: 1px;
  font-size: 1.9em;
  font-weight: 400;
  letter-spacing: 0;
  font-family: var(--f-jp);
}
.TabContainer .TabPager.st01 > div .ttl::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  top: 0;
  width: 100vw;
  height: 100%;
  background-color: #103274;
  opacity: 1;
}
.TabContainer .TabPager.st01 > div .en {
  margin-bottom: 0;
  font-size: 1.2em;
  font-weight: 400;
  letter-spacing: 0.05em;
  font-family: var(--f-en-jp);
}
.TabContainer .TabPager.st01 > div:nth-child(1)::before {
  right: 0;
}
.TabContainer .TabPager.st01 > div:nth-child(1)::after {
  right: 0;
}
.TabContainer .TabPager.st01 > div:nth-child(1) .ttl::before {
  right: 1px;
}
.TabContainer .TabPager.st01 > div:nth-child(2)::before {
  left: 0;
}
.TabContainer .TabPager.st01 > div:nth-child(2)::after {
  left: 0;
}
.TabContainer .TabPager.st01 > div:nth-child(2) .ttl::before {
  left: 1px;
}
.TabContainer .TabPager.st01 > div.active::before {
  width: 100vw;
}
.TabContainer .TabPager.st01 > div.active::after {
  width: 0;
}
.TabContainer .TabPager.st01 > div.active .ttl::before {
  opacity: 0;
}
@media only screen and (min-width: 769px) {
  .TabContainer .TabPager.st01 > div:not(.active):hover .ttl::before {
    opacity: 1;
    background-color: var(--clr2);
  }
}
.TabContainer .TabPager.st02 {
  --siz-mg: 5px;
  position: relative;
  z-index: 1;
  margin-left: calc(var(--siz-mg) * -1);
  margin-right: calc(var(--siz-mg) * -1);
  font-size: clamp(8px, 0.9vw, 10px);
}
.TabContainer .TabPager.st02 > div {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1em 1em 1.4em;
  margin: 0 var(--siz-mg);
  width: calc(33.333333% - 2 * var(--siz-mg));
  max-width: 360px;
  min-height: 13em;
  background-color: #DDE4F3;
  transition: var(--value-transition);
}
.TabContainer .TabPager.st02 > div::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: -2em;
  margin: 0 auto;
  width: 2px;
  height: 4em;
  background-color: var(--clr2);
  opacity: 0;
}
.TabContainer .TabPager.st02 > div p {
  text-align: center;
  line-height: 1.5;
  transition: var(--value-transition);
}
.TabContainer .TabPager.st02 > div .ttl {
  margin-bottom: 0;
  font-size: 1.9em;
  letter-spacing: 0;
  color: var(--main-color);
  font-family: var(--f-jp);
}
.TabContainer .TabPager.st02 > div .txt-en {
  display: block;
  margin-bottom: 0;
  font-size: 1.2em;
  letter-spacing: 0.05em;
  color: var(--clr2);
  font-family: var(--f-en-jp);
}
.TabContainer .TabPager.st02 > div.active {
  background-color: var(--main-color);
}
.TabContainer .TabPager.st02 > div.active::before {
  opacity: 0.5;
}
.TabContainer .TabPager.st02 > div.active .ttl {
  color: white;
}
.TabContainer .TabPager.st02 > div.active .txt-en {
  color: #CDDDF4;
}
@media only screen and (min-width: 769px) {
  .TabContainer .TabPager.st02 > div:not(.active):hover {
    background-color: var(--clr3);
  }
}

@media only screen and (max-width: 768px) {
  .TabContainer .TabPager.st02 {
    font-size: 8px;
  }
  .TabContainer .TabPager.st02 > div {
    min-height: 10em;
  }
  .TabContainer .TabPager.st01 {
    margin-bottom: 40px;
    font-size: clamp(8px, 1.2vw, 9px);
  }
}
@media only screen and (max-width: 430px) {
  .TabContainer .TabPager.st02 > div {
    min-height: 12em;
  }
}
.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-jp {
  font-family: var(--f-en);
}

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

.en-big {
  font-size: min(8vw, 150px);
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 500;
}

@media only screen and (min-width: 769px) {
  .en-big.fs40 {
    font-size: min(7.3vw, 140px);
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .en-big.fs40 {
    font-size: 6.4vw;
  }
}
@media only screen and (max-width: 768px) {
  .en-big {
    font-size: min(12vw, 65px);
    text-align: center;
  }
}
.btn a {
  position: relative;
  color: var(--main-color);
  text-decoration: none;
  font-family: var(--f-jp);
}

.btn-group {
  font-size: 10px;
}
.btn-group.flex_gr .btn.style01 {
  min-width: 220px;
}
.btn-group .btn {
  --cl-bd-long: rgba(205, 221, 244, .5);
  --cl-bd-short: rgba(28, 66, 139, .5);
  --cl-txt: var(--main-color);
  --cl-bg-arr: var(--main-color);
  --url-arr-ico: url(../images/idx_arr_ico.svg);
  font-size: 1em;
}
.btn-group .btn.style01 {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 280px;
  max-width: 399px;
  overflow: hidden;
}
.btn-group .btn.style01::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--cl-bd-long);
}
.btn-group .btn.style01 a {
  display: block;
  padding-bottom: 30px;
  padding-right: 35px;
  height: 100%;
  font-size: 1.7em;
  letter-spacing: 0.025em;
  line-height: 1.5;
  color: var(--cl-txt);
  transition: all 0.3s;
}
.btn-group .btn.style01 a::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--cl-bd-short);
}
.btn-group .btn.style01 a::after {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  right: 10px;
  top: 0.15em;
  width: 21px;
  height: 21px;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  background: var(--url-arr-ico) no-repeat left top/100% auto;
  background-color: var(--cl-bg-arr);
}
.btn-group .btn.style01 a:hover {
  opacity: 1;
}
@media only screen and (min-width: 769px) {
  .btn-group .btn.style01 a:not([target*=_blank]):hover::before {
    width: 100%;
  }
}
.btn-group .btn.white {
  --cl-bd-long: rgba(255, 255, 255, .2);
  --cl-bd-short: rgba(255, 255, 255, .4);
  --cl-txt: white;
  --cl-bg-arr: white;
  --url-arr-ico: url(../images/idx_arr_ico_blue.svg);
}
.btn-group .news_btn {
  display: table;
  min-width: 8.2em;
}
.btn-group .news_btn a {
  position: relative;
  z-index: 1;
  display: table;
  padding-left: 1.4444em;
  font-family: var(--f-en);
  font-size: 1.8em;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 500;
  text-decoration: none;
  color: var(--main-color);
}
.btn-group .news_btn a::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  left: 0;
  top: 0.35em;
  width: 0.72223em;
  height: 0.72223em;
  background: url(../images/idx_news_btn_ico.svg) no-repeat center/cover;
}
.btn-group .btn_more {
  --cl-mode: var(--main-color);
  display: table;
}
.btn-group .btn_more a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 76px;
  height: 100%;
  font-size: 1.7em;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 400;
  font-family: var(--f-en);
  text-decoration: none;
  color: var(--cl-mode);
}
.btn-group .btn_more a > span {
  position: relative;
  z-index: 1;
  padding-left: 1.4118em;
}
.btn-group .btn_more a > span::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 0.7059em;
  height: 0.2941em;
  --mask: url(../images/btn_more_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);
}
.btn-group .btn_more.white {
  --cl-mode: #fff;
}

.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 (max-width: 1024px) {
  body {
    font-size: 15px;
  }
  .btn-group .btn.style01 a {
    font-size: 1.5em;
  }
  .btn-group .news_btn a {
    font-size: 1.6em;
  }
}
.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;
  }
}
@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));
  }
}

.faq_box {
  --f-size-qa: 30px;
  --size-left-qa: 30px;
  --size-pl-box: 20px;
  --cl-mode-all: var(--main-color);
  --cl-mode-bg: #4b79c1;
  --cl-mode-txt-ct: var(var(--clr1));
  background-color: transparent;
}
.faq_box .box {
  margin-bottom: 10px;
  border: 1px solid var(--cl-mode-all);
  transition: var(--value-transition);
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .faq_box .box {
    margin-bottom: 25px;
  }
}
.faq_box .accBtn {
  position: relative;
  z-index: 1;
  padding: 30px 47px 32px 15px;
  transition: all 0.3s;
  cursor: pointer;
}
.faq_box .accBtn.rotate .plus::before {
  transform: rotate(90deg);
  opacity: 0;
}
.faq_box .accBtn > h4,
.faq_box .accBtn > h5 {
  padding-left: var(--size-pl-box);
  margin-bottom: 0;
  font-size: 17px;
  letter-spacing: 0.025em;
  transition: var(--value-transition);
  font-family: var(--f-zen);
  color: var(--cl-mode-all);
}
.faq_box .accBtn > h4 {
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 0;
}
.faq_box .accBtn > h4::before {
  display: none;
}
.faq_box .plus {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 14px;
  height: 14px;
  right: 28px;
}
.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-all);
}
.faq_box .plus::before {
  width: 1px;
  height: 100%;
}
.faq_box .plus::after {
  height: 1px;
  width: 100%;
}
.faq_box h4 {
  border-radius: 0;
  transition: all 0.3s;
}
.faq_box h4:hover {
  cursor: pointer;
}
.faq_box h4:after {
  display: none;
}
.faq_box h4:before {
  content: "Q.";
  position: absolute;
  top: 0.25em;
  left: var(--size-left-qa);
  line-height: 1;
  font-family: var(--f-en);
  font-size: var(--f-size-qa);
}
.faq_box .content {
  position: relative;
  padding-top: 14px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 14px;
  margin: 0 19px 10px 19px;
  transform: translateY(-8px);
}
.faq_box .content:after {
  content: "A.";
  position: absolute;
  font-family: var(--f-en);
  top: 35px;
  left: var(--size-left-qa);
  font-size: var(--f-size-qa);
  color: var(--main-color);
  font-weight: 500;
}
.faq_box .content::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--cl-mode-bg);
  opacity: 0.13;
}
.faq_box .content p {
  color: var(--cl-mode-txt-ct);
}

.faq_box h4:before,
.faq_box h5:before {
  display: none;
}

.faq_box .content:after {
  display: none;
}

.faq_gr.white .faq_box {
  --cl-mode-all: white;
  --cl-mode-bg: white;
  --cl-mode-txt-ct: white;
}

@media only screen and (min-width: 769px) {
  .faq_box:has(.accBtn:hover) {
    --cl-mode-all: #0cb4d1;
  }
  .faq_gr.white .faq_box:has(.accBtn:hover) {
    --cl-mode-all: rgba(255, 255, 255, .5);
  }
}
@media only screen and (max-width: 1024px) {
  .faq_box {
    --size-pl-box: 0;
  }
  .faq_box .accBtn {
    padding-top: 20px;
    padding-right: 38px;
    padding-bottom: 20px;
  }
  .faq_box .plus {
    right: 16px;
  }
  .faq_box .accBtn > h4, .faq_box .accBtn > h5 {
    font-size: 15px;
  }
}
.idx_map iframe,
.ud_map iframe {
  border: 0;
}

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

.sp_navi {
  position: relative;
  z-index: 24;
}

header {
  --cl-mode-item-hd: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--wrapper);
  z-index: 20;
  font-size: min(0.8vw, 10px);
}
header::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(var(--wrapper) * 1.5);
  max-height: 130px;
  background: url(../images/hd_shadow.svg) no-repeat center bottom/cover;
}

header.active {
  --cl-mode-item-hd: var(--clr1);
  background-color: white;
}
header.active::before {
  opacity: 0;
}
@media only screen and (min-width: 769px) {
  header.active .pc_navi > ul .subInner {
    top: 6.5em;
  }
}

header:not(.active) .header_top {
  top: 0.8em;
}
header:not(.active) .left_head {
  top: 0.9em;
}
header:not(.active) .pc_navi > ul > li > a,
header:not(.active) .pc_navi > ul > li > p {
  color: white;
}
header:not(.active) .logo {
  filter: brightness(0) invert(1);
}

.header_top {
  position: relative;
  top: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  margin: 0 auto;
  padding: 5px 2.5em;
  height: 100%;
  transition: var(--value-transition);
}

.logo {
  width: 60%;
  max-width: 234px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--value-transition);
}
.logo a {
  display: block;
  width: 100%;
  text-align: center;
}
.logo img {
  width: auto;
}

.left_head {
  position: relative;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 30%;
  max-width: 437px;
  transition: var(--value-transition);
}
.left_head .frame_txt {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 2.5em;
  width: 16.8em;
  height: 4em;
  border: 1px solid var(--cl-mode-item-hd);
  transition: var(--value-transition);
}
.left_head .frame_txt p {
  margin-bottom: 0;
  font-size: 1.5em;
  letter-spacing: 0.025em;
  line-height: 1.5;
  text-align: center;
  font-family: var(--f-jp);
  color: var(--cl-mode-item-hd);
  transition: var(--value-transition);
}

.right_head {
  width: calc(70% - 20px);
  padding-right: calc(var(--size-w-fixed-banner) + 8.6em);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.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;
  margin-right: 5.15em;
}
.pc_navi > ul > li:last-child {
  margin-right: 0;
}
.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::after,
.pc_navi > ul > li.menu-item-has-children > p::after {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--cl-mode-item-hd);
  opacity: 0.5;
}
@media only screen and (min-width: 769px) {
  .pc_navi > ul > li.menu-item-has-children:hover > a::after,
  .pc_navi > ul > li.menu-item-has-children:hover > p::after {
    opacity: 1;
  }
}
@media only screen and (min-width: 769px) {
  .pc_navi > ul > li:last-child .subInner {
    transform: translateX(calc(-38.5% - var(--size-w-fixed-banner)));
  }
}
.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: 2.3529em;
  text-decoration: none;
  text-align: center;
  font-weight: 400;
  font-size: 1.7em;
  font-family: var(--f-jp);
  line-height: 1.5;
  letter-spacing: 0;
  transition: var(--value-transition);
  color: var(--cl-mode-item-hd);
}
.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 .subInner {
  position: absolute;
  width: 34em;
  left: 50%;
  top: 6.9em;
  padding-top: 0px;
  transform: translateX(-50%);
  transition: var(--value-transition);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}
.pc_navi > ul .subInner.active {
  opacity: 1;
  visibility: visible;
}
.pc_navi > ul .subInner ul {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}
.pc_navi > ul .subInner ul li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.pc_navi > ul .subInner ul li:last-child {
  border-bottom: none;
}
.pc_navi > ul .subInner ul li a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1.7188em 2.5em 1.7188em 1.6875em;
  transition: all 0.2s ease;
  font-size: 1.6em;
  height: 100%;
  font-weight: 400;
  color: var(--main-color);
  text-decoration: none;
  text-align: left;
  letter-spacing: 0.025em;
}
.pc_navi > ul .subInner ul li a::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  right: 1.75em;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 0.3225em;
  height: 0.725em;
  background: url(../images/hd_submenu_arr_ico.svg) no-repeat center/100% auto;
}

@media only screen and (min-width: 769px) {
  .pc_navi > ul .col2 .subInner {
    width: min(70em, 680px);
  }
  .pc_navi > ul .col2 .subInner ul {
    display: flex;
    flex-wrap: wrap;
  }
  .pc_navi > ul .col2 .subInner ul li {
    width: 50%;
  }
  .pc_navi > ul .col2 .subInner ul li:nth-child(2n) {
    border-left: 1px solid rgba(0, 0, 0, 0.2);
  }
  .pc_navi > ul .col2 .subInner ul li:last-child:nth-child(2n+1) {
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    width: calc(50% + 1px);
  }
  .pc_navi > ul .col2 .subInner ul li:nth-last-child(2):nth-child(2n+1) {
    border-bottom: none;
  }
  .menu_toggle .inside::before {
    content: "";
    display: block;
    position: absolute;
    transition: all 0.3s;
    z-index: -1;
    left: 0;
    transform: translateX(-100%);
    width: 100vw;
    height: 100vh;
    background-color: #000000;
    opacity: 0;
  }
  .menu_toggle .inside .ft_link {
    width: 100%;
    max-width: 816px;
    margin: auto;
    min-height: 100%;
    display: flex;
    align-items: center;
    font-size: min(0.75vw, 10px);
  }
  .menu_toggle .inside .ft_link a:hover {
    opacity: 0.7;
  }
  .menu_toggle .inside .ft_link .title {
    padding-bottom: 0.8em;
    font-size: 2.3em;
  }
  .menu_toggle .inside .ft_link .link_list {
    width: 100%;
  }
  .menu_toggle .inside .ft_link .lv2 > ul {
    display: block !important;
  }
  .menu_toggle .inside .ft_link .menu01 {
    width: 50%;
    max-width: 370px;
  }
  .menu_toggle .inside .ft_link .menu02 {
    width: calc(50% - 20px);
    max-width: 370px;
  }
  .menu_toggle .inside .ft_link .menu03 {
    margin-top: 5.5em;
    width: 100%;
  }
  .menu_toggle .inside .ft_link .menu03 > ul {
    display: flex !important;
  }
  .menu_toggle .inside .ft_link .menu03 > ul > li:nth-child(n+8) {
    max-width: 370px;
  }
}
.menu_toggle .inside .ft_link .title {
  color: white;
}
.menu_toggle .inside .ft_link .title::after {
  background-color: white;
}
.menu_toggle .inside .ft_link a {
  color: white;
}
.menu_toggle .inside .ft_link a::before {
  background-color: white;
}

@media only screen and (min-width: 769px) and (max-width: 1366px) {
  :root {
    --wrapper: 80px;
  }
  .pc_navi > ul .subInner ul li a {
    padding-top: 1.2em;
    padding-bottom: 1.2em;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1366px) {
  body:has(.subInner.active) .fixed_ai {
    z-index: 15;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .right_head {
    padding-right: calc(var(--size-w-fixed-banner) + 3em);
    font-size: 1.1em;
  }
  .pc_navi > ul > li {
    margin-right: 4em;
  }
  .pc_navi > ul .subInner ul li a {
    padding-right: 2em;
  }
  .pc_navi > ul .subInner ul li a::before {
    right: 1em;
  }
  .pc_navi > ul .subInner ul li a {
    font-size: 12px;
  }
  header.active .pc_navi > ul .subInner {
    top: 6.4em;
  }
  .pc_navi > ul > li:nth-child(3) .subInner {
    transform: translateX(-55%);
  }
  .pc_navi > ul > li:last-child .subInner {
    transform: translateX(calc(-63.5% - var(--size-w-fixed-banner)));
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  .menu_toggle .inside .ft_link {
    font-size: 0.85vw;
  }
}
@media only screen and (min-width: 1280px) and (max-width: 1560px) and (max-height: 800px) {
  .menu_toggle .inside .ft_link {
    font-size: min(0.65vw, 8px);
  }
}
@media only screen and (min-width: 769px) and (max-width: 1366px) and (max-height: 650px) {
  .menu_toggle .inside .ft_link {
    font-size: min(0.75vw, 7px);
  }
}
.idx_gallery {
  position: relative;
  z-index: 3;
}
.idx_gallery .list {
  display: flex;
}
.idx_gallery .list .img img {
  overflow: hidden;
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .idx_gallery .list .img img {
    width: 350px;
  }
}
.time_sheet {
  margin: 0px auto;
  max-width: 555px;
  font-size: min(0.85vw, 10px);
  overflow: hidden;
}
.time_sheet .tb_catch {
  position: relative;
  z-index: 1;
  padding: 8px 8px 2px 8px;
}
.time_sheet .tb_catch::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
}
.time_sheet .gray {
  color: #707070;
}
.time_sheet table th,
.time_sheet table td {
  border-top: none;
  border-right: none;
  border-left: none;
  text-align: center;
  width: 8.6%;
  font-size: 1.7em;
  font-weight: 400;
  letter-spacing: 0.025em;
}
.time_sheet table th:first-child,
.time_sheet table td:first-child {
  padding-left: 1.1em;
  width: 25%;
  font-size: 1.8em;
}
.time_sheet table th:last-child,
.time_sheet table td:last-child {
  padding-right: 1.5em;
  width: 12.7%;
}
.time_sheet table th {
  padding: 11px 0.2em 12px;
  color: white;
  background-color: rgba(0, 0, 0, 0.3);
  border-bottom: none;
}
.time_sheet table td {
  padding: 1.2em 0.2em 1.1em;
  color: var(--clr2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.19);
}
.time_sheet table td:first-child {
  color: white;
}
.time_sheet table tr:last-child td {
  border-bottom: none;
}

@media only screen and (min-width: 769px) and (max-width: 1366px) {
  :root {
    --ttl_size: 26px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1280px) {
  :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: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.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: calc(100% - 2em);
  height: calc(100% - 2em);
  margin: 0;
}

@media only screen and (min-width: 769px) {
  .totop {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 24px;
    margin: 0 auto;
    width: 14px;
    height: 35px;
    background: url(../images/totop_pc.svg) no-repeat center/cover;
  }
  .totop:hover {
    opacity: 0.8;
  }
  .totop .icon {
    display: none;
  }
}
.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: 0;
  right: 0px;
  z-index: 22;
  transition: var(--value-transition-fixed);
}
.fixed_banner::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
}
.fixed_banner > .item {
  position: relative;
  transition: var(--value-transition);
}
.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.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 .txt {
  display: none;
}
.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;
  transition: var(--value-transition);
}
.fixed_banner .tel p .tt::before {
  width: 2.1em;
  height: 2.3em;
  --mask: url(../images/fixed_tell_ico.svg);
}
.fixed_banner .web p .tt::before {
  width: 2.6em;
  height: 2.7em;
  --mask: url(../images/fixed_web_ico.svg);
}
.fixed_banner .line p .tt::before {
  width: 2.9em;
  height: 2.8em;
  --mask: "";
  background: url(../images/fixed_line_ico.svg) no-repeat center/cover;
}
.fixed_banner .instagram p .tt::before {
  width: 2.7em;
  height: 2.7em;
  --mask: url(../images/fixed_instagram_ico.svg);
}

@media only screen and (min-width: 769px) {
  .fixed_banner {
    font-size: var(--fs-fixed-banner);
    --size: 4.1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 2.2em;
    width: var(--size-w-fixed-banner);
    height: 100vh;
  }
  .fixed_banner > .item {
    padding-top: 2.9em;
    padding-bottom: 3em;
    width: var(--size);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  .fixed_banner > .item:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  .fixed_banner p {
    width: var(--size);
  }
  .fixed_banner .tel {
    padding-top: 0;
    transition: var(--value-transition);
  }
  .fixed_banner .tel:has(.tt:hover) .ov {
    opacity: 1;
  }
  .fixed_banner .tel .ov {
    position: absolute;
    left: calc(50% - 2em);
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 18em;
    width: 4em;
    transform: translateY(-100%);
    opacity: 0;
    writing-mode: vertical-rl;
    background-color: transparent;
    transition: var(--value-transition);
  }
  .fixed_banner .tel .ov .text {
    font-size: 2em;
    font-family: var(--f-en);
    color: white;
    line-height: 1;
    font-weight: 500;
  }
}
footer {
  position: relative;
  z-index: 3;
  padding-bottom: 60px;
  background-color: #EEF3FC;
}
footer p {
  margin-bottom: 0;
}
footer p,
footer a {
  color: #fff;
  text-decoration: none;
}
footer .ft_top {
  --size-grow-top: 63px;
  position: relative;
  z-index: 1;
  top: calc(var(--size-grow-top) * -1);
  padding: calc(var(--size-grow-top) * 2 - 10px) 20px calc(var(--size-grow-top) * 2 - 32px);
  margin-bottom: calc(var(--size-grow-top) * -1);
  background-color: white;
}
footer .ft_banner_gr {
  margin-top: 42px;
  --size-mg: 8.5px;
}
footer .ft_banner_gr .banner {
  max-width: 394px;
}
footer .ft_link {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1489px;
  font-size: min(0.65vw, 10px);
}

.ft_link a {
  text-decoration: none;
}
.ft_link .title {
  position: relative;
  z-index: 1;
  padding-left: 0;
  padding-bottom: 0.7778em;
  margin-bottom: 1.15em;
  border-bottom: 2px solid rgba(205, 221, 244, 0.5);
  font-size: 2.7em;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  font-family: var(--f-jp);
  color: var(--main-color);
  pointer-events: none;
}
@media only screen and (min-width: 769px) {
  .ft_link .title::after {
    content: "";
    display: block;
    position: absolute;
    transition: all 0.3s;
    z-index: -1;
    left: 0;
    bottom: -2px;
    width: 40px;
    height: 2px;
    background-color: rgba(28, 66, 139, 0.5);
  }
}
.ft_link .title::before {
  display: none;
}
.ft_link ul:last-child {
  margin-bottom: 0;
}
.ft_link li {
  margin-bottom: 1.1em;
  letter-spacing: 0.025em;
  line-height: 1.6;
}
.ft_link a {
  display: table;
  position: relative;
  padding-left: 0.8235em;
  color: inherit;
  font-size: 1.7em;
  letter-spacing: 0.025em;
  color: var(--clr1);
  line-height: 1.6;
}
.ft_link a::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  left: 0;
  top: 0.6em;
  width: 0.29412em;
  height: 0.4706em;
  --mask: url(../images/ft_arr_ico.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: #7CA1D6;
}
.ft_link a:hover {
  opacity: 1;
}

.copyright {
  margin: 18px auto 0;
  color: #fff;
  position: relative;
  z-index: 1;
}
.copyright .flex {
  align-items: center;
  justify-content: center;
  min-height: 40px;
}
.copyright .inner_big {
  max-width: 1135px;
}
.copyright .textwidget {
  display: block;
  line-height: 20px;
  padding-left: 19px;
  margin-left: 19px;
  border-left: 1px solid #cecece;
}
.copyright .textwidget p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.025em;
  text-align: center;
  color: var(--clr2);
}
.copyright .grits {
  margin-bottom: 0;
  line-height: 2.501;
}
.copyright .grits a {
  display: block;
}
.copyright .grits img {
  max-width: 130px;
}

@media only screen and (min-width: 769px) {
  footer .inner {
    max-width: 1850px;
  }
  footer .ft_banner_gr {
    padding-left: var(--size-w-fixed-banner);
    padding-right: var(--size-w-fixed-banner);
  }
  footer .ft_link .menu01 > ul > li,
  footer .ft_link .menu02 > ul > li {
    width: 100%;
  }
  footer .ft_link .menu01 {
    width: 20%;
    max-width: 280px;
  }
  footer .ft_link .menu02 {
    position: relative;
    left: 0.3em;
    width: 25%;
    max-width: 350px;
  }
  footer .ft_link .menu03 {
    width: 50%;
    max-width: 724px;
  }
  .ft_link .menu03 > ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: space-between;
    max-height: 30em;
  }
  .ft_link .menu03 > ul > li {
    width: 50%;
  }
  .ft_link .menu03 > ul > li:nth-child(n+8) {
    max-width: 320px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  footer .ft_link {
    font-size: 0.85vw;
  }
  footer .ft_top {
    --size-grow-top: 40px;
  }
  footer .ft_link .menu03 > ul {
    max-height: 35em;
  }
}
.idx_infor {
  --size-w-dt: 107px;
  max-width: 554px;
}
.idx_infor ul li {
  display: flex;
}
.idx_infor ul li::before {
  content: "・";
}
.idx_infor dl {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  padding: 8px;
  padding-right: 0;
  margin-bottom: 3px;
  overflow: hidden;
}
.idx_infor dl::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  overflow: hidden;
}
.idx_infor dl:last-child {
  margin-bottom: 0;
}
.idx_infor dl dt,
.idx_infor dl dd {
  padding-top: 11px;
  padding-bottom: 10px;
  letter-spacing: 0.025em;
  line-height: 1.52941;
  color: white;
}
.idx_infor dl dt {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--size-w-dt);
  text-align: center;
  background-color: rgba(0, 0, 0, 0.3);
}
.idx_infor dl dd {
  width: calc(100% - var(--size-w-dt));
  padding-left: 21px;
  padding-right: 10px;
}

body {
  position: relative !important;
  top: auto !important;
}

.ovh .fixed_ai {
  z-index: 19;
  opacity: 0;
}
.ovh .totop {
  opacity: 0;
}

.fixed_ai {
  position: fixed;
  z-index: 33;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  font-size: clamp(8px, 0.8vw, 10px);
  transition: var(--value-transition);
}
.fixed_ai picture {
  max-width: 27.6em;
}

@media only screen and (min-width: 769px) {
  .fixed_ai:hover {
    opacity: 0.8;
  }
  .fixed_ai.active {
    right: calc(var(--size-w-fixed-banner) + 15px);
  }
}
@media only screen and (min-width: 769px) and (max-width: 1366px) {
  .fixed_ai {
    font-size: 8px;
    right: calc(var(--size-w-fixed-banner) + 10px);
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .fixed_ai.at_footer {
    bottom: min(23vw, 198px);
  }
}
@media only screen and (max-width: 768px) {
  .fixed_ai {
    right: 10px;
    bottom: 60px;
    font-size: 7px;
  }
  .fixed_ai.active {
    right: 60px;
  }
  .fixed_ai.at_footer {
    bottom: 100px;
  }
}
@media only screen and (max-width: 640px) {
  .fixed_ai.at_footer {
    bottom: 140px;
  }
}
@media only screen and (max-width: 520px) {
  .fixed_ai {
    font-size: 6px;
  }
}
@media only screen and (max-width: 480px) {
  .fixed_ai.at_footer {
    bottom: 150px;
  }
}
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*==========================================================================*/
/*                                INDEX                                     */
/*==========================================================================*/
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*==========================================================================*/
/*                                Under                                     */
/*==========================================================================*/
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/

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