  @charset "UTF-8";
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

	1. 	CSS Reset
	2. 	Base
			variable
	3. 	Layouts (一部モジュールあり)
		3.1  Header 
		3.2  Footer
		3.3  Main
		3.9  女同性爱
	4. 	Modules (Common)
		4.1  Element Modules
		4.2  Navigations
		4.3  For Text -> 一部 page.css に記載
		4.4  For content -> page.css に記載
		4.5  Unit Modules -> page.css に記載
		4.6  Container Modules -> page.css に記載
		4.9  女同性爱 commons -> page.css に記載
	5. 	Unique -> top.css, page.css に記載
	7. 	IE11 hack -> top.css, page.css に記載
	8. 	Helper Classes
	9. 	Print CSS

----------------------------------------------------------------------------- */
/*
	PRECSS準拠
	common.css (このファイル) はサイトの全ページで読み込む
	トップページは top.css を、トップ以外のページは page.css を読み込む
	
	レイアウト
	タイポグラフィ関係
	スタイル
	の順に書く、もしくはアルファベット順
	
	基本的に小さい画面用の設定から書くこと
	印刷時にも明確に効かせたいレイアウトについては、その指定が幅600px以上のメディアに対する場合、に対応するCSSは
	
	

*/
/* -------------------------------------------------------------------------- */
/*	1. CSS Reset
/* -------------------------------------------------------------------------- */
html,
body {
	border: none;
	margin: 0;
	padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
address,
big,
cite,
code,
em,
font,
img,
small,
strike,
sub,
sup,
li,
ol,
ul,
fieldset,
form,
label,
legend,
button,
table,
caption,
tr,
th,
td {
	border: none;
	font-size: inherit;
	line-height: inherit;
	margin: 0;
	padding: 0;
	text-align: inherit;
}

blockquote::before,
blockquote::after {
	content: "";
}

/* -------------------------------------------------------------------------- */
/*	2. 	Base
/* -------------------------------------------------------------------------- */
/* variable -----------------------------*/
:root {
	--key-color: #703125;
	--p-margin: 2.4em;
}




html {
	font-size: 100%;/* 1rem = 16px */
}

.is_noJS {
	padding-bottom: 2rem;
	position: relative;
}

.is_noJS::after {
	background: #ccc;
	color: #000;
	content: "このブラウザではJavascriptが無効化されているようです。";
	display: block;
	font-family: sans-serif;
	font-size: .75rem;
	height: 2rem;
	padding: .25rem;
	line-height: 1.25;
	text-align: center;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
}

body {
	/*background-color: #fff;*/
	/*color: #000;*/
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	box-sizing: border-box;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

/* Elements support */
main {
	display: block;
}
time {
	display: inline;
}
figure {
	margin: 0;
}


img {
	max-width: 100%;
	height: auto;
}


h1,
.el_lv1Heading,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.25;
	margin: 2em 0 .5em;
}

h1:first-child,
.el_lv1Heading:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child,
.el_lv1Heading + h1,
h1 + h2,
.el_lv1Heading + h2,
h2 + h3,
h3 + h4,
h4 + h5,
h5 + h6 {
	margin-top: 0;
}

h1,
.el_lv1Heading {
	font-size: 1.2rem;
}
h2,
.el_lv2Heading,
.el_hasBorderHeading {
	font-size: 1.375rem;
}
h3 {
	font-size: 0.9375rem;
}
h4 {
	font-size: 0.875rem;
}
h5 {
	font-size: 0.8125rem;
}
h6 {
	font-size: .75rem;
}
@media(min-width:48rem), print{
	h1,
	.el_lv1Heading {
		font-size: 1.8125rem;
	}
	h2,
	.el_lv2Heading,
	.el_hasBorderHeading {
		font-size: 2.25rem;
	}
	h3 {
		font-size: 1.375rem;
	}
	h4 {
		font-size: 1.25rem;
	}
	h5 {
		font-size: 1.125rem;
	}
	h6 {
		font-size: 1rem;
	}
}


p {
	margin-bottom: 2.4em;
}

em,
i,
q,
dfn {
	font-style: italic;
}

em em,
em i,
i em,
i i,
cite em,
cite i {
	font-weight: bolder;
}

big {
	font-size: 1.2em;
}

small {
	font-size: 0.75em;
}

b,
strong {
	font-weight: 700;
}

ins {
	text-decoration: underline;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

abbr,
acronym {
	cursor: help;
}

hr {
	margin: 4rem 0;
}

ol, ul {
	margin-left: 2rem;
	margin-bottom: 2.4em;
}
dl {
	margin-bottom: 2.4em;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

th, td {
	padding: 0.5em 1em;
}

button {
	outline: 2px solid transparent;
	outline-offset: 8rem;
}

button:focus {
	outline: 2px solid currentcolor;
	outline-offset: 0;
	transition: .2s ease;
}
/*
button:active {
	transform: translate(0, 2px);
	transition: 0;
}
*/
/* -------------------------------------------------------------------------- */
/*	3. 	Layouts 特定のコンテキストでしか使わないモジュールを含む
		3.1  Header
		3.2  Footer
		3.3  Main
		3.9  女同性爱
	?基本的にレイアウトに関するスタイルのみを記載
	?レイアウトと振る舞いの粒度が一致する場合は装飾のスタイルも記載OK
/* -------------------------------------------------------------------------- */
/* 3.1  Header --------------------------*/
.ly_header {
	background: #fff;
}
.ly_headerInner {
	height: 3.75rem;
	width: calc(100% - 1.75rem);
	margin-left: auto;
	margin-right: auto;
	padding: .4375rem 0;
}
.bl_headerLogo {
	max-width: 20rem;
	margin: 0;
	padding-right: 3.75rem;/*メニューボタン分*/
	font-size: 1rem;
	line-height: 1;
}
.bl_headerNav {
	display: none;
}
@media (min-width: 62rem) {
	.ly_headerInner {
		max-width: 75rem;
		display: flex;
		justify-content: space-between;
		align-items: center;
		height: 7rem;
	}
	.bl_headerLogo {
		max-width: none;
	}
	.bl_headerNav {
		display: flex;
		align-items: center;
		
		list-style: none;
	}
	.bl_headerNav li {
		margin: 0 .75rem;
	}
	.bl_headerNav .el_btn {
		min-width: 10rem;
	}
	.bl_headerNav a {
		color: #703125;
		font-size: 1.125rem;
		font-weight: 500;
	}
}



.bl_spMenuBtn {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	height: 3.75rem;
	width: 3.75rem;
	
	background: transparent none;
	border: 0;
	border-radius: 0;
	cursor: pointer;
}
.is_noJS .bl_spMenuBtn {
	display: none;/*JS無効の時は隠す*/
}
.bl_spMenuBtn_icon,
.bl_spMenuBtn_icon::before,
.bl_spMenuBtn_icon::after {
	display: block;
	height: .125rem;
	width: 2.5rem;
	position: absolute;
	
	background: #703125;
}
.bl_spMenuBtn_icon {
	left: .625rem;
	top: calc(50% - 0.125rem / 2);
}
.bl_spMenuBtn_icon::before,
.bl_spMenuBtn_icon::after {
	content: "";
	left: 0;
}
.bl_spMenuBtn_icon::before {
	top: -0.75rem;
}
.bl_spMenuBtn_icon::after {
	top: 0.75rem;
}
/* グローバルメニュー開いた時 */
.is_open .bl_spMenuBtn_icon {
	background: transparent;
}
.is_open .bl_spMenuBtn_icon::before,
.is_open .bl_spMenuBtn_icon::after {
	top: 0;
}
.is_open .bl_spMenuBtn_icon::before {
	transform: rotate(-45deg);
}
.is_open .bl_spMenuBtn_icon::after {
	transform: rotate(45deg);
}




/* 3.2  Footer --------------------------*/
.ly_footer {
	margin-top: 1.375rem;
	padding: 1rem .625rem;
	
	text-align: center;
	
	background: #3e3a39;
	color: #fff;
}
@media (min-width: 48rem) {
	.ly_footer {
		margin-top: 3.5rem;
	}
}

.bl_footerAddress {
	margin-bottom: 2em;
	font-size: 0.875rem;
	line-height: 1.75;
}
.bl_footerAddress a {
	color: inherit;
}
.bl_footerAddress h6 {
	font-size: inherit;
	font-weight: 400;
	margin: 0;
}
.bl_footerAddress p {
	margin: 0;
}
.bl_footerAddress address {
	font-style: normal;
	text-decoration: none;
}
.bl_copyright {
	font-size: 0.6875rem;
}
@media(min-width:48rem), print{
	.bl_footerAddress {
		font-size: 1rem;
	}
	.bl_copyright {
		font-size: 0.8125rem;
	}
}





/* 3.3  Main ----------------------------*/
.ly_cont {
	max-width: 75rem;
	width: calc(100% - 2rem);
	margin-left: auto;
	margin-right: auto;
}

.ly_cont_main {
	margin-bottom: 3rem;
}
/* 1024px = 64rem から複数カラムにする時 */
@media (min-width: 64rem), print {
	.ly_cont__col {
		display: flex;
		justify-content: space-between;
	}
	.ly_cont_main {
		flex: 0 0 66%;
		order: 2;
		max-width: 66%;
		margin-bottom: 5rem
	}
	.ly_cont_sub {
		flex: 0 0 25%;
		order: 1;
		
	}
}




/* 3.9  女同性爱 ---------------------------*/

.bl_globalNav,
.bl_globalNav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.bl_globalNav ul {
	display: none;
}
.is_noJS .bl_globalNav ul {
	/*JS無効の時はかくさない*/
	display: block;
}


@media screen and (max-width: 61.9375rem) {
	/* スマホ用サイトナビゲーション */
	.bl_globalNavWrapper {
		position: absolute;
		top: 3.75rem;/*ヘッダー分*/
		width: 100%;
		z-index: 5;
	}
	.is_noJS .bl_globalNavWrapper {
		/*JS無効の時は固定しない*/
		position: static;
		margin-bottom: 2rem;
	}
	.bl_globalNav li {
		border-bottom: 1px solid #fff;
		position: relative;
	}
	.bl_globalNav li a,
	.el_globalNav_toggle {
		display: block;
		padding: 1em;
		padding-left: 2rem;
		position: relative;
		
		font-weight: 600;
		text-decoration: none;
	
		background: rgba(112,49,37,.98);
		color: #fff;
	}
	.el_globalNav_toggle {
		width: 100%;
	}
	.bl_globalNav li a::before,
	.el_globalNav_toggle::before,
	.el_globalNav_toggle::after {
		content: "";
		width: .5rem;
		height: .5rem;
		position: absolute;
		border-bottom: 2px solid currentcolor;
		border-left: 2px solid currentcolor;
	}
	.bl_globalNav li a::before,
	.el_globalNav_toggle::before {
		top: 1.5em;
		left: .75em;
		transform: rotate(-135deg);
	}
	.el_globalNav_toggle::after {
		margin: auto;
		top: 1.5em;
		right: 1em;
		transform: rotate(-45deg);
	}
	.is_open.el_globalNav_toggle::after {
		transform: rotate(135deg);
	}
	/* サブメニュー */
	.bl_globalNav ul a {
		background: rgba(226,214,211,.98);
		color: #703125;
		font-size: 0.875rem;
		padding-left: 3rem;
	}
	.bl_globalNav ul a::before {
		left: 1.75rem;
	}
	.bl_globalNav_toJPsite {
		margin-top: 1px;
		padding: 1rem;
	
		text-align: center;
		
		background: rgba(0,0,0,.9);
	}
	.bl_globalNav_toJPsite .el_btn {
		width: 10em;
	}
}

/* PC用グローバルナビゲーション */
@media (min-width: 62rem) , print {
	.bl_spMenuBtn {
		display: none;
	}

	.bl_globalNavWrapper {
		display: block !important;
		margin-bottom: 3rem;

		background: #703125;
		color: #fff;
	}
	.bl_globalNav {
		max-width: 75rem;
		margin-left: auto;
		margin-right: auto;
	}
	.bl_globalNav ul {
		display: none;
	}
	.is_noJS .bl_globalNavWrapper {
		/*JS無効の時は隠さない*/
		position: static;
		margin-bottom: 2rem;
	}
	.bl_globalNav {
		display: flex;
	}
	.bl_globalNav > li {
		position: relative;
		height: 3.75rem;
		flex: 1 0 auto;
		border-right: 1px solid #9b6f67;
		justify-content: center;
	}
	.is_noJS .bl_globalNav > li {
		height: auto;
	}
	.bl_globalNav > li:nth-child(2) {
		border-left: 1px solid #9b6f67;
	}
	.bl_globalNav > li > a,
	.el_globalNav_toggle {
		display: flex;
		flex: 1;
		flex-wrap: wrap;
		height: 100%;
		align-items: center;
		justify-content: center;
		padding: 0 .25em;
		position: relative;
		
		color: inherit;
		font-size: 0.9375rem;
		font-weight: 500;
		line-height: 1.4;
		text-align: center;
		text-decoration: none;
	}
	.el_globalNav_toggle {
		width: 100%;
		background: transparent none;
	}
	.is_noJS .bl_globalNav > li > a,
	.is_noJS .el_globalNav_toggle {
		height: 3.75rem;
	}
	/* マウスオーバーで開く */
	.bl_globalNav > li:hover > ul {
		display: block !important;
	}
	.bl_globalNav > li > a:hover::after,
	.bl_globalNav > li > .is_current::after,
	.has_current > .el_globalNav_toggle::before {
		content: "";
		display: block;
		position: absolute;
		left: 4px;
		right: 4px;
		bottom: 4px;
		height: 3px;

		background: currentcolor;
	}
	.el_globalNav_toggle::after {
		display: block;
		position: absolute;
		width: .5rem;
		height: .5rem;
		border-bottom: 2px solid currentcolor;
		border-left: 2px solid currentcolor;
		right: .5rem;
		top: 1.5rem;
		transform: rotate(-45deg);
	}
	.el_globalNav_toggle:hover::after,
	.el_globalNav_toggle:focus::after {
		content: "";
	}
	.is_open.el_globalNav_toggle::after {
		content: "";
		transform: rotate(135deg);
	}
	.is_open.el_globalNav_toggle:focus {
		outline: none;
	}
	.bl_globalNav > li:hover .el_globalNav_toggle,
	.is_open.el_globalNav_toggle,
	.el_globalNav_toggle:focus {
		background: #e1e6e9;
		color: #703125;
	}
	.bl_globalNav > li > a:focus {
		background: rgba(255,255,255,.2);
		text-decoration: underline;
	}
	/* サブメニュー */
	.bl_globalNav ul {
		position: absolute;
		left: 0;
		top: 3.75rem;
		z-index: 1;
	}
	.is_noJS .bl_globalNav ul {
		position: static;
	}
	.bl_globalNav ul li {
		border-bottom: 1px solid #703125;
	}
	.bl_globalNav ul a {
		display: block;
		padding: .8125em 1.5em;
		
		text-decoration: none;
		white-space: nowrap;
		
		background: #ede2e7;
		color: #703125;
	}
	.bl_globalNav ul a:hover,
	.bl_globalNav ul a:focus,
	.bl_globalNav ul a.is_current {
		text-decoration: underline;
		font-weight: 700;
	}
}
@media (min-width: 75rem) {
	.bl_globalNav > ul > li {
		height: 3.75rem;
		flex: 1;
	}
}


/* -------------------------------------------------------------------------- */
/*	4. 	Modules (Common)
		4.1  Element Modules
		4.2  Navigations
		4.3  For Text
		4.4  For content
		4.5  Unit Modules
		4.6  Container Modules
		4.9  女同性爱 commons
	?使い回すレイアウト
	?レイアウトの情報は極力省く（コンテキストごと、ページ別に読み込むCSSに記載する）
/* -------------------------------------------------------------------------- */
/* 4.1  Element Modules -----------------*/
.el_scrReaderText {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	-webkit-clip-path: inset(50%);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
	word-break: normal;
}

.el_scrReaderText:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	-webkit-clip-path: none;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	right: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* ラベル ※1行で使う想定 */
.el_label {
	display: inline-block;
	padding: 0 .8em;
	
	color: #fff;
	font-weight: 700;
	text-align: center;
	white-space: nowrap;
	
	background: #703125;
}





/* 4.2  Navigations ---------------------*/
.el_skipLink {
	left: -9999rem;
	top: 2.5rem;
	z-index: 999999999;
	text-decoration: underline;
}

.el_skipLink:focus {
	display: block;
	left: 6px;
	top: 7px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	line-height: normal;
	padding: 15px 23px 14px;
	z-index: 100000;
	right: auto;
}

/* パンくず */
.bl_breadcrumb {
	margin-bottom: 1.5rem;
	font-size: 0.8125rem;
}
.bl_breadcrumb a {
	color: #703125;
}
@media(min-width:48rem), print {
	.bl_breadcrumb {
		margin-bottom: 3rem;
		font-size: 1rem;
	}
}


/* ローカルナビゲーション */
.bl_localNav ul {
	list-style: none;
}
.bl_localNav li {
	line-height: 1.666;
	border-bottom: 1px dotted #703125;
}
.bl_localNav a {
	display: block;
	padding: .8em 1em;

	background: #fff;
	color: #703125;
	font-size: 0.875rem;
	text-decoration: none;
}
@media(min-width:48rem), print {
	.bl_localNav a {
		font-size: 1.125rem;
	}
}

.bl_localNav a:hover,
.bl_localNav a:focus,
.bl_localNav a.is_current,
.bl_localNav li.is_currenCat > a {
	background: #eee;
	text-decoration: underline;
}



/* ページネーション */
.bl_pagenation {
	font-size: 0.9375rem;
	font-weight: 700;
	text-align: center;
}
@media(min-width:48rem), print {
	.bl_pagenation {
		font-size: 1.375rem;
	}
}
.bl_pagenation a {
	padding: 0 .25em;
	color: #703125;
}
.bl_pagenation a:hover,
.bl_pagenation a:focus {
	background: #eee;
	text-decoration: none;
}
.bl_pagenation > * {
	display: inline-block;
	margin: 0 .25em;
}



/* ボタン */
.el_btn {
	display: inline-block;
	/*min-width: 10em;*/
	/*height: 2.8125rem;*/
	margin: 5px;/*ドロップシャドウが干渉するので*/
	padding: .3888em 1em;

	color: #000;
	font-size: 1.125rem;
	font-weight: 500;
	text-align: center;
	text-decoration: none;

	background: #fac716;
	border: 2px solid transparent;
	border-radius: 1.25em;
	box-shadow: 3px 4px 5px rgba(0,0,0,0.1);
}
.el_btn:hover,
.el_btn:focus {
	background: #fff;
	border: 2px solid currentcolor;
	color: #703125;
}
.el_btn:active {
	transform: translate(2px ,2px);
}
.el_btn.el_btn__keycolor {
	background: #7d4338;
	color: #fff;
}
.el_btn.el_btn__keycolor:hover,
.el_btn.el_btn__keycolor:focus {
	background: #fff;
	color: #7d4338;
}

.el_btnSquare {
	display: inline-block;
	min-width: 8.3em;
	margin: 5px;/*ドロップシャドウが干渉するので*/
	padding: .4em .75em;

	color: #fff;
	font-size: 1.125rem;
	font-weight: 500;
	text-align: center;
	text-decoration: none;

	background: #7e453a;
	border-radius: .5em;
	border: 2px solid transparent;
	box-shadow: 3px 4px 5px rgba(0,0,0,0.1);
}
.el_btnSquare:hover,
.el_btnSquare:focus {
	background: #fff;
	color: #7e453a;
	border-color: currentcolor;
	text-decoration: underline;
}


/* 4.3  For Text ------------------------*/

/* 見出し */
.el_lv1Heading,
.bl_wysiwyg h1 {
	margin-bottom: .75em;

	color: #703125;
	font-family: serif;
	font-weight: 600;
}
.el_lv2Heading,
.bl_wysiwyg h2,
.el_hasBorderHeading {
	margin-bottom: .75em;

	font-family: serif;
	font-weight: 600;
}
.el_lv2Heading,
.bl_wysiwyg h2 {
	position: relative;
	padding-left: .583em;

}
.el_lv2Heading::before,
.bl_wysiwyg h2::before {
	content: "";
	display: block;
	width: .166em;
	height: 1.2em;
	position: absolute;
	left: 0;

	background: #703125;
}
.el_hasBorderHeading {
	padding-bottom: .125rem;
	border-bottom: 3px solid #703125;
}
.el_lv3Heading,
.bl_wysiwyg h3 {
	color: #703125;
	font-weight: 700;
}
@media(min-width:48rem), print{
	.el_lv1Heading,
	.bl_wysiwyg h1 {
		margin-bottom: 1.5em;
	}
	.el_lv2Heading,
	.bl_wysiwyg h2,
	.el_hasBorderHeading {
		margin-bottom: 1.4em;
	}
	.el_lv3Heading,
	.bl_wysiwyg h3 {
	}
}





/* -------------------------------------------------------------------------- */
/*	8. 	Helper Classes
	?強制的なレイアウトに関するお助け設定
	?使いどころはよく考えて
/* -------------------------------------------------------------------------- */

@media screen and (max-width:47.9375rem) {
	.hp_SPnone {
		display: none;
	}
}
@media(min-width:48rem), print {
	.hp_SPonly {
		display: none;
	}
	
}

@media screen and (max-width:47.9375rem) {
	.hp_SPmLR0 {
		width: auto !important;
		margin-left: 0;
		margin-right: 0;
	}
}


/* --------------------------------------*/
/* margin -------------------------------*/
.hp_mLR3rem {
	margin-left: 1rem;
	margin-right: 1rem;
}
@media(min-width:48rem), print {
	.hp_mLR3rem {
		margin-left: 3rem;
		margin-right: 3rem;
	}
}

.hp_mb10px {
	margin-bottom: 10px !important;
}

/* -------------------------------------------------------------------------- */
/*	9. 	Print CSS
	?プリント用CSS
/* -------------------------------------------------------------------------- */
@media print {
	html {
		font-size: 62.5%;
	}

	/* 印刷時、ロゴが大きすぎて見えてしまうらしいので調整 */
	.bl_headerLogo {
		max-width: 40%;
	}
}
/* --------------------------------------*/
/* --------------------------------------*/
