/* bootstrap 5 fix */
@media (prefers-reduced-motion: no-preference) {
	:root {scroll-behavior: auto;}
}
:root{
	--jp: "Noto Serif JP", serif;
}
*{
	position: relative;
	box-sizing: border-box;
}
body{
	margin: 0;
	font-family: "Noto Serif TC", serif;
	background-color: #000;
}
img{
	position: relative;
	display: block;
	max-width: 100%;
}
a{display: inline-block;}
a, a:hover, a:focus{text-decoration: none;}
a:focus{outline: none;}
section{
	position: relative;
	overflow: hidden;
}
.flex{
	display: flex;
	flex-wrap: wrap;
}
.flex-row{
	display: flex;
	flex-wrap: wrap;
	margin-left: -12px;
	margin-right: -12px;
}
.flex-1{flex: 1;}
.center{
	margin-left: auto;
	margin-right: auto;
}
.t-left{text-align: left !important;}
.t-center{text-align: center;}
.t-right{text-align: right;}
.v-center{
	top: 50%;
	transform: translateY(-50%);
}
.flex-center{justify-content: center;}
.flex-v-center{align-items: center;}
.show-xl, .show-lg, .show-md, .show-sm, .hide{
	display: none;
}
.container, .container-fluid, .container-xxl{
	padding-left: 15px;
	padding-right: 15px;
}
.row-p15{
	margin-left: -15px;
	margin-right: -15px;
}
.row-p15 > *{
	padding-left: 15px;
	padding-right: 15px;
}
.p15{
	padding-left: 15px;
	padding-right: 15px;
}
.fh{height: 100%;}
.full-img{
	max-width: none;
	width: 100%;
}
.img-cover{
	max-width: none;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.abs-cover{
	position: absolute;
	top: 0;
	left: 0;
	max-width: none;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.jp{
	font-family: "Noto Serif JP", serif;
}

/* header */
header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
	z-index: 9999;
}
.header_bg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(#000000cc 40%, #00000000 100%);
	display: none;
}
.menu{
	height: 100%;
	padding-left: 200px;
	padding-right: 200px;
}
.menu_row{
	height: 100%;
	justify-content: center;
}
.menu_item{
	height: 100%;
	padding-top: 38px;
	padding-left: 25px;
	padding-right: 25px;
}
.menu_btn{
	display: block;
	height: 100%;
	font-size: 18px;
	color: #fff;
	cursor: pointer;
}
.menu_btn:hover{
	color: #D4C79A;
}
.menu_item.active .menu_btn::after{
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #D4C79A;
}
.mobile_btn{
	position: absolute;
	top: 30px;
	right: 30px;
	width: 41px;
	height: 41px;
	padding: 5px;
	cursor: pointer;
	overflow: hidden;
}
.header_logo{
	position: absolute;
	top: 17px;
	left: 25px;
	width: 159px;
	cursor: pointer;
}
.main_menu{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	display: none;
}
.main_menu_list{
	padding-top: 200px;
	padding-left: 300px;
}
.mmenu_item{
	margin-bottom: 30px;
}
.mmenu_btn{
	width: 350px;
	cursor: pointer;
}
.mmenu_btn_title{
	font-size: 26px;
	color: #fff;
	margin-bottom: 5px;
}
.mmenu_btn_en{
	color: #D4C79A;
}
.mmenu_btn_arrow{
	position: absolute;
	top: 15px;
	right: 0;
	width: 15px;
	display: none;
}
.mmenu_btn:hover .mmenu_btn_arrow{
	display: block;
}
.main_menu_logo{
	position: absolute;
	top: 17px;
	left: 25px;
	width: 159px;
	cursor: pointer;
}
.main_menu_social{
	position: absolute;
	top: 50px;
	right: 30px;
}
.mmenus_btn{
	display: block;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: #A79177;
	padding-top: 8px;
	margin-left: 10px;
	margin-right: 10px;
}
.mmenus_btn:hover{
	background-color: #8F7524;
}
.mmenus_btn img{
	width: 20px;
	margin-left: auto;
	margin-right: auto;
}
.main_menu_close{
	position: absolute;
	top: calc(50% - 45px);
	right: 40px;
	width: 60px;
	height: 90px;
	overflow: hidden;
	cursor: pointer;
}
.main_menu_close:hover img{
	top: -90px;
}

/* page1 */
.full_page{
	height: 100vh;
	overflow: hidden;
}
.sec_page{
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	z-index: 1;
}
.sec_page.active{
	top: 0;
}
.page_enter{
	animation-name: ani_enter;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
}
@keyframes ani_enter{
	from{top: 100%;}
	to{top: 0;}
}
.page_leave{
	animation-name: ani_leave;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
}
@keyframes ani_leave{
	from{top: 0;}
	to{top: 100%;}
}
.page1{
	padding-top: 200px;
}
.bg_video{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.bg_mask{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: 0.5;
}
.main_con{
	max-width: 1260px;
	padding-left: 15px;
	padding-right: 15px;
	margin-left: auto;
	margin-right: auto;
}
.p1_left{
	width: 55%;
	padding-top: 200px;
	z-index: 2;
}
.p1_right{
	width: 45%;
	padding-left: 30px;
}
.p1_title{
	font-size: 44px;
	color: #fff;
	margin-bottom: 10px;
}
.p1_title2{
	font-size: 44px;
	color: #fff;
	margin-bottom: 30px;
}
.p1_text{
	font-size: 28px;
	color: #D4C79A;
}
.p1_light{
	position: absolute;
	top: -350px;
	left: -600px;
	max-width: none;
}
.p1_liquor{
	width: 231px;
}
.p1_liquor_reflection{
	position: absolute;
	top: 570px;
	left: 0;
	transform: scaleY(-1);
	opacity: 0.2;
}
.p1_rbox{
	position: absolute;
	display: block;
	bottom: 250px;
	right: 0;
	width: 361px;
	color: #000;
	padding: 12px 15px;
	background-image: url(../img/p1/p1_rbox_bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
}
.p1_rbox_title{
	font-size: 22px;
	margin-bottom: 10px;
}
.p1_rbox_text{
	font-size: 22px;
	color: #fff;
	font-weight: bold;
}
.info_scroll{
	position: absolute;
	bottom: 30px;
	left: calc(50% - 65px);
	width: 130px;
	font-size: 20px;
	color: #fff;
	text-align: center;
}
.info_scroll img{
	width: 40px;
	margin-top: 15px;
	margin-left: auto;
	margin-right: auto;
	animation-name: ani_scroll_icon;
	animation-duration: 1.5s;
	animation-iteration-count: infinite;
}
@keyframes ani_scroll_icon{
	0% {transform: translateY(0);}
	20% {transform: translateY(0);}
	60% {transform: translateY(10px);}
	100% {transform: translateY(0);}
}

/* page2 */
.page2{
	padding-top: 180px;
}
.p2_left{
	width: 50%;
}
.p2_right{
	width: 50%;
	padding-left: 180px;
	padding-right: 15px;
}
.p2_row1{
	margin-bottom: 20px;
}
.p2_text{
	font-size: 28px;
	color: #fff;
}
.p2_box_row{
	display: flex;
}
.p2_item_01{
	width: 16%;
	padding-top: 50px;
	padding-right: 15px;
}
.p2_box1{
	text-align: right;
	padding: 30px;
	padding-top: 200px;
	background-color: #7D6C4D99;
}
.p2b_text{
	font-size: 36px;
	color: #fff;
	line-height: 1.3em;
}
.p2_item_02{
	width: 17%;
	padding-top: 200px;
	padding-left: 15px;
	padding-right: 15px;
}
.p2_img_01{
	margin-left: auto;
	margin-right: auto;
}
.p2_item_03{
	width: 17%;
	padding-left: 15px;
	padding-right: 15px;
}
.p2_box3{
	height: 400px;
	padding: 30px;
	background-color: #686D5599;
}
.p2_item_04{
	width: 17%;
	padding-top: 200px;
	padding-left: 15px;
	padding-right: 15px;
}
.p2_box4{
	text-align: right;
	padding: 30px;
	padding-top: 140px;
	background-color: #68828C99;
}
.p2_item_05{
	width: 28%;
	padding-top: 40px;
	padding-left: 15px;
	padding-right: 15px;
}
.p2_img_02{
	margin-left: auto;
	margin-right: auto;
}
.p2_item_06{
	width: 5%;
	padding-top: 110px;
	padding-left: 15px;
}
.p2_box6{
	height: 400px;
	background-color: #47563299;
}
.p2_liquor{
	position: absolute;
	bottom: 20px;
	left: calc(50% - 115px);
	width: 231px;
}
.p2_bl_text{
	position: absolute;
	bottom: 25px;
	left: 30px;
	color: #D4C79A;
}

/* page3 */
.page3{
	padding-top: 220px;
}
.p3_bg_line{
	position: absolute;
	top: 0;
	left: 50px;
	max-width: none;
}
.p3_tr_box{
	position: absolute;
	top: 80px;
	left: 0;
	width: 645px;
}
.p3_trb_left{
	width: 38%;
}
.p3_trb_right{
	width: 62%;
	padding-top: 140px;
}
.p3_trb_text{
	color: #D4C79A;
	padding-left: 30px;
	margin-bottom: 25px;
}
.p3_img_s01{
	width: 100%;
	max-width: none;
}
.p3_img_02{
	width: 100%;
	max-width: none;
}
.page3_left{
	width: 50%;
	padding-top: 320px;
	padding-left: 245px;
	padding-right: 20px;
}
.page3_right{
	width: 50%;
}
.p3_text{
	font-size: 28px;
	color: #fff;
}
.p3_video_div{
	padding-bottom: 70%;
}
.p3_video{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.p3_liquor{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* page4 */
.page4{
	padding-top: 150px;
	background-image: url(../img/p4/p4_bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
}
.p4_bg_line{
	position: absolute;
	top: 0;
	right: 0;
	max-width: none;
	z-index: 1;
}
.p4_con{
	max-width: 1260px;
	margin-left: auto;
	margin-right: auto;
}
.p4_left{
	width: 50%;
	padding-top: 150px;
	padding-left: 15px;
	padding-right: 15px;
	z-index: 1;
}
.p4_right{
	width: 50%;
	padding-left: 15px;
	padding-right: 15px;
}
.p4_title{
	font-size: 28px;
	color: #fff;
	text-align: center;
}
.p4_title_en{
	color: #A79177;
	text-align: center;
	margin-bottom: 50px;
}
.p4_text{
	font-size: 28px;
	color: #fff;
	text-align: center;
	margin-bottom: 50px;
}
.register_btn{
	display: block;
	width: 200px;
	font-size: 18px;
	color: #000;
	letter-spacing: 3px;
	text-align: center;
	padding: 15px 0;
	border: none;
	background-color: #D4C79A;
	margin-left: auto;
	margin-right: auto;
}
.register_btn::before{
	position: absolute;
	content: "";
	top: 5px;
	left: 0;
	width: 100%;
	height: calc(100% - 10px);
	border-top: 1px solid #888888;
	border-bottom: 1px solid #888888;
}
.register_btn:hover{
	background-color: #b29e61;
}
.p4_img_bg{
	position: absolute;
	top: 80px;
	left: 0;
	width: 100%;
}
.p4_r_text{
	position: absolute;
	top: 460px;
	left: 0;
	color: #fff;
	z-index: 2;
}
.p4_liquor{
	margin-left: auto;
	margin-right: auto;
	animation-duration: 2s !important;
	z-index: 2;
}

/* page5 */
.page5{
	padding-top: 200px;
}
.p5_bg_black{
	position: absolute;
	top: 0;
	left: 0;
	max-width: none;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top left;
}
.p5_bg{
	position: absolute;
	top: 0;
	left: 0;
	max-width: none;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top left;
}
.p5_bg.anime-active{
	animation-name: ani_clipcircle, ani_zoomin;
	animation-duration: 3s, 6s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
}
.p5_light{
	position: absolute;
	top: 260px;
	left: calc(50% - 469px);
}
.p5_liquor{
	width: 231px;
	margin-left: auto;
	margin-right: auto;
}
.p5_text_jp{
	position: absolute;
	top: 510px;
	left: calc(50% - 320px);
	color: #fff;
}
.p5_text{
	position: absolute;
	top: 400px;
	left: calc(50% + 180px);
	font-size: 28px;
	color: #fff;
}
.p5_flower_01{
	position: absolute;
	top: -60px;
	left: 150px;
	width: 1000px;
	height: 400px;
}
.p5_flower{
	position: absolute;
	animation-duration: 5s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}
@keyframes ani_flower{
	from{transform: translate(0,0) rotate(0);}
	to{transform: translate(300px,300px) rotate(120deg);}
}
@keyframes ani_flower_fadeout{
	0% {opacity: 1;}
	70% {opacity: 1;}
	100% {opacity: 0;}
}
.p5_flower_01.anime-active .p5_flower{
	animation-name: ani_flower, ani_flower_fadeout;
}
.p5_flower.f1{
	top: 0;
	left: 500px;
}
.p5_flower.f2{
	top: 0;
	left: 700px;
	animation-delay: 2s;
}
.p5_flower.f3{
	top: 0;
	left: 100px;
}
.p5_flower.f4{
	top: 0;
	left: 0;
	animation-delay: 2s;
}
.p5_flower.f5{
	top: 0;
	left: 750px;
}
.p5_flower.f6{
	top: 0;
	left: 120px;
	animation-delay: 2.5s;
}
.p5_flower.f7{
	top: 0;
	left: 200px;
	animation-delay: 1.5s;
}
.p5_flower.f8{
	top: 0;
	left: 800px;
	animation-delay: 3s;
}
.p5_flower.f9{
	top: 0;
	left: 750px;
	animation-delay: 1s;
}
.p5_flower.f10{
	top: 0;
	left: 540px;
	animation-delay: 1.5s;
}
.p5_flower.f11{
	top: 0;
	left: 350px;
	animation-delay: 1s;
}
.p5_flower.f12{
	top: 0;
	left: 250px;
	animation-delay: 0s;
}
.p5_flower.f13{
	top: 0;
	left: 450px;
	animation-delay: 3s;
}
.p5_flower.f14{
	top: 0;
	left: 600px;
	animation-delay: 2.5s;
}
.p5_flower.f15{
	top: 0;
	left: 80px;
	animation-delay: 3s;
}
.p5_flower.f16{
	top: 0;
	left: 720px;
	animation-delay: 3.5s;
}
.p5_flower_02{
	position: absolute;
	bottom: 0;
	right: -60px;
	width: 600px;
	height: 500px;
}
@keyframes ani_flower2{
	from{transform: translate(0,0) rotate(0);}
	to{transform: translate(-450px,300px) rotate(-120deg);}
}
.p5_flower_02.anime-active .p5_flower{
	animation-name: ani_flower2, ani_flower_fadeout;
}
.p5_flower.fb1{
	top: 0;
	right: 0;
}
.p5_flower.fb2{
	top: 50px;
	right: 0;
	animation-delay: 2s;
}
.p5_flower.fb3{
	top: 100px;
	right: 0;
	animation-delay: 3.5s;
}
.p5_flower.fb4{
	top: 150px;
	right: 0;
	animation-delay: 1s;
}
.p5_flower.fb5{
	top: 200px;
	right: 0;
	animation-delay: 0s;
}
.p5_flower.fb6{
	top: 250px;
	right: 0;
	animation-delay: 3s;
}
.p5_flower.fb7{
	top: 300px;
	right: 0;
}
.p5_flower.fb8{
	top: 350px;
	right: 0;
	animation-delay: 3s;
}
.p5_flower.fb9{
	top: 400px;
	right: 0;
	animation-delay: 0.5s;
}
.p5_flower.fb10{
	top: 120px;
	right: 0;
	animation-delay: 1.5s;
}
.p5_flower.fb11{
	top: 220px;
	right: 0;
	animation-delay: 1s;
}
.p5_flower.fb12{
	top: 320px;
	right: 0;
	animation-delay: 2s;
}

/* page6 */
.contact{
	padding-top: 130px;
	padding-bottom: 20px;
	background-image: url(../img/p6/p6_bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
}
.contact_title{
	font-size: 28px;
	color: #fff;
	text-align: center;
}
.contact_title_en{
	color: #D4C79A;
	text-align: center;
	margin-bottom: 30px;
}
.contact_box{
	max-width: 1000px;
	background-color: #D4C79A;
	padding: 10px;
	top: 50%;
	transform: translateY(-50%);
	margin-left: auto;
	margin-right: auto;
}
.contact_con{
	padding: 60px 15px 30px 15px;
	border: 20px solid #b29e61;
}
.contact_tr_text{
	position: absolute;
	top: 15px;
	right: 15px;
	color: #8F7524;
}
.contact_form{
	max-width: 520px;
	margin-left: auto;
	margin-right: auto;
}
.form_row{
	margin-bottom: 15px;
}
.form_title{
	width: 80px;
	text-align: right;
	padding-top: 10px;
	padding-right: 30px;
}
.form_input{
	flex: 1;
}
.main_input{
	width: 100%;
	border: none;
	border-bottom: 1px solid #8F7524;
	background: none;
	padding: 10px 15px;
}
.main_input:focus{
	outline: none;
}
.main_textarea{
	width: 100%;
	min-height: 80px;
	border: none;
	border-bottom: 1px solid #8F7524;
	background: none;
	padding: 10px 15px;
}
.main_textarea:focus{
	outline: none;
}
.btn_submit_div{
	padding-top: 30px;
}
.btn_submit{
	display: block;
	width: 200px;
	font-size: 18px;
	color: #fff;
	letter-spacing: 3px;
	text-align: center;
	padding: 15px 0;
	background-color: #000;
	border: none;
	margin-left: auto;
	margin-right: auto;
}
.btn_submit::before{
	position: absolute;
	content: "";
	top: 5px;
	left: 0;
	width: 100%;
	height: calc(100% - 10px);
	border-top: 1px solid #5e5e5e;
	border-bottom: 1px solid #5e5e5e;
}
.btn_submit:hover{
	background-color: #8F7524;
}
.contact_logo{
	width: 159px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
}
.contact_social{
	justify-content: center;
	margin-bottom: 30px;
}
.copyright{
	font-size: 12px;
	color: #A79177;
	text-align: center;
}
.contact_video{
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 50px;
}
.video_frame{
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
}
.video_frame iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* popup */
.popup{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
	display: none;
}
.popup_bg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: 0.85;
}
.popup_close{
	position: absolute;
	top: 15px;
	right: 15px;
	width: 20px;
	cursor: pointer;
}
.popup_contact{
	padding-left: 15px;
	padding-right: 15px;
}

/* register */
.reg_bg{
	background-image: url(../img/p4/p4_bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}
.mobile_frame{
	max-width: 576px;
	min-height: 100vh;
	margin-left: auto;
	margin-right: auto;
}
.mobile_frame.download{
	background-image: url(../img/p4/p4_bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;	
}
.light_top{
	position: absolute;
	top: 0;
	left: 0;
}
.light_bottom{
	position: absolute;
	bottom: 0;
	left: 0;
}
.reg_kv{
	padding-top: 30px;
}
.reg_index_sec{
	padding-top: 30px;
	padding-bottom: 30px;
}
.reg_index_text{
	font-size: 26px;
	color: #fff;
	text-align: center;
	margin-bottom: 50px;
}
.reg_form_kv{
	padding-top: 20px;
}
.reg_form_img_bg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 310px;
	object-fit: cover;
}
.reg_form_bg_line{
	position: absolute;
	top: -300px;
	left: -200px;
	max-width: none;
}
.reg_form_liquor{
	width: 140px;
	margin-left: auto;
	margin-right: auto;
}
.reg_form_kv_text{
	font-size: 22px;
	color: #fff;
	text-align: center;
	margin-bottom: 30px;
}
.reg_form_sec{
	padding-bottom: 120px;
}
.reg_form_row{
	margin-bottom: 30px;
}
.reg_form_title{
	color: #D4C79A;
	margin-bottom: 5px;
}
.reg_input{
	color: #fff;
	border-color: #D4C79A;
}
.serial_item{
	flex: 1;
}
.serial_item input{
	text-align: center;
}
.serial_sp{
	width: 20px;
	color: #fff;
	text-align: center;
	padding-top: 5px;
}
.serial_text{
	color: #fff;
	text-align: center;
	padding: 7px 0;
}
.reg_textarea{
	color: #fff;
	border-color: #D4C79A;
}
.reg_select{
	width: 100%;
	color: #fff;
	padding: 10px 15px;
	border: none;
	border-bottom: 1px solid #D4C79A;
	background: none;
}
.reg_select:focus{
	outline: none;
}
.reg_select option{
	color: #000;
}
.reg_form_exp{
	font-size: 13px;
	color: #fff;
	margin-bottom: 5px;
}
.reg_cop_kv{
	padding-top: 20px;
}
.reg_cop_kv_con{
	max-width: 360px;
	margin-left: auto;
	margin-right: auto;
}
.reg_cop_liquor{
	width: 140px;
}
.reg_cop_text_div{
	position: absolute;
	top: 155px;
	right: 15px;
}
.reg_cop_kv_title{
	font-size: 28px;
	color: #fff;
}
.reg_cop_kv_text{
	font-size: 12px;
	color: #fff;
}
.reg_cop_sec{
	padding-top: 10px;
	padding-bottom: 120px;
}
.reg_cop_row{
	margin-bottom: 25px;
}
.reg_cop_title{
	color: #D4C79A;
	text-align: center;
	margin-bottom: 5px;
}
.reg_cop_text{
	color: #fff;
	text-align: center;
}

#submitMessage{
	text-align: center;
	margin-bottom: 10px;
}
.text-danger{
	text-align: center;
}

/* setting */
.white{color: #fff;}
.red{color: #f00;}
.yellow{color: #D4C79A;}
.bg_black{background-color: #000;}
.mb-10{margin-bottom: 10px;}
.mb-20{margin-bottom: 20px;}
.mb-30{margin-bottom: 30px;}
.mb-40{margin-bottom: 40px;}
.mb-50{margin-bottom: 50px;}
.mb-60{margin-bottom: 60px;}

@media (max-width: 1600px){
	.main_menu_list{
		padding-top: 130px;
	}
	/* page1 */
	.page1{
		padding-top: 120px;
	}
	.p1_title{
		font-size: 40px;
	}
	.p1_title2{
		font-size: 40px;
	}
	.p1_rbox{
		width: 300px;
	}
	.p1_rbox_title{
		font-size: 20px;
	}
	.p1_rbox_text{
		font-size: 20px;
	}
	/* page2 */
	.page2{
		padding-top: 120px;
	}
	.p2_box1{
		padding: 20px;
		padding-top: 150px;
		padding-right: 10px;
	}
	.p2_text{
		font-size: 24px;
	}
	.p2b_text{
		font-size: 26px;
	}
	.p2_item_02{
		padding-top: 150px;
		padding-left: 10px;
		padding-right: 10px;
	}
	.p2_item_03{
		padding-left: 10px;
		padding-right: 10px;
	}
	.p2_box3{
		height: 300px;
		padding: 20px;
	}
	.p2_item_04{
		width: 20%;
		padding-top: 150px;
		padding-left: 10px;
		padding-right: 10px;
	}
	.p2_box4{
		padding: 20px;
		padding-top: 90px;
	}
	.p2_item_05{
		width: 25%;
		padding-left: 10px;
		padding-right: 10px;
	}
	.p2_item_06{
		padding-left: 10px;
	}
	/* page3 */
	.page3{
		padding-top: 180px;
	}
	.p3_bg_line{
		width: 800px;
	}
	.p3_tr_box{
		width: 500px;
	}
	.p3_trb_right{
		padding-top: 100px;
	}
	.page3_left{
		padding-top: 260px;
		padding-left: 190px;
	}
	.p3_text{
		font-size: 24px;
	}
	/* page4 */
	.page4{
		padding-top: 120px;
	}
	.p4_bg_line{
		width: 800px;
	}
	.p4_left{
		padding-top: 120px;
	}
	.p4_text{
		font-size: 24px;
	}
	/* page5 */
	.page5{
		padding-top: 120px;
	}
	.p5_text{
		font-size: 24px;
	}
	.p5_flower_01{
		left: 0;
	}
}


/* xl */
@media (max-width: 1199px){
	.hide-xl{display: none;}
	.show-xl{display: block;}
	
	header{
		height: 60px;
	}
	.header_bg{
		display: block;
	}
	.menu_row{
		display: none;
	}
	.header_logo{
		width: 100px;
		top: 12px;
		left: 20px;
	}
	.mobile_btn{
		top: 10px;
		right: 15px;
	}
	.main_menu_logo{
		width: 100px;
		top: 12px;
		left: 20px;
	}
	.main_menu_list{
		padding-top: 100px;
		padding-left: 30px;
	}
	.mmenu_item{
		margin-bottom: 20px;
	}
	.mmenu_btn{
		width: 300px;
	}
	.mmenu_btn_title{
		font-size: 20px;
		margin-bottom: 0;
	}
	.mmenu_btn_en{
		font-size: 15px;
	}
	.main_menu_social{
		position: relative;
		top: 0;
		right: 0;
		padding-top: 20px;
		padding-left: 20px;
	}
	.main_menu_close{
		top: 10px;
		right: 10px;
		width: 50px;
		height: 75px;
	}
	.main_menu_close:hover img{
		top: -75px;
	}
	/* page1 */
	.full_page{
		height: auto;
	}
	.sec_page{
		position: relative;
		top: 0;
		height: auto;
	}
	.page1{
		padding-top: 80px;
	}
	.p1_left{
		width: 100%;
		padding-top: 0;
	}
	.p1_right{
		width: 100%;
		padding-left: 0;
	}
	.p1_title{
		font-size: 32px;
		text-align: center;
		line-height: 1.3em;
	}
	.p1_title2{
		font-size: 16px;
		text-align: center;
		margin-bottom: 10px;
	}
	.p1_text{
		display: none;
	}
	.p1_light{
		width: 1000px;
		height: 1000px;
		top: -200px;
		left: calc(50% - 500px);
	}
	.p1_liquor{
		width: 160px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 20px;
	}
	.p1_liquor_reflection{
		top: 400px;
	}
	.p1_rbox{
		position: relative;
		bottom: 0;
		width: 100%;
	}
	.p1_rbox_title{
		text-align: center;
	}
	.p1_rbox_text{
		text-align: center;
	}
	.info_scroll{
		display: none;
	}
	/* page2 */
	.page2{
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.p2_left{
		width: 0;
	}
	.p2_right{
		width: 100%;
		padding-left: 15px;
	}
	.p2_text{
		font-size: 20px;
		text-align: center;
	}
	.p2_box_row{
		display: block;
		max-width: 375px;
		height: 920px;
		margin-left: auto;
		margin-right: auto;
	}
	.p2_item_01{
		position: absolute;
		top: 180px;
		right: 0;
		width: 240px;
		padding: 0;
	}
	.p2_box1{
		padding: 15px;
		padding-top: 60px;
	}
	.p2_item_02{
		position: absolute;
		top: 30px;
		left: 0;
		width: 220px;
		padding: 0;
	}
	.p2_item_03{
		position: absolute;
		top: 750px;
		left: calc(50% - 110px);
		width: 220px;
		padding: 0;
	}
	.p2_box3{
		height: 170px;
		text-align: center;
		padding: 15px;
	}
	.p2_item_04{
		position: absolute;
		top: 520px;
		left: 0;
		width: 220px;
		padding: 0;
	}
	.p2_box4{
		text-align: left;
		padding: 15px;
		padding-top: 90px;
	}
	.p2_item_05{
		position: absolute;
		top: 380px;
		right: 0;
		width: 220px;
		padding: 0;
	}
	.p2_img_02{
		width: 220px;
		height: 220px;
		object-fit: cover;
	}
	.p2_item_06{
		display: none;
	}
	.p2_liquor{
		position: relative;
		bottom: 0;
		left: 0;
		width: 180px;
		margin-left: auto;
		margin-right: auto;
		transform: translateY(-70px);
	}
	.p2_bl_text{
		left: 0;
		font-size: 14px;
		padding-left: 15px;
		padding-right: 15px;
	}
	/* page3 */
	.page3{
		padding-top: 0;
		padding-bottom: 40px;
	}
	.p3_bg_line{
		width: 1034px;
		left: -300px;
	}
	.p3_tr_box{
		position: relative;
		max-width: 545px;
		width: 100%;
		top: 0;
	}
	.p3_trb_left{
		width: 45%;
	}
	.p3_trb_right{
		width: 55%;
	}
	.p3_trb_text{
		font-size: 14px;
		padding-left: 15px;
		margin-bottom: 15px;
	}
	.page3_left{
		width: 100%;
		padding-top: 50px;
		padding-left: 15px;
		padding-right: 15px;
		margin-bottom: 60px;
	}
	.page3_right{
		width: 100%;
	}
	.p3_text{
		font-size: 20px;
	}
	.page3_left img{
		width: 100%;
		max-width: none;
	}
	/* page4 */
	.page4{
		padding-top: 60px;
	}
	.p4_bg_line{
		width: 1128px;
		right: -500px;
	}
	.p4_left{
		width: 100%;
		padding-top: 0;
		padding-bottom: 40px;
	}
	.p4_right{
		width: 100%;
	}
	.p4_title{
		font-size: 26px;
	}
	.p4_title_en{
		font-size: 14px;
	}
	.p4_text{
		font-size: 20px;
	}
	.p4_img_bg{
		height: 300px;
	}
	.p4_img_bg img{
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.p4_liquor{
		width: 180px;
	}
	.p4_r_text{
		top: 180px;
		left: auto;
		right: 15px;
		font-size: 14px;
	}
	/* page5 */
	.page5{
		padding-top: 60px;
		padding-bottom: 60px;
	}
	.p5_light{
		top: 110px;
		left: auto;
		right: -460px;
		max-width: none;
	}
	.p5_liquor{
		width: 190px;
		margin-right: 0;
		left: 30px;
	}
	.p5_text{
		top: 150px;
		left: 0;
		width: 100%;
		font-size: 20px;
		padding-left: 15px;
		padding-right: 15px;
	}
	.p5_text_jp{
		top: auto;
		bottom: 30px;
		left: 0;
		width: 100%;
		font-size: 14px;
		text-align: center;
		padding-left: 15px;
		padding-right: 15px;
	}
	.p5_flower_01{
		left: -300px;
	}
	.p5_flower_02{
		bottom: -200px;
	}
	/* page6 */
	.contact{
		padding-top: 30px;
		padding-bottom: 30px;
	}
	.contact_box{
		top: 0;
		transform: translateY(0);
		max-height: calc(100% - 40px);
		padding: 5px;
		overflow-y: auto;
	}
	.contact_con{
		border-width: 10px;
	}
	.form_title{
		width: 100%;
		text-align: left;
	}
	.form_input{
		flex: 0 0 auto;
		width: 100%;
	}
	.main_input{
		padding: 5px 0;
	}
	.main_textarea{
		min-height: 60px;
		padding: 5px 0;
	}
	.copyright{
		font-size: 11px;
	}
	.popup_contact{
		padding-top: 20px;
	}
	
	.reg_textarea{
		min-height: 80px;
	}
}

/* md */
@media (max-width: 767px){
	.p5_bg_black{
		left: -150px;
		width: auto;
		height: 100%;
		object-fit: fill;
	}
	.p5_bg{
		left: -150px;
		width: auto;
		height: 100%;
		object-fit: fill;
	}
}