@charset "UTF-8";


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

	共通コンテンツ部

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

:root {
	--text: #4E261E;
	--text2: #2B2A1E;
	--text3: #E3DFD5;
	--text_w: #F4EFE4;
	--color1: #C4A23E;
	--color2: #B39D50;
	--color3: #786317;	
}


html, body{
	margin:0;
	padding:0;
	scroll-behavior: auto !important;
}

body{
	position: relative;
	font-size: 16px;
	font-weight: 400;
	color: var(--text);
	line-height: 1.75;
	letter-spacing: 0.04em;
	font-family: "Noto Serif JP", serif;
	word-wrap: break-word;
	word-break: break-all;
	font-feature-settings: "palt";
	
	background-repeat: repeat-y;
	background-position: 0 0;
	background-size: 100% auto;
	background-attachment: fixed;
	background-image: url('../images/common/body_bg01.jpg');
	
}

.webp body{
	background-image: url('../images/common/body_bg01.webp');
}


.en01{
	font-family: "Cinzel", serif;
}

a{
	color: #008cd6;
	transition: all 0.2s linear;
	text-decoration: none;
	opacity: 1;
}

a:hover{
	opacity: 0.8;
}

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


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


/********* header **********/

header{
	height: 80px;
	display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.00) 100%);
    line-height: 1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

header .head_left_block{
	display: flex;
    align-items: center;
}

header .head_left_block .switch_logo{
	width: 161px;
}

header .head_left_block .steam_logo{
	width: 131px;
	margin-left: 32px;
}

header .head_right_block{
	display: flex;
    align-items: center;
    padding-right: 24px;
}

header .head_right_block .sns_ul{
	display: flex;
    align-items: center;
	position: fixed;
    top: 28px;
    right: 307px;
}

header .head_right_block .sns_ul li{
	width: 24px;
	margin-left: 8px;
}

header .head_right_block .sns_ul li:first-child{
	margin-left: 0;
}

header .head_right_block .lang{
	padding: 13px 14px 12px 48px;
	position: relative;
	box-sizing: border-box;
	z-index: 2;
	border-radius: 40px;
	background: rgba(0, 0, 0, 0.50);
	position: fixed;
    top: 22px;
    right: 95px;
}

header .head_right_block .lang::before{
	content: '';
	display: inline-block;
	width: 18px;
	height: 18px;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: cover;
	background-image: url('../images/common/icon_lang.png');
	position: absolute;
	top: 50%;
	left: 19px;
	transform: translate(0, -50%);
}

header .head_right_block .lang .language-button span{
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	padding-right: 24px;
	position: relative;
}

header .head_right_block .lang .language-button span::before{
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: cover;
	background-image: url('../images/common/icon_arrow_down.png');
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0, -50%);
}

header .head_right_block .lang ul{
	position: absolute;
    top: 100%;
    left: 14px;
    padding: 14px 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.90);
    width: 120px;
    box-sizing: border-box;
}

header .head_right_block .lang ul li{

}

header .head_right_block .lang ul li a{
	font-size: 16px;
	font-weight: 700;
	color: var(--text2);
	line-height: 1.75;
}

header .head_right_block .neos_logo{
	width: 55px;
}


header .head_right_block .sounb_btn{
	position: fixed;
    top: 18px;
    right: 247px;
}

header .head_right_block .sounb_btn .icon{
    width: 44px;
	height: 44px;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: contain;
	background-image: url('../images/common/icon_sound_off.png');
	cursor: pointer;
}

header .head_right_block .sounb_btn .icon.active{
	background-image: url('../images/common/icon_sound_on.png');
}


/********* footer **********/

footer{
	background: #000;
	margin-top: 237px;
	position: relative;
	z-index: 10;
}

footer::before{
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	background-repeat: repeat;
	background-position: 0 0;
	background-image: url('../images/common/footer_line.png');
	position: absolute;
	top: -2px;
	left: 0;
	z-index: 1;
}


footer .footer_navi{
	width: 100%;
	height: 100px;
	display: flex;
	justify-content: space-between;
    align-items: center;
    background: #000;
	padding: 0 24px;
	box-sizing: border-box;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
/*
	transform: translateY(100%);
	opacity: 0;
	transition: transform 0.5s ease, opacity 0.3s ease;
	pointer-events: none;
*/
}

/* ▼ 1画面スクロール後 表示 */
footer .footer_navi.is-show{
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
}

footer.active .footer_navi{
    position: relative;
}

.totop{
	width: 113px;
	position: absolute;
	top: -153px;
	left: 0;
	right: 0;
	margin: auto;
}

footer .footer_navi .nav_wrapp{
	width: 100%;
	display: flex;
	justify-content: space-between;
    align-items: center;
    position: relative;
}


footer .footer_navi .nav_wrapp .left_block{
	display: flex;
    align-items: center;
}

footer .footer_navi .nav_wrapp .left_block .logo{
	width: 139px;
	margin-right: 32px;
}

footer .footer_navi .nav_wrapp .left_block .g_navi ul{
	display: flex;
    align-items: center;
}

footer .footer_navi .nav_wrapp .left_block .g_navi ul li{
	margin-right: 24px;
	line-height: 1;
}

footer .footer_navi .nav_wrapp .left_block .g_navi ul li a{
	display: inline-block;
}

footer .footer_navi .nav_wrapp .left_block .g_navi ul li a:hover{
	opacity: 0.8;
}

footer .footer_navi .nav_wrapp .left_block .g_navi ul li a .en_text{
	display: block;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	color: var(--color1);
	text-align: center;
	margin-bottom: -4px;
}

footer .footer_navi .nav_wrapp .left_block .g_navi ul li a .jp_text{
	display: block;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.5;
	color: #E3DFD5;
	text-align: center;
}

footer .footer_navi .nav_wrapp .right_block{
	width: 260px;
}

footer .footer_cont{
	padding: 64px 0 32px;
	color: #fff;
}

footer .footer_cont .sns_area{
	margin-bottom: 16px;
}

footer .footer_cont .sns_area .sns_title{
	text-align: center;
	line-height: 1;
	margin-bottom: 8px;
}

footer .footer_cont .sns_area .sns_title strong{
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.75;
	position: relative;
}

footer .footer_cont .sns_area .sns_title strong::after,
footer .footer_cont .sns_area .sns_title strong::before{
	content: '';
	display: inline-block;
	width: 10px;
	height: 18px;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: contain;
	background-image: url('../images/common/arrow_sns_title.png');
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
}

footer .footer_cont .sns_area .sns_title strong::before{
	left: -18px;
}

footer .footer_cont .sns_area .sns_title strong::after{
	right: -18px;
	transform: translate(0, -50%) scale(-1, 1);
}

footer .footer_cont .sns_area .sns_ul{
	display: flex;
	justify-content: center;
    align-items: center;
}

footer .footer_cont .sns_area .sns_ul li{
	width: 40px;
	margin: 0 5px;
}

footer .footer_cont .footer_note{
	font-size: 12px;
	font-weight: 500;
	line-height: 1.5;
	text-align: center;
	margin-bottom: 32px;
}

footer .footer_cont .footer_logo{
	display: flex;
	justify-content: center;
    align-items: center;
}

footer .footer_cont .footer_logo li{
	height: 43px;
	margin: 0 20px;
}

footer .footer_cont .footer_logo li img{
	width: auto;
	height: 100%;
}

footer .privacy_link{
	text-align: center;
	margin-bottom: 40px;
}

footer .privacy_link a{
	display: inline-block;
	font-size: 12px;
	line-height: 1.5;
	color: #fff;
	text-decoration: underline;
}



/********* content **********/

main{
	position: relative;
	z-index: 2;
	overflow-x: hidden;
    overflow-y: auto;
}

#page_header{
	position: relative;
	margin-bottom: 110px;
}

#page_header .text_wrapper{
	width: 1120px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#page_header .text_wrapper .header_title {
	height: 112px;
	margin-bottom: 6px;
	position: relative;
}

#page_header .text_wrapper .header_title img {
	width: auto;
	height: 112px;
	transition: opacity 1.6s ease;
}

#page_header .text_wrapper .header_title img.title_before {
	width: auto;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0);
	transition: opacity 1.6s ease;
}

/* 初期状態 */
.header_title2 .title_before,
.header_title .title_before {
	opacity: 1;
}

.header_title2 .title_after,
.header_title .title_after {
	opacity: 0;
}

/* 切り替え後 */
.header_title2.is-change .title_before,
.header_title.is-change .title_before {
	opacity: 0;
}

.header_title2.is-change .title_after,
.header_title.is-change .title_after {
	opacity: 1;
}

.header_title2 {
  position: relative;
}

.header_title2 .title_before{
  display: block;
  max-width: 100%;
  height: auto;
  transition: opacity 1s ease;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

/* after を上に重ねる */
.header_title2 .title_after {
  opacity: 0;
  transition: opacity 1s ease;
}



#page_header .text_wrapper .main {
	font-size: 40px;
	font-weight: 700;
	line-height: 1.4;
	color: #fff;
	margin-left: 60px;
}

.content_main_wrapper{
	width: 800px;
	margin: 0 auto;
}

.scroll__inner {
	background-color: #8E897D;
	height: auto;	
	padding: 0;
	overflow-y: scroll;
	-ms-overflow-style: none;
	/* IE, Edge 対応 */
	scrollbar-width: none;
	/* Firefox 対応 */
}
.scroll__inner::-webkit-scrollbar {
	/* Chrome, Safari 対応 */
	display: none;
}
.simplebar-scrollbar::before {
	background: #8E897D;
	border-radius: 0;
	width: 6px;
	margin-left: 0;
	margin-top: 0;
}
.simplebar-scrollbar.simplebar-visible::before {
	opacity: 1;
}
.simplebar-track {
	background: transparent;
	width: 6px !important;
}



/* =====================================
   Preloader
===================================== */
#preloader {
	position: fixed;
	inset: 0;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
	background-image: url('../images/common/loading_bg.webp');	
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;

	opacity: 1;
	visibility: visible;

	transition: all 0.2s linear;
}

.webp #preloader {
	background-image: url('../images/common/loading_bg.webp');
}

body.is-loaded #preloader {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

#lottie-loading {
	width: 328px;
	height: 56px;
}













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

@media(max-width:1440px){


body{
	font-size: 1.111111vw;
	
}

/********* header **********/

header{
	height: 5.555556vw;
}

header .head_left_block .switch_logo{
	width: 11.180556vw;
}

header .head_left_block .steam_logo{
	width: 9.097222vw;
	margin-left: 2.222222vw;
}

header .head_right_block{
    padding-right: 1.666667vw;
}

header .head_right_block .sns_ul{
	top: 1.944444vw;
    right: 21.319444vw;
}

header .head_right_block .sns_ul li{
	width: 1.666667vw;
	margin-left: 0.555556vw;
}

header .head_right_block .lang{
	padding: 0.902778vw 0.972222vw 0.833333vw 3.333333vw;
    top: 1.527778vw;
    right: 6.597222vw;
}

header .head_right_block .lang::before{
	width: 1.25vw;
	height: 1.25vw;
	left: 1.319444vw;
}

header .head_right_block .lang .language-button span{
	font-size: 1.111111vw;
	padding-right: 1.666667vw;
}

header .head_right_block .lang .language-button span::before{
	width: 1.111111vw;
	height: 1.111111vw;
}

header .head_right_block .lang ul{
    left: 0.972222vw;
    padding: 0.972222vw 1.111111vw;
    border-radius: 0.694444vw;
    width: 8.333333vw;
}

header .head_right_block .lang ul li a{
	font-size: 1.111111vw;
}

header .head_right_block .neos_logo{
	width: 3.819444vw;
}

header .head_right_block .sounb_btn {
    top: 1.25vw;
    right: 17.152778vw;
}

header .head_right_block .sounb_btn .icon{
    width: 3.055556vw;
	height: 3.055556vw;
}



/********* footer **********/

footer{
	margin-top: 16.458333vw;
}

footer .footer_navi{
	height: 6.944444vw;
	padding: 0 1.666667vw;
}

.totop{
	width: 7.847222vw;
	top: -10.625vw;
}

footer .footer_navi .nav_wrapp .left_block .logo{
	width: 9.652778vw;
	margin-right: 2.222222vw;
}

footer .footer_navi .nav_wrapp .left_block .g_navi ul li{
	margin-right: 1.666667vw;
}

footer .footer_navi .nav_wrapp .left_block .g_navi ul li a .en_text{
	font-size: 1.111111vw;
	margin-bottom: -0.277778vw;
}

footer .footer_navi .nav_wrapp .left_block .g_navi ul li a .jp_text{
	font-size: 0.833333vw;
}

footer .footer_navi .nav_wrapp .right_block{
	width: 18.055556vw;
}

footer .footer_cont{
	padding: 4.444444vw 0 2.222222vw;
}

footer .footer_cont .sns_area{
	margin-bottom: 1.111111vw;
}

footer .footer_cont .sns_area .sns_title{
	margin-bottom: 0.555556vw;
}

footer .footer_cont .sns_area .sns_title strong{
	font-size: 1.111111vw;
}

footer .footer_cont .sns_area .sns_title strong::after,
footer .footer_cont .sns_area .sns_title strong::before{
	width: 0.694444vw;
	height: 1.25vw;
}

footer .footer_cont .sns_area .sns_title strong::before{
	left: -1.25vw;
}

footer .footer_cont .sns_area .sns_title strong::after{
	right: -1.25vw;
}

footer .footer_cont .sns_area .sns_ul li{
	width: 2.777778vw;
	margin: 0 0.347222vw;
}

footer .footer_cont .footer_note{
	font-size: 0.833333vw;
	margin-bottom: 2.222222vw;
}

footer .footer_cont .footer_logo li{
	height: 2.986111vw;
	margin: 0 1.388889vw;
}

footer .privacy_link{
	margin-bottom: 2.777778vw;
}

footer .privacy_link a{
	font-size: 0.833333vw;
}



/********* content **********/

#page_header{
	margin-bottom: 7.638889vw;
}

#page_header .text_wrapper{
	width: 77.777778vw;
}

#page_header .text_wrapper .header_title {
	height: 7.777778vw;
	margin-bottom: 0.416667vw;
}

#page_header .text_wrapper .header_title img {
	height: 7.777778vw;
}

#page_header .text_wrapper .main {
	font-size: 2.777778vw;
	margin-left: 4.166667vw;
}

.content_main_wrapper{
	width: 55.555556vw;
}

.simplebar-scrollbar::before {
	width: 0.416667vw;

}

.simplebar-track {
	width: 0.416667vw !important;
}



/* =====================================
   Preloader
===================================== */

#lottie-loading {
	width: 22.777778vw;
	height: 3.888889vw;
}







}

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

@media(max-width:460px){

body{
	font-size: 3.733333vw;
}

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


/********* header **********/

header{
	height: 13.066667vw;
	/*background: linear-gradient(180deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0) 50%);*/
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0) 80%)
}

header .head_left_block{
	display: flex;
    align-items: center;
}

header .head_left_block .switch_logo{
	width: 26.133333vw;
}

header .head_left_block .steam_logo{
	width: 21.333333vw;
	margin-left: 2.133333vw;
}

header .head_right_block{
	display: flex;
    align-items: center;
    padding-right: 15.733333vw;
}

header .head_right_block .sns_ul{
	display: none;
}

header .head_right_block .lang{
	width: 30.4vw;
	height: 7.466667vw;
	line-height: 7.466667vw;
	border-radius: 7.466667vw;
	background: rgba(0, 0, 0, 0.50);
    padding: 0 0 0 9.066667vw;
    top: 3.2vw;
    right: 14.666667vw;
}

header .head_right_block .lang::before{
	width: 4vw;
	height: 4vw;
	left: 4vw;
}

header .head_right_block .neos_logo {
	width: 12.533333vw;
	position: absolute;
	top: 16vw;
	left: 2.133333vw;
}

header .head_right_block .lang .language-button span{
	font-size: 3.2vw;
	padding-right: 4.266667vw;
}

header .head_right_block .lang .language-button span::before{
	width: 3.2vw;
	height: 3.2vw;
}

header .head_right_block .lang ul{
    position: absolute;
    top: 100%;
    left: 0;
    padding-top: 4px;
}

header .head_right_block .lang ul{
	left: 3.733333vw;
	padding: 2.666667vw 2.666667vw;
	border-radius: 2.666667vw;
	width: 21.333333vw;
}

header .head_right_block .lang ul li{

}

header .head_right_block .lang ul li a{
	font-size: 12px;
}

header .head_right_block .sounb_btn{
    top: 13.333333vw;
    right: 1.866667vw;
}

header .head_right_block .sounb_btn .icon {
    width: 11.733333vw;
    height: 11.733333vw;
}

main .neos_logo_copy{
	display: block;
	width: 12.533333vw;
	position: absolute;
	top: 15.733333vw;
	left: 2.133333vw;
	z-index: 5;
}

main .sound_btn_copy {
    margin-right: 0
}

main .sound_btn_copy .icon{
    width: 11.733333vw;
	height: 11.733333vw;
	background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
    background-image: url(../images/common/icon_sound_off.png);
	position: absolute;
	top: 14.933333vw;
	right: 2.133333vw;
	z-index: 2;
}

main .sound_btn_copy .icon.active {
    background-image: url(../images/common/icon_sound_on.png);
}




/********* footer **********/

.footer_reservation_btn {
	width: 88.533333vw;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease, transform 0.3s ease;
	transform: translate(0, 8vw);
	z-index: 99;
}

/* reservation_btn が消えたら表示 */
.footer_reservation_btn.active {
	opacity: 1;
	pointer-events: auto;
	transform: translate(0, 0);
}

/* footer 表示中は非表示 */
.footer_reservation_btn.is-hide {
	opacity: 0;
	pointer-events: none;
	transform: translate(0, 8vw);
}


footer{
	margin-top: 63.2vw;
	position: relative;

}

footer::before {
    content: none;
}

.totop{
	width: 30.133333vw;
	position: absolute;
	top: -40.8vw;
	z-index: 90;
}

.menu_btn{
	width: 11.733333vw;
	height: 11.733333vw;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: contain;
	background-image: url('../images/common/sp_menu_open.png');
	position: fixed;
	top: 1.066667vw;
	right: 2.133333vw;
	z-index: 9999;
}

.menu_btn.active{
	background-image: url('../images/common/sp_menu_close.png');
}

footer .sp_menu_cont{
	width: 100%;
	height: 100dvh;
	display: none;
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
    z-index: 100;
}

footer .footer_navi.active{

}

footer .footer_navi{
	display: block;
	height: auto;
	padding: 16.533333vw 5.333333vw 10.666667vw;
	box-sizing: border-box;
	position: relative;
    bottom: unset;
    left: unset;
    right: unset;
    background-color: transparent;
	background-repeat: repeat-y;
	background-position: 0 0;
	background-size:  cover;
	background-image: url('../images/common/body_bg02.webp');
	transform: translateY(0);
	opacity: 1;
	pointer-events: unset;
}

footer .footer_navi .nav_wrapp{
	width: 100%;
	display: block;
}

footer .footer_navi .nav_wrapp .left_block{
	display: block;
}

footer .footer_navi .nav_wrapp .left_block .logo{
	width: 49.333333vw;
	margin: -1.333333vw auto;
}

footer .footer_navi .nav_wrapp .left_block .g_navi ul{
	display: block;
	margin-bottom: 6.4vw;
}

footer .footer_navi .nav_wrapp .left_block .g_navi ul li{
	margin: 0;
	padding: 2.133333vw 0;
	position: relative;
}

footer .footer_navi .nav_wrapp .left_block .g_navi ul li::after {
    content: '';
    display: block;
    width: 100%;
    height: 0.533333vw;
    background-repeat: repeat-x;
    background-position: 0 0;
    background-size: contain;
    background-image: url(../images/common/menu_line.png);
    position: absolute;
    bottom: 0;
    left: 0;
}

footer .footer_navi .nav_wrapp .left_block .g_navi ul li a{
	display: block;
	padding-left: 18px;
	position: relative;
}

footer .footer_navi .nav_wrapp .left_block .g_navi ul li a::before{
    content: '';
    display: block;
    width: 2.666667vw;
    height: 4.8vw;
    background-repeat: repeat-x;
    background-position: 0 0;
    background-size: contain;
    background-image: url(../images/common/icon_arrow_main_sp.png);
    position: absolute;
    top: 1.6vw;
    left: 0;
}

footer .footer_navi .nav_wrapp .left_block .g_navi ul li a:hover{
	opacity: 1;
}

footer .footer_navi .nav_wrapp .left_block .g_navi ul li a .en_text{
	text-align: left;
	font-size: 6.4vw;
	line-height: 1.4;
	color: var(--text_w);
	margin: 0 0 -1.6vw;;
}

footer .footer_navi .nav_wrapp .left_block .g_navi ul li a .jp_text{
	text-align: left;
	font-size: 3.2vw;
	color: var(--text_w);
}

footer .footer_navi .nav_wrapp .right_block{
	width: 68.8vw;
	margin: 0 auto;
}

footer .footer_navi .nav_wrapp .sp_menu_sns{
	margin-top: 6.4vw;
	display: flex;
	justify-content: center;
	align-items: center;
}

footer .footer_navi .nav_wrapp .sp_menu_sns li{
	width: 10.666667vw;
	margin: 0 1.333333vw;
}



footer .footer_cont{
	padding: 8.533333vw 5.333333vw;
}

footer .footer_cont .sns_area{
	margin-bottom: 4.266667vw;
}

footer .footer_cont .sns_area .sns_title{
	/*display: none;*/
	font-size: 4.266667vw;
	margin-bottom: 2.133333vw;
}

footer .footer_cont .sns_area .sns_title strong {
	font-size: 4.266667vw;
}

footer .footer_cont .sns_area .sns_title strong::after,
footer .footer_cont .sns_area .sns_title strong::before {
    width: 2.666667vw;
    height: 4.8vw;
}

footer .footer_cont .sns_area .sns_title strong::before {
    left: -4.8vw;
}

footer .footer_cont .sns_area .sns_title strong::after {
    right: -4.8vw;
}

footer .footer_cont .sns_area .sns_ul{

}

footer .footer_cont .sns_area .sns_ul li{
	width: 10.666667vw;
	margin: 0 1.333333vw;
}

footer .footer_cont .footer_note{
	font-size: 2.4vw;
	margin-bottom: 8.533333vw;
}

footer .footer_cont .footer_logo{

}

footer .footer_cont .footer_logo li{
	height: 11.466667vw;
	margin: 0 3.2vw;
}

footer .privacy_link{
	margin-bottom: 10.666667vw;
}

footer .privacy_link a{
	font-size: 3.2vw;
}



/********* content **********/

main{

}

#page_header{
	margin-bottom: 9.066667vw;
}

#page_header .text_wrapper{
	width: auto;
    left: 9.066667vw;
    right: 9.066667vw;
    transform: translate(0, -50%);
}

#page_header .text_wrapper .header_title {
	height: 11.466667vw;
	margin-bottom: 0;

}

#page_header .text_wrapper .header_title img.title_before {
	height: 11.466667vw;
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0);
}


#page_header .text_wrapper .main {
	font-size: 6.4vw;
	margin-left: 0;
	text-align: center;
}

.content_main_wrapper{
	width: auto;
	margin: 0 5.333333vw;
}


.simplebar-scrollbar::before {
	width: 1.6vw;

}

.simplebar-track {
	width: 1.6vw !important;
}



/* =====================================
   Preloader
===================================== */
#preloader {
	background-image: url('../images/common/loading_bg_sp.webp');
}

.webp #preloader {
	background-image: url('../images/common/loading_bg_sp.webp');
}

#lottie-loading {
	width: 60vw;
	height: 10.4vw;
}







}


