@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');

:root{
	/* --base_font_family: "dnp-shuei-gothic-gin-std", 'Noto Sans CJK JP' , 'Noto Sans JP'  ,sans-serif; */
	--base_font_family: system-ui , -apple-system , BlinkMacSystemFont , "Helvetica Neue" , "Segoe UI" , 'Noto Sans CJK JP' , 'Noto Sans JP'  , sans-serif;
    --base_font_color: #395563;
	--font-serif:"source-han-serif-jp-variable", "Noto Serif JP" , sans-serif;
	--font_noto_sans: 'Noto Sans CJK JP' , 'Noto Sans JP'  ,sans-serif;
	--base_blue: #003C68;
	--c_duration: 0.4s;
	--c_hover_opa: 0.6;
}

*{
	margin:0;
	padding:0;
	list-style: none;
	box-sizing: border-box;
	text-decoration: none;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

*::before,
*::after{
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	box-sizing: border-box;
}

html {
	-ms-text-size-adjust: none;
	-webkit-text-size-adjust: none;
	background-color: var(--base_blue);
}

body{
	color: var(--base_font_color);
	font-size: 16px;
	/* font-weight: 300; */
	font-family:var(--base_font_family);
	
	-webkit-font-smoothing: antialiased;
	-ms-text-size-adjust: none;
	-webkit-text-size-adjust: none;
}

img{
	display: block;
	object-position: center;
	width: 100%;
}

#body_wrap{
	overflow: hidden;
}

.grecaptcha-badge { visibility: hidden; }

a{
	color: inherit;
}

.fax a{
	pointer-events: none;
}

@media (any-hover:hover){
	a[href^="tel:"] {
		pointer-events: none;
	}
}

/*
------------------------------------
アニメーション関係
------------------------------------
*/

.c_hover_opa{
	transition: 0.4s;
}


@media (any-hover:hover){
	.c_hover_opa:hover{
		opacity: 0.7;
	}
	
}

/*
------------------------------------
共通パーツ
------------------------------------
*/

.container{
	max-width: 527px;
	margin-inline: auto;
}


/*
------------------------------------
LP本体
------------------------------------
*/

.section_wrap{
	max-width: 870px;
	margin-inline: auto;
	min-height: 100vh;
	background-color: #F4F4F4;
	padding-top: 60px;
	padding-bottom: 120px;
	padding-inline: 30px;
	overflow: clip;
}

.lp_fv_section{

}

.lp_fv_section .fv_thumb_area{
	display: flex;
	justify-content: center;
}

.lp_fv_section .fv_thumb{
	flex-shrink: 0;
	width:calc(100% + 60px);
	aspect-ratio: 1 / calc(715 / 572);
	position: relative;
}

.lp_fv_section .fv_thumb img{
	width:100%;
	height:100%;
	object-fit: cover;
}

.lp_fv_section .page_title{
	display: flex;
	align-items: center;
	gap:30px;
	font-family: var(--font-serif);
	font-weight: 300;
	font-weight: 250;
	font-size: 29px;
	line-height: 1;
	color: var(--base_blue);
	position: absolute;
	white-space: nowrap;
	top:36px;
	left:24px;
	writing-mode: vertical-lr;
	z-index: 2;
}

.lp_fv_section .page_title .border{
	width:1px;
	height:122px;
	background-color: var(--base_blue);
	margin-right: 5px;
}

.lp_fv_section .fv_text{
	margin-top: 48px;
	font-size: 16px;
	line-height: 2.4;
	text-align: center;
	color: var(--base_blue);

}

.lp_product_section{
	padding-top: 160px;
}

.lp_product_section + .lp_product_section{
	padding-top: 210px;
}

.lp_product_section .product_num{
	font-size: 23px;
	line-height: 1.5;
	text-align: center;
	color:var(--base_blue);
}

.lp_product_section .product_pic01_frame{
	display: flex;
	justify-content: center;
	margin-top: 8px;
}

.lp_product_section .product_pic01{
	flex-shrink: 0;
	width:calc(100% + 60px);
}

.lp_product_section .product_head{
	margin-top: 56px;
	font-size: 25px;
	line-height: 1.2;
	text-align: center;
	font-weight: 400;
}

.lp_product_section .product_text{
	margin-top: 20px;
	line-height: 1.75;
}

.lp_product_section .product_slide_area{
	margin-top: 64px;
}

.lp_product_section .swiper-container{
	overflow: clip;
}

.lp_product_section .product_slide{
	width:220px;
	padding-right: 24px;
}

.lp_product_section .product_card{
	display: block;
	transition-duration: var(--c_duration);
}
@media(any-hover:hover){
	.lp_product_section .product_card:hover{
		opacity: var(--c_hover_opa);
	}
}

.lp_product_section .product_thumb{
	aspect-ratio: 1 / 1;
}
.lp_product_section .product_thumb img{
	width:100%;
	height:100%;
	object-fit: cover;
}

.lp_product_section .product_info_area{
	margin-top: 22px;
	border-top:1px solid var(--base_font_color);
	border-top:0.25px solid var(--base_font_color);
	padding-top: 10px;
}

.lp_product_section .product_price{
	font-size: 12px;
	line-height: 1.2;
}
.lp_product_section .product_price span{
	font-size: 16px;
	padding-right: 4px;
}

.lp_product_section .product_bottom_flex{
	margin-top: 48px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap:20px;
}

.lp_product_section .product_nav_flex{
	flex-shrink: 0;
	display: flex;
	align-items: flex-start;
	gap:24px;
}

.lp_product_section .product_nav{
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
}

.lp_product_section .product_nav::after{
	content:'';
	width:56px;
	aspect-ratio: 1 / calc(12 / 56);
	background-size: contain;
}

.lp_product_section .product_nav.prev::after{
	background-image: url('../img/icon_prev.svg');
}
.lp_product_section .product_nav.next::after{
	background-image: url('../img/icon_next.svg');
}

.lp_product_section .product_nation_list{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap:10px;
}

.lp_product_section .product_nation_list .swiper-pagination-bullet{
	cursor: pointer;
}

.lp_product_section .product_nation_list .swiper-pagination-bullet::after{
	display: block;
	content:'';
	width:26px;
	height:2px;
	background-color: #C9C9C9;
	transition-duration: 0.4s;
}

.lp_product_section .product_nation_list .swiper-pagination-bullet-active::after{
	width: 50px;
	background-color: #395563;
}

.lp_product_section .product_pic02_frame{
	margin-top: 112px;
}

.lp_product_section .store_link{
	margin-inline: auto;
	margin-top: 132px;
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 318px;
	min-height: 56px;
	padding:8px 24px;
	border:1px solid #003C68;
	background-color: #fff;
	font-family: var(--font-serif);
	font-weight: 300;
	font-weight: 250;
	font-size: 22px;
	line-height: 1;
	color: #395563;
}