*{
   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: 700;
}

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

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

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

.marker-yellow {
  text-decoration: underline;
  text-underline-offset: -0.2em;
  text-decoration-thickness: 0.5em;
  text-decoration-color: rgba(255, 228, 0, 0.4);
  text-decoration-skip-ink: none;
}

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


#drawer{
  display:block;
  z-index:9999;
  position: relative;
}

#drawer p{
  font-size: 10px;
  text-align: center;
  padding-top: 10px;
}

#drawer h1 img{
  width: 400px;
}

.drawer-nav{
   filter:alpha(opacity=90);
   -moz-opacity: 0.9;
   opacity: 0.9;   
   background:#fff;
}


.drawer-hamburger{
  right: 60px !important;
  top: 10px !important;
}

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

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

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


.drawer_inner{
  max-width: 1000px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}


@media screen and (max-width: 768px) {
  .drawer-hamburger{
    right: 0px !important;
  }
  #drawer h1 img{
    width: 60%;
  }
  
  
}

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

header{
    width:100%;
	  z-index: 4;
	  position:fixed;
    display: flex;
    justify-content: flex-start;
    align-items: center;
	  padding:0px;
    height: 100px;
    -moz-box-sizing: border-box;
     box-sizing: border-box;
     background-color: #fff;
}

.head_l{
	width:240px;
  margin: 10px;
}

.head_r{
  padding: 0;
  margin-left: 100px;
}


.fixed {
    position: fixed;
    top: 0;
    width:100%;
    z-index: 14;
    height: 100px;

}


header ul{
   list-style:none;
   display: flex;
   align-items: center;
   justify-content: flex-end;
}

header ul li{
   font-weight: bold;
   font-size: 14px;
   line-height:1.8em;
   border-right: #222 solid 1px;
   padding:0 20px;
}

header ul li:first-child{
  border-left: #222 solid 1px;
}

header ul li a {
  position: relative;
  display: inline-block;
  transition: .3s;
  text-decoration: none;
  color: #000;
}
header ul li a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 0;
  height: 1px;
  background-color: #C30D23;
  transition: .3s;
}
header ul li a:hover::after {
  width: 100%;
}

@media screen and (max-width: 1024px) {
.head_r{
  display:none;
}
.head_l{
	width:100%;
}
header{
  width:100%;
  display: block;
  padding:10px 10px;
  height: auto;
}
.fixed {
  position:absolute;
  top: 0;
  width:100%;
  z-index: 99;
  background-color:unset;
}

}

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

footer{
  background-color: #f4f4f4;
  padding: 50px 0 20px 0;
}

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


.footer_inner img{
  max-width: 400px;
  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: #222;
  font-size: 14px;
  font-weight: 600;
}

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

.footer_inner p{
  color: #222;
  font-size: 14px;
}

.tagline{
  color: #222;
  font-size: 18px !important;
  margin-bottom: 20px;
  letter-spacing: 0.4em;
}

.copy{
  font-size: 12px;
  margin-top: 30px;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
}

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

  .footer_inner{
    max-width: 100%;
    box-sizing: border-box;
  }
  

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

  .footer_inner ul li{
    width: 50%;
  }

  .footer_inner img{
    max-width: 70%;
  }
  .tagline{
    font-size: 14px !important;
    letter-spacing: 0.2em;
  }
  

  


}

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

h1 img{
  width: 240px;
  margin: 10px 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{

}



h2{
  font-weight: 500;
  font-size: 36px;
  color: #222;
  font-family: 'Noto Serif JP', serif;
  margin: 20px 0 0 0;
  text-align: center;
}
h2 span{
  display: block;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  text-transform: uppercase;

}

h2 span::before {
  content: url('../img/txt.png');
  display: block;
}

.red h2 span::before {
  content: url('../img/txt2.png');
  display: block;
}


h3{
  font-weight: 500;
  font-size: 24px;
  font-family: 'Noto Serif JP', serif;
  line-height: 1.4em;
  margin: 20px 0;
}


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

  h2{
    font-size: 32px;
    margin: 20px 0;
  }

  h2 span::before {
    content: url('../img/txt_sp.png');
    display: block;
  }

  .red h2 span::before {
    content: url('../img/txt2_sp.png');
    display: block;
  }
  
  

  
  
}


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

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

.inner-content{
   padding:30px 60px;
   margin: auto;
   text-align:center;
   position:absolute;
   background-color: rgba(230, 0, 18, 0.8);
   top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  -moz-box-sizing: border-box;
   box-sizing: border-box;
}

.inner-content p{
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.4em;
}


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

.inner-content{
   padding:10px 20px;
   top: 340px;
   width: 70%;
}
.inner-content p{
  display:inline-block !important;
  font-size: 18px;
  margin: auto;
}

.main{
  width:100%;
  height:600px;
}

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




}

.s_main{
  position:relative;
  padding:150px 0 60px 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: 'Montserrat', sans-serif;
  color: #f4f4f4;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 26px;
  display: block;
}



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

}

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

.info{
  width: 100%;
  padding: 100px 0;
  background: linear-gradient(90deg,#595757 0%, #595757 50%, #E60012 50%, #E60012 100%);
  position: relative;
  overflow: hidden;
}

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

.info_inner h2{
  color: #fff;
}

.info_inner ul{
  list-style: none;
}

.info_inner ul li{
  font-weight: 600;
  line-height: 2em;
}

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

}

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

.info_inner ul li span{
  color: #f4f4f4;
  margin-right: 20px;

}
 


@media screen and (max-width: 768px) {
  .info{
    padding: 50px 40px;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: #595757;
  }
  .info_inner{
    display: block;
    padding:0 20px 20px 20px;
  }
  
.info_inner ul li span{
  display: block;
}


}



/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- * base */
.base_container{
  width: 100%;
  padding: 50px 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;
  margin: 40px 0;
}

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

.column_two{
  width: 48%;
}

.column_three{
  width: 32%;
}

.column_auto .column_three{
  margin: 0 0.6% 50px 0.6%; 
}

.order{
  order: -1;
}

.left{
  text-align: left;
}

.right{
  text-align: right;
}

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

.w100{
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  padding: 30px 0;
}

.w600{
  max-width: 600px !important;
}


.caution{
  font-size: 12px;
}

.glay{
  background-color: #f4f4f4;
}

.red{
  background-color: #E60012;
}

.red h2,
.red h3,
.red p{
  color: #fff;
}

.about_needs.red::before {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 14px;
  border: 5px solid transparent;
  border-top: 10px solid #a8364f;
}

.center{
  text-align: center;
}

.z-center{
  left: 50%;
  transform: translateY(0%) translateX(-50%);
  -webkit- transform: translateY(0%) translateX(-50%);
}


.box_module{
  border-radius: 10px;
  background-color: #eef5f7;
  padding:10px 40px 20px 40px;
  margin: 30px auto;
  box-sizing: border-box;
}

.box_module2{
  border-radius: 10px;
  background-color: #ebf0bf;
  padding:30px 40px;
  margin: 30px auto;
  box-sizing: border-box;
}


.tel{
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  margin: 20px 0 0 0;
  color: #0457a7;
}




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

  .container_inner{
    padding: 50px 0;
  }
  
  .column_container{
    display:block;
  }
  
  .column_two{
    width: 100%;
  }  
  .column_three{
    width: 100%;
  }

  .w600{
    max-width: 100% !important;
  }


  
}

/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- * cssslider */


.cp_cssslider {
	width: 100%;
	padding-top: 80%; /* 画像の高さ */
	position: relative;
	margin: 2em auto;
	text-align: center;
}
.cp_cssslider > img {
	position: absolute;
	left: 0;
	top: 0;
	transition: all 0.5s;
	border-radius: 3px;
	box-shadow:0px 0px 5px 0px rgba(0,0,0,0.3);
}
.cp_cssslider input[name='cp_switch'] {
	display: none;
}
/* サムネイル */
.cp_cssslider label {
	margin: 15px 5px 0 5px;
	border: 2px solid #ffffff;
	display: inline-block;
	cursor: pointer;
	transition: all 0.5s ease;
	opacity: 0.6;
	border-radius: 3px;
}
.cp_cssslider label:hover {
	opacity: 0.9;
}
.cp_cssslider label img {
	display: block;
	width: 40px;
	border-radius: 2px;
}
.cp_cssslider input[name='cp_switch']:checked + label {
	border: 2px solid #FF7043;
	opacity: 1;
}
.cp_cssslider input[name='cp_switch'] ~ img {
	opacity: 0;
}
.cp_cssslider input[name='cp_switch']:checked + label + img {
	opacity: 1;
}

.cp_cssslider input[name='cp_switch2']{
	display: none;
}
.cp_cssslider input[name='cp_switch2']:checked + label {
	border: 2px solid #FF7043;
	opacity: 1;
}
.cp_cssslider input[name='cp_switch2'] ~ img {
	opacity: 0;
}
.cp_cssslider input[name='cp_switch2']:checked + label + img {
	opacity: 1;
}

.cp_cssslider input[name='cp_switch3']{
	display: none;
}
.cp_cssslider input[name='cp_switch3']:checked + label {
	border: 2px solid #FF7043;
	opacity: 1;
}
.cp_cssslider input[name='cp_switch3'] ~ img {
	opacity: 0;
}
.cp_cssslider input[name='cp_switch3']:checked + label + img {
	opacity: 1;
}

.cp_cssslider input[name='cp_switch4']{
	display: none;
}
.cp_cssslider input[name='cp_switch4']:checked + label {
	border: 2px solid #FF7043;
	opacity: 1;
}
.cp_cssslider input[name='cp_switch4'] ~ img {
	opacity: 0;
}
.cp_cssslider input[name='cp_switch4']:checked + label + img {
	opacity: 1;
}

.cp_cssslider input[name='cp_switch5']{
	display: none;
}
.cp_cssslider input[name='cp_switch5']:checked + label {
	border: 2px solid #FF7043;
	opacity: 1;
}
.cp_cssslider input[name='cp_switch5'] ~ img {
	opacity: 0;
}
.cp_cssslider input[name='cp_switch5']:checked + label + img {
	opacity: 1;
}

.cp_cssslider input[name='cp_switch6']{
	display: none;
}
.cp_cssslider input[name='cp_switch6']:checked + label {
	border: 2px solid #FF7043;
	opacity: 1;
}
.cp_cssslider input[name='cp_switch6'] ~ img {
	opacity: 0;
}
.cp_cssslider input[name='cp_switch6']:checked + label + img {
	opacity: 1;
}

.cp_cssslider input[name='cp_switch7']{
	display: none;
}
.cp_cssslider input[name='cp_switch7']:checked + label {
	border: 2px solid #FF7043;
	opacity: 1;
}
.cp_cssslider input[name='cp_switch7'] ~ img {
	opacity: 0;
}
.cp_cssslider input[name='cp_switch7']:checked + label + img {
	opacity: 1;
}

.cp_cssslider input[name='cp_switch8']{
	display: none;
}
.cp_cssslider input[name='cp_switch8']:checked + label {
	border: 2px solid #FF7043;
	opacity: 1;
}
.cp_cssslider input[name='cp_switch8'] ~ img {
	opacity: 0;
}
.cp_cssslider input[name='cp_switch8']:checked + label + img {
	opacity: 1;
}



/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- * accordion */

.accordion-001 {
  max-width: 100%;
  background-color: #f0f5f9;
}

.accordion-001:not([open]) {
  margin-bottom: 20px;
}

.accordion-001 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em;
  border-radius: 5px;
  background-color: #2589d0;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.accordion-001 summary::-webkit-details-marker {
  display: none;
}

.accordion-001 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  content: '';
  transition: transform .3s;
}

.accordion-001[open] summary::after {
  transform: rotate(225deg);
}

.accordion-001 p {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 1em 2em 2em 2em;
  color: #333333;
  transition: transform .5s, opacity .5s;
}

.accordion-001[open] p {
  transform: none;
  opacity: 1;
}

/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- * 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: 250px;
  font-weight: bold;
  box-sizing: border-box;
}

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





@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%;
    
}


}

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

p.btn{
  margin:30px auto;
}
p.btn a {
  background-image: linear-gradient(rgb(255, 255, 255) 50%, rgba(0,0,0,1) 50%);
  background-position: 0 0;
  background-size: auto 200%;
  transition: .3s;
  color:#000;
  text-decoration:none;
  font-size:14px;
  font-weight: bold;
  letter-spacing:1px;
  border:#000 solid 2px;
  border-radius: 30px;
  padding:10px 50px;
  text-shadow:none;

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




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

#loader-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0px;
  left: 0px;
  background-color: #F5F4F0;
  z-index: 99;
}
#loader {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  margin-top: -150px;
  margin-left: -150px;
  text-align: center;
  color: #222;
  z-index: 99;
}

#loader img{
  width: 100%;
}



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

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

figure img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .8s ease-in-out;
  transition: .8s 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: #595757;
}

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

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

/* ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- ----- * 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:100%;
  text-align:left;
  margin:auto;
}


.infomation_list{
  padding:5px 0;
}

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

.infomation_list span.must {
   width: 60px;
   background: #0075C2;
   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: #0075C2 solid 2px;
   padding: 10px;
   background-color: #0075C2;
   font-weight:bold;
   border-radius: 10px;
}

input#submit_button:hover {
   cursor: pointer;
 color: #0075C2;
   background-color: #fff;
}
@media print, screen and (max-width: 1079px) {
.contact_inner{
  width:100%;
  padding:50px 20px;
  -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;
}


}
