@charset "UTF-8";


/***************************************************

	共通コンテンツ部

***************************************************/

:root {
	--text: #292929;
	--color1: #DB0202;
	--color2: #DB0202;
	--bgcolor_g: #F0F0F0;
}

html, body{margin:0; padding:0}

body{
	position: relative;
	font-size: 16px;
	font-weight: 400;
	color: var(--text);
	line-height: 1.7;
	font-family: YakuHanJP, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
	word-wrap: break-word;
	word-break: break-all;
}

.en{
	font-family: "Roboto", sans-serif;
}

a{
	text-decoration: none;
	transition: all 0.2s linear;
}

a:hover{
	opacity: 0.8;
}

img{
	max-width: 100%;
	height: auto;
}

.pc-on{display: block;}
.sp-on{display: none;}


.wrapper{
	width: 1440px;
	margin: 0 auto;
	position: relative;
}

/* --------- ヘッダー ---------- */

header{
	width: 100%;
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 990;
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

header .logo_box{
	width: 310px;
	padding: 15px 0 15px 50px;
	transition: all 0.2s linear;
}

header.scroll .logo_box{
	width: 248px;
	padding: 9px 0 9px 40px;
}

header .menu_box .menu_wrapp{
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
}

header .menu_box .menu_wrapp .menu_area ul{
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
}

header .menu_box .menu_wrapp .menu_area ul li{
	margin-right: 36px;
}

header.scroll .menu_box .menu_wrapp .menu_area ul li{
	margin-right: 28px;
}

header .menu_box .menu_wrapp .menu_area ul li:last-child{
	margin-right: 0;
}

header .menu_box .menu_wrapp .menu_area ul li a{
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	color: var(--text);
	line-height: 1.6;
	position: relative;
}

header.scroll .menu_box .menu_wrapp .menu_area ul li a{
	font-size: 12px;
}

header .menu_box .menu_wrapp .menu_area ul li a::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -3px;
	width: 100%;
	height: 2px;
	background-color: var(--text);
	transform: translateX(-50%) scaleX(0);
	transform-origin: center;
	transition: transform 0.3s ease;
}

header .menu_box .menu_wrapp .menu_area ul li a:hover::after {
	transform: translateX(-50%) scaleX(1);
}

header .menu_box .menu_wrapp .contact_wrapp{
	display: flex;
	flex-direction: row-reverse;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    margin-left: 30px;
	transition: all 0.2s linear;
}

header.scroll .menu_box .menu_wrapp .contact_wrapp{
    margin-left: 24px;
}

header .menu_box .menu_wrapp .contact_wrapp .tel_block{
	width: 340px;
	height: 80px;
	background: var(--text);
	position: relative;
	transition: all 0.2s linear;
}

header.scroll .menu_box .menu_wrapp .contact_wrapp .tel_block{
	width: 272px;
	height: 64px;
}

header .menu_box .menu_wrapp .contact_wrapp .tel_block .tel_img{
	display: block;
	width: 280px;
	margin: 0 auto;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
	transition: all 0.2s linear;
}

header.scroll .menu_box .menu_wrapp .contact_wrapp .tel_block .tel_img{
	width: 224px;
}

header .menu_box .menu_wrapp .contact_wrapp .inquiry_block{
	width: 141px;
	margin-right: 20px;
	transition: all 0.2s linear;
}

header.scroll .menu_box .menu_wrapp .contact_wrapp .inquiry_block{
	width: 113px;
	margin-right: 16px;
}



/*------- フッター -------*/

#totop{
	width: 130px;
	position: fixed;
	bottom: 25px;
	right: 50px;
	display: none;
	cursor: pointer;
	z-index: 99;
}


#footer_contact{
	background-color: #000;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
	background-image: url('../images/common/fc_bg.jpg');
	padding: 60px 0 80px;
	position: relative;
}

#footer_contact::after{
	content: '';
	display: block;
	background: rgba(0,0,0,0.6);
	position: absolute;top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

#footer_contact h2{
	color: #fff;
	margin: 0 0 70px 56px;
}

#footer_contact .caption{
	font-size: 26px;
	font-weight: 500;
	color: #fff;
	line-height: 1.6;
	letter-spacing: 1px;
	text-align: center;
	margin-bottom: 60px;
	position: relative;
	z-index: 2;
}

#footer_contact .link_ul{
	width: 690px;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

#footer_contact .link_ul li{
	width: 326px;
}

#footer_contact .link_ul li a{
	display: block;
	height: 56px;
	line-height: 56px;
	border-radius: 56px;
	background: #fff;
	border: 2px solid var(--text);
	text-align: center;
	color: var(--text);
	position: relative;
}

#footer_contact .link_ul li a strong{
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.01em;
	padding: 0 30px 0 40px;
	position: relative;
}

#footer_contact .link_ul li a strong::after{
	content: '';
	display: inline-block;
	width: 6px;
	height: 12px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
	background-image: url('../images/common/ico_arrow02.png');
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}

#footer_contact .link_ul li a strong::before{
	content: '';
	display: inline-block;
	width: 23px;
	height: 24px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
	background-image: url('../images/common/icon_fc01.png');
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

#footer_contact .link_ul li.tel a strong::before{
	background-image: url('../images/common/icon_fc02.png');
}


footer{
	padding-top: 80px;
	background: #fff;
}

footer .footer_wrapp{
	width: 1100px;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
}

footer .footer_wrapp .add_block{
	width: 550px;
}

footer .footer_wrapp .add_block .logo{
	width: 310px;
	margin-bottom: 20px;
}

footer .footer_wrapp .add_block .add{
	font-size: 16px;
	font-weight: 400;
	line-height: 1.625;
	letter-spacing: 1px;
	margin-bottom: 10px;
}

footer .footer_wrapp .add_block .map_link{
	width: 140px;
	margin-bottom: 20px;
}

footer .footer_wrapp .add_block .map_data iframe{
	width: 100%;
	height: 419px;
}

footer .footer_wrapp .link_block{
	width: 380px;
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
}

footer .footer_wrapp .link_block .link_ul{
	width: 160px;
}

footer .footer_wrapp .link_block .link_ul > li{
	margin-bottom: 40px;
}

footer .footer_wrapp .link_block .link_ul > li:last-child{
	margin-bottom: 0;
}

footer .footer_wrapp .link_block .link_ul > li > a{
	display: block;
	font-size: 16px;
	font-weight: 600;
	color: var(--text);
	line-height: 1.6;
	border-bottom: 1px solid var(--text);
	position: relative;
}

footer .footer_wrapp .link_block .link_ul > li > a::before{
	content: '';
	display: inline-block;
	width: 12px;
	height: 13px;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: cover;
	background-image: url('../images/common/ico_arrow03.png');
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}

footer .footer_wrapp .link_block .link_ul > li .in_ul{
	margin-top: 20px;
	counter-reset: num01 0;
}

footer .footer_wrapp .link_block .link_ul > li .in_ul li{
	margin-bottom: 16px;
}

footer .footer_wrapp .link_block .link_ul > li .in_ul li:last-child{
	margin-bottom: 0;
}

footer .footer_wrapp .link_block .link_ul > li .in_ul li a{
	display: block;
	font-size: 12px;
	font-weight: 600;
	color: var(--text);
	line-height: 1.6;
	padding-left: 17px;
	position: relative;
}

footer .footer_wrapp .link_block .link_ul > li .in_ul li a::before {
	counter-increment: num01 1;
	content: counter(num01) '';
	display: inline-block;
	font-size: 8px;
	width: 12px;
	height: 12px;
	line-height: 12px;
	border: 1px solid var(--text);
	border-radius: 50%;
	text-align: center;
	position: absolute;
    top: 3px;
    left: 0;
}

.copyright{
	background: var(--color1);
	height: 46px;
	line-height: 46px;
	font-size: 14px;
	color: #fff;
	text-align: center;
	margin-top: 80px;
}



/*------- コンテンツ -------*/

main{
	padding: 74px 0 0;
}

.cont_title{
	line-height: 1;
	position: relative;
	z-index: 5;
}

.cont_title strong{
	display: inline-block;
	font-size: 160px;
	font-weight: 600;
	font-style: italic;
	letter-spacing: 1px;
	position: relative;
}

.cont_title small{
	display: inline-block;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.6;
	letter-spacing: 1px;
	margin-left: 36px;
}


.under_page_head{
	width: 100%;
	height: 600px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
	position: relative;
}

.under_page_head .under_page_head_wrapp{
	width: 1384px;
	height: 100%;
	margin: 0 auto;
	line-height: 1;
	position: relative;
	overflow: hidden;
}

.under_page_head .under_page_head_wrapp h1{
    position: absolute;
    bottom: -28px;
    left: 0;
    display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
}

.under_page_head .under_page_head_wrapp h1 strong{
	font-size: 160px;
	font-weight: 700;
	font-style: italic;
	color: #fff;
}

.under_page_head .under_page_head_wrapp h1 small{
	display: inline-block;
	background: #fff;
	height: 36px;
	line-height: 36px;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 1px;
	padding: 0 30px;
	margin-left: 35px;
}

.page_caption_block{
	height: 204px;
	background: #fff;
	position: relative;
}

.page_caption_block p{
	font-size: 18px;
	font-weight: 600;
	line-height: 2.0;
	letter-spacing: 1px;
	text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
	transform: translate(-50%, -50%);
    white-space: nowrap;
}







/********************************************************************************
	リッキド用 CSS
********************************************************************************/

@media(max-width:1440px){

body{
	font-size: 1.25vw;
}
.wrapper{
	width: 100%;
}

/* --------- ヘッダー ---------- */

header{

}

header .logo_box{
	width: 21.527778vw;
	padding: 0.833333vw 0 0.833333vw 3.472222vw;
}

header.scroll .logo_box{
	width: 17.222222vw;
	padding: 0.625vw 0 0.625vw 2.777778vw;
}

header .menu_box .menu_wrapp .menu_area ul li{
	margin-right: 2.5vw;
}

header.scroll .menu_box .menu_wrapp .menu_area ul li{
	margin-right: 1.944444vw;
}

header .menu_box .menu_wrapp .menu_area ul li a{
	font-size: 0.972222vw;
}

header.scroll .menu_box .menu_wrapp .menu_area ul li a{
	font-size: 0.833333vw;
}

header .menu_box .menu_wrapp .menu_area ul li a::after {
	bottom: -3px;
	height: 2px;
}

header .menu_box .menu_wrapp .contact_wrapp{
    margin-left: 2.083333vw;
}

header.scroll .menu_box .menu_wrapp .contact_wrapp{
    margin-left: 1.666667vw;
}

header .menu_box .menu_wrapp .contact_wrapp .tel_block{
	width: 23.611111vw;
	height: 5.555556vw;
}

header.scroll .menu_box .menu_wrapp .contact_wrapp .tel_block{
	width: 18.888889vw;
	height: 4.444444vw;
}

header .menu_box .menu_wrapp .contact_wrapp .tel_block .tel_img{
	width: 19.444444vw;
}

header.scroll .menu_box .menu_wrapp .contact_wrapp .tel_block .tel_img{
	width: 15.555556vw;
}

header .menu_box .menu_wrapp .contact_wrapp .inquiry_block{
	width: 9.791667vw;
	margin-right: 1.388889vw;
}

header.scroll .menu_box .menu_wrapp .contact_wrapp .inquiry_block{
	width: 7.847222vw;
	margin-right: 1.111111vw;
}



/*------- フッター -------*/

#totop{
	width: 9.027778vw;
	bottom: 1.736111vw;
	right: 3.472222vw;
}


#footer_contact{
	padding: 4.166667vw 0 5.555556vw;
}

#footer_contact h2{
	margin: 0 0 4.861111vw 3.888889vw;
}

#footer_contact .caption{
	font-size: 1.805556vw;
	margin-bottom: 4.166667vw;
}

#footer_contact .link_ul{
	width: 47.916667vw;
}

#footer_contact .link_ul li{
	width: 22.638889vw;
}

#footer_contact .link_ul li a{
	height: 3.888889vw;
	line-height: 3.888889vw;
}

#footer_contact .link_ul li a strong{
	font-size: 1.111111vw;
	padding: 0 2.083333vw 0 2.777778vw;
}

#footer_contact .link_ul li a strong::after{
	width: 0.416667vw;
	height: 0.833333vw;
}

#footer_contact .link_ul li a strong::before{
	width: 1.597222vw;
	height: 1.666667vw;
}


footer{
	padding-top: 5.555556vw;
}

footer .footer_wrapp{
	width: 76.388889vw;
}

footer .footer_wrapp .add_block{
	width: 38.194444vw;
}

footer .footer_wrapp .add_block .logo{
	width: 21.527778vw;
	margin-bottom: 1.388889vw;
}

footer .footer_wrapp .add_block .add{
	font-size: 1.111111vw;
	margin-bottom: 0.694444vw;
}

footer .footer_wrapp .add_block .map_link{
	width: 9.722222vw;
	margin-bottom: 1.388889vw;
}

footer .footer_wrapp .add_block .map_data iframe{
	height: 29.097222vw;
}

footer .footer_wrapp .link_block{
	width: 26.388889vw;
}

footer .footer_wrapp .link_block .link_ul{
	width: 11.111111vw;
}

footer .footer_wrapp .link_block .link_ul > li{
	margin-bottom: 2.777778vw;
}

footer .footer_wrapp .link_block .link_ul > li > a{
	font-size: 1.111111vw;
}

footer .footer_wrapp .link_block .link_ul > li > a::before{
	width: 0.833333vw;
	height: 0.902778vw;
}

footer .footer_wrapp .link_block .link_ul > li .in_ul{
	margin-top: 1.388889vw;
}

footer .footer_wrapp .link_block .link_ul > li .in_ul li{
	margin-bottom: 1.111111vw;
}

footer .footer_wrapp .link_block .link_ul > li .in_ul li a{
	font-size: 0.833333vw;
	padding-left: 1.180556vw;
}

footer .footer_wrapp .link_block .link_ul > li .in_ul li a::before {
	font-size: 0.555556vw;
	width: 0.833333vw;
	height: 0.833333vw;
	line-height: 0.833333vw;
    top: 0.208333vw;
}

.copyright{
	height: 3.194444vw;
	line-height: 3.194444vw;
	font-size: 0.972222vw;
	margin-top: 5.555556vw;
}



/*------- コンテンツ -------*/

main{
	padding: 5.138889vw 0 0;
}

.cont_title{

}

.cont_title strong{
	font-size: 11.111111vw;
}

.cont_title small{
	font-size: 1.041667vw;
	margin-left: 2.5vw;
}


.under_page_head{
	height: 41.666667vw;
}

.under_page_head .under_page_head_wrapp{
	width: 96.111111vw;
}

.under_page_head .under_page_head_wrapp h1{
    bottom: -1.944444vw;
}

.under_page_head .under_page_head_wrapp h1 strong{
	font-size: 11.111111vw;
}

.under_page_head .under_page_head_wrapp h1 small{
	height: 2.5vw;
	line-height: 2.5vw;
	font-size: 1.111111vw;
	padding: 0 2.083333vw;
	margin-left: 2.430556vw;
}

.page_caption_block{
	height: 14.166667vw;
}

.page_caption_block p{
	font-size: 1.25vw;
}






}


/********************************************************************************
	スマートフォン用 CSS
********************************************************************************/

@media(max-width:430px){

body{
	font-size: 3.733333vw;
}

a:hover{
	opacity: 1;
}

.pc-on{display: none;}
.sp-on{display: block;}


.wrapper{
	width: auto;
}

/* --------- ヘッダー ---------- */

header{
	height: 64px;
	display: block;
}

header.scroll .logo_box,
header .logo_box{
	width: 41.333333vw;
	padding: 5.333333vw 0 5.333333vw 5.333333vw;
}

header .menu_box{
	position: absolute;
	top: 0;
	right: 0;
}

header .menu_box .menu_open{
	width: 25.066667vw;
	position: absolute;
	top: 0;
	right: 0;
}

header .menu_box .filter{
	background: rgba(0,0,0,0.65);
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	display: none;
}

header .menu_box .menu_wrapp{
	display: block;
	width: 90.666667vw;
	background: #F0F0F0;
	padding: 18.133333vw 5.333333vw 10.666667vw;
	box-sizing: border-box; 
	position: absolute;
	top: 0;
	right: -90.666667vw;
	z-index: 999;
	transition: all 0.2s linear;
}

header .menu_box .menu_wrapp.active{
	right: 0;
}

header .menu_box .menu_wrapp .menu_close{
	width: 15.466667vw;
	position: absolute;
	top: 5.333333vw;
	right: 5.333333vw;
}

header .menu_box .menu_wrapp .menu_area ul{
	display: block;
	margin-bottom: 10.666667vw;
}

header.scroll .menu_box .menu_wrapp .menu_area ul li,
header .menu_box .menu_wrapp .menu_area ul li{
	margin-right: 0;
	border-top: 1px solid var(--text);
}

header .menu_box .menu_wrapp .menu_area ul li:last-child{
	border-bottom: 1px solid var(--text);
}

header.scroll .menu_box .menu_wrapp .menu_area ul li a,
header .menu_box .menu_wrapp .menu_area ul li a{
	display: block;
	font-size: 4vw;
	line-height: 16.8vw;
	padding-left: 5.333333vw;
}

header .menu_box .menu_wrapp .menu_area ul li a::before{
	content: '';
	display: inline-block;
	width: 3.466667vw;
	height: 3.2vw;
	background: url('../images/common/ico_arrow01.png') no-repeat 0 0 / contain;
	position: absolute;
	top: 50%;
	right: 5.333333vw;
	transform: translateY(-50%);
}

header .menu_box .menu_wrapp .menu_area ul li a::after {
	content: none;
}

header.scroll .menu_box .menu_wrapp .contact_wrapp,
header .menu_box .menu_wrapp .contact_wrapp{
	display: block;
    margin-left: 0;
    background: #fff;
    padding: 5.333333vw;
}

header.scroll .menu_box .menu_wrapp .contact_wrapp .tel_block,
header .menu_box .menu_wrapp .contact_wrapp .tel_block{
	width: auto;
	background: transparent;
	margin-bottom: 4vw;
}

header.scroll .menu_box .menu_wrapp .contact_wrapp .tel_block .tel_img,
header .menu_box .menu_wrapp .contact_wrapp .tel_block .tel_img{
	width: auto;
}

header.scroll .menu_box .menu_wrapp .contact_wrapp .inquiry_block,
header .menu_box .menu_wrapp .contact_wrapp .inquiry_block{
	width: auto;
	margin-right: 0;
}



/*------- フッター -------*/

#totop{
	width: 13.333333vw;
	bottom: 5.333333vw;
	right: 5.333333vw;
}


#footer_contact{
	padding: 8vw 0 10.666667vw;
}

#footer_contact h2{
	margin: 0 0 8vw 5.333333vw;
}

#footer_contact .caption{
	font-size: 4.266667vw;
	line-height: 1.8;
	margin-bottom: 8vw;
}

#footer_contact .link_ul{
	width: 80%;
	display: block;
}

#footer_contact .link_ul li{
	width: auto;
	margin-bottom: 4vw;
}

#footer_contact .link_ul li:last-child{
	margin-bottom: 0;
}

#footer_contact .link_ul li a{
	display: block;
	height: 14.933333vw;
	line-height: 14.933333vw;
}

#footer_contact .link_ul li a strong{
	display: block;
	font-size: 4.266667vw;
	line-height: 14.933333vw;
	text-align: left;
	padding: 0 0 0 13.333333vw;
	box-sizing: border-box;
}

#footer_contact .link_ul li a strong::after{
	width: 1.6vw;
	height: 3.2vw;
	right: 5.333333vw;
}

#footer_contact .link_ul li a strong::before{
	width: 6.133333vw;
	height: 6.4vw;
	left: 5.333333vw;
}


footer{
	padding-top: 10.666667vw;
}

footer .footer_wrapp{
	width: auto;
	margin: 0 5.333333vw;
	display: block;
}

footer .footer_wrapp .add_block{
	width: auto;
	margin-bottom: 8vw;
}

footer .footer_wrapp .add_block .logo{
	width: 70%;
	margin: 0 auto 5.333333vw;
}

footer .footer_wrapp .add_block .add{
	font-size: 4.266667vw;
	margin-bottom: 4.266667vw;
	text-align: center;
}

footer .footer_wrapp .add_block .map_link{
	width: 37.333333vw;
	margin: 0 auto 5.333333vw;
}

footer .footer_wrapp .add_block .map_data{
	margin: 0 -5.333333vw;
}

footer .footer_wrapp .add_block .map_data iframe{
	width: 100%;
	height: 74.666667vw;
}

footer .footer_wrapp .link_block{
	width: auto;
	display: block;
}

footer .footer_wrapp .link_block .link_ul{
	width: auto;
}

footer .footer_wrapp .link_block .link_ul > li{
	margin-bottom: 0;
	border-bottom: 1px solid var(--text);
}

footer .footer_wrapp .link_block .link_ul > li > a{
	font-size: 4.266667vw;
	line-height: 12.266667vw;
	border-bottom: none;
}

footer .footer_wrapp .link_block .link_ul > li > a::before{
	width: 3.2vw;
	height: 3.466667vw;
}

footer .footer_wrapp .link_block .link_ul > li .in_ul{
	margin-top: 0;
	display: none;
}

footer .footer_wrapp .link_block .link_ul > li .in_ul li{
	margin-bottom: 0;
	border-bottom: 1px solid #ccc;
}

footer .footer_wrapp .link_block .link_ul > li .in_ul li:last-child{
	border-bottom: none;
}

footer .footer_wrapp .link_block .link_ul > li .in_ul li a{
	font-size: 3.733333vw;
	line-height: 10.133333vw;
	padding-left: 4.533333vw;
}

footer .footer_wrapp .link_block .link_ul > li .in_ul li a::before {
	font-size: 2.133333vw;
	width: 3.2vw;
	height: 3.2vw;
	line-height: 3.2vw;
    top: 3.2vw;
}

.copyright{
	height: 12.266667vw;
	line-height: 12.266667vw;
	font-size: 2.666667vw;
	margin-top: 10.666667vw;
}

footer .footer_wrapp .toggle_btn{
	display: inline-block;
	background: var(--color1);
	font-size: 3.2vw;
	color: #fff;
	font-weight: 500;
	letter-spacing: 0.025em;
	line-height: 6.933333vw;
	padding: 0 16vw 0 5.333333vw;
	border-radius: 1.6vw;
	margin-bottom: 3.2vw;
	position: relative;
}

footer .footer_wrapp .toggle_btn::before {
    content: '';
    width: 1.6vw;
    height: 1.6vw;
    border: 0px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(135deg);
    position: absolute;
    top: 50%;
    right: 2.666667vw;
    margin-top: -1.6vw;
}

footer .footer_wrapp .toggle_btn.active::before {
    transform: rotate(-45deg);
    margin-top: -0.533333vw;
}


/*------- コンテンツ -------*/

main{
	padding: 17.066667vw 0 0;
}

.cont_title{

}

.cont_title strong{
	font-size: 12.266667vw;
}

.cont_title small{
	display: block;
	font-size: 4vw;
	margin: 1.6vw 0 0;
}


.under_page_head{
	height: 73.333333vw;
}

.under_page_head .under_page_head_wrapp{
	width: auto;
	margin: 0 2.666667vw;
}

.under_page_head .under_page_head_wrapp h1{
    display: block;
    bottom: 2.666667vw;
    
}

.under_page_head .under_page_head_wrapp h1 strong{
	font-size: 17.333333vw;
	text-shadow: 2px 2px 2px rgba(0,0,0,1);
}

.under_page_head .under_page_head_wrapp h1 small{
	height: 6.933333vw;
	line-height: 6.933333vw;
	font-size: 3.733333vw;
	padding: 0 2.666667vw;
	margin-left: 0.5em;
}

.page_caption_block{
	height: auto;
	padding: 6.4vw 0;
}

.page_caption_block p{
	font-size: 4.266667vw;
	line-height: 1.8;
	position: static;
    transform: translate(0, 0);
}





}

