@charset "utf-8";

/****************************
 font
****************************/
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+New:wght@400;500;700&family=Zen+Old+Mincho&display=swap');

/****************************
 color
****************************/
:root {
  --c-green: #005e3c;
  --c-green02: #8FC31F;
  --c-yellow: #d8af4e;
  --c-black: #1A1A1A;
  --c-beige: #A89783;
  --c-gray01: #d3dce0;
  --c-gray02: #DCDCDC;
  --bg_gray: #f2f2f2;
}

html, body {
  font-size: 62.5%;
  line-height: 1.8;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--c-black);
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


body * {
  box-sizing: border-box;
}

img {
  vertical-align: top;
  width: 100%;
}

a {
  color: var(--c-black);
  text-decoration: none;
  transition: .3s;
}

.en {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.min {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.pc {
  display: block;
}
@media (max-width: 798px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media (max-width: 798px) {
  .sp {
    display: block;
  }
}

/*--------------------------------
.show-cnt
--------------------------------*/
.show-cnt {
  opacity: 0;
  -webkit-transform: translate(0, 20px);
          transform: translate(0, 20px);
  -webkit-transition: all 1s;
  transition: all 1s;
}
.show-cnt.run {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media (max-width: 798px) {
  .show-cnt {
    opacity: 0;
    -webkit-transform: translate(0, 10px);
            transform: translate(0, 10px);
    -webkit-transition: all 1s;
    transition: all 1s;
  }
}

/*--------------------------------
common
--------------------------------*/
.l-inner__flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}
a.more-btn{
  display: block;
  position: relative;
  background-color: var(--c-black);
  color: #fff;
  border-radius: 50px;
  padding: 15px 25px;
  font-size: clamp(1.4rem,1.5vw,1.6rem);
  line-height: 1.3;
}
a.more-btn:after{
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background-color: #fff;
  transition: .3s;
  transform: translateY(-50%);
}
a.more-btn:hover:after{
  transform: translateY(-50%) scale(1.5);
}
.icon-cat{
  background-color: #484848;
  border-radius: 5px;
  padding: 8px 20px;
  margin-right: 10px;
  color: #fff;
  font-size: clamp(1.1rem,1.2vw,1.4rem);
  font-weight: 500;
  line-height: 1;
}
.icon-cat.icon-border{
  background-color: #fff;
  border: solid 1px #484848;
  color: #484848;
}
.icon-cat01{
  background-color: var(--c-black);
}
.icon-cat02{
  background-color: var(--c-green02);
}
.icon-cat03{
  background-color: var(--c-yellow);
}
.icon-cat04{
  background-color: var(--c-beige);
}
.icon-cat05{
  background-color: var(--c-green);
}


/*** ------------------------------------------------------------------------------

header

-----------------------------------------------------------------------------  ***/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 1000;
  padding: 40px 60px 20px;
  transition: .3s;
  background-color: rgba(255,255,255, 0);
}
@media (max-width: 1180px) {
  header {
    padding: 40px 20px 20px;
  }
}
header.scr,
header.under{
  background-color: #fff;
}
header h1{
  width: 280px;
  height: 61px;
  position: absolute;
  z-index: 120;
  top: 20px;
  left: 60px;
}
header h1.renovation{
  width: 240px;
}
header h1.chumon{
  width: 160px;
}
@media (max-width: 1180px) {
  header h1{
    width: 220px;
    height: 48px;
    left: 20px;
  }
  header h1.renovation{
    width: 180px;
    height: 25px;
  }
  header h1.chumon{
    width: 100px;
  }
}
header h1 img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: .3s;
}
header.scr h1 img.w,
header h1 img.b,
header.on h1 img.w,
header.under h1 img.w{
  opacity: 0;
}
header.scr h1 img.b,
header.on h1 img.b,
header h1 img.w,
header.under h1 img.b{
  opacity: 1;
}
header #navi{
  flex-flow: row-reverse;
  width: 100%;
  justify-content: end;
  align-items: stretch;
}
header nav{
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
}
header nav .menu{
  justify-content: flex-end;
}
header nav .menu > li{
  margin: 0 10px;
}
@media (max-width: 1180px) {
  header nav .menu > li{
    margin: 0 8px;
  }
}
header nav .menu > li a{
  color: #fff;
  font-size: clamp(1.2rem,1.3vw,1.4rem);
  font-weight: 500;
  line-height: 1.4;
  transition: .3s;
  padding: 0 0 10px;
  position: relative;
}
header nav .menu > li a:before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: .3s;
  opacity: 0;
}
header.scr nav .menu > li a:before,
header.under nav .menu > li a:before{
  background-color: var(--c-black);
}
header.scr nav .menu > li a,
header.under nav .menu > li a{
  color: var(--c-black);
}
header nav .menu > li a:hover:before,
header.scr nav .menu > li a:hover:before,
header.under nav .menu > li a:hover:before{
  opacity: 1;
}
header nav .menu > li a.parent{
  padding-right: 15px;
  position: relative;
}
header nav .menu > li a.parent:after {
  content: '';
  position: absolute;
  width: 10px;
  height: 5px;
  top: calc(50% - 5px);
  right: 0;
  transform: translateY(-50%);
  background: url(../images/common/arw-w.svg) no-repeat center center/contain;
  transition: .3s;
}
header.scr nav .menu > li a.parent:after,
header.under nav .menu > li a.parent:after{
  background-image: url(../images/common/arw-bk.svg);
}
header nav .menu > li a.btn{
  background-color: rgba(25, 25, 25, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: solid 1px #fff;
  border-radius: 50px;
  padding: 5px 40px 5px 13px;
  position: relative;
}
header nav .menu > li a.btn:before{
  display: none;
}
@media (max-width: 1180px) {
  header nav .menu > li a.btn{
    padding: 5px 20px 5px 10px;
  }
}
header.scr nav .menu > li a.btn,
header.under nav .menu > li a.btn{
  background-color: rgba(25, 25, 25, 1);
  color: #fff;
}
header nav .menu > li a.btn:hover,
header.scr nav .menu > li a.btn:hover,
header.under nav .menu > li a.btn:hover{
  color: var(--c-yellow);
}
header nav .menu > li a.btn:after {
  content: '';
  position: absolute;
  width: 10px;
  height: 5px;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(-90deg);
  background: url(../images/common/arw-w.svg) no-repeat center center/contain;
}
@media (max-width: 1180px) {
  header nav .menu > li a.btn:after {
    right: 5px;
  }
}
header nav .h-data{
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 20px;
  transition: .3s;
}
header nav .h-data .tel{
  font-size: clamp(2rem,2.5vw,3rem);
  line-height: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #fff;
}
header nav .h-data .tel:before{
  content: '';
  display: block;
  width: 30px;
  height: 20px;
  margin-right: 5px;
  background: url(../images/common/icon-freedial.svg) no-repeat center center/contain;
  transition: .3s;
}
header nav .h-data .time{
  color: #fff;
  font-size: clamp(1.2rem,1.3vw,1.4rem);
  line-height: 1.4;
  margin-left: 10px;
}
header.scr nav .h-data .tel,
header.scr nav .h-data .time,
header.under nav .h-data .tel,
header.under nav .h-data .time{
  color: var(--c-black);
}
header.scr nav .h-data .tel:before,
header.under nav .h-data .tel:before{
  background-image: url(../images/common/icon-freedial_bk.svg);
}

header #nav-toggle {
  background-color: rgba(25, 25, 25, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 36px 20px;
  position: relative;
  width: 76px;
  color: #fff;
  transition: .3s;
  z-index: 110;
}
@media (max-width: 1180px) {
  header #nav-toggle {
    padding: 36px 10px;
    width: 60px;
  }
}
header.scr #nav-toggle,
header.under #nav-toggle{
  background-color: rgba(25, 25, 25, 1);
  color: #fff;
}
header #nav-toggle:before{
  content: '';
  width: 100%;
  height: 100%;
  transition: .3s;
  border: solid 1px #fff;
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
}
header .open #nav-toggle{
  background: none;
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
}
header .open #nav-toggle:before{
  opacity: 0;
}
header #nav-toggle:after{
  content: 'MENU';
  position: absolute;
  left: -2%;
  width: 104%;
  bottom:15px;
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  text-align: center;
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  line-height: 1;
  transition: .3s;
}
header .open #nav-toggle:after{
  content: 'CLOSE';
  color: var(--c-black);
}
header #nav-toggle button {
  display: block;
  border: none;
  position: relative;
  cursor: pointer;
  outline: none;
  padding: 0;
  width: 100%;
}
header #nav-toggle button span {
  width: 24px;
  height: 3px;
  background-color: #fff;
  position: absolute;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
  left: 50%;
  transform: translateX(-50%);
  transition: .3s;
}
@media (min-width: 1001px) {
  header #nav-toggle:hover button span{
    background-color: var(--c-yellow);
  }
  header #nav-toggle:hover:after{
    color: var(--c-yellow);
  }
}
header #nav-toggle button span:nth-child(1) {
  top: -17px;
}
header #nav-toggle button span:nth-child(2) {
  top: -8px;
}
header #nav-toggle button span:nth-child(3) {
  top: 1px;
}
header .open #nav-toggle span {
  background-color: #000;
}
header .open #nav-toggle span:nth-child(1) {
  top: -8px;
  transform: translateX(-50%) rotate(135deg);
}
header .open #nav-toggle span:nth-child(2){
  width: 0;
}
header .open #nav-toggle span:nth-child(3) {
  top: -8px;
  transform: translateX(-50%) rotate(-135deg);
}
header #navi .megamenu{
  position: fixed;
  top: 0;
  left: 0;
  background-color: #F4F4F4;
  opacity: 0;
  -moz-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  width: 100%;
  height: 100vh;
  transition: .3s;
  z-index: 100;
  overflow-y: auto;
}
header #navi.open .megamenu {
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}
header #navi .megamenu a:hover{
  color: var(--c-yellow);
}
header #navi .megamenu__inner{
  max-width: 1300px;
  width: 94%;
  margin: 0 auto;
  padding-top: 160px;
}
header #navi .megamenu__nav01{
  width: 14%;
}
header #navi .megamenu__nav01 .megamenu__name{
/*  display: none;*/
  margin-bottom: 20px;
  font-weight: 700;
}
header #navi .megamenu a{
  font-size: clamp(1.2rem,1.3vw,1.4rem);
  font-weight: 500;
  line-height: 1.4;
  display: block;
  padding: 5px 0;
}
header #navi .megamenu a.sp{
  display: none;
}
header #navi .megamenu a.mb{
  margin-bottom: 20px;
}
header #navi .megamenu__sub{
  margin-bottom: 20px;
}
header #navi .megamenu__sub a{
  padding-left: 20px;
  font-weight: 400;
  position: relative;
}
header #navi .megamenu__sub a:before{
  content: '';
  width: 10px;
  height: 1px;
  background: var(--c-black);
  position: absolute;
  left: 0;
  top: 15px;
}
header #navi .megamenu__sub a.blank:after{
  content: '';
  width: 14px;
  height: 14px;
  background: url(../images/common/icon-blank.svg) no-repeat center center/contain;
  display: inline-block;
  margin-left: 10px;
}
header #navi .megamenu__nav02{
  width: 24%;
}
header #navi .megamenu__nav02.long{
  width: 28%;
}
header #navi .megamenu__nav02 .megamenu__image{
  max-width: 272px;
  margin: -20px auto 5px;
}
header #navi .megamenu__nav02 .megamenu__name{
  padding: 10px 0;
  border-bottom: solid 1px #D9D9D9;
  display: block;
  position: relative;
  margin-bottom: 10px;
}
header #navi .megamenu__nav02 .megamenu__name:after{
  content: '';
  width: 16px;
  height: 4px;
  background: url(../images/common/arw02-bk.svg) no-repeat center center/contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: .3s;
}
header #navi .megamenu__nav02 .megamenu__name:hover:after{
  right: -5px;
}
header #navi .megamenu__nav02 .megamenu__name img{
  max-width: 200px;
}
@media (max-width: 1270px) {
  header #navi .megamenu__nav02-item{
    display: block;
  }
  header #navi .megamenu__nav02{
    width: 25%;
  }
  header #navi .megamenu__nav02.long{
    width: 25%;
  }
}
header #navi .megamenu__bottom{
  max-width: 1300px;
  width: 94%;
  margin: 0 auto;
  padding: 40px 0 20px;
  align-items: flex-end;
}
header #navi .megamenu__bottom-box01 .megamenu__bottom-item{
  margin-top: 20px;
}
header #navi .megamenu__bottom-box01 .megamenu__bottom-item .name{
  align-items: center;
  margin-right: 20px;
}
header #navi .megamenu__bottom-box01 .megamenu__bottom-item .name strong{
  display: block;
  background-color: #fff;
  border-radius: 50px;
  padding: 5px 20px;
  font-size: clamp(1.2rem,1.3vw,1.4rem);
  font-weight: 400;
  line-height: 1;
  min-width: 110px;
  text-align: center;
}
header #navi .megamenu__bottom-box01 .megamenu__bottom-item .name a{
  display: block;
  margin-left: 10px;
  width: 32px;
  transition: .3s;
}
header #navi .megamenu__bottom-box01 .megamenu__bottom-item .name a:hover{
  opacity: .7;
}
header #navi .megamenu__bottom-box01 .megamenu__bottom-item .name .youtube{
  width: 33px;
}
header #navi .megamenu__bottom-box01 .megamenu__bottom-item .name .insta{
  width: 30px;
}
header #navi .megamenu__bottom-box01 .megamenu__bottom-btn{
  margin-top: 30px;
  justify-content: flex-start;
}
header #navi .megamenu__bottom-box01 .megamenu__bottom-btn a{
  border-radius: 50px;
  padding: 5px 40px 5px 15px;
  color: var(--c-black);
  width: fit-content;
  margin: 0 10px 0 0;
  display: block;
  position: relative;
  transition: .3s;
}
header #navi .megamenu__bottom-box01 .megamenu__bottom-btn a:hover{
  opacity: .7;
}
header #navi .megamenu__bottom-box01 .megamenu__bottom-btn .btn01{
  background-color: #EBD380;
}
header #navi .megamenu__bottom-box01 .megamenu__bottom-btn .btn02{
  background-color: #A0BC9A;
}
header #navi .megamenu__bottom-box01 .megamenu__bottom-btn a:after {
  content: '';
  position: absolute;
  width: 10px;
  height: 5px;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(-90deg);
  background: url(../images/common/arw-bk.svg) no-repeat center center/contain;
}

header #navi .megamenu__bottom-box02 a{
  font-size: clamp(1.2rem,1.3vw,1.4rem);
  font-weight: 400;
  line-height: 1.4;
  position: relative;
}
header #navi .megamenu__bottom-box02 .btn{
  background-color: var(--c-black);
  border-radius: 50px;
  padding: 5px 40px 5px 15px;
  color: #fff;
  width: fit-content;
  margin: 0 0 10px;
}
header #navi .megamenu__bottom-box02 .btn:after {
  content: '';
  position: absolute;
  width: 10px;
  height: 5px;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(-90deg);
  background: url(../images/common/arw-w.svg) no-repeat center center/contain;
}
header #navi .megamenu__bottom-box02 .blank:after{
  content: '';
  width: 14px;
  height: 14px;
  background: url(../images/common/icon-blank.svg) no-repeat center center/contain;
  display: inline-block;
  margin-left: 10px;
}
header #navi .megamenu .h-data{
  display: none;
}

header #navi nav .menu li:hover .sub-menu {
  opacity: 1;
  pointer-events: inherit;
}
header #navi nav .menu .sub-menu {
  opacity: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 40px;
  z-index: -1;
  font-weight: normal;
  margin: 0;
  transition: .1s;
  pointer-events: none;
  max-width: 1040px;
  width: 90%;
  padding-top: 100px;
}
header #navi nav .menu .sub-menu__inner{
  background-color: rgba(25, 25, 25, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  width: 100%;
  padding: 50px;
  justify-content: center;
  align-items: center;
}
header #navi nav .menu .sub-menu__link{
  width: 200px;
  margin-right: 20px;
}
header #navi nav .menu .sub-menu__link a{
  display: block;
  color: #fff;
  font-size: clamp(1.2rem,1.3vw,1.4rem);
  font-weight: 400;
  line-height: 1.4;
  padding: 10px 0;
  border-bottom: solid 1px #303030;
  position: relative;
}
header #navi nav .menu .sub-menu__link a:hover{
  color: var(--c-yellow);
}
header #navi nav .menu .sub-menu__link a:after{
  content: '';
  width: 16px;
  height: 4px;
  background: url(../images/common/arw02-w.svg) no-repeat center center/contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: .3s;
}
header #navi nav .menu .sub-menu__link a:before{
  display: none;
}
header #navi nav .menu .sub-menu__link a.sub{
  padding-left: 20px;
}
header #navi nav .menu .sub-menu__link a.sub:before {
  content: '';
  width: 10px;
  height: 1px;
  display: block;
  background: #fff;
  position: absolute;
  left: 0;
  top: 18px;
  transition: .3;
  opacity: 1;
}
header #navi nav .menu .sub-menu__link a.sub:hover:before{
  background-color: var(--c-yellow);
}
header #navi nav .menu .sub-menu__link a:hover:after{
  right: -5px;
}
header #navi nav .menu .sub-menu__image{
  width: 200px;
  position: relative;
  height: 140px;
}
header #navi nav .menu .sub-menu__image p{
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}
header #navi nav .menu .sub-menu__image p.active{
  opacity: 1;
  visibility: visible;
}
header #navi .megamenu .nav-close{
  display: none;
}
@media (max-width: 1000px) {
  header {
    padding: 10px;
  }
  header h1{
    width: 180px;
    height: 31px;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
  }
  header #navi{
    flex-flow: row-reverse;
    width: 100%;
    justify-content: end;
    align-items: stretch;
  }
  header nav{
    display: none;
  }
  header #nav-toggle {
    padding: 24px 10px;
    width: 45px;
    border-radius: 5px;
  }
  header #nav-toggle:before{
    border-radius: 5px;
  }
  header #nav-toggle:after{
    bottom: 3px;
  }
  header #nav-toggle button span {
    width: 20px;
    height: 2px;
  }
  header #nav-toggle button span:nth-child(1) {
    top: -11px;
  }
  header #nav-toggle button span:nth-child(2) {
    top: -5px;
  }
  header #nav-toggle button span:nth-child(3) {
    top: 1px;
  }

  header:before{
    content: '';
    width: 100%;
    height: 65px;
    background-color: #F4F4F4;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 101;
    opacity: 0;
    transition: .3s;
  }
  header.on:before{
    opacity: 1;
  }
  header #navi .megamenu{
    height: 100vh;
    height: 100dvh;
  }
  header #navi .megamenu__inner{
    padding-top: 60px;
    width: 90%;
  }
  header #navi .megamenu a.pc{
    display: none;
  }
  header #navi .megamenu a.sp{
    display: block;
  }
  header #navi .megamenu a.sp.first{
    padding-left: 0;
    font-weight: 500;
  }
  header #navi .megamenu a.sp.first:before{
    display: none;
  }
  header #navi .megamenu__nav01{
    width: 100%;
  }
  header #navi .megamenu__nav01 .megamenu__name,
  header #navi .megamenu__nav02 .megamenu__name{
    display: block;
    font-size: 2rem;
    font-weight: 700;
    padding: 10px 5px;
    border-bottom: solid var(--c-black) 1px;
    position: relative;
  }
  header #navi .megamenu__nav02 .megamenu__name{
    margin-top: 30px;
  }
  header #navi .megamenu__nav01 .megamenu__name:after,
  header #navi .megamenu__nav02 .megamenu__name:after{
    content: '';
    width: 16px;
    height: 6px;
    background: url(../images/common/arw-bk.svg) no-repeat center center / contain;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
  }
  header #navi .megamenu__nav02 .megamenu__name .cat02:first-letter{
    color: #A89783;
  }
  header #navi .megamenu__nav02 .megamenu__name .cat03:first-letter{
    color: #8FC31F;
  }
  header #navi .megamenu__nav02 .megamenu__name .cat04:first-letter{
    color: #D8AF4E;
  }
  header #navi .megamenu .sp-acc{
    padding: 15px 0 20px;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1;
    border-bottom: solid #dcdcdc 1px;
    position: relative;
  }
  header #navi .megamenu .sp-acc:after{
    content: '';
    width: 26px;
    height: 26px;
    background: url(../images/common/arw04-bk.svg) no-repeat center center / contain;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: .3s;
  }
  header #navi .megamenu .sp-acc.open:after{
    transform: translateY(-50%) rotate(180deg);
  }
  header #navi .megamenu .sp-acc a{
    display: inline-block;
  }
  header #navi .megamenu .sp-acc span{
    display: block;
    font-size: 2.6rem;
    margin-top: 8px;
    font-weight: 500;
  }
  header #navi .megamenu__nav01 .megamenu__name img{
    max-width: 130px;
  }
  header #navi .megamenu a.mb{
    margin-bottom: 10px;
  }
  header #navi .megamenu__sub{
    margin: 10px ;
    display: none;
  }
  header #navi .megamenu__sub a{
    padding: 8px 0 8px 15px;
  }
  header #navi .megamenu__nav02{
    width: 100%;
  }
  header #navi .megamenu__nav02.long{
    width: 100%;
  }
  header #navi .megamenu__nav02 .megamenu__image{
    display: none;
  }
  header #navi .megamenu__bottom{
    width: 100%;
    padding: 20px 5%;
    display: block;
    background-color: var(--c-black);
  }
  header #navi .megamenu__bottom-box01{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 15px;
  }
  header #navi .megamenu__bottom-sp-box:nth-of-type(1){
    width: 58%;
  }
  header #navi .megamenu__bottom-sp-box:nth-of-type(2){
    width: 38%;
  }
  header #navi .megamenu__bottom-box01 .megamenu__bottom-item{
    margin-top: 0;
  }
  header #navi .megamenu__bottom-box01 .megamenu__bottom-item .name{
    margin: 10px 0 0;
  }
  header #navi .megamenu__bottom-box01 .megamenu__bottom-item .name strong{
    min-width: 110px;
    padding: 5px;
    background-color: #484848;
    color: #fff;
  }
  header #navi .megamenu__bottom-box01 .megamenu__bottom-btn{
    margin-top: 10px;
    justify-content: center;
  }
  header #navi .megamenu__bottom-box01 .megamenu__bottom-btn a{
    margin: 0 5px;
  }
  header #navi .megamenu__bottom-box01 .megamenu__bottom-item .name a{
    width: 23px;
    margin-left: 5px;
  }
  header #navi .megamenu__bottom-box01 .megamenu__bottom-item .name .youtube,
  header #navi .megamenu__bottom-box01 .megamenu__bottom-item .name .insta{
    width: 100%;
  }
  header #navi .megamenu__bottom-box01 .megamenu__bottom-btn a{
    padding: 5px 30px 5px 15px;
    margin: 0 0 10px;
    width: 100%;
  }
  header #navi .megamenu__bottom-box02{
    margin-top: 20px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  header #navi .megamenu__bottom-box02 .btn{
    margin: 0;
    width: 48%;
    background-color: #fff;
    color: var(--c-black);
  }
  header #navi .megamenu__bottom-box02 .btn:after{
    background-image: url(../images/common/arw-bk.svg);
  }
  header #navi .megamenu__bottom-box02 .blank{
    width: 100%;
    margin-top: 10px;
    color: #fff;
  }
  header #navi .megamenu__bottom-box02 .blank:after{
    background-image: url(../images/common/icon-blank_w.svg);
  }
  header #navi .megamenu .h-data{
    display: block;
    background-color: var(--c-black);
  }
  header #navi .megamenu .h-data{
    padding-bottom: 20px;
    color: #fff;
  }
  header #navi .megamenu .h-data .tel{
    font-size: clamp(2.8rem,2.9vw,3rem);
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
  }
  header #navi .megamenu .h-data .tel:before{
    content: '';
    display: block;
    width: 30px;
    height: 20px;
    margin-right: 5px;
    background: url(../images/common/icon-freedial.svg) no-repeat center center/contain;
    transition: .3s;
  }
  header #navi .megamenu .h-data .time{
    font-size: clamp(1.4rem,1.5vw,1.6rem);
    line-height: 1.4;
    margin: 5px 0 0;
    text-align: center;
  }
  header #navi .megamenu .nav-close{
    display: none;
    font-size: 1.4rem;
    line-height: 1.4;
    margin: 0;
    text-align: center;
    display: block;
    padding: 20px 0;
    color: #fff;
    background-color: var(--c-black);
  }
}
@media (max-width: 789px) {
  header #navi .megamenu__bottom-box01 .megamenu__bottom-item{
    display: block;
  }
  header #navi .megamenu__bottom-box01 .megamenu__bottom-item .name{
    justify-content: flex-start;
  }
}

/*** ------------------------------------------------------------------------------

footer

-----------------------------------------------------------------------------  ***/
footer{
  background-color: var(--c-black);
  padding: 60px 0;
  color: #fff;
}
.footer__inner{
  max-width: 1250px;
  width: 90%;
  margin: 0 auto;
}
.footer__head-txt{
  text-align: center;
  font-size: clamp(1.4rem,1.6vw,1.8rem);
  line-height: 1.4;
  margin: 0 0 60px;
  font-weight: 500;
}
.footer__head-bn{
  justify-content: center;
  margin: 0 0 60px;
}
.footer__head-bn a{
  display: block;
  width: 230px;
  margin: 0 15px;
  transition: .3s;
}
.footer__head-bn a:hover{
  opacity: .7;
}

footer a{
  font-size: clamp(1.2rem, 1.3vw, 1.4rem);
  font-weight: 500;
  line-height: 1.4;
  display: block;
  color: ;
}
footer a:hover{
  color: var(--c-yellow);
}

.footer__body{
  flex-flow: row-reverse;
}
.footer__body .footer__info{
  width: 25%;
}
.footer__body .footer__info h5{
  max-width: 300px;
  margin: 0 0 20px;
}
.footer__body .footer__info-txt{
  font-size: clamp(1.2rem, 1.3vw, 1.4rem);
  font-weight: 400;
  line-height: 2.4;
}
.footer__body .footer__info-txt strong{
  display: block;
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  font-weight: 500;
  margin-bottom: 5px;
}
.footer__body .footer__info-txt strong.w400{
  font-weight: 400;
}
.footer__body .footer__info-txt span{
  font-weight: 500;
}
.footer__body .footer__nav{
  width: 70%;
}
.footer__body .footer__nav01{
  width: 16%;
}
.footer__body a{
  font-size: clamp(1.2rem,1.3vw,1.4rem);
  font-weight: 500;
  line-height: 1.4;
  display: block;
  padding: 5px 0;
  color: #fff;
}
.footer__body a.top{
  font-weight: 700;
  margin-bottom: 20px;
}
.footer__body a.mb{
  margin-bottom: 20px;
}
.footer__body .footer__sub{
  margin-bottom: 20px;
}
.footer__body .footer__sub a{
  padding-left: 20px;
  font-weight: 400;
  position: relative;
}
.footer__body .footer__sub a:before{
  content: '';
  width: 10px;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 15px;
}
.footer__body .footer__sub a.blank:after{
  content: '';
  width: 14px;
  height: 14px;
  background: url(../images/common/icon-blank_w.svg) no-repeat center center/contain;
  display: inline-block;
  margin-left: 10px;
}
.footer__body .footer__nav02{
  width: 25%;
}
.footer__body .footer__nav02.short{
  width: 23%;
}
.footer__body .footer__nav02 .footer__name{
  padding: 10px 0;
  border-bottom: solid 1px #fff;
  display: block;
  position: relative;
  margin-bottom: 10px;
}
.footer__body .footer__nav02 .footer__name:after{
  content: '';
  width: 16px;
  height: 4px;
  background: url(../images/common/arw02-w.svg) no-repeat center center/contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: .3s;
}
.footer__body .footer__nav02 .footer__name:hover:after{
  right: -5px;
}
.footer__body .footer__nav02 .footer__name img{
  max-width: 200px;
}
.footer__body .footer__nav02 .btn{
  padding-top: 80px;
}
.footer__body .footer__nav02 .btn a{
  background-color: #fff;
  border-radius: 50px;
  padding: 8px 40px 8px 10px;
  position: relative;
  color: var(--c-black);
  display: block;
  width: fit-content;
  margin-top: 20px;
  transition: .3s;
}
.footer__body .footer__nav02 .btn a:hover{
  opacity: .7;
}
@media (max-width: 1180px) {
  .footer__body .footer__nav02 .btn a{
    padding: 8px 20px 8px 10px;
  }
}
.footer__body .footer__nav02 .btn a:after {
  content: '';
  position: absolute;
  width: 10px;
  height: 5px;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(-90deg);
  background: url(../images/common/arw-bk.svg) no-repeat center center/contain;
}

.footer__bottom{
  padding: 40px 0 0;
  align-items: flex-start;
}
.footer__bottom-box01 .footer__bottom-item{
  margin-top: 20px;
}
.footer__bottom-box01 .footer__bottom-item .name{
  align-items: center;
  margin-right: 20px;
}
.footer__bottom-box01 .footer__bottom-item .name strong{
  display: block;
  background-color: #484848;
  color: #fff;
  border-radius: 50px;
  padding: 5px 20px;
  font-size: clamp(1.2rem,1.3vw,1.4rem);
  font-weight: 400;
  line-height: 1;
  min-width: 110px;
  text-align: center;
}
.footer__bottom-box01 .footer__bottom-item .name a{
  display: block;
  margin-left: 10px;
  width: 32px;
  transition: .3s;
}
.footer__bottom-box01 .footer__bottom-item .name a:hover{
  opacity: .7;
}
.footer__bottom-box01 .footer__bottom-item .name .youtube{
  width: 33px;
}
.footer__bottom-box01 .footer__bottom-item .name .insta{
  width: 30px;
}
.footer__bottom-box01 .footer__bottom-btn{
  margin-top: 30px;
  justify-content: flex-start;
}
.footer__bottom-box01 .footer__bottom-btn a{
  border-radius: 50px;
  padding: 5px 40px 5px 15px;
  color: var(--c-black);
  width: fit-content;
  margin: 0 10px 0 0;
  display: block;
  position: relative;
  transition: .3s;
}
.footer__bottom-box01 .footer__bottom-btn a:hover{
  opacity: .7;
}
.footer__bottom-box01 .footer__bottom-btn .btn01{
  background-color: #EBD380;
}
.footer__bottom-box01 .footer__bottom-btn .btn02{
  background-color: #A0BC9A;
}
.footer__bottom-box01 .footer__bottom-btn a:after {
  content: '';
  position: absolute;
  width: 10px;
  height: 5px;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(-90deg);
  background: url(../images/common/arw-bk.svg) no-repeat center center/contain;
}
.footer__bottom-box02 a{
  font-size: clamp(1.2rem,1.3vw,1.4rem);
  color: #fff;
}
.footer__bottom-box02 .logo{
  max-width: 192px;
  margin: 0 0 30px;
}
.footer__bottom-box02 .btn{
  background-color: var(--c-black);
  border-radius: 50px;
  padding: 5px 40px 5px 15px;
  color: #fff;
  width: fit-content;
  margin: 0 0 10px;
}
.footer__bottom-box02 .btn:after {
  content: '';
  position: absolute;
  width: 10px;
  height: 5px;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(-90deg);
  background: url(../images/common/arw-w.svg) no-repeat center center/contain;
}
.footer__bottom-box02 .blank:after{
  content: '';
  width: 14px;
  height: 14px;
  background: url(../images/common/icon-blank_w.svg) no-repeat center center/contain;
  display: inline-block;
  margin-left: 10px;
}
footer address{
  margin-top: 50px;
  font-size: clamp(1rem,1.1vw,1.2rem);
  width: 100%;
}
@media (max-width: 1000px) {
  footer{
    padding: 30px 0 65px;
  }
  .footer__head-txt{
    margin: 0 0 30px;
  }
  .footer__head-bn{
    margin: 0 0 30px;
  }
  .footer__head-bn a{
    width: 130px;
    margin: 0 5px;
  }
  .footer__body{
    display: block;
  }
  .footer__body .footer__info{
    width: 100%;
  }
  .footer__body .footer__info h5{
    max-width: 200px;
    margin: 0 auto 10px;
  }
  .footer__body .footer__info-txt{
    line-height: 2;
  }
  .footer__body .footer__nav{
    width: 100%;
  }
  .footer__body .footer__nav01{
    width: 100%;
  }
  .footer__body a.top{
    margin-bottom: 10px;
  }
  .footer__body a.mb{
    margin-bottom: 10px;
  }
  .footer__body .footer__sub{
    margin-bottom: 10px;
  }
  .footer__body .footer__sub a.blank:after{
    content: '';
    width: 10px;
    height: 10px;
  }
  .footer__body .footer__nav02{
    width: 100%;
    margin-top: 20px;
  }
  .footer__body .footer__nav02.short{
    width: 100%;
  }
  .footer__body .footer__nav02 .footer__name img{
    max-width: 200px;
  }
  .footer__body .footer__nav02 .btn{
    padding: 30px 0;
    margin: 0 auto;
    display: flex;
    max-width: 500px;
    display: flex;
    justify-content: space-between;
  }
  .footer__body .footer__nav02 .btn a{
    text-align: center;
    width: 49%;
    margin-top: 0;
    transition: .3s;
  }

  .footer__bottom-box01 .footer__bottom-item{
    margin-top: 0;
  }
  .footer__bottom-box01 .footer__bottom-item .name{
    margin: 10px 0 0;
  }
  .footer__bottom-box01 .footer__bottom-item .name strong{
    min-width: 150px;
  }
  .footer__bottom-box01 .footer__bottom-btn{
    margin-top: 30px;
    justify-content: center;
  }
  .footer__bottom-box01 .footer__bottom-btn a{
    margin: 0 5px;
  }

  .footer__bottom{
    padding: 40px 0 0;
    display: block;
  }
  .footer__bottom-box02{
    text-align: center;
    margin-top: 50px;
  }
  .footer__bottom-box02 a{
    font-size: clamp(1.2rem,1.3vw,1.4rem);
    color: #fff;
  }
  .footer__bottom-box02 .logo{
    max-width: 140px;
    margin: 0 auto 20px;
  }
  .footer__bottom-box02 .blank:after{
    content: '';
    width: 14px;
    height: 14px;
    background: url(../images/common/icon-blank_w.svg) no-repeat center center/contain;
    display: inline-block;
    margin-left: 10px;
  }
  footer address{
    margin-top: 20px;
    text-align: center;
  }
}
@media (max-width: 789px) {
  .footer__bottom-box01 .footer__bottom-item{
    display: block;
  }
  .footer__bottom-box01 .footer__bottom-item .name{
    justify-content: flex-start;
  }
}

.fix__button{
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
}
.fix__button a{
  display: block;
  border-radius: 10px;
  padding: 20px 15px;
  color: #fff;
  text-align: center;
  transition: .3s;
}
.fix__button a:hover{
  opacity: .7;
}
.fix__button a.rqst{
  background-color: #D8AF4E;
  margin-bottom: 15px;
}
.fix__button a.rsve{
  background-color: var(--c-green);
}
.fix__button a span{
  display: block;
  width: 20px;
  margin: 0 auto 10px;
}
.fix__button a strong{
  font-size: clamp(1.4rem,1.5vw,1.6rem);
  line-height: 1;
  letter-spacing: .25rem;
  font-weight: 500;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
@media (max-width: 789px) {
  .fix__button{
    position: fixed;
    right: inherit;
    top: inherit;
    left: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .fix__button a{
    border-radius: 0;
    padding: 15px 5px;
    margin: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 50%;
    align-items: center;
  }
  .fix__button a.w100{
    width: 100%;
  }
  .fix__button a:nth-of-type(1){
    margin: 0;
  }
  .fix__button a span{
    display: block;
    width: 20px;
    margin: 0 5px 0 0;
  }
  .fix__button a strong{
    writing-mode: inherit;
  }
}

/*--------------------------------
l-under-title
--------------------------------*/
.l-under-title{
  padding: 300px 0 30px;
  border-bottom: solid 1px var(--c-gray02);
}
.l-under-title h2{
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  font-size: clamp(1.6rem,1.7vw,1.8rem);
  line-height: 1;
  font-weight: 500;
}
.l-under-title h2 strong{
  font-size: clamp(4rem,5vw,6.5rem);
  line-height: 1;
  font-weight: 500;
  margin-bottom: 20px;
  display: block;
}
@media (max-width: 1000px) {
  .l-under-title{
    padding: 150px 0 20px;
  }
  .l-under-title h2 strong{
    margin-bottom: 10px;
  }
}
/*--------------------------------
l-under-pankuzu
--------------------------------*/
.l-under-pankuzu{
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  font-size: clamp(1.1rem,1.2vw,1.3rem);
  line-height: 1.4;
  padding: 15px 0;
}
.l-under-pankuzu--single{
  padding: 200px 0 15px;
}
.l-under-pankuzu ul{
  justify-content: flex-start;
}
.l-under-pankuzu ul li{
  padding-right: 20px;
  margin-right: 5px;
  position: relative;
}
.l-under-pankuzu ul li:after{
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  height: 1px;
  background-color: var(--c-black);
}
.l-under-pankuzu ul li:last-child{
  margin: 0;
  padding: 0;
}
.l-under-pankuzu ul li:last-child:after{
  display: none;
}
@media (max-width: 789px) {
  .l-under-pankuzu{
    padding: 10px 0;
  }
  .l-under-pankuzu--single{
    padding: 100px 0 10px;
  }
}

/*--------------------------------
form
--------------------------------*/
.p-form-title{
  text-align: center;
  padding: 160px 0 40px;
  border-bottom: solid 1px var(--c-gray02);
  font-size: clamp(1.6rem,1.7vw,1.8rem);
  line-height: 1;
  font-weight: 500;
  margin: 0 0 100px;
}
.p-form-title strong{
  display: block;
  font-size: clamp(3rem,4.5vw,6.5rem);
  line-height: 1;
  font-weight: 500;
  margin: 0 0 10px;
}
@media (max-width: 789px) {
  .p-form-title{
    padding: 60px 0 20px;
    margin: 0 0 50px;
  }
  .p-form-title strong{
    margin: 0 0 5px;
  }
}
.p-form-inner{
  max-width: 830px;
  width: 90%;
  margin: 0 auto;
  padding: 0 0 100px;
}
.p-form-inner--nobottom{
  padding-bottom: 0;
}
.p-form-head__text{
  text-align: center;
  font-size: clamp(1.4rem,1.5vw,1.6rem);
  line-height: 2;
  margin: 0 auto 60px;
}
.p-form-tel__head{
  text-align: center;
  font-size: clamp(1.4rem,1.5vw,1.6rem);
  font-weight: 500;
  line-height: 1.4;
  margin: 0 auto 20px;
}
.p-form-tel{
  max-width: 600px;
  margin: 0 auto 60px;
  align-items: stretch;
}
.p-form-tel li{
  border: solid 1px var(--c-gray02);
  width: calc(100% / 2 - 5px);
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.p-form-tel__text{
  font-size: clamp(1.4rem,1.5vw,1.6rem);
  line-height: 1.6;
  display: flex;
  flex-grow: 1;
  justify-content: center;
}
.p-form-tel__text--bold{
  font-weight: 700;
}
.p-form-tel__number{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(2rem,2.4vw,2.8rem);
  line-height: 1;
  font-weight: 500;
  margin: 20px 0 10px;
  pointer-events: none;
}
.p-form-tel__number span{
  display: block;
  width: 22px;
  margin-right: 5px;
}
.p-form-tel__time{
  font-size: clamp(1.4rem,1.5vw,1.6rem);
  line-height: 1;
}
.p-form-link{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(1.8rem,2vw,2.2rem);
  line-height: 1;
  font-weight: 700;
  margin: 20px 0 15px;
}
.p-form-link:after{
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/common/arw07-bk.svg) no-repeat center center/contain;
  margin-left: 15px;
  transition: .3s;
}
.p-form-link:hover:after{
  transform: translateX(5px);
}
@media (max-width: 789px) {
  .p-form-inner{
    padding: 0 0 50px;
  }
  .p-form-inner--nobottom{
    padding-bottom: 0;
  }
  .p-form-head__text{
    text-align: left;
    margin: 0 auto 30px;
  }
  .p-form-tel__head{
    margin: 0 auto 10px;
  }
  .p-form-tel{
    display: block;
    margin: 0 auto;
    padding-bottom: 20px;
  }
  .p-form-tel li{
    width: 100%;
    padding: 20px 15px;
    display: block;
    margin-bottom: 5px;
  }
  .p-form-tel__number{
    margin: 10px 0 5px;
    pointer-events: inherit;
  }
  .p-form-tel__number span{
    width: 16px;
  }
  .p-form-link{
    margin: 10px 0;
  }
  .p-form-link:after{
    width: 20px;
    height: 20px;
    margin-left: 5px;
  }
}
.p-form-table{
  width: 100%;
}
.p-form-table th {
  min-width: 260px;
  width: 260px;
  padding: 10px 0 15px;
  vertical-align: top;
  font-weight: 500;
}
.p-form-table th p{
  position: relative;
  font-size: clamp(1.4rem,1.5vw,1.6rem);
  text-align: right;
  line-height: 1.4;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
.p-form-table th p strong{
  display: block;
  background-color: #ED3F3F;
  border-radius: 50px;
  padding: 5px 15px;
  text-align: center;
  margin-left: 10px;
  color: #fff;
  font-size: clamp(1.2rem,1.3vw,1.4rem);
  font-weight: 500;
  transform: translateY(-3px);
}
.p-form-table th p strong.any{
  background-color: var(--c-gray02);
  color: var(--c-black);
}
.p-form-table td {
  width: calc(100% - 280px);
  padding: 0 0 20px 15px;
  position: relative;
}
.p-form-table select,
.p-form-table input[type=text].day,
.p-form-table input[type=text],
.p-form-table textarea,
.p-form .mw_wp_form_confirm td p,
.p-form .mw_wp_form_confirm td .check {
  -webkit-appearance: none;
  appearance: none;
  padding: 10px;
  padding-right: 1em;
  border: solid 1px var(--c-gray02);
  outline: 0;
  background: #fff;
  background-image: none;
  box-shadow: none;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  width: 100%;
  border-radius: 0;
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  line-height: 1.6;
}
.p-form .mw_wp_form_confirm td p{
  border: none;
}
.p-form-table td .notes{
  display: block;
  font-size: clamp(1.1rem,1.2vw,1.3rem);
  margin-top: 5px;
}
.p-form-table td .add{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
}
.p-form-table td .add-txt{
  font-size: clamp(1.4rem,1.5vw,1.6rem);
  font-weight: 500;
  line-height: 1.4;
  display: block;
  width: 70px;
}
.p-form-table td .add{
  margin-bottom: 15px;
}
.p-form-table td .add:last-of-type{
  margin-bottom: 0;
}
.p-form-table td .add input[type=text]{
  width: calc(100% - 70px);
}
.p-form-table td .mwform-radio-field,
.p-form-table td .mwform-checkbox-field{
  display: flex;
  font-size: clamp(1.4rem,1.5vw,1.6rem);
  line-height: 1.4;
  margin: 0 0 10px;
}
.mw_wp_form .horizontal-item + .horizontal-item{
  margin-left: 0;
}
.p-form .pp-txt{
  font-size: clamp(1.2rem,1.3vw,1.4rem);
  line-height: 1.8;
  margin: 60px 0;
}
.p-form .pp-txt a{
  text-decoration: underline;
}
.p-form .pp-txt a:hover{
  text-decoration: none;
}
.p-form .btn-wrap{
  max-width: 330px;
  width: 100%;
  margin: 0 auto 0;
}
.p-form .btn-wrap.send{
  max-width: 240px;
}
.p-form .btn-wrap button[type=submit] {
  display: block;
  position: relative;
  background-color: var(--c-black);
  color: #fff;
  border-radius: 50px;
  padding: 20px 25px;
  font-size: clamp(1.4rem,1.5vw,1.6rem);
  line-height: 1;
  cursor: pointer;
  width: 100%;
  border: none;
  text-align: left;
}
.p-form .btn-wrap.confirm button[type=submit]{
  text-align: left;
}
.p-form .btn-wrap button[type=submit].back{
  background-color: var(--c-gray02);
  color: var(--c-black);
  margin: 10px 0 0;
  text-align: left;
}
.p-form .btn-wrap button[type=submit]:after{
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  width: 6px;
  height: 6px;
  border-radius: 6px;
  background-color: #fff;
  transition: .3s;
  transform: translateY(-50%);
}
.p-form .btn-wrap button[type=submit]:hover:after{
  transform: translateY(-50%) scale(1.5);
}
.p-form-table td .staff02,
.p-form-table td .staff03{
  display:none;
  padding-left: 20px;
}
.mw_wp_form_confirm .p-form-table td .staff02,
.mw_wp_form_confirm .p-form-table td .staff03{
  display: block!important;
}
.p-form-comment__text{
  font-size: clamp(1.2rem,1.3vw,1.4rem);
  line-height: 1.8;
  margin: 0 0 15px;
}
.p-form-table td .flex .select{
  width: calc(100% / 2 - 5px);
  position: relative;
}
.p-form-table td .flex .select::before {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 13px;
  height: 4px;
  content: "";
  pointer-events: none;
  background: url(../images/common/arw-select.svg) no-repeat center center / contain;
}
.p-form-table td .flex .calendar::before{
  background: url(../images/common/icon-data.svg) no-repeat center center / contain;
  width: 20px;
  height: 20px;
}
@media (max-width: 789px) {
  .p-form-table th {
    min-width: auto;
    width: 100%;
    display: block;
    padding: 10px 0 5px;
  }
  .p-form-table th p{
    justify-content: space-between;
    text-align: left;
  }
  .p-form-table td {
    min-width: auto;
    width: 100%;
    display: block;
    padding: 0 0 20px;
  }
  .p-form .pp-txt{
    margin: 30px 0;
  }
}
.p-form-thanks{
  text-align: center;
  max-width: 900px; 
  width: 90%;
  margin: 0 auto;
}
.p-form-thanks__head{
  font-size: clamp(2rem,2.4vw,2.8rem);
  line-height: 1.4;
  font-weight: 700;
  margin: 0 0 60px;
}
.p-form-thanks__text{
  position: relative;
  font-size: clamp(1.4rem,1.5vw,1.6rem);
  line-height: 2;
}
.p-form-thanks a{
  max-width: 330px;
  width: 100%;
  margin: 60px auto 0;
}
.p-form-obi{
  background-color: var(--bg_gray);
  padding: 60px 0;
  margin: 0 0 60px;
}
.p-form-obi__text{
  max-width: 460px;
  width: 100%;
  margin: 0 auto 0;
}
.p-form-obi__text li{
  font-size: clamp(1.2rem,1.3vw,1.4rem);
  line-height: 1.6;
  margin: 0 0 5px 1rem;
  text-indent: -1rem;
}
@media (max-width: 789px) {
  .p-form-thanks a{
    margin: 30px auto 0;
  }
  .p-form-obi{
    background-color: var(--bg_gray);
    padding: 30px;
    margin: 0 0 30px;
  }
}
.pg-event-box{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 0 60px;
}
.pg-event-box .pg-event-box__midashi {
  min-width: 260px;
  width: 260px;
  padding: 10px 0 15px;
  vertical-align: top;
  font-weight: 500;
  position: relative;
  font-size: clamp(1.4rem,1.5vw,1.6rem);
  text-align: right;
  line-height: 1.4;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
.pg-event-box .pg-event-box__midashi strong{
  display: block;
  background-color: #ED3F3F;
  border-radius: 50px;
  padding: 5px 15px;
  text-align: center;
  margin-left: 10px;
  color: #fff;
  font-size: clamp(1.2rem,1.3vw,1.4rem);
  font-weight: 500;
  transform: translateY(-3px);
}
.pg-event-box .pg-event-box__inner{
  background-color: var(--bg_gray);
  padding: 45px;
  border-radius: 15px;
  width: calc(100% - 280px);
}
.pg-event-box .pg-event-box__inner .icon-cat{
  width: fit-content;
  color: #fff;
}
.pg-event-box .event_title{
  font-size: clamp(1.8rem,2vw,2.4rem);
  font-weight: 700;
  line-height: 1.6;
  padding: 30px 0;
}
.pg-event-box .icon-txt{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 5px;
}
.pg-event-box .icon-txt span{
  display: block;
  width: 20px;
}
.pg-event-box .icon-txt strong{
  display: block;
  width: calc(100% - 30px);
  font-size: clamp(1.2rem,1.3vw,1.4rem);
  font-weight: 500;
  line-height: 1.6;
}
.pg-event-box .event_free{
  font-size: clamp(1.2rem,1.3vw,1.4rem);
  line-height: 1.8;
  padding-top: 20px;
}
@media (max-width: 789px) {
  .pg-event-box{
    display: block;
    margin: 0 0 30px;
  }
  .pg-event-box .pg-event-box__midashi {
    min-width: auto;
    width: 100%;
    padding: 0 0 5px;
    justify-content: space-between;
    text-align: left;
  }
  .pg-event-box .pg-event-box__inner{
    padding: 20px 15px;
    border-radius: 8px;
    width: 100%;
  }
  .pg-event-box .event_title{
    padding: 20px 0;
  }
  .pg-event-box .icon-txt span{
    width: 15px;
    transform: translateY(2px);
  }
  .pg-event-box .icon-txt strong{
    width: calc(100% - 25px);
  }
  .pg-event-box .event_free{
    padding-top: 10px;
  }
}

/*--------------------------------
pagination
--------------------------------*/
.p-pagination{
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  width: 100%;
  padding-top: 50px;
}
.p-pagination a,
.p-pagination span,
.pg-top-voice__list .p-pagination a,
.pg-top-voice__list .p-pagination span{
  display: block;
  border-radius: 8px;
  padding: 0;
  box-shadow: none;
  width: 32px;
  height: 32px;
  line-height: 32px;
  margin: 0 0 0 5px;
  font-size: clamp(1.4rem,1.5vw,1.6rem);
  text-align: center;
}
.p-pagination a:hover,
.p-pagination span{
  background-color: var(--c-black);
  color: #fff;
}
.p-pagination .dots {
  line-height: 20px;
}

.p-pager{
  max-width: 1040px;
  width: 90%;
  margin: 90px auto;
  align-items: center;
  border-top: solid 1px var(--c-gray02);
  border-bottom: solid 1px var(--c-gray02);
  padding: 40px 0;
}
.p-pager a{
  font-size: clamp(1.2rem,1.3vw,1.4rem);
  line-height: 1.8;
  text-decoration: underline;
  position: relative;
  display: block;
}
.p-pager a:hover{
  text-decoration: none;
}
.p-pager__prev,
.p-pager__next{
  width: calc(100% / 2 - 100px);
  position: relative;
}
.p-pager__prev a{
  padding: 0 0 0 80px;
}
.p-pager__next a{
  padding: 0 80px 0 0;
}
.p-pager__prev a:after,
.p-pager__next a:after{
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: url(../images/common/arw05-bk.svg) no-repeat center center / contain;
}
.p-pager__prev a:after{
  left: 0;
  transform: translateY(-50%) scale(-1,1);
}
.p-pager__next a:after{
  right: 0;
}
.p-pager__archive{
  width: 100px;
  text-align: center;
}
.p-pager__archive a{
  text-decoration: none;
}
.p-pager__archive a:hover{
  color: var(--c-green);
}
@media (max-width: 789px) {
  .p-pager{
    margin: 40px auto;
    padding: 20px 0;
    display: block;
  }
  .p-pager__prev,
  .p-pager__next{
    width: 100%;
  }
  .p-pager__prev a{
    padding: 20px 40px;
  }
  .p-pager__next a{
    padding: 20px 40px;
  }
  .p-pager__prev a:after,
  .p-pager__next a:after{
    width: 30px;
    height: 30px;
  }
  .p-pager__archive{
    width: 100%;
    text-align: center;
  }
  .p-pager__next{
    text-align: right;
  }
}

/*--------------------------------
single other
--------------------------------*/
.p-other-wrap{
  position: relative;
}
.p-other-title{
  font-size: clamp(1.8rem,2vw,2.4rem);
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 30px;
}
.p-other-wrap .more-btn {
  position: absolute;
  right: 0;
  top: -10px;
  width: 194px;
}
@media (max-width: 789px) {
  .p-other-title{
    margin-bottom: 15px;
  }
  .p-other-wrap .more-btn{
    position: relative;
    right: inherit;
    top: inherit;
    width: 180px;
    margin: 0 auto;
  }
}

/*--------------------------------
p-footer-banner
--------------------------------*/
.p-footer-banner{
  padding: 100px 0;
  background: url(../images/common/ft-bn-bg.jpg) no-repeat center center / cover;
}
.p-footer-banner.pg-footer-banner{
  background: #fff;
  padding: 0 0 100px;
}
.p-footer-banner a{
  display: block;
  max-width: 630px;
  width: 90%;
  margin: 0 auto 40px;
}
.p-footer-banner a:last-of-type{
  margin-bottom: 0;
}
.p-footer-banner a:hover{
  opacity: .7;
}
@media (max-width: 789px) {
  .p-footer-banner{
    padding: 50px 0;
  }
  .p-footer-banner.pg-footer-banner{
    padding: 0 0 50px;
  }
  .p-footer-banner a{
    margin: 0 auto 20px;
  }
}

/*--------------------------------
p-underpage-head
--------------------------------*/
.p-underpage-head{
  padding: 140px 0 170px;
}
.p-underpage-head__midashi{
  text-align: center;
  font-size: clamp(2rem,2.6vw,3.4rem);
  line-height: 1.6;
}
.p-underpage-head__text{
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  line-height: 2.4;
  text-align: center;
  width: 90%;
  margin: 100px auto 0;
}
@media (max-width: 789px) {
  .p-underpage-head{
    padding: 60px 0;
  }
  .p-underpage-head__text{
    line-height: 2;
    text-align: left;
    margin: 30px auto 0;
  }
}

/*--------------------------------
p-conts__title
--------------------------------*/
.p-conts__title{
  width: 100%;
  text-align: center;
  margin: 0 0 40px;
}
.p-conts__title-text01{
  font-size: clamp(2.4rem,3.2vw,4.6rem);
  line-height: 1.2;
  margin: 0 0 20px;
}
.p-conts__title-text02{
  font-size: clamp(2rem,2.8vw,3.4rem);
  line-height: 1.6;
}
.p-conts__title-text02 span{
  display: block;
  font-size: clamp(1.1rem, 1.2vw, 1.3rem);
  margin-top: 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.p-conts__title-text03{
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  line-height: 2.4;
  text-align: center;
  margin: 40px auto 0;
}
@media (max-width: 798px) {
  .p-conts__title{
    width: 100%;
    text-align: center;
    margin: 0 0 10px;
  }
  .p-conts__title-text01{
    margin: 0 0 10px;
  }
  .p-conts__title-text03{
    line-height: 2;
    text-align: left;
    margin: 20px 0 0;
  }
}

/*--------------------------------
p-pagenavi
--------------------------------*/
.p-pagenavi{
  padding: 0 0 170px;
  max-width: 830px;
  width: 90%;
  margin: 0 auto;
}
.p-pagenavi--head{
  padding-top: 140px;
}
.p-pagenavi__list li{
  width: calc(100% / 2 - 20px);
}
.p-pagenavi__midashi{
  font-size: clamp(2rem,2.4vw,2.8rem);
  line-height: 1.2;
  margin: 0 0 20px;
  text-align: center;
}
.p-pagenavi__list a{
  display: block;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.p-pagenavi__list a:hover{
  opacity: .7;
}
.p-pagenavi__list a:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--c-black);
  opacity: .7;
}
.p-pagenavi__text{
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: clamp(2rem,2.5vw,3rem);
  line-height: 1;
  z-index: 1;
  top: 30%;
}
.p-pagenavi__list a .pg-top-menu__more{
  width: 37%;
  z-index: 1;
  bottom: 30%;
}
@media (max-width: 1100px) {
  .p-pagenavi__list a .pg-top-menu__more:before{
    right: 8%;
  }
}
@media (max-width: 798px) {
  .p-pagenavi{
    padding: 0 0 60px;
  }
  .p-pagenavi--head{
    padding-top: 60px;
  }
  .p-pagenavi__list li{
    width: calc(100% / 2 - 5px);
  }
  .p-pagenavi__midashi{
    margin: 0 0 10px;
  }
  .p-pagenavi__list a{
    border-radius: 10px;
  }
  .p-pagenavi__list a .pg-top-menu__more{
    width: 140px;
  }
  .p-pagenavi__list a .pg-top-menu__more:before{
    right: 8%;
  }
}
@media (max-width: 798px) {
  .p-pagenavi__list li{
    width: 100%;
    margin: 0 0 15px;
  }
}

/*--------------------------------
p-pagenavi
--------------------------------*/
.p-search{
  background-color: var(--bg_gray);
  border-radius: 15px;
  padding: 50px;
  margin: 0 auto 100px;
}
.p-search ul{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
}
.p-search--line2 ul{
  max-width: 700px;
}
.p-search ul li{
  width: 30%;
  position: relative;
}
.p-search ul li:after{
  content: '';
  position: absolute;
  top: 70%;
  right: 10px;
  transform: translateY(-50%);
  width: 13px;
  height: 6px;
  background: url(../images/common/arw-select.svg) no-repeat center center / contain;
}
.p-search--line2 ul li{
  width: 46%;
}
.p-search ul li:last-child{
  width: 100%;
  margin-top: 50px;
  text-align: center;
}
.p-search ul li:last-child:after{
  display: none;
}
.p-search ul li h4{
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  line-height: 1.2;
  font-weight: 500;
  margin: 0 0 10px;
}
.p-search ul li select{
  -webkit-appearance: none;
  appearance: none;
  padding: 15px;
  padding-right: 1em;
  border: solid 1px var(--c-gray02);
  outline: 0;
  width: 100%;
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  line-height: 1.2;
  font-weight: 500;
}
.p-search ul li input[type=submit]{
  text-align: left;
  padding: 20px 30px;
  background-color: var(--c-black);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  line-height: 1.2;
  transition: .3s;
  width: 100%;
}
.p-search ul li input[type=submit]:hover{
  opacity: .7;
}
.p-search ul li .btn{
  display: block;
  position: relative;
  width: 180px;
  margin: 0 auto;
}
.p-search ul li .btn:after{
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url(../images/common/icon-search.svg) no-repeat center center / contain;
}
@media (max-width: 798px) {
  .p-search{
    border-radius: 10px;
    padding: 20px 15px;
    margin: 0 auto 50px;
  }
  .p-search ul{
    display: block;
  }
  .p-search ul li{
    width: 100%;
    margin: 0 0 15px;
  }
  .p-search--line2 ul li{
    width: 100%;
  }
  .p-search ul li:last-child{
    margin-top: 30px;
  }
  .p-search ul li h4{
    margin: 0 0 5px;
  }
  .p-search ul li select{
    padding: 10px;
    padding-right: 1em;
  }
  .p-search ul li input[type=submit]{
    padding: 15px 25px;
  }
  .p-search ul li .btn:after{
    width: 15px;
    height: 15px;
  }
}

.cs-txt{
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  line-height: 1.2;
  font-weight: 500;
  width: 65%;
}