@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.ttf') format('truetype');
}

@font-face {
  font-family: 'vdlmaru';
  src: url('../font/vdl_maru.ttf') format('truetype');
}

@font-face {
  font-family: 'minion';
  src: url('../font/minion.ttf') format('truetype');
}

body {
  background-color: #fff;
  color: #231815;
  font-size: 1.6rem;
  font-family: 'kakugo';
  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;
}

/* -------------------------- */
/*========= nav ===============*/


#top-head {
  width: 100%;
  height: 50px;
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  position: fixed;
  z-index: 998;
  transition: .2s;
  border-top: #92C41D solid 12px;
}

#top-head .inner {
  width: 95%;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  display: flex;
  justify-content: center;
  align-items: top;
}

.header-logo a {
  font-size: 1.4rem;
  border: #92C41D solid 1px;
  border-top: none;
  margin-top: -2px;
  border-radius: 0 0 10px 10px;
  color: #231815;
  padding: 3px 5px 3px 5px;
  background-color: #fff;
}

.header-logo a span {
  font-size: 1.8rem;
  padding: 0 5px;
}

#g-nav ul {
  display: flex;
  list-style-type: none;
  align-items: center;
}

#g-nav li a {
  color: #231815;
  font-size: 1.8rem;
  border: #92C41D solid 1px;
  border-top: none;
  border-radius: 0 0 10px 10px;
  color: #231815;
  padding: 3px 5px 3px 5px;
  margin-top: -1px;
  margin-left: 2vw;
  transition: .2s;
  background-color: #fff;
}

#g-nav li a:hover {
  background-color: #92C41D;
  color: #fff;
}

#g-nav .contact a {
background-color: #92C41D;
color: #fff;
}

#g-nav .contact a:hover {
  background-color: #00913A;
}

#top-head.midori {
  border-top: #00913A solid 12px;

}


.openbtn {
  display: none;
}

.circle-bg {
  display: none;
}

.nav-logo {
  display: none;
}

.nav-sp {
  display: none;
}

@media screen and (max-width:768px) {
  #top-head .inner {
    width: 100%;
  }

  .header-logo {
position:absolute;
top: 0px;
left: 0px;
  }

.header-logo a {
border-radius: 0 0 10px 0;
font-size: 1.3rem;
text-align: center;
margin-top: 0px;
}

.header-logo a span {
  font-size: 1.7rem;
  padding: 0px;
}

.nav-sp {
  display: block;
}

#g-nav.panelactive{
    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(146,196,29,.97);
	transform: scale(0);
	right:-50px;
    top:-50px;
    transition: all .6s;
}

.circle-bg.circleactive{
	transform: scale(50);
}

/*nav内縦スクロール*/
#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;
    position: absolute;
    z-index: 999;
    top:49%;
    left:50%;
    transform: translate(-50%,-50%);
}

#g-nav.panelactive ul {
    opacity:1;
}

#g-nav.panelactive ul li{
animation-name:gnaviAnime;
animation-duration:1s;
animation-delay:.3s;
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{
	color: #fff;
  border-left: none;
  border-right: none;
  border-bottom: #fff dashed 1px;
  background-color: rgba(0, 0, 0, 0);
  margin: 20px auto;
  border-radius: 0;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
  font-size: 1.8rem;
}

#g-nav .contact a {
  border: none;
  background-color: #00913A;
  border-radius: 10px;
}

.nav-logo {
  display: block;
  width: 140px;
}
.nav-logo img{
  width: 100%;
  margin: 0 auto;
}

/*========= nav btn ===============*/
.openbtn{
  display: inline-block;
	position:fixed;
	top:10px;
	right: 0px;
	z-index: 9999;
	cursor: pointer;
    width: 60px;
    height:60px;
    background-color: #92C41D;
    border-radius: 0 0 0 10px ;
}
	
/*×*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 16px;
    height: 3px;
    border-radius: 2px;
	background-color: #fff;
  	width: 48%;
  }

.openbtn span:nth-of-type(1) {
	top:17px;	
}

.openbtn span:nth-of-type(2) {
	top:25px;
}

.openbtn span:nth-of-type(3) {
	top:33px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 48%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 48%;
}
}


/* 共通 */
.a-container {
  width: 90%;
  max-width: 1130px;
  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;
}

.cando-list .flex-b  {
  gap: 20px;
  margin: 25px auto;
}

@media screen and (max-width:768px) {
  
.flex-a {
  display:block;
}

.flex-b {
  display:block;
}

.flex-c {
  display:block;
}

.cando-list .flex-b {
  gap: 0;
  margin: 40px auto;
}
}


/* 共通 end */
/* -------------------------------- */
/* index.html */
/* main-v */
.main-v {
  width: 100%;
  position: relative;
}

.main-v img {
  width: 100%;
}

.circle-button-left,
.circle-button-right {
  background-color: #22ac38;
  border-radius: 50%;
  border: #fff solid 2px;
  width: 140px;
  height: 140px;
  position: absolute;
  bottom: 28px;
}

.circle-button-left a,
.circle-button-right a {
  display: block;
  text-align: center;
  line-height: 140px;
  color: #fff;
  font-family:'vdlmaru';
  font-size: 2.3rem;
  transition: .2s;
}

.circle-button-left a:hover,
.circle-button-right a:hover {
 transform: scale(1.05,1.05);
}

.circle-button-right {
  right: 10%;
}
.circle-button-left {
  left: 10%;
}

@media screen and (max-width:599px) {
  .circle-button-left,
.circle-button-right {
  width: 120px;
  height: 120px;
}

.circle-button-left a,
.circle-button-right a {
  line-height: 120px;
  font-size: 2rem;
}

.circle-button-right {
  right: 8%;
}
.circle-button-left {
  left: 8%;
}
}

@media screen and (max-width:428px) {
  .circle-button-left,
.circle-button-right {
  width: 100px;
  height: 100px;
}

.circle-button-left a,
.circle-button-right a {
  line-height: 100px;
  font-size: 1.6rem;
}

.circle-button-right {
  right: 3%;
}
.circle-button-left {
  left: 3%;
}
}
/* main-v end */

/* main */

.top-page {
  background: url(../img/top_bg.png) repeat-y;
  background-position: top;
  background-size: 100%;
  padding: 70px 0 50px 0;
}



.cando h2{
  font-size: 3.3rem;
  text-align: center;
}

.cando-list {
  padding-top: 25px;
}

.cando-head-box {
  width: 50%;
  height: 220px;
  position: relative;
  padding: 20px;
  border: #92C41D solid 2px;
}
.cando-head-box h3 {
  color: #fff;
  font-size: 2.3rem;
  text-align: center;
  width: 80%;
  margin: 0 auto;
}
.cando-list .flex-b:nth-child(2n) .cando-head-box h3 {
  color: #231815;
}

.head-number {
  font-family: 'minion';
  font-weight: 700;
  background-color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: block;
  font-size: 4.7rem;
  text-align: center;
  line-height: 55px;
  position: absolute;
  top:20px;
  left: 20px;
  color: #92C41D;
}
@media screen and (max-width:1366px) {
  .head-number {
    width: 4vw;
    height: 4vw;
    line-height: 4vw;
    font-size: 2.9vw;
  }
}

.cando-list .flex-b:nth-child(2n) .cando-head-box .head-number {
  background-color: #92C41D;
  color: #fff;
}

.cando-sub-box {  
  width: 50%;
  height: 220px;
  background-color: #fff;
  border: #92C41D solid 2px;
  padding: 20px;
  display: grid;
  place-items: center start;
}

.cando-sub-box ul li {
  padding-left: 1em;
  text-indent: -1.1em;
  margin: 10px 0;
}

.cando-list .flex-b:nth-child(2n) .cando-sub-box {
  background-color: #92C41D;
  border: #92C41D solid 2px;
  color: #fff;
}

.cando-list .flex-b:last-child .cando-sub-box {
  background:url(../img/cando_05_2.png)no-repeat;
  background-size: contain;
  background-position: bottom;

}

.cando-sub-box ul li::before {
  content:"▶︎";
}

.cando-head-box:first-child {
  background: url(../img/cando_01.png)no-repeat;
  background-size: contain;
  background-color: #92C41D;
  background-position: bottom;
}


.cando-list .flex-b:nth-child(2) .cando-head-box{
  background: url(../img/cando_02.png)no-repeat;
  background-size: contain;
  background-color: #fff;
  background-position: bottom;
  border: #92C41D solid 2px;
}

.cando-list .flex-b:nth-child(3) .cando-head-box{
  background: url(../img/cando_03.png)no-repeat;
  background-size: contain;
  background-color: #92C41D;
  background-position: bottom;
  border: #92C41D solid 2px;
}

.cando-list .flex-b:nth-child(4) .cando-head-box{
  background: url(../img/cando_04.png)no-repeat;
  background-size: contain;
  background-color: #fff;
  background-position: bottom;
  border: #92C41D solid 2px;
}

.cando-list .flex-b:last-child .cando-head-box{
  background: url(../img/cando_05.png)no-repeat;
  background-size: contain;
  background-color: #92C41D;
  background-position: bottom;
  border: #92C41D solid 2px;
}

@media screen and (max-width:768px) {
  .cando h2{
    font-size: 4.5vw;
    text-align: center;
  }

  .cando-head-box{
    width: 100%;
    height: 220px;
  }

  .cando-sub-box {
    width: 100%;
    height: auto;
  }

  .cando-list .flex-b:nth-child(2n) .cando-sub-box {
    background-color: #fff;
    border: #92C41D solid 2px;
    color: #231815;
  }

  .cando-list .flex-b:nth-child(2n) .cando-head-box{
    background-color: #92C41D;
  }

  .cando-head-box h3,
  .cando-list .flex-b:nth-child(2n) .cando-head-box h3 {
    color: #fff;
    font-size: 2.1rem;
    width: 90%;
    margin: 20px auto 0;
  }

  .head-number,
  .cando-list .flex-b:nth-child(2n) .cando-head-box .head-number {
    background-color: #fff;
    width: 48px;
    height: 48px;
    font-size: 3.9rem;
    line-height: 48px;
    top:-25px;
    left: 50%;
    transform: translateX(-50%);
    color: #92C41D;
    border:#92C41D solid 2px ;
  }

}

@media screen and (max-width:428px) {
  .cando h2{
    font-size: 5.4vw;
    text-align: center;
  }
}

.photo {
  padding: 50px 0;
}

.photo .flex-b {
  gap: 20px;
}

.photo-ch {
  width: calc(100%/3);
}

.photo-ch img {
  width: 100%;
  pointer-events: none;
}

@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;
  }
}
/* index main end */

/* greeting.html */
.greeting-page {
  background: url(../img/greeting_bg.png) repeat-y;
  background-position: top;
  background-size: 100%;
  padding: 70px 0  0;
}

/* あいさつ可変 */
.greeting-top {
  width: 80%;
  max-width: 1130px;
  margin: 0 auto;
padding: 150px 0 50px 0;
}

.greeting-top-ch {
  background: url(../img/greeting-frame.png) no-repeat;
  background-size: cover;
  height: 670px;
  background-position: top;
  z-index: -2;
}

.daihyo-img {
  width: 12vw;
}

.daihyo-img img {
  width: 100%;
  pointer-events: none;
}

.greeting-top-gch {
  padding: 80px 80px 30px 80px;
}

.greeting-top-ch h2 {
  font-size: 3rem;
}

.greeting-top-txt {
  width:80%;
  max-width: 900px;
margin: 0 auto;
}

.greeting-top-txt p {
  text-align: left;
}


@media screen and (max-width:768px) {
  .greeting-top {
  padding: 100px 0 50px 0;
  width: 100%;
  max-width: none;
  }
  .greeting-top-ch {
    background-size: cover;
    height: 1000px;
  }
  .greeting-top-ch h2 {
    font-size: 2.3rem;
    text-align: center;
  }
  .daihyo-img {
    width: 220px;
    margin:0 auto;
  }
}

@media screen and (max-width:599px) {
  .greeting-top {
  padding: 100px 0 50px 0;
  }
  .greeting-top-gch {
    padding: 100px 30px 30px 30px;
  }
  .greeting-top-ch {
    background-size: cover;
    height: 1000px;
  }
  .greeting-top-ch h2 {
    font-size: 2rem;
    text-align: center;
  }
  .daihyo-img {
    width: 180px;
    margin:0 auto;
  }
}

@media screen and (max-width:480px) {

  .greeting-top-gch {
    padding: 130px 10px 10px 10px;
  }
  .greeting-top-ch {
    background-size: cover;
    height: 1150px;
  }
  .greeting-top-ch h2 {
    font-size: 2rem;
    text-align: center;
  }
  .daihyo-img {
    width: 180px;
    margin:0 auto;
  }
}

/* あいさつ可変end */

.concept {
  padding: 100px 0;
  position: relative;
}

.circle-img-1,
.circle-img-2,
.circle-img-3 {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.circle-img-1 {
  max-width: 280px;
  width: 18vw;
top: 0;
left: 5%;
}

.circle-img-2 {
  max-width: 240px;
  width: 18vw;
top: 0;
right: 5%;
}

.circle-img-3 {
  max-width: 200px;
  width: 18vw;
top: 10%;
right: 25%;
}


.concept-box {
  text-align: center;
  width: 90%;
  max-width: 600px;
  margin-left: 100px;
  margin-right: auto;
  position: relative;
  z-index: 3;
}

.concept-box h2 img {
  width: 90%;
  max-width: 320px;
  pointer-events: none;
}

.concept-box h3 {
  font-size: 2.4rem;
  margin: 25px 0;
}

.concept-box h3 span {
  display: inline-block;
}

.concept-box .txt-box p {
  text-align: center;
  line-height: 2.25;
}

.tree {
  position: absolute;
  bottom: 0;
  right: 5%;
  width: 40%;
  max-width: 250px;
  pointer-events: none;
}

@media screen and (max-width:768px) {
  .concept-box h3 {
    font-size: 2.1rem;
    margin: 15px 0;
  }
.concept-box {
  text-align: center;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 3;
}
.concept-box .txt-box p {
  text-align: center;
  font-size: 1.6rem;
  line-height: 2.25;
}
}
/* greeting.html end */

/* price.html */
.price {
padding: 150px 0 50px 0;
}

.price h3 {
  margin-top: 40px;
}


/* price-table */
table{
  border-collapse: collapse;
  width: 100%;
}
.tb01 th,
.tb01 td{
  padding: 30px;
  border: solid 1px #9FA0A0;
  text-align:left;
  box-sizing:border-box;
}
.tb01 th {
  background: #C6D668;
  color: #00913A;
  font-size: 1.6rem;
  text-align: center;
}

.tb01 td {
  font-size: 1.8rem;
}

.tb01 tr:nth-child(2) td,
.tb01 tr:nth-child(4) td {
  background-color: rgba(198, 214, 104, .5);
}

.usuimidori {
  background-color: rgba(198, 214, 104, .5);
}
@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: #C6D668;
    color:#00913A;
    font-weight:bold;
    font-size: 1.6rem;
  }

  table.tb01 td:first-child.usuimidori {
    background-color: rgba(198, 214, 104, .5);
    color: #231815;
  }
  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 */

.price-page {
  background: url(../img/price_bg.png) repeat-y;
  background-position: top;
  background-size: 100%;
  padding: 0;
}
@media screen and (max-width:768px) {
  
.price-page {
  background: url(../img/price_bg_sp.png) repeat-y;
  background-position: top;
  background-size: 100%;
  padding: 0;
}

.other-price  h3 {
  font-size: 2rem;
}

.other-price ul li {
  text-indent: -.7em;
  padding-left: 2em;
  font-size: 1.8rem;
}
}

.other-price {
  padding-bottom: 50px;
}

.other-price  h3 {
  font-size: 2rem;
}

.other-price ul li {
  text-indent: -.7em;
  padding-left: 2em;
  font-size: 1.8rem;
}

.other-price ul li::before {
  display: inline-block;
  content:"※";
  padding-right: 5px;
}

@media screen and (max-width:768px) {
  
  .price-page {
    background: url(../img/price_bg_sp.png) repeat-y;
    background-position: top;
    background-size: 100%;
    padding: 0;
  }
  
  .other-price  h3 {
    font-size: 1.8rem;
  }
  
  .other-price ul li {
    font-size: 1.6rem;
  }
  }
  /* price.html end */

  /* contact.html */
  .contact-page {
    background: url(../img/contact_bg.png) repeat-y;
    background-position: top;
    background-size: 100%;
    padding: 70px 0 50px 0;
  }
  
.mailform {
  padding: 150px 0 50px 0;
}
.contact-form-parts {
  margin-top: 30px;
  padding: 0;
}

.mailform h2 {
  font-size: 2rem;
  text-align: center;
}

.form-container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

#formWrap {
  width: 100%;
  margin: 0 auto;
  color: #555;
  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 #9FA0A0;
}

table.formTable td {
  background-color: rgba(255,255,255,.8);
}


table.formTable th {
  width: 40%;
  font-weight: 700;
  /* background:#4ba8de; */
  color: #231815;
  vertical-align: middle;
  text-align: left;
  background-color: rgba(198, 214, 104, .9);
  padding-left: 15px;
}


.formTable .caution-text {
  color: #22AC38;
  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: #22ac38;/* 背景色     */
  color: #ffffff;
  /* 文字色     */
  line-height: 1em;
  /* 1行の高さ  */
  transition: .3s;
  /* なめらか変化 */
  box-shadow: 2px 2px 0px #dcdddd;
  /* 影の設定 */
  /* 枠の指定 */
  width: 100%;
  max-width: 150px;
  border: #22ac38 solid 2px;
}

.contact-button:hover {
  box-shadow: none;
  /* カーソル時の影消去 */
  color: #22ac38 ;
  /* 背景色     */
  background: #ffffff;
  border:#22ac38 solid 2px;
  /* 文字色     */
}

.reset-button {
  background: #fff;
  /* 背景色     */
  color: #22ac38;
  /* 文字色     */
}

.reset-button:hover {
  box-shadow: none;
  /* カーソル時の影消去 */
  color: #fff;
  /* 背景色     */
  background: #22ac38;
  /* 文字色     */
}


.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"],
input[type="time"] {
  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,
input[type="time"]::-webkit-inner-spin-button{
  appearance: none;
}
input[type="date"]::-webkit-clear-button,
input[type="time"]::-webkit-clear-button{
  appearance: none;
}

input[type=date]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}

input[type="date"]:focus,
input[type="time"]:focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
}

@media screen and (max-width:599px) {

  .form-container {
    width: 100%;
    max-width: none;
    margin: 0 auto;
  }

  .mailform h2 {
    font-size: 1.6rem;
    text-align: left;
    width: 90%;
    margin: 0 auto;
  }
  #formWrap {
    width: 90%;
    margin: 0 auto;
  }

  table.formTable th, table.formTable td {
    width: auto;
    display: block;
  }

  table.formTable th {
    border-bottom: 0;
    padding: 5px;
    
  }

  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;
  }
}
/* sns section */
.sns {
  width: 90%;
  max-width: 600px;
  margin: 0 auto ;
}

.sns-qr {
  width: 160px;
}

.sns-qr a {
  display: block;
}

.sns-qr img {
  width: 100%;
}

.sns .flex-b {
  align-items:flex-end;
}

.sns-green-box {
  clip-path: polygon(90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%, 10% 0);
  background-color: #22AC38;
  width: 160px;
  padding:20px 0;
  margin-bottom: 30px;
}

.sns-green-box p {
  text-align: center;
  font-size: 1.6rem;
  color: #fff;
  
}


@media screen and (max-width:768px) {
  .sns .flex-b {
    display:flex;
    justify-content:center ;
    gap: 20px;
  }

  .sns-green-box {
    clip-path: polygon(100% 0, 100% 80%, 50% 100%, 0 80%, 0 0);
    background-color: #22AC38;
    width: 200px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px ;
    margin: 0 auto -10px;
  }


  
.sns-green-box sub {
  line-height: 1.45;
  color: #fff;
  text-align: center;
  font-size: 1.15rem;
}
}

.flow-img {
  width: 90%;
  max-width: 800px;
  margin: 100px 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;  }
}
  /* contact.html end */




/* footer info  */
.footer-info {
  margin: 0 auto;
  max-width: 900px;
  width: 90%;
  display: flex;
}
/* 下層ページのfooter-info */
.sub-footer {
border-top: #92C41D 3px solid;
background-color: #fff;
padding: 50px 0;
}

.sub-footer .to-contact-button a {
  background-color: #92C41D;
}

.sub-footer .to-contact-button a:hover {
  background-color: #22AC38;
}

/* 下層ページのfooter-info end */
.footer-logo {
  width: 25%;
}

.footer-logo img {
  width: 100%;
  pointer-events: none;
}

.footer-infotxt {
  width: 75%;
  text-align: center;
}

.footer-infotxt h2 {
  font-size: 2.6rem;
}

.footer-infotxt h2 span {
  display: inline-block;
}

.footer-infotxt-ch {
  display: flex;
  justify-content: center;
  gap: 20px;
  line-height: 1.85;
}

.footer-infotxt-ch p,
.footer-infotxt-ch p a {
  font-size: 1.9rem;
  color: #231815;
}

.footer-infotxt-ch-left {
  text-align: right;
}

.footer-infotxt-ch-right {
  text-align: left;
}

@media screen and (max-width:768px) {
  .footer-info {
    margin: 0 auto;
    display: block;
  }

  .footer-logo {
    width: 180px;
    margin: 0 auto;
  }
  
  .footer-logo img {
    width: 100%;
  }
  
  .footer-infotxt {
    width: 100%;
    text-align: center;
  }

  .footer-infotxt h2 {
    font-size: 2.2rem;
  }
  
  .footer-infotxt-ch {
    gap: 10px;
    line-height: 1.85;
  }
  
  .footer-infotxt-ch p,
  .footer-infotxt-ch p a {
    font-size: 1.6rem;
  }
}

@media screen and (max-width:480px) {
  .footer-infotxt h2 {
    font-size: 2rem;
  }
  
  .footer-infotxt-ch {
    gap: 5px;
  }
  
  .footer-infotxt-ch p,
  .footer-infotxt-ch p a {
    font-size: 1.4rem;
  }
}

/* footer info end */

/* to-contact-button */
.to-contact-button {
  max-width: 900px;
  width: 90%;
  margin: 30px auto 0;
}

.to-contact-button a {
  display: block;
  text-align: center;
  background-color:#22AC38;
  font-size: 3.5rem;
  color: #fff;
  font-weight: 900;
  font-family:'vdlmaru';
  border-radius: 35px;
  padding: 10px;
  transition: .2s;
}

.to-contact-button a:hover {
  background: #92C41D;
}

@media screen and (max-width:768px) {
  .to-contact-button a {
    font-size: 3rem;
  }
}

@media screen and (max-width:480px) {
  .to-contact-button a {
    font-size: 2.5rem;
  }
}

/* footer */
.top-footer {
  background: url(../img/footer_bg.jpg) no-repeat;
  height: 580px;
  background-size:cover;
  position: relative;
}

.sub-footer-under {
  background: url(../img/footer_bg.jpg) no-repeat;
  height: 180px;
  background-size:cover;
  position: relative;
}

.top-footer h2 {
  font-size: 3.3rem;
  text-align: center;
  color: #fff;
}
.map {
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
}

.map iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

.footer-copy {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: #231815;
  font-family:'vdlmaru';

}

@media screen and (max-width:768px) {

  footer h2 {
    font-size: 4.5vw;
    text-align: center;
  }

  .map iframe {
    width: 100%;
    height: 350px;
  }
}

@media screen and (max-width:428px) {
  footer h2 {
    font-size: 5.4vw;
    text-align: center;
  }
}
/* footer end */




/* 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;
  }
}