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

@font-face {
  font-family: "YuGothic M";
  src: local("Yu Gothic Medium");
}

/* =================================
 reset
================================= */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, main {
	display: block;
}
body{ margin:0px; padding:0px;color:#333;}
p{ margin:0px; padding:0px}
a{color:#333;text-decoration: none;}
a:hover{
	text-decoration: none;
}
*a:hover{
	text-decoration: none;
}
a img:hover{
	opacity: 0.6;
}
img{
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
h1,h2,h3,h4,h5{
	font-weight: normal;
}

/* 電話番号リンク禁止
---------------------------------------------------- */
.disable-auto-tel a[href^="tel:"] {
    color: inherit;
    text-decoration: none;
    pointer-events: none;
  }

@media (min-width: 751px),print {
    a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    }
}
@media (max-width: 751px){
    a[href*="tel:"]{
        text-decoration: none;
        color: inherit;
    }
}

/* ----------------------------------------------------------------------
 clearfix
---------------------------------------------------------------------- */
.clearfix:after{
    content:""; /*疑似要素を実体化*/
    display:block; /*ブロック要素に変更する*/
    clear:both; /*floatを解除する*/
}

/* ----------------------------------------------------------------------
 inner
---------------------------------------------------------------------- */
.innerOrigin{
	width:calc(100% - 30px);
	max-width:1200px;
	margin-left: auto;
	margin-right: auto;
}
.inner960{
	max-width:960px;
	width:calc(100% - 30px);
	margin-left: auto;
	margin-right: auto;
}
.inner768{
	max-width:768px;
	width:calc(100% - 30px);
	margin-left: auto;
	margin-right: auto;
}

/* ----------------------------------------------------------------------
 角丸
---------------------------------------------------------------------- */
.radius10{
	border-radius: 10px;		/* CSS3草案 */
	-webkit-border-radius: 10px;	/* Safari,Google Chrome用 */
	-moz-border-radius: 10px;	/* Firefox用 */
}
.radius15{
	border-radius: 15px;		/* CSS3草案 */
	-webkit-border-radius: 15px;	/* Safari,Google Chrome用 */
	-moz-border-radius: 15px;	/* Firefox用 */
}
.radius20{
	border-radius: 20px;		/* CSS3草案 */
	-webkit-border-radius: 20px;	/* Safari,Google Chrome用 */
	-moz-border-radius: 20px;	/* Firefox用 */
}

/* ----------------------------------------------------------------------
 flexbox
---------------------------------------------------------------------- */
.flex{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: stretch;    /*全ての要素の高さを揃える*/
}
.space-between{
	justify-content: space-between; /*均等に間隔をあける*/
}
.flex-center{
    justify-content: center;
}
.flex-wrap{
	flex-wrap: wrap; /*flex繰り返し*/
}
.row-reverse{
	flex-direction:row-reverse;	/*flex逆順*/
}
@media screen and (max-width:767px)  {
	.flex-block{
		display: block; /*スマホ時フレックス解除*/
	}
}

@media print, screen and (min-width:768px)  {
	.flexBox02{
		width:48%;
	}
	.flexBox03{
		width:30%;
	}
	.flexBox04{
		width:23%;
	}
}
@media screen and (max-width:767px)  {
	.flexBox02{
		width:100%;
		margin-bottom: 20px;
	}
	.flexBox03{
		width:100%;
		margin-bottom: 20px;
	}
	.flexBox02:last-child,.flexBox03:last-child{
		margin-bottom: 0;
	}
	.flexBox04{
		width:48%;
		margin-bottom: 20px;
	}
	.flexBox04:nth-child(3),.flexBox04:nth-child(4){
		margin-bottom: 0;
	}
}


/* ----------------------------------------------------------------------
 float
---------------------------------------------------------------------- */
.left,.leftPc{
	float:left;
}
.right,.rightPc{
	float:right;
}

@media screen and (max-width:750px)  {
	.leftPc,.rightPc{
		width:100%;
	}
}

/* ----------------------------------------------------------------------
 タブレット以上のみ表示
---------------------------------------------------------------------- */

@media screen and (max-width: 767px) {
    .pc_only{
        display:none !important;
    }
}

/* ----------------------------------------------------------------------
    スマホ以下のみ表示
---------------------------------------------------------------------- */
@media screen and (min-width: 768px) {
    .sp_only{
        display:none !important;
    }
}

/* ----------------------------------------------------------------------
 フォント
---------------------------------------------------------------------- */
.font50 {
	font-size: 50%;
}
.font60 {
	font-size: 60%;
}
.font70 {
	font-size: 70%;
}
.font80 {
	font-size: 80%;
}
.font90 {
	font-size: 90%;
}
.font100 {
	font-size: 100%;
}
.font110 {
	font-size: 110%;
}
.font120 {
	font-size: 120%;
}
.font130 {
	font-size: 130%;
}
.font150 {
	font-size: 150%;
}
.font180 {
	font-size: 180%;
}
.font200 {
	font-size: 200%;
}
.font230 {
	font-size: 230%;
}
.font250 {
	font-size: 250%;
}

.font12px{
	font-size: 12px;
}
.font14px{
	font-size: 14px;
}
.font16px{
	font-size: 16px;
}
.font18px{
	font-size: 18px;
}
.font20px{
	font-size: 20px;
}
.font25px{
	font-size: 25px;
}
.font30px{
	font-size: 30px;
}
.font35px{
	font-size: 35px;
}
.font50px{
	font-size: 50px;
}
@media screen and (min-width: 768px) {
	.font12-14px{
		font-size: 14px;
	}
	.font14-16px{
		font-size: 16px;
	}
	.font15-20px{
		font-size: 20px;
	}
	.font15-18px{
		font-size: 18px;
	}
	.font16-18px{
		font-size: 18px;
	}
	.font16-20px{
		font-size: 20px;
	}
	.font18-20px{
		font-size: 20px;
	}
	.font18-25px{
		font-size: 25px;
	}
    .font20-22px{
		font-size: 22px;
	}
	.font20-25px{
		font-size: 25px;
	}
	.font20-30px{
		font-size: 30px;
	}
    .font22-28px{
		font-size: 28px;
	}
	.font22-30px{
		font-size: 30px;
	}
	.font25-30px{
		font-size: 30px;
	}
	.font28-32px{
		font-size: 32px;
	}
	.font30-35px{
		font-size: 35px;
	}
    .font35-40px{
		font-size: 40px;
	}
	.font35-45px{
		font-size: 45px;
	}
	.font40-50px{
		font-size: 50px;
	}
}
@media screen and (max-width: 767px) {
	.font12-14px{
		font-size: 12px;
	}
	.font14-16px{
		font-size: 14px;
	}
	.font15-20px{
		font-size: 15px;
	}
	.font15-18px{
		font-size: 15px;
	}
	.font16-18px{
		font-size: 16px;
	}
	.font16-20px{
		font-size: 16px;
	}
	.font18-20px{
		font-size: 18px;
	}
	.font18-25px{
		font-size: 18px;
	}
    .font20-22px{
		font-size: 20px;
	}
	.font20-25px{
		font-size: 20px;
	}
	.font20-30px{
		font-size: 20px;
	}
    .font22-28px{
		font-size: 22px;
	}
	.font22-30px{
		font-size: 22px;
	}
	.font25-30px{
		font-size: 25px;
	}
	.font28-32px{
		font-size: 28px;
	}
	.font30-35px{
		font-size: 30px;
	}
    .font35-40px{
		font-size: 35px;
	}
	.font35-45px{
		font-size: 35px;
	}
	.font40-50px{
		font-size: 40px;
	}
}

/* =================================
フォントファミリー
================================= */

.yu_font{
	font-family:"游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif !important;
}
.yugo_font{
	font-family: "游ゴシック体", YuGothic, "YuGothic M", sans-serif;
}

/* =================================
Adobe Font
================================= */
.dinB_font{
	font-family: "din-2014", sans-serif;
	font-weight: 700;
	font-style: normal;
}

/* ----------------------------------------------------------------------
行間調整
---------------------------------------------------------------------- */
.lh10{
	line-height:1.0em !important;
}
.lh12{
	line-height:1.2em !important;
}
.lh15{
	line-height:1.5em !important;
}
.lh18{
	line-height:1.8em !important;
}
.lh20{
	line-height:2em !important;
}
.lh25{
	line-height:2.5em !important;
}

/* ----------------------------------------------------------------------
 文字揃え
---------------------------------------------------------------------- */
.txtCenter{
	text-align:center;
}
.txtLeft{
	text-align:left;
}
.txtRight{
	text-align:right;
}
.txtJustify{
	text-align:justify;
}

/* ----------------------------------------------------------------------
 文字色
---------------------------------------------------------------------- */
.white{
	color:#fff;
}
.blk{
	color:#333;
}
.blue{
	color:#678096;
}
.sky{
	color:#71acda;
}
.pink{
	color:#ff7b7b;
}

/* ----------------------------------------------------------------------
 文字スタイル
---------------------------------------------------------------------- */
.bold{
	font-weight: bold;
}
.normal{
	font-weight: normal;
}

/* ----------------------------------------------------------------------
文字間
---------------------------------------------------------------------- */
.ls01{
	letter-spacing: 0.1em;
}
.ls02{
	letter-spacing: 0.2em;
}

/* ----------------------------------------------------------------------
 スマホのみ改行
---------------------------------------------------------------------- */

@media print, screen and (min-width: 821px) {
	.kaigyouTab {
		display: none;
	}
	.kaigyouSp {
		display: none;
	}
}
@media screen and (max-width: 820px) and (min-width : 768px){
	.kaigyouSp {
		display: none;
	}
}
@media screen and (max-width: 767px){
	.kaigyouPc {
		display: none;
	}
}
@media screen and (min-width: 480px),print{
	.kaigyouSpMini {
		display: none;
	}
}

/* ----------------------------------------------------------------------
 margin・padding
---------------------------------------------------------------------- */
/*margin top*/
.mt00 {
	margin-top: 0px;
}
.mt05 {
	margin-top: 5px;
}
.mt10 {
	margin-top: 10px;
}
.mt15 {
	margin-top: 15px;
}
.mt20 {
	margin-top: 20px;
}
.mt25 {
	margin-top: 25px;
}
.mt30 {
	margin-top: 30px;
}
.mt35 {
	margin-top: 35px;
}
.mt40 {
margin-top: 40px;
}
.mt45 {
	margin-top: 45px;
}
.mt50 {
	margin-top: 50px;
}
.mt80 {
	margin-top: 80px;
}
.mt100 {
	margin-top: 100px;
}
/*margin bottom*/
.mb00 {
	margin-bottom: 0px;
}
.mb05 {
	margin-bottom: 5px;
}
.mb10 {
	margin-bottom: 10px;
}
.mb15 {
	margin-bottom: 15px;
}
.mb20 {
	margin-bottom: 20px;
}
.mb25 {
	margin-bottom: 25px;
}
.mb30 {
	margin-bottom: 30px;
}
.mb35 {
	margin-bottom: 35px;
}
.mb40 {
	margin-bottom: 40px;
}
.mb45 {
	margin-bottom: 45px;
}
.mb50 {
	margin-bottom: 50px;
}
.mb70 {
	margin-bottom: 70px;
}
.mb80 {
	margin-bottom: 80px;
}
.mb100 {
	margin-bottom: 100px;
}

/*padding top*/
.pt05 {
	padding-top: 5px;
}
.pt10 {
	padding-top: 10px;
}
.pt15 {
	padding-top: 15px;
}
.pt20 {
	padding-top: 20px;
}
.pt25 {
	padding-top: 25px;
}
.pt30 {
	padding-top: 30px;
}
.pt35 {
	padding-top: 35px;
}
.pt40 {
	padding-top: 40px;
}
.pt45 {
	padding-top: 45px;
}
.pt50 {
	padding-top: 50px;
}
.pt70 {
	padding-top: 70px;
}
.pt80 {
	padding-top: 80px;
}
.pt100 {
	padding-top: 100px;
}
.pt130 {
	padding-top: 130px;
}
/*padding bottom*/
.pb05 {
	padding-bottom: 5px;
}
.pb10 {
	padding-bottom: 10px;
}
.pb15 {
	padding-bottom: 15px;
}
.pb20 {
	padding-bottom: 20px;
}
.pb25 {
	padding-bottom: 25px;
}
.pb30 {
	padding-bottom: 30px;
}
.pb35 {
	padding-bottom: 35px;
}
.pb40 {
	padding-bottom: 40px;
}
.pb45 {
	padding-bottom: 45px;
}
.pb50 {
	padding-bottom: 50px;
}
.pb70 {
	padding-bottom: 70px;
}
.pb80 {
	padding-bottom: 80px;
}
.pb100 {
	padding-bottom: 100px;
}
.pd10{
	padding: 10px;
	box-sizing: border-box;
}
.pd15{
	padding: 15px;
	box-sizing: border-box;
}
.pd20{
	padding: 20px;
	box-sizing: border-box;
}
.pd25{
	padding: 25px;
	box-sizing: border-box;
}
.pd30{
	padding: 30px;
	box-sizing: border-box;
}
    
/* ----------------------------------------------------------------------
画像
---------------------------------------------------------------------- */
img.img100{
    width:100%;
    display:block;
}
img.imgCenter{
    max-width: 100%;
    display:block;
    margin-left:auto;
    margin-right:auto;
}
img.imgLeft{
    max-width: 100%;
    display:block;
    margin-right:auto;
}
img.imgRight{
    max-width: 100%;
    display:block;
    margin-left:auto;
}

/* ----------------------------------------------------------------------
 背景色
---------------------------------------------------------------------- */
.bgWhite{
	background:#fff;
}
.bgGray{
	background:#f2f2f2;
}

/* ----------------------------------------------------------------------
 スクロールフェード
---------------------------------------------------------------------- */
.fade {
	opacity: 0;
	transform: translateY(50px);
}
.fade01 {
	transition: opacity 1.5s, transform 1s;	
}
.fade02 {
	transition: opacity 1.5s, transform 1s;
	transition-delay: 0.1s;
}
.fade03 {
	transition: opacity 1.5s, transform 1s;	
	transition-delay: 0.2s;
}
.fade04 {
	transition: opacity 1.5s, transform 1s;		
	transition-delay: 0.3s;
}
.fade.on {
	opacity: 1;
	transform: translateY(0px);
}

/* ----------------------------------------------------------------------
 header + MV
---------------------------------------------------------------------- */
.grad{
    background: #1992D5;
    background: linear-gradient(0deg,rgba(25, 146, 213, 1) 0%, rgba(155, 227, 255, 1) 100%);
}

/* ----------------------------------------------------------------------
 header
---------------------------------------------------------------------- */
header{
    background: transparent;
}
.headerInner{
    width: calc(100% - 30px);
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    height: 100px;
    align-items: center;
}
.headerInner h1{
    width: 80px;
    margin-left: auto;
    margin-right: auto;
}
.headerInner h1 img{
    display: block;
    width: 100%;
}
@media screen and (max-width: 767px){
    .headerInner{
        height: 60px;
    }
    .headerInner h1{
        width: 50px;
    }
}

/* ----------------------------------------------------------------------
 メインビジュアル
---------------------------------------------------------------------- */
.mvInner{
    width: calc(100% - 60px);
    max-width:960px;
    margin-left: auto;
    margin-right: auto;
}
.mvImg{
    display: block;
    width: 100%;
}
.mvPc,.mvSp{
    position: relative;
}
.mvTxt{
    position: relative;
    z-index: 4;
}
.mv03,.mv01{
    mix-blend-mode: multiply;
}
.mv03,.mv02,.mv01{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.mv03{
    z-index: 3;
}
.mv02{
    z-index: 2;
}
.mv01{
    z-index: 1;
}
@media screen and (min-width: 768px),print{
    .mvSp{
        display: none;
    }
}
@media screen and (max-width: 767px){
    .mvInner{
        width: calc(100% - 40px);
    }
    .mvPc{
        display: none;
    }
}
    
.wave{
	position: relative;
    display: block;
    width: 100%;
	top:1px;
}

/* ----------------------------------------------------------------------
 コンテンツ
---------------------------------------------------------------------- */
/* 共通タイトル ------------------- */
.titEn{
	color:#678096;
}

/* Movie ------------------- */
div.vid_contents {
	width: 100%;/*背景色を横幅いっぱいに広げる*/
	text-align: center;
	margin-left:auto;
	margin-right: auto;
	margin-bottom: 50px;
}
video.vid_main {
	width: 100%;
	max-width: 920px;/*PC版での最大幅*/
}
@media screen and (max-width:767px)  {
	video.vid_main {
		max-width: 420px;/*SP版での最大幅*/
	}
}

/* イントロダクション ------------------- */
.introWrap{
	position: relative;
}
.intro{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 1920px;
	margin-left: auto;
	margin-right: auto;
}
img.introBg{
	position: absolute;
	display: block;
	width: 100%;
	bottom:0;
	left:0;
	object-fit: cover;
	object-position: center top;
	height:400px;
}
.introTxt,.introImg{
	width: 50%;
	position: relative;
	z-index: 2;
}
.introImg img{
	display: block;
	width: 100%;
}
.introTxtInner{
	max-width: 600px;
	width: calc(100% - 20px);
	margin-left: auto;
	padding: 20px 40px 0 0;
	box-sizing: border-box;
}
.introTxtInner h2{
	position: relative;
	font-size:55px;
	letter-spacing: 0.1em;
	padding-top: 40px;
	padding-bottom: 85px;
	line-height: 1.2em;
	margin-bottom: 15px;
}
.introTxtInner h2 span{
	font-size: 60%;
}
.introTxtInner h2 strong{
	display: inline-block;
	position: relative;
	z-index: 2;
	font-weight:normal;
}
.introTxtInner h2 em{
	display:inline-block;
	position: absolute;
	font-family:'hanacho';
	color:#e6ebf5;
	font-size:100%;
	top:0;
	left:0;
	transform: rotate(-7deg);
}
.introTxtInner h2::after{
	position: absolute;
	content: "";
	width: 1px;
	height: 80px;
	background: #666;
	left:30px;
	bottom:0;
}
.introTxtInner p{
	font-size: 18px;
}
@media screen and (max-width: 1200px){
	.introTxtInner h2{
		font-size:40px;
		padding-bottom: 65px;
	}
	.introTxtInner h2::after{
		height: 60px;
	}
	.introTxtInner p{
		font-size: 16px;
	}
}
@media screen and (max-width: 960px){
	.intro{
		display: block;
	}
	.introTxt{
		width: calc(100% - 30px);
		max-width: 840px;
		margin: 0 auto;
	}
	.introTxtInner{
		width: 100%;
		max-width: 100%;
		padding: 20px 0 30px 0;
		margin-right: auto;
	}
}
@media screen and (max-width: 960px) and (min-width:601px){
	.introImg{
		width: 100%;
		max-width: 600px;
		height: 480px;
		margin: 0 auto;
	}
	.introImg img{
		object-fit: cover;
		object-position: center top;
		height: 100%;
	}
}
@media screen and (max-width: 600px){
	.introTxtInner h2{
		font-size:35px;
	}
	.introImg{
		width: 100%;
	}
}

/* お悩み ------------------- */
.problem{
	padding: 80px 0;
	background: url(../images/bg_problem.jpg) no-repeat center center;
}
@media screen and (max-width: 767px){
	.problem{
		padding: 60px 0;
	}
}
.icoProblem{
	width: 200px;
}
.problem h2{
	border-bottom: 1px #678096 solid;
	padding-bottom: 15px;
	margin-bottom: 20px;
}
.problem h2 span{
	font-size:130%;
}
@media screen and (max-width: 480px){
	.problem h2.ls01{
		letter-spacing: 0;
	}
	.icoProblem{
		width: 150px;
	}
}
.problem ul{
	list-style: none;
}
.problem ul li{
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px #678096 dashed;
	line-height: 1.8em;
	padding-left:1.3em;
	text-indent:-1.3em;
}
.problem ul li::before{
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f14a";
	color:#ff7b7b;
	margin-right: 0.3em;
}

/* 選ばれる4つの代表成分 ------------------- */
.ingredient{
	padding: 80px 0;
	position: relative;
}
@media screen and (max-width: 767px){
	.ingredient{
		padding: 60px 0;
	}
}
.ingredientBgL,
.ingredientBgR{
	position: absolute;
	display: block;
	object-fit: cover;
	height: 100%;
	width: 380px;
}
.ingredientBgL{
	left:0;
}
.ingredientBgR{
	right:0;
}
@media screen and (min-width: 768px),print{
	.ingredientBgL,
	.ingredientBgR{
		top:0;
	}
}
@media screen and (max-width: 767px){
	.ingredientBgL,
	.ingredientBgR{
		height: 1435px;
	}
	.ingredientBgL{
		object-position: right center;
		width: 30%;
		top:0;
	}
	.ingredientBgR{
		object-position: left center;
		width: 60%;
		bottom:0;
	}
}

.ingredient .inner960{
	position: relative;
	z-index: 2;
}
.ingredient h2{
	font-size: 50px;
}
.ingredient h2 span{
	font-size:65%;
}
.ingredient h2 strong{
	font-weight:normal;
}
@media screen and (max-width: 767px){
	.ingredient h2{
		font-size: 35px;
	}
}
.ingredientImg{
	width: 200px;
}
.ingredientTxt{
	width: calc(100% - 240px);
}
.ingredientTxt h3{
	padding-bottom: 10px;
	margin-bottom: 15px;
	border-bottom: 1px #333 solid;
}
.ingredientBox{
	margin-bottom: 40px;
}
.ingredientBox:nth-child(even){
	flex-direction: row-reverse;
}
.ingredientBox:last-child{
	margin-bottom: 0;
}
@media screen and (max-width: 767px){
	.ingredientBox{
		display: block;
	}
	.ingredientImg{
		width: 200px;
		margin: 0 auto 30px;
	}
	.ingredientTxt{
		width: 100%;
	}
}

/* 無添加 ------------------- */
.no-additives{
	padding: 80px 0;
	background: url(../images/bg_noadditives.jpg) no-repeat center center;
}
@media screen and (max-width: 767px){
	.no-additives{
		padding: 60px 0;
	}
}
.no-additives h2{
	font-size: 50px;
}
@media screen and (max-width: 767px){
	.no-additives h2{
		font-size: 40px;
	}
}
.no-additivesBox{
	background: #fff;
	border:2px #ff7b7b solid;
	box-sizing: border-box;
	padding: 10px;
	width: calc((100% - 30px) / 4);
	border-radius: 100px;
	margin-bottom: 15px;
}
@media screen and (max-width: 767px){
	.no-additivesBox{
		width: calc((100% - 10px) / 2);
	}
}

/* All In One ------------------- */
.aio{
	padding: 80px 0 30px;
	position: relative;
}
@media screen and (max-width: 767px){
	.aio{
		padding: 60px 0 15px;
	}
}
.aio .inner960{
	position: relative;
	z-index: 2;
}
.aio::after{
	content: '';
    position: absolute;
    bottom: -1px;
    right: 0;
    border-bottom: 25vw solid #eff2f8;
    border-right: 100vw solid transparent;
    z-index: 0;
}
img.aioLogo{
	display: block;
	width: 100px;
	margin: 10px auto 0;
}
.aio h2{
	font-size:50px;
}
@media screen and (max-width: 767px){
	.aio h2{
		font-size:35px;
	}
}
.aioImg{
	width:200px;
}
.aioTxt{
	width: calc(100% - 240px);
}
.aioTxt h3{
	border-bottom: solid 3px #678096;
	position: relative;
	padding-bottom: 10px;
	margin-bottom: 15px;
}
.aioTxt h3::after{
	position: absolute;
	content: " ";
	display: block;
	border-bottom: solid 3px #ff7b7b;
	bottom: -3px;
	width: 30%;
}
@media screen and (max-width: 767px){
	.aioBox{
		display: block;
	}
	.aioImg{
		margin: 0 auto 30px;
	}
	.aioTxt{
		width: 100%;
	}
}

/* ご利用のステップ ------------------- */
.flow{
	padding: 40px 0 80px;
	background:#eff2f8 ;
}
@media screen and (max-width: 767px){
	.flow{
		padding: 30px 0 60px;
	}
}
.flow h2{
	font-size:50px;
}
@media screen and (max-width: 767px){
	.flow h2{
		font-size:35px;
	}
}
img.flowImg{
	display: block;
	width: 180px;
	margin: 0 auto 40px;
}
.flowBox{
	width: calc((100% - 40px) / 3);
	background: #fff;
	border-radius: 5px;
	padding: 50px 20px 30px;
	position: relative;
	margin-top: 25px;
	box-sizing: border-box;
}
.flowNo{
	position: absolute;
	font-size:18px;
	line-height: 1;
	top: -25px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.flowNo span{
	font-size: 45px;
}
.flowNo span,.flowNo strong{
	font-weight: normal;
}
.flowNo strong{
	color:#ff7b7b;
}
.flowBox h3{
	position: relative;
	padding-bottom: 25px;
	margin-bottom: 15px;
}
.flowBox h3::after{
	position: absolute;
	content: url(../images/bar_flow.png);
	bottom:0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
@media screen and (max-width: 960px){
	.flowWrap{
		display: block;
	}
	.flowBox{
		width: 100%;
		max-width: 480px;
		margin: 0 auto 40px;
	}
	.flowBox:last-child{
		margin-bottom: 0;
	}
}

/* ----------------------------------------------------------------------
 CV
---------------------------------------------------------------------- */
.cv{
	width: calc(100% - 30px);
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 50px;
}
.cv a img{
	transition : all 0.5s ease 0s;
}
.cv a:hover img{
	opacity: 1;
	filter: grayscale(0.7);
}

/* ----------------------------------------------------------------------
 copyright
---------------------------------------------------------------------- */
.copyright{
	background: #71acda;
	height: 50px;
}
.copyright p{
	text-align: center;
	font-size: 12px;
	color: #fff;
	line-height: 50px;
}

/* ----------------------------------------------------------------------
 トップへ戻るボタン
---------------------------------------------------------------------- */
#pageTop {
	position: fixed;
	bottom: 30px;
	right: 20px;
	z-index: 9999;
}
#pageTop a {
	display: block;
	color: #fff;
	font-weight: normal;
	font-size:20px;
	text-decoration: none;
	text-align: center;
	background:#fff;
	width:45px;
	height:45px;
	line-height: 1.1;
	box-sizing: border-box;
	border-radius: 50%;
	border:1px #71acda solid;
}
#pageTop a i{
	font-size:75%;
	color:#71acda;
}
#pageTop a span{
	font-size:12px;
	font-weight:bold;
	display: block;
	color:#71acda;
}
#pageTop a:hover {
	text-decoration: none;
	opacity: 0.7;
}
