@charset "UTF-8";
:root {
  --f-notosans: "Noto Sans JP", sans-serif;
  --f-jp: "Zen Maru Gothic", sans-serif;
  --f-en: "Zen Maru Gothic", sans-serif;
  --main-color: #fe979e;
  --clr1: #343434;
  --clr2: #fd636f;
  --clr3: #62c1de;
  --ttl_size: 30px;
  --wrapper: 90px;
  --line-height-p: 2;
}

/*==========================================================================*/
/*//////////////////////////////////////////////////////////////////////////*/
/*//////                                                              //////*/
/*//////  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);
}
body::-webkit-scrollbar {
  display: block;
  width: 10px;
  height: 10px;
}
body::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #fff;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: linear-gradient(to bottom, var(--clr2) 0%, var(--main-color) 50%, var(--clr2) 100%);
  box-shadow: inset 0 0 6px #fff;
}
body::-webkit-scrollbar-thumb:window-inactive {
  background: linear-gradient(to bottom, var(--clr2) 0%, var(--main-color) 50%, var(--clr2) 100%);
}

h1,
h2,
h3,
h4,
h5,
h6,
input,
button,
textarea,
select,
p,
blockquote,
th,
td,
pre,
address,
li,
dt,
dd {
  font-size: 100%;
  -webkit-text-size-adjust: none;
}

header,
section,
footer,
aside,
nav,
main,
article,
figure,
picture {
  display: block;
  padding: 0;
  margin: 0;
}

img {
  display: table;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

a:not(.tel_click) {
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  color: #64b5f7;
}
a.tel_click {
  text-decoration: none;
  color: inherit;
}

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

table {
  width: 100%;
}

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

.captcha_box iframe {
  height: auto;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

p {
  line-height: var(--line-height-p);
  letter-spacing: 0.1em;
  word-wrap: break-word;
  word-break: break-word;
  margin-bottom: 15px;
}
p:empty {
  display: none !important;
}
p:last-child {
  margin-bottom: 0;
}

.red {
  color: #ca0a0a !important;
}

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

.fl {
  float: left;
}

.fr {
  float: right;
}

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

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

.wrapper {
  overflow: hidden;
}

.inner_max,
.inner_big,
.inner,
.inner_sm {
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media only screen and (min-width: 769px) {
  .inner_max,
  .inner_big,
  .inner,
  .inner_sm {
    padding-left: var(--wrapper);
    padding-right: var(--wrapper);
  }
}

.inner_max {
  max-width: calc(1440px + 2 * var(--wrapper));
}

.inner_big {
  max-width: calc(1280px + 2 * var(--wrapper));
}

.inner {
  max-width: calc(1170px + 2 * var(--wrapper));
}

.inner_sm {
  max-width: calc(1024px + 2 * var(--wrapper));
}

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

.txt_ver {
  writing-mode: vertical-rl;
}

@media only screen and (min-width: 769px) {
  .txt_ver_pc {
    writing-mode: vertical-rl;
  }
}
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*==========================================================================*/
/*                           WordPress Core                                 */
/*==========================================================================*/
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 35px;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
a img.alignnone {
  margin: 5px 20px 20px 0;
}
a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}
.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}
.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}
.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/*==========================================================================*/
/*==========================================================================*/
/*==========================================================================*/
/*                              General                                     */
/*==========================================================================*/
@media only screen and (max-width: 768px) {
  .pc_only {
    display: none !important;
  }
}
@media only screen and (min-width: 769px) {
  .sp_only {
    display: none !important;
  }
}
.TabContainer .TabContent {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.TabContainer .TabContent .content {
  transition: all 0.3s ease-in-out;
}
.TabContainer .TabContent .content > div {
  opacity: 0;
  z-index: -10;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transition: all 0.5s ease-in-out;
}
.TabContainer .TabContent .content > div.active {
  opacity: 1;
  z-index: 1;
  visibility: visible;
}
.TabContainer .TabPager {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0px auto 56px;
  max-width: 1118px;
  font-size: min(1vw, 10px);
}
.TabContainer .TabPager > div {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 1em;
  padding: 2em 1em;
  width: calc(50% - 1em);
  max-width: 400px;
  min-height: 8em;
  border-radius: 100px;
  transition: all 0.3s ease;
  cursor: pointer;
  color: #ffffff;
  background: no-repeat center/cover;
}
.TabContainer .TabPager > div::after {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  width: 2.5em;
  height: 1.3em;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  font-size: clamp(8.5px, 1.2vw, 10px);
  opacity: 0;
}
.TabContainer .TabPager > div::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  mix-blend-mode: multiply;
  opacity: 0;
}
.TabContainer .TabPager > div p {
  margin: 0;
  font-size: 2.4em;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-family: var(--f-jp);
  transition: all 0.3s;
}
.TabContainer .TabPager > div:nth-child(2n+1) {
  background-image: url(../images/idx05_TabPager_bg01.jpg);
}
.TabContainer .TabPager > div:nth-child(2n+1)::after {
  background-color: var(--main-color);
}
.TabContainer .TabPager > div:nth-child(2n+1)::before {
  background-color: var(--clr2);
}
.TabContainer .TabPager > div:nth-child(2n) {
  background-image: url(../images/idx05_TabPager_bg02.jpg);
}
.TabContainer .TabPager > div:nth-child(2n)::after {
  background-color: #9cd8eb;
}
.TabContainer .TabPager > div:nth-child(2n)::before {
  background-color: var(--clr3);
}
.TabContainer .TabPager > div.active {
  background-color: #fff;
  z-index: 1;
}
.TabContainer .TabPager > div.active::after {
  bottom: calc(-1.3em + 1px);
  opacity: 1;
}
@media only screen and (min-width: 769px) {
  .TabContainer .TabPager > div:not(.active):hover::before {
    opacity: 0.5;
  }
  .TabContainer .TabPager > div:not(.active):hover:nth-child(2n+1)::after {
    background-color: var(--clr2);
  }
  .TabContainer .TabPager > div:not(.active):hover:nth-child(2n)::after {
    background-color: var(--clr3);
  }
}

@media only screen and (max-width: 768px) {
  .TabContainer .TabPager {
    margin-bottom: 35px;
    font-size: min(2vw, 8px);
  }
  .TabContainer .TabPager > div {
    min-height: 6em;
  }
  .TabContainer .TabPager > div::after {
    font-size: 1.2em;
  }
}
.rel {
  position: relative;
}

.ovh {
  overflow: hidden !important;
}

.ovs {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  /* Lets it scroll lazy */
}

.lt0 {
  letter-spacing: 0 !important;
}

figure,
picture {
  text-align: center;
  line-height: 1;
}

.fblock {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.key {
  position: relative;
}

.txt_l {
  float: left;
  width: calc(100% - 385px);
}

.txt_r {
  float: right;
  width: calc(100% - 385px);
}

.link > a {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.tel_click {
  display: table;
  text-decoration: none;
}
.tel_click .icon {
  display: flex;
  align-items: center;
  font-family: var(--f-en);
  font-weight: 700;
  color: var(--main-color);
  letter-spacing: 0.05em;
  font-size: 1.5em;
}
.tel_click .icon::before {
  content: "";
  display: block;
  margin-right: 0.3214em;
  margin-top: 0.1786em;
  width: 0.893em;
  height: 0.893em;
  --mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 101' %3E%3Cpath d='M97.829,82.824 C98.198,91.823 96.073,94.826 87.308,97.205 C74.144,100.791 61.788,98.752 50.561,91.066 C33.671,79.497 19.384,65.207 7.912,48.225 C-0.287,36.096 -1.826,22.855 2.769,8.952 C4.752,2.953 8.059,0.771 14.407,0.925 C23.639,1.157 23.633,1.157 26.561,10.079 C27.869,14.063 29.100,18.078 30.561,22.007 C32.367,26.859 31.432,30.918 27.914,34.711 C22.303,40.765 22.378,40.854 26.680,47.891 C33.854,59.628 43.600,68.580 55.717,75.040 C57.758,76.123 59.178,76.250 60.774,74.416 C62.051,72.951 63.620,71.738 65.076,70.429 C68.123,67.696 71.576,66.743 75.537,68.072 C82.013,70.255 88.532,72.319 94.923,74.723 C96.087,75.162 97.048,76.900 97.511,78.240 C97.992,79.641 97.756,81.285 97.829,82.824 Z'/%3E%3C/svg%3E");
  mask-image: var(--mask);
  -webkit-mask-image: var(--mask);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: 100% auto;
  -webkit-mask-size: 100% auto;
  mask-position: center;
  -webkit-mask-position: center;
  background-color: var(--main-color);
}

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

.btn a {
  position: relative;
  color: var(--main-color);
  text-decoration: none;
  font-family: var(--f-jp);
}
.btn a::after {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  width: 0.4444em;
  height: 0.7778em;
  right: 1.23em;
  top: 0;
  bottom: 0;
  margin: auto 0;
  --mask: url(../images/btn_st01_arr_ico.png);
  mask-image: var(--mask);
  -webkit-mask-image: var(--mask);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: 100% auto;
  -webkit-mask-size: 100% auto;
  mask-position: center;
  -webkit-mask-position: center;
  background-color: var(--main-color);
}

.btn-group {
  font-size: 10px;
}
.btn-group .btn {
  font-size: 1em;
}
.btn-group .btn.style01 {
  width: 100%;
  min-width: 180px;
  max-width: 360px;
  overflow: hidden;
}
.btn-group .btn.style01 a {
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.6667em;
  height: 100%;
  padding: 0.5em 1.5em;
  font-size: 1.8em;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-family: var(--f-jp);
  font-feature-settings: "palt";
  color: #fff;
  text-align: center;
  transition: all 0.3s;
  border-radius: 100px;
  background-color: var(--main-color);
}
.btn-group .btn.style01 a::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  background-image: -moz-linear-gradient(0deg, rgb(254, 151, 158) 0%, rgb(238, 200, 157) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(254, 151, 158) 0%, rgb(238, 200, 157) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(254, 151, 158) 0%, rgb(238, 200, 157) 100%);
  opacity: 0.5;
}
.btn-group .btn.style01 a::after {
  background-color: #fff;
}
.btn-group .btn.style01 a:hover {
  opacity: 1;
}
@media only screen and (min-width: 769px) {
  .btn-group .btn.style01 a:not([target*=_blank]):hover {
    background-color: var(--clr2);
  }
  .btn-group .btn.style01 a:not([target*=_blank]):hover::before {
    opacity: 0;
  }
}
.btn-group .btn.btn-ct {
  margin-left: auto;
  margin-right: auto;
}
.btn-group .btn02 {
  --cl-mode: var(--main-color);
  display: table;
}
.btn-group .btn02 a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 3.125em;
  height: 100%;
  padding-top: 0.4em;
  padding-bottom: 0.5em;
  padding-right: 3.875em;
  font-size: 1.6em;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-decoration: none;
  font-family: var(--f-jp);
  color: var(--cl-mode);
  transition: all 0.3s;
}
.btn-group .btn02 a .arr {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 3em;
  height: 3em;
  border-radius: 50%;
  border: 1px solid var(--cl-mode);
  transition: all 0.3s;
}
.btn-group .btn02 a .arr::after {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  width: 0.5em;
  height: 0.875em;
  inset: 0;
  margin: auto;
  --mask: url(../images/btn_st01_arr_ico.png);
  mask-image: var(--mask);
  -webkit-mask-image: var(--mask);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: 100% auto;
  -webkit-mask-size: 100% auto;
  mask-position: center;
  -webkit-mask-position: center;
  background-color: var(--cl-mode);
}
@media only screen and (min-width: 769px) {
  .btn-group .btn02 a:not([target*=_blank]):hover {
    --cl-mode: var(--clr3);
  }
}

.yt {
  max-width: 560px;
  margin: 0px auto;
}
.yt iframe {
  border: none;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slick-arrow {
  display: block;
  border: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-color: transparent;
  position: absolute;
  top: 37%;
  width: 2em;
  height: 2em;
  transform: translateY(-50%);
  cursor: pointer;
  color: transparent;
}
.slick-arrow:focus {
  outline: 0;
}

.slick-prev {
  left: -1em;
}

.slick-next {
  right: -1em;
}

/* Tablet
-------------------------------------------*/
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  body {
    font-size: 87.5%;
  }
  .btn-group {
    font-size: 8.75px;
  }
}
.br_custom {
  display: none;
}

.br_auto {
  display: inline-block;
}

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

@media only screen and (min-width: 769px) and (max-width: 1280px) {
  .br_1280,
  footer .ft_br_1280 {
    display: block;
  }
  .dis_1280 {
    display: none;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1170px) {
  .br_1170 {
    display: block;
  }
  .dis_1170 {
    display: none;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  footer .ft_769,
  .br_769 {
    display: block;
  }
  .dis_769 {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .br_750 {
    display: block;
  }
  .dis_750 {
    display: none;
  }
}
@media only screen and (max-width: 640px) {
  .br_640 {
    display: block;
  }
  .dis_640 {
    display: none;
  }
}
@media only screen and (max-width: 520px) {
  .br_520 {
    display: block;
  }
  .dis_520 {
    display: none;
  }
}
@media only screen and (max-width: 480px) {
  .br_480 {
    display: block;
  }
  .in_480 {
    display: inline;
  }
  .dis_480 {
    display: none;
  }
}
@media only screen and (max-width: 430px) {
  .br_430 {
    display: block;
  }
  .in_430 {
    display: inline;
  }
  .dis_430 {
    display: none;
  }
}
@media only screen and (max-width: 390px) {
  .br_390 {
    display: block;
  }
  .in_390 {
    display: inline;
  }
  .dis_390 {
    display: none;
  }
}
@media only screen and (max-width: 375px) {
  .br_375 {
    display: block;
  }
  .in_375 {
    display: inline;
  }
  .dis_375 {
    display: none;
  }
}
@media only screen and (max-width: 360px) {
  .br_360 {
    display: block;
  }
  .dis_360 {
    display: none;
  }
  .in_360 {
    display: inline;
  }
}
@media only screen and (max-width: 350px) {
  .in_320 {
    display: inline;
  }
  .br_320 {
    display: block;
  }
  .dis_320 {
    display: none;
  }
  .inside .inside_br_320 {
    display: block;
  }
}
@media only screen and (max-width: 319px) {
  .br_769,
  .br_640,
  .br_520,
  .br_480,
  .br_430,
  .br_375 {
    display: none;
  }
}
.flex_gr {
  --size-mg: 5px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: calc(var(--size-mg) * -1);
}
.flex_gr .item {
  width: 100%;
  margin: var(--size-mg);
}
.flex_gr .item.btn.style01 {
  margin-top: 10px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  .flex_gr .item.btn.style01 {
    margin-top: 5px;
    margin-bottom: 5px;
  }
}
@media only screen and (min-width: 769px) {
  .flex_gr.col-2 .item {
    width: calc(50% - 2 * var(--size-mg));
  }
  .flex_gr.col-3 .item {
    width: calc(33.333333% - 2 * var(--size-mg));
  }
  .flex_gr.col-4 .item {
    width: calc(25% - 2 * var(--size-mg));
  }
  .flex_gr.col-5 .item {
    width: calc(20% - 2 * var(--size-mg));
  }
}

.link a {
  position: absolute;
  display: block;
  inset: 0;
  z-index: 2;
}

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

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

header.active,
.ovh header {
  background-color: #fff;
}
header.active .logo,
.ovh header .logo {
  top: 0;
}

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

.logo {
  position: relative;
  top: 18%;
  width: 20%;
  max-width: 294px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.logo a {
  display: block;
  width: 100%;
  text-align: center;
}
.logo img {
  width: auto;
}

.right_head {
  width: 79%;
  padding-right: 5.1%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: min(0.65vw, 10px);
}

.pc_navi {
  width: 100%;
}
.pc_navi > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  text-align: center;
  width: 100%;
}
.pc_navi > ul > li {
  position: relative;
  margin-left: 9.7em;
}
.pc_navi > ul > li:hover > a,
.pc_navi > ul > li:hover > p {
  opacity: 0.8;
  color: var(--main-color);
}
.pc_navi > ul > li:first-of-type {
  margin-left: 0;
}
.pc_navi > ul > li.menu-item-has-children > a::after,
.pc_navi > ul > li.menu-item-has-children > p::after {
  content: "";
  width: 0.5em;
  height: 0.2778em;
  position: absolute;
  bottom: -0.6667em;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: var(--clr1);
  transition: all 0.3s;
}
.pc_navi > ul > li.menu-item-has-children:hover > a::after,
.pc_navi > ul > li.menu-item-has-children:hover > p::after {
  background-color: var(--main-color);
}
.pc_navi > ul > li > a,
.pc_navi > ul > li > p {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding-top: 1.7778em;
  margin: 0;
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  font-size: 1.8em;
  line-height: 1.5;
  font-family: var(--f-jp);
  letter-spacing: 0.1em;
  transition: all 0.3s;
  color: var(--clr1);
}
.pc_navi > ul > li > a::before,
.pc_navi > ul > li > p::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  width: 1.7222em;
  height: 1.7222em;
  background: no-repeat center/cover;
}
.pc_navi > ul > li.ico1 > a::before,
.pc_navi > ul > li.ico1 > p::before {
  background-image: url(../images/hd_icon1.png);
}
.pc_navi > ul > li.ico2 > a::before,
.pc_navi > ul > li.ico2 > p::before {
  background-image: url(../images/hd_icon2.png);
}
.pc_navi > ul > li.ico3 > a::before,
.pc_navi > ul > li.ico3 > p::before {
  background-image: url(../images/hd_icon3.png);
}
.pc_navi > ul > li.ico4 > a::before,
.pc_navi > ul > li.ico4 > p::before {
  background-image: url(../images/hd_icon4.png);
}
.pc_navi > ul > li.ico5 > a::before,
.pc_navi > ul > li.ico5 > p::before {
  background-image: url(../images/hd_icon5.png);
}
.pc_navi > ul .subInner {
  position: absolute;
  width: 27em;
  right: 50%;
  bottom: -15px;
  padding-top: 0px;
  transform: translate(50%, 100%);
  transition: all 0.2s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}
.pc_navi > ul .subInner.active {
  opacity: 1;
  visibility: visible;
}
.pc_navi > ul .subInner ul {
  background-color: var(--main-color);
  padding-bottom: 10px;
}
.pc_navi > ul .subInner ul li {
  padding: 0 10px;
}
.pc_navi > ul .subInner ul li a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1.2em 0.6em 1.2em 1.6em;
  height: 100%;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
  font-size: 1.4em;
  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: -1px;
  bottom: 0;
  left: 0.6em;
  display: flex;
  align-items: center;
  height: 100%;
}

@media only screen and (min-width: 769px) {
  .pc_navi > ul .col2 .subInner {
    width: 500px;
  }
  .pc_navi > ul .col2 .subInner ul {
    display: flex;
    flex-wrap: wrap;
  }
  .pc_navi > ul .col2 .subInner ul li {
    width: 50%;
  }
  .menu_toggle .inside .ft_link {
    width: 100%;
    max-width: 100em;
    margin: auto;
    min-height: 100%;
    display: flex;
    align-items: center;
    font-size: clamp(7.5px, 0.7vw, 10px);
  }
  .menu_toggle .inside .ft_link .link_list {
    width: 100%;
  }
  .menu_toggle .inside .ft_link .menu01 {
    width: 47%;
  }
  .menu_toggle .inside .ft_link .menu01 > ul {
    max-height: 29em;
  }
  .menu_toggle .inside .ft_link .menu01 > ul > li {
    width: 50%;
  }
  .menu_toggle .inside .ft_link .menu02 {
    width: 53%;
  }
  .menu_toggle .inside .ft_link .menu02 > ul {
    flex-direction: row;
  }
  .menu_toggle .inside .ft_link .menu02 > ul > li:nth-child(1) {
    width: 35%;
  }
  .menu_toggle .inside .ft_link .menu02 > ul > li:nth-child(2) {
    width: 65%;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1366px) {
  :root {
    --wrapper: 100px;
  }
  .right_head {
    padding-right: 8em;
  }
  .pc_navi > ul > li {
    margin-left: 8em;
  }
  .pc_navi > ul > li.menu-item-has-children > a::after,
  .pc_navi > ul > li.menu-item-has-children > p::after {
    bottom: -0.4em;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1280px) {
  .header_top {
    padding-top: 5px;
  }
  .pc_navi > ul .col2 .subInner {
    width: min(70em, 500px);
  }
  .pc_navi > ul > li.ico4 .subInner {
    right: calc(var(--wrapper) + 50%);
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .pc_navi > ul .subInner ul li a {
    font-size: 12px;
  }
  .right_head {
    padding-right: 5em;
    font-size: min(0.8vw, 7.5px);
  }
  .pc_navi > ul > li {
    margin-left: 5em;
  }
  .pc_navi > ul > li > a,
  .pc_navi > ul > li > p {
    padding-top: 1.4em;
  }
  .pc_navi > ul > li > a::before,
  .pc_navi > ul > li > p::before {
    font-size: 0.8em;
  }
}
.idx_gallery {
  margin-bottom: 60px;
}
.idx_gallery .list {
  display: flex;
}
.idx_gallery .list .img img {
  overflow: hidden;
  border-radius: 10px;
  margin: 0 0.5px;
}

.time_sheet {
  margin: 0px auto;
  max-width: 545px;
  font-size: min(0.7vw, 10px);
}
.time_sheet .time-num {
  white-space: nowrap;
}
.time_sheet .time_sheet_note {
  margin-top: 12px;
  margin-left: 12px;
  max-width: 505px;
}
.time_sheet .time_sheet_note p {
  font-size: 15px;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
@media only screen and (max-width: 1024px) {
  .time_sheet .time_sheet_note p {
    font-size: 14px;
  }
}
.time_sheet table .char {
  margin-left: -0.25em;
  margin-right: -0.25em;
}
.time_sheet table th,
.time_sheet table td {
  position: relative;
  z-index: 1;
  border-top: none;
  border-right: none;
  border-left: none;
  text-align: center;
  font-weight: 300;
  font-size: 1.6em;
  letter-spacing: 0.1em;
  width: 9.5%;
  color: var(--main-color);
  border-bottom: none;
}
.time_sheet table th::after,
.time_sheet table td::after {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #fd7680;
  opacity: 0.3;
}
.time_sheet table th:first-child,
.time_sheet table td:first-child {
  width: 20%;
  padding-left: 0.7em;
}
.time_sheet table th:nth-child(2),
.time_sheet table td:nth-child(2) {
  width: 8.5%;
}
.time_sheet table th:last-child,
.time_sheet table td:last-child {
  width: 12%;
  letter-spacing: 0.1em;
}
.time_sheet table th {
  padding: 1.1em 0.2em 1.3em;
  border-top: 1px solid rgba(253, 118, 128, 0.3);
}
.time_sheet table td {
  padding: 0.9em 0.2em 1.1em;
  color: var(--main-color);
}
@media only screen and (min-width: 769px) and (max-width: 1366px) {
  :root {
    --ttl_size: 26px;
    --wrapper: 80px;
  }
}
@media only screen and (max-width: 1024px) and (min-width: 769px) {
  :root {
    --ttl_size: 22px;
    --wrapper: 60px;
  }
}
.totop {
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  position: fixed;
  z-index: 19;
  bottom: 0;
  right: 0;
}
.totop.active {
  opacity: 1;
  visibility: visible;
}
.totop .icon {
  background-image: url(../images/totop.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  border: 0px;
  width: var(--wrapper);
  height: var(--wrapper);
  margin: 0;
  background-color: #848484;
  transition: all 0.3s;
}

@media only screen and (min-width: 769px) {
  .totop:hover .icon {
    opacity: 0.9;
    background-color: black;
  }
}
.bounce {
  animation-name: bounces;
}

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

@keyframes bounces {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
@keyframes fixed_banner {
  0% {
    left: 0;
    opacity: 1;
  }
  100% {
    left: -3px;
    opacity: 0.7;
  }
}
.fixed_banner {
  position: fixed;
  top: calc(50% - 5em);
  right: 0px;
  z-index: 15;
  transition: right 0.3s ease-in-out;
  font-family: var(--f-jp);
}
.fixed_banner > div {
  position: relative;
  transition: all 0.3s ease;
}
.fixed_banner a {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: 2;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.fixed_banner p {
  display: block;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1.2222222222;
  text-align: center;
  text-decoration: none;
}
.fixed_banner p .tt {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex-direction: column;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.fixed_banner p .tt::before {
  content: "";
  display: block;
  mask-image: var(--mask);
  -webkit-mask-image: var(--mask);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: 100% auto;
  -webkit-mask-size: 100% auto;
  mask-position: center;
  -webkit-mask-position: center;
  background-color: #fff;
}
.fixed_banner .tel p {
  background-color: #dd8d91;
}
.fixed_banner .tel p .tt::before {
  width: 1.53334em;
  height: 1.6667em;
  --mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 224 242' %3E%3Cpath d='M71.333,64.785 C43.843,74.292 40.024,90.025 57.673,109.630 C78.193,132.347 98.490,155.297 118.952,178.113 C136.245,197.394 151.788,194.808 162.820,169.807 C183.263,172.295 202.440,179.307 219.847,190.902 C222.338,192.567 223.365,198.343 223.082,202.123 C221.193,226.921 198.057,244.488 169.756,240.588 C155.375,238.670 140.347,234.552 127.727,227.602 C72.960,197.169 32.635,152.739 8.639,94.030 C0.048,73.034 -3.197,50.794 5.357,28.969 C8.418,21.176 14.575,13.335 21.390,8.570 C41.552,-5.652 54.332,-1.063 61.385,22.301 C65.538,36.066 68.008,50.288 71.333,64.785 Z'/%3E%3C/svg%3E");
}
.fixed_banner .web p {
  background-color: #93b26d;
}
.fixed_banner .web p .tt::before {
  width: 1.53334em;
  height: 1.6em;
  --mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 230 238 ' %3E%3Cpath d='M224.640,237.822 L13.803,237.822 C6.522,237.822 0.624,232.229 0.624,225.315 L0.624,50.179 C0.624,43.265 6.522,37.657 13.803,37.657 L53.327,37.657 L53.327,12.649 C53.327,5.734 59.227,0.134 66.506,0.134 C73.787,0.134 79.685,5.734 79.685,12.649 L79.685,37.657 L158.747,37.657 L158.747,12.649 C158.747,5.734 164.655,0.134 171.925,0.134 C179.206,0.134 185.104,5.734 185.104,12.649 L185.104,37.657 L211.461,37.657 L224.640,37.657 C231.920,37.657 228.538,43.265 228.538,50.179 L228.538,225.315 C228.538,232.229 231.920,237.822 224.640,237.822 ZM109.331,157.597 L85.707,135.168 C80.562,130.270 72.219,130.270 67.074,135.168 C61.929,140.052 61.929,147.971 67.074,152.847 L100.020,184.131 C102.495,186.478 105.847,187.785 109.331,187.785 C112.827,187.785 116.179,186.478 118.654,184.131 L171.358,134.093 C176.514,129.195 176.514,121.276 171.358,116.385 C166.212,111.509 157.881,111.509 152.725,116.385 L109.331,157.597 Z'/%3E%3C/svg%3E");
}

@media only screen and (min-width: 769px) {
  .fixed_banner {
    font-size: 10px;
    top: var(--wrapper);
    --size: var(--wrapper);
    width: var(--wrapper);
    height: calc(100vh - var(--wrapper));
  }
  .fixed_banner::after {
    content: "";
    display: block;
    position: absolute;
    transition: all 0.3s;
    z-index: -2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
    opacity: 0.9;
  }
  .fixed_banner::before {
    content: "";
    display: block;
    position: absolute;
    transition: all 0.3s;
    z-index: -1;
    left: 0;
    top: 0;
    width: 1px;
    height: 100vh;
    background-color: var(--main-color);
  }
  .fixed_banner.active .fixed_txt {
    padding-top: 0;
    padding-bottom: calc(var(--wrapper));
    font-size: calc(var(--fs-first) * 0.85);
  }
  .fixed_banner .fixed_txt {
    --fs-first: clamp(18px, 1.5vw, 26px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 0.1923em;
    padding-top: 0.2em;
    padding-bottom: 2.7em;
    width: 100%;
    height: calc(100% - var(--wrapper) * 2);
    font-size: var(--fs-first);
    font-weight: 300;
    letter-spacing: 0.1em;
    line-height: 1;
    font-family: var(--f-jp);
    color: var(--main-color);
    writing-mode: vertical-lr;
    text-transform: uppercase;
    transition: all 0.3s;
  }
  .fixed_banner .fixed_txt .space02 {
    margin-top: 0.75em;
  }
  .fixed_banner > div {
    width: var(--size);
    height: var(--size);
  }
  .fixed_banner p {
    width: var(--size);
    height: var(--size);
  }
  .fixed_banner p .tt {
    font-size: 1.5em;
    margin-bottom: 0.5em;
  }
  .fixed_banner .tel {
    --w_tel: 18em;
    transform: translateX(calc(-var(--size) - var(--w_tel)));
    transition: all 0.3s ease;
  }
  .fixed_banner .tel .tt::before {
    position: relative;
    left: -1px;
    top: 1px;
    margin-bottom: 0.45em;
  }
  .fixed_banner .tel:hover {
    transform: translateX(calc(0em - var(--w_tel)));
  }
  .fixed_banner .tel:hover a {
    width: calc(var(--size) + var(--w_tel));
  }
  .fixed_banner .tel .ov {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #dd8d91;
    position: absolute;
    left: var(--size);
    height: 100%;
    top: 0;
    width: var(--w_tel);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }
  .fixed_banner .tel .ov .text {
    font-size: 2.5em;
    font-weight: 500;
    font-family: var(--f-en);
  }
  .fixed_banner .web p .tt::before {
    position: relative;
    left: -1px;
    top: 1px;
    margin-bottom: 0.5em;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1600px) and (max-height: 900px) {
  .fixed_banner .fixed_txt {
    --fs-first: 2.3vmin;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1366px), (min-width: 769px) and (max-height: 650px) {
  .fixed_banner {
    font-size: 8px;
  }
}
@media only screen and (min-width: 769px) and (max-height: 650px) {
  .fixed_banner .fixed_txt {
    --fs-first: 2.1vmin;
  }
}
@media only screen and (min-width: 769px) and (max-height: 650px) and (min-width: 769px) and (max-height: 500px) {
  .fixed_banner .fixed_txt {
    opacity: 0;
  }
}
footer {
  padding: 74px 0 81px;
  position: relative;
  background: no-repeat center/cover;
  background-color: #f8f5f0;
}
@media only screen and (min-width: 769px) {
  footer {
    background-image: url(../images/ft_bg.jpg);
  }
}
@media only screen and (max-width: 768px) {
  footer {
    background-image: url(../images/ft_bg_sp.jpg);
  }
}
footer p {
  margin-bottom: 0;
}
footer p,
footer a {
  color: var(--clr1);
  text-decoration: none;
}
footer .inner {
  max-width: calc(1280px + 2 * var(--wrapper));
}
footer .address {
  margin-bottom: 13px;
}
footer .infor_tell {
  margin-bottom: 22px;
}
@media only screen and (min-width: 769px) {
  footer .infor_tell {
    margin-left: 6px;
  }
}
footer .idx_map {
  height: 299px;
  margin-bottom: 35px;
}
footer .time_sheet {
  font-size: min(0.7vw, 10px);
}
footer .time_sheet .time_sheet_note {
  margin-top: 10px;
}
footer .footer_banner {
  margin-top: 5px;
  padding-left: 8px;
}
footer .footer_banner .banner {
  position: relative;
  z-index: 1;
  display: table;
}
footer .footer_banner .banner.bd a {
  position: relative;
  z-index: 2;
  display: table;
}
footer .footer_banner .banner.bd a::after {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--main-color);
}
footer .ft_logo {
  margin-bottom: 6px;
}
footer .ft_info {
  width: 48%;
  max-width: 545px;
}
footer .ft_right {
  width: calc(52% - 20px);
  max-width: 604px;
}
footer .menu01 {
  width: 40%;
}
footer .menu02 {
  width: 54%;
}

@media only screen and (min-width: 1366px) {
  footer .ft_info {
    padding-top: 8px;
  }
  footer .ft_info {
    margin-left: 36px;
  }
}
.ft_link {
  font-size: min(0.85vw, 10px);
}
.ft_link a {
  text-decoration: none;
}
@media only screen and (min-width: 769px) {
  .ft_link .link_list > div > ul {
    display: flex;
    flex-flow: column wrap;
    align-content: space-between;
  }
  .ft_link .link_list > div > ul li {
    width: 100%;
  }
  .ft_link .menu02 > ul > li:nth-child(n+3) {
    max-width: 20em;
  }
}
.ft_link .title {
  margin-bottom: 28px;
  padding-left: 0;
  font-size: calc(var(--ttl_size));
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
  pointer-events: none;
  font-family: var(--f-en);
  color: var(--main-color);
}
.ft_link .title::before {
  display: none;
}
.ft_link ul:last-child {
  margin-bottom: 0;
}
.ft_link li {
  margin-bottom: 1.65em;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
.ft_link li.child_title {
  margin-bottom: 1.7em;
}
.ft_link li.child_title > a {
  margin-top: -0.1667em;
  margin-bottom: 0.7778em;
  font-weight: 500;
  font-size: 1.8em;
  padding-left: 0;
  pointer-events: none;
}
.ft_link li.child_title > a::before {
  display: none;
}
.ft_link a {
  display: table;
  position: relative;
  padding-left: 1.0625em;
  color: inherit;
  font-size: 1.6em;
  letter-spacing: 0.1em;
  font-family: var(--f-jp);
  color: var(--clr1);
  line-height: 1.6;
}
.ft_link a::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
}
.ft_link a:hover {
  opacity: 1;
}

.copyright {
  margin: 0 auto 0;
  color: #fff;
  padding: 25px 0px;
  position: relative;
  z-index: 1;
}
.copyright .flex {
  align-items: center;
  justify-content: flex-start;
  min-height: 40px;
}
.copyright .inner_big {
  max-width: calc(1277px + 2 * var(--wrapper));
}
.copyright::before {
  position: absolute;
  content: "";
  display: block;
  z-index: -1;
  left: calc(50% - 50vw);
  top: 0;
  height: 100%;
  width: 100vw;
  background-color: var(--main-color);
}
.copyright .textwidget {
  display: block;
  line-height: 28px;
  padding-left: 27px;
  margin-left: 31px;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  font-weight: 400;
  letter-spacing: 0.1em;
}
.copyright .textwidget p {
  margin-bottom: 0;
  font-size: 14.5px;
  line-height: inherit;
  letter-spacing: 0.1em;
  font-family: var(--f-jp);
}
.copyright .grits {
  margin-bottom: 0;
  line-height: 2.501;
}
.copyright .grits a {
  display: block;
}
.copyright .grits img {
  max-width: 158px;
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer_banner .banner {
    max-width: 290px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  footer .box_infor .idx_logo {
    max-width: 250px;
  }
  footer .box_infor {
    --size-space-left-logo: 4vw;
    --size-space-left-bottom-logo: calc(4vw + 67px);
  }
}
.box_infor .idx_logo {
  max-width: 294px;
}
.box_infor .idx_logo a:hover {
  opacity: 1;
}
.box_infor .address {
  letter-spacing: 0.1em;
  font-weight: 400;
}
.box_infor .infor_tell {
  --cl-mode: var(--clr1);
  display: table;
  font-size: min(0.76vw, 10px);
}
.box_infor .infor_tell a {
  position: relative;
  z-index: 1;
  padding-left: 1.0278em;
  min-height: 0.75em;
  font-size: 3.6em;
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 1;
  font-family: var(--f-jp);
  color: var(--cl-mode);
}
.box_infor .infor_tell a::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  left: 0;
  top: 0.23em;
  width: 0.6944em;
  height: 0.75em;
  --mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 242 262' %3E%3Cpath d='M77.168,69.875 C47.355,80.176 43.213,97.223 62.354,118.472 C84.605,143.150 106.619,168.011 128.809,192.759 C147.564,213.671 164.421,210.867 176.386,183.751 C198.554,186.449 219.353,194.052 238.231,206.637 C240.932,208.429 242.046,214.711 241.737,218.780 C239.690,245.685 214.598,264.742 183.906,260.512 C168.311,258.404 152.012,253.970 138.327,246.430 C78.931,213.411 35.199,165.242 9.176,101.587 C-0.141,78.799 -3.659,54.669 5.616,30.996 C8.937,22.563 15.614,14.047 23.004,8.903 C44.870,-6.520 58.730,-1.552 66.378,23.772 C70.882,38.704 73.562,54.135 77.168,69.875 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);
  background-color: var(--cl-mode);
}
.box_infor .infor_tell.cl02 {
  --cl-mode: var(--main-color);
}

@media only screen and (min-width: 769px) {
  .box_infor {
    --size-space-left-logo: 15.6%;
    --size-space-left-bottom-logo: calc(15.2% + 82px);
  }
  .box_infor .idx_logo {
    margin-left: var(--size-space-left-logo);
  }
  .box_infor .bottom_logo {
    padding-left: var(--size-space-left-bottom-logo);
  }
}
.banner_yt {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  padding: 1em 6.5em 1.5em 13.3em;
  margin: 30px auto 0;
  max-width: 50em;
  min-height: 14em;
  border-radius: 10px;
  font-size: clamp(8px, 0.7vw, 10px);
  background-color: var(--main-color);
}
.banner_yt::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: -moz-linear-gradient(0deg, rgb(254, 151, 158) 0%, rgb(238, 200, 157) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(254, 151, 158) 0%, rgb(238, 200, 157) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(254, 151, 158) 0%, rgb(238, 200, 157) 100%);
  border-radius: 10px;
  opacity: 0.5;
}
.banner_yt .ttl {
  margin-bottom: 0;
  font-size: 2.6em;
  font-weight: 500;
  font-family: var(--f-jp);
  letter-spacing: 0.1em;
  line-height: 1.4;
  color: white;
}
.banner_yt .ttl .txt_bot {
  display: block;
  margin-top: -2px;
  margin-left: 3px;
  font-size: 0.6923em;
  letter-spacing: 0.05em;
  font-weight: 400;
}
.banner_yt .icon_yt {
  position: absolute;
  left: 3.2em;
  top: 0;
  bottom: 0;
  margin: auto 0;
  display: block;
  width: 8.2em;
  height: 8.2em;
  border-radius: 50%;
  background: url(../images/icon_yt_ico.png) no-repeat left 52% top 51%/3.8em auto;
  background-color: white;
}
.banner_yt .arr {
  position: absolute;
  right: 2.4em;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 3em;
  height: 3em;
  border-radius: 50%;
  background: url(../images/banner_yt_arr.png) no-repeat center/0.8em auto;
  background-color: white;
}

.ft_banner_gr {
  --size-radius: 10px;
  padding: 65px 0 80px;
  font-size: min(0.85vw, 10px);
  background: url(../images/ft_banner_gr_bg.jpg) no-repeat center/cover;
}
.ft_banner_gr .banner {
  --cl-mode: var(--main-color);
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  padding: 1em 5em 1.5em 13.3em;
  max-width: 50em;
  min-height: 14em;
}
.ft_banner_gr .banner .bn_ico {
  position: absolute;
  left: 3.2em;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 8.2em;
  height: 8.2em;
  border-radius: 50%;
  background-color: white;
  transition: all 0.3s;
}
.ft_banner_gr .banner .bn_ico::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  inset: 0;
  margin: auto;
  width: 5.1em;
  height: 5.1em;
  mask-image: var(--mask);
  -webkit-mask-image: var(--mask);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: 100% auto;
  -webkit-mask-size: 100% auto;
  mask-position: center;
  -webkit-mask-position: center;
  background-color: var(--cl-mode);
}
.ft_banner_gr .banner .bn_ttl {
  margin-bottom: 0;
  font-size: 2.6em;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
  font-family: var(--f-jp);
  color: white;
}
.ft_banner_gr .banner .bn_ttl .en {
  display: block;
  margin-top: -2px;
  margin-left: 0.1667em;
  font-weight: 400;
  font-size: 0.6923em;
  letter-spacing: 0.05em;
}
.ft_banner_gr .banner .bn_arr {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2.4em;
  margin: auto 0;
  width: 3em;
  height: 3em;
  border-radius: 50%;
  background-color: white;
}
.ft_banner_gr .banner .bn_arr::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  inset: 0;
  margin: auto;
  width: 0.8em;
  height: 1.4em;
  --mask: url(../images/btn_st01_arr_ico.png);
  mask-image: var(--mask);
  -webkit-mask-image: var(--mask);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: 100% auto;
  -webkit-mask-size: 100% auto;
  mask-position: center;
  -webkit-mask-position: center;
  background-color: var(--cl-mode);
}
.ft_banner_gr .banner .bn_bg {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--cl-mode);
  border-radius: var(--size-radius);
  transition: all 0.3s;
}
.ft_banner_gr .banner .bn_bg::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--size-radius);
  background: no-repeat center/cover;
  opacity: 0.5;
}
.ft_banner_gr .b1 .bn_ico::before {
  --mask: url(../images/ft_banner_gr_bn_ico01.png);
}
.ft_banner_gr .b1 .bn_bg::before {
  background-image: -moz-linear-gradient(0deg, rgb(254, 151, 158) 0%, rgb(238, 200, 157) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(254, 151, 158) 0%, rgb(238, 200, 157) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(254, 151, 158) 0%, rgb(238, 200, 157) 100%);
}
.ft_banner_gr .b2 {
  --cl-mode: #62c1de;
}
.ft_banner_gr .b2 .bn_ico::before {
  --mask: url(../images/ft_banner_gr_bn_ico02.png);
}
.ft_banner_gr .b2 .bn_bg::before {
  background-image: -moz-linear-gradient(0deg, rgb(98, 193, 222) 0%, rgb(222, 231, 255) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(98, 193, 222) 0%, rgb(222, 231, 255) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(98, 193, 222) 0%, rgb(222, 231, 255) 100%);
}

@media only screen and (min-width: 769px) {
  .ft_banner_gr {
    --size-mg: 1.5em;
    padding-left: var(--wrapper);
    padding-right: var(--wrapper);
  }
  .ft_banner_gr .banner:hover::before {
    opacity: 0.2;
  }
  .ft_banner_gr .b1:hover {
    --cl-mode: var(--clr2);
  }
  .ft_banner_gr .b2:hover {
    --cl-mode:#0476b8;
  }
}
.idx_contact {
  position: relative;
  z-index: 1;
  padding: 200px 0 200px;
  background: no-repeat center/cover;
}
@media only screen and (min-width: 769px) {
  .idx_contact {
    background-image: url(../images/idx_contact_bg.jpg);
  }
}
@media only screen and (max-width: 768px) {
  .idx_contact {
    background-image: url(../images/idx_contact_bg_sp.jpg);
  }
}
.idx_contact::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #74494c;
  opacity: 0.5;
}
.idx_contact .contact_banner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4.7em 4.5em 5.4em;
  width: 45em;
  min-height: 20em;
  border-radius: 10px;
  background-color: white;
  font-size: min(0.8vw, 10px);
}
.idx_contact .contact_banner::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  left: -2em;
  top: -2.1em;
  width: calc(100% + 3.6em);
  height: calc(100% + 3.9em);
  background: url(../images/contact_banner_decor.png) no-repeat center/cover;
}
.idx_contact .contact_banner::after {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -2;
  inset: 1em;
  border: 1px solid var(--main-color);
  opacity: 0.2;
}
.idx_contact .contact_banner p {
  font-family: var(--f-jp);
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 1.4;
  color: var(--main-color);
}
.idx_contact .contact_banner .txt_top {
  padding-bottom: 0.2917em;
  margin-bottom: 0.5833em;
  width: 100%;
  border-bottom: 1px solid rgba(254, 151, 158, 0.5);
  font-size: 2.4em;
  text-align: center;
}
.idx_contact .contact_banner .tel_num {
  position: relative;
  z-index: 1;
  left: 0.0625em;
  padding-left: 0.9167em;
  margin-bottom: 0;
  font-size: 4.8em;
  letter-spacing: 0.05em;
  line-height: 0.9;
}
.idx_contact .contact_banner .tel_num::before {
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s;
  z-index: -1;
  left: 0;
  top: 0.24em;
  width: 0.625em;
  height: 0.6667em;
  --mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 294 317' %3E%3Cpath d='M93.929,84.718 C57.850,97.183 52.839,117.842 76.002,143.546 C102.932,173.382 129.570,203.499 156.425,233.440 C179.121,258.757 199.520,255.356 213.999,222.548 C240.829,225.816 265.996,235.007 288.843,250.234 C292.112,252.419 293.460,260.001 293.088,264.955 C290.609,297.503 260.245,320.558 223.102,315.442 C204.228,312.913 184.504,307.516 167.942,298.396 C96.064,258.448 43.140,200.140 11.647,123.098 C0.372,95.539 -3.886,66.343 7.339,37.702 C11.357,27.485 19.438,17.190 28.383,10.944 C54.844,-7.734 71.616,-1.712 80.872,28.953 C86.323,47.019 89.565,65.689 93.929,84.718 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);
}
.idx_contact .idx_box .box_ct .ct_area {
  max-width: 570px;
}
.idx_contact .idx_box .box_ct .ct_area p {
  font-size: var(--ttl_size);
  font-family: var(--f-jp);
  color: white;
}

@media only screen and (min-width: 769px) {
  .idx_contact .inner {
    max-width: calc(1077px + 2 * var(--wrapper));
  }
  .idx_contact .idx_box {
    align-items: center;
  }
  .idx_contact .idx_box .box_ct {
    width: 53%;
    max-width: 565px;
  }
}
@media only screen and (min-width: 1280px) {
  .idx_contact .idx_box .box_ct {
    position: relative;
    left: 12px;
    top: -1px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .idx_contact {
    padding: 100px 0;
  }
  .idx_contact .idx_box .box_ct .ct_area p {
    font-size: min(2.3vw, 22px);
  }
}
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*==========================================================================*/
/*                                INDEX                                     */
/*==========================================================================*/
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/*==========================================================================*/
/*                                Under                                     */
/*==========================================================================*/
/*==========================================================================*/
/*==========================================================================*/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/

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