@charset "UTF-8";

/* --------------------------------------------------------------------
　共通設定
-------------------------------------------------------------------- */
@media screen and (min-width:769px){
}
@media screen and (max-width:768px){
}

/* --------------------------------------------------------------------
　一覧ページ設定
-------------------------------------------------------------------- */
/*-- ページ見出し --*/
#page-main-wrapper > h1#frame-type-list-title{
font-weight:600;
line-height:1.5;
}
#page-main-wrapper > h1#frame-type-list-title > span{
display:block;
line-height:1;
width:max-content;
}

/*-- フィルターメニュー --*/
#page-main-wrapper > #frametype-article-filter{
background:#efefef;
border-top:1px solid #e4e4e4;
border-bottom:1px solid #e4e4e4;
}
#page-main-wrapper > #frametype-article-filter > ul{
display:flex;
align-items:center;
}
#page-main-wrapper > #frametype-article-filter > ul > li{
height:5rem;
position:relative;
display:flex;
align-items:center;
cursor:pointer;
font-weight:600;
opacity:.5;
transition:all 1.2s ease;
}
#page-main-wrapper > #frametype-article-filter > ul > li:hover,
#page-main-wrapper > #frametype-article-filter > ul > li.is-active{
opacity:1;
}
#page-main-wrapper > #frametype-article-filter > ul > li.is-active:after{
content:"";
width:100%;
height:.25rem;
background:#212121;
position:absolute;
left:0;
bottom:0;
}

/*-- 記事エリア --*/
#page-main-wrapper > #frametype-list-wrap > ul{
display:grid;
}
.is-animate{
opacity:1;
animation:.6s zoom-in;
}
@keyframes zoom-in{
	0% {
		opacity:.3;
		transform:scale(.8);
	}
	100% {
		opacity:1;
		transform:none;
	}
}
#page-main-wrapper > #frametype-list-wrap > ul > li > a > .img{
aspect-ratio:60 / 37;
overflow:hidden;
display:grid;
grid-template-columns:repeat(2,1fr);
gap:0;
}
#page-main-wrapper > #frametype-list-wrap > ul > li > a > .img > figure{
width:100%;
height:auto;
}
#page-main-wrapper > #frametype-list-wrap > ul > li > a > .img > figure > img{
object-fit:cover;
width:100%;
height:100%;
}
#page-main-wrapper > #frametype-list-wrap > ul > li > a > .tag{
display:flex;
align-items:center;
gap:0 .5rem;
font-size:.95rem;
}
#page-main-wrapper > #frametype-list-wrap > ul > li > a > .tag > span{
background:rgba(0,0,0,.15);
color:#fff;
padding:1rem 1.5rem;
line-height:0;
}
#page-main-wrapper > #frametype-list-wrap > ul > li > a > h2{
line-height:1.5;
font-weight:600;
overflow:hidden;
display:-webkit-box;
-webkit-box-orient:vertical;
-webkit-line-clamp:2;
}
#page-main-wrapper > #frametype-list-wrap > ul > li > a > .text{
line-height:1.5;
overflow:hidden;
display:-webkit-box;
-webkit-box-orient:vertical;
-webkit-line-clamp:2;
}
#page-main-wrapper > #frametype-list-wrap > ul > li > a > .data{
line-height:1;
color:#999;
}

@media screen and (min-width:769px){
	/*-- ページ見出し --*/
	#page-main-wrapper > h1#frame-type-list-title{
	font-size:2.6rem;
	padding:6rem 2rem 4rem 2rem;
	width:1200px;
	margin:0 auto;
	text-align:center;
	}
	#page-main-wrapper > h1#frame-type-list-title > span{
	padding:0;
	margin:0 auto 1rem auto;
	font-size:1.6rem;
	font-weight:300;
	}

	/*-- フィルターメニュー --*/
	#page-main-wrapper > #frametype-article-filter > ul{
	width:1200px;
	padding:0 2rem;
	margin:0 auto;
	gap:0 2rem;
	justify-content:center;
	}
	#page-main-wrapper > #frametype-article-filter > ul > li{
	padding:0 1rem;
	font-size:1.5rem;
	}

	/*-- 記事エリア --*/
	#page-main-wrapper > #frametype-list-wrap{
	margin:0 auto;
	padding:4rem 0 15rem 0;
	}
	#page-main-wrapper > #frametype-list-wrap > ul{
	width:1200px;
	margin:0 auto;
	padding:0 2rem;
	grid-template-columns:repeat(3, 1fr);
	gap:5rem 3rem;
	}
	#page-main-wrapper > #frametype-list-wrap > ul > li > a > .img{
	border-radius:1.5rem;
	margin-bottom:2rem;
	}
	#page-main-wrapper > #frametype-list-wrap > ul > li > a > .tag{
	margin-bottom:1.8rem;
	}
	#page-main-wrapper > #frametype-list-wrap > ul > li > a > h2{
	font-size:1.45rem;
	/*--margin-bottom:1.2rem;--*/
	margin-bottom:2rem;
	}
	#page-main-wrapper > #frametype-list-wrap > ul > li > a > .text{
	font-size:1.25rem;
	margin-bottom:2rem;
	display:none;
	}
	#page-main-wrapper > #frametype-list-wrap > ul > li > a > .data{
	font-size:1.28rem;
	}
}
@media screen and (max-width:768px){
	/*-- ページ見出し --*/
	#page-main-wrapper > h1#frame-type-list-title{
	width:80vw;
	font-size:5.5vw;
	line-height:1;
	margin:5rem auto;
	text-align:center;
	}
	#page-main-wrapper > h1#frame-type-list-title > span{
	font-size:3.5vw;
	margin:0 auto 2rem auto;
	padding:0 0 1rem 0;
	border-bottom:1px solid #333;
	}

	/*-- フィルターメニュー --*/
	#page-main-wrapper > #frametype-article-filter{
	overflow-x:auto;
	}
	#page-main-wrapper > #frametype-article-filter::-webkit-scrollbar-thumb,
	#page-main-wrapper > #frametype-article-filter::-webkit-scrollbar-track{
	background:#efefef;
	opacity:0;
	}
	#page-main-wrapper > #frametype-article-filter > ul{
	padding:0 2rem;
	width:max-content;
	gap:0;
	}
	#page-main-wrapper > #frametype-article-filter > ul > li{
	padding:0 .8rem;
	font-size:1.3rem;
	}

	/*-- 記事エリア --*/
	#page-main-wrapper > #frametype-list-wrap{
	margin:0 auto;
	padding:3rem 0 6rem 0;
	}
	#page-main-wrapper > #frametype-list-wrap > ul{
	grid-template-columns:1fr;
	gap:4rem;
	padding:0 2rem;
	}
	#page-main-wrapper > #frametype-list-wrap > ul > li > a > .img{
	border-radius:1rem;
	margin-bottom:2rem;
	}
	#page-main-wrapper > #frametype-list-wrap > ul > li > a > .tag{
	margin-bottom:1.8rem;
	}
	#page-main-wrapper > #frametype-list-wrap > ul > li > a > h2{
	margin-bottom:1.2rem;
	}
	#page-main-wrapper > #frametype-list-wrap > ul > li > a > .text{
	font-size:1.25rem;
	margin-bottom:2rem;
	}
	#page-main-wrapper > #frametype-list-wrap > ul > li > a > .data{
	font-size:1.28rem;
	}
}

/* --------------------------------------------------------------------
　キービジュアル設定
-------------------------------------------------------------------- */
#page-main-wrapper > #main-key-visual{
width:100%;
}
#page-main-wrapper > #main-key-visual > .big-img-area{
width:100%;
position:relative;
}
#page-main-wrapper > #main-key-visual > .big-img-area > figure{
width:100%;
height:100%;
position:absolute;
top:0;
left:0;
}
#page-main-wrapper > #main-key-visual > .big-img-area > figure > img{
object-fit:cover;
object-position:top center;
width:100%;
height:100%;
filter:brightness(.95);
}
#page-main-wrapper > #main-key-visual > .big-img-area > .text{
position:absolute;
transform:translate(-50%,-50%);
left:50%;
color:#fff;
}
#page-main-wrapper > #main-key-visual > .big-img-area > .text > h1{
font-weight:600;
line-height:1.5;
text-align:center;
}
#page-main-wrapper > #main-key-visual > .big-img-area > .text > h1 > span{
display:block;
}
#page-main-wrapper > #main-key-visual > .big-img-area > .text > .type{
display:flex;
align-items:center;
}
#page-main-wrapper > #main-key-visual > .big-img-area > .text > .type > span{
border:1px solid #fff;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
}
#page-main-wrapper > #main-key-visual > .big-img-area > .text > .sub{
text-align:center;
opacity:.8;
}
#page-main-wrapper > #main-key-visual > .silde-img-area{
position:relative;
width:100%;
}
#page-main-wrapper > #main-key-visual > .silde-img-area > .swiper-wrapper{
transition-timing-function:linear !important;
}
#page-main-wrapper > #main-key-visual > .silde-img-area > ul > li > figure{
overflow:hidden;
}
@media screen and (min-width:769px){
	#page-main-wrapper > #main-key-visual{
	min-width:1200px;
	}
	#page-main-wrapper > #main-key-visual > .big-img-area{
	height:calc(100vh - 200px);
	}
	#page-main-wrapper > #main-key-visual > .big-img-area > .text{
	width:1200px;
	top:calc(50% - 5vh);
	}
	#page-main-wrapper > #main-key-visual > .big-img-area > .text > h1{
	font-size:3rem;
	}
	#page-main-wrapper > #main-key-visual > .big-img-area > .text > h1 > span{
	font-size:7.5rem;
	line-height:1;
	margin-top:1rem;
	}
	#page-main-wrapper > #main-key-visual > .big-img-area > .text > .type{
	margin:3rem auto;
	gap:0 1rem;
	width:max-content;
	}
	#page-main-wrapper > #main-key-visual > .big-img-area > .text > .type > span{
	width:17rem;
	height:4rem;
	font-size:1.8rem;
	}
	#page-main-wrapper > #main-key-visual > .big-img-area > .text > .sub{
	font-size:1.7rem;
	letter-spacing:.2em
	}
	#page-main-wrapper > #main-key-visual > .silde-img-area{
	margin-top:-25vh;
	}
	#page-main-wrapper > #main-key-visual > .silde-img-area > ul > li > figure{
	border-radius:2rem;
	}
}
@media screen and (max-width:768px){
	#page-main-wrapper > #main-key-visual > .big-img-area{
	height:calc(100vh - 241.5px);
	}
	#page-main-wrapper > #main-key-visual > .big-img-area > .text{
	width:100%;
	padding:0 3rem;
	top:calc(50% - 5vh);
	}
	#page-main-wrapper > #main-key-visual > .big-img-area > .text > h1{
	font-size:4.5vw;
	}
	#page-main-wrapper > #main-key-visual > .big-img-area > .text > h1 > span{
	font-size:12vw;
	line-height:1;
	margin-top:1rem;
	}
	#page-main-wrapper > #main-key-visual > .big-img-area > .text > .type{
	margin:2rem auto;
	gap:0 1rem;
	width:100%;
	}
	#page-main-wrapper > #main-key-visual > .big-img-area > .text > .type > span{
	width:calc(100% / 3);
	height:3.5rem;
	font-size:3.5vw;
	font-weight:600;
	}
	#page-main-wrapper > #main-key-visual > .big-img-area > .text > .sub{
	font-size:3vw;
	letter-spacing:.2em;
	}
	#page-main-wrapper > #main-key-visual > .silde-img-area{
	margin-top:-13vh;
	}
	#page-main-wrapper > #main-key-visual > .silde-img-area > ul > li > figure{
	border-radius:1rem;
	aspect-ratio:5 / 6.8;
	}
	#page-main-wrapper > #main-key-visual > .silde-img-area > ul > li > figure > img{
	width:100%;
	height:100%;
	object-fit:cover;
	}
}

/* --------------------------------------------------------------------
　紹介・診断テストボタン・診断小窓エリア設定
-------------------------------------------------------------------- */
/*-- 紹介 --*/
#page-main-wrapper > #type-check-area{
margin:0 auto;
text-align:center;
line-height:1.5;
}
#page-main-wrapper > #type-check-area > h2{
font-weight:600;
line-height:1;
text-align:center;
}
#page-main-wrapper > #type-check-area > h2 > span{
display:block;
font-weight:300;
}
#page-main-wrapper > #type-check-area > ul{
display:grid;
grid-template-columns:repeat(3,1fr);
align-items:flex-start;
justify-content:center;
}
#page-main-wrapper > #type-check-area > ul > li > .type{
font-weight:600;
line-height:1;
width:max-content;
display:flex;
align-items:center;
justify-content:center;
padding:0 2rem;
border-radius:2rem;
color:#fff;
}
#page-main-wrapper > #type-check-area > ul > li > .type.straight{
background:#a6d0d8;
}
#page-main-wrapper > #type-check-area > ul > li > .type.wave{
background:#acd3be;
}
#page-main-wrapper > #type-check-area > ul > li > .type.natural{
background:#bab09a;
}

/*-- 診断テストボタン --*/
#page-main-wrapper #frametype-window-open{
width:max-content;
padding:0 0 1.2rem 0;
border-bottom:1px solid #000;
cursor:pointer;
display:flex;
align-items:center;
justify-content:center;
gap:0 1rem;
line-height:1;
}
#page-main-wrapper #frametype-window-open:after{
content:"\e5e1";
font-family:'Material Symbols Outlined';
width:2rem;
height:2rem;
aspect-ratio:1 / 1;
font-size:1.0rem;
color:#fff;
background:#000;
border-radius:100%;
display:flex;
align-items:center;
justify-content:center;
}

/*-- 診断小窓 --*/
#page-main-wrapper #frametype-text-wrap > #close-back-black{
background:rgba(0,0,0,.2);
z-index:889;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
cursor:pointer;
opacity:0;
display:none;
animation:fade-in .9s ease-in-out forwards;
}
#page-main-wrapper #frametype-text-wrap.open > #close-back-black{
opacity:1;
display:block;
animation:fade-in .9s ease-in-out forwards;
}
#page-main-wrapper #frametype-text-wrap > #test-main-contents{
visibility:collapse;
-webkit-transition:.2s ease-in-out;
-moz-transition:.2s ease-in-out;
transition:.2s ease-in-out;
position:fixed;
padding:0;
transform:translate(-50%,200%);
top:50%;
left:50%;
z-index:890;
}
#page-main-wrapper #frametype-text-wrap.open > #test-main-contents{
visibility:visible;
-webkit-transition:.2s ease-in-out;
-moz-transition:.2s ease-in-out;
transition:.2s ease-in-out;
transform:translate(-50%,-50%);
border-bottom:1px solid #ddd;
}
#page-main-wrapper #frametype-text-wrap > #test-main-contents > #frametype-window-close{
position:absolute;
background:#fff;
border-radius:100%;
color:#000;
display:flex;
align-items:center;
justify-content:center;
cursor:pointer;
font-variation-settings:'FILL' 0,'wght' 600,'GRAD' 0,'opsz' 48;
width:5rem;
height:5rem;
top:-2rem;
right:-2rem;
z-index:999;
}
#page-main-wrapper #frametype-text-wrap > #test-main-contents > #main-text-area{
height:max-content;
max-height:75vh;
background:#fff;
border-radius:10px;
}
#page-main-wrapper #frametype-text-wrap > #test-main-contents > #main-text-area > .app-theme-title{
font-weight:600;
text-align:center;
line-height:1;
}
#page-main-wrapper #frametype-text-wrap > #test-main-contents > #main-text-area > .fit{
border-top:1px solid #ddd;
}
#page-main-wrapper #frametype-text-wrap > #test-main-contents > #main-text-area > .fit > p{
text-align:center;
font-weight:600;
}
#page-main-wrapper #frametype-text-wrap > #test-main-contents > #main-text-area > .fit > ul > li > input{
display:none;
}
#page-main-wrapper #frametype-text-wrap > #test-main-contents > #main-text-area > .fit > ul > li > a{
width:100%;
background:#f0f0f0;
font-weight:600;
display:block;
}
#page-main-wrapper #frametype-text-wrap > #test-main-contents > #main-text-area > .result{
border-top:1px solid #ddd;
}
#page-main-wrapper #frametype-text-wrap > #test-main-contents > #main-text-area > .result > .result_theme > p{
font-weight:600;
text-align:center;
}
#page-main-wrapper #frametype-text-wrap > #test-main-contents > #main-text-area > .result > .result_theme > img{
display:block;
margin:0 auto;
}
#page-main-wrapper #frametype-text-wrap > #test-main-contents > #main-text-area > .result > .jump-type-btn > a{
background:#000;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:1.6rem;
font-weight:600;
}
#page-main-wrapper #frametype-text-wrap > #test-main-contents > #main-text-area > .result > .restart-btn{
text-align:center;
border-bottom:1px solid #000 !important;
width:max-content;
margin:0 auto;
display:block;
font-weight:600;
color:#000;
}
@media screen and (min-width:769px){
	/*-- 紹介 --*/
	#page-main-wrapper > #type-check-area{
	font-size:1.6rem;
	line-height:1.8;
	padding:10rem 2rem 0 2rem;
	}
	#page-main-wrapper > #type-check-area > h2{
	font-size:4rem;
	margin:0 auto 2rem auto;
	}
	#page-main-wrapper > #type-check-area > h2 > span{
	font-size:1.8rem;
	margin:1rem 0 0 0;
	}
	#page-main-wrapper > #type-check-area > ul{
	width:900px;
	margin:0 auto;
	gap:0 4rem;
	}
	#page-main-wrapper > #type-check-area > ul > li > .type{
	margin:2rem auto 1rem auto;
	height:3rem;
	}

	/*-- 診断テストボタン --*/
	#page-main-wrapper #frametype-window-open{
	font-size:2rem;
	margin:5rem auto 0 auto;
	}

	/*-- 診断小窓 --*/
	#page-main-wrapper #frametype-text-wrap > #test-main-contents > #main-text-area{
	width:500px;
	}
	#page-main-wrapper #frametype-text-wrap > #test-main-contents > #main-text-area > .app-theme-title{
	font-size:1.8rem;
	padding:3rem;
	}
	#page-main-wrapper #frametype-text-wrap > #test-main-contents > #main-text-area > .fit{
	padding:2rem 3rem 5rem 3rem;
	}
	#page-main-wrapper #frametype-text-wrap > #test-main-contents > #main-text-area > .fit > p{
	font-size:1.6rem;
	line-height:1.8;
	}
	#page-main-wrapper #frametype-text-wrap > #test-main-contents > #main-text-area > .fit > ul{
	margin-top:2rem;
	}
	#page-main-wrapper #frametype-text-wrap > #test-main-contents > #main-text-area > .fit > ul > li{
	margin-top:.5rem;
	}
	#page-main-wrapper #frametype-text-wrap > #test-main-contents > #main-text-area > .fit > ul > li > a{
	padding:1.5rem 2rem;
	line-height:1.5;
	font-size:1.4rem;
	border-radius:.5rem;
	}
	#page-main-wrapper #frametype-text-wrap > #test-main-contents > #main-text-area > .result{
	padding-bottom:4rem;
	}
	#page-main-wrapper #frametype-text-wrap > #test-main-contents > #main-text-area > .result > .result_theme{
	padding:3rem 0;
	}
	#page-main-wrapper #frametype-text-wrap > #test-main-contents > #main-text-area > .result > .result_theme > p{
	font-size:1.8rem;
	line-height:1.5;
	}
	#page-main-wrapper #frametype-text-wrap > #test-main-contents > #main-text-area > .result > .result_theme > img{
	width:70%;
	}
	#page-main-wrapper #frametype-text-wrap > #test-main-contents > #main-text-area > .result > .result_discription{
	font-size:1.4rem;
	line-height:1.8;
	padding:0 2rem 2rem 2rem;
	}
	#page-main-wrapper #frametype-text-wrap > #test-main-contents > #main-text-area > .result > .jump-type-btn > a{
	width:calc(100% - 4rem);
	height:6rem;
	margin:0 auto 2rem auto;
	border-radius:.8rem;
	font-size:1.6rem;
	}
	#page-main-wrapper #frametype-text-wrap > #test-main-contents > #main-text-area > .result > .restart-btn{
	font-size:1.5rem;
	}
}
@media screen and (max-width:768px){
	/*-- 紹介 --*/
	#page-main-wrapper > #type-check-area{
	padding:0 2rem;
	margin:6rem auto 0 auto;
	}
	#page-main-wrapper > #type-check-area > h2{
	font-size:6vw;
	}
	#page-main-wrapper > #type-check-area > h2 > span{
	font-size:1.6rem;
	margin:1rem 0;
	}
	#page-main-wrapper > #type-check-area > ul{
	gap:0 1rem;
	}
	#page-main-wrapper > #type-check-area > ul > li > .type{
	font-size:1.2rem;
	margin:1rem auto;
	height:2.5rem;
	}
	#page-main-wrapper > #type-check-area > ul > li > .text{
	font-size:1.2rem;
	line-height:1.5;
	text-align:left;
	}

	/*-- 診断テストボタン --*/
	#page-main-wrapper #frametype-window-open{
	font-size:1.4rem;
	margin:3rem auto 0 auto;
	}

	/*-- 診断小窓 --*/
	#page-main-wrapper #frametype-text-wrap > #test-main-contents > #main-text-area{
	width:85vw;
	max-height:90vh;
	}
	#page-main-wrapper #frametype-text-wrap > #test-main-contents > #main-text-area > .app-theme-title{
	font-size:1.7rem;
	padding:2.5rem;
	}
	#page-main-wrapper #frametype-text-wrap > #test-main-contents > #main-text-area > .fit{
	padding:2rem 2rem 4rem 2rem;
	}
	#page-main-wrapper #frametype-text-wrap > #test-main-contents > #main-text-area > .fit > p{
	font-size:1.5rem;
	line-height:1.6;
	}
	#page-main-wrapper #frametype-text-wrap > #test-main-contents > #main-text-area > .fit > ul{
	margin-top:2rem;
	}
	#page-main-wrapper #frametype-text-wrap > #test-main-contents > #main-text-area > .fit > ul > li{
	margin-top:.5rem;
	}
	#page-main-wrapper #frametype-text-wrap > #test-main-contents > #main-text-area > .fit > ul > li > a{
	padding:1.5rem 2rem;
	line-height:1.5;
	font-size:1.3rem;
	border-radius:.5rem;
	}
	#page-main-wrapper #frametype-text-wrap > #test-main-contents > #main-text-area > .result{
	padding-bottom:4rem;
	}
	#page-main-wrapper #frametype-text-wrap > #test-main-contents > #main-text-area > .result > .result_theme{
	padding:2.5rem 0;
	}
	#page-main-wrapper #frametype-text-wrap > #test-main-contents > #main-text-area > .result > .result_theme > p{
	font-size:1.6rem;
	line-height:1.5;
	}
	#page-main-wrapper #frametype-text-wrap > #test-main-contents > #main-text-area > .result > .result_theme > img{
	width:55%;
	}
	#page-main-wrapper #frametype-text-wrap > #test-main-contents > #main-text-area > .result > .result_discription{
	font-size:1.2rem;
	line-height:1.8;
	padding:0 2rem 2rem 2rem;
	}
	#page-main-wrapper #frametype-text-wrap > #test-main-contents > #main-text-area > .result > .jump-type-btn > a{
	width:calc(100% - 4rem);
	height:5rem;
	margin:0 auto 2rem auto;
	border-radius:.8rem;
	font-size:1.3rem;
	}
	#page-main-wrapper #frametype-text-wrap > #test-main-contents > #main-text-area > .result > .restart-btn{
	font-size:1.3rem;
	}
}
/* --------------------------------------------------------------------
　各タイプ説明エリア設定
-------------------------------------------------------------------- */
/*-- タイプ間ページジャンプボタン --*/
nav.page-type-jump > ul{
display:grid;
grid-template-columns:repeat(3,1fr);
}
nav.page-type-jump > ul > li > a{
background:transparent;
display:flex;
align-items:center;
justify-content:center;
opacity:.3;
transition:all 1s ease;
border:1px solid #000;
color:#000;
}
nav.page-type-jump > ul > li > a.active{
pointer-events:none;
opacity:1;
background:#000;
color:#fff;
}
nav.page-type-jump > ul > li > a:hover{
opacity:1;
background:#000;
color:#fff;
}
@media screen and (min-width:769px){
	nav.page-type-jump > ul{
	width:680px;
	margin:0 auto 15rem auto;
	gap:0 2rem;
	}
	nav.page-type-jump > ul > li > a{
	height:6rem;
	font-size:2rem;
	letter-spacing:.08em;
	}

}
@media screen and (max-width:768px){
	nav.page-type-jump > ul{
	width:100%;
	margin:0 auto 4rem auto;
	padding:0 2rem;
	gap:0 .8rem;
	}
	nav.page-type-jump > ul > li > a{
	height:4.5rem;
	font-size:1.3rem;
	letter-spacing:.08em;
	font-weight:600;
	}
}


/* --------------------------------------------------------------------
　商品掲載エリア設定
-------------------------------------------------------------------- */
#page-main-wrapper > .frametype-product-contents{
}
#page-main-wrapper > .frametype-product-contents > .pick-product-content{
overflow:hidden;
}
#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-img-silde{
width:100%;
height:max-content;
overflow:hidden;
position:relative;
line-height:0;
}
#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-img-silde .swiper-horizontal>.swiper-pagination-bullets,
#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-img-silde .swiper-pagination-bullets.swiper-pagination-horizontal,
#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-img-silde .swiper-pagination-custom, .swiper-pagination-fraction{
bottom:var(--swiper-pagination-bottom,20px);
}
#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-img-silde .swiper-pagination-bullet{
width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,10px));
height:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,10px));
background:transparent;
border:1px solid #fff;
opacity:1;
margin:0 var(--swiper-pagination-bullet-horizontal-gap,8px);
}
#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-img-silde .swiper-pagination-bullet-active{
background:#fff;
}
#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-img-silde > ul > li{
position:relative;
}
#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-img-silde > ul > li > span{
position:absolute;
top:2rem;
right:2rem;
line-height:1;
color:#fff;
display:block;
width:max-content;
padding:0;
font-weight:600;
font-size:1.5rem;
}
#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .title{
line-height:1;
letter-spacing:0;
font-weight:400;
border-bottom:1px solid #ddd;
text-align:center;
}
#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .items > li > a{
display:grid;
}
#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .items > li > a > figure{
}
#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .items > li > a > .text{
line-height:1.5;
}
#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .items > li > a > .text > .ex{
}
#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .items > li > a > .text > .name{
font-weight:600;
}
#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .items > li > a > .text > #item-price{
font-weight:600;
}
#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .items > li.attention{
width:100%;
}
#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info #item-price > #normalPrice:before,
#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info #item-price > #salePrice:before,
#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info #item-price > #membersPrice:before{
content:"¥";
font-size:.85em;
marginr-right:.3rem;
}
#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info #item-price > p{
display:flex;
align-items:baseline;
line-height:1;
}
#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info #item-price > p > span{
font-size:.8em;
margin-left:.5rem;
}
#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info #item-price > p > span:after{
content:"OFF";
}
#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .items > li > a > .text > #item-price.sale > #normalPrice,
#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .items > li > a > .text > #item-price.members > #normalPrice,
#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .items > li > a > .text > #item-price.members > #salePrice,
#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .items > li > a > .text > #item-price:not(.sale,.members) > #salePrice,
#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .items > li > a > .text > #item-price:not(.sale,.members) > #membersPrice{
display:none;
}
#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info #item-price > #salePrice,
#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info #item-price > #membersPrice{
color:#ca0000;
}
#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .point{
background:#fff;
border:1px solid #212121;
position:relative;
}
#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .point > p{
padding:.5rem 1.8rem;
line-height:1;
background:#333;
color:#fff;
font-size:1.3rem;
width:max-content;
position:absolute;
top:-1rem;
}
#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .point > ol{
}
#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .point > ol > li{
display:grid;
align-items:flex-start;
}
#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .point > ol > li:before{
content:"\e5ca";
font-family:'Material Symbols Outlined';
display:flex;
justify-content:center;
align-items:center;
aspect-ratio:1 / 1;
width:100%;
height:auto;
border-radius:100%;
line-height:1;
color:#fff;
background:#b6b5b5;
}
#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .point > ol > li > p > span{
font-weight:600;
}
#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .sub-items{
}
#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .sub-items > li > a{
line-height:1;
display:flex;
align-items:center;
gap:0 .8rem;
}
#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .sub-items > li > a:after{
content:"tax in";
border-bottom:1px solid #999;
padding:.2rem 0;
font-size:1.1rem;
}
#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .sub-items > li > a > .name{
display:flex;
align-items:center;
gap:0 .5rem;
}
#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .sub-items > li > a > .name:before{
content:"";
background:#c0c0c0;
aspect-ratio:1 / 1;
width:1rem;
height:auto;
border-radius:100%;
}
#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .sub-items > li > a > #item-price > #salePrice,
#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .sub-items > li > a > #item-price > #membersPrice{
display:none;
}
#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .sub-items:after{
content:"上記アイテムはコーディネートしやすい小物になります。画像内に掲載されているアイテムと異なる場合がありますので、ご注意ください。";
width:100%;
font-size:1.0rem;
line-height:1.5;
opacity:.8;
}
@media screen and (min-width:769px){
	#page-main-wrapper > .frametype-product-contents{
	padding-top:20rem;
	}
	#page-main-wrapper > .frametype-product-contents > .pick-product-content{
	width:1200px;
	margin:0 auto;
	padding:0 2rem;
	display:grid;
	grid-template-columns:repeat(2,1fr);
	gap:0 6rem;
	}
	#page-main-wrapper > .frametype-product-contents > .pick-product-content:not(:last-child){
	margin:0 auto 20rem auto;
	}
	#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-img-silde{
	aspect-ratio:5 / 6.7;
	}
	#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-img-silde > ul > li > img{
	width:100%;
	height:100%;
	object-fit:cover;
	}
	#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .title{
	font-size:2.8rem;
	padding:0 0 3rem 0;
	margin:0 0 3rem 0;
	}
	#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .items > li{
	margin-bottom:3rem;
	}
	#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .items > li > a{
	gap:0 3rem;
	grid-template-columns:12rem 1fr;
	}
	#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .items.one > li > a{
	grid-template-columns:18rem 1fr;
	}
	#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .items > li > a > .text{
	font-size:1.5rem;
	}
	#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .items > li > a > .text > .ex{
	overflow:hidden;
	display:-webkit-box;
	-webkit-box-orient:vertical;
	-webkit-line-clamp:2;
	margin-bottom:3rem;
	font-size:1.3rem;
	}
	#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .items.one > li > a > .text > .ex{
	-webkit-line-clamp:3;
	}
	#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .items > li > a > .text > #item-price > p{
	font-size:1.7rem;
	}
	#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .items > li > a > .text > .name{
	margin-bottom:.5rem;
	}
	#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .point{
	padding:2rem;
	margin-top:6rem;
	}
	#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .point > p{
	left:2rem;
	}
	#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .point > ol > li{
	grid-template-columns:2.2rem 1fr;
	gap:0 1.2rem;
	line-height:1.5;
	margin-top:1rem;
	font-size:1.5rem;
	}
	#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .sub-items{
	margin-top:5rem;
	display:flex;
	flex-wrap:wrap;
	gap:0 1rem;
	justify-content:space-between;
	}
	#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .sub-items:after{
	margin-top:2rem;
	}
	#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .sub-items > li > a{
	font-size:1.4rem;
	}
	#page-main-wrapper > .frametype-product-contents > .pick-product-content:not(:nth-child(2n)) > .product-info{
	order:1;
	}
	#page-main-wrapper > .frametype-product-contents > .pick-product-content:not(:nth-child(2n)) > .product-img-silde{
	order:2;
	}
}
@media screen and (max-width:768px){
	#page-main-wrapper > .frametype-product-contents{
	padding-top:8rem;
	}
	#page-main-wrapper > .frametype-product-contents > .pick-product-content:not(:last-child){
	margin:0 auto 8rem auto;
	}
	#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info{
	padding:3rem 2rem 0 2rem;
	}
	#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .title{
	font-size:2.2rem;
	padding:0 0 3rem 0;
	margin:0 0 3rem 0;
	}
	#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .items > li{
	margin-bottom:2rem;
	}
	#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .items > li > a{
	grid-template-columns:repeat(2,1fr);
	gap:0 2rem;
	}
	#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .items > li > a > .text > .ex{
	margin-bottom:3rem;
	font-size:1.1rem;
	overflow:hidden;
	display:-webkit-box;
	-webkit-box-orient:vertical;
	-webkit-line-clamp:4;
	}
	#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .items > li > a > .text > #item-price > p{
	font-size:1.6rem;
	}
	#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .items > li > a > .text > .name{
	margin-bottom:.5rem;
	font-size:1.2rem;
	}
	#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .point{
	padding:1.8rem;
	margin-top:4rem;
	}
	#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .point > p{
	left:1.8rem;
	}
	#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .point > ol > li{
	grid-template-columns:1.8rem 1fr;
	gap:0 1rem;
	line-height:1.5;
	margin-top:1rem;
	font-size:3.2vw;
	}
	#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .sub-items{
	margin-top:3rem;
	display:grid;
	grid-template-columns:repeat(2,1fr);
	gap:1.5rem;
	}
	#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .sub-items > li > a{
	font-size:1.2rem;
	}
	#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .sub-items > li > a:after{
	font-size:1.0rem;
	}
	#page-main-wrapper > .frametype-product-contents > .pick-product-content > .product-info > .sub-items:after{
	grid-column:span 2;
	margin-top:1rem;
	}
	#page-main-wrapper > .frametype-product-contents > .pick-product-content:not(:nth-child(2n)) > .product-info{
	order:1;
	}
	#page-main-wrapper > .frametype-product-contents > .pick-product-content:not(:nth-child(2n)) > .product-img-silde{
	order:2;
	}
}


/* --------------------------------------------------------------------
　ラストメッセージエリア設定
-------------------------------------------------------------------- */
#page-main-wrapper > #last-messege-area > a{
background:#000;
width:100%;
padding:0 2rem;
font-weight:600;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
margin:0 auto 2rem auto;
}
#page-main-wrapper > #last-messege-area > .analist-profile{
width:max-content;
margin:0 auto;
font-weight:600;
}
#page-main-wrapper > #last-messege-area > .analist-profile > a{
text-decoration:underline;
}
@media screen and (min-width:769px){
	#page-main-wrapper > #last-messege-area{
	width:1200px;
	margin:0 auto;
	padding:15rem 2rem;
	}
	#page-main-wrapper > #last-messege-area > a{
	font-size:2rem;
	height:10rem;
	}
	#page-main-wrapper > #last-messege-area > .analist-profile{
	font-size:1.6rem;
	}
}
@media screen and (max-width:768px){
	#page-main-wrapper > #last-messege-area{
	padding:8rem 2rem;
	}
	#page-main-wrapper > #last-messege-area > a{
	font-size:1.6rem;
	height:6rem;
	}
	#page-main-wrapper > #last-messege-area > .analist-profile{
	font-size:1.3rem;
	}
}