@charset "UTF-8";
:root {
  --f-notosans: "Noto Sans JP", sans-serif;
  --main-color: #2f5891;
  --clr1: #3a3a3a;
  --clr2: #c9a96a;
  --clr3: #4c9de3;
  --ttl_size: 28px;
  --wrapper: 120px;
  --border-radius: 10px;
}

/*==========================================================================*/
/*//////////////////////////////////////////////////////////////////////////*/
/*//////                                                              //////*/
/*//////  Copyright (C) 2009 株式会社フリーセル All Rights Reserved.  //////*/
/*//////                                                              //////*/
/*//////////////////////////////////////////////////////////////////////////*/
/*                                                                          */
/*    base.css  --> スタイルの初期設定を行うため、変更しないで下さい。      */
/*    fonts.css --> フォントの初期設定を行うため、変更しないで下さい。      */
/*                                                                          */
/*==========================================================================*/
/*==========================================================================*/
/*                           Common-Setting                                 */
/*==========================================================================*/
body::-webkit-scrollbar {
  display: block;
  width: 10px;
  height: 10px;
}
body::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #fff;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: linear-gradient(to bottom, var(--clr2) 0%, var(--main-color) 50%, var(--clr2) 100%);
  box-shadow: inset 0 0 6px #fff;
}
body::-webkit-scrollbar-thumb:window-inactive {
  background: linear-gradient(to bottom, var(--clr2) 0%, var(--main-color) 50%, var(--clr2) 100%);
}
body {
  background-color: #ffffff;
  -webkit-text-size-adjust: none;
  letter-spacing: 0.1em;
  color: var(--clr1);
  font-family: var(--f-notosans);
}

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: 1.875;
  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: 1480px;
}

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

.btn {
  margin: 40px auto 0;
  max-width: 400px;
}
.btn a {
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  min-height: 66px;
  display: flex;
  line-height: 1.5;
  width: 100%;
  align-items: center;
  position: relative;
  transition: 0.3s all;
  z-index: 1;
  background-color: var(--main-color);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  border-radius: 33px;
  text-align: center;
  justify-content: center;
  padding-left: 0.2778em;
  padding-bottom: 0.0556em;
}
.btn a::after,
.btn a::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
}
.btn a::after {
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(../images/shared_btn_icon.png);
  background-color: #fff;
  width: 0.4444em;
  height: 0.7778em;
  right: 0.8889em;
  top: calc(50% - 0.3889em);
}
.btn a:hover {
  opacity: 1;
  color: #fff;
}
@media only screen and (min-width: 769px) and (max-width: 1366px) {
  .btn a {
    letter-spacing: 0;
    font-size: 16px;
  }
}
@media only screen and (max-width: 1024px) {
  .btn a {
    letter-spacing: 0;
    font-size: 16px;
  }
}
@media only screen and (max-width: 768px) {
  .btn a {
    min-height: 60px;
  }
}
@media only screen and (min-width: 769px) {
  .btn a:not([target*="_blank"]):hover {
    background-color: var(--clr2);
    color: #fff;
  }
}
.btn.transparent a {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
@media only screen and (min-width: 769px) {
  .btn.transparent a:not([target*="_blank"]):hover {
    background-color: var(--clr2);
    color: #fff;
    border-color: var(--clr2);
  }
  .btn.transparent a:not([target*="_blank"]):hover::after {
    background-color: #fff;
  }
}
.btn.clr1 a {
  background: #fff;
  color: var(--main-color);
  border: 1px solid var(--main-color);
}
.btn.clr1 a::after {
  background-color: var(--main-color);
}
@media only screen and (min-width: 769px) {
  .btn.clr1 a:not([target*="_blank"]):hover {
    background-color: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
  }
  .btn.clr1 a:not([target*="_blank"]):hover::after {
    background-color: #fff;
  }
}
.btn.clr2 a {
  background: #fff;
  color: var(--main-color);
  border: 1px solid var(--main-color);
}
.btn.clr2 a::after {
  background-color: var(--main-color);
}
@media only screen and (min-width: 769px) {
  .btn.clr2 a:not([target*="_blank"]):hover {
    background-color: var(--clr3);
    color: #fff;
    border-color: var(--clr3);
  }
  .btn.clr2 a:not([target*="_blank"]):hover::after {
    background-color: #fff;
  }
}
@media only screen and (max-width: 768px) {
  .btn {
    max-width: 280px;
  }
}

.btn-group {
  margin: 33px auto 0;
}
.btn-group .btn {
  margin: 0;
}
.btn-group.col2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 818px;
}
.btn-group.col2 .btn {
  width: calc(50% - 9px);
  max-width: 100%;
}
.btn-group.col3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1112px;
}
.btn-group.col3 .btn {
  width: calc(33.3333333333% - 10.66px);
}
@media only screen and (max-width: 768px) {
  .btn-group {
    margin: 25px auto 0;
  }
  .btn-group.col2 {
    max-width: 280px;
    display: block;
  }
  .btn-group.col2 .btn {
    width: 100%;
  }
  .btn-group.col2 .btn:not(:last-child) {
    margin-bottom: 10px;
  }
  .btn-group.col3 {
    max-width: 280px;
    display: block;
  }
  .btn-group.col3 .btn {
    width: 100%;
  }
  .btn-group.col3 .btn:not(:last-child) {
    margin-bottom: 10px;
  }
}

.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%;
  }
}
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*==========================================================================*/
/*                           Header - Footer                                */
/*==========================================================================*/
h1 {
  position: absolute;
  overflow: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--wrapper);
  z-index: 20;
}

header.act,
header.active,
.ovh header {
  background-color: #fff;
}
header.act .hamburger-btn,
header.active .hamburger-btn,
.ovh header .hamburger-btn {
  top: 10px;
  width: calc(var(--wrapper) - 20px);
  height: calc(var(--wrapper) - 20px);
}
@media only screen and (min-width: 1919px) {
  header.act .hamburger-btn,
  header.active .hamburger-btn,
  .ovh header .hamburger-btn {
    top: 15px;
    width: calc(var(--wrapper) - 30px);
    height: calc(var(--wrapper) - 30px);
  }
}
@media only screen and (min-width: 1919px) {
  header.act .logo,
  header.active .logo,
  .ovh header .logo {
    margin: 0 0 0 51px;
  }
}
header.act .logo,
header.active .logo,
.ovh header .logo {
  margin-bottom: 0;
  margin-top: 0;
}
header.act .logo img,
header.active .logo img,
.ovh header .logo img {
  width: auto;
  max-height: calc(var(--wrapper) - 20px);
}
header.act .right_head,
header.active .right_head,
.ovh header .right_head {
  padding-bottom: 0;
}

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

.logo {
  width: 25%;
  max-width: 27.125em;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3.1875em 0em 0 3.1875em;
}
.logo a {
  display: block;
  width: 100%;
  text-align: center;
}
.logo img {
  width: auto;
}
@media only screen and (min-width: 769px) and (max-width: 1600px) {
  .logo {
    margin-left: 20px;
    margin-top: 25px;
    margin-bottom: 25px;
  }
}

.right_head {
  width: 70%;
  max-width: 66em;
  padding-right: 14em;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media only screen and (min-width: 1919px) {
  .right_head {
    padding-bottom: 1em;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1440px) {
  .right_head {
    max-width: 55em;
    padding-right: 8em;
  }
}

.pc_navi {
  width: 100%;
}
.pc_navi > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  width: 100%;
}
.pc_navi > ul > li {
  position: relative;
}
.pc_navi > ul > li:hover > a,
.pc_navi > ul > li:hover > p {
  opacity: 1;
  color: var(--clr2);
}
.pc_navi > ul > li.menu-item-has-children > a::after,
.pc_navi > ul > li.menu-item-has-children > p::after {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  border-top: 0.278em solid var(--main-color);
  border-left: 0.223em solid transparent;
  border-right: 0.223em solid transparent;
  left: calc(50% - 0.27em);
  top: 100%;
}
.pc_navi > ul > li.menu-item-has-children:hover > a::after,
.pc_navi > ul > li.menu-item-has-children:hover > p::after {
  transform: translateY(2px);
  border-top-color: var(--clr2);
}
.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: 500;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  transition: all 0.3s;
  color: var(--main-color);
}
.pc_navi > ul > li > a span,
.pc_navi > ul > li > p span {
  display: block;
  width: 100%;
  padding-top: 0px;
  font-size: 66.6666666667%;
  font-weight: 600;
}
.pc_navi > ul .subInner {
  position: absolute;
  width: 18em;
  right: 50%;
  top: 100%;
  padding-top: 1.5em;
  transform: translateX(50%);
  transition: all 0.2s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 11;
}
@media only screen and (min-width: 1919px) {
  .pc_navi > ul .subInner {
    padding-top: 1.5em;
  }
}
.pc_navi > ul .subInner.active {
  opacity: 1;
  visibility: visible;
}
.pc_navi > ul .subInner ul {
  background-color: var(--main-color);
  padding-bottom: 10px;
}
.pc_navi > ul .subInner ul li {
  padding: 0 10px;
}
.pc_navi > ul .subInner ul li a {
  position: relative;
  display: block;
  padding: 1em 0.6em 1em 1.6em;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
  font-size: 0.875em;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  text-align: left;
  letter-spacing: 0.05em;
}
.pc_navi > ul .subInner ul li a::before {
  content: "›";
  display: block;
  position: absolute;
  top: 50%;
  left: 0.6em;
  transform: translateY(-54%);
}

@media only screen and (min-width: 769px) {
  .pc_navi > ul .col2 .subInner ul .title_center {
    width: 100% !important;
  }
  .pc_navi > ul .col2 .subInner ul .title_center a {
    pointer-events: none;
    border-bottom: 1px solid #fff;
    font-size: 1.125em;
    padding-left: 0;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
  }
  .pc_navi > ul .col2 .subInner ul .title_center a::before {
    display: none;
  }
  .pc_navi > ul > li:last-child .subInner {
    right: 80%;
  }
  .pc_navi > ul .mcol-2 .subInner {
    width: 630px;
    right: 100%;
  }
  .pc_navi > ul .mcol-2 .subInner .menu_title > a {
    display: none !important;
  }
  .pc_navi > ul .mcol-2 .subInner .title_small {
    padding: 0 10px !important;
  }
  .pc_navi > ul .mcol-2 .subInner .title_small > a {
    pointer-events: none;
    text-align: center;
    border: 0 !important;
    font-size: 14px !important;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.7) !important;
  }
  .pc_navi > ul .mcol-2 .subInner > ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 20px 20px;
  }
  .pc_navi > ul .mcol-2 .subInner > ul .subInner > ul {
    padding: 0;
  }
  .pc_navi > ul .mcol-2 .subInner > ul > .menu-item-has-children {
    width: calc(50% - 10px);
    padding: 0;
  }
  .pc_navi > ul .mcol-2 .subInner > ul > .menu-item-has-children > a,
  .pc_navi > ul .mcol-2 .subInner > ul > .menu-item-has-children > p {
    pointer-events: none;
    border-bottom: 1px solid #fff;
    font-size: 1.125em;
    padding-left: 0;
    padding-top: 1em;
    padding-bottom: 0.5em;
  }
  .pc_navi > ul .mcol-2 .subInner > ul > .menu-item-has-children > a::before,
  .pc_navi > ul .mcol-2 .subInner > ul > .menu-item-has-children > p::before {
    display: none;
  }
  .pc_navi > ul .mcol-2 .subInner .subInner {
    width: 100% !important;
    position: static !important;
    transform: unset !important;
    padding-top: 0 !important;
  }
  .pc_navi > ul .mcol-2 .subInner .subInner ul li {
    width: 100%;
  }
  .pc_navi > ul .mcol-2 .subInner .subInner ul li.w50 {
    width: 50%;
  }
  .pc_navi > ul .col2 .subInner {
    width: 500px;
  }
  .pc_navi > ul .col2 .subInner ul {
    display: flex;
    flex-wrap: wrap;
  }
  .pc_navi > ul .col2 .subInner ul li {
    width: 50%;
  }
  .menu_toggle .inside .ft_link {
    width: 100%;
    max-width: 1280px;
    margin: auto;
    min-height: 100%;
    display: flex;
    align-items: center;
  }
  .menu_toggle .inside .ft_link .link_list {
    width: 100%;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1600px) {
  :root {
    --wrapper: 80px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  :root {
    --wrapper: 70px;
  }
  .pc_navi > ul > li:last-child .subInner {
    right: 135%;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .pc_navi > ul {
    font-size: 1.4vw;
  }
  .pc_navi > ul .subInner ul li a {
    font-size: 12px;
  }
}
.idx_gallery {
  background-color: #ecf2fa;
}
.idx_gallery .list {
  display: flex;
}
.idx_gallery .list .img {
  padding-top: 1em;
  margin: 0 8px;
}
.idx_gallery .list .img img {
  overflow: hidden;
  border-radius: 10px;
}

.time_sheet {
  margin: 0px auto;
  max-width: 464px;
}
.time_sheet .note {
  margin-top: 15px;
  margin-left: -2px;
  line-height: 2;
  font-size: 14px;
  letter-spacing: 0.1em;
}
.time_sheet .note span {
  display: inline-block;
}
.time_sheet table {
  font-feature-settings: "palt";
}
.time_sheet table th,
.time_sheet table td {
  border-top: none;
  border-right: none;
  border-left: none;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.1em;
  width: 9.9%;
  border-bottom: 1px solid var(--clr1);
}
.time_sheet table th:first-child,
.time_sheet table td:first-child {
  width: auto;
  padding-left: 1.9%;
}
.time_sheet table th:last-child,
.time_sheet table td:last-child {
  width: 16.05%;
  padding-left: 0.8em;
  text-align: left;
}
.time_sheet table th {
  padding: 0.6em 0.2em;
}
.time_sheet table td {
  padding: 1.35em 0.2em 1.65em;
  color: var(--main-color);
}
.time_sheet table td:first-child {
  color: #333;
}
.time_sheet table tr:nth-child(3) td {
  padding-bottom: 1.6em;
}

@media only screen and (max-width: 992px) and (min-width: 769px) {
  :root {
    --ttl_size: 22px;
  }
}
.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% - 5em);
  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.1em;
  line-height: 1.2222222222;
  text-align: center;
  text-decoration: none;
}
.fixed_banner p:hover {
  color: #fff;
}
.fixed_banner p .tt {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex-direction: column;
}
.fixed_banner p .tt::before {
  content: "";
  display: block;
  mask-image: var(--mask);
  -webkit-mask-image: var(--mask);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: 100% auto;
  -webkit-mask-size: 100% auto;
  mask-position: center;
  -webkit-mask-position: center;
  background-color: #fff;
}
.fixed_banner .tel p {
  background-color: #1e3d66;
}
.fixed_banner .tel p .tt::before {
  --mask: url(../images/fixed_icon_tel.png);
}
.fixed_banner .web p {
  background-color: #4c9de3;
}
.fixed_banner .web p .tt::before {
  --mask: url(../images/fixed_icon_contact.png);
}
.fixed_banner .mail p {
  background-color: #c9a96a;
}
.fixed_banner .mail p .tt::before {
  --mask: url(../images/fixed_icon_phone.png);
}
.fixed_banner .consultation .tt::before {
  margin-bottom: 0.45em;
  width: 2.8571em;
  height: 2.8571em;
  background: url(../images/icon_consultation.png) no-repeat center/contain;
}
.fixed_banner .consultation p {
  background-color: #97b2c5;
}
@media only screen and (min-width: 2000px) {
  .fixed_banner > div {
    margin-bottom: 2px;
  }
}

@media only screen and (min-width: 769px) {
  .fixed_banner {
    font-size: 10px;
    --size: 9em;
    width: 9em;
    top: calc(50% - 19.7em);
    right: 22px;
  }
  .fixed_banner.active {
    right: 0;
    top: calc(50% - 15.15em) !important;
  }
  .fixed_banner > div {
    width: var(--size);
    height: var(--size);
    margin-bottom: 1px;
  }
  .fixed_banner p {
    border-radius: 8px;
    width: var(--size);
    height: var(--size);
  }
  .fixed_banner p .tt {
    font-size: 1.2em;
    letter-spacing: 0.05em;
  }
  .fixed_banner .tel {
    --w_tel: 15em;
    transition: all 0.3s ease;
  }
  .fixed_banner .tel .tt::before {
    margin-bottom: 0.45em;
  }
  .fixed_banner .tel:hover .ov {
    opacity: 1;
    visibility: visible;
  }
  .fixed_banner .tel p {
    background: #1e3d66 url(../images/fixed_icon_tel.png) no-repeat center/3em;
    background-position: 50% 49%;
  }
  .fixed_banner .tel .ov {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1e3d66;
    position: absolute;
    right: calc(var(--size) + 1.2em);
    height: 100%;
    top: 0;
    width: calc(var(--w_tel) + 5em);

    border-radius: 8px;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s all;
  }
  .fixed_banner .tel .ov::after {
    content: "";
    display: block;
    position: absolute;
    transition: all 0.3s;
    left: 100%;
    border-left: 10px solid #1e3d66;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
  }
  .fixed_banner .tel .ov .text {
    font-size: 2em;
    font-weight: 500;
  }
  .fixed_banner .web p {
    background: var(--clr3) url(../images/fixed_icon_contact.png) no-repeat center/3em;
  }
  .fixed_banner .web:hover p {
    /* transition: 0.3s all;
    background-color: var(--clr1); */
  }
  .fixed_banner .mail {
    height: auto;
  }
  .fixed_banner .mail p {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: var(--clr2);
    padding: 1.6em 0 1.3em;
    height: auto;
  }
  .fixed_banner .mail p::before {
    display: block;
    content: "";
    background: url(../images/fixed_icon_phone.png) no-repeat center/contain;
    width: 3em;
    height: 4.5em;
    margin-bottom: 0.6em;
  }
  .fixed_banner .mail p .tt {
    height: auto;
    line-height: 1.4285714286;
    font-size: 1.4em;
    letter-spacing: 0.05em;
    font-weight: 500;
    font-feature-settings: "palt";
  }
  .fixed_banner .mail p .tt:before {
    display: none;
  }

  .fixed_banner .web {
    --w_tel: 15em;
    transition: all 0.3s ease;
  }

  .fixed_banner .web:hover .ov {
    opacity: 1;
    visibility: visible;
  }

  .fixed_banner .consultation p .tt {
    font-size: 1.4em;
  }
  .fixed_banner .web .ov {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--clr3);
    position: absolute;
    right: calc(var(--size) + 1.2em);
    height: 100%;
    top: 0;
    width: calc(var(--w_tel) + 5em);

    border-radius: 8px;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s all;
  }
  .fixed_banner .web .ov::after {
    content: "";
    display: block;
    position: absolute;
    transition: all 0.3s;
    left: 100%;
    border-left: 10px solid var(--clr3);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
  }
  .fixed_banner .web .ov .text {
    font-size: 2em;
    font-weight: 500;
  }

  .fixed_banner .consultation:hover p {
    transition: 0.3s all;
    background-color: var(--main-color);
  }
  .fixed_banner .web:hover a {
    left: unset;
    right: 0;
    width: calc(var(--w_tel) + 15.2em);
  }
}
@media only screen and (min-width: 769px) and (max-width: 1600px) {
  .fixed_banner {
    right: 10px;
    font-size: 9px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1366px), (min-width: 769px) and (max-height: 650px) {
  .fixed_banner {
    font-size: 6.5px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .fixed_banner {
    top: 25%;
  }
}
footer {
  background: #ecf2fa;
  padding-bottom: 50px;
}
footer .inner {
  max-width: 1640px;
}
footer .ft_banner {
  padding: 50px 0 51px;
}
footer .ft_banner .inner {
  max-width: 1058px;
}
footer .ft_banner .item {
  width: calc(50% - 9px);
}
footer .ft_banner .item img {
  border-radius: 10px;
}
footer .ft_bg {
  background-color: #fff;
  border-radius: 60px;
  padding: 84px 0 34px;
}
footer .ft_l,
footer .ft_r {
  width: 48%;
}
footer .ft_logo {
  display: table;
  margin: 36px 0 0 0;
}
footer .ft_address {
  font-weight: 500;
  margin: 33px 0 22px;
  font-feature-settings: "palt";
}
footer .ft_map {
  height: 299px;
}
footer .ft_map iframe {
  border-radius: 12px;
}
footer .ft_tel {
  line-height: 1;
  font-weight: 500;
  display: flex;
  align-items: flex-end;
  font-feature-settings: "palt";
}
footer .ft_tel a {
  text-decoration: none;
  color: var(--clr1);
  font-size: 32px;
  letter-spacing: 0.09em;
}
footer .ft_tel a:hover {
  opacity: 1;
  color: var(--clr1);
}
footer .ft_link {
  margin-top: 57px;
}
@media only screen and (min-width: 769px) and (max-width: 1366px) {
  footer .ft_bg {
    padding: 60px 0;
  }
  footer .ft_bg .inner_big {
    max-width: 1240px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  footer .ft_address {
    letter-spacing: 0;
  }
  footer .ft_address br:last-child {
    display: block !important;
  }
  footer .ft_tel a {
    font-size: 26px;
  }
}

.ft_link a {
  text-decoration: none;
}
@media only screen and (min-width: 769px) {
  .ft_link .menu01,
  .ft_link .menu02 {
    max-width: 600px;
    width: 47%;
  }
  .ft_link .menu_item {
    width: 48%;
  }
  .ft_link .menu_item:last-child {
    width: 52%;
  }
}
.ft_link .title {
  margin: 11px 0 24px 0;
  font-feature-settings: "palt";
  padding-left: 0.15em;
  border-bottom: 1px solid #d2d2d2;
  padding-bottom: 9px;
  line-height: 1.5;
  color: var(--main-color);
  font-size: 18px;
  font-weight: 500;
}
@media only screen and (min-width: 1919px) {
  .ft_link .title.title1 {
    margin-top: 33px;
  }
  .ft_link .title.title2 {
    margin-top: 31px;
  }
  .ft_link .title.title3 {
    margin-top: 10px;
  }
  .ft_link .title.title4 {
    margin-top: 10px;
    margin-bottom: 14px;
  }
}
.ft_link .title_small {
  line-height: 1.5;
  font-size: 18px;
  font-weight: 700;
  padding-left: 0.4444em;
  margin-bottom: 0.9444em;
  margin-top: 0.4444em;
}
.ft_link ul {
  display: flex;
  flex-wrap: wrap;
}
.ft_link li {
  margin-bottom: 1.0313em;
  letter-spacing: 0.1em;
  line-height: 1.6;
  width: 48%;
}
.ft_link .w100 li {
  width: 100% !important;
}
.ft_link a {
  display: table;
  position: relative;
  padding-left: 1.5em;
  letter-spacing: 0.1em;
  color: var(--clr1);
  line-height: 1.6;
  font-weight: 500;
  font-feature-settings: "palt";
}
.ft_link a::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--clr1);
  left: 0.6875em;
  top: 0.6875em;
}
.ft_link a:hover {
  opacity: 1;
  color: var(--clr1);
}
@media only screen and (min-width: 769px) {
  .ft_link a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
  }
}
.ft_link .b_menu li {
  margin-bottom: 0;
  border-bottom: 1px solid #d2d2d2;
  padding-bottom: 0.5em;
}
.ft_link .b_menu li:not(:last-child) {
  margin-bottom: 1.8125em;
}
.ft_link .b_menu a {
  font-size: 1.125em;
  color: var(--main-color);
  padding-left: 1.7em;
}
.ft_link .b_menu a::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  width: 0.8333em;
  height: 0.8333em;
  top: 0.4444em;
  left: 3px;
  border-radius: 3px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/ft_menu_arr.png);
  background-color: var(--main-color);
  background-position: center;
}

.copyright {
  border-top: 1px solid #ecf2fa;
  margin-top: 33px;
  padding: 34px 0 0;
}
.copyright .fblock,
.copyright .flex {
  align-items: center;
}
.copyright .grits {
  margin: 0;
}
.copyright .textwidget p {
  font-size: 14px;
  letter-spacing: 0.14em;
  line-height: 24px;
  border-left: 1px solid #d8dde5;
  margin-left: 20px;
  padding-left: 20px;
}

@media only screen and (min-width: 769px) and (max-width: 1600px) {
  .menu_toggle .inside .ft_link {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .menu_toggle .inside .ft_link a {
    letter-spacing: 0;
  }
  .menu_toggle .inside .ft_link li {
    margin-bottom: 10px;
  }
  .menu_toggle .inside .ft_link .b_menu a {
    letter-spacing: 0;
  }
  .menu_toggle .inside .ft_link .b_menu li:not(:last-child) {
    margin-bottom: 10px;
  }
  .menu_toggle .inside .ft_link .title,
  .menu_toggle .inside .ft_link .title_small {
    letter-spacing: 0;
    margin-bottom: 10px;
    margin-top: 5px;
    padding-bottom: 6px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1366px) {
  .menu_toggle .inside .ft_link {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .ft_link a {
    font-size: 14px;
    letter-spacing: 0;
  }
  .ft_link li {
    margin-bottom: 6px;
  }
  .ft_link .b_menu a {
    letter-spacing: 0;
    font-size: 16px;
  }
  .ft_link .b_menu li:not(:last-child) {
    margin-bottom: 10px;
  }
  .ft_link .title,
  .ft_link .title_small {
    letter-spacing: 0;
    margin-bottom: 10px;
    margin-top: 5px;
    font-size: 16px;
    padding-bottom: 6px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1280px) {
  .ft_link .title,
  .ft_link .title_small {
    margin-top: 15px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .ft_link li:nth-child(odd) {
    width: 46%;
  }
  .ft_link li:nth-child(even) {
    width: 54%;
  }
  .pc_navi > ul > li > a,
  .pc_navi > ul > li > p {
    font-size: 14px;
    letter-spacing: 0;
  }
  .right_head {
    width: 60%;
  }
  .logo {
    margin-top: 0;
    margin-bottom: 0;
  }
  .home_page header:not(.active) {
    height: calc(var(--wrapper) + 30px);
  }
}
@media only screen and (min-width: 769px) and (max-width: 850px) {
  .right_head {
    max-width: 37em;
    width: 70%;
  }
}
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*==========================================================================*/
/*                                INDEX                                     */
/*==========================================================================*/
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*==========================================================================*/
/*                                Under                                     */
/*==========================================================================*/
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
.totop {
  cursor: pointer;
}
.totop p {
  line-height: 1;
  margin: 0;
  color: var(--main-color);
  letter-spacing: 0.14em;
  font-weight: 500;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all;
}
.totop p::after {
  transition: 0.3s all;
  content: "";
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(../images/totop.png);
  background-color: var(--main-color);
  width: 0.6875em;
  height: 1.25em;
  margin-left: 0.4375em;
  margin-bottom: -0.125em;
}
@media only screen and (min-width: 769px) {
  .totop:hover p {
    color: var(--clr2);
  }
  .totop:hover p::after {
    background-color: var(--clr2);
  }
}

.br769 {
  display: none;
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .br769 {
    display: block;
  }
}
