/*ここからsp_css（〜750px）*/
.pc { display: none !important; }
.sp { display: block !important; }	
ul{list-style: none;}
a:link, a:visited, a:active,a:hover {
   color: inherit;}
a{text-decoration: underline;}
/*ここからheader*/
/*　ハンバーガーメニューボタン　*/
header{
position: fixed;
width: 100vw;
height: 70px;
z-index : 100;}
.left_logo{
	margin-top: 20px;
	margin-left: 20px;
	width: 15vw;}
.hamburger {
  display : block;
  position: fixed;
  z-index : 3;
  right : 20px;
  top   : 20px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #000000;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

/* スマホメニューを開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  background :#fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  background :#fff;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

/* メニュー背景　*/
nav.globalMenuSp {
  position: fixed;
  z-index : 2;
  top  : 0;
  right : 0;
  color: #fff;
  background: rgba( 100,100,100,0.95 );
  text-align: left;
  width: 55vw;
  transform: translateX(100%);
  transition: all 0.6s;
padding: 10vw;
}
.header_logo{width: 21vw;
margin-bottom: 7vw;}
nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 55vw;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 55vw;
  transition: .4s all;
}
nav.globalMenuSp ul li ul li a{
		font-size: 4vw;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}
nav.globalMenuSp ul li:hover{

}

nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 0.5em 0;
  text-decoration :none;
	width: 35vw;
}
nav.globalMenuSp ul li ul li a {
	width: 55vw;
	font-size: 3vw;
}

/* クリックでjQueryで追加・削除 */
nav.globalMenuSp.active {
  opacity: 100;
  display: block;
   transform: translateX(0%);
}
/*ここまでheader*/
/*ここからsite*/
#site{width: 70vw;
margin:10vw auto;
}
.yojiyasite img{margin-bottom: 5vw;}
/*ここまでsite*/
/*ここからスタッフ*/
#staff{
	padding:10vw;
	background-color: black;
}
#staff:hover{
  background: #e8410b;
  transition: 0.2s ease-out;
}
#staff a{
text-decoration: none;
	}
.btn_re {
  font-size: 4vw;
  color: #fff;
  width:40vw;
  text-align: center;
  border-radius: 10px;
  padding: 1.3vw 2vw;
  position: relative; /* 追記 */
  margin:0 auto;
  font-family : "游ゴシック","Yu Gothic" ,"游ゴシック体",sans-serif;
	letter-spacing: 0.1vw;
  border: 1px solid #fff;
}
.btn_re:hover {
  font-size: 4vw;
  color: #fff;
  width:40vw;
  text-align: center;
  background: #e8410b;
  border-radius: 10px;
  padding: 10px 15px;
  position: relative; /* 追記 */
  margin:0 auto;
  font-family : "游ゴシック","Yu Gothic" ,"游ゴシック体",sans-serif;
  border: 1px solid #fff;
  
}

.btn_re::after {
  content: "";
	 width: 2vw;
  height: 2vw;
border: 0px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 3.2vw;
  right: 15px;
}
.btn_re a{
	text-decoration: none;
	color:#fff;
	}
/*ここまでスタッフ*/
/*ここからfooter*/
footer{background-color: #DCDDDD;
padding: 10vw 5vw}

#fotter_logo{width:  25vw;
margin: auto;}
footer a{text-decoration: none;
line-height: 2em;
letter-spacing: 0.12em;}
#fotter_menu{margin: 0vw;}
#fotter_menu ul li ul{padding-left: 3vw;}
#fotter_menu li{
	line-height: 2em;
	font-size: 3vw;}
#fotter_menu ul li:nth-child(3){padding: 3vw 0vw;}
#fotter_menu ul li ul li:nth-child(3){padding:0vw;}
#copy{
margin-top: 10vw;
text-align: center;
font-size: 2.5vw;
font-weight: 400;
letter-spacing: 0.1em;}
/*ここまでfooter*/
/*ここからtopback*/
.topback{
  position: fixed;
  right: 0;
  bottom: 0;
  width: 13vw;
  padding: 20px;
  cursor: pointer;
  transition: .3s;
  /*デフォルトで非表示にする*/
  opacity: 0;
  visibility: hidden;
z-index: 105;
}

/*このクラスが付与されると表示する*/
.active{
  opacity: 1;
  visibility: visible;
}
/*ここまでtopback*/
/*ここまでsp_css（〜750px）*/

/*ここからpc_css（751〜1300px）*/
@media screen and (min-width:751px) {
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
/*ここからheader*/
header{
position: fixed;
width: 100vw;
	background-color: rgba(0,0,0,0,0);}
.hamburger {
	display: none;
}
ul.menu{
	right: 0;}
nav.globalMenuSp {
position: relative;
  z-index : 2;
  top  : 0;
  right : 0;
  background:none;
  text-align: left;
  width: 100vw;
height: 8.46vw;
  transform: translateX(0%);
  transition: all 0.6s;
	display: flex;
		flex-direction: row;
padding: 0vw;
	float: right;
	background-color: #fff;}
.header_logo{width: 6vw;
margin: 2vw;
position:absolute;
z-index: 200;
}
.header_logo_1{width: 6vw;
margin: 2vw;
position:absolute;
z-index: 200;
/*デフォルトで非表示にする*/
  opacity: 0;
	transition: opacity 2s;}
/*このクラスが付与されると表示する*/
.active{
  opacity: 1;
  visibility: visible;
}
nav.globalMenuSp ul {
width: 46vw;
margin-top: 2vw;
  margin-right: 0;
  padding: 0;
position:absolute;
}
nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 10vw;
  transition: .4s all;
display: inline-block;
}
nav.globalMenuSp ul li ul{
position: absolute;
width: 18vw;
display: none;
margin-top: 0;
}

nav.globalMenuSp ul li:hover ul {
  display: block;
  height: auto;
  position: absolute;
  margin-left: -5px;
}
nav.globalMenuSp ul li ul li{
  display: block;
}
	
nav.globalMenuSp ul li ul > li {
  display: block;
}
nav.globalMenuSp ul li ul li{
 display: block;
width: 18vw;
min-width: 145px;
background-color: #fff;
}
	
nav.globalMenuSp ul li ul li a{
		font-size: 1vw;
	width: 18vw;
	letter-spacing: 0.15em;
	padding: 1vw;
}
nav.globalMenuSp ul li ul li:nth-child(2) a{
		font-size: 1vw;
	width: 18vw;
	letter-spacing: 0.15em;
	padding: 0vw 1vw;
}
nav.globalMenuSp ul li ul li a:hover{
	color: #E8410B;
}
nav.globalMenuSp ul li:nth-child(2) {
  margin-right: 3vw;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #000000;
  padding: 0.5em 0;
  text-decoration :none;
	width: 10vw;
}
	

/*ここまでheader*/
/*ここからsite*/
#site{width: 59vw;
margin:10vw auto;
display: flex;
	justify-content: space-between;
}
#site img{width: 28.3vw;}
.yojiyasite img{margin-bottom: 0vw;}
/*ここまでsite*/
/*ここからスタッフ*/
#staff{
	padding:85px;
	margin-top:126px;
	background-color: black;

}
.btn_re {
  font-size: 2vw;
  color: #fff;
  width:30vw;
  text-align: center;
  border-radius: 15px;
  padding: 15px 15px;
  position: relative; /* 追記 */
  margin:0 auto;
  font-family : "游ゴシック","Yu Gothic" ,"游ゴシック体",sans-serif;
	letter-spacing: 0.1vw;
  border: 1px solid #fff;
}
.btn_re:hover {
font-size: 2vw;
  color: #fff;
  width:30vw;
  text-align: center;
  background: #e8410b;
  border-radius: 15px;
  padding: 15px 15px;
  position: relative; /* 追記 */
  margin:0 auto;
  font-family : "游ゴシック","Yu Gothic" ,"游ゴシック体",sans-serif;
  border: 1px solid #fff;
  
}

.btn_re::after {
  content: "";
	 width: 1.5vw;
  height: 1.5vw;
border: 0px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 20px;
  right: 20px;
}



.btn_re a{
	text-decoration: none;
	color:#fff;
	}
/*ここまでスタッフ*/	
/*ここからfooter*/
footer{background-color: #DCDDDD;
padding: 30px 40px}

#fotter_logo{width: 100px;
float: left;}
footer a{text-decoration: none;
line-height: 2em;}
#fotter_menu{margin: 0px 0px 20px 0px;
float: right;
display: block;}
#fotter_menu ul{
display: flex;}
#fotter_menu ul li{
width: 90px;}
#fotter_menu ul li:nth-child(3){
width: 130px;}
#fotter_menu ul li ul{padding-left: 0vw;
display: block;}
#fotter_menu li{
	line-height:2.5em;
	font-size: 7px;}
#fotter_menu ul li:nth-child(3){padding: 0vw;}
#fotter_menu ul li ul li:nth-child(3){padding:0vw;}
#copy{
margin-top: 130px;
display: block;
clear:both;
text-align: right;
font-size: 5px;
font-weight: 400;
letter-spacing: 0.1em;}
/*ここまでfooter*/
/*ここからtopback*/
.topback{
  width: 4.6vw;
  padding: 50px;
}
/*ここまでtopback*/
}
/*ここまでpc_css（751〜1300px）*/

/*ここからpc_css（1301px以上）*/
@media screen and (min-width:1301px) {
	nav.globalMenuSp {
height: 110px;}
.header_logo{width: 78px;
margin: 26px;}
nav.globalMenuSp ul {
width: 598px;
margin-top: 26px;
}
nav.globalMenuSp ul li {
  width: 130px;
}
nav.globalMenuSp ul li ul{
width: 195px;
}
	nav.globalMenuSp ul li ul li{width: 234px}	
nav.globalMenuSp ul li ul li a{
		font-size: 13px;
	width: 234px;
	padding: 13px;
}

	nav.globalMenuSp ul li ul li:nth-child(2) a{
		font-size: 13px;
	width: 234px;
	padding: 0px 13px;
}
nav.globalMenuSp ul li:nth-child(2) {
  margin-right: 39px;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}

nav.globalMenuSp ul li a {
	width: 130px;
}
/*ここまでheader*/
/*ここからsite*/
#site{width: 768px;
margin:130px auto;
}
#site img{width: 368px;}
/*ここまでsite*/
/*ここからスタッフ*/
#staff{
	padding:85px;
	margin-top:126px;
	background-color: black;

}

.btn_re {
  font-size: 26px;
  color: #fff;
  width:390px;
	letter-spacing: 1px;
}
.btn_re:hover {font-size: 26px;
  color: #fff;
  width:390px;
	letter-spacing: 1px;
}

.btn_re::after {
  content: "";
	 width: 20px;
  height: 20px;
border: 0px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 22px;
  right: 20px;
}
.btn_re a{
	text-decoration: none;
	color:#fff;
	}
/*ここまでスタッフ*/
/*ここからfooter*/
/*ここまでfooter*/
/*ここからtopback*/
.topback{
  width: 60px;
}
/*ここまでtopback*/
}
/*ここまでpc_css（1301px以上）*/
/*ここからsp_css（〜750px）*/
.pc { display: none !important; }
.sp { display: block !important; }	
body{margin: 0;
padding: 0;
font-family : "游ゴシック","Yu Gothic" ,"游ゴシック体","ヒラギノ角ゴ ProN W3",'Hiragino Kaku Gothic Pro',"Meiryo UI","メイリオ","Meiryo","MS Pゴシック","MS PGothic",sans-serif;
	font-weight: bold;
	text-decoration: none;
	color: inherit;
font-feature-settings: "palt";}
h2{font-family: Montserrat,"Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, 游ゴシック体, "ヒラギノ角ゴ Pro W3", メイリオ, sans-serif;
letter-spacing: 0.1em;
text-align: center;
font-size: 8vw;
margin-bottom:10vw;}
h2 span {
  display: block;
  font-size: 2vw;
	text-align: enter;}
/* 矢印ここから */
.b-text-scroll {
	position: absolute;
	top: 25vw;
    left: 4vw;
    width: 2%;
    margin: 0 auto;
    text-align: center;

	z-index: 101;
}
.b-text-scroll img {
    display: block;
    width: 100%;
    height: auto;
}
.b-text-scroll .arrow {
    position: absolute;
    width: 60%;
    /*bottom: -220%;*/
	bottom: calc(-500 / 1920 * 100vw);
    left: 2px;
    animation: sdb 1.5s infinite;
}
@keyframes sdb {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translate(0, 15px);
    opacity: 0;
  }
}
 /* 矢印ここまで */
#main{
width: 89vw;
margin:auto;
position: relative;
 padding-bottom: 50vw;
}
/*ここからtop*/
#top{margin:0vw;
	padding: 20vw 0vw 10vw 0vw;
}
#top img{
 margin-right: 0;
 margin-left: auto;
  display: block;
width: 90vw;}
/*ここまでtop*/
#concept_logo{width: 30vw;
margin:8vw auto;}
h3{font-size: 5vw;
 line-height: 5vw;
font-weight:500;
letter-spacing: 0.11em;
text-align: center;}
#concept_txt{margin: 10vw 0;}
#concept_txt p{font-size: 3vw;
font-weight:500;
line-height: 5vw;
text-align: center;}
.bottom_space{margin-bottom: 10vw;}
#concept_txt .annotation{margin: 8vw auto;}
#concept_txt .annotation p {
font-size: 2.5vw;
 line-height: 3vw;
font-weight:500;
}
#concept_txt p br.sp{
display: block;
content: "";
padding: 1.5vw 0;
}
/*ここからdeco*/
.deco_1{
	position: absolute;
	width: 20vw;
	top:35vw;
	left: 2vw;
}
.deco_2{
	position: absolute;
	width: 15vw;
	top:15vw;
	right: 1vw;
}
.deco_3{
	position: absolute;
	width: 70vw;
	left: 8vw;
	top:226vw;
}
/*ここまでdeco*/
/*ここまでsp_css（〜750px）*/
/*ここから（751〜1300px）*/
@media screen and (min-width:751px){
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
h2{letter-spacing: 0.1em;
text-align: left;
font-size: 3.3vw;
margin-top: 0;
margin-bottom:2vw;
display: inline-block}
h2 span {
  display: block;
  font-size: 1.1vw;
	text-align: left;}
/* 矢印ここから */
.b-text-scroll {
	position: absolute;
	top: 15vw;
    left: 3vw;
    width: 1vw;
	z-index: 50;
}

.b-text-scroll .arrow {
    position: absolute;
    width: 60%;
    /*bottom: -220%;*/
	bottom: calc(-230 / 1920 * 100vw);
    left: 2px;
}
 /* 矢印ここまで */
#main{
width: 84.6vw;
margin:auto;
 padding-bottom: 30vw;
}
/*ここからtop*/
#top{margin:0vw;
	padding: 9vw 0vw;
}
#top img{
width: 92.3vw;}
/*ここまでtop*/
#concept_logo{width: 15vw;
margin:0vw auto 4vw ;}
h3{font-size:2.5vw;
 line-height: 2.5vw;
letter-spacing: 0.15em;}
#concept_txt{margin: 4vw 0;}
#concept_txt p{font-size: 1.3vw;
line-height: 1.5vw;
text-align: center;}
.bottom_space{margin-bottom: 3.4vw;}
#concept_txt .annotation{margin: 4vw auto;}
#concept_txt .annotation p {
font-size: 0.8vw;
 line-height: 1.5vw;
font-weight:500;
}
/*ここからdeco*/
.deco_1{
	width: 15vw;
	top:40vw;
	left: 3vw;
}
.deco_2{
	width: 12vw;
	top:15vw;
	right: 11vw;
}
.deco_3{
	width: 50vw;
	left: 17vw;
	top:80vw;
}
/*ここまでdeco*/
}
/*ここまでpc_css（751〜1300px）*/

/*ここからpc_css（1301px以上）*/
@media screen and (min-width:1301px) {
h2{
font-size: 43px;
margin-bottom:26px;}
h2 span {
  font-size: 15px;}	
/* 矢印ここから */
.b-text-scroll {
	top: 195px;
    left: calc( (100% - 1220px) / 2 );
	width: 13px;
}
.b-text-scroll .arrow {
    width: 780;
	bottom: calc(-230 / 1920 * 1300px);
    left: 2px;
}
 /* 矢印ここまで */
#main{
width: 1100px;
margin:auto;
padding-bottom: 390px;
}

/*ここからtop*/
#top{padding: 117px 0px;
	 width: 100%;
	overflow: hidden;
}
#top img{
	margin-left: calc((100% - 1100px) / 2);
	max-width: 100%;
	height: 20vw;
	object-fit:cover; }
/*ここまでtop*/
#concept_logo{width: 195px;
margin:0px auto 52px ;}
h3{font-size:33px;
 line-height: 33px;}
#concept_txt{margin: 52px 0;}
#concept_txt p{font-size: 17px;
line-height: 20px;
text-align: center;}
.bottom_space{margin-bottom: 44px;}
#concept_txt .annotation{margin: 52px auto;}
#concept_txt .annotation p {
font-size: 10px;
 line-height: 19px;
}
/*ここからdeco*/
.deco_1{
	width: 195px;
	top:520px;
	left: 39px;
}
.deco_2{
	width: 156px;
	top:195px;
	right: 143px;
}
.deco_3{
	width: 650px;
	left: 221px;
	top:1040px;
}
/*ここまでdeco*/

}
/*ここまでpc_css（1301px以上）*/@charset "UTF-8";
/* CSS Document */

/*******ここから↓*****/
::placeholder {
  color: #a2a2a2;
  font-weight:300;
}
textarea::placeholder { 
  color: #a2a2a2;
  font-weight:300;
  opacity: 0.8;
}
#main { 
	padding-bottom:0px;
}

textarea{border:1px solid #9fa0a0;}

#area{background-color: #fff;
    padding-top: 0vw;
    padding-bottom: 5vw;}
.area_box{width: 69.2vw;
      margin: auto;}
.area_main{margin:0 auto;}
*, *:before, *:after {
  box-sizing: border-box;
}

p{
	font-size: 0.8rem;
	font-weight: 100;
	line-height: 2em;
	letter-spacing: 0.15rem;
}

a.pp{text-decoration: underline;}

dl,dt,dd {
  margin: 0;
  padding: 0;

}


dl.table {

  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top:35px;
  margin-bottom:30px;
  align-items: center;
}

dt,dd{

	padding:10px 10px;
}

dl dt{
	font-size: 0.8rem;
	font-weight: 300;
	line-height: 2em;
	width:22%;
	white-space:nowrap;


}
dl dd{
	font-size:107.7%;
	font-weight:300;
	width:78%;
	white-space:nowrap;
}



input[type="text"] { width: 100%; }

input[type=radio] {
  margin-right: 5px;
  padding-top:-3px;
}

input[type=email] {
	box-sizing:border-box;
	border-style: none;
	padding:20px;
	background-color: #eeeeec;
	width:100%;

}

label{padding-right:15px;margin-bottom:5px;}
.vertical-align input,
.vertical-align select{
	vertical-align:middle;
}

input[type="text"],
select,
textarea{
	box-sizing:border-box;
	border-style: none;
	padding:20px;
	background-color: #eeeeec;

}

textarea{
	height:15em;
	width:100%;
	line-height:1.4;
	background-color: #eeeeec;
}

.sizeS{ width:5em;}
.sizeM{ width:20em;}
.sizeL{ width:80%;}

.btnArea{ text-align:center; padding:30px 0;}
.btnArea li{
	display:inline-block;
	padding:0 10px;
}

input[type="submit"]{
	

	color:#000;
	font-size:107.7%;
	border:none;
	cursor:pointer;
	-webkit-appearance: button;

}

input[type="submit"]:hover{ background:#222;}

input.back{
	background:#DADADA;
	color:#000;
}

input.back:hover{ background:#CCC;}

.mailChk{
	padding:0.5em 0;	
}

.att{
	color:000;
	
}

.backTop{ text-align:center; padding:45px 0 100px;}
.backTop a{
	display:inline-block;
	min-width:15em;
	height:40px;
	line-height:40px;
	background:#000;
	padding:0 10px;
	color:#FFF;
	font-size:107.7%;
	border:none;
	cursor:pointer;
}
.btnArea{
	width:192px;
	padding:10px 20px;
  border: 1px solid #000000;
  border-radius: 25px;
  margin:2vw auto;
}

#agreement{margin-bottom:20px;max-width: 676px;border:none;}
p#agree_check{margin-top:-2px;}

form#mail_form p#form_submit {
	width: 90%;
	margin: 0 auto;
	padding: 15px 0;

}

form#mail_form input[type="button"] {
	font-size: 1vw;
	font-weight: bold;
  color: #fff;
  width:18.66vw;
  text-align: center;
  background: #000;
  border-radius: 1.16vw;
  padding: 1.25vw 1.25vw;
  position: relative; /* 追記 */
	margin:0.83vw auto 0vw;
	border: solid 1px #000;

  font-family : "游ゴシック","Yu Gothic" ,"游ゴシック体","ヒラギノ角ゴ ProN W3",'Hiragino Kaku Gothic Pro',"Meiryo UI","メイリオ","Meiryo","MS Pゴシック","MS PGothic",sans-serif;
}

form#mail_form input[type="button"]:hover {
	cursor: pointer;
	background: #E8410B;
	color:#fff;
	border: 1px solid #E8410B;
}

form#mail_form input#form_submit_button {
	margin-left: 35%;
}

input[type="checkbox"]{
  vertical-align:middle;
}

/******フォーム入力選択時の設定↓*****/

input[type="text"],
textarea,input[type="email"] {
  outline: none;
  border: none;
  -webkit-transition: all .3s;
  transition: all .3s;
}
input[type="text"]:focus,
textarea:focus,input[type="email"]:focus{
  box-shadow: 0 0 3px #000;
  border: none;
}



	.policy {
		overflow:auto; height:180px;
		padding:0.5vw 3vw 3vw 3vw;
		border:none;
		color:#e8e8e8;
		background-color:#eeeeec;
		line-height:1.5em;
		margin:50px 0;
	}
	.policy p {
		color:#000;
		font-weight:500;
		font-size:80%;
		letter-spacing: 0.1rem;
	}

	h4{
color:#000;

 font-weight:500;
 font-size:150%;

}
/********** 矢印ここから */
.b-text-scroll {
			position: absolute;
			top: 25vw;
			left: 4vw;
			width: 2%;
			margin: 0 auto;
			text-align: center;

			z-index: 101;
		}
		.b-text-scroll img {
			display: block;
			width: 100%;
			height: auto;
		}
		.b-text-scroll .arrow {
			position: absolute;
			width: 60%;
			/*bottom: -220%;*/
			bottom: calc(-500 / 1920 * 100vw);
			left: 2px;
			animation: sdb 1.5s infinite;
		}
.b-text-scroll {
			position: absolute;
			top: 15vw;
			left: 3vw;
			width: 1vw;
			z-index: 50;
		}

		.b-text-scroll .arrow {
			position: absolute;
			width: 60%;
			/*bottom: -220%;*/
			bottom: calc(-230 / 1920 * 100vw);
			left: 2px;
		}
		@keyframes sdb {
		  0% {
			transform: translate(0, 0);
			opacity: 0;
		  }
		  50% {
			opacity: 1;
		  }
		  100% {
			transform: translate(0, 15px);
			opacity: 0;
		  }
		}
		@media screen and (max-width:750px) {
		.b-text-scroll {
			position: absolute;
			top: 25vw;
			left: 4vw;
			width: 2%;
			margin: 0 auto;
			text-align: center;

			z-index: 101;
		}
		.b-text-scroll img {
			display: block;
			width: 100%;
			height: auto;
		}
		.b-text-scroll .arrow {
			position: absolute;
			width: 60%;
			/*bottom: -220%;*/
			bottom: calc(-500 / 1920 * 100vw);
			left: 2px;
			animation: sdb 1.5s infinite;
		}
		}
		@media screen and (min-width:1301px) {
			/* 矢印ここから */
		.b-text-scroll {
			top: 195px;
			left: calc( (100% - 1220px) / 2 );
			width: 13px;
		}
		.b-text-scroll .arrow {
			width: 780;
			bottom: calc(-230 / 1920 * 1300px);
			left: 2px;
		}
		 /* 矢印ここまで */
		}
 /************* 矢印ここまで */

@media screen and (min-width:751px) and ( max-width:1300px) {
/*ここからtopback*/
.topback{
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 8vw;
  padding: 20px;
  cursor: pointer;
  transition: .3s;
  /*デフォルトで非表示にする*/
  opacity: 0;
  visibility: hidden;
z-index: 105;
}

/*このクラスが付与されると表示する*/
.active{
  opacity: 1;
  visibility: visible;
}
/*ここまでtopback*/
}



/**********************************ここからtablet用のcssを記述*********************************/
@media screen and (max-width:750px) {
/*******ここから↓*****/
/*ここからtopback*/
.topback{
  position: fixed;
  right: 0;
  bottom: 0;
  width: 20vw;
  cursor: pointer;
  transition: .3s;
  /*デフォルトで非表示にする*/
  opacity: 0;
  visibility: hidden;
z-index: 105;
}
/*このクラスが付与されると表示する*/
.active{
  opacity: 1;
  visibility: visible;
}
/*ここまでtopback*/	

#main #area .areabox .areamain h3{
 font-size:3vw;
}
#area{background-color: #fff;
		padding-top: 1vw;
		padding-bottom:5vw;
	    overflow:hidden;	
	}
.area_box{width: 88vw;
			max-width: 1100px;
			margin: auto;}

a.pp{text-decoration: underline;}

dl,dt,dd {
  margin: 0;
  padding: 0;
}

dl.table {

  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top:35px;
  margin-bottom:30px;
  align-items: center;
}

dt,dd{

	padding:10px 10px;
}

dl dt{
	font-size:107.7%;
	font-weight:300;
	width:22%;
	white-space:nowrap;

}
dl dd{
	font-size:107.7%;
	font-weight:300;
	width:75%;
	white-space:nowrap;
}

input[type="text"] { width: 100%; }

input[type=radio] {
  margin-right: 5px;
  padding-top:-3px;
}

input[type=email] {
	box-sizing:border-box;
	border-style: none;
	padding:20px;
	background-color: #eeeeec;
	width:100%;
}

label{padding-right:15px;margin-bottom:5px;}
.vertical-align input,
.vertical-align select{
	vertical-align:middle;
}

input[type="text"],
select,
textarea{
	box-sizing:border-box;
	border-style: none;
	padding:20px;
	background-color: #eeeeec;

}

textarea{
	height:15em;
	width:100%;
	line-height:1.4;
	background-color: #eeeeec;
}

.sizeS{ width:5em;}
.sizeM{ width:20em;}
.sizeL{ width:80%;}

.btnArea{ text-align:center; padding:30px 0;}
.btnArea li{
	display:inline-block;
	padding:0 10px;
}

input[type="submit"]{
	

	color:#000;
	font-size:107.7%;
	border:none;
	cursor:pointer;
	-webkit-appearance: button;

}

input[type="submit"]:hover{ background:#222;}

input.back{
	background:#DADADA;
	color:#000;
}

input.back:hover{ background:#CCC;}

.mailChk{
	padding:0.5em 0;	
}

.att{
	color:000;
	
}

.backTop{ text-align:center; padding:45px 0 100px;}
.backTop a{
	display:inline-block;
	min-width:15em;
	height:40px;
	line-height:40px;
	background:#000;
	padding:0 10px;
	color:#FFF;
	font-size:107.7%;
	border:none;
	cursor:pointer;
}
.btnArea{
	width:192px;
	padding:10px 20px;
  border: 1px solid #000000;
  border-radius: 25px;
  margin:2vw auto;
}

#agreement{margin:0 auto 20px;max-width: 676px;border:none;}
p#agree_check{margin-top:-2px;}

form#mail_form p#form_submit {
	max-width:40vw;
text-align : center ; 


}

label{font-size:3.5vw;}

form#mail_form input[type="button"] {
	font-size:2.5vw;
  width:41.6vw;
  border-radius: 3.4vw;
  padding: 3.125vw 3.125vw;
  font-weight:800;
  font-family : "游ゴシック","Yu Gothic" ,"游ゴシック体","ヒラギノ角ゴ ProN W3",'Hiragino Kaku Gothic Pro',"Meiryo UI","メイリオ","Meiryo","MS Pゴシック","MS PGothic",sans-serif;
}

form#mail_form input[type="button"]:hover {
	cursor: pointer;
	background: #000;
	color:#fff;
	border: 1px solid #000;
}

form#mail_form input#form_submit_button {
	margin: 0;
}

input[type="checkbox"]{
  vertical-align:middle;
}

input[type="text"],
textarea {
  outline: none;
  border: none;
  -webkit-transition: all .3s;
  transition: all .3s;
}
input[type="text"]:focus,
textarea:focus {
  box-shadow: 0 0 3px #000;
  border: none;
}

dl.table {

  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top:35px;
  margin-bottom:30px;
  align-items: center;
}

dt,dd{

	padding:0;
}

dl dt{
	font-size:3.5vw;
	font-weight:300;
	width:100%;
	white-space:nowrap;
	margin-bottom:1vw;

}
dl dd{
	font-size:107.7%;
	font-weight:300;
	width:100%;
	white-space:nowrap;
	margin-bottom:6vw;
}


h4{
color:#000;

 font-weight:500;
 font-size:130%;

}

	.policy {
		overflow:auto;height:50vw;
		padding:0.5vw 5vw 5vw 5vw;
		border:none;
		color:#e8e8e8;
		background-color:#eeeeec;
		line-height:1.5em;
		margin:10vw 0;
	}
	.policy p {
		color:#000;
		font-weight:500;
		font-size:70%;
		letter-spacing: 0.1rem;
	}


/* -- for JavaScript ここから -------------------------------------------------------------------------------- */

form#mail_form dl dt span.required,
form#mail_form dl dt span.optional {
	margin-right: 1em;
	margin-bottom: 2em;
}


/* -- for JavaScript ここまで -------------------------------------------------------------------------------- */



/*******ここまで↑*****/	
}



/*************************************************ここから1300以上のcssを記述*/
@media screen and (min-width: 1301px) {
/*******ここから↓*****/
/*ここからtopback*/
.topback{
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 100px;
  padding: 20px;
  cursor: pointer;
  transition: .3s;
  /*デフォルトで非表示にする*/
  opacity: 0;
  visibility: hidden;
z-index: 105;
}

/*このクラスが付与されると表示する*/
.active{
  opacity: 1;
  visibility: visible;
}
/*ここまでtopback*/
#area{background-color: #fff;
		padding-bottom: 60px;}
.area_box{width: 1100px;}

.area_main{
	width: 900px;}

a.pp{text-decoration: underline;}

dl,dt,dd {
  margin: 0;
  padding: 0;
}

dl.table {

  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top:35px;
  margin-bottom:30px;
  align-items: center;
}

dt,dd{

	padding:10px 10px;
}

dl dt{
	font-size:13px;
	font-weight:300;
	width:22%;
	white-space:nowrap;

}
dl dd{
	font-size:107.7%;
	font-weight:300;
	white-space:nowrap;
}
dl dd p{
	font-size:100%;
	margin-top:3px;
	font-weight:300;
	line-height:1.5;
	letter-spacing: 0.1rem;
}

dt.aket{margin-top:-22px;}

input[type="text"] { width: 100%; }




input[type=radio] {
  margin-right: 5px;
  padding-top:-3px;
}

input[type=email] {
	box-sizing:border-box;
	border:1px solid #9fa0a0;
	padding:20px;
	background-color: #eeeeec;
	width:100%;
}

label{padding-right:15px;margin-bottom:5px;}
.vertical-align input,
.vertical-align select{
	vertical-align:middle;
}

input[type="text"],
select,
textarea{
	box-sizing:border-box;
	border-style: none;
	padding:20px;
	background-color: #eeeeec;

}



.sizeS{ width:5em;}
.sizeM{ width:20em;}
.sizeL{ width:80%;}

.btnArea{ text-align:center; padding:30px 0;}
.btnArea li{
	display:inline-block;
	padding:0 10px;
}

input[type="submit"]{
	

	color:#000;
	font-size:107.7%;
	border:none;
	cursor:pointer;
	-webkit-appearance: button;

}

input[type="submit"]:hover{ background:#222;}

input.back{
	background:#DADADA;
	color:#000;
}

input.back:hover{ background:#CCC;}

.mailChk{
	padding:0.5em 0;	
}

.att{
	color:000;
	
}

.backTop{ text-align:center; padding:45px 0 100px;}
.backTop a{
	display:inline-block;
	min-width:15em;
	height:40px;
	line-height:40px;
	background:#000;
	padding:0 10px;
	color:#FFF;
	font-size:107.7%;
	border:none;
	cursor:pointer;
}
.btnArea{
	width:192px;
	padding:10px 20px;
  border: 1px solid #000000;
  border-radius: 25px;
  margin:2vw auto;
}

#agreement{max-width: 676px;border:none;}
p#agree_check{margin-top:-2px;}

form#mail_form div#form_submit {
	width: 90%;
	margin: 0 auto;
	padding: 15px 0;

}

form#mail_form input[type="button"] {
  font-size: 15px;
  color: #fff;
  width:250px;
  text-align: center;
  background: #000;
  border-radius: 20px;
  border: 1px solid #000000;
  padding: 15px 15px;
  position: relative; /* 追記 */
  margin:0 auto 50px;
  font-weight:800;
  font-family : "游ゴシック","Yu Gothic" ,"游ゴシック体","ヒラギノ角ゴ ProN W3",'Hiragino Kaku Gothic Pro',"Meiryo UI","メイリオ","Meiryo","MS Pゴシック","MS PGothic",sans-serif;
}

form#mail_form input[type="button"]:hover {
	cursor: pointer;
	background: #E8410B;
	color:#fff;
	border: 1px solid #E8410B;
}



h4{
color:#000;

 font-weight:500;
 font-size:150%;
 letter-spacing: 0.15rem;

}

	.policy {
		overflow:auto;
		max-width:900px; height:180px;
		padding:0.5vw 3vw 3vw 3vw;
		border:none;
		color:#e8e8e8;
		background-color:#eeeeec;
		line-height:1.5em;
		margin:50px 0;
	}
	.policy p {
		color:#000;
		font-weight:500;
		font-size:80%;
		letter-spacing: 0.1rem;
	}










form#mail_form input#form_submit_button {
	margin-left: 35%;
}

input[type="checkbox"]{
  vertical-align:middle;
}


/******フォーム入力選択時の設定↓*****/

input[type="text"],
textarea,input[type="email"] {
  outline: none;
  border: none;
  -webkit-transition: all .3s;
  transition: all .3s;
}
input[type="text"]:focus,
textarea:focus,input[type="email"]:focus{
  box-shadow: 0 0 3px #E8410B;
  border: none;
}

/******フォーム枠の入力後の色、文字色↓*****/	
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px white inset;
    -webkit-text-fill-color: #000 !important;
}



/*******ここまで↑*****/	
}





/* -- for JavaScript ここから -------------------------------------------------------------------------------- */

form#mail_form dl dt span.required,
form#mail_form dl dt span.optional {

	display : inline-block;
	
	color : #ffffff;
	line-height : 1;
	padding : 15px 9px;
	margin-right:7px;
	border-radius : 6px;

}

form#mail_form dl dt span.required {
	background : #000;
	border : 1px solid #000;
}


form#mail_form dl dt span.optional {
	background : #777;
	border : 1px solid #777;
}

form#mail_form dl dd span.error_blank,
form#mail_form dl dd span.error_format,
form#mail_form dl dd span.error_match {
	display: block;
	color: #ff0000;
	margin-top: 3px;
}


span.loading {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border-top: 5px solid rgba( 255, 255, 255, 0.2 );
	border-right: 5px solid rgba( 255, 255, 255, 0.2 );
	border-bottom: 5px solid rgba( 255, 255, 255, 0.2 );
	border-left: 5px solid #ffffff;
	-webkit-transform: translateZ( 0 );
	-ms-transform: translateZ( 0 );
	transform: translateZ( 0 );
	-webkit-animation: load-circle 1.0s linear infinite;
	animation: load-circle 1.0s linear infinite;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -30px;
	margin-left: -30px;
}

@-webkit-keyframes load-circle {
	0% {
		-webkit-transform: rotate( 0deg );
		transform: rotate( 0deg );
	}
	100% {
		-webkit-transform: rotate( 360deg );
		transform: rotate( 360deg );
	}
}

@keyframes load-circle {
	0% {
		-webkit-transform: rotate( 0deg );
		transform: rotate( 0deg );
	}
	100% {
		-webkit-transform: rotate( 360deg );
		transform: rotate( 360deg );
	}
}


/* -- for JavaScript ここまで -------------------------------------------------------------------------------- */
