@charset 'utf-8';
/*/////////////////cssガイド/////////////////

01.すべてのサイトにおける設定(ブラウザごとの余白リセット/フォントファミリー/リストリセット/画像100%/リンクリセット/見出しリセット/レスポンシブ/フォントサイズ/コンテンツの横幅)

↓以下サイトごとにガイドをリストの通り書いていってください↓
02.ハンバーガーメニュー 
03.全ページ共通
04.TOPページ
05.page01(ファイル名)
06.page02(ファイル名)
07.問い合わせフォーム関連


10.カルーセル(スライダー)

////////////////////////////////////////////*/


/*/////////////////01.すべてのサイトにおける設定ここから/////////////////*/
* {
  margin: 0;
  padding: 0;
}
body {
font-family:-apple-system, BlinkMacSystemFont,'Microsoft Sans Serif', 'Helvetica Neue', 'Segoe UI', YuGothic, 'Yu Gothic Medium', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
}
li {
  list-style-type: none;
}
img {
	width:100%;
}

a {
    text-decoration: none;
    color: #5d443b;
}
a:hover {
    color: #5d443b;
}

h1,h2,h3,h4,h5 {
 font-size:1.5vw;
 text-decoration:none;
 font-weight: normal;
}
@media screen and (max-width: 767px){
h1,h2,h3,h4,h5 {
 font-size:4.5vw;
}
}

/*レスポンシブ*/
.forSp {
		display: none;
}
.forPc {
		display: block;
}
@media screen and (max-width: 767px){
.forSp {
		display: block;
}
.forPc {
		display: none;
}
}


/*フォントサイズ・カラー*/
body {
font-size:0.8vw;
}
.subTIT02 {
   position:relative;
   font-size:2vw;
   margin-bottom: 2vw;
}
.subTIT03 {
    font-size: 1.3vw;
    margin-bottom: 1vw;
    font-weight: bold;
}
.middleTXT {
	font-size:1.6vw;
}
.miniTXT {
	font-size: 0.7vw;
}
.txtbold {
	font-weight:bold;
}
.txtwhite {
	color:#fff;
}
.txtred {
	color:#C00;
}
@media screen and (max-width: 767px){
body {
font-size:3.5vw;
}
.txtmini {
	font-size:3vw;
}
/*フォントサイズ*/
.subTIT02 {
   font-size:6vw;
   margin-bottom: 9vw;
}
.subTIT03 {
	font-size: 4vw;
    margin-bottom: 4vw;
}
.miniTXT {
	font-size:3vw;
}

}

/*コンテンツ幅*/
.wrapper {
	width:100%;
	margin:0 auto;
	overflow:hidden;
}
@media screen and (max-width: 767px){
.wrapper {
	width:100%;
}
}

/*/////////////////01.すべてのサイトにおける設定ここまで/////////////////*/


/*/////////////////01.CVエリアここから/////////////////*/
.cvAREA {
	width: 100%;
    margin: 0 auto;
    position: fixed;
    bottom: 0;
    background: #e4d5c6e3;
    z-index: 100;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
	padding: 1vw 0 1vw 0;
}
.cvAREA p {
	line-height: 4vw;
    font-size: 1.2vw;
    width: 24%;
	position:relative;
    color: #fff;
    font-weight: 400;
    /*background: #e84a48;*/
	background:linear-gradient(#ff683e, #ffac36);
    border-radius: 0.4vw;
    text-align: center;
	box-shadow: 0vw 0.4vw #e28700;
}
.cvAREA p a {
	color:#fff;
	display:block;
	}
.cvAREA p a:hover {
	background:#f18988;
	transition:0.2s;
	}
.cvAREA p.CVleftbtn {
	margin-right:1vw;
	line-height: 1.5vw;
	font-size:2vw;
	font-weight:500;
}
.cvAREA .CVleftbtn .teltxt {
	font-size:0.5vw;
	margin-top:-0.5vw;
    font-weight: 300;
}
.CVleftbtn::before {
	content: "";
    display: inline-block;
    width: 70%;
    height: 70%;
    background: url(../img/icon-tel.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: 0.5vw;
    left: 2vw;
}
.CVrightbtn::before {
	content: "";
    display: inline-block;
    width: 50%;
    height: 50%;
    background: url(../img/icon-pc.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: 1vw;
    left: 2vw;
    pointer-events: none;
}
@media screen and (max-width: 767px){
.cvAREA {
	padding: 3vw 0 3vw 0;
}
.cvAREA p {
	line-height: 13vw;
    font-size: 3.5vw;
    width: 44%;
    position: relative;
    color: #fff;
    font-weight: 400;
    border-radius: 1.4vw;
}
.cvAREA p.CVleftbtn {
	margin-right:2vw;
	line-height: 12.5vw;
	font-size:3.5vw;
	font-weight:500;
}
.CVleftbtn::before {
	content: none;
}
.CVrightbtn::before {
	content: none;
}
}
/*/////////////////01.CVエリアここまで/////////////////*/


/*/////////////////02.カルーセル(フェード) ここから/////////////////*/
.slideBOX {
	position: relative;
    width: 70%;
    margin-left: 30%;
    z-index: -1;
}

.top-slide {
width: 100%;
position:absolute;
top:0;
height: auto;
opacity:0;
-moz-animation: imgTrans 12s infinite;
-webkit-animation: imgTrans 12s ease-in infinite;
animation: imgTrans 12s infinite;
}
.top-slide:first-child {
position:relative;
}

/*アニメーション設定*/
.topanime01 {
   -moz-animation-delay: 0s;
-webkit-animation-delay: 0s;
animation-delay: 0s;
}
.topanime02 {
-moz-animation-delay: 4s;
-webkit-animation-delay: 4s;
animation-delay: 4s;
}
.topanime03 {
-moz-animation-delay: 8s;
-webkit-animation-delay: 8s;
animation-delay:8s;
}
/*.topanime04 {
-moz-animation-delay: 12s;
-webkit-animation-delay: 12s;
animation-delay: 12s;
}
.topanime05 {
-moz-animation-delay: 16s;
-webkit-animation-delay: 16s;
animation-delay:16s;
}*/
@-webkit-keyframes imgTrans {
0% { opacity:0; }
10% { opacity:1; }
30% { opacity:1; }
55% { opacity:0; }
100% { opacity:0; }
}
@-moz-keyframes imgTrans {
0% { opacity:0; }
10% { opacity:1; }
30% { opacity:1; }
55% { opacity:0; }
100% { opacity:0; }
}
@keyframes imgTrans {
0% { opacity:0; }
10% { opacity:1; }
30% { opacity:1; }
55% { opacity:0; }
100% { opacity:0; }
}

@media screen and (max-width: 767px){
.slideBOX {
	width: 90%;
    margin-left: 10%;
}
}
/*/////////////////02.カルーセル(フェード) ここまで/////////////////*/


/*/////////////////02.ハンバーガーメニューここから/////////////////*/
header {
  width: 100%;
  height: 3vw;
    padding: 1.5vw;
    box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}

#nav-drawer {
  position: relative;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}

/*アイコンのスペース*/
#nav-open {
  display: inline-block;
  position: fixed;
  width: 3vw;
  height: 3.5vw;
  top: 1.5vw;
  right: 2vw;
  vertical-align: middle;
  z-index: 10000;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span::before, #nav-open span::after {
  position: absolute;
  height: 0.2vw;/*線の太さ*/
  width: 3vw;/*長さ*/
  border-radius: 3px;
  background: #555;
  display: block;
  content: '';
  cursor: pointer;
}
#nav-open span::before {
  bottom: -1.3vw;
}
#nav-open span::after {
  bottom: -2.6vw;
}

/*閉じる用の薄黒カバー*/
#nav-close {
  display: none;/*はじめは隠しておく*/
  position: fixed;
  z-index: 99;
  top: 0;/*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: .3s ease-in-out;
}

/*中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;/*最前面に*/
  width: 90%;/*右側に隙間を作る（閉じるカバーを表示）*/
  max-width: 38vw;/*最大幅（調整してください）*/
  height: 100%;
  /*padding-top: 5.7vw;*/
  background: #fff;/*背景色*/
  transition: .25s ease-in-out;/*滑らかに表示*/
  -webkit-transform: translateX(-105%);
  transform: translateX(105%);/*左に隠しておく*/
}

/*中身詳細*/
.nav-datiel {
	position: relative;
    height: auto;
    min-height: 100%;
}
.navlist li {
	border-bottom: #e2e2e2 solid 0.1vw;
    /*padding: 4vw;*/
	line-height: 5vw;
	box-sizing: border-box;
	background: #fff;
}
.navlist li a {
	display: block;
    padding-left: 1.5vw;
    box-sizing: border-box;
}
.navsns {
	margin-top: 3vw;
	display:flex;
	justify-content: center;
    margin-bottom: 3vw;
}
.navsns li {
	width:5%;
	margin-right:3vw;
}
.navsns li:last-child {
	margin-right:0vw;
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
  display: block;/*カバーを表示*/
  opacity: .5;
}

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);/*中身を表示（右へスライド）*/
  box-shadow: 6px 0 25px rgba(0,0,0,.15);
}
@media screen and (max-width: 767px){
header {
	height: 11vw;
    padding: 2.5vw;
	 top: 17vw;
}
/*アイコンのスペース*/
#nav-open {
  width: 8vw;
  height: 9.5vw;
}
#nav-open span, #nav-open span::before, #nav-open span::after {
  height: 0.5vw;/*線の太さ*/
  width: 8vw;/*長さ*/
}
#nav-open span::before {
  bottom: -3.3vw;
}
#nav-open span::after {
  bottom: -6.5vw;
}
/*中身*/
#nav-content {
  max-width: 80vw;/*最大幅（調整してください）*/
}

.navlist li {
	line-height: 15vw;
}
.navsns {
	margin-top: 9vw;
    margin-bottom: 10vw;
}

}

.menutit {
	padding-left: 1.5vw;
	background:#ecdfdf;
	line-height: 3vw;
	/*margin-top: 3vw;*/
}
li {
	position:relative;
}
.sankaku01 {
	position: absolute;
    top: 0vw;
    right: 1.5vw;
    z-index: 1;
}
.acoli {
	line-height: 5vw;
    border-bottom: #000 0.1vw solid;
    padding-left: 1.5vw;
}
.sankaku02 {
	display:inline-block;
	transform:rotate(90deg);
}
@media screen and (max-width: 767px){
.menutit {
	padding-left: 2.5vw;
	line-height: 9vw;
	/*margin-top: 3vw;*/
}
}
/*/////////////////02.ハンバーガーメニューここまで/////////////////*/


/*/////////////////03.全ページ共通 ここから/////////////////*/

.rogo {
	width:13%;
	margin-left: 2%;
}
.endtxttop {
	font-weight: bold;
    background: #2196f3;
    color: #fff;
    text-align: center;
    font-size: 1.2rem;
	padding: 0.5vw;
}

/*ファーストビュー*/
.fv {
	position:relative;
}
.MAINtit {
  width: 100%;
    position: absolute;
    top: 9vw;
    left: 0;
}
.topIMG {
	overflow: hidden;
    width: 90%;
    height: 56vw;
    margin-left: 10%;
}
.topIMG img {
	width:140%;
}
.ribon {
  width: 41%;
  position: absolute;
  left: 50vw;
  top: 56vw;
  transform: translate(-50%, -50%);
}
.catch01 {
	width: 60%;
    margin: 0 auto;
    text-align: center;
    margin-top: 33vw;
    margin-bottom: 13vw;
}

/*ボタン*/
.cvbtn01 {
	width: 40%;
    /*background: #e84a48;*/
	background:linear-gradient(#ff683e, #ffac36);
    color: #fff;
    line-height: 4vw;
    border-radius: 0.4vw;
}
.cvbtn01 a {
	color:#fff;
	display:block;
}
.cvbtn01 a:hover {
	background:#f18988;
	transition:0.2s;
	}
@media screen and (max-width: 767px){
	.rogo {
	width:45%;
	margin-left: 2.5%;
}
.fv {
	margin-top: 11vw;
}
.topIMG {
    height: 118vw;
}
.catch01 {
    width: 90%;
    margin-top: 69vw;
    margin-bottom: 23vw;
}
.catch01 .ttl01 {
    font-size: 5vw;
}
}


/*/////////////////03.全ページ共通 ここまで/////////////////*/


/*/////////////////04.コンテンツ1 ここから/////////////////*/
.sec01 {
	background: #daaaab;
	padding-bottom: 8vw;
	margin-bottom: 8vw;
}
.secCON {
	width:50%;
	margin:0 auto;
    text-align: center;
}
.tit01 {
	margin-bottom:3vw;
}
.titICON {
	width:4%;
	margin:0 auto;
    margin-bottom: 2vw;
}
.engTIT {
	width:64%;
	margin:0 auto;
}
.miniTIT,.miniTIT02,.miniTIT03 {
	position:relative;
	padding-top:2vw;
	margin-bottom:2.5vw;
}
.miniTIT::before {
	content:"ー";
	position:absolute;
	top: 0vw;
    left: 49%;
}
.miniTIT02::after {
	content:" >";
	transform: rotate(90deg);
	position:absolute;
	top: 5vw;
    left: 50%;
}
.miniTIT03::after {
	content:"ー";
	position:absolute;
	top: 4vw;
    left: 49%;
}
.sec01IMGbox {
	width: 80%;
    margin: 0 auto;
}
.movTIT {
	position:absolute;
	width:40%;
	top: -3vw;
    left: -4vw;
}
.point01 {
	width:57%;
	display: flex;
    flex-wrap: wrap;
	margin:0 auto;
	justify-content: space-between;
    margin-top: 2vw;
    margin-bottom: 2vw;
}
.point01 li {
	width:33%;
  padding: 2%;
  box-sizing: border-box;
}

.ttl01 {
    font-size: 1.8vw;
    margin-bottom: 0vw;
}
.catch01 p {
	font-size:1.5vw;
}
.catch01 .ttl01 {
  font-size: 2.4vw;
}

.desc01 {
  line-height: 1.8;
  font-size: 1.4vw;
  margin-bottom: 3vw;
}
.desc02 {
  line-height: 2;
  /* font-size: 1.2vw; */
  margin-top: 2vw;
}
.bana01 {
  font-size: 0;
}
@media screen and (max-width: 767px){
.sec01 {
    padding-bottom: 20vw;
	margin-bottom: 11vw;
}
.secCON {
	width:90%;
	padding-top: 9vw;
}
.titICON {
	width:7%;
    margin-bottom: 4vw;
}
.movTIT {
	position:absolute;
	width: 54%;
    top: -4vw;
    left: -9vw;
}
.engTIT {
    width: 100%;
}
.miniTIT,.miniTIT02,.miniTIT03 {
	padding-top:2vw;
}
.ttl01 {
    font-size: 5vw;
    margin-bottom: 2vw;
}
.tit01 {
    font-size: 4vw;
    margin-bottom: 14vw;
	margin-top: 4vw;
}

.catch01 p {
	font-size:4vw;
}
.catch01 .ttl01 {
  font-size: 5.4vw;
}

.miniTIT::before {
    top: 7vw;
}
.miniTIT02::after {
	top: 18vw;
}
.desc01 {
  line-height: 1.8;
  font-size: 4.5vw;
  margin-bottom: 6vw;
}
.youtube {
    height: 40vw;
}
.point01 {
    width: 93%;
    margin-top: 8vw;
    margin-bottom: 7vw;
}
.desc01 {
    font-size: 4vw;
}
.desc02 {
    font-size: 3.5vw;
}
}
/*/////////////////04.コンテンツ1 ここまで/////////////////*/


/*/////////////////05.コンテンツ2 ここから/////////////////*/
.sec02 {
	margin-top: 19vw;
}
.sec02 .titICON {
    width: 6%;
    margin: 0 auto;
    /* margin-left: 40%; */
    margin-bottom: 1vw;
}

.sec02 .engTIT {
    width: 39%;
    margin: 0 auto;
    /* margin-left: 40%;*/
}
.sec02 .miniTIT {
	text-align: center;
    /* margin-left: 28vw; */
    padding-top: 0vw;
}
.sec02 .miniTIT::before {
    content: " ";
}
.sec02 .secCON {
    width: 80%;
    /* background: #f3e7e9; */
    /* margin-left: 0; */
    padding-bottom: 10vw;
}
.osusumePOINT {
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* width: 70%;
    margin-left: 40%; */
}
.osusumePOINT li {
    width: 24%;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 1vw;
    /* padding: 1vw; */
    margin-bottom: 2vw;
    box-sizing: border-box;
}
.osusumePOINT li:nth-child(1n) {
	/* margin-right:1vw; */
}
.osusumeIMG {
	overflow:hidden;
	height: 13vw;
}
.osusumeIMG img {
	/* margin-top: -5.3vw; */
}
.txtBOX01 {
	width: 100%;
    margin: 0 auto;
    padding: 1vw;
    padding-top: 1.3vw;
    text-align: left;
    box-sizing: border-box;
}
.osusumePOINT .txtBOX01{
  line-height: 1.8;
}
.osusumePOINT .subTIT03{
	font-size: 1.2vw;
    line-height: 1.5vw;
    font-weight: bold;
}
@media screen and (max-width: 767px){
.sec02 {
	margin-top: 35vw;
}

.sec02 .secCON {
	width:85%;
}
.sec02 .titICON {
    width: 17%;
    margin-bottom: 2vw;
}
.sec02 .tit01 {
    margin-bottom: 13vw;
}
.sec02 .engTIT {
    width: 103%;
    margin-left: 0;
}
.sec02 .miniTIT {
    margin-left: 0;
}
.osusumePOINT {
    width: 100%;
    margin-left: 0;
	display: block;
}
.osusumePOINT li {
	width:100%;
	background:#fff;
	margin-bottom: 7vw;
	/*display: flex;
    flex-wrap: wrap;
	flex-flow: row-reverse;*/
}
.qa .osusumePOINT li {
    padding-right: 5%;

}
.osusumePOINT .subTIT03{
	line-height: 6vw;
	margin-bottom: 4vw;
    font-size: 4.5vw;
}
.osusumeIMG {
	width:100%;
	height: 31vw;
}
.osusumeIMG img {
	width: 120%;
    margin-left: -3vw;
    margin-top: -18vw;
}

.txtBOX01 {
	width: 100%;
    padding: 3.5vw;
    text-align: left;
}
}
/*/////////////////05.コンテンツ2 ここまで/////////////////*/


/*/////////////////06.コンテンツ3 ここから/////////////////*/
.sec03 {
	margin-top: 19vw;
	margin-bottom:22vw;
}
.sec03  .tit01 {
	width: 60%;
    text-align: center;
    margin: 0 auto;
    margin-top: 0;
}
.sec03 .tit02 {
	margin-left: 5vw;
    margin-bottom: 1vw;
}
.sec03 .engTIT {
    width: 40%;
    margin: 0 auto;
}
.sec03 .secCON {
	position: relative;
    width: 90%;
    background: #e4d5c6;
    /* background: linear-gradient(0deg,#fff 0%,#fff 40%,#e4d5c6 40%,#e4d5c6 100%); */
    margin: 0 auto;
    text-align: left;
    margin-right: 0;
    padding-top: 4vw;
    padding-bottom: 5vw;
    margin-bottom: 15vw;
    border-radius: 3vw 0 0 0;
}
.sec03 .prend01 {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	font-size: 1rem;
    border-radius: 3vw 0 0 0;
    background: #ffffffb8;
    color: #de4343;
    z-index: 10;
}
.sec03 .prend01 .endtxt {
	position: absolute;
    width: 30%;
    padding: 1vw;
    text-align: center;
    font-size: 200%;
    left: 35%;
    top: 45%;
    font-weight: bold;
    border: 5px solid #de4343;
}
.sec03 .prend02 {
	height: 5vw;
    border-radius: 0 2vw 0 0;
    background: #2196f3;
	color: #fff;
}
.sec03 .prend02 .endtxt {
	width: 100%;
	border: none;
	top: -7%;
	left: 0;
	
}
.sec03 .prend03 {
	height: 4vw;
	border-radius: 2vw 2vw 0 0;

}
.sec03 .prend03 .endtxt {
	width: 100%;
	border: none;
	top: -7%;
	left: 0;
	border-radius: 2vw 2vw 0 0;
    font-size: 1.4rem;
	
}
.proCON .proInner .flexboxdown {
	padding-top: 14vw;
}



.sec03 .proflex {
    display: flex;
    margin-left: 5%;
    flex-wrap: wrap;
    margin-right: 10vw;
} 
.sec03 .secCON02 .proflex {
    margin-left: 14vw;
    margin-right: 0;;
} 

.sec03 .secCON .secInner {
	position:relative;
}
.insotuICON {
	width: 9%;
    position: absolute;
    left: 25vw;
    top: 0;
}
.code {
	width: 35%;
    display: flex;
	flex-wrap: wrap;
	align-items: baseline;
}
.code .titICON {
	width:15%;
	margin:0 auto;
    margin-bottom: 2vw;
}
.sec03 .secCON .titICON {
	margin-left:0;
}
.sec03 .secCON .titICON02 {
    width: 20%;
    margin: 0 auto;
    margin-bottom: 2vw;
}
.codeTXT {
	width: 80%;
}

.proIMGbox {
	width: 39%;
    display: flex;
    flex-wrap: wrap;
}
.proIMGbox p {
    width:50%;
  padding: 1%;
  font-size: 0;
  box-sizing: border-box;
}
.proIMGbox p:first-child {
	width:100%;
}
.proIMGbox p:nth-child(2) {
  /* margin-left: 18%; */
}

.proTXTbox {
	width: 51%;
    margin-left: 1.5vw;
}
.sec03 .subTIT02 {
  font-size: 1.5vw;
  margin-bottom: 0vw;
}
.sec03 .ttl02{
	font-size: 2vw;
    line-height: 2.3vw;
    margin-bottom: 1vw;
    margin-top: 1vw;
}
.sec03 .desc03{
    font-size: 1.3vw;
    margin-top: 0vw;
}
.commentArea {
   font-size: 1.2vw;
    /* margin-top: 1vw; */
    line-height: 2;
    /*padding-left: 2.5vw;*/
}
.commentArea02 {
	width: 80%;
}
.commentArea li {
	line-height: 2vw;
    margin-bottom: 0.5vw;
}
.comment-note {
  font-size: 1vw;
  color: #545454;
}
.proditial {
    /* border: 1px solid #1a1a1a; */
    box-sizing: border-box;
    border-radius: 1vw;
    padding: 2vw;
    background: #fff;
    margin-top: 2vw;
    /* margin-left: 3vw; */
    width: 100%;
}
.bgblk {
  width: 31%;
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    /*margin-bottom: 1vw;*/
    margin-right: 1vw;
    line-height: 2.5;
}
.bgblk02 {
	line-height:6vw;
}
.proLEFT li:last-child {
	/*padding-top: 1vw;*/
    margin-bottom: 0vw;
}
.proLEFT li.btmli {
	margin-bottom:0vw;
}

@media screen and (max-width: 767px){
.sec03 {
	margin-top: 29vw;
}
.sec03 .tit01 {
    width: 100%;
}
.sec03 .secCON {
	width: 90%;
	padding-top: 8vw;
	padding-bottom: 13vw;
    border-radius: 9vw 0 0 0;
    margin-top: 9vw;
	/*background:#e4d5c6;*/
}
.sec03 .secCON .titICON02 {
	width:22%;
    margin-left: 0;
}
.sec03 .prend01 {
	font-size: 100%;
	}
.sec03 .prend01 .endtxt {
	width: 70%;
	font-size: 1.5rem;
	left: 15%;
    top: 5%;
}
.sec03 .prend02 {
	height: 11vw;
}

.sec03 .engTIT {
    width: 63%;
}
.code {
    width: 60%;
	margin-bottom: 5vw;
}
.codeTXT {
	width: 100%;
}
.sec03 .tit02 {
    margin-left: 6vw;
}
.sec03 .desc03 {
    font-size: 3.5vw;
    line-height: 1.8;
    margin-bottom: 7vw;
}
.insotuICON {
    width: 26%;
    right: 8vw;
    left: auto;
    top: 0vw;
}
.proIMGbox {
    width: 100%;
    margin-left: 3vw;
}
.sec03 .proflex {
    margin-right: 7vw;
}
.proIMGbox p {
    width: 50%;
}
.proIMGbox p:nth-child(2) {
}
.proTXTbox {
	margin-left: 3vw;
    width: 100%;
}
.commentArea {
	width:100%;
    font-size: 3.5vw;
    margin-top: 4vw;
    line-height: 5.5vw;
    /* padding-left: 2.5vw; */
}
.commentArea li {
  margin-bottom: 3vw;
	line-height: 5vw;
  text-indent: -1rem;
  padding-left: 1rem;
}
.commentArea02 {
	width:92%;
}
.comment-note {
  font-size: 3.2vw;
}
.sec03 .subTIT02 {
    font-size: 3.5vw;
  margin-bottom: 2.5vw;
}
.sec03 .ttl02{
	font-size: 4.5vw;
	margin-bottom: 2vw;
    line-height: 6vw;
}
.proditial {
    border: 0.3vw solid #1a1a1a;
    box-sizing: border-box;
    padding: 3vw;
    margin: 0vw;
    margin-top: 4vw;
    width: 100%;
}
.bgblk {
    width: 100%;
    font-size: 3.5vw;
    text-align: center;
    margin-bottom: 1vw;
    margin-right: 1vw;
    line-height: 9vw;
}
.proLEFT li:last-child {
    width: 100%;
    text-align: center;
    padding-top: 1vw;
    margin-bottom: 3vw;
	font-size: 4vw;
}
.proLEFT li.btmli {
	margin-bottom:0vw;
}
}

/*おすすめ2*/
.sec03 .secCON02 {
    background: #aaccba;
	margin-left:0;
    border-radius: 0 3vw 0 0;
	padding-top: 7vw;
}
.secCON02 .proIMGbox p:nth-child(2) {
  margin-left: 0;
}
.secCON02 .tit02 {
	margin-left: 14vw;
}
.secCON02 .proIMGbox {
  /* margin-left: 25%; */
}
.secCON02 .proTXTbox {
  /* margin-left: 25%; */
}
.secCON02 .proditial {
	width:90%;
}

.secCON02 .insotuICON {
    left: 33vw;
    top: -1vw;
}
@media screen and (max-width: 767px){
.sec03 .secCON02 {
	/*background:#aaccba;*/
	padding-top: 18vw;
}
.secCON02 .proIMGbox {
    margin-left: 11%;
}

.sec03 .tit02 {
	margin-left: 10vw;
	padding-right: 5vw;
}
.secCON02 .proTXTbox {
    margin-left: 0;
}
.secCON02 .proditial {
    width: 100%;
}
.secCON02 .insotuICON {
	left: 57vw;
    /* right: -1vw; */
    top: -1vw;
}
.sec03 .secCON02 .proflex {
    margin-left: 10vw;
    margin-right: 6vw;
}
.secCON02 .proIMGbox {
    margin-left: 0;
}

}

/*すべてのプログラム*/
.sec03 .ttl01 {
    font-size: 2vw;
    margin-bottom: 4vw;
}
.sec03 .innericon {
	width: 12%;
    top: -1vw;
    left: 0;
    z-index: 1;
}
.sec03 .innericon2 {
	z-index: 11;
}
.proCON {
	width:50%;
	margin:0 auto;
	display:flex;
	flex-wrap:wrap;
	justify-content: space-between;
}
.proCON .proInner {
    position: relative;
    width: 100%;
    margin-bottom: 4vw;
    border: 0.1vw solid #d4d4d4;
    border-radius: 2vw;
    box-sizing: border-box;
}
.proCON .proInner .flexbox {
    display: flex;
    flex-wrap: wrap;
}
.proCON .proInner .flexboxdown {
	padding-top: 4vw;
}
.proNo {
	position: absolute;
    font-size: 4vw;
    top: 1.5vw;
    left: 2vw;
    z-index: 1;
}

.proCON .proInner a {
	color:#000;
}
.proCON img:hover {
	width:120%;
	margin-top:-10%;
	margin-left: -5%;
	transition:0.3s;
}
.proCON .proIMG02 img:hover {
	width:176%;
	margin-top:-10%;
	margin-left: -5%;
	transition:0.3s;
}

.sec03-2 .proTXTbox {
	margin-left: 0vw;
}
.sec03-2 .proIMGcon {
    width: 40%;

}
.sec03-2 .proditial {
    margin-top: 1vw;
}
.sec03-2  .proditial ul {
}
.sec03-2 .bgblk {
    width: 23%;
    display: block;
    margin-bottom: 0vw;
    margin-right: 0vw;
    border-right: 1px solid #d4d4d4;
    background: #ffffff;
    color: #2c2c2c;
    text-align: left;
}
.sec03-2 .proLEFT li:last-child {
    width: 70%;
    margin: 0 auto;
    text-align: left;
    margin-bottom: 0vw;
}
.sec03-2 .btndtl {
    width: 60%;
}
.proCON .proIMG {
	overflow: hidden;
    height: 17.5vw;
    margin-top: 6%;
    margin-left: 6%;
    border-radius: 1vw 0 0 0;
}
.proCON .proIMG img {
    transform: scale(1.7);
    /* width: 125%; */
    margin-top: 4vw;
}
.schrdule01 {
    background: #e9e9e9;
    border-radius: 2vw;
    text-align: center;
    line-height: 3vw;
    margin-top: 1vw;
}
.proCON .proditial {
    border: none;
    padding: 0;
    width: 100%;
    margin: 0 auto;
    font-size: 0.8vw;
    margin-top: 1vw;
}
.proditial ul {
	width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 0.5vw;
}
.sec03-2 ul.proLEFT {
    margin-bottom: 0;
}

/*.proditial .proLEFT {
	width: 28%;
    padding: 0.5vw;
}

.proditial .proRIGHT {
	width:63%;
}*/
.sec03 .prend03 {
	    height: 4vw;
}
.sec03 .prend03 .endtxt {
}
.proCON .proTXTbox {
	width: 56%;
    margin: 0 auto;
	margin-bottom: 1vw;
    margin-top: 1vw;
}
.proTXTinner {
}
/*.proCON .proTXTbox02{
	height:37vw;
}*/
.proCON .proTXTbox .codeTXT{
    margin-left: 0;
    line-height: 1.5;
}
.proCON .proTXTbox .tit02{
    font-size: 1.4vw;
    font-weight: bold;
    margin-left: 0;
    line-height: 1.5vw;
    margin-bottom: 0.5vw;
}
.proCON .proIMG02 img {
   width: 156%;
    margin-top: -3vw;
}

.desc04 {
  font-size: 1.2vw;
  margin-top: 1vw;
    line-height: 1.5;
}
.proIMG {
  font-size: 0;
}
.btndtl {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    border: 1px solid #000;
    line-height: 3vw;
    border-radius: 3vw;
    margin-top: 2vw;
    margin-bottom: 1vw;
}
.btndtl a {
	display: block;
}
@media screen and (max-width: 767px){
.sec03-2 .ttl01 {
    font-size: 5vw;
    margin-bottom: 11vw;
}
.sec03-2 .tit02 {
	font-weight:bold;
}
.sec03 .innericon {
    width: 26%;
    top: 47vw;
	left: auto;
    right: 1vw;
    z-index: 1;
}
.sec03-2 .proCON {
    width: 90%;
	margin:0 auto;
}
.proNo {
    font-size: 11vw;
    top: 2.5vw;
    left: 5vw;
}
.btndtl {
    width: 100%;
    line-height: 12vw;
    border-radius: 6vw;
    margin-top: 6vw;
    margin-bottom: 4vw;
}
.sec03 .prend03 {
	    height: 12vw;
}
.sec03 .prend03 .endtxt {
}
	

.proCON .proInner {
    width: 100%;
	margin-bottom: 7vw;
}
.proCON .proInner .flexboxdown {
    padding-top: 15vw;
}
	
.sec03-2 .proIMGcon {
    width: 100%;
}
.proCON .proIMG {
    height: 45vw;
    margin-top: 3%;
    margin-left: 3%;
    margin-right: 3%;
}
.proCON .proTXTbox {
    padding-top: 4vw;
    /* height: 80vw; */
    width: 90%;
}
.middleTXT {
    font-size: 3.6vw;
}
.sec03-2 .proCON .proTXTbox .tit02 {
    font-size: 4.5vw;
    width: 100%;
    margin: 0 auto;
    padding-right: 0vw;
    margin-top: 2vw;
    line-height: 6vw;
    margin-bottom: 3vw;
}
.sec03-2 .proCON .proIMG img {
	width: 100%;
    /* margin-left: -3vw; */
    margin-top: 0;
    transform: none;
}
.proCON img:hover {
	width:140%;
}

.sec03-2 .desc04 {
	height: 17vw;
    font-size: 3vw;
    line-height: 4vw;
}
.sec03-2 .proLEFT li:last-child {
    width: 100%;
	font-size:3vw;
    text-align: center;
    padding-top: 2vw;
    padding-bottom: 2vw;

}
.sec03-2 .proditial {
    margin-top: 7vw;
}
.sec03-2 .bgblk {
    width: 100%;
    text-align: center;
    background: #e6e6e6;
}
.sec03-2 ul.proLEFT {
    margin-bottom: 0;
    border: 1px solid #e6e6e6;
}
.txtHIGHT02 {
	line-height:4vw;
}
.sec03-2 .btndtl {
    width: 90%;
    line-height: 13vw;
    border-radius: 7vw;
    margin-top: 7vw;
    margin-bottom: 7vw;
}
}
/*/////////////////06.コンテンツ3 ここまで/////////////////*/


/*/////////////////07.コンテンツ4 ここから/////////////////*/
.sec04 {
	background:#76bfb3;
	padding-bottom: 10vw;
}
.sec04 .point01 {
	width:36%;
}
.sec04 .miniTIT03 {
	padding-top: 4vw;
}
.sec04 .miniTIT03::after {
    top: 8.5vw;
}
.sec04 .point01 li {
	width:48%;
}
.sec04 .txtBOX p {
    font-size: 0.8vw;
}
.sec04BOX {
	width:100%;
	margin:0 auto;
	background:#fff;
	margin-top: 5vw;
	padding-bottom: 9vw;
}
.sec04BOXcon {
	margin-bottom:4vw;
}
.googlemap {
	width:80%;
	height:30vw;
	margin:0 auto;
    margin-top: 2vw;
}

.schedule02 {
	width: 80%;
    margin: 0 auto;
    border: #000 solid 0.1vw;
    line-height: 4vw;
	box-sizing:border-box;
	margin-top:3vw;
	margin-bottom:3vw;
}
.schedule02 li {
	display: flex;
    flex-wrap: wrap;
	justify-content: center;
	border-bottom: #000 solid 0.1vw;
}
.schedule02 li:last-child {
	border-bottom: none;
}
.schedate p {
	width:60%;
}
.schedate .check {
	width:13%;
}
.scheTIT03 {
	background: #e4d5c6;
}
@media screen and (max-width: 767px){
.sec04 .point01 {
    width: 72%;
}
.sec04BOX {
	padding-bottom:14vw;
	margin-top: 5vw;
}
.sec04 .txtBOX p {
    font-size: 3.5vw;
}
.sec04 .miniTIT03 {
	padding-top:12vw;
	margin-bottom: 9.5vw;
}
.sec04 .miniTIT03::after {
    top: 26.5vw;
    left: 48%;
}
.sec04 .miniTIT0302::after {
    top: 19.5vw;
	left: 48%;
}
.googlemap {
	width:85%;
    height: 80vw;
}
.schedule02 {
	width:85%;
	margin-top: 6vw;
    margin-bottom: 3vw;
}
.schedule02 li {
	display:block;
}
.schedule02 .scheTIT03 {
	line-height:10vw;
}
.schedate p {
	width:80%;
	margin:0 auto;
}
.schedate p {
	padding-top: 4vw;
   padding-bottom: 4vw;
	line-height:4vw;
}
.schedate .check {
	width:80%;
	padding-top: 4vw;
   padding-bottom: 4vw;
}
.cvbtn01 {
    width: 80%;
    line-height: 13vw;
    border-radius: 1.4vw;
    margin-top: 7vw;
}
}
/*/////////////////07.コンテンツ4 ここまで/////////////////*/


/*/////////////////08.コンテンツ5 ここから/////////////////*/
.sec05 {
	margin-top: 19vw;
    margin-bottom: 15vw;
}
.sec05 .txtBOX01 {
    border: 0.1vw solid #000;
    border-top: none;
}
.sec05 .tit01 {
	text-align:center;
	margin-top: 10vw;
}
.sec05 .engTIT {
	width: 22%;
    margin: 0 auto;
}
.sec05CON {
	width:80%;
	margin:0 auto;
}
sec05CONin {
	width:70%;
	position:relative;
}
.taikenNo {
	position:absolute;
	top:1vw;
	left:1vw;
	color:#fff;
	font-size:5vw;
}
.sec05 .osusumeIMG {
    height: 19vw;
}
@media screen and (max-width: 767px){
.sec05 .tit01 {
	margin-bottom:16vw;
	margin-top: 27vw;
}
.sec05 .engTIT {
    width: 40%;
}
.sec05 .txtBOX01 {
	width:80%;
	padding:5vw;
}
.sec05 .osusumeIMG {
	width:80%;
	height:35%;
	margin:0 auto;
}
}
/*/////////////////08.コンテンツ5 ここまで/////////////////*/

/*/////////////////09.コンテンツ6 ここから/////////////////*/
.qa .engTIT {
    width: 9%;
}
.qa .miniTIT {
    text-align: center;
    	padding-top: 0vw;
}
.qa .miniTIT::before {
    content: " ";
}
.qa .subTIT03 {
	margin-bottom:1.5vw;
}
.qa .subTIT03::before {
	content: '';
    display: inline-block;
    width: 25px;
    height: 25px;
    background-image: url(../img/q.png);
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
}
.qaTXT::before {
	content: '';
    display: inline-block;
    width: 25px;
    height: 25px;
    background-image: url(../img/a.png);
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
}
@media screen and (max-width:767px) {
.qa .engTIT {
	width:22%;
}
.qa .titICON {
	width:17%;
}
.qa .miniTIT {
	margin-left:7.5vw;
}
.qa .subTIT03 {
	margin-bottom:5.5vw;
}

.qa .txtBOX01 {
	width:100%;
	padding:6vw;
	padding-right:0vw;
}
}
/*/////////////////09.コンテンツ6 ここまで/////////////////*/





/*/////////////////02.カルーセル(スライダー) ここから/////////////////*/
  .slick-slide img {
    width: 100%;
    height: auto;
  }
  .mypattern{
    width: 100%;
  }
  .mypattern .slick-slide{
    margin: 0vw;
  }
  /*カルーセル下のドット*/
.slick-dots li button:before {
	font-size:5vw;
}
/*やじるし*/
.slider {
	position:relative;
}
/*左*/
.prev {
	width: 10%;
	position: absolute;
    top: -30%;
    left: 0vw;
    font-size: 5vw;
    z-index: 2;
    display: block;
}
/*右*/
.next {
	width: 10%;
    position: absolute;
    top: -30%;
    right: 0vw;
    font-size: 5vw;
    z-index: 2;
}

/*表示オプション*/
/*左右の画像を白黒*/
/*.mypattern .slick-slide:not(.slick-center) {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: 0.2s linear;
}*/

/*左右の画像を透過*/
/*.mypattern .slick-slide:not(.slick-center) {
  -webkit-filter: opacity(70%);
  -moz-filter: opacity(70%);
  -o-filter: opacity(70%);
  -ms-filter: opacity(70%);
  filter: opacity(70%);
  transition: 0.2s linear;
}*/

/*左右の画像を縮小*/
.mypattern .slick-slide:not(.slick-center) {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}
@media screen and (max-width:767px) {
.sec05 .osusumeIMG img {
	margin-top:0;
	margin-left:0;
}
/*カルーセル下のドット*/
.slick-dots li button:before {
	font-size:13vw;
}
/*やじるし左右*/
.prev,.next {
	font-size:10vw;
}
/*左*/
.prev {
	width: 19%;
    top: -12%;
}
/*右*/
.next {
	width: 19%;
    top: -12%;
}
}
/*/////////////////02.カルーセル(スライダー) ここまで/////////////////*/



/*/////////////////10.ページ内リンク調整 ここから/////////////////*/
#toku,#reason,#osusume,#allpro,#info,#message,#QA,#contact {
	margin-top:-6vw;
	padding-top:6vw;
}
@media screen and (max-width:767px) {
#toku,#reason,#osusume,#allpro,#info,#message,#QA,#contact {
	margin-top:-11vw;
	padding-top:11vw;
}
}
/*/////////////////10.ページ内リンク調整 ここまで/////////////////*/





/*/////////////////11.フォーム(ファイル名) ここから/////////////////*/
/* Form */
.Form { width: 70%; margin: 0 auto; padding:9rem 0 9rem; }
.FormInner { /*width:860px;*/ margin:0 auto; }
.formtit {text-align:center; margin-bottom: 4vw; margin-top: 18vw; }
.formtit p {
	background: #e8e1da;
    border-radius: 1vw;
    padding: 3vw;
    line-height: 2vw;
}
.formtit .formComment {
    background: none;
    font-size: 0.8rem;
    margin-top: 14px;
    line-height: 1.5;
    text-align: left;
    padding: 0;
}
.formtit h5 { font-size: 2vw;
    margin-bottom: 2vw;
	}
.Form dl { margin-bottom:10px; }
.Form dl { 
  margin-bottom:10px; 
  display: flex;
  align-items: center;
}
/*.Form dl.onof {
	display:none;
}*/
/*.Form .onof dd input {
	margin-bottom:2vw;
}*/
.Form dl.onof2 {
	display:none;
}
.Form dl::after { content:''; display:table; clear:both; height:0; }
.Form dt { 
  float:left; width:30%; font-size:1.3vw; font-weight:400; text-align:left; 
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.Form dt small { font-size:0.7em; }
.Form dt .must { display:block; position:relative; float:right; margin:0 1.0em 0 1.0em; padding:0.25em; border-radius:2px; color:#fff; line-height:1.0; font-size:0.8em; background:#f12800; }
.Form dt .nini { display:block; position:relative; top:-0.1em; float:right; margin:0 1.0em 0 1.0em; padding:0.25em; border-radius:2px; color:#fff; line-height:1.0; font-size:0.8em; background:#4456b1; }
.Form dd { float:left; width:70%; }
.Form dd span { display: block; margin: -1.0em 0 0; }
.Form dd input[type='text'],
.Form dd textarea { display:block; width:92%; padding:0.4em 1.0em; border:#dadada 1px solid; border-radius:3px; line-height:1.4em; font-size:16px; background:#f8f8f8; -webkit-appearance:none; -moz-appearance:none; appearance:none; }
.Form dd textarea { min-height:5em; }
.Form dd select { display:inline-block; min-width:32%; padding:0.4em 1.0em; border:#dadada 1px solid; border-radius:3px; line-height:1.4em; font-size:16px; background:#f8f8f8; -webkit-appearance:none; -moz-appearance:none; appearance:none; }
.Form dd .select { display:inline-block; position:relative; }
.Form dd .select::before { content:'▼'; position:absolute; top:50%; right:1.5em; margin-top:-0.5em; font-size:0.5em; }
.Form dd label { display:inline-block; clear:both; margin-top:0.25em; margin-right:0.6em; margin-bottom:0.5em; }
.Form dd label input[type='radio'] { position:relative; top:0.4em; float:; width:1.4em; height:1.4em; margin-right:0.25em; border:#dadada 1px solid; border-radius:1.4em; background:#fff; -webkit-appearance:none; -moz-appearance:none; appearance:none; }
.Form dd label input[type='radio']:checked { border:#666 6px solid; }
.Form form p { margin-top:2.0rem; text-align:center; }
.Form form p input[type='submit'] { display:inline-block; position:relative; min-width:40%; width:40%; margin:0; padding:0; border-radius:5px; border:#ff3813 1px solid; color:#fff; line-height:5vw; font-size:1.5vw; font-weight:600; text-align:center; outline:0; -webkit-appearance:none; -moz-appearance:none; appearance:none; }
.Form form p input[type='submit'] { box-shadow:inset 0 1px 0 0 rgba(255,255,255,0.35), 0 5px 0 0 rgba(0,0,0,0.1); text-shadow:0 1px 0 rgba(0,0,0,0.25); transition:0.4s;
    background:#ff6c3a;
    background:-moz-linear-gradient(top, #ff6c3a 0%, #ff3813 100%);
    background:-webkit-linear-gradient(top, #ff6c3a 0%,#ff3813 100%);
    background:linear-gradient(to bottom, #ff6c3a 0%,#ff3813 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff6c3a', endColorstr='#ff3813',GradientType=1 );
}
.Form form p input[type='submit']:hover { top:3px; box-shadow:inset 0 1px 0 0 rgba(255,255,255,0.35), 0 2px 0 0 rgba(0,0,0,0.1); transition:0.4s; cursor:pointer;
    background:#ff3813;
    background:-moz-linear-gradient(top, #ff3813 0%, #ff6c3a 100%);
    background:-webkit-linear-gradient(top, #ff3813 0%,#ff6c3a 100%);
    background:linear-gradient(to bottom, #ff3813 0%,#ff6c3a 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff3813', endColorstr='#ff6c3a',GradientType=1 );
}
.btn_back { display:inline-block; min-width:36%; width:36%; margin:0 4% 0 0; padding:0; border:0; border-top:#eee 1px solid; border-radius:5px; color:#404040; line-height:60px; font-size:24px; font-weight:600; text-align:center; background:#ddd; outline:0; box-shadow:0 0 0 1px #ccc; transition:0.4s; -webkit-appearance:none; -moz-appearance:none; appearance:none; }
.btn_back:hover { background:#aaa; }

.formTable{ width: 100%; }
.formTable th{ width: 25%; }
.formTable th, .formTable td { padding: 1.0em; border-bottom: 1px solid #dedede; text-align:left; }

@media screen and (max-width:767px) {
/* Form */
.Form { width:80%; margin-bottom:30px; }
.FormInner { width:100%; margin:0 auto; }
.formtit {margin-bottom: 13vw; }
.formtit p {
	background: #e8e1da;
    border-radius: 2vw;
    padding: 3vw;
    line-height: 6vw;
}
.formtit .formComment {
    background: none;
    font-size: 0.8rem;
    margin-top: 14px;
    line-height: 1.5;
    text-align: left;
    padding: 0;
}
.formtit h5 { 
	font-size: 6vw;
	line-height:7vw;
    margin-bottom: 4vw;
	}
.Form header { width:90%; margin:0 auto 15px; padding:30px 0 0; color:#7b7b7b; font-weight:600; text-align:center; }
.Form header h3 { margin-bottom:1.0rem; line-height:1.0; font-size:1.2em; }
.Form header h3 i { position:relative; top:-0.01em; margin-right:0.3em; font-size:1.1em; }
.Form header p { color:#202020; font-size:1.3rem; }
.Form header p b {  color:#ff3636; }

.Form dl { margin-bottom:9vw; }
.Form .dlMGN {
	margin-bottom:1vw;
}
.Form dl::after { content:''; display:table; clear:both; height:0; }
.Form dt { float:none; width:100%; padding-top:0; font-size:4.5vw; font-weight:bold; text-align:left; }
.Form dt small { font-size:0.7em; }
.Form dt .must { display:inline-block; position:relative; top:-0.1em; float:none; margin:0 1.0em 0 0.5em; padding:0.25em; border-radius:2px; color:#fff; line-height:1.0; font-size:3.5vw; background:#f12800; }
.Form dt .nini { display:inline-block; position:relative; top:-0.1em; float:none; margin:0 1.0em 0 0.5em; padding:0.25em; border-radius:2px; color:#fff; line-height:1.0; font-size:1.1rem; background:#4456b1; }
.Form dd { float:none; width:100%; margin-bottom:5px; }
.Form dd span { display: block; margin: -1.0em 0 0; }
.Form dd input[type='text'],
.Form dd textarea { display:block; width:89%; padding:0.4em 1.0em; border:#dadada 1px solid; border-radius:3px; line-height:1.4em; font-size:16px; background:#f8f8f8; -webkit-appearance:none; -moz-appearance:none; appearance:none; }
.Form dd textarea { min-height:7em; }
.Form dd textarea + .note { margin-top:0.5em; font-size:0.8em; text-align:left; }
.Form dd select { display:inline-block; min-width:32%; padding:0.4em 1.0em; border:#dadada 1px solid; border-radius:3px; line-height:1.4em; font-size:16px; background:#f8f8f8; -webkit-appearance:none; -moz-appearance:none; appearance:none; }
.Form dd .select { display:inline-block; position:relative; }
.Form dd .select::before { content:'▼'; position:absolute; top:50%; right:1.5em; margin-top:-0.5em; font-size:0.5em; }
.Form dd label { display:block; margin:0 0 0.25rem 0; }
.Form dd label input[type='radio'] { position:relative; top:0.4em; float:; width:1.4em; height:1.4em; margin-right:0.25em; border:#dadada 1px solid; border-radius:1.4em; background:#fff; -webkit-appearance:none; -moz-appearance:none; appearance:none; }
.Form dd label input[type='radio']:checked { border:#666 6px solid; }
.Form form p { margin-top:11vw; text-align:center; }
.Form form p input[type='submit'] { display:block; position:relative; min-width:40%; width:100%; margin:0; padding:0; border-radius:5px; border:#ff3813 1px solid; color:#fff; line-height:60px; font-size:24px; font-weight:600; text-align:center; outline:0; -webkit-appearance:none; -moz-appearance:none; appearance:none; }
.Form form p input[type='submit'] { box-shadow:inset 0 1px 0 0 rgba(255,255,255,0.35), 0 5px 0 0 rgba(0,0,0,0.1); text-shadow:0 1px 0 rgba(0,0,0,0.25); transition:0.4s;
    background:#ff6c3a;
    background:-moz-linear-gradient(top, #ff6c3a 0%, #ff3813 100%);
    background:-webkit-linear-gradient(top, #ff6c3a 0%,#ff3813 100%);
    background:linear-gradient(to bottom, #ff6c3a 0%,#ff3813 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff6c3a', endColorstr='#ff3813',GradientType=1 );
}
.btn_back { display:block; min-width:36%; width:100%; margin:0 0 10px 0; padding:0; border:0; border-top:#eee 1px solid; border-radius:5px; color:#404040; line-height:50px; font-size:21px; font-weight:600; text-align:center; background:#ddd; outline:0; box-shadow:0 0 0 1px #ccc; transition:0.4s; -webkit-appearance:none; -moz-appearance:none; appearance:none; }
.btn_back:hover { background:#aaa; }

.formTable{ width: 100%; }
.formTable th{ width: 25%; }
.formTable th, .formTable td { padding: 1.0em; border-bottom: 1px solid #dedede; text-align: left; }
}

.chusyaku {color: #c90000;}

/*/////////////////11.フォーム(ファイル名) ここまで/////////////////*/


/*/////////////////12.フッター ここから/////////////////*/
/* Foot */
.Foot { padding-top: 4vw; color:#606060; font-size:1.1vw; text-align:center; background:#f8f8f8; margin-bottom: 6vw; }
.FootInner { width:80%; margin:0 auto; margin-bottom:2.0rem; }
.FootInner::after { content:''; display:table; clear:both; height:0; }
.FootInner { }
.FootInner dt { width: 20%;
    margin: 0 auto;
    position: relative;
    margin-bottom: 3.0rem;
 }
.FootInner dt b { font-size:1.3rem; font-weight:600; }
.FootInner dt::before { content:''; display:block; position:absolute; bottom:-14px; left:65%; width:3vw; height:1px; margin-left:-50px; background:#000; }
.FootInner dd {  }
.FootAccess { color:#fff; background:#4456b1; }
.FootAccess::after { content:''; display:table; clear:both; height:0; }
.FootAccess iframe { display:block; float:right; width:50%; height:240px; margin:0; padding:0; border:0; }
.FootAccessTxt { display:flex; justify-content:center; align-items:center; height:240px; }
.FootAccessTxt p { font-size:1.4rem; }
.FootAccessTxt p b { display:inline-block; margin-bottom:0.5rem; font-size:1.8rem; font-weight:600; }
.Foot .copyright { display:block; padding:0; color:rgba(255,255,255,0.6); line-height:50px;text-align:center;background:#000; }
.pageTop { display:block; position:fixed; right:0; bottom:0; z-index:201; width:50px; height:50px; background:rgba(110,110,110,0.75); cursor:pointer; }
.pageTop::before { content:''; display:block; position:absolute; left:50%; top:50%; width:7px; height:7px; margin:-3px 0 0 -3px; border:transparent 2px solid; border-top:#fff 2px solid; border-right:#fff 2px solid; transform:rotate(-45deg); }

@media screen and (max-width:767px) {
/* Foot */
/*.Foot { padding:2.0rem 0 0; color:#606060; font-size:1.0rem; text-align:center; background:#f8f8f8; }*/
.FootInner { min-width:90%; width:90%; margin:0 auto 1.0rem; }
.FootInner::after { content:''; display:table; clear:both; height:0; }
.FootInner { }
.FootInner dt { width:52%; position:relative; margin-bottom:2.0rem; }
.FootInner dt::before { content:''; display:block; position:absolute; bottom:-10px; left:75%; width:5vw; height:1px; margin-left:-50px; background:#000; }
.FootInner dd { font-size:3vw; }
.Foot .copyright { display: block;
    padding: 5vw;
    padding-bottom: 7vw;
    color: #fff;
    line-height: 4vw;
    font-size: 3vw;
    font-style: italic;
    text-align: center;
    letter-spacing: 0.0rem;
    background: #000;
	margin-bottom: 19vw;
 }
.pageTop { display:block; position:fixed; right:0; bottom:41vw; z-index:9999; width:50px; height:50px; background:rgba(110,110,110,0.75); cursor:pointer; }
.pageTop::before { content:''; display:block; position:absolute; left:50%; top:50%; width:7px; height:7px; margin:-3px 0 0 -3px; border:transparent 2px solid; border-top:#fff 2px solid; border-right:#fff 2px solid; transform:rotate(-45deg); }
}
/*/////////////////12.フッター ここまで/////////////////*/
.mail .h1txt {
	font-size: 1.1vw;
    line-height: 3.5vw;
    width: 90%;
	margin-left:5%;
}
.mail .rogomail {
	width: 20%;
    margin-left: 5%;
    margin-top: 1vw;
}
@media screen and (max-width:767px) {
.mail .h1txt {
	font-size: 3.5vw;
    line-height: 3.5vw;
    width: 90%;
    margin: 0 auto;
}
.mail .rogomail {
	width: 60%;
	margin: 0 auto;
	margin-top:3vw;
}
}



/* add */
.disabled {
  display: none;
}
@media screen and (max-width:767px) {
  .annotations li {
    text-indent: -2.2vw;
    padding-left: 2.2vw;
  }
}
.checkbox-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1rem;
  row-gap: 0.25rem;
}
.Form dd label.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.Form dd span.checkbox-text {
  margin: 0;
}
