@charset "UTF-8";
/* ----------------------- */

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 0;
  min-height: 0;
}

html {
  font-size: 62.5%;
  line-height: 1.6;
  height: 100%;
}

@font-face {
  font-family: 'kakugo';
  src: url('../font/kakugo_large.woff') format('woff');
}


body {
  background-color: #fff;
  color: #3e3a39;
  font-size: 1.6rem;
  font-family: 'kakugo', "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  width: 100%;
  letter-spacing: 0.1em;
}

@media(min-width: 961px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

p {
  font-size: 17px;
}

.kaigyo {
  display: inline-block;
}
/* -------------------------- */

/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    background:#fff;
    text-align:center;
  }
  
  /* Loading画像中央配置*/
  #splash_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  /* Loading アイコンの大きさ設定　*/
  #splash_logo img {
    width:260px;
  }
  
  /* fadeUpをするアイコンの動き */
  .fadeUp{
  animation-name: fadeUpAnime;
  animation-duration:0.5s;
  animation-fill-mode:forwards;
  opacity: 0;
  }
  
  @keyframes fadeUpAnime{
    from {
      opacity: 0;
    transform: translateY(100px);
    }
  
    to {
      opacity: 1;
    transform: translateY(0);
    }
  }


/*========= ナビゲーションのためのCSS ===============*/


#top-head {
  width: 100%;
  height: 120px;
  background-color:#fff;
  display: flex;
  position: fixed;
  z-index: 998;
  transition: .2s;
  padding: 5px 0 10px ;
}

#top-head .inner {
  width: 95%;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

#g-nav ul {
  display: flex;
  list-style-type: none;
  align-items: center;
}

#g-nav li a {
  padding: 3px 20px;
color: #3e3a39;
}

#g-nav .to-contact a {
  background-color: #e95513;
  border-radius: 5px;
  color: #fff;
  height: 35px;
}
#g-nav .insta a {
  padding: 0px 20px;
  height: 35px;
  display: block;
}

#g-nav .insta a img {
  height: 100%;
}

.openbtn {
  display: none;
}

.circle-bg {
  display: none;
}

.header-logo {
  width: 180px;
}
.header-logo img {
  width: 100%;
}

  .nav-logo {
    display: none;
  }


@media screen and (max-width:768px) {

  #top-head {
    height: 80px;
  }
  #top-head .inner {
    width: 100%;
  }

  .header-logo {
position:absolute;
top: 50%;
left: 10px;
transform: translateY(-50%);
width: 140px;
  }



  .nav-logo img {
    width: 100%;
  }


/*アクティブになったエリア*/
#g-nav.panelactive{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
	top: 0;
	width:100%;
    height: 100vh;
}

/*丸の拡大*/
.circle-bg{
  display: block;
    position: fixed;
	z-index:3;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255,255,255,.95);
    /*丸のスタート位置と形状*/
	transform: scale(0);/*scaleをはじめは0に*/
	right:-50px;
    top:-50px;
    transition: all .6s;/*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive{
	transform: scale(50);/*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list{
    display: none;/*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list{
     display: block; /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav ul {
  display: block;
	opacity: 0;/*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
    opacity:1;
}
  
#g-nav.panelactive .nav-logo {
  display: block;
  width: 150px;
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li,
#g-nav.panelactive .nav-logo{
animation-name:gnaviAnime;
animation-duration:1s;
animation-delay:.2s;/*0.2 秒遅らせて出現*/
animation-fill-mode:forwards;
opacity:0;
}
@keyframes gnaviAnime{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}


/*リストのレイアウト設定*/
#g-nav li{
	text-align: center; 
	list-style: none;
}

#g-nav li a{
	text-decoration: none;
	padding: 15px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}


#g-nav .to-contact a {
  height: auto;
}
#g-nav .insta a {
  margin: 5px auto;
  padding: 3px 20px;
  height: auto;
  display: block;
}


/*========= ボタンのためのCSS ===============*/
.openbtn{
  display: inline-block;
	position:fixed;
	top:15px;
	right: 10px;
	z-index: 9999;/*ボタンを最前面に*/
	cursor: pointer;
    width: 50px;
    height:50px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 6px;
    height: 3px;
    border-radius: 2px;
	background-color: #1eaa39;
  	width: 80%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}
.openbtn span:nth-of-type(3)::after {
	content:"Menu";/*3つ目の要素のafterにMenu表示を指定*/
	position: absolute;
	top:5px;
	left:1px;
	font-size: 1rem;
	text-transform: uppercase;
  color: #1eaa39;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 6px;
    transform: translateY(6px) rotate(-30deg);
    width: 80%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 6px;
    transform: translateY(-6px) rotate(30deg);
    width: 80%;
}
.openbtn.active span:nth-of-type(3)::after {
	content:"Close";/*3つ目の要素のafterにClose表示を指定*/
    transform: translateY(6px) rotate(-30deg);
	top:6px;
	left:10px;
  letter-spacing: .1em;
}
}


/* 共通 */
.a-container {
  width: 90%;
  max-width: 1130px;
  margin: 0 auto;
}
.b-container {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}


.flex-a {
  display: flex;
  justify-content: space-around;
  margin: 0 auto;
}

.flex-b {
  display: flex;
  justify-content: space-between;
}

.flex-c {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.mb-30 {
  margin: 0 0 30px;
}
.small {
  font-size: .9em;
}

.greeting-concept .flex-b  {
  gap: 20px;
  margin: 25px auto;
}

.section-title {
  position: relative;
  padding: 1rem 2rem calc(1rem + 10px);
  background: #dadf00;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  font-size: 2.4rem;
}

.section-title:before {
  position: absolute;
  top: -7px;
  left: -7px;
  width: 100%;
  height: 100%;
  content: '';
  border: 4px solid #3e3a39;
}

.section-title-white {
  background: #fff;
  position: relative;
  padding: 1rem 2rem calc(1rem + 10px);
  width: 90%;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  font-size: 2.4rem;

}

.section-title-white:before {
  position: absolute;
  top: -7px;
  left: -7px;
  width: 100%;
  height: 100%;
  content: '';
  border: 4px solid #3e3a39;
}

.btn06{
  /*矢印の基点とするためrelativeを指定*/
position: relative;
  /*ボタンの形状*/
text-decoration: none;
display: inline-block;
background : -moz-linear-gradient(-11.45% 7.85% -45deg,rgba(30, 170, 57, 1) 0%,rgba(141, 194, 31, 1) 50%,rgba(218, 223, 0, 1) 100%);
  background : -webkit-linear-gradient(-45deg, rgba(30, 170, 57, 1) 0%, rgba(141, 194, 31, 1) 50%, rgba(218, 223, 0, 1) 100%);
  background : -webkit-gradient(linear,-11.45% 7.85% ,111.45% 92.15% ,color-stop(0,rgba(30, 170, 57, 1) ),color-stop(0.5,rgba(141, 194, 31, 1) ),color-stop(1,rgba(218, 223, 0, 1) ));
  background : -o-linear-gradient(-45deg, rgba(30, 170, 57, 1) 0%, rgba(141, 194, 31, 1) 50%, rgba(218, 223, 0, 1) 100%);
  background : -ms-linear-gradient(-45deg, rgba(30, 170, 57, 1) 0%, rgba(141, 194, 31, 1) 50%, rgba(218, 223, 0, 1) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#1EAA39', endColorstr='#DADF00' ,GradientType=0)";
  background : linear-gradient(135deg, rgba(30, 170, 57, 1) 0%, rgba(141, 194, 31, 1) 50%, rgba(218, 223, 0, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1EAA39',endColorstr='#DADF00' , GradientType=1);
color:#fff;
  padding: 15px 40px 15px 30px;
border-radius:35px;
  text-align: center;
  outline: none;
  /*アニメーションの指定*/
  transition: ease .2s;
  background-position: 1% 50%;
  background-size: 150% auto;
}

.btn06:hover{
  background-position: 99% 50%;
}

/* 矢印が右に移動して現在地に戻る */

.btnarrow2::after{
  content: '';
  /*絶対配置で矢印の位置を決める*/
position: absolute;
  top:42%;
  right: 13px;
  /*矢印の形状*/
  width: 5px;
  height: 5px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

/*hoverした際のアニメーション*/
.btnarrow2:hover::after{
animation: arrow .5s;
}

@keyframes arrow {
50% {
  right: 10px;
}
100% {
  right: 13px;
}
}

.centering {
  text-align: center;
  margin: 0 auto;
}

@media screen and (max-width:768px) {
  
.flex-a {
  display:block;
}

.flex-b {
  display:block;
}

.flex-c {
  display:block;
}

.greeting-concept .flex-b {
  gap: 0;
  margin: 40px auto;
}


.section-title:before {
  position: absolute;
  top: -6px;
  left: -6px;
}

.section-title-white:before {
  position: absolute;
  top: -6px;
  left: -6px;
}


}


/* 共通 end */
/* -------------------------------- */
/* index.html */
/* main-v */
.main-v {
  padding-top: 120px;
  width: 100%;
  position: relative;
}

.main-v img {
  width: 100%;
}

/* main-v-catch */
.main-v-catch .main-v-catch-txt-a {
  position: absolute;
  top: 60%;
  left: 3%;
  background-color: #fff;
  font-size: 2vw;
  padding: 7px 10px;
}
.main-v-catch .main-v-catch-txt-a:before {
  position: absolute;
  top: -7px;
  left: -7px;
  width: 100%;
  height: 100%;
  content: '';
  border: 4px solid #3e3a39;
}
.main-v-catch .main-v-catch-txt-b {
  position: absolute;
  top:70%;
  left: 3%;
  background-color: #fff;
  font-size: 2vw;
  padding: 7px 10px;
}
.main-v-catch .main-v-catch-txt-b:before {
  position: absolute;
  top: -7px;
  left: -7px;
  width: 100%;
  height: 100%;
  content: '';
  border: 4px solid #3e3a39;
}


@media screen and (max-width:768px) {

  .main-v {
    padding-top: 80px;
  }

  .main-v-catch .main-v-catch-txt-a {
    position: absolute;
    top: 55%;
    left: 3%;
    background-color: #fff;
    font-size: 4.2vw;
    padding: 7px 10px;
  }
  .main-v-catch .main-v-catch-txt-b {
    position: absolute;
    top:65%;
    left: 3%;
    background-color: #fff;
    font-size: 4.2vw;
    padding: 7px 10px;
  }

  .main-v-catch .main-v-catch-txt-a:before {
    position: absolute;
    top: -6px;
    left: -6px;
  }
  

  .main-v-catch .main-v-catch-txt-b:before {
    position: absolute;
    top: -6px;
    left: -6px;
  }
  
}

/* main-v end */

/* main */

.top-page {
  padding: 50px 0 50px 0;
}


.heading-016 {
  font-size: 3.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.heading-016::before,
.heading-016::after {
  width: 3px;
  height: 35px;
  background-color: #1eaa39;
  content: '';
}

.heading-016::before {
  transform: rotate(-35deg);
  margin-right: 30px;
}

.heading-016::after {
  transform: rotate(35deg);
  margin-left: 30px;
}

.greeting-concept {
  padding: 50px 0;
}

.greeting-concept__txt-box {
  width: 100%;
  max-width: 800px;
  margin: 30px auto;
}

.greeting-concept__txt-box p {
  line-height: 2;
  text-align: center;
}

.heading-029 {
  display: block;
  position: relative;
  margin: calc(1em / 2) 0 calc(3.5em / 4) calc(3.5em / 2);
  color: #3e3a39;
  line-height: 1;
text-align: center;
z-index: 2;
}

.heading-029::before {
  position: absolute;
  bottom: calc(-2em / 4);
  left: 20%;
  /* transform: translateX(-50%); */
  z-index: -1;
  width: 3.5em;
  height: 3.5em;
  border-radius: 50%;
  background: #1eaa39;
  content: '';
}

.photo-ch:nth-child(2) .heading-029::before {
  background: #8dc21f;
}

.photo-ch:last-child .heading-029::before {
  background: #dadf00;
}

@media screen and (max-width:768px) {
  .heading-029::before {
    left: 0%;
  }
}

@media screen and (max-width:599px) {
  .heading-029::before {
    left: 27%;
  }
}

@media screen and (max-width:768px) {
  .heading-016{
    font-size: 4.5vw;
  }
  

.heading-016::before {
  transform: rotate(-35deg);
  margin-right: 20px;
}

.heading-016::after {
  transform: rotate(35deg);
  margin-left: 20px;
}

}
/* 
@media screen and (max-width:428px) {
  .heading-016{
    font-size: 5vw;
  }
} */

.photo {
  padding: 50px 0;
}

.photo .flex-b {
  gap: 50px;
}

.photo-ch {
  width: calc(100%/3);
  max-width: 320px;
  margin: 0 auto;
}

.photo-ch a {
  display: block;
}

.photo-ch img {
  width: 100%;
  transition: .2s all;
}


.photo-ch a:hover img {
  opacity: .8;
}

@media screen and (max-width:768px) {

  .photo .flex-b {
    display: flex;
  }

  .photo-ch {
    width:100%;
  }
}

@media screen and (max-width:599px) {
  .photo .flex-b {
    display: block;
  }

  .photo-ch {
    margin:20px auto;
  }
}

.banner {
  padding: 50px 0;
}

.banner-img a {
  display: block;
  transition: .2s all;
}

.banner-img {
  width: 45%;
}

.banner-img img {
  width: 100%;
}

.banner-img a:hover {
opacity: .8;
}

@media screen and (max-width:768px) {
  .banner-img {
    width: 100%;
  }
}

.feature {
  padding: 50px 0;
  
  background : -moz-linear-gradient(-11.45% 7.85% -45deg,rgba(30, 170, 57, 1) 0%,rgba(141, 194, 31, 1) 50%,rgba(218, 223, 0, 1) 100%);
  background : -webkit-linear-gradient(-45deg, rgba(30, 170, 57, 1) 0%, rgba(141, 194, 31, 1) 50%, rgba(218, 223, 0, 1) 100%);
  background : -webkit-gradient(linear,-11.45% 7.85% ,111.45% 92.15% ,color-stop(0,rgba(30, 170, 57, 1) ),color-stop(0.5,rgba(141, 194, 31, 1) ),color-stop(1,rgba(218, 223, 0, 1) ));
  background : -o-linear-gradient(-45deg, rgba(30, 170, 57, 1) 0%, rgba(141, 194, 31, 1) 50%, rgba(218, 223, 0, 1) 100%);
  background : -ms-linear-gradient(-45deg, rgba(30, 170, 57, 1) 0%, rgba(141, 194, 31, 1) 50%, rgba(218, 223, 0, 1) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#1EAA39', endColorstr='#DADF00' ,GradientType=0)";
  background : linear-gradient(135deg, rgba(30, 170, 57, 1) 0%, rgba(141, 194, 31, 1) 50%, rgba(218, 223, 0, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1EAA39',endColorstr='#DADF00' , GradientType=1);
  position: relative;
  z-index: -1;
}

.ill-box {
  position: absolute;
  z-index: -1;
  height: 150px;
  pointer-events: none;
}
.ill-box img {
  height: 100%;
}


.ill-01 {
  top: 2%;
  left: 2%;
}

.ill-02 {
  top: 12%;
  right: 2%;
}

.ill-03 {
  top: 47%;
  left: 2%;
}

.ill-04 {
  top: 52%;
  right: 2%;
}

.ill-05 {
  top: 80%;
  left: 2%;
}

.ill-06 {
  bottom: 2%;
  right: 2%;
}

@media screen and (max-width:768px) {
  
.ill-box {
  height: 100px;
}
}

.feature-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
}

.feature-box:first-of-type {
  margin-bottom: 80px;
}

.feature-box:nth-of-type(2n) {
  flex-direction: row-reverse;
}

.feature-box figure,
.feature-box-text {
  width: 50%;
}

.feature-box figure img {
  object-fit: cover;
}

.feature-box-text p {
  margin-bottom: 30px;
}

.feature-box figure img {
  width: 100%;
  object-fit: cover;
  height: 400px;
}

.feature-box-text {
  text-align: left;
  padding: 0 20px;
  height: 400px;
  background-color:#fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 60px;
}

.feature-box-text ul li {
  list-style-type: disc;
  margin:5px auto 10px 25px;
} 


.feature-box-text h3 {
  font-size: 2.4rem;
  border-bottom:#dadf00 solid 2px ;
  margin-bottom: 20px;
}
.feature-box-text .u-marker {
  width: -moz-fit-content;
  width: fit-content;
  background-image: linear-gradient(rgba(0 0 0 / 0) 80%, #ffffff29 80%);
}

@media screen and (max-width: 768px) {

  .feature-box,
  .feature-box:nth-of-type(2n) {
    flex-direction: column;
  }

  .feature-box figure {
    width: 100%;
    margin: 0 0 -10px 0;
  }

  .feature-box-text {
    width: 100%;
    margin: 0;
  }

  .feature-box-text {
    height: auto;
    padding: 40px 20px;
  }

  .feature-box figure img {
    height: auto;
  }
}

.support-program {
  padding: 50px 0;
}
.support-program-container {
  width: 100%;
  margin-top: 30px;
}

.support-program-container img {
width: 100%;
height: 100%;
}

.support-program-container-notes {
margin-top: 24px;
}

@media (width <= 767.98px) {
  .support-program-container {
    width: 100%;
    overflow-x: scroll;
  }
  
  .support-program-container img {
  width: 1000px;
  height: 100%;
  }
  
}

.information {
  padding: 50px 0;
}

.company-profile {
  width: 100%;
    border-collapse: collapse;
    margin: 30px auto;
  }
  
  .company-profile th,
  .company-profile td {
  border: 1px solid #ccc;
  padding: 20px;
  }
  
  .company-profile th {
  font-weight: bold;
  background-color: #f4f4f4; 
  width: 30%;
  }
  
  .company-profile td {
    width: 70%;
  }

  @media screen and (max-width: 768px) {
  .company-profile,
  .company-profile tr,
  .company-profile td,
  .company-profile th {
  display:inline-block;
  width:100%;
  }
  }

  
  .info-map {
    margin-top: 4px;
    margin-bottom: 24px;
  }

  .info-map iframe {
    width: 100%;
    aspect-ratio: 16/9;
  }


  @media screen and (max-width: 768px) {
    .info-map iframe {
      width: 100%;
      aspect-ratio: 1/1;
    }
    }

/* index main end */

/* schedule.html */
.sub-v {
  height: 500px;
  position: relative;
}

.schedule-mv {
  background: url(../img/flow_mv.jpg)no-repeat;
  background-position: center;
  background-size: cover;
}

.aboutuse-mv {
  background: url(../img/price_mv.jpg)no-repeat;
  background-position: center;
  background-size: cover;
}

.company-mv {
  background: url(../img/company_mv.jpg)no-repeat;
  background-position: center;
  background-size: cover;
}

.contact-mv {
  background: url(../img/contact_mv.jpg)no-repeat;
  background-position: center;
  background-size: cover;
}


.sub-title {
  position:absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 2.6rem;
  width: 100%;
  text-align: center;
  background : -moz-linear-gradient(-11.45% 7.85% -45deg,rgba(30, 170, 57, .8) 0%,rgba(141, 194, 31, .8) 50%,rgba(218, 223, 0, .8) 100%);
  background : -webkit-linear-gradient(-45deg, rgba(30, 170, 57, .8) 0%, rgba(141, 194, 31, .8) 50%, rgba(218, 223, 0, .8) 100%);
  background : -webkit-gradient(linear,-11.45% 7.85% ,111.45% 92.15% ,color-stop(0,rgba(30, 170, 57, .8) ),color-stop(0.5,rgba(141, 194, 31, .8) ),color-stop(1,rgba(218, 223, 0, .8) ));
  background : -o-linear-gradient(-45deg, rgba(30, 170, 57, .8) 0%, rgba(141, 194, 31, .8) 50%, rgba(218, 223, 0, .8) 100%);
  background : -ms-linear-gradient(-45deg, rgba(30, 170, 57, .8) 0%, rgba(141, 194, 31, .8) 50%, rgba(218, 223, 0, .8) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#1EAA39', endColorstr='#DADF00' ,GradientType=0)";
  background : linear-gradient(135deg, rgba(30, 170, 57, .8) 0%, rgba(141, 194, 31, .8) 50%, rgba(218, 223, 0, .8) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1EAA39',endColorstr='#DADF00' , GradientType=1);
  color: #fff;
  padding: 20px 0;
}



@media screen and (max-width:768px) {
  .sub-title {
    top:56%;

  }
}

.day-schedule {
  padding: 50px 0;
}

.day-schedule__table {
  width: 100%;
    border-collapse: collapse;
    margin: 30px auto 50px;
  }
  
  .day-schedule__table th,
  .day-schedule__table td {
  border: 1px solid #ccc;
  padding: 20px;
  }
  
  .day-schedule__table th {
  font-weight: bold;
  background-color: #8dc21f; 
  color: #fff;
  width: 25%;
  }

  .day-schedule__table td {
    width: 75%;
  }

  .day-schedule h3::first-letter {
    font-size: 1.5em;
    color: #1eaa39;
  }
  
  /* @media screen and (max-width: 768px) {
  .day-schedule__table,
  .day-schedule__table tr,
  .day-schedule__table td,
  .day-schedule__table th {
  display:inline-block;
  width:100%;
  }
  } */

.sub-page {
  padding: 50px 0;
}

/* aboutuse */
.flow {
  padding: 50px 0;
}

.flow-img {
  width: 90%;
  max-width: 800px;
  margin: 30px auto;
}

.flow-img img{
  pointer-events: none;
  width: 100%;
  filter:drop-shadow(0px 3px 3px rgba(212, 212, 212, 1));
}

@media screen and (max-width:599px) {
  .flow-img {
    width: 100%;
    max-width: none;  }
}

.price {
  padding: 50px 0;
}

/* price-table */
.price table{
  border-collapse: collapse;
  width: 100%;
  margin: 30px auto;
}
.tb01 th,
.tb01 td{
  padding: 30px;
  border: solid 1px #9FA0A0;
  text-align:left;
  box-sizing:border-box;
}
.tb01 th {
  background: #8dc21f;
  color: #fff;
  font-size: 1.7rem;
  text-align: center;
}

.tb01 td {
  font-size: 1.8rem;
}

.tb01 tr:nth-child(2) td,
.tb01 tr:nth-child(4) td {
  background-color: #8cc21f1e;
}


@media screen and (max-width: 640px) {
  .tb01 .head{
    display:none;
  }

  .tb01 th,
.tb01 td{
  padding: 20px;
  text-align:center;
}
  .tb01 {
    width: 100%;
  }
  table.tb01 td {
    display: block;
    width: 100%;
    border-bottom:none;
    font-size: 1.7rem;
  }
  table.tb01 td:first-child{
    background: #8dc21f;
    color:#fff;
    font-weight:bold;
    font-size: 1.6rem;
  }
  

  table.tb01 td:before{
    content: attr(data-label);
    font-size: .9rem;
    font-weight:bold;
    color: #616161;
    display: block;
  }
  .tb01 tr:last-child{
    border-bottom: solid 1px #9FA0A0;
  }
}
/* price-table end */
/* aboutuse end */

/* company */
.company .greeting-concept__txt-box p {
  text-align: left;
}

.daihyou {
  text-align: right;
  font-size: 1.2em;
}
/* company end */
/* section.contact */

.mailform {
  padding: 50px 0;
}


.form-container {
  width: 90%;
  max-width: 900px;
  margin: 30px auto 0;
}

#formWrap {
  width: 100%;
  margin: 0 auto;
  line-height: 120%;
  font-size: 90%;
  text-align: left;
}

table.formTable {
  width: 100%;
  margin: 0 auto 20px;
  border-collapse: collapse;
}


table.formTable td, table.formTable th {
  /* border:1px solid #ccc; */
  padding: 7px;
  border: solid 1px #e0e0e0;
}

table.formTable td {
  background-color: rgba(255,255,255,.8);
}


table.formTable th {
  width: 40%;
  font-weight: 600;
  /* background:#4ba8de; */
  color: #120d0b;
  vertical-align: middle;
  text-align: left;
  background-color:#f4f4f4;
  padding-left: 15px;
}


.formTable .caution-text {
  color: #e95133;
  font-size: 1.3rem;
}
table.formTable textarea {
  width: 100%;
  border: none;
  box-shadow: 0 0 0 1px #ccc inset;
  background-color: #fff;
}


.contact-button {
  display: inline-block;
  border-radius: 5%;
  /* 角丸    */
  font-weight: 700;
  font-size: 16px;
  /* 文字サイズ */
  text-align: center;
  /* 文字位置   */
  cursor: pointer;
  /* カーソル   */
  padding: 12px 12px;
  /* 余白       */
background-color: #e95133;/* 背景色     */
  color: #ffffff;
  /* 文字色     */
  line-height: 1em;
  /* 1行の高さ  */
  transition: .3s;
  /* なめらか変化 */
  box-shadow: 2px 2px 0px #dcdddd;
  /* 影の設定 */
  /* 枠の指定 */
  width: 100%;
  max-width: 150px;
  border: #e95133 solid 2px;
}

.contact-button:hover {
  box-shadow: none;
  /* カーソル時の影消去 */
  color: #e95133 ;
  /* 背景色     */
  background: #ffffff;
  border:#e95133 solid 2px;
  /* 文字色     */
}

.reset-button {
  background: #fff;
  /* 背景色     */
  color: #e95133;
  /* 文字色     */
}

.reset-button:hover {
  box-shadow: none;
  /* カーソル時の影消去 */
  color: #fff;
  /* 背景色     */
  background: #e95133;
  /* 文字色     */
}


.button-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.button-wrapper input {
  margin-bottom: 20px;
}


.m-form-text {
  height: 2.4em;
  width: 100%;
  padding: 0 16px;
  border: none;
  box-shadow: 0 0 0 1px #ccc;
  background-color: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.m-form-text:hover,
.m-form-textarea:hover {
  background-color: rgba(33, 150, 243,.1) ;
}

.m-form-text:focus,
.m-form-textarea:focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
}



.button {
  display: inline-block;
  border-radius: 5%;
  /* 角丸       */
  font-size: 12pt;
  /* 文字サイズ */
  text-align: center;
  /* 文字位置   */
  cursor: pointer;
  /* カーソル   */
  padding: 10px 25px;
  /* 余白       */
  background: #333333;
  /* 背景色     */
  color: #ffffff;
  /* 文字色     */
  line-height: 1em;
  /* 1行の高さ  */
  transition: .3s;
  /* なめらか変化 */
  box-shadow: 1px 1px #666666;
  /* 影の設定 */
  border: 1px solid #333333;
  /* 枠の指定 */
}

.button:hover {
  box-shadow: none;
  /* カーソル時の影消去 */
  color: #333333;
  /* 背景色     */
  background: #ffffff;
  /* 文字色     */
}

/* ラジオボタン */
input[type="radio"] {
  margin-left: 20px;
}
.radio-box-p {
  display: flex;
  justify-content: space-between;
  max-width: 400px;
}
@media screen and (max-width:768px) {
  .radio-box-p {
    display:block;
  }
}

/* セレクト */
select {
  padding: 5px 16px;
  border: none;
  box-shadow: 0 0 0 1px #ccc inset;
  color: #555;
}

/* カレンダー選択 */
input[type="date"] {
  width: 150px;
  position: relative;
  height: 2.4em;
  padding: 0 16px;
  border: none;
  box-shadow: 0 0 0 1px #ccc inset;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 5px 20px 5px 0;
}
input[type="date"]::-webkit-inner-spin-button {
  appearance: none;
}
input[type="date"]::-webkit-clear-button {
  appearance: none;
}

input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}

input[type="date"]:focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
}
.form-flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 10px;
  width: 70%;
  max-width: 250px;
  margin: 0 0 auto 0;
}

.select-box{
  width: 150px;
  height: 2.4em;
  border: none;
  box-shadow: 0 0 0 1px #ccc inset;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 5px 20px 5px 0;
}
.select-box select {
  text-align: center;
}

@media screen and (max-width:599px) {

  .form-container {
    width: 100%;
    max-width: none;
    margin: 30px auto;
  }

  #formWrap {
    width: 95%;
    margin: 0 auto;
  }

  table.formTable th, table.formTable td {
    width: auto;
    display: block;
  }

  table.formTable th {
    border-bottom: 0;
    padding: 10px;
    
  }

  input[type="text"], textarea {
    width: 100%;
    padding: 5px;
    font-size: 110%;
    display: block;
  }

  input[type="submit"], input[type="reset"], input[type="button"] {
    /* display:block; */
    height: 40px;
  }

}

@media screen and (min-width:901px) {
  .form-sp {
    display: none;
  }
}

@media screen and (max-width:900px) {
  .form-sp {
    display: block;
  }
}

/* section.mailform end */


/* footer */
.g-footer {
  background : -moz-linear-gradient(-11.45% 7.85% -45deg,rgba(30, 170, 57, 1) 0%,rgba(141, 194, 31, 1) 50%,rgba(218, 223, 0, 1) 100%);
  background : -webkit-linear-gradient(-45deg, rgba(30, 170, 57, 1) 0%, rgba(141, 194, 31, 1) 50%, rgba(218, 223, 0, 1) 100%);
  background : -webkit-gradient(linear,-11.45% 7.85% ,111.45% 92.15% ,color-stop(0,rgba(30, 170, 57, 1) ),color-stop(0.5,rgba(141, 194, 31, 1) ),color-stop(1,rgba(218, 223, 0, 1) ));
  background : -o-linear-gradient(-45deg, rgba(30, 170, 57, 1) 0%, rgba(141, 194, 31, 1) 50%, rgba(218, 223, 0, 1) 100%);
  background : -ms-linear-gradient(-45deg, rgba(30, 170, 57, 1) 0%, rgba(141, 194, 31, 1) 50%, rgba(218, 223, 0, 1) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#1EAA39', endColorstr='#DADF00' ,GradientType=0)";
  background : linear-gradient(135deg, rgba(30, 170, 57, 1) 0%, rgba(141, 194, 31, 1) 50%, rgba(218, 223, 0, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1EAA39',endColorstr='#DADF00' , GradientType=1);
  padding: 50px 0 10px;
  position: relative;
}

.g-footer .ill-box {
  z-index: 1;
  height: 100px;
}
 
.g-footer .ill-02 {
  top: 12%;
  left: 2%;
}

.g-footer .ill-03 {
  top: 47%;
  left: 45%;
}

.g-footer .ill-04 {
  top: 22%;
  right: 2%;
}


.g-footer--flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 50px auto;

}

.g-footer__nav__list li {
  margin: 10px 0;
}

.g-footer__nav__list li a {
  color: #fff;
  position: relative;
}

.g-footer__nav__list li a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 4px;
  background-color: #fff;
  bottom: 0;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform .1s ease-in-out;
}

.g-footer__nav__list li a:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}


.g-footer__info p {
  color: #fff;
}


.g-footer__logo {
  width: 90%;
  max-width: 200px;
  margin: 10px auto;
}

.g-footer__logo img {
  width: 100%;
  filter: drop-shadow(0px 0px 2px );
}

.g-footer small {
  text-align: center;
  display: block;
  color: #fff;
}

@media screen and (max-width:768px) {
  .g-footer {
    padding: 30px 0 10px;
  }
  .g-footer .ill-box {
    z-index: 1;
    height: 70px;
  }

  .g-footer .ill-02 {
    top: 12%;
    left: 2%;
  }
  
  .g-footer .ill-03 {
    top: 70%;
    left: 5%;
  }
  
  .g-footer .ill-04 {
    top: 22%;
    right: 2%;
  }

  .g-footer--flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 10px auto;
    text-align: center
  }

  .g-footer__nav__list li {
    margin: 10px 0;
  }

  .g-footer__nav__list li a {
    position: relative;
    ;
  }


  .g-footer__nav__list li a:hover::before {
    transform-origin: left;
    transform: scaleX(1);
  }




  .g-footer__logo {
    width: 90%;
    margin: 10px auto;
  }

  .g-footer__logo img {
    width: 100%;
  }

  .g-footer small {
    text-align: center;
    display: block;
  }
}
/* footer end */

/* footer_button */
@media screen and (min-width:769px) {
  #footer__button {
    display: none;
  }
}
@media screen and (max-width:768px) {
  .is-hidden {
    visibility: hidden;
    transition: .2s;
    opacity: 0;
  }
  
  #footer__button {
    display: block;
    transition: .2s;
    z-index: 9998;
    position: fixed;
  width: 100%;
  background : -moz-linear-gradient(-11.45% 7.85% -45deg,rgba(30, 170, 57, 1) 0%,rgba(141, 194, 31, 1) 50%,rgba(218, 223, 0, 1) 100%);
  background : -webkit-linear-gradient(-45deg, rgba(30, 170, 57, 1) 0%, rgba(141, 194, 31, 1) 50%, rgba(218, 223, 0, 1) 100%);
  background : -webkit-gradient(linear,-11.45% 7.85% ,111.45% 92.15% ,color-stop(0,rgba(30, 170, 57, 1) ),color-stop(0.5,rgba(141, 194, 31, 1) ),color-stop(1,rgba(218, 223, 0, 1) ));
  background : -o-linear-gradient(-45deg, rgba(30, 170, 57, 1) 0%, rgba(141, 194, 31, 1) 50%, rgba(218, 223, 0, 1) 100%);
  background : -ms-linear-gradient(-45deg, rgba(30, 170, 57, 1) 0%, rgba(141, 194, 31, 1) 50%, rgba(218, 223, 0, 1) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#1EAA39', endColorstr='#DADF00' ,GradientType=0)";
  background : linear-gradient(135deg, rgba(30, 170, 57, 1) 0%, rgba(141, 194, 31, 1) 50%, rgba(218, 223, 0, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1EAA39',endColorstr='#DADF00' , GradientType=1);
    font-size: 1.5rem;
    padding: 3px 5px;
    text-align: center;
  }
  #footer__button span {
    font-weight: 400;
    font-size: 1.8rem;
  }
  #footer__button a {
    color: #fff;
    display: block;
  }

.footer__button__img {
  position: absolute;
  bottom: 5px;
  height: 80px;
}

.footer__button__img img {
  height: 100%;
}

.footer__button__img--left {
  left: 3px;
}

.footer__button__img--right {
  right: 3px;
}


  
  /* footer__button end */
}

/* footer_button end */


/* footer end */
.evaluation-list {
  padding: 30px 0 30px 25px;
}
.evaluation-item {
  list-style-type: disc;
  margin: 5px 0;
  a {
    text-decoration: underline;
    color: #120d0b;
  }
}


/* pc,sp切替 */
@media screen and (min-width:769px) {
  .pc {
    display:block;
  }
  .sp {
    display:none;
  }
}

@media screen and (max-width:768px) {
  .pc {
    display:none;
  }
  .sp {
    display:block;
  }
}

@media screen and (min-width:600px) {
  .min600 {
    display:block;
  }
  .max599 {
    display: none;
  }
}

@media screen and (max-width:599px) {
  .min600 {
    display:none;
  }
  .max599 {
    display:block;
  }
}