/* ========= 全体 ========== */

:root {
	--pink: #EA68A2;
	--bg-pink: rgba(234, 104, 162, 0.1);
	--orange: #EC6941;
	--orange-2: #F8B551;
	--green-2: #32B16C;
	--green: #B3D465;
	--blue: #00B7EE;
	--blue-2: #556FB5;
	--purple: #8957A1;
	--gray: #D9D9D9;
	--gray2: #f5f5f5;
	--black: #212124;
}

html{
	font-size: 62.5%;
	scroll-behavior: smooth;
}

body{
	font-size: 1.6rem;
	font-family: "Roboto", "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
	font-optical-sizing: auto;
	color: var(--black);
}

.container{
	max-width: 1175px;
	padding: 0 20px;
	margin: 0 auto;
}

.more-btn{
	width: 400px;
	margin: 0 auto;
}

.more-btn-small{
	width: 200px;
	margin: 0 auto;
}

.more-btn a,
.more-btn-small a{
	display: block;
	text-align: center;
	border-radius: 100px;
	background: #fff;
	border: solid 2px var(--black);
	font-size: 2rem;
	padding: 12px 0;
	box-shadow: 8px 8px 0px 4px rgba(0, 0, 0, 1);
	transition: all .3s;
}

.more-btn-small a{
	font-size: 1.4rem;
	padding: 8px 0;
	box-shadow: 2px 2px 0px 2px rgba(0, 0, 0, 1);
	
}

.bg-pink{
	background: var(--bg-pink);
	margin: -40px 0 0 0;
	padding: 0 0 120px 0;
}

/* ========== 水平線 ========== */

@keyframes infinity-scroll-right {
	0% {background-position:0 0;}
	100% {background-position:-100vw 0;}
}

@keyframes infinity-scroll-left {
	0% {background-position:0 0;}
	100% {background-position:100vw 0;}
}

.separatorline, .separatorline-left{
	width: 100%;
	height: 10px;
	background-image: url(../images/line.png);
	background-repeat: repeat-x;
	animation: infinity-scroll-right 40s linear infinite;
}

.separatorline-left{animation: infinity-scroll-left 40s linear infinite;}

/* ========== ヘッダー ========== */

.header{
	padding: 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header .logo{
	width: 400px;
}

.header .menu{
	display: flex;
}

.header .menu li{
	margin: 0 2em 0 0;
	padding: 4px;
}

.header .menu li:last-child{
	margin: 0;
}

.header .menu li a{
	display: block;
	font-weight: 500;
	position: relative;
}

.header .menu li a::after{
	position: absolute;
	left: 0;
	width: 0%;
	height: 4px;
	background: var(--pink);
	content: "";
	display: block;
	transition: width .3s;
}

.sp-logo, .sp-menu-btn{display: none;}

/* ========== キャッチコピー・トップイメージ ========== */

.top-message-area, .main-message{
	max-width: 1100px;
	margin: 0 auto;
	padding: 40px 20px 100px 20px;
}

.top-message-area{
	height: 580px;
	position: relative;
}

.top-message-area .main-copy{
	font-size: 5.2rem;
	font-weight: 900;
	padding: 0 20px 0 0;
	position: absolute;
	top: 170px;
	left: 40px;
}

.top-message-area .main-copy .bouken{
	color: var(--pink);
	font-size: 7.2rem;
	position: relative;
	margin: 0 12px 0 0;
}

.top-message-area .main-copy .souzou{
	color: var(--orange);
	font-size: 7.2rem;
	margin: 0 32px 0 32px;
	position: relative;
}

.top-message-area .main-copy .bouken-en, .top-message-area .main-copy .souzou-en{
	position: absolute;
	left: 0px;
	right: auto;
	top: -48px;
	bottom: auto;
	font-size: 6.8rem;
	transform: rotate(-2deg);
	font-family: "Caveat", cursive;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	color: #595959;
}

.top-message-area .main-copy .souzou-en{
	top: auto;
	left: 90px;
	bottom: -30px;
	right: auto;
}

.top-message-area .main-copy .souzou2{
	color: var(--blue);
	font-size: 7.2rem;
}

/* ========== トップスライドショー ========== */

.top-mainimage{
	position: absolute;
	right: 0px;
	top: 40px;
	max-width: 720px;
	margin: 0 auto;
	z-index: -1;
	overflow: hidden;
	border-radius: 8px;
}

.top-mainimage img{
	width: 100%;
	height: auto;
	border-radius: 8px;
	overflow: hidden;
}

@keyframes zoomUp {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.15);
	}
}
.add-animation {
	animation: zoomUp 10s linear 0s normal both;
}

/* .top-mainimage{
	width: 100%;
	text-align: right;
	margin: auto;
	padding: 60px 0;
}

.top-mainimage .top-image-movie{
	width: 100%;
	max-width: 720px;
	border-radius: 16px;
} */

/* ========== メインメッセージ ========== */

.main-message{
	padding: 20px 20px 60px 20px;
}

.main-message p{
	max-width: 880px;
	text-align: center;
	font-size: 2rem;
	line-height: 2em;
	font-weight: 500;
	margin: 0 auto 32px auto;
}

/* ========== 見出し ========== */

.head-title,
.head-title-right{
	display: flex;
	align-items: center;
	font-size: 3.6rem;
	font-weight: 600;
	text-align: center;
	margin: -40px auto 0 auto;
}

.head-title span,
.head-title-right span{
	display: inline-block;
	border: solid 4px var(--gray);
	border-radius: 100px;
	padding: 12px 60px;
	background: #fff;
}

.head-title::before,
.head-title::after{
	content: "";
	flex-grow: 1;
	height: 10px;
	background-image: url(../images/line.png);
	background-repeat: repeat-x;
	animation: infinity-scroll-left 40s linear infinite;
}

.head-title-right::before,
.head-title-right::after{
	content: "";
	flex-grow: 1;
	height: 10px;
	background-image: url(../images/line.png);
	background-repeat: repeat-x;
	animation: infinity-scroll-right 40s linear infinite;
}

/* ========== NEWS ========= */

.news{
	margin: 0 auto 140px auto;
	max-width: 1100px;
}

.news-area{
	display: flex;
	align-items: center;
	border: solid 1px var(--pink);
	border-radius: 100px;
	overflow: hidden;
}

.news-area h2{
	background: var(--pink);
	color: #fff;
	padding: 12px 0;
	text-align: center;
	width: 12%;
}

.news-area p{
	padding: 0 24px;
	width: 88%;
}

.news-area p time{margin: 0 20px 0 0;}

/* ========== 8つのこと ========== */

.eight-things-list{
	list-style: none;
	counter-reset: number;
	padding: 80px 0 40px 0;
	margin: 0 auto;
}

.eight-things-list li{
	position: relative;
	padding: 0 0 0 40px;
	margin: 0 0 60px 0;
	display: flex;
	align-items: center;
}

.eight-things-list li:nth-child(even){justify-content: flex-end;}

.eight-things-list li::before{
	counter-increment: number;
	content: counter(number);
	position: absolute;
	top: 0;
	left: 0;
	width: 52px;
	height: 52px;
	line-height: 52px;
	border-radius: 100px;
	color: #fff;
	font-size: 3rem;
	font-style: italic;
	font-weight: 500;
	padding: 0 0 0 14px;
	z-index: 2;
}

.eight-things-list li:nth-child(even)::before{left: 145px;}

.eight-things-list li:nth-child(1)::before{background: var(--pink);}

.eight-things-list li:nth-child(2)::before{background: var(--orange);}

.eight-things-list li:nth-child(3)::before{background: var(--orange-2);}

.eight-things-list li:nth-child(4)::before{background: var(--green);}

.eight-things-list li:nth-child(5)::before{background: var(--green-2);}

.eight-things-list li:nth-child(6)::before{background: var(--blue);}

.eight-things-list li:nth-child(7)::before{background: var(--blue-2);}

.eight-things-list li:nth-child(8)::before{background: var(--purple);}

.eight-things-image{
	width:200px;
	height: 200px;
	border: solid 4px #fff;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 -90px 0 0;
	z-index: 1;
}

.eight-things-contents{
	background: #fff;
	padding: 20px 100px 20px 120px;
	z-index: 0;
	border-radius: 0 100px 100px 0;
	width: 840px;
}

.eight-things-contents h3{
	font-weight: 500;
	font-size: 2.4rem;
	text-align: center;
}

.eight-things-contents p{
	margin: 20px 0 0 0;
	line-height: 2em;
	text-align: center;
}

/* ========== BSフジの仕事 ========== */

.bsfuji-work{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 80px 0;
}

.bsfuji-work li{
	width: 48%;
	/* border-radius: 16px; */
	margin: 0 0 40px 0;
}

.bsfuji-work h3{
	font-size: 2rem;
	font-weight: 600;
	text-align: center;
	padding: .4em 0;
	border-radius: 16px 16px 0 0;
	color: #fff;
}

.bsfuji-work .hensei h3{background: var(--pink);}

.bsfuji-work .kouhou h3{background: var(--orange);}

.bsfuji-work .eigyo h3{background: rgba(248, 181, 81, 1);}

.bsfuji-work .jigyo h3{background: #B3D465;}

.bsfuji-work .media h3{background: #32B16C;}

.bsfuji-work .other h3{background: #00B7EE;}

.bsfuji-work .work-box{
	display: flex;
	align-items: center;
	padding: 20px;
	background: var(--gray2);
	border-radius: 0 0 16px 16px;
}

.bsfuji-work .work-box p{
	line-height: 1.8em;
	margin: 0 0 0 20px;
}

.bsfuji-work .work-image{
	width: 200px;
	height: 200px;
	border-radius: 50%;
	object-fit: cover;
}

/* ========== BSフジの人 ========== */

.bsfuji-people{
	display: flex;
	justify-content: space-between;
	padding: 80px 0 0 0;
}

.bsfuji-people li{text-align: center;}

.bsfuji-people .busho{
	font-weight: 500;
	font-size: 2rem;
}

.bsfuji-people .people-image{
	width: 280px;
	height: 280px;
	border-radius: 50%;
	object-fit: cover;
	margin: 20px 0;
}

/* ========== BSフジギャラリー ========== */

.bsfuji-gallery{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 80px 0;
}

.bsfuji-gallery li{
	width: 23.5%;
	margin: 0 0 40px 0;
	transition: all .3s;
}

.bsfuji-gallery li a img{
	border: solid 2px #fff;
	display: block;
	transition: all .3s;
}

.bsfuji-gallery li a:hover img{border: solid 2px var(--pink);}

/* ========== BSフジ採用情報 ========== */

.recruit-info{
	padding: 120px 0 0 0;
	margin: 0 0 -40px 0;
	text-align: center;
}

.recruit-info p{margin: 0 0 20px 0;}

.recruit-info .mynavi-ban{
	width: 320px;
	margin: 0 auto;
}

/*追加 2026*/
		.overflow {
			border: 3px solid #CCC;
			margin: 20px auto;
			overflow:auto;
			width:  100%;
			max-width: 980px;
			height:  300px;
			background: #FFFFFF;
		}
		.overflow div {
			padding: 20px;
		}
		@media screen and (min-width: 960px) {
			p.center {
				text-align: center;
			}
		}

/* ========== フッター ========== */

.gototop{
	position: fixed;
	right: 20px;
	bottom: 20px;
	width: 140px;
	transition: transform 0.2s;
	z-index: 9;
}

.footer{padding: 80px 0;}

.footer .logo{
	max-width: 440px;
	margin: 0px auto;
}

.footer .menu{
	display: flex;
	justify-content: center;
	margin: 40px auto;
}

.footer .menu li{margin: 0 20px;}

.footer .gnav .menu li a{
	font-weight: 500;
	transition: all .3s;
}

.footer .copy{
	display: block;
	font-size: 1rem;
	text-align: center;
}

/* ========== コンテンツページ ========= */

/* ページタイトル */
.page-title-area{
	max-width: 1175px;
	margin: 80px auto;
	padding: 0 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.page-title-image{
	max-width: 670px;
	margin: 0 0 0 20px;
	border-radius: 16px;
	overflow: hidden;
}

.page-title{
	font-size: 4.4rem;
	font-weight: 700;
}

.page-desc{
	max-width: 880px;
	margin: 0 auto;
	padding: 0 20px 100px 20px;
	font-size: 1.6rem;
	line-height: 2em;
	font-weight: 500;
}

.page-desc .people-message{
	padding: 20px 40px;
	margin: 60px 0;
	border: solid 2px var(--black);
	border-radius: 12px;
	position: relative;
}

.page-desc .people-message h2{
	font-size: 2rem;
	border-radius: 4px;
	margin: 20px 0;
}

.page-desc .people-message.iyama{border: solid 2px var(--orange);}

.page-desc .people-message.shimizu{border: solid 2px var(--pink);}

.page-desc .people-message.tachi{border: solid 2px var(--blue);}

.page-desc .people-message.iyama h2{color: var(--orange);}

.page-desc .people-message.shimizu h2{color: var(--pink);}

.page-desc .people-message.tachi h2{color: var(--blue);}

.page-desc .people-message .from{
	position: absolute;
	top: -42px;
	left: -26px;
	font-size: 4rem;
	transform: rotate(-2deg);
	font-family: "Caveat", cursive;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	background: #fff;
	padding: 20px 12px;
}

.page-desc .people-message.tachi .from{color: var(--blue);}

.page-desc .people-message.iyama .from{color: var(--orange);}

.page-desc .people-message.shimizu .from{color: var(--pink)}

/* 動画埋め込み */

/* 以下はvideoファイルを使う場合 */
/* .movie-box{
	width: 100%;
	text-align: center;
	margin: auto;
	padding: 60px 0;
}

.movie-box .people-movie{
	width: 100%;
	max-width: 1100px;
} */

/* 以下はYouTube埋め込みの場合 */
.movie-wrap{
	max-width: 880px;
	margin: 0 auto;
	padding: 80px 20px 0 20px;
}

.movie-box{
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}

.movie-box iframe{
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

/* スケジュール */
.schedule{padding: 80px;}

.schedule dt{
	position: relative;
	font-size: 2rem;
	font-weight: 500;
	padding: 10px 40px 10px 48px;
	border: solid 2px var(--black);
	border-left: none;
	border-radius: 0 100px 100px 0;
	display: inline-block;
}

.schedule dt span{
	display: inline-block;
	margin: 0 12px 0 0;
}

.schedule dt::before{
	position: absolute;
	top: -5px;
	left: -30px;
	content: "●";
	background: #fff;
	color: var(--blue);
	border: solid 2px var(--black);
	border-radius: 100%;
	width: 60px;
	height: 60px;
	display: inline-block;
	text-align: center;
	font-size: 3.6rem;
}

.schedule.iyama dt::before{color: var(--orange);}

.schedule.shimizu dt::before{color: var(--pink);}

.schedule-box{
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-left: solid 2px var(--black);
}

.schedule .schedule-box.tachi-last{margin: 0 0 60px 0;}

.schedule-text, .schedule-image{width: 48.5%;}

.schedule-text p{
	padding: 40px;
	line-height: 2em;
}

.schedule .schedule-text .fashion{
	padding: 0 40px 40px 40px;
	position: relative;
}

.schedule .schedule-text .fashion p{padding: 0;}

.schedule .schedule-text .fashion span{
	position: absolute;
	font-size: 2rem;
	top: -30px;
	left: 20px;
	transform: rotate(-2deg);
	font-family: "Caveat", cursive;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	color: var(--blue);
}

.schedule.iyama .schedule-text .fashion span{color: var(--orange);}

.schedule.shimizu .schedule-text .fashion span{color: var(--pink);}

/* 会社概要 */
.outline{
	display: flex;
	flex-wrap: wrap;
	padding: 80px 0;
}

.outline dt{
	width: 30%;
	background: var(--gray);
	padding: 20px;
	border-bottom: solid 2px #fff;
	display: flex;
	align-items: center;
	font-weight: 500;
}

.outline dd{
	background: var(--gray2);
	width: 70%;
	padding: 20px;
	border-bottom: solid 2px #fff;
	display: flex;
	align-items: center;
}

/* ========== マウスオーバー ========== */

.more-btn:hover a{
	border: solid 2px var(--gray);
	box-shadow: 2px 2px 0px 4px var(--gray);
	transform: translateX(6px) translateY(6px);
}

.more-btn-small:hover a{
	border: solid 2px var(--gray);
	box-shadow: 1px 1px 0px 2px var(--gray);
	transform: translateX(2px) translateY(2px);
}

.header .menu li a:hover::after{width: 100%;}

.gototop:hover{transform: translateY(-6px);}

.footer .menu li a:hover{color: var(--pink);}

/* ========== 1150px未満 ========== */
@media screen and (max-width: 1150px){
	
.header{flex-flow: column;}

.header .gnav{margin: 32px 0 0 0;}

.top-message-area{height: 500px;}

.top-mainimage{right: 20px;}

.top-slideshow{
	width: 600px;
	height: 380px;
	right: 40px;
}

.main-message{padding: 80px 60px;}

.page-title-area{padding: 40px;}

.page-desc{padding: 0 40px 100px 40px;}

.eight-things-list li{justify-content: center!important;}

.eight-things-list li:nth-child(2n)::before {left: 0;}
	
}

/* ========== 820px未満 ========== */
@media screen and (max-width: 820px){

/* ===== ヘッダー　===== */
.header{display: block;}

.logo{display: none;}

.sp-logo{
	display: block;
	width: 220px;
}

.sp-logo.active{
	position: fixed;
	top:40px;
	left: 40px;
}

/* メニューボタン */
.sp-menu-btn{
	display: block;
	position: fixed;
	right: 40px;
	top: 40px;
	background: var(--pink);
	cursor: pointer;
	width: 40px;
	height: 40px;
	border-radius: 8px;
	z-index: 99999;
}

.sp-menu-btn span{
	display: inline-block;
	transition: all .4s;/*アニメーションの設定*/
	position: absolute;
	left: 11px;
	height: 3px;
	background: #fff;
	width: 45%;
}

.sp-menu-btn span:nth-of-type(1) {top: 10px;}

.sp-menu-btn span:nth-of-type(2) {top: 19px;}

.sp-menu-btn span:nth-of-type(3) {top: 28px;}

.sp-menu-btn.active span:nth-of-type(1) {
	top: 13px;
	left: 10px;
	transform: translateY(6px) rotate(-45deg);
	width: 50%;
}

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

.sp-menu-btn.active span:nth-of-type(3){
	top: 25px;
	left: 10px;
	transform: translateY(-6px) rotate(45deg);
	width: 50%;
}

.main-contents.active{opacity: 0;}

.header .gnav{
	transform: translateX(100vw);
	transition: transform .3s;
	position: fixed;
	left: 0;
	top: 119px;
	width: 100vw;
}

.header .gnav.active{
	transform: translateX(0);
	z-index: 999;
}

.header .menu{
	display: block;
	padding: 20px 0;
}

.header .menu li{
	margin: 0;
	padding: 0;
	border-bottom: solid 1px #fff;
}

.header .menu li a{
	text-align: center;
	display: block;
	padding: 20px 0;
	background: var(--pink);
	color: #fff;
}

/* ======= トップページ ===== */
/* メッセージ部分 */

.top-message-area{height: 430px}

.top-mainimage{
	max-width: 500px;
}

.top-slideshow{
	position: relative;
	width: 100%;
	height: 400px;
	right: auto;
	top: auto;
}

.main-message{
	padding: 20px 40px 80px 40px;
}

.main-message p{text-align: left;}

/* 見出し */
.head-title, .head-title-right{font-size: 2.8rem;}

/* NEWS */
.news-area{
	display: block;
	border-radius: 8px;
}

.news-area h2, .news-area p{width: 100%;}

.news-area p{padding: 12px;}

.news-area p time{
	display: block;
	margin: 0 0 8px 0;
}

/* 8つのこと */
.eight-things-list li{
	flex-flow: column;
	width: 100%;
	padding: 0;
}

.eight-things-list li::before, .eight-things-list li:nth-child(even)::before{left: 38px;}

.eight-things-image{
	margin: 0 auto;
	width: 280px;
	height: 280px;
}

.eight-things-contents{
	padding: 20px;
	width: 100%;
	border-radius: 8px;
}

.eight-things-contents p{font-size: 1.6rem;}

/* BSフジの仕事 */
.bsfuji-work{
	display: block;
}

.bsfuji-work li{width: 100%;}

.bsfuji-work .work-image{
	width: 240px;
	height: 240px;
}

/* BSフジで働く人 */
.bsfuji-people{
	flex-flow: column;
	padding: 80px 0 0 0;
}

.bsfuji-people li{margin: 0 0 80px 0;}

.bsfuji-people li:last-child{margin: 0;}

.bsfuji-people .people-image{margin: 20px 0;}

/* BSフジギャラリー */
.bsfuji-gallery li{width: 45%;}

/* ========== フッター ========= */
.footer{padding: 40px 40px 120px 40px;}

.footer .gnav .menu{
	display: block;
	margin: 0 0 40px 0;
}

.footer .gnav .menu li{
	margin: 0;
	border-bottom: solid 1px var(--gray);
}

.footer .gnav .menu li:first-child{border-top: solid 1px var(--gray);}

.footer .gnav .menu li a{
	display: block;
	text-align: center;
	padding: 20px 0;
}

.footer .sub-navi .menu li a{font-size: 1.2rem;}

/* ========== コンテンツページ ========= */

.page-title-area{
	display: block;
	padding: 0 20px;
	margin: 20px 0;
}

.page-title{
	font-size: 4rem;
	margin: 40px 0;
}

.top-slideshow.page{height: 300px;}

/* 社員の一日 */
.schedule{padding: 40px 20px 80px 20px;}

.schedule-box{flex-flow: column;}

.schedule dt{
	font-size: 2rem;
	padding: 0 0 0 28px;
	border: none;
	border-left: solid 2px #000;
	border-radius: 0;
}

.schedule dt::before{
	font-size: 2rem;
	width: 36px;
	height: 36px;
	top: 0;
	left: -18px;
}

.schedule-text, .schedule-image{width: 100%;}

.schedule-box p, .schedule-image{width: 100%;}

.schedule-box p{padding: 20px 0 0 16px;}

.schedule-box img{padding: 20px 20px 60px 20px;}

.schedule .schedule-text .fashion{padding: 40px 36px;}

.schedule .schedule-text .fashion span{top: 17px;}

/* 会社概要 */
.outline{
	display: block;
}

.outline dt, .outline dd{width: 100%;}

}


/* ========== 600px未満 ========== */

@media screen and (max-width: 600px){
	
.more-btn{width: 320px;}
	
.top-message-area{
	height: 520px;
}
	
.top-message-area .main-copy{
	top: 300px;
	font-size: 3.2rem;
}

.top-message-area .main-copy .bouken, .top-message-area .main-copy .souzou, .top-message-area .main-copy .souzou2{font-size: 6rem;}

.top-message-area .main-copy .bouken-en, .top-message-area .main-copy .souzou-en{text-shadow: 0px 0px 6px rgba(255, 255, 255, 1);}

.top-mainimage{
	position: relative;
	margin: 0 0 0 40px;
}

.page-desc{font-size: 1.6rem;}

.eight-things-image{
	width: 200px;
	height: 200px;
}

.eight-things-contents h3{
	font-size: 1.6rem;
	font-weight: 600;
}

.bsfuji-work .work-box{flex-flow: column;}

.bsfuji-work .work-box p{
	margin: 20px 0 0 0;
}

.bsfuji-work .work-image, .bsfuji-people .people-image{
	width: 170px;
	height: 170px;
}

.gototop{width: 100px;}

.head-title, .head-title-right{font-size: 2rem;}

.bsfuji-gallery li{width: 49%;}

}

/* ========== 400px未満 ========== */

@media screen and (max-width: 400px){

.header{
	padding: 20px;
}

.sp-logo.active{
	top: 20px;
	left: 20px;
}

.header .gnav{top: 60px;}

.header .menu li a{padding: 12px 0;}

.sp-menu-btn{
	right: 20px;
	top: 20px;
}

.top-message-area .main-copy .bouken, .top-message-area .main-copy .souzou, .top-message-area .main-copy .souzou2{font-size: 4.8rem;}

.top-message-area .main-copy .bouken-en, .top-message-area .main-copy .souzou-en{
	font-size: 4rem;
	top: -30px;
}

 .top-message-area .main-copy .souzou-en{
	top: auto;
	bottom:-20px;
	left: 60px;
}

.top-message-area, .main-message{padding: 20px;}

.top-message-area{height: 480px;}

.main-message p{font-size: 1.68rem;}

}