@charset "UTF-8";

/*変数*/
:root {
  --main_color:#cca770 ;/*#ffa351*/
  --ttl_color:#cca770 ;/*#314d93*/
  --txt_color: #cca770;/*#242424*/
  --hover_color: #e4821d;
  --en_font: "rufina", sans-serif;
	--ja_font:"yu-mincho-pr6n", sans-serif;/*"Arial", sans-serif;*/
}
/*呼び出し方は var(--main_color)*/

/*backcolor1:#fefcfa;

backcolor2:#f0eae5;


background-color:hsla(0,0%,100%,1);
background-image:
radial-gradient(at 13% 12%, hsla(0,20%,88%,1) 0px, transparent 50%),
radial-gradient(at 88% 14%, hsla(55,5%,91%,1) 0px, transparent 50%),
radial-gradient(at 13% 84%, hsla(214,18%,88%,1) 0px, transparent 50%),
radial-gradient(at 80% 100%, hsla(27,9%,98%,1) 0px, transparent 50%);

*/

/*en_font

font-family: "rufina", sans-serif;
font-weight: 400;
font-style: normal;

-------
ja_font

font-family: "yu-mincho-pr6n", sans-serif;
font-weight: 400;
font-style: normal;
*/

/*ベース*/
p, li, a, dt, dd, address, th, td, label, input, textarea{
  font-size: 1rem;
  line-height: 2;
  color: var(--txt_color);
	font-family: "yu-mincho-pr6n", sans-serif;
}
.inner{
  max-width: 1200px;
  width: 96%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
	
}/**/
@media screen and (max-width: 640px){
  .inner{
    width: 92%;
  }
	p{font-size: .9rem;}
}



/*横並び*/
.column{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 640px){
  .column{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.column-reverse{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-direction: row-reverse;
}
@media screen and (max-width: 640px){
  .column-reverse{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

/*見出し*/
.ttl{
  font-size: 2.2rem;
  line-height: 1.8;
  text-align: center;
  color: var(--ttl_color);
  margin-bottom: 5%;
  font-family: var(--en_font);
}
.ttl::before{
	content: '';
	background-image: url("../img/icon1.png");
	display: inline-block;
  width: 55px;/*画像の幅*/
  height: 55px;/*画像の高さ*/
  background-size: contain;
  vertical-align: middle;
	background-repeat: no-repeat;
}
.ttl-stxt{
	font-family: var(--ja_font);
	font-size: 1.2rem;
}

.ttl.left{
  text-align: left;
}
.ttl-sub{
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--txt_color);
  font-weight: bold;
  margin-bottom: 5%;
	font-family: var(--ja_font);
}
.ttl-sub.center{
  text-align: center;
}
@media screen and (max-width: 768px){
  .ttl{
    font-size: 1.8rem;
    line-height: 1.6;
  }
	.ttl-stxt{font-size: 1rem;}
	.ttl-stxt2{font-size: 1.2rem;}
	.ttl.left{text-align: center;}
}


/*ボタン*/
.btn{
  position: relative;
  padding: 1% 4%;
  text-align: center;
  border-radius: 50px;
  display: table;
  margin: 4% auto 0;
  background: var(--main_color);
  color: #fff;
  font-weight: bold;
  transition: .4s;
}
.btn:hover{
  opacity: .7;
}
.btn.left{
  margin: 4% 0 0;
}
.btn.right{
  margin: 4% 0 0 auto;
}
.btn::after{
  content: '';
  display: inline-block;
  width: .9rem;
  height: .9rem;
  margin-left: 10px;
  background: url(../../assets/img/arrow_white.svg) no-repeat right center / contain;
}

/*セクション上下の余白を設定*/
.sec{
  padding: 130px 0;
}
@media screen and (max-width: 640px){
  .sec{
    padding: 15% 0;
  }
}

/*ヘッダー*/
#header{
  position: sticky;
  justify-content: space-between;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  padding: 1rem 2rem;
  background: rgba(255,255,255,.8);
	z-index: 999;
}
.header-logo{
  max-width: 70px;
  width: 25%;
}
.header-logo.center{
  margin: auto;
}
.tel-num{
  max-width: 280px;
  width: 30%;
  display: block;
}
@media screen and (max-width: 960px){
  .tel-num{
    margin-right: 3rem;
  }
	#header{ padding: .7rem 2rem;}
	.header-logo{
		max-width: 50px;
	}
}
@media screen and (max-width: 640px){
  #header{
    padding: 0;
  }
  .header-logo{
	  max-width: 100px;
    padding: 2% 3%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
  }
  #header.thanks-parts .header-logo{
    position: relative;
    margin: auto;
  }
  .tel-num{
    background: url(../../assets/img/tel_sp.svg) no-repeat right top / contain;
    width: 60px;
    height: 60px;
    margin-right: 0;
    position: fixed;
    top: 0;
    right: 60px;
    z-index: 99;
  }
  .tel-num img{
    display: none;
  }
}



/*ナビゲーションのデザイン*/
.nav_content{

}
.nav_list{
  display: flex;
  justify-content: center;
  padding: 1% 2%;
  /*background: #ffedde;*/
}
.nav_list li{
  margin-right: 40px;
	
}
.nav_list li::after{
  /* content: '';
  display: inline-block;
  background: #242424;
  width: 1px;
  height: 50%;
  margin-left: 40px;
  vertical-align: middle;
   斜めにしたい時▼ */
  /*  transform:rotate(30deg);*/
}
.nav_list li:last-child{
  margin-right: 0;
}
.nav_list li:last-child::after{
  display: none;
}
.nav_list a{
  color: var(--txt_color);
  transition: .4s;
  border-bottom: 2px solid rgba(255, 255, 255, 0);
  padding-bottom: 2px;
  position: relative;
	font-size: 1.2rem;
}
/*contentのコメントアウトを外すと文字の頭にボッチがつきます*/
.nav_list a::before{
  /*  content: '';*/
  display: inline-block;
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background: var(--main_color);
  vertical-align: middle;
  margin-right: .4rem;
}
.nav_list a:hover{
  color: var(--main_color);
  border-bottom: 2px solid var(--main_color);
}

.nav_list.-footer{
  background: none;
  /*margin-top: 5%;*/
}
.nav_list.-footer a{
  color: var(--main_color);
}
.nav_list.-footer li::after{
  display: none;
}/**/

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after{
  display: none;
}

/*バーガーメニュー*/
/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}

@media screen and (max-width: 960px){
  /* ハンバーガーアイコンの設置スペース */
  .drawer_open{
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 100;/* 重なり順を一番上にする */
    cursor: pointer;
    position: fixed;
    top: 0;
    right: 0;
    background-color:rgba(252,252,252,0.80);/* */
	  
  }

  /* ハンバーガーメニューのアイコン */
  .drawer_open span,
  .drawer_open span:before,
  .drawer_open span:after{
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: var(--main_color);
    transition: 0.5s;
    position: absolute;
	  
  }
  /*ナビゲーションのデザイン*/
  .nav_content{
    width: 90%;
    max-width: 500px;
    height: 100%;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 99;
    background: #fff4e5;/*rgba(0,0,0,.8)*/
    transition: .5s;
  }
  .nav_list{
    flex-direction: column;
    align-items: center;
    background: none;
  }
  .nav_list li{
    width: 100%;
    margin-right: 0;
    border-bottom: 1px solid var(--main_color);
  }
  .nav_list li a{
    color: var(--main_color);
    display: block;
    padding: 20px 12px;
    text-align: center;
  }
  .nav_list li::after{
    display: none;
  }
  .nav_list.-footer{
    margin-top: 5%;
    flex-direction: row;
  }
  .nav_list.-footer li{
    border-bottom: none;
  }
}

@media screen and (max-width: 767px){
  .nav_list.-footer a{
    line-height: 1.6;
    padding: 3% 0;
  }
  .nav_list.-footer{
    /*flex-wrap: wrap;*/
  }
  .nav_list.-footer li{
    width: auto;
    margin-right: 4%;
  }
  .nav_list.-footer li:last-child{
    margin-right: 0;
  }
}

@media screen and (max-width: 639px){
  .nav_list.-footer{
    margin-top: 4%;
    padding-top: 4%;
    border-top: 1px solid var(--main_color);
  }
  .nav_list.-footer a{
    font-size: .85rem;
  }
}


#drawer_input:checked ~ .drawer_open{
  background: var(--main_color);
}

/*スクロールしたらナビゲーションに付与される*/
.fixed{
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 100;
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 8px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}

#drawer_input:checked ~ .drawer_open span::before,
#drawer_input:checked ~ .drawer_open span::after{
  background: #fff;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
  right: 0;
}


/*ファーストビュー*/
.fv{
background-color:hsla(0,0%,100%,1);
background-image:
radial-gradient(at 91% 14%, hsla(42,47%,88%,1) 0px, transparent 50%),
radial-gradient(at 1% 98%, hsla(198,68%,82%,1) 0px, transparent 50%),
radial-gradient(at 6% 7%, hsla(41,31%,94%,1) 0px, transparent 50%),
radial-gradient(at 74% 97%, hsla(30,32%,86%,1) 0px, transparent 50%);
position: relative;
}
.fv .copy-wrap{
  /*padding: 16rem 0;*/
	position: absolute;
	top:15%;
	left: 13%;
}
.fv h1{
  font-size: 4rem;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--txt_color);
  font-family: var(--en_font);
}
.vegas-content{
  padding: 0;
}
.fv p{
  color:var(--txt_color);
  margin:0;
	line-height: 0;
}

/*ファーストビューの基準の位置を変更する*/
.fv .vegas-slide-inner{
/*  background-position: center bottom!important;*/
}

.topimg{margin: 0% 0% 0% 20%;padding: 7% 0;}


@media screen and (max-width: 1200px){
	.fv h1{
    font-size: 3rem;
    line-height: 1.5; 
  }
	.fv .copy-wrap{
		top:15%;
	left: 5%;}
}

@media screen and (max-width: 768px){
  
  .fv h1{
    font-size: 2rem;
    line-height: 1.6;
	  
  }
	.topimg{margin: 0% 0% 0% 0%;padding: 15% 0 0 0;}
	
	.fv .copy-wrap{
	position: relative;
	margin-top: 3%;
	padding-bottom: 10%;
	margin-left: 15%;
	display: inline-block;
}
	
}
@media screen and (max-width: 425px){
  .fv h1{
    font-size: 1.6rem;
  }
	.fv p{font-size: .8rem;}
}

/*Aパーツ：画像とテキスト横並び*/
.a-parts{
	/*padding: 0;*/
	background-color:#fefcfa; 
	background-image:url("../img/back.png");
	background-size:cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	
}

.a-parts .item{
  width: 47%;
}
.a-parts .txt-box{
  width: 47%;
}
.a-parts li{
  margin-bottom: 8%;
}
.a-parts li:last-child{
  margin-bottom: 0;
}
.column_01{margin: 50px 0;}
.linkimg{
	max-width: 350px;
	margin: 0 auto;
	text-align: center;
}

@media screen and (max-width: 640px){
	.linkimg{
	max-width: 250px;
	
}
  .a-parts .ttl{
    margin-bottom: 4%;
  }
  .a-parts .item{
    width: 100%;
    margin-bottom: 5%;
  }
  .a-parts .txt-box{
    width: 100%;
  }
	.ttl-stxt{font-size: .7rem;}
}


/*Bパーツ：背景画像の上にテキスト*/
.b-parts{
  background: url(../../assets/img/b_bg.jpg) no-repeat center bottom / cover;
}
.b-parts .txt-box{
  width: 50%;
}
.b-parts .txt-box.center{
  margin: auto;
}
.b-parts .txt-box.right{
  margin-left: auto;
}
.b-parts .txt-box.bg{
  background: rgba(255, 255, 255, .8);
  width: 60%;
  padding: 5%;
}
.b-parts .txt-box .ttl{
  text-align: left;
}
.b-parts .txt-box.center .ttl{
  text-align: center;
}

/*画像＋テキストの要素を横並びにする*/
.item-list{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
}
.item-list::after{
  content: '';
  display: block;
  width: 32%;
}
.item-list li{
  width: 32%;
	border: solid 1px var(--main_color);
	padding: 2%;
	border-radius: 10px;
	position: relative;
}
.item-list li::before{
	content: '01';
	position: absolute;
	top: -15%;
	left: 7%;
	font-size: 4rem;
	color: var(--main_color);
	font-family: var(--ja_font);
	z-index: 2;
}
.item-list li:nth-child(2)::before{
	content: '02';
}
.item-list li:nth-child(3)::before{
	content: '03';}


.item-list picture{
  width: 100%;
  display: block;
}






@media screen and (max-width: 640px){
	
.item-list li{
    width: 100%;
    margin-bottom: 15%;
    padding-bottom: 8%;
    /*border-bottom: 1px dotted #9b9b9b; */
  }
	.item-list li:first-child{margin-top: 7%;}
	
	
  .item-list li:last-child{
    margin-bottom: 0;
  }/**/
  .item-list picture{
    /*margin-bottom: 0;
    margin-right: 5%;
    width: 35%;
    float: left;*/
  }
  .item-list .ttl-sub{
	  width: 100%;
    /*float: left;
    font-size: 1.2rem;
    width: 60%;
    margin-bottom: 2%;*/
  }
  .item-list li p{
    float: left;
    width: 100%;
    line-height: 1.6;
  }
  .item-list .ttl-sub.center{
    text-align: center;
  }
}

@media screen and (max-width: 425px){
  .item-list picture, .item-list .ttl-sub, .item-list li p{
    float: none;
    width: 100%;
  }
}

/*li要素が4つ〜6つ以上の時*/
.item-list li:first-child:nth-last-child(4),
.item-list li:first-child:nth-last-child(4) ~ .item-list li,
.item-list li:first-child:nth-last-child(5),
.item-list li:first-child:nth-last-child(5) ~ .item-list li,
.item-list li:first-child:nth-last-child(6),
.item-list li:first-child:nth-last-child(6) ~ .item-list li{
  margin-bottom: 8%;
}

/*要素が2つの場合*/
.item-list.two{
  justify-content: center;
}
.item-list.two li{
  margin-right: 8%;
}
.item-list.two li:last-child{
  margin-right: 0;
}

.item-list picture{
  margin-bottom: 5%;
}
@media screen and (max-width: 768px){

}

/*要素が4つの場合*/
.item-list.four li{
  width: 23%;
}
@media screen and (max-width: 1023px){
  .item-list.four{
    flex-wrap: wrap;
    justify-content: center;
  }
  .item-list.four li{
    width: 42%;
    margin-right: 8%;
    margin-bottom: 8%;
  }
  .item-list.four li:nth-child(3),.item-list.four li:nth-child(4){
    margin-bottom: 0;
  }
  .item-list.four li:nth-child(even){
    margin-right: 0;
  }
	
	
}

@media screen and (max-width: 640px){
  .item-list{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .item-list.four li{
    width: 100%;
  }
  .item-list.four li:nth-child(3),.item-list.four li:nth-child(4){
    margin-right: 8%;
    margin-bottom: 8%;
  }
  .b-parts .txt-box.bg{
    width: 80%;
  }
}
@media screen and (max-width: 425px){
  .b-parts .txt-box.bg{
    width: 100%;
  }
}
.backg{
	background-color:hsla(0,0%,100%,1);
background-image:
radial-gradient(at 91% 14%, hsla(42,47%,88%,1) 0px, transparent 50%),
radial-gradient(at 1% 98%, hsla(198,68%,82%,1) 0px, transparent 50%),
radial-gradient(at 6% 7%, hsla(41,31%,94%,1) 0px, transparent 50%),
radial-gradient(at 74% 97%, hsla(30,32%,86%,1) 0px, transparent 50%);
}
/*Cパーツ：横並びのリスト*/
.c-parts{}


/*Dパーツ：画像とテキスト横並び(5:5)*/
.d-parts{
  /*background: #e9e9e9;*/
	position: relative;
	padding-top:30px;
}


.d-parts .item{
  width: 60%;/**/
	flex-basis: 60%;
	position: relative;
	z-index: 2;
	margin-top: 13%;
	order: 0
}
.d-parts .txt-box{
  width: 65%;
	flex-basis: 65%;
	background-color: #fff;
	padding: 5% 5% 5% 10%;
	/*margin-top: -5%;*/
	margin-left: -5%;
	margin-bottom: 10%;
	order:1;
}




.ttl-stxt2{position: relative;}

.ttl-hr{
	width: 40px;
	height: 5px;
	background-color: var(--main_color);
	display: inline-block;
	margin-bottom: 5px;
	
	
	
}

@media screen and (max-width: 1024px){
	
	.d-parts .column{flex-wrap: wrap;}
	
	.d-parts .item{
		margin-left: -5%;
        width: 65%;
	    flex-basis: 65%;
	    position: relative;
	    z-index: 0;
		margin-top: -10%;
	   }
.d-parts .txt-box{
	position: relative;
	margin-left: 20%;
    width: 80%;
	flex-basis: 80%;
	background-color: #fff;
	padding: 5%;
	margin-bottom: 0;
	z-index: 1;
	margin-top: -50%;
	
}
	
}
@media screen and (max-width: 640px){
	.d-parts{background-color: #fff;}
  .d-parts .item{
    width: 100%;
	  margin: 10% 0 5% 0 ;
    
	  order: 1;
  }
  .d-parts .txt-box{
    width: 100%;
	  padding:0;
	  margin: 0;
	  order: 0;
  }
	.d-parts .ttl-sub{font-size: 1.1rem;}
}

@media screen and (max-width: 420px){
	
	.ttl-sub{font-size: 1rem;}
}


/*Eパーツ：画像とテキストのリスト(横並び)*/
.e-parts{

}
.e-parts .list-wrap{
  flex-wrap: wrap;
}
.e-parts .list-wrap li{
  width: 47%;
  margin-bottom: 6%;
}
.e-parts .item{
  width: 45%;
}
.e-parts .txt{
  width: 49%;
}
@media screen and (max-width: 959px){
  .e-parts .list-wrap{
    flex-direction: column;
  }
  .e-parts .list-wrap li{
    width: 100%;
    margin-bottom: 6%;
  }
  .e-parts .list-wrap .column {
    flex-direction: row;
  }
  .e-parts .item{
    width: 35%;
  }
  .e-parts .txt{
    width: 60%;
  }
}
@media screen and (max-width: 425px){
  .e-parts .list-wrap .column{
    flex-direction: column;
  }
  .e-parts .item{
    width: 100%;
    margin-bottom: 5%;
  }
  .e-parts .txt{
    width: 100%;
  }
}

/*Fパーツ：順番リスト*/
.f-parts{
  background: #e9e9e9;
  overflow: hidden;
}
.f-parts .inner{
  width: 90%;
}
.f-parts .order-wrap{
  flex-wrap: wrap;
}
.f-parts .order-wrap::after{
  content: '';
  display: block;
  width: 30%;
}
.f-parts .order-wrap>li{
  width: 30%;
  background: #fff;
  padding: 4%;
  border-radius: 4%;
  margin-bottom: 5%;
  position: relative;
}
.f-parts .order-wrap>li::before{
  content: '';
  display: block;
  width: 18%;
  height: 18%;
  position: absolute;
  top: -8%;
  left: 50%;
  transform: translate(-50%, 0%);
}
.f-parts .order-wrap>li:nth-of-type(1)::before{
  background: url(../../assets/img/num_01.svg) no-repeat center center / contain;
}
.f-parts .order-wrap>li:nth-of-type(2)::before{
  background: url(../../assets/img/num_02.svg) no-repeat center center / contain;
}
.f-parts .order-wrap>li:nth-of-type(3)::before{
  background: url(../../assets/img/num_03.svg) no-repeat center center / contain;
}
.f-parts .order-wrap>li:nth-of-type(4)::before{
  background: url(../../assets/img/num_04.svg) no-repeat center center / contain;
}
.f-parts .order-wrap>li:nth-of-type(5)::before{
  background: url(../../assets/img/num_05.svg) no-repeat center center / contain;
}
.f-parts .order-wrap>li:nth-of-type(6)::before{
  background: url(../../assets/img/num_06.svg) no-repeat center center / contain;
}

.f-parts .order-wrap>li::after{
  content: '';
  display: block;
  background: url(../../assets/img/arrow.svg) no-repeat center center / contain;
  width: 3rem;
  height: 3rem;
  position: absolute;
  top: 50%;
  left: 102%;
  transform: translate(0, -50%);
}
.f-parts .order-wrap>li:last-child::after{
  display: none;
}

@media screen and (max-width: 959px){
  .f-parts .order-wrap::after{
    width: 47%;
  }
  .f-parts .order-wrap>li{
    width: 47%;
  }
  .f-parts .order-wrap>li::after{
    width: 2rem;
    height: 2rem;
  }
}
@media screen and (max-width: 640px){
  .f-parts .order-wrap::after{
    width: 100%;
  }
  .f-parts .order-wrap>li{
    width: 100%;
    margin-bottom: 2.5rem;
  }
  .f-parts .ttl-sub, .f-parts p{
    width: 80%;
    margin-left: auto;
  }
  .f-parts .ttl-sub{
    text-align: left;
    margin-bottom: 4%;
  }
  .f-parts .order-wrap>li::before{
    top: 50%;
    transform: translate(0, -50%);
    left: 0;
  }
  .f-parts .order-wrap>li::after{
    top: 102%;
    left: 50%;
    transform: translate(-50%, 0) rotate(90deg);
  }
}
@media screen and (max-width: 425px){
  .f-parts .ttl-sub, .f-parts p{
    width: 100%;
    margin-left: 0;
  }
  .f-parts .ttl-sub{
    text-align: center;
  }
  .f-parts .order-wrap>li::before{
    top: -8%;
    left: 50%;
    transform: translate(-50%, 0%);
  }
  .f-parts .order-wrap>li{
    padding: 8% 4% 4%;
    margin-bottom: 4rem;
  }
}

/*Gパーツ：画像と概要*/
.g-parts{background-color: #f0eae5;
	position: relative;
	overflow: hidden;
}
.g-parts::before{
	content: '';
  background-image: url("../img/backlogo.png");
	position: absolute;
	background-size: contain;
	background-repeat: no-repeat;
  vertical-align: middle;
	height: 100%;
	width: 100%;
	top:-50%;
	left: -5%;
	z-index: 0;
}
.g-parts::after{
	content: '';
  background-image: url("../img/backlogo.png");
	position: absolute;
	background-size: contain;
	background-repeat: no-repeat;
  vertical-align: middle;
	height: 90%;
	width: 90%;
	bottom:-60%;
	right: -50%;
	z-index: 0;
	
}
.g-parts .inner{position: relative;z-index: 1;}
.g-parts .item{
  width: 47%;
}
.listbox{
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
	border-top:solid 1px var(--main_color);
	border-bottom:solid 1px var(--main_color);
}
.g-parts .data-list{
  width: 100%;
	text-align: left;
	padding: 3% 0;
}
.g-parts .data-list dt, .g-parts .data-list dd{
	border-bottom: none;
	padding: 1%;
}
.ttl-stxt-tz{line-height: 1.2;margin-left: 50px;}

@media screen and (max-width: 768px){
  .g-parts .item{
    width: 35%;
  }
  .g-parts .data-list{
    width: 60%;
  }
.g-parts::before{
	
	top:-40%;
	left: -5%;

}
	
}
@media screen and (max-width: 640px){
  .g-parts .column{
    flex-direction: column-reverse;
  }
  .g-parts .item{
    width: 100%;
  }
  .g-parts .data-list{
    width: 100%;
    margin-bottom: 5%;
  }
	.g-parts::before{
	
	top:-35%;
	left: -5%;

}
}

/*Hパーツ：ギャラリー*/
.h-parts{
  background: #e9e9e9;
}

/*Iパーツ：GoogleMap*/
.i-parts{

}
.i-parts iframe{
  width: 100%;
  display: block;
  height: 30rem;
}
@media screen and (max-width: 640px){
  .i-parts iframe{
    height: 15rem;
  }
}

/*Jパーツ：メールフォーム*/
.j-parts{
  background-color:hsla(0,0%,100%,1);
background-image:
radial-gradient(at 91% 14%, hsla(42,47%,88%,1) 0px, transparent 50%),
radial-gradient(at 1% 98%, hsla(198,68%,82%,1) 0px, transparent 50%),
radial-gradient(at 6% 7%, hsla(41,31%,94%,1) 0px, transparent 50%),
radial-gradient(at 74% 97%, hsla(30,32%,86%,1) 0px, transparent 50%);
position: relative;
}
.j-parts p{
  text-align: center;
}

.formstyle {
  width: 80%;
  max-width: 800px;
  margin: 30px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  border-radius: 10px;
  padding: 5%;
  position: relative;
}

.formstyle label {
  margin-bottom: 1%;
  display: block;
}

/*必須*/
/*.red {
  display: inline-block;
  background-color: #E00A19;
  padding: 0 1%;
  line-height: 1.8;
  color: #fff;
  font-size: .8rem;
  margin-left: 5px;
  border-radius: 10%;
}*/
/*任意*/
/*.gray {
  display: inline-block;
  background-color: #606060;
  padding: 0 1%;
  line-height: 1.8;
  color: #fff;
  font-size: .8rem;
  margin-left: 5px;
  border-radius: 10%;
}*/

.formstyle select, .formstyle input, .formstyle textarea {
  width: 100%;
  background: #fdf9f5;
  border: 1px solid var(--main_color);
  padding: 1% 2%;
  margin: 0 0 3%;
  font-size: 1rem;
  color: #231815;
}

input.radio {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 25px;
  height: 25px;
  -webkit-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s;
  /*background-color: #d9d9d9;*/
	
  border: solid 1px var(--main_color);
  color: #fff;
  cursor: pointer;
  display: inline-block;
  margin-right: 0.5rem;
  outline: none;
  margin-bottom: 0;
  z-index: 10;
}
::placeholder {
   color: var(--main_color);
	font-size: .9rem;
}

.radiobox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.checks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 5px;
}

label.radiotxt {
  margin: 0;
}

input.radio:hover {
  background: #f2d9c7;
}

input.radio:checked {
  background: #fbefe5;
}

input.radio:checked::before {
  content: '';
  width: 10px;
  height: 5px;
  border-left: 2px solid var(--main_color);
  border-bottom: 2px solid var(--main_color);
  transform: rotate(-45deg);
  display: block;
  transform: translate(-50%, -50%) rotate(-45deg);
  display: block;
  position: relative;
  top: 40%;
  left: 50%;
}

.formstyle textarea {
  height: 250px;
}

.privacy {
  padding: 20px;
  width: 80%;
  height: 200px;
  margin: 30px auto 10px;
  overflow-y: scroll;
  border: var(--main_color) 1px solid;
	
}
.privacy h2 {
  font-size: 1rem;
  font-weight: bold;
  line-height: 2rem;
  border-bottom: 1px dotted var(--main_color);
  padding-bottom: 2%;
  margin-bottom: 2%;
	color: var(--main_color);
}
/*.privacy h3 {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 2rem;
  margin-bottom: 12px;
  border-left: 5px solid #a6a6a6;
  padding-left: 2%;
}*/

.privacy p, .privacy-list {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: left;
	font-family: Arial, Helvetica, "sans-serif";
}

.privacy-list li {
  list-style: disc;
  font-size: 0.9rem;
  margin-left: 2rem;
  line-height: 1.6;
  font-family: Arial, Helvetica, "sans-serif";

}

.formstyle .submit-btn {
  width: 60%;
  font-size: 1.2rem;
  padding: 2%;
  border-radius: 30px;
  margin: 5% auto 0;
  color: #fff;
  background-color: #e2d0b4;
	border:none;
}

.privacycheck {
  width: 90%;
  text-align: center;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.aicon-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.aicon-name ::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background: url(../img/common/onepoint-blk.svg) no-repeat center center/contain;
}

.submit-btn {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.submit-btn:hover {
  opacity: 0.7;
}

@media screen and (max-width: 960px) {
  .formstyle {
    width: 100%;
  }
  .contctform {
    width: 100%;
    margin: 0 auto;
  }
  .contctform p.txt {
    text-align: left;
  }
  .formstyle {
    width: 100%;
    margin: 20px auto;
  }
  .privacy {
    padding: 2%;
    width: 100%;
    height: 200px;
  }
  .privacycheck {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .formstyle textarea {
    height: 150px;
  }
}
@media screen and (max-width: 640px) {
	.formstyle .submit-btn {font-size: 1rem;}
  .formstyle{
    border-radius: 5px;
  }
  .privacy {
    padding: 4%;
  }
  .radiobox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 2%;
  }
	.formstyle label, .formstyle input,.formstyle textarea {font-size: .9rem;}
	.privacy p, .privacy-list ,.privacy-list li{font-size: .8rem}
	.privacy h2{font-size: .9rem;}
}
/*フォーム確認画面*/
#cheked .ttl{
  margin-bottom: 2%;
}
.confirmation{
  padding: 100px 0;
}

.cheked-ttl {
  margin: 0 auto;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 500;
  color: #231815;
  position: relative;
  margin-bottom: 50px;
}

@media screen and (max-width: 640px) {
  .formstyle .radio-label {
    display: block;
    margin-left: 0;
  }
  .confirmation{
    padding: 15% 0;
  }
}
/*サンクスページ*/
#thanks {
  padding: 10% 0;
}

#thanks .contact-ttl {
  margin: 0 auto 50px auto;
}

.top-column .logo-ttl.-center {
  width: 220px;
  display: block;
  text-align: center;
  margin: auto;
}

.thanks-wrap {
  padding: 80px 0;
}
.thanks-wrap .thanks-ttl {
  text-align: center;
  font-weight: 600;
  line-height: 1.8;
  color: #231815;
  font-size: 2rem;
  margin-bottom: 40px;
}
.thanks-wrap .txt {
  text-align: center;
}
@media screen and (max-width: 640px) {
  .thanks-wrap {
    padding: 15% 0;
  }
  .thanks-wrap .thanks-ttl {
    font-size: 1.2rem;
  }
  .thanks-wrap .txt {
    text-align: left;
    font-size: 0.9rem;
  }
}


/*概要リスト*/

.data-list{
  flex-wrap: wrap;
}
.data-list dt, .data-list dd{
  padding: 2%;
  border-bottom: 1px dotted #9b9b9b;
}
.data-list dt:last-of-type, .data-list dd:last-of-type{
  border-bottom: none;
}
.data-list dt{
  width: 160px;
  font-weight: bold;
}
.data-list dd{
  width: calc(100% - 160px);
}
.data-list li{
  list-style: disc;
  margin-left: 1rem;
}
.data-list address{
  font-style: normal;
  line-height: 1.6;
}
@media screen and (max-width: 640px){
  .data-list{
    flex-direction: row!important;
  }
}
@media screen and (max-width: 425px){
  .data-list{
    flex-direction: column!important;
  }
  .data-list dt, .data-list dd{
    padding: 2% 4%;
    border-bottom: none;
	  font-size: .9rem;
  }
  .data-list dt{
    width: 100%;
    font-weight: normal;
    background: #e2d0b4;
    color: #fff;
  }
  .data-list dd{
    width: 100%;
    padding: 2% 0;
  }
}

/*ギャラリー*/
.gallery{
  flex-wrap: wrap;
}
.gallery::before, .gallery::after{
  content: '';
  display: block;
  width: 24%;
}
.gallery::before{
  order: 1;
}
.gallery li{
  width: 24%;
  margin-bottom: 1.5%;
}
/*横3つの場合*/
.gallery.three::after{
  width: 32%;
}
.gallery.three::before{
  display: none;
}
.gallery.three li{
  width: 32%;
}

@media screen and (max-width: 768px){
  .gallery::after{
    width: 32%;
  }
  .gallery::before{
    display: none;
  }
  .gallery li{
    width: 32%;
  }
}
@media screen and (max-width: 640px){
  .gallery{
    flex-direction: row;
  }
  .gallery::after{
    width: 49%;
  }
  .gallery li, .gallery.three li{
    width: 49%;
  }
}


/*TOPへ戻るボタン*/
 .re-btn {
  position: fixed;
  bottom: 2%;
  right: 2%;
  z-index: 999;
  -webkit-transition: .4s;
  transition: .4s;
  max-width: 75px;
  opacity: .7;
	 width: 100%;
}
.re-btn img {
  width: 100%
}
.re-btn:hover {
  opacity: .7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)"
}

@media screen and (max-width: 640px) {
  .re-btn {
    position:fixed;
    bottom: 2%;
    right: 2%;
    z-index: 50;
    -webkit-transition: .4s;
    transition: .4s;
    width: 30%;
    z-index: 200;
    max-width: 80px;
    opacity: .7
  }
  .re-btn img {
    width: 100%
  }
  .re-btn:hover {
    opacity: .7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)"
  }
}

/*footer*/
footer{
  background: #fff;
  padding: 50px 0 0;
}
.column_tx{align-items: center;}
footer .footer-logo{
	align-items: center;
 margin: 0 auto 3%;/* */
}
.footer-logo img{width: 50px;}

footer address{
  font-style: normal;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--main_color);
  text-align: center;
}
footer .copy{
	border-top:solid 1px var(--main_color);
  color: var(--main_color);
  font-size: .8rem;
  text-align: center;
  display: block;
  margin-top: 5%;
  padding: 1% 0;
 
}
@media screen and (max-width: 639px){
  footer{
    padding: 15% 0 0;
  }
  footer .copy{
    margin-top: 15%;
  }
}

/*thanksページ*/
.thanks p{
  text-align: center;
}

@media screen and (max-width: 639px){
  .thanks p{
    text-align: left;
  }
}

/*送信内容確認画面*/
.confirm-page .tel-num{
  right: 0;
}

#formWrap {
  width:90%;
  max-width:750px;
  margin:0 auto 30px auto;
  line-height:120%;
  /*cursor:pointer*/
  margin-bottom:30px;
	
}

table.formTable{
  width:100%;
  margin:5% auto;
  border-collapse:collapse;
}
table.formTable td{
  border-bottom:1px solid #cca770;
  padding:15px;
  background-color: #fff;
}

table.formTable td{
  border:1px solid #cca770;
  padding:15px;
  background-color: #fff;
}

table.formTable th{
  width:30%;
  font-weight:normal;
  background: #cca770;
  color:#fff;
  text-align:left;
  border: 1px solid #ddd;
    border-bottom: 1px solid #fff;
    padding: 15px;
  padding:15px;
}

p.error_messe{
  margin:5px 0;
  color:red;
}

.send{
  display: -webkit-box;
    display: flex;
    justify-content: space-around;
    width: 400px;
    margin: 0 auto;
  font-size: .87rem;
}
.submitbtn{
  background-color: #cca770;
  padding: 12px 50px;
  font-size: 1rem;
  height: fit-content;
  text-align: center;
  margin:20px auto;
  color: #fff;
	border-radius: 20px;
}
.submitbtn,.backpage {
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;}
.submitbtn:hover,.backpage:hover{
  opacity: .7; 
}

.backpage{
	border-radius: 20px;
  border: solid 1px #cca770;
  color: #cca770;
  padding: 12px 50px;
  font-size: 1rem;
  height: fit-content;
  margin:20px auto;
  text-align: center;
}



/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (max-width:639px) {
#formWrap {
  width:90%;
  margin:0 auto 50px auto;
}
#formWrap h4{
  font-size:1.5rem;
  margin:10% auto;
}
table.formTable td{
  border-bottom:none;

}
table.formTable th, table.formTable td {
  width:auto;
  display:block;
}
table.formTable td,table.formTable th{
  padding:10px;
  border: none;
}
table.formTable th {
  margin-top:5px;
  border-bottom:0;
}
form input[type="submit"], form input[type="reset"], form input[type="button"] {
  display: block;
    width: 100%;
    height: auto;
    padding: 5%;
    font-size: 1rem;
}
.backpage{
  font-weight: normal;
  cursor:pointer;
  margin: 20px auto 0px;
}
.send{
    display: flex;
    justify-content: space-around;
    width: 80%;
    margin: 0 auto;
    flex-direction: column;
}
.send>.nav-entry{
  padding: 2rem 2rem;
}
}
.tanks_logo{width: 70px;margin: 3% auto;text-align: center;}
.footer-logo-co{width: 70px;margin: 3% auto;text-align: center;}

main{}