@charset "UTF-8";
:root {
  --f-notosans: "Noto Sans JP", sans-serif;
  --f-en: "Zen Kaku Gothic Antique", sans-serif;
  --main-color: #6baac4;
  --clr1: #495b5a;
  --clr2: #81c8a5;
  --ttl_size: 28px;
  --wrapper: 100px;
}

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

@media only screen and (min-width: 769px) {
  a:not([target*=_blank]) {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  a:not([target*=_blank]):hover {
    opacity: 0.7;
  }
  a.tel_click {
    pointer-events: none;
  }
  a:not(.tel_click):hover, a:not(.tel_click):active {
    color: #64b5f7;
  }
}
a.logo:hover,
.logo a:hover,
a.ft_logo:hover,
.ft_logo a:hover,
a.tel_click:hover {
  opacity: 1 !important;
}

table {
  width: 100%;
}

iframe {
  width: 100%;
  height: 100%;
}

.captcha_box iframe {
  height: auto;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-center {
  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;
}

p {
  line-height: 2.25;
  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 {
  -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: 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 {
  -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;
  }
}
.box_faq .item {
  margin-bottom: 24px;
}
.box_faq .item:last-child {
  margin-bottom: 0;
}
.box_faq .b_question, .box_faq .b_answer {
  padding-left: 83px;
  position: relative;
}
.box_faq .b_question::before, .box_faq .b_answer::before {
  position: absolute;
  left: 26px;
  font-family: var(--f-en);
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
}
.box_faq .faq_tl {
  color: var(--clr1);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.5;
  position: relative;
  padding-right: 25px;
}
.box_faq .faq_tl::before, .box_faq .faq_tl::after {
  content: "";
  position: absolute;
  background-color: var(--clr2);
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.box_faq .faq_tl::before {
  width: 26px;
  height: 2px;
  right: 0;
}
.box_faq .faq_tl::after {
  width: 2px;
  height: 26px;
  right: 12px;
}
.box_faq .b_question {
  background-color: #ffffff;
  border-radius: 5px;
  padding-top: 21px;
  padding-bottom: 19px;
  padding-right: 27px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  cursor: pointer;
}
.box_faq .b_question::before {
  content: "Q";
  color: var(--clr2);
  top: 13px;
  bottom: 0;
}
.box_faq .b_question.rotate .faq_tl::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: 0;
}
.box_faq .accBlock {
  border-bottom: 1px solid var(--main-color);
}
.box_faq .b_answer {
  padding-top: 12px;
  padding-bottom: 18px;
  padding-right: 30px;
}
.box_faq .b_answer::before {
  content: "A";
  color: var(--main-color);
  top: 15px;
  left: 29px;
}

@media only screen and (min-width: 769px) {
  .box_faq .item:not(.ac) .accBlock {
    height: 0;
  }
  .box_faq .b_question:hover {
    background-color: #f0fff7;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1200px) {
  .box_faq .item {
    margin-bottom: 15px;
  }
  .box_faq .b_answer, .box_faq .b_question {
    padding-left: 60px;
  }
  .box_faq .b_answer::before, .box_faq .b_question::before {
    font-size: 30px;
    left: 20px;
  }
  .box_faq .b_question {
    padding-top: 14px;
    padding-bottom: 14px;
    padding-right: 17px;
  }
  .box_faq .b_question::before {
    top: 10px;
  }
  .box_faq .b_answer::before {
    top: 10px;
  }
  .box_faq .faq_tl {
    font-size: 18px;
  }
  .box_faq .faq_tl::before {
    width: 20px;
  }
  .box_faq .faq_tl::after {
    height: 20px;
    right: 9px;
  }
}
@media only screen and (max-width: 768px) {
  .box_faq .item {
    margin-bottom: 15px;
  }
  .box_faq .b_answer, .box_faq .b_question {
    padding-left: 45px;
  }
  .box_faq .b_answer::before, .box_faq .b_question::before {
    font-size: 30px;
    left: 12px;
  }
  .box_faq .b_question {
    padding-top: 12px;
    padding-bottom: 13px;
    padding-right: 12px;
  }
  .box_faq .b_question::before {
    top: 8px;
  }
  .box_faq .b_answer {
    padding-right: 10px;
  }
  .box_faq .b_answer::before {
    top: 10px;
  }
  .box_faq .faq_tl {
    font-size: 18px;
    letter-spacing: 0.05em;
  }
  .box_faq .faq_tl::before {
    width: 18px;
  }
  .box_faq .faq_tl::after {
    height: 18px;
    right: 8px;
  }
}
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*==========================================================================*/
/*                           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: 1001px) {
  .sp_1000 {
    display: none !important;
  }
}
@media only screen and (min-width: 769px) {
  .sp_only {
    display: none !important;
  }
}
@media only screen and (min-width: 451px) {
  .sp_450 {
    display: none !important;
  }
}
.br_1000 {
  display: none;
}

@media only screen and (min-width: 769px) and (max-width: 1000px) {
  .br_1000 {
    display: block;
  }
}
.TabContainer .TabContent {
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-box-shadow: -20px 15px 50px 10px rgba(25, 25, 25, 0.06);
          box-shadow: -20px 15px 50px 10px rgba(25, 25, 25, 0.06);
}
.TabContainer .TabContent .content {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #ffffff;
}
.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;
  padding: 80px 80px 72px;
}
.TabContainer .TabContent .content > div.active {
  opacity: 1;
  z-index: 1;
  visibility: visible;
}
.TabContainer .TabPager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0px auto;
  position: relative;
  z-index: 2;
}
.TabContainer .TabPager > div {
  background-color: #f3f8f8;
  text-align: center;
  position: relative;
  margin: 0;
  width: 25%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  color: #ffffff;
}
.TabContainer .TabPager > div::after {
  content: "";
  position: absolute;
  bottom: -1.25em;
  left: 0;
  right: 0;
  margin: auto;
  background-color: var(--clr2);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  width: 1.25em;
  height: 1.3125em;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.TabContainer .TabPager > div:not(:first-child) {
  border-left: 1px solid #c5c5c5;
}
.TabContainer .TabPager > div .tt {
  margin: 0;
  font-weight: 400;
  line-height: 1.5;
  padding: 1.5em 0.4em 1.5625em;
  color: var(--clr1);
  letter-spacing: 0.05em;
  background-color: #f3f8f8;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.TabContainer .TabPager > div .tt .en {
  color: #6baac4;
  display: block;
  font-size: 0.75em;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-transform: uppercase;
  margin-top: 0.4166666667em;
}
.TabContainer .TabPager > div.active {
  background-color: var(--clr2);
  z-index: 1;
}
.TabContainer .TabPager > div.active::after {
  opacity: 1;
}
.TabContainer .TabPager > div.active .tt {
  color: #ffffff;
  background-color: var(--clr2);
}
.TabContainer .TabPager > div.active .tt .en {
  color: #ffffff;
}

.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: -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;
  width: calc(100% - 40px);
  margin: 7.5em auto 0;
  z-index: 1;
}
.key::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.3);
  z-index: -1;
}

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

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

.btn_st01 {
  max-width: 348px;
  width: 100%;
}
.btn_st01 a {
  text-decoration: none;
  color: var(--clr1);
  text-align: center;
  display: block;
  width: 100%;
  position: relative;
  padding: 1.3125em 1.25em 1.4375em;
  border: 1px solid var(--clr2);
  border-radius: 66px;
  background-color: #ffffff;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.btn_st01 a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.8125em;
  margin: auto;
  width: 0.5625em;
  height: 0.8125em;
  mask-image: url(../images/btn_arrow.svg);
  -webkit-mask-image: url(../images/btn_arrow.svg);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-position: center;
  -webkit-mask-position: center;
  background-color: var(--clr2);
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.btn_st01 a:hover {
  color: var(--clr1);
}
@media only screen and (min-width: 769px) {
  .btn_st01 a:hover {
    background-color: var(--clr2);
    color: #ffffff;
  }
  .btn_st01 a:hover::after {
    background-color: #ffffff;
  }
}

.btn_st02 {
  display: table;
}
.btn_st02 a {
  display: table;
  color: var(--clr1);
  position: relative;
  text-decoration: none;
  padding-right: 2.625em;
  letter-spacing: 0.2em;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.btn_st02 a::after {
  content: "";
  position: absolute;
  top: 0.125em;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  background: var(--clr2) url(../images/btn_arrow02.svg) no-repeat center/100% auto;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.btn_st02 a:hover {
  color: var(--clr1);
}
@media only screen and (min-width: 769px) {
  .btn_st02 a:hover {
    color: var(--main-color);
  }
  .btn_st02 a:hover::after {
    background-color: var(--main-color);
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

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

.br_auto {
  display: inline-block;
}

/* Tablet
-------------------------------------------*/
@media only screen and (min-width: 769px) {
  .TabContainer .TabPager > div:not(.active):hover {
    background-color: #e9f4f0;
  }
  .TabContainer .TabPager > div:not(.active):hover .tt {
    background-color: #e9f4f0;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1400px) {
  .key {
    margin-top: 6.5em;
    font-size: min(16px, 1.4vw);
  }
  .TabContainer .TabContent .content > div {
    padding: 80px 4% 72px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1200px) {
  body {
    font-size: 87.5%;
  }
  .TabContainer .TabPager > div {
    font-size: min(14px, 1.4vw);
  }
  .TabContainer .TabPager > div .tt {
    letter-spacing: 0.05em;
  }
  .TabContainer .TabContent .content > div {
    padding: 30px 30px 40px;
  }
  .btn_st01 a::after {
    right: 0.9em;
  }
}
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*==========================================================================*/
/*                           Header - Footer                                */
/*==========================================================================*/
h1 {
  position: absolute;
  overflow: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  --hd: 7.5em;
  height: var(--hd);
  z-index: 20;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #fff;
}

.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: calc(100% - 3.625em);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  padding: 0.3125em 1.25em;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.logo {
  width: 20%;
  max-width: 21.9375em;
  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;
}
.logo a {
  display: block;
  width: 100%;
  text-align: center;
}
.logo img {
  width: auto;
}

.right_head {
  width: calc(80% - 3.75em);
  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;
  padding-right: 1.875em;
}

.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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: center;
  width: 100%;
}
.pc_navi > ul > li {
  position: relative;
  margin: 0 2.25em;
}
.pc_navi > ul > li:hover > a,
.pc_navi > ul > li:hover > p {
  color: #343434;
  opacity: 0.8;
}
.pc_navi > ul > li:hover > a::before,
.pc_navi > ul > li:hover > p::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.pc_navi > ul > li.menu-item-has-children > a::after,
.pc_navi > ul > li.menu-item-has-children > p::after {
  content: "";
  width: 0.5625em;
  height: 0.3125em;
  position: absolute;
  bottom: -0.625em;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  background-color: var(--clr2);
}
.pc_navi > ul > li.menu-item-has-children > a:hover::after,
.pc_navi > ul > li.menu-item-has-children > p:hover::after {
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}
.pc_navi > ul > li > a,
.pc_navi > ul > li > p {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -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.5em;
  text-decoration: none;
  text-align: center;
  font-weight: 400;
  line-height: 1.5;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  color: #343434;
  letter-spacing: 0.14em;
  padding-bottom: 0.125em;
}
.pc_navi > ul > li > a::before,
.pc_navi > ul > li > p::before {
  content: "";
  position: absolute;
  top: -0.625em;
  left: 0;
  right: 0;
  width: 4.375em;
  height: 2px;
  background-color: var(--clr2);
  margin: auto;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.pc_navi > ul > li > a span,
.pc_navi > ul > li > p span {
  font-size: 0.75em;
  font-weight: 500;
  color: var(--clr2);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 0.25em;
}
.pc_navi > ul > li:hover a.title::after,
.pc_navi > ul > li:hover p.title::after {
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}
.pc_navi > ul .subInner {
  position: absolute;
  width: 18em;
  right: 50%;
  bottom: -15px;
  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;
  z-index: 1;
  padding-top: 0.9em;
}
.pc_navi > ul .subInner.active {
  opacity: 1;
  visibility: visible;
}
.pc_navi > ul .subInner ul {
  background-color: var(--clr2);
  padding-bottom: 0.625em;
}
.pc_navi > ul .subInner ul li {
  padding: 0 0.625em;
}
.pc_navi > ul .subInner ul li a {
  position: relative;
  display: block;
  padding: 1.2em 0.6em 1.2em 1.6em;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.7);
  -webkit-transition: all 0.2s ease;
  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;
  -webkit-transform: translateY(-54%);
          transform: translateY(-54%);
}
.h_insta{
  position: fixed;
  right: 72px;
  top: 13px;
  width: 36px;
  height: 36px;
  background: url(../images/instag_bg.jpg) no-repeat center/cover;
  border-radius: 7px;
}
.h_insta a{
  width: 100%;
  height: 100%;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 1921px) {
  .logo {
    width: 21.9375em;
  }
  .right_head {
    width: calc(100% - 25.6875em);
  }
}
@media only screen and (min-width: 769px) {
  header.active,
  .ovh header {
    --hd: 6.25em;
  }
  .pc_navi > ul .col2 .subInner {
    width: 38.5em;
  }
  .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: 1320px;
    margin: auto;
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .menu_toggle .inside .ft_link .link_list {
    width: 100%;
  }
  .menu_toggle .inside .ft_link a:hover {
    color: var(--clr2);
  }
  .menu_toggle .inside .ft_link .menu01 {
    width: 49%;
  }
  .menu_toggle .inside .ft_link .menu01 ul {
    width: 55%;
  }
  .menu_toggle .inside .ft_link .menu01 ul:last-child {
    width: 43%;
  }
  .menu_toggle .inside .ft_link .menu02 {
    width: 49%;
    margin-top: 0;
  }
  .menu_toggle .inside .ft_link .menu02 ul {
    width: 52%;
  }
  .menu_toggle .inside .ft_link .menu02 ul:last-child {
    width: 47%;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1400px) {
  header {
    font-size: min(16px, 1.4vw);
    --hd: 6.5em;
  }
  .menu_toggle .inside .ft_link {
    font-size: min(16px, 1.2vw);
  }
}
@media only screen and (min-width: 769px) and (max-width: 1200px) {
  .right_head {
    padding-right: 1em;
    width: calc(78% - 3.75em);
  }
  .logo {
    width: 22%;
  }
  .pc_navi > ul > li {
    margin: 0 1.25em;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1000px) {
  .menu_toggle .inside .ft_link {
    max-width: 590px;
    font-size: 14px;
  }
  .menu_toggle .inside .ft_link .title {
    margin-bottom: 0.4em;
  }
  .menu_toggle .inside .ft_link .menu01, .menu_toggle .inside .ft_link .menu02 {
    width: 100%;
  }
  .menu_toggle .inside .ft_link .menu02 {
    margin-top: 30px;
  }
}
.home_page .ud_gallery {
  display: none;
}

.idx_gallery {
  position: relative;
  z-index: 1;
  -webkit-filter: drop-shadow(31px 20px 27px rgba(96, 122, 109, 0.1));
          filter: drop-shadow(31px 20px 27px rgba(96, 122, 109, 0.1));
  padding: 55px 0 0;
}
.idx_gallery.ud_gallery {
  padding: 0 0 76px;
}
.idx_gallery .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.idx_gallery .list .item {
  margin: 5px 6.5px;
}
.idx_gallery .list .item .img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 400px;
  height: 300px;
  overflow: hidden;
}
.idx_gallery .list .item.slick-slide .img01 {
  background-image: url(../images/idx_gallery01.jpg);
}
.idx_gallery .list .item.slick-slide .img02 {
  background-image: url(../images/idx_gallery02.jpg);
}
.idx_gallery .list .item.slick-slide .img03 {
  background-image: url(../images/idx_gallery03.jpg);
}
.idx_gallery .list .item.slick-slide .img04 {
  background-image: url(../images/idx_gallery04.jpg);
}
.idx_gallery .list .item.slick-slide .img05 {
  background-image: url(../images/idx_gallery05.jpg);
}
.idx_gallery .list .item.slick-slide .img06 {
  background-image: url(../images/idx_gallery06.jpg);
}
.idx_gallery .list .item.slick-slide .img07 {
  background-image: url(../images/idx_gallery07.jpg);
}
.idx_gallery .list .item.slick-slide .img08 {
  background-image: url(../images/idx_gallery08.jpg);
}
.idx_gallery .list .item.slick-slide .img09 {
  background-image: url(../images/idx_gallery09.jpg);
}

.time_sheet .note {
  margin-top: 18px;
  margin-left: -3px;
  line-height: 1.875;
  letter-spacing: 0.1em;
}
.time_sheet .note span {
  display: inline-block;
}
.time_sheet .shared_tbl_dot {
  color: transparent;
  position: relative;
  padding: 0;
  display: inline-block;
  border: 0;
}
.time_sheet .shared_tbl_dot::before {
  position: absolute;
  left: 0;
  right: 0;
  content: "-";
  color: var(--clr1);
  text-align: center;
  font-size: inherit;
  font-weight: 500;
}
.time_sheet table {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  position: relative;
  z-index: 0;
}
.time_sheet table::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4em;
  background-image: -webkit-gradient(linear, right top, left top, from(rgb(145, 203, 205)), to(rgb(170, 216, 183)));
  background-image: linear-gradient(-90deg, rgb(145, 203, 205) 0%, rgb(170, 216, 183) 100%);
  z-index: -1;
}
.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%;
  border-bottom: 1px solid var(--clr2);
}
.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: 12.5%;
  padding-right: 1.1em;
}
.time_sheet table th {
  padding: 1.25em 0.2em;
  color: #f1f2f3;
  border: 0;
  background: none;
}
.time_sheet table td {
  padding: 1.25em 0.2em 1.25em;
  color: var(--clr2);
}
.time_sheet table td:first-child {
  color: var(--clr1);
}
.time_sheet table tr:nth-child(3) td {
  padding-bottom: 1.6em;
}
.time_sheet.tbl_white table::before {
  background: #ffffff;
}
.time_sheet.tbl_white table thead {
  background: #ffffff;
}
.time_sheet.tbl_white table th {
  color: var(--clr2);
}
.time_sheet.tbl_white table td {
  color: #f1f2f3;
  border-color: #ffffff;
}
.time_sheet.tbl_white table td:first-child {
  color: #f1f2f3;
}
.time_sheet.tbl_white table td, .time_sheet.tbl_white table th {
  font-weight: 400;
}
.time_sheet.tbl_white table .shared_tbl_dot::before {
  color: #ffffff;
}

@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: 25px;
  right: 25px;
  width: 84px;
  height: 82px;
  background: url(../images/totop.svg) no-repeat center/contain;
  -webkit-filter: drop-shadow(0px 20px 11px rgba(0, 0, 0, 0.05));
          filter: drop-shadow(0px 20px 11px rgba(0, 0, 0, 0.05));
}
.totop.active {
  opacity: 1;
  visibility: visible;
}
.totop .icon {
  background-image: url(../images/totop.png);
  background-repeat: no-repeat;
  background-size: 12px auto;
  background-position: 50% calc(50% - 4px);
  border: 0px;
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 769px) {
  .totop:hover {
    opacity: 0.8;
    -webkit-filter: drop-shadow(0px 0px 11px rgba(0, 0, 0, 0.05));
            filter: drop-shadow(0px 0px 11px rgba(0, 0, 0, 0.05));
  }
}
.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;
  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%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          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;
  position: relative;
}
.fixed_banner .tel p {
  background-color: #6baac4;
}
.fixed_banner .tel p .tt::before {
  width: 20px;
  height: 20px;
  --mask: url("../images/ic_tel.svg");
}
.fixed_banner .web p {
  background-color: #a4d5bd;
}
.fixed_banner .web p .tt::before {
  width: 20px;
  height: 20px;
  --mask: url("../images/ic_web.svg");
}

@media only screen and (min-width: 769px) {
  .fixed_banner {
    font-size: 10px;
    --size: 7em;
    width: 7em;
    top: 40.7em;
  }
  .fixed_banner > div {
    width: var(--size);
    height: var(--size);
    margin-bottom: 4px;
  }
  .fixed_banner p {
    width: var(--size);
    height: var(--size);
    border-radius: 3px 0 0 3px;
  }
  .fixed_banner p .tt {
    font-size: 1.1em;
    letter-spacing: 0.1em;
  }
  .fixed_banner .tel {
    --w_tel: 16em;
    -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;
  }
  .fixed_banner .tel p {
    padding-top: 1px;
  }
  .fixed_banner .tel .tt::before {
    margin-bottom: 6px;
    left: 0;
  }
  .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: 7em;
    height: 100%;
    top: 0;
    width: var(--w_tel);
  }
  .fixed_banner .tel .ov::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    height: 80%;
    background-color: rgba(255, 255, 255, 0.7);
    margin: auto;
  }
  .fixed_banner .tel .ov .text {
    font-size: 2.2em;
    font-weight: 500;
    font-family: var(--f-en);
  }
  .fixed_banner .web p {
    padding-top: 2px;
  }
  .fixed_banner .web p .tt::before {
    margin-bottom: 8px;
    left: -1px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1560px) {
  .fixed_banner {
    top: calc(50% - 6em);
  }
}
@media only screen and (min-width: 769px) and (max-width: 1366px), (min-width: 769px) and (max-height: 650px) {
  .fixed_banner {
    font-size: 8.75px;
  }
  .totop {
    width: 64px;
    height: 62px;
  }
  .totop .icon {
    background-size: 10px auto;
  }
}
.p_tel a {
  font-size: 30px;
  color: #495b5a;
  text-decoration: none;
  font-family: var(--f-en);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  position: relative;
  padding-left: 1.1666666667em;
}
.p_tel a::before {
  content: "";
  position: absolute;
  top: 0.2333333333em;
  left: 0.0666666667em;
  width: 1.0333333333em;
  height: 0.7333333333em;
  mask-image: url(../images/ic_tel02.svg);
  -webkit-mask-image: url(../images/ic_tel02.svg);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-position: center;
  -webkit-mask-position: center;
  background-color: #6baac4;
}

.box_add {
  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-bottom: 31px;
}
.box_add .des {
  line-height: 1.75;
}
.box_add .p_tel {
  margin-right: 34px;
  margin-bottom: 0;
  padding-right: 25px;
  position: relative;
}
.box_add .p_tel::before {
  content: "";
  position: absolute;
  top: -7px;
  right: -4px;
  width: 1px;
  height: 50px;
  background-color: #ffffff;
}

.ft_map {
  height: 355px;
  margin-top: 28px;
}

footer {
  padding: 80px 0 45px;
  position: relative;
  background: url(../images/ft_bg.jpg) no-repeat center/cover;
}
footer .inner_big {
  position: relative;
}
footer .inner_big::before {
  content: "";
  position: absolute;
  top: -9.9375em;
  left: -7.3125em;
  background: url(../images/ft_illus.png) no-repeat center/contain;
  width: 9.1875em;
  height: 11.1875em;
}
footer p {
  margin-bottom: 0;
}
footer p,
footer a {
  color: #fff;
  text-decoration: none;
}
footer .p_tel a {
  color: #ffffff;
}
footer .p_tel a::before {
  background-color: #ffffff;
}
footer .time_sheet .note {
  color: #f1f2f3;
  font-weight: 300;
}
footer .ft_logo {
  margin: 0 auto 26px;
  width: 100%;
  max-width: 393px;
}
footer .ft_info {
  width: 45%;
  max-width: 550px;
}
footer .ft_link {
  max-width: 656px;
  width: 52%;
  margin-top: -7px;
}
footer .ft_link .title {
  color: #ffffff;
}
footer .ft_link a {
  color: #ffffff;
}
footer .ft_link a::before {
  background-color: #ffffff;
}
footer .ft_link a:hover {
  color: #ffffff;
}
@media only screen and (min-width: 769px) {
  footer .ft_link a:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
    opacity: 0.8;
  }
}

.ft_bnr {
  margin-top: 39px;
}
.ft_bnr .bnr_it {
  max-width: 320px;
  width: calc(30% - 30px);
  margin: 15px;
}

.ft_link .title {
  margin-bottom: 0.9em;
  padding-left: 0;
  font-size: 3.125em;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  pointer-events: none;
  font-family: var(--f-en);
  color: var(--clr2);
  text-transform: uppercase;
  width: 100%;
}
.ft_link .title::before {
  display: none;
}
.ft_link ul:last-child {
  margin-bottom: 0;
}
.ft_link li {
  margin-bottom: 1.5625em;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.ft_link li:last-child {
  margin-bottom: 0;
}
.ft_link a {
  display: inline-block;
  position: relative;
  padding-left: 0.8125em;
  color: inherit;
  letter-spacing: 0.1em;
  color: var(--clr1);
  line-height: 1.57;
  text-decoration: none;
}
.ft_link a::before {
  content: "";
  position: absolute;
  top: 0.6875em;
  left: 2px;
  border-radius: 50%;
  width: 4px;
  height: 4px;
  background-color: var(--clr2);
}
.ft_link a:hover {
  opacity: 1;
  color: var(--clr1);
}
@media only screen and (min-width: 769px) {
  .ft_link .link_list ul {
    width: 51%;
  }
  .ft_link .link_list ul:last-child {
    width: 45%;
    margin-right: -3px;
  }
  .ft_link .fblock {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .ft_link .menu01 {
    width: 100%;
  }
  .ft_link .menu02 {
    margin-top: 53px;
    width: 100%;
  }
}

.copyright {
  margin: 0 auto 0;
  color: #fff;
  padding: 25px 0px 23px;
  position: relative;
  z-index: 1;
}
.copyright .flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 40px;
}
.copyright .inner_big {
  max-width: 1135px;
}
.copyright .textwidget {
  display: block;
  margin-top: 2px;
  line-height: 20px;
  padding-left: 19px;
  padding-bottom: 3px;
  margin-left: 19px;
  border-left: 1px solid rgba(129, 200, 165, 0.5);
  font-weight: 400;
  letter-spacing: 0.1em;
}
.copyright .textwidget p {
  margin-bottom: 0;
  font-size: 14px;
  color: var(--clr1);
  line-height: inherit;
  letter-spacing: 0.1em;
}
.copyright .grits {
  margin-bottom: 0;
  line-height: 2.501;
}
.copyright .grits a {
  display: block;
}
.copyright .grits img {
  max-width: 143px;
}

@media only screen and (min-width: 769px) and (max-width: 1500px) {
  footer .inner_big:before {
    left: 0;
    font-size: min(16px, 1.2vw);
  }
}
@media only screen and (min-width: 769px) and (max-width: 1300px) {
  .idx_gallery .list .item .img {
    width: 300px;
    height: 225px;
  }
  .ft_link {
    font-size: min(16px, 1.3vw);
  }
  .ft_link a {
    letter-spacing: 0.05em;
  }
  .ft_link .link_list ul {
    width: 52%;
  }
  .ft_link .link_list ul:last-child {
    width: 47%;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1200px) {
  .p_tel a {
    font-size: 28px;
  }
  .box_add .p_tel {
    margin-right: 15px;
    padding-right: 10px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1000px) {
  footer .inner_big::before {
    top: -12.9375em;
  }
  footer .ft_info, footer .ft_link {
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  footer .ft_link {
    margin-top: 40px;
  }
  .ft_link {
    font-size: 14px;
  }
  .ft_link .title {
    margin-bottom: 0.4em;
  }
}
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*==========================================================================*/
/*                                INDEX                                     */
/*==========================================================================*/
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*==========================================================================*/
/*                                Under                                     */
/*==========================================================================*/
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/