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

html
	{
	font-size: 62.5%;/* ルートのフォントサイズを10pxに設定しておく */
	}

html:before,
html:after,
body:before,
body:after {
  content: "";
  background: #FF6C00;
  position: fixed;
  display: block;
  z-index: 100;
}

/* 上 */
html:before {
  height: 10px; 
  width: 100vw;
  left: 0;
  top: 0;
}

/* 右 */
html:after {
  width: 10px;
  height: 100vh;
  right: 0;
  top: 0;
}

/* 下 */
body:before {
  height: 10px;
  width: 100vw;
  bottom: 0;
  left: 0;
}

/* 左 */
body:after {
  width: 10px;
  height: 100vh;
  top: 0;
  left: 0;
}

body
	 {
	margin: 0 auto;
	padding: 0 20px ;
	max-width: 100%;
	font-family:'Noto Sans JP', sans-serif;
	line-height: 100%;
	text-align: center;
	-webkit-text-size-adjust : 100%;
	font-size: 1.6em;/* ルートのフォントサイズを1.6em（16pxと同等のサイズ）に設定remではないのはchoromのバグのため */
	color:#383838;/* サイトのフォントの基本カラーを指定 */
	background:#FFF;
	position: relative;
	z-index: 0;
	}

body a　/*スマホタップ時のハイライトカラー*/
	{
	 -webkit-tap-highlight-color:rgba(69,92,146,0.3);
	}
	
img{
	max-width: 100%;
	height: auto;
	width /***/:auto;　
	}

img{
	max-width: 100%;
	height: auto;
	width: auto\9; /* ie8 */
	}
		
.not_tel
	{
	cursor:default;
	}
	
/*********************************************/
/*全ページフェードインcommonに書き直し推奨
/*********************************************/
/*左から　① animation-name	キーフレームアニメーション名を指定。② animation-duration	1回のアニメーションにかかる時間を指定。
	③ animation-timing-function	アニメーションの変化率を指定。他に ease、linear、ease-out、ease-in-out やオリジナルの変化率を指定できる。④ animation-delay	アニメーションの開始をいくら遅らせるかを指定。
	⑤ animation-iteration-count	アニメーションを何回繰り返すかを指定。⑥ animation-direction	繰り返し時、往復処理をするかを指定。*/
body {
    animation: fadeIn 1s ease 0s 1 normal;
    -webkit-animation: fadeIn 3s ease 0s 1 normal;
	}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
	}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
	}	

/*共通設定終わり*/

/* ▼▼▼▼▼▼▼▼MaxWidth480(mobile)▼▼▼▼▼▼▼▼ */

@media screen and (max-width: 480px) {
 /* ************** */
body
	 {
	padding: 0 10px ;
	}
/* 上 */
html:before {
  height: 5px; 
  width: 100vw;
  left: 0;
  top: 0;
}

/* 右 */
html:after {
  width: 5px;
  height: 100vh;
  right: 0;
  top: 0;
}

/* 下 */
body:before {
  height: 5px;
  width: 100vw;
  bottom: 0;
  left: 0;
}

/* 左 */
body:after {
  width: 5px;
  height: 100vh;
  top: 0;
  left: 0;
}
 /* *************** */
	}
/* ************************************************************
下層ページ共通メインヴィジュアル
************************************************************ */
#main2{
	width:100%;
	margin: 0 auto;
	padding-top: 125px;
	max-width: 1600px;
    }
#main2 .main2-pc {
	width:100%;
    }
#main2 .main2-mb{
	display: none;
    }
/* ▼▼▼▼▼▼▼▼MaxWidth1200(tablet)▼▼▼▼▼▼▼▼ */
@media screen and (max-width: 1200px) {
 /* ************** */
#main2{
	padding-top: 112px;
    }
 /* *************** */
}

/* ▼▼▼▼▼▼▼▼MaxWidth1024(tablet)▼▼▼▼▼▼▼▼ */
@media screen and (max-width: 1024px) {
 /* ************** */

 /* *************** */
}
/* ▼▼▼▼▼▼▼▼MaxWidth960(tablet)▼▼▼▼▼▼▼▼ */
@media screen and (max-width: 959px) {
 /* ************** */
#main2{
	padding-top: 90px;
    }

/* *************** */
}

/* ▼▼▼▼▼▼▼▼MaxWidth768(tablet)▼▼▼▼▼▼▼▼ */
@media screen and (max-width: 768px) {
 /* ************** */
#main2 .main2-pc{
	display: none;
    }
#main2 .main2-mb{
	display: block;
    }
/* *************** */
}

/* ▼▼▼▼▼▼▼▼MaxWidth480(mobile)▼▼▼▼▼▼▼▼ */
@media screen and (max-width: 480px) {
 /* ************** */
#main2{
	padding-top: 70px;
    }

 /* *************** */
}
/* ************************************************************
バナー
************************************************************ */

.banner01{
	width: 100%;
	margin: 0 auto;
	max-width: 900px;
	padding: 8% 5% 0;
	z-index: 5;
}
.banner01 .seasonmb{
	display: none;
}
/* ▼▼▼▼▼▼▼▼MaxWidth550(mobile)▼▼▼▼▼▼▼▼ */
@media screen and (max-width: 550px) {
 /* ************** */

.banner01 .seasonpc{
	display: none;
}
.banner01 .seasonmb{
	display: block;
	z-index: 5;
}
 /* *************** */
}
/* ************************************************************
クリアフィックス
************************************************************ */

.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
	}
* html .clearfix             { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */



.clear
	{
	clear:both;
	}
	

/* ************************************************************
サイト全体のサイズ及び基本文字色など
************************************************************ */

	

/* ************************************************************
LINK
************************************************************ */
	
a {
	color:#383838;
	text-decoration:none;
	transition: 0.5s;
	}

a:link 
	{
	
	}

a:visited 
	{
	
	}

a:hover 
	{
	color:#383838;
	text-decoration:none;
	opacity: 0.7;
	}

a:focus 
	{
	}

a:active 
	{
	}
	
/*****************************************************
ページタイトル
*****************************************************/
		
/* ************************************************************
CONTENTS
************************************************************ */


/* ▼▼▼▼▼▼▼▼MaxWidth960(tablet)▼▼▼▼▼▼▼▼ */


@media screen and (max-width: 960px) {
 /* ************** */

.mobile_hidden
	{
	overflow:hidden;
	width:100%;
	}

 /* *************** */
	}
	
/* ▼▼▼▼▼▼▼▼MaxWidth480(mobile)▼▼▼▼▼▼▼▼ */

@media screen and (max-width: 480px) {
 /* ************** */
.mb_none
	{
	display:block;
	}
 /* *************** */
	}
	
	
	
/* ************************************************************
共通コンテンツボックス（一番大きい枠）
************************************************************ */
#contensbox
	{
	}
	
/* ▼▼▼▼▼▼▼▼MaxWidth1170(mobile)▼▼▼▼▼▼▼▼ */

@media screen and (max-width: 1170px) {
 /* ************** */
 #contensbox
	{
	}
 /* *************** */
	}
	
/* ▼▼▼▼▼▼▼▼MaxWidth1024(mobile)▼▼▼▼▼▼▼▼ */

@media screen and (max-width: 1024px) {
 /* ************** */
#contensbox
	{
	}
 /* *************** */
	}
	
/* ▼▼▼▼▼▼▼▼MaxWidth960(tablet)▼▼▼▼▼▼▼▼ */


@media screen and (max-width: 960px) {
 /* ************** */

 /* *************** */
	}
	
/* ▼▼▼▼▼▼▼▼MaxWidth850(mobile)▼▼▼▼▼▼▼▼ */

@media screen and (max-width: 850px) {
 /* ************** */

 /* *************** */
	}
		
/* ▼▼▼▼▼▼▼▼MaxWidth768(tablet)▼▼▼▼▼▼▼▼ */


@media screen and (max-width: 768px) {
 /* ************** */
 /* *************** */
	}
	

/* ▼▼▼▼▼▼▼▼MaxWidth640(tablet)▼▼▼▼▼▼▼▼ */


@media screen and (max-width: 640px) {
 /* ************** */


 /* *************** */
	}
	
/* ▼▼▼▼▼▼▼▼MaxWidth480(mobile)▼▼▼▼▼▼▼▼ */

@media screen and (max-width: 480px) {
 /* ************** */
	
 /* *************** */
	}
	
		
/* ************************************************************
googleタグの余白をけす
************************************************************ */

iframe[name='google_conversion_frame'] { 
  height: 0 !important;
  width: 0 !important; 
  line-height: 0 !important; 
  font-size: 0 !important;
  margin-top: -13px;
  float: left;
}
	
