@charset "UTF-8";
:root {
  --f-notosans: "Noto Sans JP", sans-serif;
  --f-jp: "Noto Serif JP", serif;
  --f-en: "Lato", sans-serif;
  --f-zen-gothic: "Zen Maru Gothic", sans-serif;
  --main-color: #29a7e1;
  --clr1: #5f5f5f;
  --clr2: #fffce3;
  --clr3: #ff7c9f;
  --clr4: #f8b62c;
  --clr5: #85dd45;
  --ttl_size: 28px;
  --wrapper: 100px;
  --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;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
          box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--clr2)), color-stop(50%, var(--main-color)), to(var(--clr2)));
  background: linear-gradient(to bottom, var(--clr2) 0%, var(--main-color) 50%, var(--clr2) 100%);
  -webkit-box-shadow: inset 0 0 6px #fff;
          box-shadow: inset 0 0 6px #fff;
}
body::-webkit-scrollbar-thumb:window-inactive {
  background: -webkit-gradient(linear, left top, left bottom, from(var(--clr2)), color-stop(50%, var(--main-color)), to(var(--clr2)));
  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-zen-gothic);
}

.br-auto {
  display: inline-block !important;
}

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]) {
    -webkit-transition: all 0.3s ease;
    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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

p,
li {
  line-height: 2;
  letter-spacing: 0.05em;
  word-wrap: break-word;
  word-break: break-word;
}
p:empty,
li:empty {
  display: none !important;
}
p:last-child,
li:last-child {
  margin-bottom: 0;
}

p,
li {
  font-weight: 500;
  font-size: 16px;
}
@media (min-width: 1281px) {
  p,
  li {
    font-size: 18px;
  }
}

.red {
  color: #ca0a0a !important;
}

.bold {
  font-weight: bold !important;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

*,
::after,
::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*==========================================================================*/
/*                            Container                                     */
/*==========================================================================*/
html {
  overflow-x: auto !important;
}

.wrapper {
  overflow: hidden;
}

.inner_max,
.inner_big,
.inner,
.inner_sm {
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.inner_max {
  max-width: 1480px;
}

.inner_big {
  max-width: 1340px;
}

.inner {
  max-width: 1340px;
}

.inner_sm {
  max-width: 1020px;
}

.fullWidthBreak {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.txt_ver {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}

@media only screen and (min-width: 769px) {
  .txt_ver_pc {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            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 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.TabContainer .TabContent {
  width: 74%;
  position: relative;
  z-index: 2;
  background-color: #fff;
  border-radius: 30px;
}
.TabContainer .TabContent .content {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.TabContainer .TabContent .content > div {
  opacity: 0;
  z-index: -10;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.TabContainer .TabContent .content > div.active {
  opacity: 1;
  z-index: 1;
  visibility: visible;
}
.TabContainer .TabPager {
  max-width: 300px;
  width: 30%;
}
.TabContainer .TabPager > div {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  position: relative;
  margin: 0;
  width: 100%;
  padding: 28px 10px 27px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  height: 80px;
  margin-bottom: 10px;
  border-radius: 10px;
}
.TabContainer .TabPager > div::before {
  position: absolute;
  content: "";
  visibility: hidden;
  top: calc(50% - 4px);
  right: -10px;
  background-color: var(--main-color);
  width: 18px;
  height: 16px;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.TabContainer .TabPager > div p {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1.3888888889;
  color: var(--main-color);
}
.TabContainer .TabPager > div p span {
  display: inline-block;
}
.TabContainer .TabPager > div.active {
  background-color: var(--main-color);
  z-index: 1;
}
.TabContainer .TabPager > div.active::before {
  visibility: visible;
}
.TabContainer .TabPager > div.active p {
  color: #fff;
}
.TabContainer .TabPager > div:last-child {
  margin-bottom: 0;
}
.TabContainer .tab-inner {
  padding-left: 80px;
  padding-top: 30px;
  padding-right: 30px;
}
.TabContainer .tab-left {
  max-width: 443px;
  padding-top: 56px;
  width: 55%;
}
.TabContainer .tab-img {
  max-width: 350px;
  width: 45%;
  height: 100%;
}
.TabContainer .tab-img img {
  border-radius: 20px;
}
.TabContainer .btn-group {
  margin-top: 35px;
}
.TabContainer .btn-group .btn.style01 {
  max-width: 241px;
}
.TabContainer .btn-group .btn.style01 a {
  font-size: 1.8em;
  background-color: #f8b62c;
}
@media (min-width: 992px) {
  .TabContainer .btn-group .btn.style01 a {
    min-height: 76px;
  }
}
@media only screen and (min-width: 769px) {
  .TabContainer .btn-group .btn.style01 a {
    padding-left: 30px;
  }
}
@media (769px <= width <= 1280px) {
  .TabContainer .tab-inner {
    padding-left: 30px;
  }
}
@media (769px <= width <= 1024px) {
  .TabContainer .TabPager {
    width: 28%;
  }
  .TabContainer .TabPager > div p {
    font-size: 16px;
  }
  .TabContainer .TabContent {
    width: 70%;
  }
  .TabContainer .tab-img {
    width: 40%;
  }
  .TabContainer .tab-left {
    padding-top: 0;
  }
}
@media only screen and (max-width: 768px) {
  .TabContainer {
    display: block;
  }
  .TabContainer .TabPager {
    width: 100%;
    max-width: 100%;
    gap: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .TabContainer .TabPager > div {
    width: calc(33.33% - 10px);
  }
  .TabContainer .TabPager > div::before {
    top: auto;
    right: auto;
    bottom: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    clip-path: polygon(50% 100%, 100% 0, 0 0);
  }
  .TabContainer .TabPager > div p {
    font-size: 16px;
  }
  .TabContainer .tab-left {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
  }
  .TabContainer .TabContent {
    width: 100%;
    margin-top: 20px;
  }
  .TabContainer .tab-inner {
    padding: 20px;
    display: block;
  }
  .TabContainer .btn-group {
    margin-top: 20px;
  }
  .TabContainer .btn-group .btn {
    margin-left: auto;
    margin-right: auto;
  }
  .TabContainer .btn-group .btn a {
    min-height: 65px !important;
  }
  .TabContainer .tab-img {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: min(295px, 75vw);
  }
  .TabContainer .tab-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
  .TabContainer .box-content {
    padding-top: 20px;
  }
}
@media only screen and (max-width: 600px) {
  .TabContainer .TabPager > div {
    width: calc(50% - 10px);
    margin-bottom: 5px;
    height: 60px;
  }
  .TabContainer .TabPager > div p {
    font-size: min(16px, 3.5vw);
  }
}
@media only screen and (max-width: 374px) {
  .TabContainer .TabPager > div {
    width: 100%;
  }
  .TabContainer .TabPager > div p {
    font-size: 18px;
  }
}

.rel {
  position: relative;
}

.ovh {
  overflow: hidden !important;
  position: relative;
}
.ovh::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 20%;
  z-index: 3;
}
.ovh .key-banner {
  z-index: 2 !important;
}
.ovh .logo {
  opacity: 60%;
  pointer-events: none;
}
.ovh .fixed_banner {
  pointer-events: none;
  opacity: 60%;
}

.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          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);
  right: 30px;
  top: calc(50% - 10px);
}

.btn a {
  position: relative;
  color: var(--main-color);
  text-decoration: none;
}
.btn a::after {
  content: "";
  display: block;
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 20px;
  height: 20px;
  right: 30px;
  top: calc(50% - 10px);
  background-image: url(../images/idx-arr.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 7px 11px;
}

.btn-group {
  font-size: 0.625em;
}
.btn-group .btn {
  font-size: 1em;
}
.btn-group .btn.style01 {
  width: 100%;
  max-width: 310px;
  overflow: hidden;
}
.btn-group .btn.style01 a {
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #fff;
  background-color: var(--main-color);
  border-radius: 46px;
  min-height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 35px;
}
.btn-group .btn.style01 a::after {
  background-color: #fff;
  border-radius: 50%;
}
.btn-group .btn.style01 a:hover {
  opacity: 1;
}
@media only screen and (min-width: 769px) {
  .btn-group .btn.style01 a:hover {
    background-color: var(--clr3);
    color: #fff;
  }
}
@media (769px <= width <= 991px) {
  .btn-group .btn.style01 {
    width: 85%;
  }
  .btn-group .btn.style01 a {
    font-size: 18px;
    min-height: 65px;
  }
}
.btn-group .btn.bg01 a {
  background-color: #fff;
  color: var(--main-color);
}
.btn-group .btn.bg01 a::after {
  background-color: var(--main-color);
}
.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;
  -webkit-transform: translateY(-50%);
          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_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  padding: 5px 10px;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.logo {
  width: 25%;
  max-width: 193px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 15px;
  left: 15px;
}
.logo a {
  display: block;
  width: 100%;
  text-align: center;
}
.logo img {
  width: auto;
}

.right_head {
  width: 70%;
  max-width: 887px;
  padding-right: 127px;
  padding-top: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-right: 0;
  margin-left: auto;
}

.pc_navi {
  width: 100%;
}
.pc_navi > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
  width: 100%;
}
.pc_navi > ul > li {
  position: relative;
  font-size: min(10px, 0.75vw);
  background-color: var(--clr2);
  padding-right: 2em;
  padding-left: 2em;
  padding-top: 1em;
  padding-bottom: 0.8em;
  border-radius: 10px;
  -webkit-box-shadow: 3px 3px 0px rgba(93, 63, 0, 0.2);
          box-shadow: 3px 3px 0px rgba(93, 63, 0, 0.2);
}
.pc_navi > ul > li::before, .pc_navi > ul > li::after {
  position: absolute;
  content: "";
}
.pc_navi > ul > li::before {
  width: 5.2em;
  height: 5.2em;
  top: -4.5em;
  left: calc(50% - 2.6em);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.pc_navi > ul > li:hover {
  z-index: 1;
}
.pc_navi > ul > li:hover::before, .pc_navi > ul > li:hover::after {
  z-index: 1;
}
.pc_navi > ul > li:first-child::before {
  background-image: url(../images/pc_menu_ic1.png);
}
.pc_navi > ul > li:nth-child(2)::before {
  background-image: url(../images/pc_menu_ic2.png);
}
.pc_navi > ul > li:nth-child(3)::before {
  background-image: url(../images/pc_menu_ic3.png);
}
.pc_navi > ul > li:last-child::before {
  background-image: url(../images/pc_menu_ic4.png);
}
.pc_navi > ul > li:last-child .subInner {
  width: 430px;
}
@media (769px <= width <= 1366px) {
  .pc_navi > ul > li:last-child .subInner {
    width: 360px;
  }
}
@media (769px <= width <= 1024px) {
  .pc_navi > ul > li:last-child .subInner {
    width: 300px;
  }
}
.pc_navi > ul > li.menu-item-has-children > a span::before, .pc_navi > ul > li.menu-item-has-children > a span::after,
.pc_navi > ul > li.menu-item-has-children > p span::before,
.pc_navi > ul > li.menu-item-has-children > p span::after {
  position: absolute;
  content: "";
  background-color: #fff;
}
.pc_navi > ul > li.menu-item-has-children > a span::before,
.pc_navi > ul > li.menu-item-has-children > p span::before {
  top: 0.6111111111em;
  right: -1.4444444444em;
  width: 0.6666666667em;
  height: 0.1111111111em;
  opacity: 50%;
}
.pc_navi > ul > li.menu-item-has-children > a span::after,
.pc_navi > ul > li.menu-item-has-children > p span::after {
  width: 0.1111111111em;
  height: 0.6666666667em;
  top: 0.3333333333em;
  right: -1.1666666667em;
}
.pc_navi > ul > li.menu-item-has-children:hover > a,
.pc_navi > ul > li.menu-item-has-children:hover > p {
  z-index: 4;
  opacity: 0.8;
  color: var(--main-color);
}
.pc_navi > ul > li.menu-item-has-children:hover > a span::after,
.pc_navi > ul > li.menu-item-has-children:hover > p span::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.pc_navi > ul > li > a,
.pc_navi > ul > li > p {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  height: 2.2222222222em;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  font-size: 1.8em;
  line-height: 1.5;
  letter-spacing: 0.05em;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  color: var(--clr1);
  padding-right: 1.6666667em;
}
.pc_navi > ul > li > a::before,
.pc_navi > ul > li > p::before {
  position: absolute;
  content: "";
  top: 0.5em;
  right: 0;
  border-radius: 50%;
  background-color: var(--main-color);
  width: 1.1111111111em;
  height: 1.1111111111em;
}
.pc_navi > ul > li > a span,
.pc_navi > ul > li > p span {
  display: block;
  width: 100%;
  padding-top: 0px;
  position: relative;
}
.pc_navi > ul > li > a span::after,
.pc_navi > ul > li > p span::after {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-image: url(../images/shared_pc_navi_arrow.png);
  top: 0.3888888889em;
  right: -1.3333333333em;
  width: 0.3888888889em;
  height: 0.6111111111em;
  -webkit-transform: 0;
          transform: 0;
}
@media (769px <= width <= 1366px) {
  .pc_navi > ul > li {
    font-size: min(8px, 0.7vw);
  }
}
.pc_navi > ul .subInner {
  position: absolute;
  width: 400px;
  right: 50%;
  bottom: 58px;
  padding-top: 0px;
  -webkit-transform: translate(50%, 100%);
          transform: translate(50%, 100%);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.pc_navi > ul .subInner.active {
  opacity: 1;
  visibility: visible;
}
.pc_navi > ul .subInner ul {
  background-color: var(--clr2);
  padding: 61px 30px 33px;
  -webkit-box-shadow: 3px 3px 0px rgba(93, 63, 0, 0.2);
          box-shadow: 3px 3px 0px rgba(93, 63, 0, 0.2);
  border-radius: 10px;
}
.pc_navi > ul .subInner ul li {
  padding: 0 10px;
}
.pc_navi > ul .subInner ul li a {
  position: relative;
  display: block;
  padding: 3.5px 0.6em;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  font-size: 1.6em;
  font-weight: bold;
  color: var(--clr1);
  text-decoration: none;
  text-align: left;
  letter-spacing: 0.05em;
  padding-left: 30px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.pc_navi > ul .subInner ul li a::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 9px);
  left: 0;
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-image: url(../images/subInner-arr.png);
}
@media (769px <= width <= 1024px) {
  .pc_navi > ul .subInner {
    bottom: 45px;
    width: 300px;
  }
  .pc_navi > ul .subInner > ul {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 50px;
  }
}

@media (769px <= width <= 1366px) {
  .right_head {
    max-width: 740px;
  }
  .logo {
    max-width: 150px;
  }
}
@media (769px <= width <= 1024px) {
  .right_head {
    padding-right: 100px;
  }
}
@media only screen and (min-width: 769px) {
  .pc_navi > ul .col2 .subInner {
    width: 440px;
  }
  .pc_navi > ul .col2 .subInner ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media only screen and (min-width: 769px) and (min-width: 1921px) {
  .menu_toggle .inside .ft_link {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media only screen and (min-width: 769px) {
  .menu_toggle .inside .ft_link ul {
    max-height: 10em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }
  .menu_toggle .inside .ft_link ul li {
    width: auto;
    margin-bottom: 0.4722222em;
  }
  .menu_toggle .inside .ft_link ul li:nth-child(-n+4) {
    width: 53.9%;
  }
  .menu_toggle .inside .ft_link a {
    color: #fff;
  }
  .menu_toggle .inside .ft_link a:hover {
    opacity: 0.7;
  }
  .menu_toggle .inside .ft_link .link_list {
    width: 100%;
  }
  .menu_toggle .inside .ft_link .link_list > div {
    width: 100%;
    display: block;
    padding-bottom: 35px;
    margin-top: 2.40625em;
  }
  .menu_toggle .inside .ft_link .link_list > div:first-child {
    margin-top: 0;
  }
}
@media only screen and (min-width: 769px) and (769px <= width <= 1560px) {
  .menu_toggle .inside .ft_link .link_list > div {
    padding-bottom: 15px;
    margin-top: 1.5em;
  }
  .menu_toggle .inside .ft_link .link_list .menu03 {
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 769px) and (769px <= width <= 1366px) {
  .menu_toggle .inside .ft_link .link_list > div {
    padding-bottom: 15px;
    margin-top: 10px;
  }
  .menu_toggle .inside .ft_link .link_list > div:last-child {
    padding-bottom: 0;
  }
  .menu_toggle .inside .ft_link ul {
    max-height: 8em;
  }
}
@media only screen and (min-width: 769px) and (769px <= width <= 991px) {
  .menu_toggle .inside .ft_link ul {
    max-height: 9em;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1366px) {
  :root {
    --wrapper: 100px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .logo {
    max-width: 130px;
  }
  .pc_navi > ul .subInner ul li a {
    font-size: 12px;
  }
}
@media (769px <= width <= 991px) {
  .logo {
    width: 20%;
  }
  .right_head {
    width: 75%;
    padding-top: 50px;
  }
}
@-webkit-keyframes animeCT {
  0% {
    background-position: 0 center;
  }
  100% {
    background-position: -1920px center;
  }
}
@keyframes animeCT {
  0% {
    background-position: 0 center;
  }
  100% {
    background-position: -1920px center;
  }
}
.idx_gallery {
  background-color: var(--main-color);
  position: relative;
}
.idx_gallery .gallery-slider {
  background-image: url(../images/idx-scroll.png);
  background-size: auto 100%;
  height: min(455px, 35vw);
  -webkit-animation: animeCT 50s linear infinite;
          animation: animeCT 50s linear infinite;
  position: relative;
}
.idx_gallery::after {
  position: absolute;
  content: "";
  top: -315px;
  left: 0;
  -webkit-mask-position: bottom center;
          mask-position: bottom center;
  -webkit-mask-repeat: repeat-x;
          mask-repeat: repeat-x;
  -webkit-mask-size: auto;
          mask-size: auto;
  -webkit-mask-image: url(../images/idx11-shape-bg-blue.svg);
          mask-image: url(../images/idx11-shape-bg-blue.svg);
  width: 100%;
  height: 315px;
  background-color: #29a7e1;
}
.time_sheet {
  margin: 19px auto 0;
}
.time_sheet .time-inner {
  background-color: #fffce3;
  border-radius: 30px;
  padding: 29px 10px 22px;
}
.time_sheet .note {
  margin-top: 10px;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.6428571429;
}
.time_sheet .note span {
  display: inline-block;
}
.time_sheet thead th {
  position: relative;
  left: -0.625em;
}
.time_sheet thead th:first-child {
  padding-left: 0.55em;
}
.time_sheet thead th span {
  color: #fff;
  position: relative;
  z-index: 1;
}
.time_sheet thead th span::before {
  position: absolute;
  content: "";
  z-index: -1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 2.625em;
  height: 2.625em;
  border-radius: 50%;
  background-color: #8dc973;
}
.time_sheet thead th .cl1::before {
  background-color: #6990e6;
}
.time_sheet thead th .cl2::before {
  background-color: #ff7c7c;
}
.time_sheet table {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.time_sheet table .dot {
  position: relative;
}
.time_sheet table .dot::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
}
.time_sheet table .dot.st1, .time_sheet table .dot.st3 {
  width: 1.125em;
  height: 1.125em;
  border-radius: 50%;
  display: block;
  position: relative;
  left: 0.4375em;
}
.time_sheet table .dot.st1 {
  background-color: var(--main-color);
}
.time_sheet table .dot.st3 {
  background-color: #fff;
  border: 1px solid var(--main-color);
}
.time_sheet table .dot.st2 {
  left: 0.4375em;
}
.time_sheet table .dot.st2 img {
  width: 1.125em;
  height: 1.125em;
}
.time_sheet table th,
.time_sheet table td {
  border: 0;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.05em;
  width: 9.8%;
  padding: 0;
}
.time_sheet table th:first-child,
.time_sheet table td:first-child {
  width: auto;
  position: relative;
}
.time_sheet table td {
  color: var(--main-color);
}
.time_sheet table td:first-child {
  color: #5f5f5f;
}
.time_sheet tbody tr th,
.time_sheet tbody tr td {
  position: relative;
  z-index: 1;
}
.time_sheet tbody tr th::before,
.time_sheet tbody tr td::before {
  position: absolute;
  content: "";
  z-index: -1;
  top: calc(50% + 1.0625em);
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: calc(100% - 0.4375em);
  background-color: #fff;
}
.time_sheet tbody tr th:first-child,
.time_sheet tbody tr td:first-child {
  padding-right: 0.5em;
}
.time_sheet tbody tr th:first-child::before,
.time_sheet tbody tr td:first-child::before {
  border-top-left-radius: 4.375em;
  border-bottom-left-radius: 4.375em;
}
.time_sheet tbody tr th:last-child::before,
.time_sheet tbody tr td:last-child::before {
  border-top-right-radius: 4.375em;
  border-bottom-right-radius: 4.375em;
}
.time_sheet tbody tr th,
.time_sheet tbody tr td {
  padding-right: 1.25em;
}
.time_sheet tbody tr:first-child td {
  padding-top: 2.0625em;
}
.time_sheet tbody tr:nth-child(2) td {
  padding-top: 1.9375em;
}
.time_sheet tbody tr:nth-child(3) td {
  padding-top: 1.9375em;
}

@media only screen and (max-width: 992px) and (min-width: 769px) {
  :root {
    --ttl_size: 22px;
    --wrapper: 80px;
  }
}
.totop {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  position: fixed;
  z-index: 19;
  bottom: 30px;
  right: 12px;
  width: 66px;
  height: 66px;
  background-color: var(--clr4);
  border-radius: 50%;
}
.totop.active {
  opacity: 1;
  visibility: visible;
}
.totop .icon {
  background-image: url(../images/totop.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px auto;
  border: 0px;
  margin: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 769px) {
  .totop:hover {
    background-color: var(--clr3);
  }
}
.bounce {
  -webkit-animation-name: bounces;
          animation-name: bounces;
}

.animateds {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes bounces {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}

@keyframes bounces {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}
@-webkit-keyframes fixed_banner {
  0% {
    left: 0;
    opacity: 1;
  }
  100% {
    left: -3px;
    opacity: 0.7;
  }
}
@keyframes fixed_banner {
  0% {
    left: 0;
    opacity: 1;
  }
  100% {
    left: -3px;
    opacity: 0.7;
  }
}
.fixed_banner {
  position: fixed;
  top: 22.3em;
  right: 0px;
  z-index: 15;
  -webkit-transition: right 0.3s ease-in-out;
  transition: right 0.3s ease-in-out;
}
.fixed_banner > div {
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.fixed_banner a {
  content: "";
  display: block;
  position: absolute;
  -webkit-transition: all 0.3s;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.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 .web1 p {
  background-color: var(--clr3);
}
.fixed_banner .tel p {
  background-color: var(--main-color);
}
.fixed_banner .tel p .tt::before {
  margin-bottom: 0.5em;
  width: 1.916667em;
  height: 2em;
  --mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='21.677' height='23.963' viewBox='0 0 21.677 23.963'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_45' data-name='Rectangle 45' width='21.677' height='23.963' fill='%23fff'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Group_3' data-name='Group 3' clip-path='url(%23clip-path)'%3E%3Cpath id='Path_3244' data-name='Path 3244' d='M15.364,25.127l-1.4-1.4a24.785,24.785,0,0,1-3.991.434l-.072,0a.4.4,0,0,1-.249-.1L9.6,24.006A21.591,21.591,0,0,1,5.287,17.55l-.03-.069a.4.4,0,0,1,0-.271l.029-.065a25.126,25.126,0,0,1,1.926-3.522L6.458,11.8,5.53,9.56l-.76-1.835a9.5,9.5,0,0,0-1.2.354,10,10,0,0,0-2.1,1.067A3.187,3.187,0,0,0,.177,10.89c-.026.1-.055.2-.074.3a5.349,5.349,0,0,0-.009,2.04A26.532,26.532,0,0,0,3.64,22.272c.153.246.308.491.471.734s.331.481.5.717a26.476,26.476,0,0,0,7,6.735,5.274,5.274,0,0,0,1.889.772c.1.02.2.033.3.048a3.217,3.217,0,0,0,.927-.042A3.177,3.177,0,0,0,15.9,30.75a9.966,9.966,0,0,0,1.791-1.534,9.8,9.8,0,0,0,.787-.972l-1.406-1.405Z' transform='translate(0 -7.33)' fill='%23fff'/%3E%3Cpath id='Path_3245' data-name='Path 3245' d='M217.947,5.355A12.483,12.483,0,0,0,209.956.016a.742.742,0,0,0-.29,1.456,11.071,11.071,0,0,1,8.7,13.018.742.742,0,0,0,.583.873.715.715,0,0,0,.146.015.742.742,0,0,0,.727-.6,12.475,12.475,0,0,0-1.875-9.425' transform='translate(-198.39 -0.001)' fill='%23fff'/%3E%3Cpath id='Path_3246' data-name='Path 3246' d='M193.112,84.682a6.74,6.74,0,0,1,5.3,7.923.741.741,0,0,0,.583.873.714.714,0,0,0,.146.015.742.742,0,0,0,.727-.6,8.223,8.223,0,0,0-6.463-9.67.743.743,0,0,0-.289,1.457' transform='translate(-182.68 -78.961)' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.fixed_banner .web1 p .tt::before {
  --mask: unset;
  background-color: unset;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-image: url(../images/shared_fixed_bnr_icon01.png);
}
.fixed_banner .web p {
  background-color: var(--clr4);
}
.fixed_banner .web p .tt::before {
  margin-bottom: 0.5em;
  --mask: unset;
  background-color: unset;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-image: url(../images/shared_fixed_bnr_icon02.png);
}
.fixed_banner .line p .tt::before {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-image: url(../images/fixed_banner_line.png);
  background-color: unset;
}
.fixed_banner .mail p {
  background-color: #5ac6d2;
}
.fixed_banner .mail p .tt::before {
  margin-bottom: 0.5em;
  width: 2.333em;
  height: 1.6667em;
  --mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 272 196' %3E%3Cpath d='M233.995,0.755 L38.001,0.755 C17.197,0.755 0.331,17.258 0.331,37.614 L0.331,158.907 C0.331,179.250 17.197,195.759 38.001,195.759 L233.995,195.759 C254.798,195.759 271.666,179.250 271.666,158.907 L271.666,37.614 C271.666,17.258 254.798,0.755 233.995,0.755 ZM94.749,132.313 L41.999,176.344 C38.278,179.430 32.683,179.025 29.509,175.377 C26.333,171.737 26.775,166.259 30.500,163.160 L83.252,119.122 C86.970,116.029 92.565,116.474 95.739,120.108 C98.917,123.762 98.475,129.220 94.749,132.313 ZM135.998,115.591 C128.943,115.565 122.103,113.265 116.755,108.767 L116.759,108.767 L116.743,108.754 C116.747,108.754 116.751,108.754 116.755,108.767 L35.815,40.037 C32.118,36.892 31.724,31.428 34.930,27.807 C38.140,24.204 43.732,23.811 47.428,26.937 L128.388,95.673 C130.118,97.194 132.970,98.257 135.998,98.251 C139.022,98.251 141.824,97.200 143.650,95.628 L143.691,95.589 L224.568,26.943 C228.263,23.811 233.857,24.204 237.067,27.807 C240.272,31.428 239.878,36.892 236.180,40.037 L155.218,108.774 C149.889,113.259 143.058,115.585 135.998,115.591 ZM242.492,175.377 C239.316,179.025 233.721,179.430 230.003,176.344 L177.251,132.313 C173.526,129.220 173.084,123.762 176.261,120.108 C179.435,116.474 185.029,116.029 188.748,119.122 L241.501,163.160 C245.226,166.259 245.666,171.737 242.492,175.377 Z'/%3E%3C/svg%3E");
}
.fixed_banner .line p {
  background-color: #06c755;
}

@media only screen and (min-width: 769px) {
  .fixed_banner {
    font-size: 10px;
    --size: 6em;
    width: 6em;
  }
  .fixed_banner > div {
    width: var(--size);
    height: 6.5em;
    margin-bottom: 1em;
  }
  .fixed_banner p {
    font-size: 1.6em;
    width: 3.75em;
    height: 100%;
    border-radius: 20px 0 0 20px;
  }
  .fixed_banner p .tt {
    text-orientation: upright;
    width: 100%;
    letter-spacing: 0.05em;
  }
  .fixed_banner .tel {
    --w_tel: 190px;
    -webkit-transform: translateX(calc(-var(--size) - var(--w_tel)));
            transform: translateX(calc(-var(--size) - var(--w_tel)));
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1280px) {
  .fixed_banner .tel {
    --w_tel: 150px;
  }
}
@media only screen and (min-width: 769px) {
  .fixed_banner .tel .tt {
    font-size: 0;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% auto;
  }
  .fixed_banner .tel p {
    position: relative;
    border-radius: 15px 0 0 15px;
  }
  .fixed_banner .tel p::before {
    position: absolute;
    content: "";
    top: calc(50% - 0.6875em);
    left: calc(50% - 0.625em);
    width: 1.375em;
    height: 1.5em;
    -webkit-mask-position: center;
            mask-position: center;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-mask-size: 100% auto;
            mask-size: 100% auto;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='21.677' height='23.963' viewBox='0 0 21.677 23.963'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_45' data-name='Rectangle 45' width='21.677' height='23.963' fill='%23fff'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Group_3' data-name='Group 3' clip-path='url(%23clip-path)'%3E%3Cpath id='Path_3244' data-name='Path 3244' d='M15.364,25.127l-1.4-1.4a24.785,24.785,0,0,1-3.991.434l-.072,0a.4.4,0,0,1-.249-.1L9.6,24.006A21.591,21.591,0,0,1,5.287,17.55l-.03-.069a.4.4,0,0,1,0-.271l.029-.065a25.126,25.126,0,0,1,1.926-3.522L6.458,11.8,5.53,9.56l-.76-1.835a9.5,9.5,0,0,0-1.2.354,10,10,0,0,0-2.1,1.067A3.187,3.187,0,0,0,.177,10.89c-.026.1-.055.2-.074.3a5.349,5.349,0,0,0-.009,2.04A26.532,26.532,0,0,0,3.64,22.272c.153.246.308.491.471.734s.331.481.5.717a26.476,26.476,0,0,0,7,6.735,5.274,5.274,0,0,0,1.889.772c.1.02.2.033.3.048a3.217,3.217,0,0,0,.927-.042A3.177,3.177,0,0,0,15.9,30.75a9.966,9.966,0,0,0,1.791-1.534,9.8,9.8,0,0,0,.787-.972l-1.406-1.405Z' transform='translate(0 -7.33)' fill='%23fff'/%3E%3Cpath id='Path_3245' data-name='Path 3245' d='M217.947,5.355A12.483,12.483,0,0,0,209.956.016a.742.742,0,0,0-.29,1.456,11.071,11.071,0,0,1,8.7,13.018.742.742,0,0,0,.583.873.715.715,0,0,0,.146.015.742.742,0,0,0,.727-.6,12.475,12.475,0,0,0-1.875-9.425' transform='translate(-198.39 -0.001)' fill='%23fff'/%3E%3Cpath id='Path_3246' data-name='Path 3246' d='M193.112,84.682a6.74,6.74,0,0,1,5.3,7.923.741.741,0,0,0,.583.873.714.714,0,0,0,.146.015.742.742,0,0,0,.727-.6,8.223,8.223,0,0,0-6.463-9.67.743.743,0,0,0-.289,1.457' transform='translate(-182.68 -78.961)' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E%0A");
            mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='21.677' height='23.963' viewBox='0 0 21.677 23.963'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_45' data-name='Rectangle 45' width='21.677' height='23.963' fill='%23fff'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Group_3' data-name='Group 3' clip-path='url(%23clip-path)'%3E%3Cpath id='Path_3244' data-name='Path 3244' d='M15.364,25.127l-1.4-1.4a24.785,24.785,0,0,1-3.991.434l-.072,0a.4.4,0,0,1-.249-.1L9.6,24.006A21.591,21.591,0,0,1,5.287,17.55l-.03-.069a.4.4,0,0,1,0-.271l.029-.065a25.126,25.126,0,0,1,1.926-3.522L6.458,11.8,5.53,9.56l-.76-1.835a9.5,9.5,0,0,0-1.2.354,10,10,0,0,0-2.1,1.067A3.187,3.187,0,0,0,.177,10.89c-.026.1-.055.2-.074.3a5.349,5.349,0,0,0-.009,2.04A26.532,26.532,0,0,0,3.64,22.272c.153.246.308.491.471.734s.331.481.5.717a26.476,26.476,0,0,0,7,6.735,5.274,5.274,0,0,0,1.889.772c.1.02.2.033.3.048a3.217,3.217,0,0,0,.927-.042A3.177,3.177,0,0,0,15.9,30.75a9.966,9.966,0,0,0,1.791-1.534,9.8,9.8,0,0,0,.787-.972l-1.406-1.405Z' transform='translate(0 -7.33)' fill='%23fff'/%3E%3Cpath id='Path_3245' data-name='Path 3245' d='M217.947,5.355A12.483,12.483,0,0,0,209.956.016a.742.742,0,0,0-.29,1.456,11.071,11.071,0,0,1,8.7,13.018.742.742,0,0,0,.583.873.715.715,0,0,0,.146.015.742.742,0,0,0,.727-.6,12.475,12.475,0,0,0-1.875-9.425' transform='translate(-198.39 -0.001)' fill='%23fff'/%3E%3Cpath id='Path_3246' data-name='Path 3246' d='M193.112,84.682a6.74,6.74,0,0,1,5.3,7.923.741.741,0,0,0,.583.873.714.714,0,0,0,.146.015.742.742,0,0,0,.727-.6,8.223,8.223,0,0,0-6.463-9.67.743.743,0,0,0-.289,1.457' transform='translate(-182.68 -78.961)' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E%0A");
    background-color: #fff;
  }
  .fixed_banner .tel:hover {
    -webkit-transform: translateX(calc(0em - var(--w_tel)));
            transform: translateX(calc(0em - var(--w_tel)));
  }
  .fixed_banner .tel:hover a {
    width: calc(var(--size) + var(--w_tel));
  }
  .fixed_banner .tel .ov {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: var(--main-color);
    position: absolute;
    left: 3.75em;
    height: 100%;
    top: 0;
    width: var(--w_tel);
    border-left: 1px solid #fff;
  }
  .fixed_banner .tel .ov .text {
    font-size: 1.5em;
  }
  .fixed_banner .web1 {
    height: 22em;
  }
  .fixed_banner .web1::before {
    position: absolute;
    content: "";
    top: -0.5em;
    left: -0.5em;
    width: 3em;
    height: 3em;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-image: url(../images/shared_fixed_bnr_icon01.png);
  }
  .fixed_banner .web {
    height: 15em;
  }
  .fixed_banner .web::before {
    position: absolute;
    content: "";
    top: -0.5em;
    left: -0.5em;
    width: 3em;
    height: 3em;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-image: url(../images/shared_fixed_bnr_icon02.png);
  }
  .fixed_banner .web p .tt::before {
    margin-bottom: 0.5em;
  }
  .fixed_banner .mail p {
    border-bottom-left-radius: 0.833em;
  }
  .fixed_banner .line p {
    border-radius: 15px 0 0 15px;
    position: relative;
  }
  .fixed_banner .line p::before {
    position: absolute;
    content: "";
    top: calc(50% - 0.9375em);
    left: calc(50% - 0.9375em);
    width: 1.875em;
    height: 1.8125em;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-image: url(../images/fixed_banner_line.png);
  }
  .fixed_banner .line p .tt {
    font-size: 0;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1366px), (min-width: 769px) and (max-height: 650px) {
  .totop {
    width: 60px;
    height: 60px;
  }
}
@media (769px <= width <= 1560px) {
  .fixed_banner {
    top: 52%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media (769px <= width <= 1366px) {
  .fixed_banner {
    font-size: 7.5px;
  }
}
@media only screen and (min-width: 769px) and (max-height: 620px) {
  .totop {
    right: 100px;
  }
}
footer {
  padding: 70px 0 0;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--main-color);
}
footer .inner_big {
  background-color: #fff;
  max-width: 1820px;
  border-radius: 50px 50px 0 0;
  padding-top: 80px;
  padding-bottom: 51px;
  width: calc(100% - 40px);
}
footer .ft-banner {
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}
footer p {
  margin-bottom: 0;
}
footer p,
footer a {
  color: #fff;
  text-decoration: none;
}
footer .ft_logo {
  padding: 0px 0 30px;
  max-width: 209px;
  margin-left: auto;
  margin-right: auto;
}
footer .ft_info {
  width: 100%;
}
footer .ft_info .des {
  margin-bottom: 26px;
  font-size: 14px;
  letter-spacing: 0.1em;
}
footer .ft_link {
  --space: 275px;
  width: 100%;
  margin-top: 30px;
  max-width: 1620px;
  margin-left: auto;
  margin-right: auto;
}
footer .ft_link ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
footer .ft_link ul li {
  margin-right: 1.6111111111em;
}
@media (769px <= width <= 991px) {
  footer .ft_link ul li {
    margin-right: 1em;
  }
}
footer .ft_link a span {
  display: inline-block;
}
footer .ft_link .link_list {
  display: block;
}
footer .ft_link .link_list > div {
  background-color: #fffce3;
  border-radius: 20px;
  margin-bottom: 10px;
  padding-left: 55px;
  padding-top: 41px;
  padding-bottom: 25px;
}
footer .ft_link .link_list > div:last-child {
  margin-bottom: 0;
}
footer .ft_link .title {
  width: var(--space);
}
footer .ft_link ul {
  width: calc(100% - var(--space));
}

.ft_link a {
  text-decoration: none;
}
@media only screen and (min-width: 769px) {
  .ft_link .link_list > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.ft_link .title {
  font-weight: bold;
  font-size: 22px;
  letter-spacing: 0.05em;
  color: #f8b62c;
}
.ft_link .title::before {
  display: none;
}
.ft_link ul:last-child {
  margin-bottom: 0;
}
.ft_link li {
  margin-bottom: 0.72222222em;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
.ft_link a {
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: left;
  color: #5f5f5f;
  position: relative;
  font-size: 16px;
  padding-left: 1.875em;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.ft_link a span {
  display: block;
}
.ft_link a::before {
  position: absolute;
  content: "";
  top: 0.125em;
  left: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-image: url(../images/ft-link-arr.png);
  width: 20px;
  height: 20px;
}
.ft_link a:hover {
  opacity: 1;
}
.ft_link a::after {
  content: "";
  display: block;
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 0;
  height: 0;
  border-bottom: 1px solid;
  bottom: 0;
  left: 1em;
}
.ft_link a:hover {
  opacity: 1;
}
.copyright {
  margin-top: 45px;
}
.copyright .textwidget p {
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #afafaf;
  border-left: 1px solid #afafaf;
  padding-left: 10px;
  margin-left: 10px;
}
.copyright .img {
  max-width: 144px;
}
.copyright .flex {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 1281px) {
  footer .ft_link .title {
    padding-bottom: 17px;
  }
  footer .ft_link .link_list > div:first-child {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1280px) {
  footer .ft_link {
    --space: min(200px, 22vw);
  }
  footer .ft_link a {
    font-size: 14px;
  }
  footer .ft_link a::before {
    top: 0;
  }
  footer .ft_link .title {
    font-size: 20px;
  }
  footer .ft_link .link_list > div {
    padding-left: 20px;
    padding-right: 20px;
  }
}
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*==========================================================================*/
/*                                INDEX                                     */
/*==========================================================================*/
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*==========================================================================*/
/*                                Under                                     */
/*==========================================================================*/
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*# sourceMappingURL=style.css.map */