@import url(https://db.onlinewebfonts.com/c/736cf5b08b01082a3645e14038868e20?family=Krungthep);
/*テーマカラーの定義（CSS変数）
ここのカラーコードを変更するだけで、テンプレートのテーマカラーが変わります。
---------------------------------------------------------------------------*/
:root {
    --main:#001f54;
	--sub:#d82448;
	--standard:#489fb5;
	--advance:#85b723;
	--premium:#e59d1f;
}


/*写真の制限ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.img{
	/* PCの右クリック禁止 */
    pointer-events: none;
	/* SPの長押し禁止 */
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -moz-touch-callout:none;
    -moz-user-select:none;
    user-select:none;
}

html,body {
	height: 100%;
}
	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	html, body {
		font-size: 16px;	/*基準となるフォントサイズ。*/
	}

	}/*追加指定ここまで*/

/*文字の設定ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
body {
	font-family:Komachi-MM, "Kaimin Sora Medium", "ヒラギノ角ゴ Pro W3",'M PLUS Rounded 1c',"Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	-webkit-text-size-adjust: none;
	background: #fff;	/*背景色*/
	color: #777;		/*文字色*/
}


/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/
#splash {
    /*fixedで全面に固定*/
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index:9000;
	background:#eee;
	text-align:center;
	color:#d72348;
}

/* Loading画像中央配置　*/
#splash_logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo svg{
    width:300px;
}

/*========= 画面遷移のためのCSS ===============*/

/*画面遷移アニメーション*/
.splashbg{
    display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg{
    display: block;
    content: "";
    position:fixed;
	z-index: 9999;
    width: 100%;
    height: 100vh;
    top: 0;
	left: 0;
    transform: scaleY(0);
    background-color: #af1f24;/*伸びる背景色の設定*/
	animation-name:PageAnime;
	animation-duration:1.2s;
	animation-timing-function:ease-in-out;
	animation-fill-mode:forwards;
}

@keyframes PageAnime{
	0% {
		transform-origin:top;
		transform:scaleY(0);
	}
	50% {
		transform-origin:top;
		transform:scaleY(1);
	}
	50.001% {
		transform-origin:bottom;
	}
	100% {
		transform-origin:bottom;
		transform:scaleY(0);
	}
}

/*========= 画面遷移のためのCSS 2 ===============*/

/*画面遷移アニメーション*/
.splashbg2{
    display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg2{
    display: block;
    content: "";
    position:fixed;
	z-index: 900;
    width: 100%;
    height: 100vh;
    top: 0;
	left: 0;
    transform: scaleY(0);
    background-color: #af1f24;/*伸びる背景色の設定*/
	animation-name:PageAnime2;
	animation-duration:1.2s;
	animation-timing-function:ease-in-out;
	animation-fill-mode:forwards;
}

@keyframes PageAnime2{
	0% {
		transform-origin:top;
		transform:scaleY(0);
	}
	50% {
		transform-origin:top;
		transform:scaleY(1);
	}
	50.001% {
		transform-origin:bottom;
	}
	100% {
		transform-origin:bottom;
		transform:scaleY(0);
	}
}

/*画面遷移の後現れるコンテンツ設定*/
#container{
	opacity: 0;/*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #container{
	animation-name:PageAnimeAppear;
	animation-duration:1s;
	animation-delay: 0.8s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes PageAnimeAppear{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}

/*パソコン版ナビゲーションーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/

/*パソコン版ナビゲーションーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/

/*携帯版 ヘッダーゲーションーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/

main{
	position: relative;
	top: 60px;
}

header{
	width: 100%;
	height: 60px;
	position: fixed;
	display: flex;
	z-index: 1100;
	top: 0;
	left: 0;
	background: #fff;
	align-items: center;
}


#main-logo{
	position: relative;
	height: 25px;
	display: flex;
	padding-left: 15px;
	z-index: 1001;
}

/*ナビゲーション*/
#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 1000;
    /*ナビのスタート位置と形状*/
	top:-120%;
    left:0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:#F5F5F5;
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index:999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: relative;
    z-index: 1000;
	top: 70px;
	width: 100%;
}

.sp-nav-first{
	border-top: 1px solid;
}

.sp-nav-a{
	text-decoration: none;
	display: block;
	padding: 15px;
	padding-left: 25px;
	font-family: "ヒラギノ角ゴ Pro W3";
	color: #af1f24;
	font-size: 16px;
	font-weight: 600;
	background: #fff;
	border-bottom: 1px solid;
	border-image: linear-gradient(90deg,rgba(240, 231, 148, 1) ,rgba(176, 145, 0, 1) 18%, rgba(237, 195, 0, 1) 70%, rgba(255, 231, 145, 1))1;
}

.sp-nav-a p{
	font-family: "Krungthep";
	color: #000;
	font-size: 27px;
	margin-bottom: 7px;
	letter-spacing: 1px;
}
.sp-nav-a span{
	letter-spacing: 1px;
}



/*ハンバーガーメニュー*/
.openbtn{
	position: absolute;
	cursor: pointer;
    width: 45px;
    height:45px;
	top: 50%;
	left: calc(100% - 55px);
	transform: translate(0 ,-50%);
	-webkit-transform: translate(0 ,-50%);
    -ms-transform: translate(0 ,-50%);
	z-index: 9998;
	background: #af1f24;
}

.openbtn .openbtn-area{
    transition: all .4s;
}

.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    top: 50%;
	left: 50%;
	transform: translate(-50% ,-50%);
	-webkit-transform: translate(-50% ,-50%);
    -ms-transform: translate(-50% ,-50%);
    height: 2px;
	background: #fff;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 15px;
    left: 12.5px;
    transform: translateY(6px) rotate(-135deg);
    width: 45%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 27.5px;
    left: 12.5px;
    transform: translateY(-6px) rotate(135deg);
    width: 45%;
}

@media screen and (min-width:1200px) {
	.openbtn{
		display: none;
	}
}


/*ハンバーガーメニュー*/



/*携帯版 ヘッダーゲーションーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/


/*スライドショー背景*/
/*
#mainimg{
	position: relative;
	width:100%;
	height: 50vh;
	z-index: 6;
	margin-top: 60px;
}

@media screen and (min-width:1200px) {
	#mainimg{
		position: relative;
		width:100%;
		height:75vh;
		z-index: 6;
		margin-top: 0px;
	}
}

#mainimg img{
	position: absolute;
	width: 45%;
	min-width: 300px;
	max-width: 500px;
	top: 50%;
	right: 0%;
	transform: translate(0% ,-50%);
	-webkit-transform: translate(0% ,-50%);
    -ms-transform: translate(0% ,-50%);
	opacity: 0.2;
}

@media screen and (min-width:1200px) {
	#mainimg img{
		mix-blend-mode: overlay;
		opacity: 1;
	}
}
*/

/*スライドショー背景*/

/*テキストを縦文字に変更*/
.text-tate{
	-ms-writing-mode: tb-rl;
  	writing-mode: vertical-rl;
}

/*トラックループ*/

#track-loop-anime{
	position: fixed;
	z-index: 900;
	display: block;
	background: #fff;
	height: 35px;
	overflow: hidden;
	border-bottom: solid 1px #ff0000;
}

.logo-swiper{
	position: relative;
	top: 0;
	overflow: hidden;
	display: flex;
	width: 100%;
	align-items: center;
	height: auto;
	z-index: 3;
}

.logo-swiper2{
	position: relative;
	top: -35px;
	overflow: hidden;
	display: flex;
	width: 100%;
	align-items: center;
	height: auto;
	z-index: 3;
}

.logo-slide-img{
	position: relative;
	flex-shrink: 0;
	height: 35px;
/*	opacity: 0.5;*/
}


@media screen and (min-width:700px) {

	#track-loop-anime{
		height: 45px;
	}
	.logo-swiper2{
		top: -45px;
	}
	.logo-slide-img{
		height: 45px;
	/*	opacity: 0.5;*/
	}

}

.logo-swiper-wrapper {
  display: flex;
  -webkit-animation: img-swiper-slide 140s  infinite linear ;
  animation: img-swiper-slide 140s infinite linear ;
}

@-webkit-keyframes img-swiper-slide {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes img-swiper-slide {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}

.logo-swiper-wrapper2 {
  display: flex;
  -webkit-animation: img-swiper-slide2 140s -70s infinite linear ;
  animation: img-swiper-slide2 140s -70s infinite linear ;
}

@-webkit-keyframes  img-swiper-slide2 {
  from {
    transform: translateX(-200%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes img-swiper-slide2 {
  from {
    transform: translateX(-200%);
  }
  to {
    transform: translateX(0);
  }
}
.logo-swiper2-wrapper {
	display: flex;
	-webkit-animation: img-swiper2-slide 100s  infinite linear ;
	animation: img-swiper2-slide 100s infinite linear ;
}

@-webkit-keyframes img-swiper2-slide {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes img-swiper2-slide {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

.logo-swiper2-wrapper2 {
  display: flex;
  -webkit-animation: img-swiper2-slide2 100s -50s infinite linear ;
  animation: img-swiper2-slide2 100s -50s infinite linear ;
}

@-webkit-keyframes  img-swiper2-slide2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes img-swiper2-slide2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
/*トラックループ*/

/*パソコンナビ*/

#pc-nav{
	display: none;
}

@media screen and (min-width:1200px) {
	main{
		top: 85px;
	}
	header{
		justify-content: space-between;
		height: 85px;
		align-items: center;
	}

	#main-logo{
		height: 35px;
		padding-left: 35px;
	}
	
	#track-loop-anime{
		height: 45px;
	}
	.logo-swiper2{
		top: -45px;
	}
	.logo-slide-img{
		height: 45px;
	/*	opacity: 0.5;*/
	}

	#pc-nav{
		display: flex;
	}
	
	.pc-nav-a{
		text-align: center;
		text-decoration: none;
		padding-right: 50px;
	}
	
	.pc-nav-p{
		font-family: "Krungthep";
		color: #000;
		font-size: 26px;
		letter-spacing: 1px;
	}
	
	.pc-nav-p-sub{
		margin-top: 5px;
		padding: 5px 10px;
		border: solid 1px #ff0000;
		border-radius: 12px;
		font-family: "ヒラギノ角ゴ Pro W3";
		color: #af1f24;
		font-size: 12px;
		font-weight: 700;
	}
	
	.pc-nav-a:hover{
		transform: scale(1.1);
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		transition: all  0.3s ease;
	}
	
	.pc-nav-a:hover .pc-nav-p{
		color: #af1f24;
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		transition: all  0.3s ease;
	}
	.pc-nav-a:hover .pc-nav-p-sub{
		color:#6C460B;
		border: solid 1px #C57000;
		background: linear-gradient(168deg, rgba(255, 255, 255, 1), rgba(255, 231, 145, 1) 18% 50%, rgba(176, 145, 0, 1) 50%, rgba(237, 195, 0, 1) 82%, rgba(240, 231, 148, 1));
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		transition: all  0.3s ease;
	}
	.pc-nav-a:hover .pc-nav-p-sub span{
		padding: 5px 0;
		background: radial-gradient(circle, rgba(255, 255, 255, 0.31) 72%, rgba(255, 255, 255, 0));
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		transition: all  0.3s ease;
	}
}


/*メインイメージ*/


/*スライドショー背景*/

.main-image{
	position: relative;
	top: 35px;
	margin-bottom: 35px;
}

#mainimg{
	position: relative;
	width:100%;
	height: 85vh;
	z-index: 6;
}

.main-copy-sp{
	position: absolute;
	display: block;
	height: calc(100% - 20px);
	z-index: 50;
	right: 0;
	bottom: -1px;
}
.main-copy{
	display: none;
}


@media screen and (min-width:700px) {
	#mainimg{
		position: relative;
		width:100%;
		height:87vh;
		z-index: 6;
	}
	.main-image{
		top: 45px;
		margin-bottom: 45px;
	}
}

@media screen and (min-width:1200px) {
	
	.main-copy-sp{
		display: none;
	}
	.main-copy{
		position: absolute;
		display: block;
		z-index: 50;
		width: 100%;
		bottom: -4px;
	}
	#mainimg{
		height: 83vh;
	}
}

#mainimg img{
	position: absolute;
	width: 45%;
	min-width: 300px;
	max-width: 500px;
	top: 50%;
	right: 0%;
	transform: translate(0% ,-50%);
	-webkit-transform: translate(0% ,-50%);
    -ms-transform: translate(0% ,-50%);
	opacity: 0.2;
}

@media screen and (min-width:1200px) {
	#mainimg img{
		mix-blend-mode: overlay;
		opacity: 1;
	}
}

.vegas-timer-progress {
	display: none;
}

/*スライドショー背景*/



/*コピー　詳細*/

.copy-naiyou{
	display: block;
	position: relative;
	padding: 80px 0;
}

.copy-p{
	color: #000;
	font-family: "Shippori Antique", sans-serif;
  	font-weight: 400;
	font-size: 4vw;
	line-height: 2.3rem;
	text-align: center;
	margin-bottom: 45px;
	padding: 0 25px;
	letter-spacing: 2px;
}

.copy-tag{
	display: inline-block;
	background: #F6EEE7;
	padding: 7px;
	margin-right: 5px;
	margin-left: 5px;
	font-size: 4.2vw;
	line-height: 1.2rem;
	letter-spacing: 1px;
	color: #370000;
}
.copy-p-color{
	display: inline-block;
	background: linear-gradient(0deg, rgba(255, 222, 82, 1) 59%, rgba(255, 255, 255, 1) 59%);
	line-height: 1.2rem;
}

.copy-img-swiper{
	position: relative;
	top: 0;
	overflow: hidden;
	display: flex;
	width: 100%;
	align-items: center;
	height: auto;
	z-index: 3;
}

.copy-slide-img{
	height: 150px;
}

.copy-img-swiper-wrapper {
  display: flex;
  -webkit-animation: img-swiper-slide 120s  infinite linear ;
  animation: img-swiper-slide 120s infinite linear ;
}

@-webkit-keyframes img-swiper-slide {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes img-swiper-slide {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

.copy-img-swiper-wrapper2 {
  display: flex;
  -webkit-animation: img-swiper-slide2 120s -60s infinite linear ;
  animation: img-swiper-slide2 120s -60s infinite linear ;
}

@-webkit-keyframes  img-swiper-slide2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes img-swiper-slide2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

@media screen and (min-width:700px) {
	.copy-naiyou{
		padding: 100px 0;
	}
	
	#copy-flex{
		display: flex;
		flex-direction: row-reverse;
		justify-content: center;
	}
	
	.copy-p{
		font-size: 22px;
		line-height: 2.8rem;
		text-align: center;
		margin-bottom: 70px;
		padding: 0 50px;
		letter-spacing: 2px;
	}

	.copy-tag{
		padding: 7px;
		margin-right: 7px;
		margin-left: 7px;
		font-size: 24px;
		line-height: 1.2rem;
		letter-spacing: 1px;
	}

	.copy-slide-img{
		height: 200px;
	}
}

@media screen and (min-width:1200px) {
	.copy-naiyou{
		padding: 120px 0;
	}
	
	.copy-p{
		font-size: 22px;
		line-height: 3rem;
		text-align: center;
		margin-bottom: 70px;
		letter-spacing: 3px;
	}

	.copy-tag{
		padding: 7px;
		margin-right: 10px;
		margin-left: 10px;
		font-size: 24px;
		line-height: 1.2rem;
		letter-spacing: 2px;
	}
	
	.pc-block{
		display: none;
	}
	
	.copy-slide-img{
		height: 230px;
	}
}

/*コピー　詳細*/


/*ABOUT*/


#about-box{
	position: relative;
	padding-bottom: 80px;
}

.nav-name{
	display: inline-block;
	font-family: "Krungthep";
	color: #000;
	font-size: 6vw;
	text-align: center;
	opacity: 0.5;
	padding: 0 25px;
	margin-bottom: 10px;
}

.nav-name span{
	display: inline-block;
	font-family: "sicgothicduex-nexus", sans-serif;
	font-size: 3.5vw;
	font-weight: 800;
	letter-spacing: 1px;
	color: #af1f24;
	border: solid 1px #af1f24;
	padding: 5px;
	border-radius: 10px;
	margin-top: 3px;
}

.about-img-box{
	position: relative;
}

#about-big-box{
	width: calc(90% - 22px);
	position: relative;
	background: #f9f6e4;
	padding: 10px;
	z-index: 2;
	border: solid 1px #af1f24;
	border-radius: 10px;
	height: 250px;
	left: 10%;
	box-shadow:  0px 15px 0px #af1f24;
	
}
.about-img-big{
	width: 100%;
	height: 100%;
	position: relative;
	background: url("../images/about-big.jpg");
	background-position: center;
	background-size: cover;
	border: solid 1px #af1f24;
	border-radius: 10px;
	z-index: 2;
}

.about-img-small{
	position: absolute;
	width: 35%;
	right: 0px;
	top: 180px;
	height: 220px;
	background: url("../images/about-small.jpg");
	background-position: center;
	background-size: cover;
	border-radius: 10px;
}

.title-box{
	margin-top: 60px;
	padding-left: 25px;
	font-family: "WDXL Lubrifont TC", sans-serif;
	color: #000;
	font-weight: 800;
	font-size: 3vw;
	letter-spacing: 5px;
	margin-bottom: 50px;
}
.title-box span{
	position: relative;
	display: inline-block;
	font-family: "sicgothicduex-nexus", sans-serif;
	font-size: 5vw;
	background: #af1f24;
	padding: 10px;
	padding-left: 17px;
	color: #fff;
	letter-spacing: 7px;
	z-index: 3;
	margin-top: 5px;
}

.about-naiyou-p{
	padding: 0 25px;
	text-align: justify;
	font-size: 3.8vw;
	font-family: "Shippori Antique", sans-serif;
  	font-weight: 400;
	color: #000;
	line-height: 2.2rem;
	margin-bottom: 35px;
}

.about-naiyou-p span{
	display: inline-block;
	background: linear-gradient(0deg, rgba(255, 222, 82, 1) 59%, rgba(255, 255, 255, 1) 59%);
	line-height: 1.2rem;
}

.about-naiyou-p-last{
	margin-bottom: 0px;
}

@media screen and (min-width:400px) {
	.about-naiyou-p{
		font-size: 3.9vw;
	}
}

@media screen and (min-width:700px) {

	.nav-name{
		font-size: 27px;
		opacity: 0.5;
		padding: 0 50px;
		margin-bottom: 25px;
	}

	.nav-name span{
		font-size: 16px;
		padding: 7px;
		border-radius: 12px;
	}

	.about-img-box{
		position: relative;
		}
	
	#about-big-box{
		width: calc(80% - 32px);
		padding: 15px;
		height: 350px;
		left: 10%;
	}

	.about-img-big{
	}

	.about-img-small{
		width: 35%;
		height: 350px;
		background: url("../images/about-small.jpg");
		background-position: center;
		background-size: cover;
	}

	.title-box{
		margin-top: 70px;
		padding-left: 50px;
		font-size: 16px;
		margin-bottom: 60px;
	}
	.title-box span{
		font-size: 26px;
		padding: 15px;
		padding-left: 21px;
		margin-top: 5px;
	}

	.about-naiyou-p{
		padding: 0 50px;
		font-size: 21px;
		letter-spacing: 2px;
		line-height: 2.5rem;
		margin-bottom: 35px;
	}

}
@media screen and (min-width:1200px) {
	
	#about-box{
		padding-top: 120px;
		padding-bottom: 120px;
	}
	
	#about-flex{
		display: flex;
		flex-direction: row-reverse;
	}
	
	.about-img-box{
		width: 50%;
		position: relative;
	}

	.about-naiyou{
		width: 50%;
	}
	
	.nav-name{
		padding: 0 0  0 10vw ;
		margin-bottom: 25px;
	}
	
	
	#about-big-box{
		width: calc(92% - 32px);
		padding: 15px;
		height: 500px;
		left:0;
	}
	.about-img-big{
	}

	.about-img-small{
		width: 40%;
		height: 450px;
		top: 380px;
		background: url("../images/about-small.jpg");
		background-position: center;
		background-size: cover;
	}

	.title-box{
		margin-top: 25px;
		padding-left: 10vw;
		font-size: 18px;
		margin-bottom: 60px;
	}
	.title-box span{
		font-size: 28px;
	}

	.about-naiyou-p{
		padding: 0 0 0 10vw;
		font-size: 21px;
		line-height: 3rem;
		margin-bottom: 35px;
		letter-spacing: 2px;
	}

}


/*ABOUT*/

/*BIKAN*/
#bikan{
	padding: 25px;
	width: calc(100% - 50px);
}

#copy-copy{
	width: 100%;
	margin-bottom: 10px;
}

#bikan h2{
	width: 70%;
	font-family: "sicgothicduex-nexus", sans-serif;
	font-size: 6vw;
	color: #000;
	letter-spacing: 5px;
	line-height: 2.5rem;
	margin-bottom: 25px;
}

#bikan h2 span{
	display: inline-block;
	padding: 10px;
	color: #fff;
	font-size: 5vw;
	background: #af1f24;
	line-height: 1.5rem;
	margin-right: 12px;
}

.bikan-p-box{
	width: 100%;
	margin-bottom: 50px;
}
.bikan-p-box p{
	font-size: 4vw;
	color: #000;
	font-family: "Shippori Antique", sans-serif;
	letter-spacing: ２px;
	margin-bottom: 10px;
	line-height: 1.8rem;
}

@media screen and (min-width:700px) {
	#bikan{
		padding: 50px;
		width: calc(100% - 100px);
	}

	#copy-copy{
		width: 80%;
	}

	#bikan h2{
		font-size: 30px;
	}

	#bikan h2 span{
		font-size:26px;
		padding: 15px;
	}

	.bikan-p-box{
		width: 100%;
		margin-bottom: 50px;
	}
	.bikan-p-box p{
		font-size: 21px;
		color: #000;
		font-family: "Shippori Antique", sans-serif;
		letter-spacing: 2px;
		margin-bottom: 10px;
		line-height: 1.8rem;
	}
}

@media screen and (min-width:1200px) {
	#bikan{
		padding: 50px 10%;
		width: 80%;
	}

	#copy-copy{
		width: 70%;
	}

	#bikan h2{
		font-size: 50px;
		line-height: 4rem;
		margin-bottom: 25px;
	}

	#bikan h2 span{
		font-size:40px;
		padding: 15px;
	}

	.bikan-p-box{
		width: 100%;
		margin-bottom: 50px;
	}
	.bikan-p-box p{
		font-size: 21px;
		color: #000;
		font-family: "Shippori Antique", sans-serif;
		letter-spacing: 2px;
		margin-bottom: 10px;
		line-height: 1.8rem;
	}
}

/*BIKAN*/

/*WHAT WE CAN DO*/

#cando{
	padding: 0 25px 25px 25px;
}

.title-box2{
	margin-top: 0px;
	padding-left: 0px;
	margin-bottom: 0px;
}

.can-flex-box{
	display: flex;
	flex-wrap: wrap;
	margin-top: 50px;
	gap: 50px 0;
	justify-content: space-between;
}

#pc-jigyou{
	display: none;
}

.jigyou-flex{
	width: 45%;
}

.jigyou-icon{
	width: calc(100% - 20%);
	padding: 0 10%;
}

.jigyou-naiyou{
	width: 100%;
}

.jigyou-naiyou h6{
	margin-top: 25px;
	font-family: "WDXL Lubrifont TC", sans-serif;
	font-size: 4vw;
	letter-spacing: 5px;
	margin-bottom: 15px;
	padding-left: 10px;
	padding-bottom: 10px;
	border-left: solid 1px #af1f24;
	border-bottom: solid 1px #af1f24;
	border-bottom-left-radius: 10px;
	color: #af1f24;
}

.jigyou-p-flex{
	display: flex;
	margin-bottom: 10px;
	color: #000;
}

.jigyou-p-flex-last{
	margin-bottom: 0px;
}

.jigyou-p{
	font-family: "Shippori Antique", sans-serif;
  	font-weight: 400;
	font-size: 4vw;
	letter-spacing: 1px;
}

.jigyou-p span{
	font-family: "ヒラギノ角ゴ Pro W3";
	display: inline-block;
	font-size: 3.3vw;
	line-height: 1rem;
	color: #000;
	background: #eee;
	padding: 5px;
	margin-top: 5px;
	text-align: justify;
}

@media screen and (min-width:700px) {
	
	#cando{
		padding: 0 50px 50px 50px;
	}

	.can-flex-box{
		display: flex;
		flex-wrap: wrap;
		margin-top: 50px;
		gap: 50px 0;
		justify-content: space-between;
	}

	.jigyou-flex{
		width: 45%;
		display: flex;
		justify-content:space-between;
		align-items: flex-start;
	}

	.jigyou-icon{
		width: 38%;
		padding: 0 ;
	}

	.jigyou-naiyou{
		width: 57%;
	}

	.jigyou-naiyou h6{
		font-size:16px;
	}
	
	.jigyou-p{
		font-size: 18px;
	}

	.jigyou-p span{
		font-size: 15px;
		line-height: 1.2rem;
		padding: 7px;
		margin-top: 7px;
	}
}

@media screen and (min-width:1200px) {
	
	#cando{
		padding: 0 10vw 100px 10vw;
	}

	#jigyou-br{
		display: none;
	}
	.can-flex-box{
		margin-top: 0px;
		gap: 200px 0;
	}
	
	.pc-center-img{
		position: relative;
		width: 100%;
	}
	
	#jigyou-paint{
		margin-top: 100px;
		margin-bottom: -100px;
	}
	
	#jigyou-other{
		margin-top: -100px;
		margin-bottom: 100px;
	}
	
	#pc-jigyou{
		display: block;
		position: absolute;
		margin-top: -50px;
		padding-top: 0px;
		width: 350px;
		left: 50%;
		top: 50%;
		transform: translate(-50% ,-50%);
		z-index: 3;
		opacity: 0.5;
	}

	.jigyou-flex{
		width: 30%;
		background-color: #fff;
		border-radius: 3px;
		box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
		position: relative;
	}
	.jigyou-flex::after {
	  	content: "";
		position: absolute;
		bottom: -40px;
		width: 85%;
		height: 5px;
		box-shadow: 0 30px 25px rgba(0, 0, 0, 0.2);
		background-color: transparent;
		border-radius: 100px / 10px;
	}
	

	.jigyou-icon{
		width: 35%;
		padding: 0 ;
	}

	.jigyou-naiyou{
		width: 60%;
	}

	.jigyou-naiyou h6{
		font-size:18px;
	}
	
	.jigyou-p{
		font-size: 20px;
	}

	.jigyou-p span{
		display: inline-block;
		font-size: 15px;
		line-height: 1.2rem;
		padding: 7px;
		margin-top: 7px;
		text-align: justify;
	}
	
	#j-aluminum{
		margin-right: 25%;
	}
	
	#j-gaikou{
		margin-left: 25%;
	}
}
/*WHAT WE CAN DO*/

/*WD　group*/

#wdgroup{
	padding: 25px;
	padding-top: 70px;
}

#grouptitle{
	margin-bottom: 50px;
}

.wdgroup-p{
	font-family: "Shippori Antique", sans-serif;
	font-size: 3.9vw;
	color: #000;
	text-align: justify;
	margin-bottom: 35px;
	line-height: 2rem;
}

.wdgroup-p span{
    text-decoration: underline 5px #ffde52;
}

.group-flex{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 15px;
}

.group-img{
	display: block;
	width: 40%;
	position: relative;
}

.group-img img{
	width: 100%;
}

.group-img .group-icon{
	position: relative;
	z-index: 2;
}

.group-img .group-subicon{
	position: absolute;
	transform: rotate(90deg);
	width: 80%;
	bottom: -40%;
	left: 10%;
	z-index: 1;
}

.group-naiyou{
	width: calc(60% - 15px);
	padding-left: 15px;
}

.group-naiyou h6{
	font-family: "WDXL Lubrifont TC", sans-serif;
	font-size: 3.8vw;
	letter-spacing: 5px;
	margin-bottom: 10px;
	padding-left: 10px;
	padding-bottom: 7px;
	border-left: solid 1px #af1f24;
	border-bottom: solid 1px #af1f24;
	border-bottom-left-radius: 10px;
	color: #af1f24;
}

.group-p-flex{
	display: flex;
	margin-bottom: 6px;
	color: #000;
}

.group-p-flex-last{
	margin-bottom: 0px;
}

.group-p{
	font-family: "ヒラギノ角ゴ Pro W3";
	font-size: 3.5vw;
	letter-spacing: 1px;
}

#wd-p-c{
	color: #af1f24;
}

.group-img #tab-subicon{
	display: none;
}

@media screen and (min-width:700px) {
	#wdgroup{
		padding: 50px 0 ;
		padding-top: 70px;
	}

	#grouptitle{
		padding: 0 50px;
		margin-bottom: 50px;
	}

	.wdgroup-p{
		padding: 0 50px;
		font-size: 21px;
		line-height: 2.5rem;
	}
	
	.group-flex-box{
		display: flex;
		flex-wrap: wrap;
		justify-content:space-between;
		padding: 0 50px;
		width: calc(100% - 100px);
		overflow: hidden;
	}
	
	.group-flex{
		width: 33%;
		display: flex;
		flex-wrap: wrap;
		margin-bottom: 0px;
	}

	.group-img{
		display: block;
		width: 100%;
		position: relative;
	}

	.group-img .group-icon{
		position: relative;
		z-index: 2;
	}

	.group-img .group-subicon{
		position: absolute;
		width: 80%;
		top: 10%;
		left: 64%;
		z-index: 1;
		transform: rotate(0deg);
	}
	
	.group-img #tab-subicon{
		display: block;
		position: absolute;
		width: 80%;
		top: 10%;
		left: -60%;
		z-index: 1;
		transform: rotate(0deg);
	}

	.group-naiyou{
		width: calc(100% - 10px);
		padding-left: 0px;
		padding: 0 10px;
		margin-top: 5px;
		height: 145px;
	}

	.group-p-flex{
		display: flex;
		margin-bottom: 8px;
	}
		
	.group-naiyou h6{
		font-size: 15px;
		line-height: 1.2rem;
		padding-bottom: 5px;
	}

	.group-p{
		font-size: 16px;
	}	
}

@media screen and (min-width:1200px) {
	#wdgroup{
		padding: 100px 10vw;
	}

	#grouptitle{
		padding: 0;
		text-align: center;
		margin-bottom: 50px;
	}

	.wdgroup-p{
		padding: 0;
		text-align: center;
		font-size: 21px;
		line-height: 3rem;
		letter-spacing: 2px;
	}
	
	.group-flex-box{
		width: 100%;
		padding: 0;
		margin: 0 auto;
		display: flex;
		justify-content:space-between;
		margin-top: 50px;
	}
	
	.group-flex{
		width: 16%;
		display: flex;
		flex-wrap: wrap;
		margin-bottom: 0px;
		justify-content: flex-start;
	}

	.group-img .group-icon{
		position: relative;
		z-index: 2;
	}

	.group-img .group-subicon{
		position: absolute;
		width: 70%;
		top: 15%;
		left: 70%;
		z-index: 1;
	}

	.group-naiyou{
		position: relative;
		top: 0;
		width: calc(100% - 0px);
		padding-left: 0px;
		margin-top: 10px;
		height: 170px;
	}

	.group-naiyou h6{
		font-size: 15px;
		line-height: 1.2rem;
	}

	.group-p-flex{
		display: flex;
		margin-bottom: 10px;
		color: #000;
	}

	.group-p-flex-last{
		margin-bottom: 0px;
	}

	.group-p{
		font-family: "ヒラギノ角ゴ Pro W3";
		font-size: 16px;
		letter-spacing: 1px;
	}	
	
	.pc-non{
		display: none;
	}
	
	.group-img #tab-subicon{
		display: none;
	}
}
/*WD　group*/


/*work*/

#work-box{
	padding-top: 70px;
}

#work-title-box{
	margin-top: 15px;
}

.work-flex-box{
	padding: 25px;
}

.work-work{
	display: block;
	text-align: none;
	margin-bottom: 40px;
	text-decoration: none;
}

.work-flex{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 25px;
}

.work-flex-item-1{
	position: relative;
	width: 60%;
}

.work-flex-item-2{
	width: calc(40% - 10px);
	padding-left: 10px;
}

.work-tag{
	position: absolute;
	width: 40px;
	top: 5px;
	right: 5px;
	color: #af1f24;
	background: #fff;
	padding: 10px 5px;
	border: solid 2px #af1f24;
	border-radius: 5px;
	text-align: center;
	font-family: "WDXL Lubrifont TC", sans-serif;
	font-size: 4vw;
	letter-spacing: 1px;
}

.work-img-box{
	cursor: pointer;
	overflow: hidden;
	width:calc(100% - 22px);
	height: 200px;
	padding: 10px;
	border: solid 1px #af1f24;
	border-radius: 10px;
	box-shadow:  0px 15px 0px #af1f24;
	background: #f9f6e4;
}

.work-img{
	background: url("../images/work-1.jpg");
	background-position: center center;
  	background-repeat: no-repeat;
  	background-size: cover;
  	transition: transform .6s ease;
	border: solid 1px #af1f24;
	border-radius: 10px;
  	width: calc(100% - 2px);
	height: 100%;
}

.work-work:hover .work-img-box .work-img{
	transform: scale(1.1); 
}

.work-title{
	border-left: solid 4px #af1f24; 
	color: #000;
	padding: 10px;
	margin-bottom: 20px;
	font-family: "Shippori Antique", sans-serif;
	font-size: 4.5vw;
	line-height: 1.5rem;
	border-bottom:  solid 1px #af1f24;
}

.work-pp{
	font-family: "ヒラギノ角ゴ Pro W3";
	font-size: 3.9vw;
	line-height: 1.5rem;
	color: #000;
	text-align: justify;
}

.work-btn{
	border: solid 1px #af1f24;
	padding:  10px;
	text-align: center;
	color: #000;
	font-family: "ヒラギノ角ゴ Pro W3";
	margin-top: 10px;
}

.work-page-nav{
	display: block;
	background: #af1f24;
	padding: 15px;
	color: #fff;
	text-align: center;
	width: calc(100% - 80px);
	margin: 0 auto;
	margin-bottom: 50px;
	text-decoration: none;
	letter-spacing: 3px;
	font-family: "sicgothicduex-nexus", sans-serif;
}

.work-work:hover .work-btn{
	border: solid 1px #af1f24;
	background: #af1f24;
	color: #fff;
	transition: 0.4s;
}


#work-last{
	margin-bottom: 0;
}

@media screen and (min-width:700px) {

	#work-box{
		padding-top: 50px;
	}

	#work-title-box{
		margin-top: 15px;
	}

	.work-flex-box{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		padding: 0px 50px 25px 50px;
	}

	.work-work{
		width: 31%;
		display: block;
		text-align: none;
		margin-bottom: 0px;
	}

	.work-flex{
		display: flex;
		flex-wrap: wrap;
	}

	.work-flex-item-1{
		position: relative;
		width: 100%;
	}

	.work-flex-item-2{
		width: calc(100% - 0px);
		padding-left: 0px;
	}

	.work-tag{
		position: absolute;
		width: 50px;
		font-size: 18px;
	}
	.work-img-box{
		height: 180px;
		margin-bottom: 25px;
	}

	.work-title{
		font-size: 20px;
		line-height: 1.5rem;
		margin-top: 10px;
	}

	.work-pp{
		font-family: "ヒラギノ角ゴ Pro W3";
		font-size: 16px;
		line-height: 1.5rem;
		color: #000;
	}

	.work-page-nav{
		padding: 15px;
		color: #fff;
		text-align: center;
		width: calc(100% - 130px);
		margin: 0 auto;
		margin-bottom: 50px;
	}
}

@media screen and (min-width:1200px) {

	#work-box{
		padding-top: 50px;
	}

	#work-title-box{
		margin-top: 15px;
	}

	.work-flex-box{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		padding: 0px 10% 25px 10%;
	}
	
	.work-img-box{
		height: 300px;
	}

	.work-title{
		font-size: 20px;
		line-height: 1.5rem;
		margin-top: 10px;
	}

	.work-pp{
		font-family: "ヒラギノ角ゴ Pro W3";
		font-size: 16px;
		line-height: 1.5rem;
		color: #000;
	}

	.work-page-nav{
		padding: 15px;
		color: #fff;
		text-align: center;
		width: calc(100% - 20% - 30px);
		margin: 0 auto;
		margin-bottom: 70px;
		font-size: 21px;
		letter-spacing: 3px;
	}
	.work-page-nav:hover{
		color: #fff;
		background-color: #ccb111;
		transition: 0.3s;
	}
	
	#work-center{
		position: relative;
		top: -80px;
	}
	
	#work-last{
		position: relative;
		top: -160px;
	}
}


/*work*/

/*message*/
#message{
	width: calc(100% - 92px);
	margin: 25px;
	background: #f9f6e4;
	padding: 20px;
	border: solid 1px #af1f24;
	border-radius: 10px;
	box-shadow: 0 15px 0 #af1f24;
}

#message p{
	color: #000;
	font-family: "Shippori Mincho", serif;
	font-size: 4vw;
	line-height: 1.8rem;
	margin-bottom: 15px;
	letter-spacing: 1px;
	font-weight: 600;
	display: inline-block;
	text-decoration: underline 1px #af1f24;
	text-underline-offset: 7px; /* 下線と文字の間のスペースを調整 */
}

#message h5{
	color: #000;
	text-align: right;
	font-size: 4vw;
	margin-top: 15px;
}
@media screen and (min-width:700px) {
	#message{
		width: calc(100% - 152px);
		margin: 50px;
		padding: 25px;
	}

	#message p{
		display: inline-block;
		font-size: 17px;
		line-height: 1.8rem;
		margin-bottom: 15px;
		text-decoration: underline 1px #af1f24;
		text-underline-offset: 7px; /* 下線と文字の間のスペースを調整 */
	}
	
	#message p br{
		display: none;
	}

	#message h5{
		color: #000;
		text-align: right;
		font-size: 19px;
		margin-top: 15px;
		letter-spacing: 2px;
	}
}

@media screen and (min-width:1200px) {
	#message{
		width: calc(80% - 102px);
		margin: 50px 10%;
		padding: 50px;
	}

	#message p{
		display: block;
		font-size: 19px;
		line-height: 2rem;
		margin-bottom: 20px;
		text-decoration: underline 1px #af1f24;
		text-underline-offset: 7px; /* 下線と文字の間のスペースを調整 */
	}
	
	#message p br{
		display: none;
	}

	#message h5{
		color: #000;
		text-align: right;
		font-size: 19px;
		margin-top: 15px;
		font-weight: bold;
		letter-spacing: 2px;
	}
}
/*message*/

/*footer*/

footer{
	background: #af1f24;
	padding: 25px;
	position: relative;
	margin-top: 165px;
}

.contact-box{
	position: relative;
	width: 100%;
	background: #f9e8db;
	top: -115px;
	margin-bottom: -115px;
}

.contact-flex{
	padding: 25px;
}

.c-flex-1 {
	text-align: center;
	padding-bottom: 10px;
	border-bottom: solid 1px #af1f24;
}
.c-flex-1 h5{
	font-family: "Krungthep";
	color: #000;
	font-size: 7vw;
	letter-spacing: 1px;
}

.c-flex-1 h6{
	display: inline-block;
	border: solid 1px #af1f24;
	color: #af1f24;
	border-radius: 5px;
	padding: 5px 10px;
	font-family: "sicgothicduex-nexus", sans-serif;
	font-size: 3vw;
	margin-top: 5px;
}


.c-flex-2 {
	text-align: center;
	padding-top: 10px;
}

.c-flex-2 p{
	font-family: "Shippori Antique", sans-serif;
	font-size: 4vw;
	color: #af1f24;
	letter-spacing: 1px;
	margin-bottom: 10px;
	line-height: 1.2rem;
}
.c-flex-2 p span{
	font-size: 3vw;
	color: #000;
	letter-spacing: 0px;
}

.tel-nav{
	display: block;
	text-decoration: none;
	color: #000;
	font-family: "Krungthep";
	font-size: 8vw;
	text-align: center;
}

.contact-btn{
	display: block;
	text-decoration: none;
	color: #af1f24;
	border: solid 1px #af1f24;
	text-align: center;
	margin-top: 15px;
	padding: 10px;
	font-family: "ヒラギノ角ゴ Pro W3";
}

@media screen and (min-width:700px) {

	footer{
		background: #af1f24;
		padding: 50px;
		position: relative;
		margin-top: 165px;
	}

	.contact-box{
		top: -115px;
		margin-bottom: -115px;
	}

	.contact-flex{
		padding: 25px 0;
		display: flex;
		align-items: center;
	}

	.c-flex-1 {
		width: 50%;
		text-align: center;
		padding-bottom: 0px;
		border-bottom: none;
	}
	.c-flex-1 h5{
		font-size: 35px;
		letter-spacing: 1px;
	}

	.c-flex-1 h6{
		display: inline-block;
		border: solid 1px #af1f24;
		color: #af1f24;
		border-radius: 5px;
		padding: 5px 10px;
		font-size: 20px;
		margin-top: 5px;
	}


	.c-flex-2 {
		width: calc(50% - 50px);
		text-align: left;
		padding-top: 0px;
		border-left: solid 1px #af1f24;
		padding: 25px;
	}

	.c-flex-2 p{
		font-size: 18px;
		
	}
	.c-flex-2 p span{
		font-size: 14px;
	}

	.tel-nav{
		font-size: 36px;
		text-align: center;
	}

	.contact-btn{
		display: block;
		text-decoration: none;
		color: #af1f24;
		border: solid 1px #af1f24;
		text-align: center;
		margin-top: 15px;
		padding: 10px;
		font-family: "ヒラギノ角ゴ Pro W3";
	}

}

@media screen and (min-width:1200px) {

	footer{
		background: #af1f24;
		padding: 0px 10% 70px 10%;
		position: relative;
		margin-top: 300px;
	}

	.contact-box{
		width: 80%;
		top: -150px;
		margin-bottom: -150px;
		margin: 0 auto;
	}

	.contact-flex{
		padding: 25px 0;
		display: flex;
		align-items: center;
	}

	.c-flex-1 {
		width: 50%;
		text-align: center;
		padding-bottom: 0px;
		border-bottom: none;
	}
	.c-flex-1 h5{
		font-size: 45px;
		letter-spacing: 1px;
	}

	.c-flex-1 h6{
		border-radius: 25px;
		padding: 10px 15px;
		font-size: 20px;
		margin-top: 5px;
	}


	.c-flex-2 {
		width: calc(50% - 100px);
		text-align: left;
		padding-top: 0px;
		border-left: solid 1px #af1f24;
		padding: 50px;
	}

	.c-flex-2 p{
		font-size: 20px;
	}
	.c-flex-2 p span{
		font-size: 16px;
	}

	.tel-nav{
		font-size: 45px;
		text-align: center;
	}
	.tel-nav:hover{
		color: #487800;
		transform: scale(1.1);
		transition: 0.3s;
	}

	.contact-btn{
		color: #af1f24;
		font-size: 18px;
		font-weight: bold;
	}
	.contact-btn:hover{
		color: #fff;
		background: #af1f24;
		transition: 0.3s;
	}

}

#foot-copy{
	width: 80%;
	margin-top: 50px;
	margin-bottom: 50px;
}

#foot-logo{
	width: 65%;
}

.foot-nav-flex{
	display: flex;
	margin-top: 20px;
	justify-content: space-between;
	margin-bottom: 50px;
}

.foot-nav-left{
	width: 40%;
}


.foot-nav-right{
	width: 60%;
}

.foot-nav-a{
	color: #fff;
	text-decoration: none;
	display: block;
	font-family: "Krungthep";
	font-size: 4.5vw;
	padding: 7px 0;
}

.foot-nav-ra{
	color: #fff;
	text-decoration: none;
	padding: 7px 0;
	font-family: "ヒラギノ角ゴ Pro W3";
	font-size: 3.8vw;
	line-height: 1.3rem;
}

.private{
	color: #fff;
	text-decoration: none;
}

.foot-map{
	display: inline-block;
	border: solid 1px #fff;
	font-size: 3vw;
	margin-top: 5px;
	padding: 5px;
	color: #fff;
	border-radius: 5px;
}

.foot-map i{
	padding-left: 7px;
}

.copyright{
	color: #fff;
	font-family: "ヒラギノ角ゴ Pro W3";
	font-size: 3.5vw;
	margin-bottom: 50px;
}
@media screen and (min-width:700px) {
	#foot-copy{
		width: 100%;
		margin-top: 0px;
		margin-bottom: 0px;
	}

	.foot-copy-box{
		width: 35%;
	}
	
	#foot-logo{
		width: 65%;
		margin-bottom: 20px;
	}
	
	.foot-flex{
		margin-top: 50px;
		display: flex;
		justify-content: space-between;
	}
	
	.foot-nav{
		width: 60%;
	}

	.foot-nav-flex{
		width: 100%;
		display: flex;
		margin-top: 0px;
		justify-content: space-between;
		margin-bottom: 50px;
	}

	.foot-nav-left{
		width: 30%;
	}

	.foot-nav-right{
		width: 60%;
	}

	.foot-nav-a{
		font-size: 18px;
		padding: 7px 0;
	}

	.foot-nav-ra{
		font-size: 17px;
		line-height: 1.3rem;
	}

	.foot-map{
		font-size: 14px;
	}

	.foot-map i{
		padding-left: 7px;
	}

	.copyright{
		font-size: 15px;
		margin-bottom: 0px;
	}
}

@media screen and (min-width:1200px) {
	#foot-copy{
		width: 90%;
		margin-top: 0px;
		margin-bottom: 0px;
	}

	.foot-copy-box{
		width: 55%;
	}
	
	#foot-logo{
		width: 100%;
		margin-bottom: 20px;
	}
	
	.foot-flex{
		margin-top: 0px;
		display: flex;
		justify-content: space-between;
	}
	
	.foot-nav{
		width: 30%;
	}

	.foot-nav-flex{
		width: 100%;
		display: flex;
		margin-top: 0px;
		justify-content: space-between;
		margin-bottom: 50px;
	}

	.foot-nav-left{
		width: 30%;
	}

	.foot-nav-right{
		width: 60%;
	}

	.foot-nav-a{
		font-size: 21px;
		padding: 15px 0;
	}
	
	
	.foot-nav-a:hover{
		opacity: 0.6;
		padding-left: 15px;
		transition: 0.3s;
	}

	.foot-nav-ra{
		padding: 10px 0;
		font-size: 18px;
		line-height: 1.5rem;
	}
	
	.private:hover{
		border-bottom: solid 1px #fff;
		transform: 0.3s;
	}

	.foot-map{
		padding: 7px;
		font-size: 14px;
	}
	
	.foot-map:hover{
		background: rgba(255,255,255,0.4);
		transition: 0.3s;
	}

	.foot-map i{
		padding-left: 7px;
	}

	.copyright{
		font-size: 15px;
		margin-bottom: 0px;
		margin-top: -70px;
		padding-bottom: 10px;
	}
}

.sns-link{
	display: flex;
	margin-bottom: 15px;
	align-items: flex-end;
}

.sns-icon{
	text-decoration: none;
	color: #fff;
	width: 40px;
	padding-right: 15px;
}

.sns-icon img{
	width: 100%;
}

.sns-icon:hover img{
	transform: scale(0.9);
	transition: 0.3s;
}

.sns-copy{
	font-size: 3vw;
	color: rgba(255,255,255,0.7);
	line-height: 1.2rem;
}

.sns-copy a{
	color: rgba(255,255,255,0.7);
}

@media screen and (min-width:700px) {
	.sns-link{
		display: flex;
		margin-bottom: 15px;
		align-items: flex-end;
	}

	.sns-icon{
		text-decoration: none;
		color: #fff;
		width: 40px;
		padding-right: 15px;
	}

	.sns-copy{
		font-size: 14px;
		color: rgba(255,255,255,0.7);
		line-height: 1.2rem;
	}

	.sns-copy a{
		color: rgba(255,255,255,0.7);
	}
	.sns-copy a:hover{
		color: rgba(255,255,255,1);
	}

}

@media screen and (min-width:1200px) {
	.sns-link{
		position: relative;
		display: flex;
		margin-bottom: 0px;
		top: -85px;
		align-items: flex-end;
		
	}
	.sns-copy a{
		color: rgba(255,255,255,0.7);
	}

}
/*footer*/















