@charset "utf-8";
/* CSS Document */

/*****************************************
共通設定
******************************************/

body {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	font-size: 16px;
	color: #2D2D2D;	
}

#wrap {
  width: 100%;
  background-color: #FFF5CF;
	padding-top: 120px;
}

h1 {
	font-size: 2.2em;
	line-height: 1.6em;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-weight: 700;
	/*font-family: "Mochiy Pop P One", sans-serif;
  font-weight: 400;*/
}

h2 {
	font-size: 1.6em;
	line-height: 1.5em;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-weight: 500;
	/*font-family: "Mochiy Pop P One", sans-serif;
  font-weight: 400;*/
}

h3 {
	font-size: 1em;
	line-height: 2em;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-weight: normal;
	text-align: justify;
}

p {
	font-size: 0.9em;
	line-height: 2em;
	text-align: justify;
	font-family: 'Zen Kaku Gothic New', sans-serif;
}


a {
	color: #2D2D2D;
	text-decoration: none;
}

a:hover,
a:hover img{
	filter:alpha(opacity=95);
	opacity:0.6;	
}

input {	
	height: auto;
	padding: 0.5em;
	text-align: center;
	margin: 0 auto;	
}


.br-sp {
    display: none;
}




/*****************************************
ヘッダー
******************************************/

#header {
  width: 100%;
  height: 80px;
  background-color: #A11929;
  position: fixed;
  top: 0;
  z-index: 9999;
}

.field {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.field-sp {
  display: none;
}

.field-sp img {
  width: 100%;
}

#header .header-section-1 {
  width: 85%;
  height: auto;
  margin-top: -23px;
}

#header .header-section-1 img {
  width: 100%;
  height: auto;
}

#header .header-section-5 {
  right: 0;
}

#header .header-section-5 img {
  width: 120px;
  height: auto;
}

/*****************************************
メインの囲み
******************************************/

.container {
	width: 1000px;
	margin-right: auto;
	margin-left: auto;
	
}
	
/*****************************************
セクション
******************************************/

/* レイアウト 1段 ------------*/

.col_1 {
	width: 100%;
}

.col_1 img {
	width: 100%;
	margin-bottom: 3em;
}


/* レイアウト 2段 ------------*/


*, *:before, *:after {
    box-sizing: border-box;
}

.col_2{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.col_2 > *{
    width: calc( 50% - 6px ) ;
    margin-right: 1.2%;
    margin-bottom: 3em;
}

.col_2 > *:nth-child(2n){
    margin-right: auto;
}

.col_2 > * > *{
    height: auto;
    position: relative;
    overflow: hidden
}

.col_2 img {
	width: 97%;
}



@media screen and (max-width: 960px) {
    .col_2 > *{
        width: 100%;
        margin-right: auto;
    }
}


/*****************************************
TOPページ
******************************************/

.label {
  width: 20%;
  margin-bottom: 1em;
}

.title-contact {
  width: 35%;
  height: 70px;
  background-color: #066735;
  border-radius: 25px;
  margin: 0 auto 1em;
  position: relative;
}

.title-contact h2 {
  color: #FFFFFF;
  text-align: center;
  /* 水平・垂直方向の中央揃え */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.blinking-text {
	text-align: center;
	margin-bottom: 2em;
	font-size: 1.5em;
	font-weight: 500;
	color: #00681C;
	text-decoration:underline;
	animation: blink 4s infinite;
	
}
@keyframes blink {
  /* アニメーションの開始時（0%） */
  0% {
    opacity: 1; /* 不透明 */
  }
  
  /* アニメーションの中間（50%） */
  50% {
    opacity: 0; /* 透明 */
  }
  
  /* アニメーションの終了時（100%） */
  100% {
    opacity: 1; /* 不透明 */
  }
}

/*****************************************
フッター
******************************************/

/*フッター囲み ------------*/
#footer {
  background-color: #FDFDFD;
  border-top: 2px solid #A11929;
  width: 100%;
  height: 70px;
  padding: 3em 0 1em;
}

#footer a img {
  width: 80%;
  height: auto;
  margin-left: 10%;
}

#footer p {
  font-size: 1.3em;
  line-height: 1.5em;
  margin-left: 10%;
}


/*****************************************
お問い合わせ
******************************************/

/*メールフォーム -------------*/
#form_wrap {
  width: 100%;
  margin: 2em auto;
}

#form_wrap dl {
  width: 100%;
  margin: 1em 0 2em;
  background-color: #FFFFFF;
}

#form_wrap dt {
  background-color: #F3F3F3;
  border-top: 1px solid #C7C7C7;
  border-right: 1px solid #C7C7C7;
  border-left: 1px solid #C7C7C7;
  text-align: left;
  vertical-align: middle;
  padding-top: 1em;
  padding-bottom: 1em;
  width: 30%;
  float: left;
  height: 4em;
  text-indent: 1.8em;
}
#form_wrap dd {
  border-top: 1px solid #C7C7C7;
  border-right: 1px solid #C7C7C7;
	border-left: 1px solid #C7C7C7;
  text-align: left;
  vertical-align: middle;
  padding-top: 1em;
  padding-bottom: 1em;
  width: 70%;
  float: left;
  height: 4em;
  text-indent: 1em;
}

#form_wrap h5 {
	font-size: 1.2em;
	line-height: 2em;
	text-align: justify;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-weight: normal;
}


#form_wrap p {
  font-size: 1.2em;
}

.border-B {
  border-bottom: 1px solid #C7C7C7;
}

.border-B.last_dd {
  height: 5em;
}

#form_wrap dt.last_dt, #form_wrap dd.last_dd {
  height: 6em;
}

#form_wrap dd select {
  width: auto;
  height: 2em;
}

#form_wrap dd .textarea1 {
  width: 90%;
  height: 2em;
  resize: none;
}

#form_wrap dd .textarea2 {
  width: 90%;
  height: 4em;
  resize: none;
}

#btn {
  text-align: center;
  margin-top: -1em;
  margin-bottom: 3em;
}
#btn input {
  width: 20%;
  height: 50px;
  border-radius: 5px;
  border: 0.5px solid #BDBDBD;
  font-size: 1.2em;
  margin: 0 1em;
}

.form-input_00 {
  width: 23%;
  height: 1.8em;
}

.form-input_0 {
  width: 30%;
  height: 1.8em;
}

.form-input_1 {
  width: 50%;
  height: 1.8em;
}
.form-input_2 {
  width: 70%;
  height: 1.8em;
}
.form-input_3 {
  width: 15%;
  height: 1.8em;
}

.form-float-r {
  float: right;
  line-height: 1.5em
}

.form-float-l {
  float: left;
  line-height: 1.5em
}



/*****************************************
個人情報
******************************************/
.overflow-y-box {
  width: auto;
  height: 400px;
  border: solid 1px #C0C0C0;
  overflow-y: scroll;
  padding: 1em 2em;
  margin: 4em 0;
  background-color: #FFFFFF;
}

#privacy-policy {
  width: 100%;
  height: auto;
  margin: 0 auto;
  line-height: 1.5em;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2em;
  font-family: 'Zen Kaku Gothic New', sans-serif;
}

#privacy-policy h2 {
  text-align: center;
  margin: 4em 0 1em 0;
  padding: 1em 0;
  border-bottom: solid 1px #C0C0C0;
  font-weight: bold;
  font-size: 1.8em;
  color: #066735;
}
#privacy-policy h3 {
  font-size: 1.3em;
  font-weight: normal;
  margin: 2em 0 0.5em 0;
}
#privacy-policy h4 {
  text-align: left;
  font-size: 1.2em;
  font-weight: normal;
  margin: 2em 0 1em 0;
}

#privacy-policy p {
  text-align: justify;
  font-size: 1em;
}

#privacy-policy table {
  width: 100%;
  height: auto;
  border: solid 1px #C0C0C0;
  margin: 0 0 2em 0;
}

#privacy-policy table th {
  width: 30%;
  text-align: left;
  vertical-align: middle;
  border: solid 1px #C0C0C0;
  padding: 0.5em;
  font-size: 1em;
  font-weight: normal;
}

#privacy-policy table td {
  width: 70%;
  text-align: left;
  vertical-align: middle;
  border: solid 1px #C0C0C0;
  padding: 0.5em;
  font-size: 1em;
}




/*****************************************
お問い合わせボタン
******************************************/

@import "https://use.fontawesome.com/releases/v5.13.0/css/all.css";
*, *:before, *:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;
}
/* 背景用*/
body {
  /*padding: 30px 10px;*/
}
.btn, a.btn, button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 3rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}
.btn-wrap-pc-sp {
  max-width: 435px;
  margin: 0 auto 20px;
}
a.btn-pc-sp {
  line-height: 1.4;
  width: 49.5%;
  padding: 1.25rem 0;
  color: #ffff;
}
a.btn--contact {
  font-size: 2rem;
  display: block;
  padding: 1.6rem 0 1.6rem 2.2rem;
  color: #fff;
  border-radius: 100vh;
  background: #eb6100;
  -webkit-box-shadow: 0 5px 0 #d25600;
  box-shadow: 0 5px 0 #d25600;
}
a.btn--contact i {
  font-size: 2rem;
}
a.btn--contact i.fa-position-left {
  font-size: 3rem;
  left: 2rem;
}
a.btn--contact .number {
  line-height: 1;
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.25rem 2rem;
  letter-spacing: 0;
  color: #eb6100;
  border-radius: 0.5rem;
  background: #fff;
}
a.btn--contact:hover {
  color: #fff;
}
a.btn--tel {
  display: block;
  margin-top: 15px;
  padding: 1rem 0 1rem 2.2rem;
  color: #fff;
  border-radius: 100vh;
  background: #094;
  -webkit-box-shadow: 0 5px 0 #008039;
  box-shadow: 0 5px 0 #008039;
}
a.btn--tel i {
  font-size: 2rem;
}
a.btn--tel i.fa-position-left {
  font-size: 3rem;
  left: 2rem;
}
a.btn--tel .number {
  line-height: 1;
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.25rem 2rem;
  letter-spacing: 0;
  color: #094;
  border-radius: 0.5rem;
  background: #fff;
}
a.btn--tel:hover {
  color: #fff;
}
.fa-position-left {
  position: absolute;
  top: calc(50% - 0.5em);
  left: 1rem;
}
.fa-position-right {
  position: absolute;
  top: calc(50% - 0.5em);
  right: 1rem;
}