﻿@charset "utf-8";
/*----------------------------------------------------------------------------------------------
【記載ルール】
・ブレークポイント、キーフレームでインデント
・不要な半角スペースやタブは削除
・短縮できるものは短縮（例）0.7 → .7、#FFFFFF → ＃FFF
・継承を考え、無駄なプロパティを削除（特にSP）
----------------------------------------------------------------------------------------------*/

/* RESET CSS */
article,aside,details,figcaption,figure,footer,header,hgroup,img,menu,nav,section{display:block}a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font:inherit;vertical-align:baseline}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}table{border-collapse:collapse;border-spacing:0}img{margin:0 auto;padding:0;max-width:100%;}*{-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;}

/*----------------------------------------------------------------------------------------------
button:hover
----------------------------------------------------------------------------------------------*/
@-webkit-keyframes hvr-wobble-vertical{
	16.65%{-webkit-transform:translateY(8px);transform:translateY(8px)}
	33.3%{-webkit-transform:translateY(-6px);transform:translateY(-6px)}
	49.95%{-webkit-transform:translateY(4px);transform:translateY(4px)}
	66.6%{-webkit-transform:translateY(-2px);transform:translateY(-2px)}
	83.25%{-webkit-transform:translateY(1px);transform:translateY(1px)}
	100%{-webkit-transform:translateY(0);transform:translateY(0)}
}
@keyframes hvr-wobble-vertical{
	16.65%{-webkit-transform:translateY(8px);transform:translateY(8px)}
	33.3%{-webkit-transform:translateY(-6px);transform:translateY(-6px)}
	49.95%{-webkit-transform:translateY(4px);transform:translateY(4px)}
	66.6%{-webkit-transform:translateY(-2px);transform:translateY(-2px)}
	83.25%{-webkit-transform:translateY(1px);transform:translateY(1px)}
	100%{-webkit-transform:translateY(0);transform:translateY(0)}
}
.hvr-wobble-vertical{display:inline-block;vertical-align:middle;-webkit-transform:translateZ(0);transform:translateZ(0);box-shadow:0 0 1px rgba(0,0,0,0);-webkit-backface-visibility:hidden;-moz-osx-font-smoothing:grayscale}
.hvr-wobble-vertical:active,.hvr-wobble-vertical:focus,.hvr-wobble-vertical:hover{-webkit-animation-name:hvr-wobble-vertical;animation-name:hvr-wobble-vertical;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-iteration-count:1;animation-iteration-count:1}
/*----------------------------------------------------------------------------------------------
Basic
----------------------------------------------------------------------------------------------*/
html{ font-size:62.5%; overflow:hidden; }
body{
	width:100%;
	font-size:2.2rem;
	color: #3f3f3f;
	font-weight:500;
	line-height:1.7;
	-webkit-font-feature-settings: 'palt' 1;
	font-feature-settings: 'palt' 1;
	font-family:-apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}
#body__wrap{
	width:100%;
	margin:0 auto;
	background:#FFF;
}
#scroll{
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	overflow-y:scroll;
	-webkit-overflow-scrolling:touch;
}

/* Float・Clearfix */
.clearfix:before , .clearfix:after{ content:" "; display:table; }
.clearfix:after{ clear:both; }
.clearfix{ *zoom:1; }
.img-right{ float:right; padding:0 0 2rem 2rem; max-width: 380px; }
.img-left{ float:left; padding:0 2rem 2rem 0; max-width: 380px; }
.caption { max-width: 100%; padding: 10px; }
.img-right .caption, .img-left .caption, .caption { margin: 0; padding: 10px; font-size: 1.8rem; font-weight: bold; line-height: 1.3; border-left: 2px solid; color: #222222; }
.caption + img { margin-top: 30px; }
.img-right + p, .img-right + p { margin-top: 1em;}

/* PC・SP表示調整 */
.display_pc{ display:block; }
.display_sp{ display:none; }

/* Font */
h1{ font-weight:normal!important; font-family:"ゴシックMB101 H"; font-feature-settings:"palt" 1; }
.u{ text-decoration:underline; }
.b{ font-weight:bold; }
.red{ color:#d71523; }
.white{ color:#FFF; }
.ru { border-bottom: 2px solid #d71523; }
.text_c{ text-align:center; }
.text_r{ text-align:right; }
.text_l{ text-align:left; }
.xxsmall{ font-size:30%; }
.xsmall{ font-size:60%; }
.small{ font-size:80%; }
.large{ font-size:130%; }
.xlarge{ font-size:150%; }
.mark{ background: #FFF496; color: #d71523; font-weight: bold; text-decoration: underline; }
.KG { font-family: "Gothic MB101 Heavy", "A-OTF ゴシックMB101 Pr6N"; font-weight: bold; -webkit-font-feature-settings: 'palt' 1; font-feature-settings: 'palt' 1; }
.flex { display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; flex-wrap: wrap; }
.flex-bet { justify-content: space-between; }
.flex-cen { -ms-align-items: center; align-items: center;}
hr { border: none; border-bottom: 2px solid #ccc; margin: 40px 0; }

.letter p+p { margin-top: 1em; }
p+img, img+p { margin-top: 2rem; }
.letter + .sub-head { margin-top: 40px; }

/*----------------------------------------------------------------------------------------------
Countdown
----------------------------------------------------------------------------------------------*/
.timer p {margin: 5px 0;}
.timer01 {background: #222; padding: 5px 0; text-align: center; font-weight: bold; color: #fff; font-size: 22px; line-height: 1;}
.timer01 .timer_num {font-size: 140%; color: #ffff55; font-family: Century Gothic, "Courier New", Consolas, monospace;}

/*----------------------------------------------------------------------------------------------
Header
----------------------------------------------------------------------------------------------*/
header{ width:100%; margin:0 auto; background: url("../img/header-h-bg.jpg") top center; }
.header__bottom{ width:113px; height:30px; margin:0 auto; background:url(../img/base/arrow_header_red.png) center top; }
/* プリヘッド */
#header__pri{ width:100%; margin:0 auto; text-align:center; background:#232323; position: relative; z-index: 10; }
#header__pri img{ padding: 10px; }
/* 通常ヘッドライン */
#header__img{ width:100%; margin:0 auto; text-align: center; background:url( ../img/header-bg.jpg) center bottom no-repeat; }
/* 背景動画 */ .video__wrap { position: relative; overflow: hidden; width: 100%; background-color: #000; height: 530px; }
.video__wrap video { position: absolute; width: 110vw; min-height: 110vh; opacity: 0.3; left: 50%; top: 50%; transform: translate(-50%, -50%); }
.video__wrap img{ display: block; z-index:111; position:relative; }
.video__wrap h1 { z-index: 10; position: absolute; width: 100%; }
.header-txt { font-size: 6rem; position: absolute; top: 55%; left: calc((100% - 960px)/2); line-height: 1; color: #fff366; font-weight: 800; }
.main-visual_sp {display: none;}


/*----------------------------------------------------------------------------------------------
Section
----------------------------------------------------------------------------------------------*/
/* 共通 */
section{ padding: 35px 0; }

/* 固有 */
section.gray{
	width:100%;
	background:#eee;
}
section.gold{
	width:100%;
	background:url(../img/base/bg_gold.jpg);
}

/*----------------------------------------------------------------------------------------------
sub-head / letter
----------------------------------------------------------------------------------------------*/
.sub-head{
	width:960px;
	color:#222;
	font-size: 6.3rem;
	font-weight:800;
	line-height:1.2;
	text-align:center;
	margin:0 auto 30px;
	-webkit-font-feature-settings: 'palt' 1;
	font-feature-settings: 'palt' 1;
	position: relative;
}
.sub-head .small { font-size: 4.5rem; }
.sub-head .mark { display: block; background: #d71523; color: #fff; text-decoration: none; padding: 20px; margin: 0 0 20px; font-size: 8rem; }
.sub-head2 { font-size: 4rem; line-height: 1.3; border-left: 7px solid; padding: 10px 0 10px 20px; margin: 30px 0 10px; }
.letter{
	width:960px;
	margin:0 auto;
}

/*----------------------------------------------------------------------------------------------
ブレッド
----------------------------------------------------------------------------------------------*/
/* 共通 */
ul.check,
ul.check_02{ margin: 20px 0; }
ul.check li,
ul.check_02 li{
	padding:15px 0 15px 4rem;
	border-bottom:1px dashed #aaa;
	font-size:3rem;
	font-weight:bold;
	line-height:1.4;
}
ul.check li:nth-child(2n),
ul.check_02 li:nth-child(2n){ background-color:#ffffcc4d; }
ul.check li p,
ul.check_02 li p{
	font-size:2.2rem;
	font-weight:normal;
	padding-top:.8rem;
}

ul.check_03 { margin: 1em 0; overflow: auto; }
ul.check_03 li { background: url(../img/base/ico_cheack_04.png)no-repeat 0 10px; padding: 10px 0 10px 1.8em; line-height: 1.3; border-bottom: 1px dashed #ccc; }

/* 固有 */
ul.check li{ background:url(../img/base/ico_cheack_04.png) 0 2rem no-repeat; }
ul.check_02 li{ background:url(../img/base/ico_cheack_01.png) 0 2rem no-repeat; }

/*----------------------------------------------------------------------------------------------
voice
----------------------------------------------------------------------------------------------*/
.voice1-box { border: 1px solid #ccc; border-radius: 5px; padding: 50px; }
.voice1-name { font-size: 2.8rem; border-bottom: 2px solid #ccc; overflow: auto; padding: 0 0 10px; margin: 0 0 20px; }
.voice1-name p { font-weight: bold; line-height: 1.5; margin-top: 0!important; }
.voice1-qt { margin: 30px 0 0; padding: 30px; background: #f5f5f5; }
.voice1-qt-title { font-weight: bold; border-bottom: 2px solid; padding: 0 0 5px; margin: 0 0 10px; }

.voice2-box { border-top: 3px solid #d71523; border-bottom: 3px solid #d71523; }
.voice2-box + .voice2-box { margin-top: 40px; }
.voice2-title { width: calc(100% - 280px); padding: 20px 0; }
.voice2-title p { margin: 0!important; }
.voice2-title h3 { font-size: 3.5rem; line-height: 1.3; color: #d71523; }
.voice2-name { text-align: right; font-weight: bold; }

/*----------------------------------------------------------------------------------------------
merit
----------------------------------------------------------------------------------------------*/
.merit dt { border-bottom: 1px dashed #ccc; padding-bottom: 10px; margin-bottom: 10px; }
.merit dd + dt { margin-top: 30px; }
.merit-num { width: 60px; height: 60px; position: relative; background: #d71523; border-radius: 50px; color: #fff; }
.merit-num span { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 4rem; font-weight: bold; }
.merit-title { width: calc(100% - 80px); margin: 0!important; font-weight: bold; font-size: 3rem; line-height: 1.3; }

/*----------------------------------------------------------------------------------------------
profile
----------------------------------------------------------------------------------------------*/
#profile{
	width:100%;
	padding: 60px 0;
	margin:0 auto;
	background: url(../img/profile-bg.jpg) no-repeat center top;
	-webkit-background-size: cover;
	background-size: cover;
}
.profile-box { width: 58%; }
.profile-sub { font-size: 4.5rem; font-weight: 700; line-height: 1.2; color: #d71523; padding-bottom: 10px; border-bottom: 2px solid; }
.profile-name { padding: 30px 0 20px; }
.profile-name p { font-weight: 500; font-size: 4rem; margin-top: 0!important; line-height: 1.3; letter-spacing: 0.1em; }
.profile-name p.small { font-size: 2rem; }
.profile-txt li { text-indent: -1em; padding-left: 1em; }
.profile-txt li:before { content:"◆"; }

.profile-title { background: url("../img/profile-title-bg.jpg") no-repeat center top; }
.profile h3 { font-size: 3.5rem; margin: 40px 0 20px; padding: 0; border-bottom: 2px solid #0080ce; }

/*----------------------------------------------------------------------------------------------
規約
----------------------------------------------------------------------------------------------*/
.kiyaku__box{
	width:960px;
	padding:1rem;
	margin:30px auto 0;
	border:1px solid #ffc332;
	font-size:80%;
	background:#fffddd;
	box-sizing:border-box;
}
.kiyaku__box h3{ padding:0 0 1rem; }

/*----------------------------------------------------------------------------------------------
フォーム
----------------------------------------------------------------------------------------------*/
#form_float{ display:none; width:100%; margin:0 auto; padding: 10px 0; top:0px; left:0px; z-index:1000; position:fixed; background: #d71523; }
#form_header{ width:100%; margin: 0 auto; padding: 20px 0; background: #d71523; position: relative; }
.form{ width: 100%; padding: 0; margin: 0 auto; background: #d71523; }

.form_title { text-align: center; font-size: 3.5rem; font-weight: bold; color: #fff; margin-bottom: 10px; }
#form_header .form_title {  }
.form_arrow01, .form_arrow02{ width:142px; height:23px; margin:0 auto; }
.form_arrow01{ background:url(../img/base/arrow_header_wht.png) center top; }
.form_arrow02{ background:url(../img/base/arrow_header_gold.png) center top; }
.form_img{ padding:16px 0 0; text-align:center; }

.form { padding: 0 0 20px; }
.form_inner { width: 960px; margin: 0 auto; display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; }
.form_left { background: #fff; border-radius: 5px; display: table; width: 65%; height: 50px; padding: 5px; margin-right: 20px; transition: all 0.2s; }
.form_left:hover { background: #fbffbd; -webkit-box-shadow: 0 0 0 4px #ffd161 inset; box-shadow: 0 0 0 4px #ffd161 inset; }
.form_left .form_must { display: table-cell; vertical-align: middle; width: 10%; }
.form_left .form_must span { display: block; padding: 0 5px; margin-right: 10px; background: #d71523; color: #fff; font-size: 1.8rem; font-weight: bold; text-align: center; }
.form_left input { display: table-cell; outline: 0; border: none; background: none; width: 100%; height: 100%; font-size: 1.8rem; font-family: inherit; }
.form_right { width: 35%; }
.form_right .form_btn { width: 100%; }
.form_right .form_btn button { background: #069100; color: #fff; text-shadow: 0 1px 4px #00320d; font-weight: 600; font-size: 3rem; border-radius: 5px; border: 2px solid #bcff99; box-shadow: 0 2px 3px rgba(0,0,0,0.5); padding: 0px 20px; width: 100%; height: 50px; cursor: pointer; line-height: 1; letter-spacing: 1px; }
.form_right .form_btn button:hover  { background: #08bb00; }
.form_right .form_notice { font-size: 1.25rem; color: #fff; text-indent: -1em; padding-left: 1em; margin-top: 10px; line-height: 1.3; text-align: center; }

.form-pri { text-align: center; font-size: 4rem; line-height: 1.3; margin: 50px 0 30px; }
.form + section { margin-top: 50px; }
.form-arrow { position: absolute; left: 57%; top: -90px; }

/*----------------------------------------------------------------------------------------------
吹き出し
----------------------------------------------------------------------------------------------*/
/* 共通 */
.fukidashi .box,
.fukidashi .box2{
	display:none;
	position:absolute;
	left:15%;
	top: 120%;
	border-radius:10px;
	background-color:#ff0;
}
.fukidashi .box:after,
.fukidashi .box2:after{	/* 三角形を作成 */
	position:absolute;
	content:"";
	top:-32px;	/* 三角形の高さを２倍した値 */
	left:32px;
	width:0;
	height:0;
	border:16px solid transparent;
	border-bottom:16px solid #ff0;
}
.fukidashi:hover .box,
.fukidashi:hover .box2{
	z-index:2;
	display:block;
}

/* 固有 */
.fukidashi{
	position:relative;
	z-index:auto;
}
.fukidashi img{
	width:100%;
	height:100%;
}
.fukidashi .box{ width:650px; /* 吹き出しの幅 */ }
.fukidashi .box2{ width:300px; /* 吹き出しの幅 */ }
.fukidashi .text{
	top:8px;
	left:4px;
	padding:10px;
	color:#000;
	font-size:1.1rem;
}

/*----------------------------------------------------------------------------------------------
footer__attention
----------------------------------------------------------------------------------------------*/
#footer__attention{
	width:100%;
	padding:2rem 0 0;
	margin:0 auto;
}
#footer__attention p{
	width:960px;
	padding:20px 0;
	margin:0 auto;
	color:#666;
	font-size:1.4rem;
}
.service__list{
	width:860px;
	margin:0 auto;
	font-size:80%;
	line-height:1.4;
	background:#fff;
}
.service__list th,
.service__list td{
	padding:1rem;
	border:1px solid #ccc;
	vertical-align:middle;
}
.service__list th{ background:#ddd; }
.service__list_A,
.service__list_C{ width:25%; }
.service__list .txt__center{ text-align:center; }

/*----------------------------------------------------------------------------------------------
footer
----------------------------------------------------------------------------------------------*/
footer{
	width:100%;
	margin:0 auto;
	background-color:#ecf0ee;
}
#footer__inner{
	width:900px;
	padding:30px 0 80px;
	margin:0 auto;
	font-size:1.1rem;
}
#footer__inner_logo{
	float:left;
	width:248px;
	padding:10px 0 0 20px;
}
#footer__inner_right{
	float:right;
	width:600px;
}
#footer__inner li{
	float:left;
	padding-right:10px;
	margin-right:15px;
	list-style-type:none;
}
#footer__inner p{
	clear:both;
	padding-top:5px;
	color:#666;
	text-align:left;
}



/*///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
【 SP 】
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
@media screen and (max-width:768px){
	/*----------------------------------------------------------------------------------------------
	Basic Style
	----------------------------------------------------------------------------------------------*/
	body{
		width:100%;
		font-size:4vw;
		font-weight: normal;
		line-height:1.7;
		background:url(../img/base/base_background.jpg);
	}
	.KG { font-family: "Gothic MB101 Heavy", "A-OTF ゴシックMB101 Pr6N", sans-serif; font-weight: bold; -webkit-font-feature-settings: 'palt' 1; font-feature-settings: 'palt' 1; }

	img{ max-width:100%; }
	
	.img-left, .img-right { display: block; float: none; padding: 1em 0; }
	.img-right .caption, .img-left .caption, .caption { font-size: 4vw; }
	
	.flex { display: block; }

	/* Float */
	.side_photo{ float:right; width:35%; padding:0 0 1.4rem 1.4rem; }
	.side_photo2{ float:left; width:35%; padding:0 1.4rem 1.4rem 0; }

	/* PC/SP表示調整 */
	.display_pc{ display:none; }
	.display_sp{ display:block; }

	/*----------------------------------------------------------------------------------------------
	section
	----------------------------------------------------------------------------------------------*/
	section{ padding:0 0 4rem; }

	/*----------------------------------------------------------------------------------------------
	sub-head / letter
	----------------------------------------------------------------------------------------------*/
	.sub-head{
		width:100%;
		padding:3rem 0 1rem;
		margin:0 auto 1.5rem;
		font-size:7vw; 
		line-height: 1.2;
		-webkit-font-feature-settings: 'palt' 1;
		font-feature-settings: 'palt' 1;
	}
	.sub-head .small { font-size: 5.5vw; letter-spacing: -0.5px; }
	.sub-head .mark { font-size: 10vw; margin: 0 0 10px; }
	.sub-head2 { font-size: 6vw; border-left: 5px solid; padding: 10px 0 10px 10px; }
	#sec02 .sub-head:before { display: none; }
	#sec01 .sub-head { font-size: 7.8vw; }
	.letter{ width:95%; }

	/*----------------------------------------------------------------------------------------------
	countdown
	----------------------------------------------------------------------------------------------*/
	.timer01 { padding: 5px 0; font-size: 4.5vw; line-height: 1.2; }
	.timer01 .timer_num { font-size: 130%; }

	/*----------------------------------------------------------------------------------------------
	header
	----------------------------------------------------------------------------------------------*/
	header{ background:url(../img/hirota_opt_header_b_00.png) center bottom; }
	.header__bottom{
		width:113px;
		height:30px;
		margin:0 auto -15px;
		background:url(../img/base/arrow_header_red.png) center top;
	}

	/* プリヘッド */
	#header__pri img{
		width:95%;
		padding:.7rem 0;
		margin:auto;
	}

	/* 通常ヘッドライン */
	#header__img { width:100%; }
	#header__img .mv{ width:100%; }
	
	.main-visual {display: none;}
	.main-visual_sp {display: block; margin: 0 0 -8px;}
	
	#header__pri:before { border-width: 20px 15px 0 15px; bottom: -15px; }

	/*----------------------------------------------------------------------------------------------
	ブレッド
	----------------------------------------------------------------------------------------------*/
	ul.check li,
	ul.check_02 li{
		padding:1.2rem 0 1.2rem 4rem;
		font-size:5vw;
		background-position:0 4vmin no-repeat;
	}
	ul.check li p,
	ul.check_02 li p{
		padding-top:.4rem;
		font-size:4.5vw;
	}

	/*----------------------------------------------------------------------------------------------
	voice
	----------------------------------------------------------------------------------------------*/
	.voice1-box { padding: 2.5%; }
	.voice1-name { font-size: 5vw; }
	.voice2-box { padding: 10px; }
	.voice2-title { width: 100%; }
	.voice2-title h3 { font-size: 5.5vw; }
	
	/*----------------------------------------------------------------------------------------------
	merit
	----------------------------------------------------------------------------------------------*/
	.merit-num { width: 13vw; height: 13vw; font-size: 3.2vw; }
	.merit-title { width: 80vw; font-size: 4.8vw; }
	.merit dd { display: none; }
	
	/*----------------------------------------------------------------------------------------------
	profile
	----------------------------------------------------------------------------------------------*/
	#profile { background: #f5f5f5; padding: 4rem 0; }
	.profile-box { width: 100%; }
	.profile-sub { font-size: 7vw; text-align: center; }
	.profile-name p { font-size: 7vw; text-align: center; }
	.profile-name p.small { font-size: 4vw; }
	.profile-txt img { margin-bottom: 20px; }
	.profile h3 { margin: 30px 0 20px; }
	
	/*----------------------------------------------------------------------------------------------
	規約
	----------------------------------------------------------------------------------------------*/
	.kiyaku__box{ width:95%; }

	/*----------------------------------------------------------------------------------------------
	フォーム
	----------------------------------------------------------------------------------------------*/
	#form_header { padding: 10px 0; }
	.form_img { width: 95%; margin: 0 auto; }
	
	.form_title { font-size: 4vw; line-height: 1.3; margin: 0 0 5px; }
	.form_inner { width: 95%; display: block; }
	.form_left { width: 100%; margin: 0; height: 10vw; }
	.form_left .form_must span { font-size: 3.2vw; line-height: 1.3; }
	.form_left input { font-size: 4.5vw; }
	.form_right { width: 100%; }
	.form_right .form_btn button { margin: 10px 0 0; padding: 5px; height: auto; font-size: 6vw; line-height: 1.2; }
	.form_right .form_notice { font-size: 3vw!important; }

	#form_float .form_inner { display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: -o-flex; display: flex; }
	#form_float .form_left { width: 70%; padding: 1vw 0 1vw 1vw; }
	#form_float .form_left input { font-size: 4.3vw; }
	#form_float .form_left .form_must { width: 10%; }
	#form_float .form_left .form_must span { margin-right: 0.1em; padding: 5px 0; font-size: 2.5vw; line-height: 1.2; }
	#form_float .form_right { width: 27%; }
	#form_float .form_right .form_btn button { margin: 0; font-size: 4vw; letter-spacing: 1px; }
	
	.form-pri { font-size: 4.5vw; }

	/*----------------------------------------------------------------------------------------------
	吹き出し
	----------------------------------------------------------------------------------------------*/
	.fukidashi .box2{
		display:none;
		right:0;
		left:auto;
		width:300px;
	}
	.fukidashi .box2:after{
		top:-32px;
		right:32px;
		left:auto;
	}

	/*----------------------------------------------------------------------------------------------
	フォーム注釈
	----------------------------------------------------------------------------------------------*/
	/*----------------------------------------------------------------------------------------------
	footer__attention
	----------------------------------------------------------------------------------------------*/
	#footer__attention{ background-color:#ecf0ee; }
	#footer__attention p{
		width:90%;
		margin:0 auto;
	}
	.service__list{ width:95%; }
	.service__list th,
	.service__list td{ padding:.5em; }
	.service__list th{ background:#f5f5f5; }
	.service__list td.large{ font-size:120%; }
	/*----------------------------------------------------------------------------------------------
	footer
	----------------------------------------------------------------------------------------------*/
	#footer__inner{
		width:90%;
		padding:0 0 30px;
	}
	#footer__inner_logo{
		float:none;
		width:60%;
		padding:10px 0 14px 0;
	}
	#footer__inner_right{
		float:none;
		width:100%;
	}
}