*{
   margin:0;
   padding:0;
   transition: all 0.3s ease;
   -webkit-transition: all 0.3s ease;
   -moz-transition: all 0.3s ease;
   -o-transition: all 0.3s ease;
}

body {
  font-family: "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;  
}

p{
  font-size: 16px;
  margin: 10px 0;
  line-height: 1.6em;
  font-weight: 500;
}

/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- * wrap */

#wrap{
  width:100%;
  margin:0;
  padding:0;
}

/* ====================================================
brake
==================================================== */
@media print, screen and (min-width: 768px) {
.pc { display: inline !important; }
.sp { display: none !important; }
}
@media screen and (max-width: 767px) {
  .pc { display: none !important; }
  .sp { display: inline !important; }
}



/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- * drawer */

#drawer{
  display:none;
}

@media screen and (max-width: 1024px) {
#drawer{
  display:block;
  z-index:9999;
  position: relative;
}

#drawer h1 img{
  width: 60%;
}

.drawer-nav{
   filter:alpha(opacity=98);
   -moz-opacity: 0.98;
   opacity: 0.98;
   background-color: #00B050;
   background-size: 80% auto;
}

.drawer-menu{
   width:100%;
   height: 100vh;
   padding:40px;
   text-align: left;
   -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.drawer-menu img.navim{
  width: 100%;
  border-radius: 10px;
  margin-top: 40px;
}

.drawer-menu ul{
   list-style:none;
   margin:50px 0;
   font-size:18px;
   font-weight:700;
   line-height:2.4em;
}

.drawer-menu ul a{
   color:#fff;
   text-decoration:none;
}

.drawer-menu ul li{
  border-bottom: #35CE7A solid 1px;
}


}
/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- * header */

header{
    width:100%;
	  z-index: 4;
	  position:fixed;
    display: flex;
    justify-content: space-between;
	  padding:10px 0px;
    -moz-box-sizing: border-box;
     box-sizing: border-box;
     background-color: #fff;
}

.head_l{
	width:250px;
  margin: 5px 0 0 0;
}

.head_r{
  margin: 15px 0 0 0;
}

.fixed {
    position: fixed;
    top: 0;
    width:100%;
    z-index: 14;
    background-color: #fff;
    box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.05);
}

header ul{
  list-style:none;
  float:right;
}

header ul li{
  float:left;
  margin:0 20px;
  font-size: 16px;
  font-weight:700;
  line-height:2em;
}



header ul li a {
 position: relative;
 display: inline-block;
 transition: .3s;
 text-decoration: none;
 color: #111;
}

header ul li.con {
  background-color: #00B050;
  border-radius: 3px;

}

header ul li.con a{
  color: #fff;
  padding: 0 50px;  
}

header ul li a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 0;
  height: 1px;
  background-color: #7BAA17;
  transition: .3s;
}
header ul li a:hover::after {
  width: 100%;
}

@media screen and (max-width: 1024px) {
.head_r{
  display:none;
}

header{
  width:100%;
  display: block;
  padding:10px 10px;
}
.fixed {
  position:absolute;
  top: 0;
  width:100%;
  z-index: 99;
  background-color:unset;
}

}

/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- * footer */

footer{
  background-color:rgb(37, 37, 37);
  padding: 50px 0 20px 0;
}

.footer_inner{
  max-width: 1000px;
  margin: auto;
  text-align: center;
}


.footer_inner img{
  max-width: 300px;
  margin: auto;
  text-align: center;
  margin-top: 50px;
}

.footer_inner ul{
  display: flex;
  justify-content: space-between;
  list-style: none;
}

.footer_inner ul li a{
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.footer_inner ul li a:hover{
  color: #ccc;
}

.footer_inner p{
  color: #fff;
}

.copy{
  font-size: 14px;
  margin-top: 30px;
  font-family: 'Odibee Sans',cursive;
  color: #f4f4f4;
  font-weight: 400;
  letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
  footer{
    padding: 100px 40px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-size:contain;
  }

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

  .footer_inner ul li{
    width: 50%;
  }
  


}

/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- * h */

h1 img{
  width: 200px;
  margin: 0 0 0 20px;
}

h1 a {
  display: inline-block;
  transition: .3s;
  -webkit-transform: scale(1);
  transform: scale(1);
}
h1 a:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.fixed h1 img{
  width: 180px;
  margin: 10px 0 0 20px;
}

.fixed h1 a{
  border: none;
  padding:0px;
}


h2{
  font-weight: 600;
  font-size: 36px;
  color: #222;
  line-height: 1.2em;
}

h2 span{
  font-family: 'Odibee Sans',cursive;
  color: #00B050;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 18px;
  display: block;
}


h3{
  font-weight: 600;
  font-size: 24px;
  color: #00B050;
  line-height: 1.4em;
}

h3 span{
  font-family: 'Odibee Sans',cursive;
  color: #666;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 18px;
  display: block;
}


h4{
  font-weight: 600;
  font-size: 20px;
  color: #222;
  margin: 20px 0;
  padding: 5px 0;
  line-height: 1.4em;
  border-bottom: #222 dotted 1px;
}



@media screen and (max-width: 1024px) {
  h1 img{
    width: 150px;
    margin: 0;
  }

  .fixed h1 img{
    width: 150px;
    margin: 0;
  }

  h2{
    font-size: 32px;
  }

  
  
}

/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- * INDEX */
.main{
  width:100%;
  height:800px;
}

#mainimg{
   overflow: hidden;
   width: 100%;
   min-height: 800px;
   position:absolute;
   top:0;
}

.inner-content{
   padding:0 50px;
   background-color: #00B050;
   text-align:left;
   position:absolute;
   bottom: 200px;
  -moz-box-sizing: border-box;
   box-sizing: border-box;
}

.inner-content p{
  font-size: 42px;
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 2px 1px rgb(0 0 0 / 30%);
}



@media screen and (max-width: 798px) {

.inner-content{
   padding:0 20px;
   bottom: 300px;
}
.inner-content p{
  display:inline-block !important;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 0px;
  padding: 0px;
}


}

.s_main{
  position:relative;
  padding:150px 0 100px 0;
  width:100%;
  text-align: center;
  overflow:hidden;
  margin:0;
}

.s_main img {
  position:absolute;
  right: 0;
  top: 0px;
  z-index: -1;
  width:100%;
  height:400px;
  object-fit: cover;

}

.s_main p{  
  color:#FFFFFF;
  font-size:34px;
  font-weight: 600;
	position: relative;
  letter-spacing:1px;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
  z-index: 3;
  line-height:1.2em;
}


.s_main p span{
  font-family: 'Odibee Sans',cursive;
  color: #DFF3E8;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 26px;
  display: block;
}



@media screen and (max-width: 1024px) {
  .s_main p{  
    font-size:26px;
  }

}

/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- * reason */

.reason{
  width: 100%;
  padding: 150px 0;
  position: relative;
}

.reason:after {
  width: -webkit-calc(100% - 50%);
  width: calc(100% - 50%);
  content: "";
  position: absolute;
  top: 100px;
  left: 50%;
  bottom: 0;
  background-color: #00B050;
  z-index: -1;
}

.reason_inner{
  width: 100%;
}

.reason_info{
  position: absolute;
  background-color: #fff;
  padding: 40px 45px;
  z-index: 2;
  top: 100px;
  right: 100px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 30%);
  -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.reason_img{
  width: 70%;
}

.reason_img img{
  width: 100%;
}


@media screen and (max-width: 768px) {
  .reason{
    padding: 100px 40px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-attachment:unset;
  }

  .reason:after {
    width: -webkit-calc(100% - 30%);
    width: calc(100% - 30%);
    content: "";
    position: absolute;
    top: 50px;
    left: 30%;
    bottom: 0;
    background-color: #00B050;
    z-index: -1;
  }

  .reason_inner{
    display: block;
  }

  .reason_img{
    width: 100%;
  }

  .reason_info{
    position:relative;
    padding: 40px 0px;
    top:auto;
    right: auto;
    box-shadow:none;
  }  
    
}

/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- * results */

.results{
  width: 100%;
  padding: 100px 0;
  background-color: #00B050;
  text-align: center;
}

.results h2{
  color: #fff;
}

.results h2 span{
  color: #DFF3E8;
}

.results_inner{
  max-width: 1000px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}

.results_box{
  width: 48%;
  background-color: #fff;
  padding:20px;
  margin-top: 30px;
  z-index: 2;
  box-shadow: 0 4px 12px rgb(0 0 0 / 30%);
  -moz-box-sizing: border-box;
    box-sizing: border-box;
}


.results_box img{
  width: 100%;
}


@media screen and (max-width: 768px) {
  .results{
    padding: 100px 40px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: -1px;
  }

  .results_inner{
    display: block;
  }

  .results_box{
    width: 100%;
  }

  
    
}

/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- * company */

.company{
  width: 100%;
  padding: 0;
}

.company_inner{
  max-width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
}

.company_box{
  width: 50%;
  position: relative;
}


.company_box img{
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.company_box p{
  font-family: 'Odibee Sans',cursive;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 72px;
  position: absolute;
  bottom: 0;
  left: 50px;
  color: #fff;
  text-shadow: 1px 2px 1px rgb(0 0 0 / 30%);
}

.company_box p span {
  font-family: "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;  
  font-size: 16px;
}


@media screen and (max-width: 768px) {
  .company{
    padding: 100px 40px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: -1px;
  }

  .company_inner{
    display: block;
  }

  .company_box{
    width: 100%;
  }

  .company_box p{
    font-size: 48px;
    line-height: 1em;
  }

  .company_box img{
    height: 400px;
  }

  .company_box p span {
    display: block;
  }

  
    
}

/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- * info */

.info{
  width: 100%;
  padding: 100px 0;
}

.info_inner{
  max-width: 1000px;
  margin: 50px auto;
  text-align: center;
  
}

.info_inner ul{
  list-style: none;
  line-height: 1.8em;
  text-align: left;
  margin-bottom: 40px;
}

.info_inner ul li{
  margin-bottom: 5px;
  font-weight: 600;
  border-bottom: #777 solid 1px;
  padding: 20px 0;
}

.info_inner ul li a{
  text-decoration: none;
  color: #222;
}

.info_inner ul li a:hover{
  color: #777;
}

.info_inner ul li span{
  color: #777;
  margin-top: 10px;
  display: block;
  font-weight: 500;
}


@media screen and (max-width: 768px) {
  .info{
    padding: 50px 40px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .info_inner{
    display: block;
  }


}

/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- * bottom */
.bottom{
  width: 100%;
  padding: 100px 0;
  background-color: #f4f4f4;
  text-align: center;
}

.bottom_inner{
  max-width: 1000px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}

.bottom_box{
  width: 48%;
}

p.tel{
  font-family: 'Odibee Sans',cursive;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 48px;
  color: #00B050;
  line-height: 1em;
}

p.tel span{
  font-size: 28px;
}


@media screen and (max-width: 768px) {
  .bottom{
    padding: 100px 40px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  .bottom_inner{
    display: block;
    padding: 50px 0;
  }

  .bottom_box{
    width: 100%;
  }


}

/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- * base */
.base_container{
  width: 100%;
  padding: 100px 0;
}

.container_inner{
  max-width: 1000px;
  margin: auto;
}

.container_inner img{
  max-width: 100%;
}

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

.column_auto{
  justify-content: flex-start;
}

.column_two{
  width: 48%;
}
.column_three{
  width: 32%;
}

.column_auto .column_three{
  margin: auto 0.6%;
}


.bold{
  font-weight: bold;
}

.glay{
  background-color: #f4f4f4;
}

.glay2{
  background-color: #888;
}

.green{
  background-color: #00B050;
}

.center{
  text-align: center;
}

.margin-top{
  margin-top: 40px;
}

.margin-company{
  margin-top: 160px;
}

hr{
  margin: 40px auto;
  width: 100px;
}

.cat{
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
  padding: 5px 20px;
}

.news_box{
  padding:20px 0 50px 0;
  border-top: #222 dotted 1px;
}

.news_box img{
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .base_container{
    padding: 100px 40px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  .container_inner{
    padding: 50px 0;
  }

  .column_container{
    display:block;
  }
  
  .column_two{
    width: 100%;
  }
  
  .column_three{
    width: 100%;
  }
  .margin-company{
    margin-top: auto;
  }
 


}


/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- * table */

table {
	border-collapse: collapse;
	border:#e3e3e3 solid 1px;
	width:100%;
	max-width:1200px;
	margin:10px auto;
  box-sizing: border-box;
}

th {
	border-bottom: #e3e3e3 1px dotted;
	text-align: left;
	padding: 20px 20px;
	font-weight: normal;
	background-color:#f4f4f4 ;
  width: 200px;
  font-weight: bold;
  box-sizing: border-box;
}

td {
	border-bottom: #e3e3e3 1px dotted;
	text-align: left;
  border-left: #e3e3e3 solid 1px;
	padding: 10px 30px;
  background-color: #fff;
  box-sizing: border-box;
}

.scroll{
  width:100%;

}



@media screen and (max-width: 1079px) {

table {
	border-collapse: collapse;
	width:95%;
	margin:30px auto;
}

td {
	border-bottom: #e3e3e3 1px dotted;
	text-align: left;
	padding: 10px;
	display:block;
  border-left:none;
}


th {
    display:block;
    width: 100%;
    
}

.scroll {
  overflow-x: auto;
}
.scroll table {
border-collapse:collapse;
min-width:740px;
margin:30px auto;
}

.scroll th {
  display:table-cell;
border-bottom: #e3e3e3 1px dotted;
width: auto;
}

.scroll td {
border-bottom: #e3e3e3 1px dotted;
border-top: #e3e3e3 1px solid;
text-align: left;
padding: 10px;
display:table-cell;
line-height:2em;
}


}

/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- * btn */

p.btn{
  margin:30px auto;
}
p.btn a {
  background-image: linear-gradient(rgb(255,255,255,1) 50%, rgba(0, 176, 80) 50%);
  background-position: 0 0;
  background-size: auto 200%;
  transition: .3s;
  color:#00B050;
  text-decoration:none;
  font-size:24px;
  font-weight: bold;
  letter-spacing:1px;
  border:#00B050 solid 2px;
  padding:10px 50px;
  text-shadow:none;
  font-weight: 400;
  font-family: 'Odibee Sans',cursive;
}

p.btn span{
  display: block;
}

p.btn a:hover {
  background-position: 0 100%;
  color: #fff;
}

@media screen and (min-width: 768px){
  a.btn-orange{
    padding: 0.5em 2em;
    margin: 10px auto;
    font-size:20px;
    display:inline-block;
  }
  a.btn-orange:before {
    margin: -3px 0 0 10px;
  }
}

/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- * LOADING */

#loader-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0px;
  left: 0px;
  background: -moz-linear-gradient(65deg, #ebe9e2, #b3a872); 
	background: -webkit-linear-gradient(65deg, #ebe9e2, #b3a872); 
	background: linear-gradient(25deg, #ebe9e2, #b3a872); 
  z-index: 99;
}
#loader {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  margin-top: -100px;
  margin-left: -100px;
  text-align: center;
  z-index: 99;
}

#loader img{
  width: 100%;
}




/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- * figure */
figure {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

figure img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
figure:hover img {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}
/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- * fuwatAnime */

.fuwatAnime {
 -webkit-animation-fill-mode:both;
 -ms-animation-fill-mode:both;
 animation-fill-mode:both;
 -webkit-animation-duration:1s;
 -ms-animation-duration:1s;
 animation-duration:1s;
 -webkit-animation-name: fuwatAnime;
 -ms-animation-name: fuwatAnime;
 animation-name: fuwatAnime;
 visibility: visible !important;
}
@-webkit-keyframes fuwatAnime {
 0% { opacity: 0; -webkit-transform: translateY(80px); }
 100% { opacity: 1; -webkit-transform: translateY(0); }
}
@keyframes fuwatAnime {
 0% { opacity: 0; -webkit-transform: translateY(80px); -ms-transform: translateY(80px); transform: translateY(80px); }
 100% { opacity: 1; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); }
}
/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- * isPlay */

.box {
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.box .boxInner {
  width: inherit;
  height: inherit;
  opacity: 0;
}

.isPlay {
  animation-name: play;
  animation-duration: .5s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8,0,.5,1);
  position: relative;
  opacity: 1 !important;
}
  
.isPlay:before {
  animation-name: maskOut;
  animation-duration: .5s;
  animation-delay: .5s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8,0,.5,1);
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: -moz-linear-gradient(65deg, #3cb371, #3cb371); 
	background: -webkit-linear-gradient(65deg, #3cb371, #3cb371); 
	background: linear-gradient(25deg, #3cb371, #3cb371);
}

@keyframes play {
  from {
    transform: translateX(-100%);
  }
  
  to {
    transform: translateX(0);
  }
}

@keyframes maskOut {
  from {
    transform: translateX(0);
  }
  
  to {
    transform: translateX(100%);
  }
}
/* ====================================================
swiper
==================================================== */

.swiper-container{
  text-align: center;
  max-width: 100%;
  margin: auto;
}

.swiper-wrapper {
	width: 100%;
}

.swiper-slide {
	color: #ffffff;
	width: 100%;
	height: 100%;
  padding: 50px 0 100px 0;
	text-align: left;
}

.swiper-slide img{
  width: 100%;
}


@media screen and (max-width: 768px) {
  .swiper-slide {
    padding: 50px 0 ;
  }
  
}
/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- * pagetop */


.pagetop {
	position: fixed;
	bottom: 10px;
	right: 10px;
	opacity: 0;
	filter: alpha(opacity=0);
	-webkit-transform: scale(0.3);
	-moz-transform: scale(0.3);
	-ms-transform: scale(0.3);
	-o-transform: scale(0.3);
	transform: scale(0.3);
	-webkit-transition: all .4s;
	-moz-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
  z-index: 5;
}
.pagetop a {
	display: block;
	width: 50px;
	height: 50px;
	background-color: #111;
	text-align: center;
	color: #fff;
	font-size: 24px;
	text-decoration: none;
	line-height: 50px;
}
.pagetop.show {
	opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

@media screen and (max-width:998px){

.pagetop {
	bottom: 30px;
	right: 10px;
}

}



/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- * infomation_box */

.contact{
  width: 100%;
  text-align: center;
  padding: 100px 0 200px 0;
}

.contact_inner{
  max-width:1000px;
  margin: auto;
  padding: 50px 0;
}

#infomation_box{
  width:80%;
  text-align:left;
  margin:50px auto;
}


.infomation_list{
  padding:5px 0;
}

.infomation_list span{
  font-size:14px;
  font-weight:bold;
  color:#0C2058;
  margin-left:10px;
}

.infomation_list span.must {
   width: 60px;
   background: #00B050;
   color: #fff;
   border-radius: 12px;
   text-align: center;
   font-size: 11.008px;
   font-size: 0.688rem;
   line-height: 22px;
 display: inline-block;
}

textarea,
input[type="text"],
input[type="tel"] ,
input[type="email"]  {
   width: 100%;
   padding: 10px 15px;
   font-size: 14px;
   border: 2px solid #666;
   -webkit-border-radius: 4px;
   -moz-border-radius: 4px;
   -ms-border-radius: 4px;
   border-radius: 4px;
}

select,
input[type="date"]{
 padding: 10px 15px;
 font-size: 14px;
   border: 2px solid #666;
   -webkit-border-radius: 4px;
   -moz-border-radius: 4px;
   -ms-border-radius: 4px;
   border-radius: 4px;
}

textarea {
   height: 60px; 
}

textarea:focus,
select:focus,
input[type="date"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="text"]:focus {
   border: 2px solid #CCCC66;
 background-color:#F4F4EF;
}

input#submit_button {
   margin: 30px auto;
   border: 0;
   font-size: 16px;
   position: relative;
   top: 50%;
   left: 50%;
   margin-left: -100px;
   width: 200px;
   height: 50px;
   text-align: center;
   box-sizing: border-box;
   -webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
   -webkit-user-select: none;
   cursor: default;
   font-family: "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;  
   color: #fff;
   border: #00B050 solid 2px;
   padding: 10px;
   background-color: #00B050;
   font-weight:bold;
   border-radius: 10px;
}

input#submit_button:hover {
   cursor: pointer;
 color: #00B050;
   background-color: #fff;
}
@media print, screen and (max-width: 1079px) {
.contact_inner{
  width:100%;
  padding:50px 0px;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

#infomation_box{
  width:98%;
  margin:0;
  padding:0;
  text-align:left;
  margin:auto;
}

textarea,
input[type="text"],
input[type="tel"] ,
input[type="email"]  {
   width: 85%;
   padding: 10px 15px;
   font-size: 14px;
   border: 2px solid #666;
   -webkit-border-radius: 4px;
   -moz-border-radius: 4px;
   -ms-border-radius: 4px;
   border-radius: 4px;
}


}

.accordion {
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  max-width: 100%;
  position: relative;
  width: 100%;
}
.accordion-title {
  cursor: pointer;
}
.accordion-content {
  display: none;
  padding: 10px 20px;
}
.accordion-content p {
  font-size: 13px;
  line-height: 1.5;
}


/* 矢印 */
.accordion-title {
  position: relative;
}
.accordion-title::after {
  border-right: solid 2px #222;
  border-top: solid 2px #222;
  content: "";
  display: block;
  height: 8px;
  position: absolute;
  right: 25px;
  top: 38%;
  transform: rotate(135deg);
  transition: transform .3s ease-in-out, top .3s ease-in-out;
  width: 8px;
}
.accordion-title.open::after {
  top: 45%;
  transform: rotate(-45deg);
}