/*------------------------------------------------------------------------------

Theme Name: 日本きもの協会
Author: Shimizu [ bran-new-days.com ]
Description: 2022/9/21

------------------------------------------------------------------------------*/

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

 全体 style

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

:root {
	--color-text      : #333;
	--color-body      : #FFF;

	--color-primary   : #8ba98b;
	--color-secondary : #806885;
	
	--color-line      : #22ba4f;
	--color-fb        : #315096;

	--color-white     : #FFF;
	--color-gray-100  : #EEE;
	--color-gray-200  : #CCC;
	--color-gray-600  : #666;
	--color-gray-700  : #414141;
	--color-gray-900  : #222;
	--color-black     : #000;
	
	--color-pink      : #cf8791;
	--color-dred      : #C00;
	
	--layer_dark      : rgba(0,0,0,.7);
}

main, article, aside, header, canvas, details, figcaption, figure, footer, nav, section, summary {
	display: block;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	overflow: hidden;
	position: relative;
	left: 0;
	word-wrap: break-word;
	color: var(--color-text);
	font-size: .875rem;
	font-family: '游明朝', YuMincho, 'Hiragino Mincho ProN W3', 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', 'ＭＳ 明朝', serif;
	line-height: 2.4;
	background-color: var(--color-body);
	background-attachment: fixed;
}

a {
	color: var(--color-text);
	text-decoration: underline;
}

a:hover {
	color: var(--color-secondary);
	text-decoration: none;
}

a:hover img {
	opacity: 0.7;
	filter: alpha(opacity=70);
}

.font_gothic {
	font-family: 'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','メイリオ',Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
}
.font_mincho {
	font-family: '游明朝', YuMincho, 'Hiragino Mincho ProN W3', 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', 'ＭＳ 明朝', serif;
}

video, object {
	display: block;
	max-width: 100%;
	height: auto;
	border: none;
}

img {
	max-width: 100%;
	height: auto;
	border: none;
	vertical-align: bottom;
}

.vibtn {
	position: absolute;
	visibility: hidden;
}

/* iframeのレスポンシブ */
.youtube_container {
	position: relative;
	margin-bottom: 8px;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}
.youtube_container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media only screen and (min-width: 768px) {
	body {
		font-size: 1rem;
	}
}


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

 layout

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

/*------------------------------------------------------------------------------

 header

------------------------------------------------------------------------------*/

.header__wrapper {
	height: 52px;
}
.header {
	position: fixed;
	z-index: 999999;
	top: 0;
	left: 0;
	width: 100%;
}
.header__inner {
	max-width: 1230px;
	margin: 0 auto;
	padding: 10px 10px;
}

.home .header__wrapper {
	height: 0;
}
.home .header {
	display: none;
}
/*.home .header_slim {
	display: block;
}*/

.header_main {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header_main .logo {
	width: 50%;
	transition:all 300ms 0ms ease;
}
.header_main .logo a {
	display: block;
	text-decoration: none;
}
.header_main .logo img {
	width: 100%;
}

.header_slim {
	background-color: rgba(255, 255, 255, .75);
	box-shadow: 0 0 4px rgba(0,0,0,.2);
}

/* gnavi
------------------------------------------------------------- */

.gnavi {
	display: flex;
	justify-content: flex-end;
	gap: 1em;
	transition:all 300ms 0ms ease;
}
.gnavi li {
	vertical-align: middle;
}
.gnavi a {
	display: block;
	padding: 8px 0;
	font-weight:  normal;
	text-align: center;
	text-decoration: none;
	line-height: 1.2;
}


/* fix-sidenavi
------------------------------------------------------------- */

.fix-sidenavi {
	display: none;
	position: fixed;
	left: 24px;
	top: 50%;
	transform: translateY(-50%);
	mix-blend-mode: difference;
	z-index: 1000;
}
.fsnavi li {
	margin-bottom: 1em;
	line-height: 1.2;
}
.fsnavi li.top::after {
	display: block;
	content: '';
	width: 1px;
	height: 40px;
	background-color: var(--color-white);
	margin-top: 1em;
	margin-left: 1em;
}
.fsnavi a {
	display: inline-block;
	padding: .5em;
	color: var(--color-white);
	font-size: .875rem;
	font-weight: normal;
	text-decoration: none;
}
.fsnavi a:hover {
	mix-blend-mode: normal;
	background-color: var(--color-secondary);
	color: var(--color-white);
}

@media only screen and (min-width: 768px) {
	.home .fix-sidenavi.active {
		display: block;
	}
	.home .footer_inner ,
	.home .content__inner ,
	.home .title_block {
		padding-left: 110px;
	}
}

@media only screen and (max-width: 767px) {
}
@media only screen and (min-width: 768px) {
	.burger_btn_area {
		display: none;
	}
	.header__wrapper {
		height: 80px;
	}
	.header__inner {
		padding: 20px 15px;
	}
	.header_main .logo {
		width: 20%;
	}
	.header_main .gnavi_block {
		width: 640px;
		max-width: 70%;
	}
	.header_slim .header_line {
		display: none;
	}
	.header_slim .header__inner {
		padding: 15px 20px;
	}
	.header_slim .header__inner .logo {
		width: 16%;
	}
}

/*------------------------------------------------------------------------------

 side bar

------------------------------------------------------------------------------*/

.side h4 {
	margin-bottom: 10px;
	border-bottom: 2px solid var(--color-gray-200);
	font-weight: bold;
}

.side .wiget_box div {
	margin-bottom: 20px;
}

.side .wiget_box ul {
	margin-left: 10px;
	font-size: .875rem;
}

.side .tagcloud {
	margin-left: 10px;
}

.side .tagcloud a {
	display: inline-block;
	margin: 0 2px 0 0;
	font-size: 14px !important;
	font-weight: bold;
	vertical-align: middle;
}
.side .tagcloud a::before {
	content: '#';
}


/* new post
-----------------------------------------------------------*/

.newpost {
	margin: 0 auto 20px;
	font-size: .875rem;
}
.newpost__list li:not(:last-child) {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px dotted var(--color-gray-200);
}
.newpost__list a {
	display: flex;
	gap: 15px;
}
.newpost__list .fig_box {
	display: block;
	width: 100px;
	height: auto;
}
.newpost__list .text_box {
	flex: 1;
}
.newpost__list .data {
	display: block;
	font-size: .75rem;
}
.newpost__list .title {
	font-weight: 600;
}


/* calender
-----------------------------------------------------------*/

.side .calendar_wrap {
	position: relative;
	margin: 0 15px;
}
.wp-calendar-table {
	width: 100%;
}
.wp-calendar-table th {
	padding: 4px 0;
	border-bottom: 2px solid var(--color-gray-600);
	text-align: center;
}
.wp-calendar-table td {
	padding: 4px 0;
	border-bottom: 1px solid var(--color-gray-200);
	text-align: center;
}
.calendar_wrap .wp-calendar-nav {
	position: absolute;
	width: 100%;
	top: 0;
}
.calendar_wrap .wp-calendar-nav .wp-calendar-nav-next {
	display: block;
	float: right;
}


/* 検索フォーム
-----------------------------------------------------------*/

.side aside .search_area {
	position: relative;
	width: 100%;
	margin-bottom: 20px;
	padding-bottom: 0px;
}
.search_area input[type="text"].search_input {
	height: 34px;
	padding: 5px 65px 10px 5px;
	width: 100%;
	border: 1px solid var(--color-gray-200);
	border-radius: 4px;
	font-size: .875rem;
	z-index: 10;
}
.search_area .searchsubmit {
	overflow: hidden;
	position: absolute;
	right: 2px;
	top: 2px;
	width: 40px;
	height: 30px;
	border: none;
	background: url('data:image/svg+xml,%3Csvg%20enable-background%3D%22new%200%200%20512%20512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%20width%3D%22512%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22%234b4b4b%22%3E%3Cpath%20d%3D%22m361.7%20301.5c19.4-30.4%2030.6-66.5%2030.6-105.2%200-108.3-88-196.3-196.1-196.3-38.7%200-74.8%2011.2-105.2%2030.7-24.3%2015.4-44.9%2036.1-60.3%2060.3-19.4%2030.4-30.7%2066.6-30.7%20105.3%200%20108.2%2088%20196.3%20196.2%20196.3%2038.7%200%2074.8-11.3%20105.2-30.7%2024.2-15.5%2044.8-36.1%2060.3-60.4zm-101.9%2018.7c-19.1%209.8-40.7%2015.4-63.6%2015.4-76.8%200-139.3-62.5-139.3-139.4%200-22.9%205.6-44.6%2015.4-63.6%2013.3-25.9%2034.5-47%2060.3-60.3%2019.1-9.8%2040.7-15.4%2063.6-15.4%2076.8%200%20139.3%2062.5%20139.3%20139.4%200%2022.9-5.6%2044.5-15.4%2063.6-13.4%2025.8-34.5%2047-60.3%2060.3z%22%2F%3E%3Cpath%20d%3D%22m499.5%20439.2-113.2-113c-16.1%2023.6-36.8%2044.2-60.3%2060.3l113.2%20113c8.3%208.3%2019.2%2012.5%2030.1%2012.5s21.8-4.2%2030.2-12.5c16.7-16.7%2016.7-43.7%200-60.3z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') 50% 50% no-repeat;
	background-size: auto 70%;
	text-indent: 200%;
	white-space: nowrap;
	z-index: 20;
}


/* -----------------------------------------------------------------------------

 .footer

----------------------------------------------------------------------------- */

.footer {
	zoom: 1;
}
.footer_inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 10px 15px 40px;
}
.footer_inner a {
	color: inherit;
}

.copy_area {
	font-size: .75rem;
	text-align: center;
}



/* page top
-----------------------------------------------------------*/


.page_top_fx {
	position: fixed;
	overflow: hidden;
	bottom: 10px;
	right: 10px;
	z-index: 99999;
}
.page_top_fx a {
	cursor: pointer;
	display: block;
	width: 40px;
	height: 40px;
	border-radius: 50vw;
	background: url('data:image/svg+xml,%3Csvg%20enable-background%3D%22new%200%200%2036%2020%22%20height%3D%2220%22%20viewBox%3D%220%200%2036%2020%22%20width%3D%2236%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m35.6%2018.1c0%20.5-.2.9-.5%201.3-.7.7-1.8.7-2.5%200l-14.8-15.2-14.8%2015.2c-.7.7-1.8.7-2.5%200s-.7-1.8%200-2.5l16.1-16.4c.7-.7%201.8-.7%202.5%200l16%2016.4c.3.3.5.8.5%201.2z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E') rgba(0,0,0,0.3)  50% 45% no-repeat;
	background-size: 40% auto;
	text-indent: 100%;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
}
.page_top_fx.is-show a {
	opacity: 1;
	visibility: visible;
}



/* -----------------------------------------------------------------------------

 contents

----------------------------------------------------------------------------- */

.contents_wrapper {
	clear: both;
	max-width: 1230px;
	margin: 40px auto;
	padding: 0 15px;
}
.main_contents {
	flex: 1;
	max-width: 1200px;
	margin: 0 auto;
}


/* 背景横突き抜け：ブロック
------------------------------------------------------------- */

.content {
	clear: both;
	overflow: hidden;
	zoom: 100%;
}

.content__inner {
	max-width: 1230px;
	margin: 0 auto;
	padding: 40px 15px;
}
.content__inner + .content__inner {
	padding-top: 0;
}
.content__inner.content__inner--full {
	max-width: none;
	padding-left: 0;
	padding-right: 0;
}

.main_contents .content {
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
}

@media only screen and (min-width: 768px) {
	.contents_wrapper {
		display: flex;
		margin: 40px auto;
	}
	.side {
		width: 240px;
		margin-left: 40px;
	}
	.content__inner {
		padding: 80px 15px;
	}
}
@media only screen and (min-width: 768px) and (max-width: 800px) {
	.side {
		width: 200px;
	}
}



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

 メインコンテンツ

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

/* パンくず
-----------------------------------------------------------*/

.breadcrumb {
	clear: both;
	max-width: 1230px;
	margin: 20px auto 20px;
	padding: 0 15px;
	color: var(--color-gray-600);
	font-size: .875rem;
}
.breadcrumb li {
	display: inline-block;
	padding: 0 8px 0 0;
}


/* ページネーション/ページャー
-----------------------------------------------------------*/

.pagination {
	clear: both;
	position: relative;
	font-size: .875rem;
	line-height: 1.2;
}
.pagination span,
.pagination a {
	width: 2em;
	height: 2em;
	margin-right: .5em;
	padding: .25em;
	text-align: center;
	line-height: 1.25;
}
.pagination a {
	display: inline-block;
	border: 1px solid var(--color-gray-200);
	text-decoration: none;
}
.pagination a:hover {
	color: var(--color-white);
	background-color: var(--color-gray-100);
}
.pagination span {
	display: none;
}
.pagination .current {
	display: inline-block;
	padding: 6px 8px 5px 8px;
	border: 1px solid var(--color-gray-100);
	background-color: var(--color-gray-100);
}


/* sns
-----------------------------------------------------------*/

ul.sns__list {
	display: flex;
	justify-content: center;
	max-width: 1000px;
	margin: 0 12px 20px;
	padding-left: 0;
	line-height: 1;
}
ul.sns__list li {
	margin: 0 8px;
	list-style-type: none;
}

.sns a {
	display: block;
	text-align: center;
	text-decoration: none;
}
.sns a span {
	display: inline-block;
	width: 36px;
	height: 36px;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: auto 100%;
	text-indent: -9999px;
}
.sns a em {
	display: block;
	margin-top: 8px;
	font-size: .875rem;
	font-weight: normal;
}
.sns a:hover {
	opacity: 0.5;
	filter: alpha(opacity=50);
}
.sns li.fb a span {
	background-image: url(./image/common/icon_sns_fb.svg);
}
.sns li.tw a span {
	background-image: url(./image/common/icon_sns_tw.svg);
}
.sns li.insta a span {
	background-image: url(./image/common/icon_sns_insta.svg);
}
.sns li.pin a span {
	background-image: url(./image/common/icon_sns_pin.svg);
}
.sns li.line a span {
	background-size: 100% auto;
	background-image: url(./image/common/icon_sns_line.svg);
}
.sns li.linesq a span {
	background-image: url(./image/common/icon_sns_linesq.svg);
}


/* ボタンボックス
-----------------------------------------------------------*/

p.btn_box {
	clear: both;
	margin: 0;
	padding: 20px 0 30px;
	text-align: center;
}

.btn_box a ,
.btn_box label {
	display: inline-block;
	width: 280px;
	max-width: 100%;
	padding: .5em;
	background: var(--color-primary);
	color: var(--color-white);
	text-align: center;
	text-decoration: none;
}
.btn_box a:hover ,
.btn_box label:hover {
	background-color: var(--color-text);
}

/* LINE */
.btn_box.btn_line a {
	background: var(--color-line);
	color: var(--color-white);
}
.btn_box.btn_line a::before {
	content: '';
	display: inline-block;
	margin-right: 10px;
	margin-bottom: 2px;
	width: 1.5em;
	height: 1.45em;
	background: url(./image/common/icon_sns_linewh.svg) no-repeat;
	background-size: cover;
	vertical-align: middle;
}

/* TEL */
.btn_box.btn_tel a {
	background: var(--color-secondary);
	color: var(--color-white);
}
.btn_box.btn_tel a::before ,
.btn_box.btn_tel label::before {
	content: '';
	display: inline-block;
	margin-right: 10px;
	margin-bottom: 2px;
	width: 1.5em;
	height: 1.5em;
	background: url(./image/common/icon_tel03wh.svg) no-repeat;
	background-size: cover;
	vertical-align: middle;
}

/* cal */
.btn_box.btn_cal a {
	padding: 10px 30px;
}
.btn_box.btn_cal a::before {
	content: '';
	display: inline-block;
	margin-right: 10px;
	margin-bottom: 2px;
	width: 1.5em;
	height: 1.5em;
	background: url(./image/common/icon_cale_wh.svg) no-repeat;
	background-size: cover;
	vertical-align: middle;
}

/* animation parts
------------------------------------------------------------- */

/* fadein */
.fadein {
	opacity : 0;
	transform : translate(0, 50px);
	transition : all 800ms;
}
.fadein.scrollin {
	opacity : 1;
	transform : translate(0, 0);
}

.fadein.fast {
	opacity : 0;
	transform : translate(0, 50px);
	transition : all 250ms;
}
.fadein.fast.scrollin {
	opacity : 1;
	transform : translate(0, 0);
}

.fadein.left {
	opacity : 0;
	transform : translate(-100px, 0);
	transition : all 250ms;
}
.fadein.left.scrollin {
	opacity : 1;
	transform : translate(0, 0);
}


/* modal
------------------------------------------------------------- */

.modal_wrap input {
	display: none;
}
.modal_wrap label {
	text-decoration: none;
}
.modal_layer {
	display: flex;
	justify-content: center;
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999999;
	width: 100%;
	height: 100%;
	background-color: var(--layer_dark);
	opacity: 0;
	transition: opacity 0.5s, transform 0s 0.5s;
	transform: scale(0);
}
.modal_layer_close {
	position: absolute;
	cursor: pointer;
	width: 100%;
	height: 100%;
}
.modal_content {
	position: relative;
	align-self: center;
	width: 90%;
	max-width: 800px;
	max-height: 80%;
	transform: scale(0.3);
	transition: 0.25s;
}
.modal_close_button {
	position: fixed;
	cursor: pointer;
	top: -15px;
	right: -15px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--color-gray-900);
	color: var(--color-white);
	font-size: 40px;
	line-height: 32px;
	text-align: center;
}

.modal_content__inner {
	padding: 25px 25px;
	background-color: var(--color-gray-100);
	font-size: .875rem;
}
.modal_content h1 {
	margin-bottom: 20px;
	font-size: 1.125rem;
	text-align: center;
}
.modal_content h2 {
	margin-bottom: .75em;
}
.modal_content p {
	margin-bottom: 1em;
}

.modal_wrap input:checked + .modal_layer {
	opacity: 1;
	transform: scale(1);
	transition: opacity 0.5s;
}
.modal_wrap input:checked + .modal_layer .modal_content {
	transform: scale(1);
}



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

 投稿 post

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

/*------------------------------------------------------------------------------

 アーカイブ archive / blog

------------------------------------------------------------------------------*/

/* アーカイブ一覧表示 dl
-----------------------------------------------------------*/

.entry-explain__list dt {
	position: relative;
	clear: both;
	float: left;
	width: 120px;
}
.entry-explain__list dt img {
	width: 100%;
}
.entry-explain__list dd {
	min-height: 120px;
	margin-bottom: 20px;
	padding-bottom: 20px;
	padding-left: 140px;
	border-bottom: 1px dotted var(--color-gray-200);
}
.entry-explain__list dd:last-child {
	border-style: none;
}
.entry-explain__list .entry_txt {
	line-height: 1.4;
}

/* cate */
.entry-explain__list dt .cate_box {
	position: absolute;
	display: block;
	top: 0px;
	left: 0px;
	line-height: 1;
}
.entry-explain__list .cate_box a {
	display: inline-block;
	margin: 0 0 2px 0;
	padding: 4px 10px;
	background: var(--color-primary);
	color: var(--color-white);
	font-size: .75rem;
	text-decoration: none;
	line-height: 1.2;
	vertical-align: middle;
}

/* tag */
.entry-explain__list .tag_box a {
	display: inline-block;
	margin: 0 2px 0 0;
	font-size: .875rem;
	font-weight: bold;
	vertical-align: middle;
}
.entry-explain__list .tag_box a::before {
	content: '#';
}

@media only screen and (min-width: 768px) {
	.entry-explain__list dt {
		width: 180px;
	}
	.entry-explain__list dd {
		min-height: 180px;
		padding-left: 200px;
	}
}


/* アーカイブ一覧表示
-----------------------------------------------------------*/

.entry-vertical__list {
	max-height: 120px;
	overflow-x: hidden;
	overflow-y: auto;
	font-size: .875rem;
}
.entry-vertical__list dt {
	margin-top: 1em;
}
.entry-vertical__list dd {
	margin-top: .25em;
}
.entry-vertical__list .data_box {
	display: inline-block;
}
.entry-vertical__list .cate_box {
	display: inline-block;
	margin-left: 5px;
	line-height: 1.2;
}
.entry-vertical__list .cate_box a {
	display: inline-block;
	min-width: 4em;
	margin: 0 0 2px 0;
	padding: 4px 4px;
	background: var(--color-primary);
	color: var(--color-white);
	font-size: .75rem;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
}
.entry__title {
	display: block;
}
@media only screen and (min-width: 768px) {
	.entry-vertical__list dt {
		clear: both;
		float: left;
		display: flex;
		width: 10.5em;
		margin: 0;
		padding: 6px 0;
	}
	.entry-vertical__list .data_box {
		display: block;
	}
	.entry-vertical__list .cate_box {
		display: block;
	}
	.entry-vertical__list dd {
		margin: 0;
		padding: 6px 0 6px 11em;
	}
}


/* アーカイブ一覧表示 block
-----------------------------------------------------------*/

.entry-card__list {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}
.entry-card__list li {
	position: relative;
	flex-grow: 0;
	width: calc((100% - 15px) / 2);
}

.entry-card__list a {
	display: block;
	text-decoration: none;
}

.entry-card__list .thumb {
	display: block;
	margin-bottom: 15px;
}
.entry-card__list .thumb img {
	width: 100%;
	height: auto;
}

.entry-card__list .cate_box {
	position: absolute;
	display: block;
	top: -2px;
	right: -2px;
	line-height: 1.4;
}
.entry-card__list .cate_box a {
	display: inline-block;
	margin: 0 0 2px 0;
	padding: .25em;
	background: var(--color-primary);
	color: var(--color-white);
	font-size: .75rem;
	text-decoration: none;
	vertical-align: middle;
}

.entry-card__list em {
	display: block;
	position: relative;
	overflow: hidden;
	height: 2.8em;
	margin: 8px 0 8px;
	line-height: 1.4;
}
.entry-card__list em::before ,
.entry-card__list em::after {
	position: absolute;
	background: var(--color-white);
}
.entry-card__list em::before {
	content: '\FF65\FF65\FF65';
	bottom: 0;
	right: 0;
	padding-left: 3px;
}
.entry-card__list em::after {
	content: '';
	width: 100%;
	height: 100%;
}

.entry-card__list .entry_info {
	height: 1.2em;
	margin-bottom: 8px;
	font-size: .875rem;
	line-height: 1.2;
}
.entry-card__list .entry_txt {
	display: block;
	height: 5em;
	font-size: .875rem;
	line-height: 1.4;
}

@media only screen and (min-width: 768px) {
	.entry-card__list {
		gap: 20px;
	}
	.entry-card__list li {
		width: calc((100% - 60px) / 4);
	}
}

/*------------------------------------------------------------------------------

 記事 single / page

------------------------------------------------------------------------------*/

.entry_content {
	line-height: 1.8;
}

.entry_title {
	margin-bottom: 20px;
	padding: 10px 8px;
	border-bottom: 1px solid var(--color-gray-200);
	font-size: 140%;
	text-align: left;
	line-height: 1.8;
}


/* title 下
-----------------------------------------------------------*/

.entry_content .entry_info {
	margin-bottom: 10px;
	line-height: 1.2;
	font-size: .875rem;
}
.entry_content .entry_info p {
	margin: 0;
}

.entry_content .cate_box {
	float: left;
}
.entry_content .cate_box a {
	display: inline-block;
	margin: 0 0 2px 0;
	padding: 4px 15px;
	background: var(--color-primary);
	color: var(--color-white);
	text-decoration: none;
	vertical-align: middle;
}

.entry_content .data_box {
	padding: 0 8px;
	text-align: right;
}

.entry_content .data_box span {
	display: inline-block;
}

.entry_content .tag_box a {
	display: inline-block;
	margin: 0 2px 0 0;
	font-size: .875rem;
	font-weight: bold;
	vertical-align: middle;
}
.entry_content .tag_box a::before {
	content: '#';
}


/* 汎用
-----------------------------------------------------------*/

.entry_content p {
	margin-bottom: 1.6em;
}

.entry_content hr {
	margin-bottom: 1.6em;
}

.page_content hr {
	margin-top: 1.6em;
	margin-bottom: 1.6em;
}

.entry_content em {
	display: inline-block;
	font-weight: bold;
}


/* 記事内見出し ----------------------------- */

.entry_content h2 {
	position: relative;
	margin-bottom: 20px;
	font-size: 110%;
}

.entry_content h3 {
	margin-bottom: 20px;
	font-size: 110%;
}

.entry_content h4 {
	margin-bottom: 15px;
}

.entry_content h5 {
	margin-bottom: 15px;
}

.entry_content h6 {
	margin-bottom: 10px;
}


/* テーブル ----------------------------- */

.entry_content table {
	min-width: 70%;
	margin: 10px 0 30px 10px;
	border-collapse: collapse;
	text-align: left;
}
.entry_content table th {
	padding: 10px;
	border: 1px solid var(--color-gray-200);
	font-weight: bold;
}
.entry_content table td {
	padding: 10px;
	border: 1px solid var(--color-gray-200);
}


/* リスト ----------------------------- */

.entry_content ul {
	margin-bottom: 30px;
	padding-left: 30px;
	text-align: left;
}
.entry_content ul li {
	list-style-type: disc;
}

.entry_content ol {
	margin-bottom: 30px;
	padding-left: 30px;
	text-align: left;
}
.entry_content ol li {
	list-style-type: decimal;
}


/* 引用  ------------------------------- */
/* 引用じゃないけど引用と同じデザインにしたい時 */
.entry_content blockquote ,
.quote_area {
	margin: 20px 0 20px 10px;
	padding: 30px 20px 20px 40px;
	background: url('data:image/svg+xml,%3Csvg%20enable-background%3D%22new%200%200%20512%20512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%20width%3D%22512%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22%23ddd%22%3E%3Cpath%20d%3D%22m392.5%20445.4c66%200%20119.5-53.5%20119.5-119.5s-53.5-119.5-119.5-119.5c0%200%20.6-44.4%2036.6-108.3%204-12.8-3.1-26.4-15.9-30.4-9.1-2.9-18.7-.1-24.8%206.4-82.9%2090.7-115.4%20197.4-115.4%20251.8%200%2066%2053.5%20119.5%20119.5%20119.5z%22%2F%3E%3Cpath%20d%3D%22m119.5%20445.4c66%200%20119.5-53.5%20119.5-119.5s-53.5-119.5-119.5-119.5c0%200%20.6-44.4%2036.6-108.3%204-12.8-3.1-26.4-15.9-30.4-9.1-2.9-18.7-.1-24.8%206.4-82.9%2090.7-115.4%20197.4-115.4%20251.8%200%2066%2053.5%20119.5%20119.5%20119.5z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') var(--color-gray-100) no-repeat 10px 10px;
	background-size: 80px auto;
}

.entry_content blockquote p ,
.quote_area p {
	margin: 0;
}


/* 画像 ------------------------------- */

/* 投稿画像 */
img.size-full ,
img.size-large {
	margin-bottom: 10px;
}
.image_iblock {
	display: inline-block;
	margin: 10px 10px 20px;
	font-size: .75rem;
	vertical-align: top;
}
.image_iblock .wp-caption {
	position: relative;
	max-width: 100%;
	height: auto;
}
.image_iblock .wp-caption-text {
	position: absolute;
	bottom: -10px;
	width: 100%;
	margin-bottom: 0;
	padding: 5px;
	background: var(--layer_dark);
	color: var(--color-white);
	text-align: center;
}
.image_iblock .wp-caption-text a,
.image_iblock .wp-caption-text {
	font-size: 100%;
	color: var(--color-white);
}


/* 画像位置 */

img.alignright {
	display: block;
	margin: 0 0 0 auto;
}
img.alignleft {
	display: block;
	margin: 0 auto 0 0;
}
img.aligncenter {
	display: block;
	margin: 0 auto;
}
img.float-left {
	float: left;
}
img.float-right {
	float: right;
}
.wp-caption {
	text-align: center;
}
.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}


/* SNS share
-----------------------------------------------------------*/

.share_area {
	max-width: 600px;
	margin: 20px auto;
}
 
.share__list {
	display: flex;
}
.share__list li {
	width: 25%;
	padding: 2px;
}
.share__list li span {
	display: none;
}
.share__list li a {
	display: block;
	padding: 2px;
	border-radius: 50vh;
	color: var(--color-white);
	font-size: 14px;
	text-align: center;
	text-decoration: none;
}
.share__list li a:hover {
	opacity: .8;
}
.share__list li i {
	margin-right: .3em;
}
.share__list .tweet a {
	background: #55acee;
}
.share__list .line a {
	background: var(--color-line);
}
.share__list .facebook a {
	background: var(--color-fb);
}
.share__list .hatena a {
	background: #008fde;
}
.fa-hatena:before {
	font-family: Verdana;
	font-weight: bold;
	content: 'B!';
}


/* PREV NEXT
-----------------------------------------------------------*/

.p_navi {
	margin-bottom: 40px;
	padding: 20px 0;
	border-top: 1px solid var(--color-gray-200);
	border-bottom: 1px solid var(--color-gray-200);
	font-size: .875rem;
	line-height: 1.4;
}
.p_navi .prev {
	float: right;
	width: 50%;
	text-align: right;
}
.p_navi .prev div {
	padding: 0 15px 0 10px;
}
.p_navi .prev img {
	float: right;
	width: 100px;
	margin-left: 15px;
}

.p_navi .next {
	float: left;
	width: 50%;
}
.p_navi .next div {
	padding: 0 10px 0 15px;
	border-right: 1px solid var(--color-gray-200);
}
.p_navi .next img {
	float: left;
	width: 100px;
	margin-right: 15px;
}

.p_navi a {
	display: block;
	text-decoration: none;
}
.p_navi a span {
	display: block;
}
.p_navi a em {
	display: inline-block;
	margin-bottom: 8px;
	padding: 2px 10px;
	background: var(--color-gray-200);
	color: var(--color-white);
}
.p_navi a b {
	display: block;
	font-weight: normal;
}
.p_navi a:hover em {
	opacity: 0.7;
	filter: alpha(opacity=70);
}

@media only screen and (min-width: 768px) {
	.share_area {
		margin: 40px auto;
	}
	.share__list li span {
		display: inline-block;
	}	
	.image_iblock {
		width: 44%;
		width: auto;
	}
}


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

 ページ

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

/* タイトル
-----------------------------------------------------------*/

/* title */
.title_block {
	padding: 12vw 15px;
	background: no-repeat center center var(--color-gray-600);
	background-size: cover;
	color: var(--color-white);
	text-align: center;
}
.title_block.title_block--min {
	margin-bottom: 20px;
	padding: 0;
	background: none;
	color: var(--color-text);
}
.title_block--thought {
	background-image: url(./image/common/bg_title-thought.jpg);
}
.title_block--activity {
	background-image: url(./image/common/bg_title-activity.jpg);
}
.title_block--access {
	background-image: url(./image/common/bg_title-access.jpg);
}
.title_block--column {
	background-image: url(./image/common/bg_title-column2.jpg);
}
.title_block h1 ,
.title_block h2 {
	line-height: 1.4;
}
.title_block .title-line {
	display: inline-block;
	min-width: 12em;
	padding: .5em 0;
	border-top: 1px solid var(--color-white);
	border-bottom: 1px solid var(--color-white);
}
.title_block .ja {
	display: block;
	font-size: min(1.75rem,8vw);
	font-weight: normal;
}
.title_block .ja--large {
	font-size: min(2.5rem,10vw);
}

.title_block p {
	margin-top: 1em;
}

@media only screen and (min-width: 768px) {
	.title_block {
		padding: 100px 20px;
	}
}


/* テキスト
-----------------------------------------------------------*/

.text_block {
}
.text_block--message {
	padding: 20px 0;
}
.text_block p {
	margin-bottom: 1.8em;
}
.text_block p:last-child {
	margin-bottom: .4em;
}

.marker__txt {
	display: inline;
}
.marker__txt.yw {
	background: #faf6c6;
}
.marker__txt.ywh {
	background: linear-gradient(transparent 50%, #faf6c6 0%);
}

.color__rd {
	color: #C00;
}

.text__ls500 {
	padding-left: .5em;
	letter-spacing: .5em;
}
.text__ls200 {
	padding-left: .2em;
	letter-spacing: .2em;
}

.text__dots {
	padding-top: .5em;
	background-position: top left 0px;
	background-repeat: repeat-x;
	background-size: 1.0em .3em;
	background-image: radial-gradient(.15em .15em at center center,var(--color-text),var(--color-text) 100%,transparent,transparent);
}
.text__ls200 .text__dots {
	background-size: 1.2em 0.3em;
}
@media print {
	.text__dots {
		background: none;
		text-emphasis: circle;
		-webkit-text-emphasis: circle;
	}
}


/* table
------------------------------------------------------------- */

.tbl {
	width: 100%;
	margin: 0 auto;
	border-collapse: collapse;
	border-top: 1px solid var(--color-gray-200);
}
.tbl th {
	padding: 15px 10px;
	border-bottom: 1px solid var(--color-gray-200);
	text-align: center;
	white-space: nowrap;
}
.tbl td {
	padding: 15px 10px;
	border-bottom: 1px solid var(--color-gray-200);
}

@media only screen and (max-width: 767px) {
	.tbl tr ,.tbl th,.tbl td{
		display: block;
	}
	.tbl th {
		padding-bottom: 0;
		border-bottom: none;
		text-align: left;
	}
	.tbl td {
		padding-top: 5px;
	}
}


/* 画像関係
-----------------------------------------------------------*/

.fig_block img {
	border-radius: 20px;
}

.figLeft,
.figRight {
	display: block;
	margin: 0 auto 15px;
	text-align: center;
}

.fig__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 -5px 20px;
}
.fig__list li {
	flex-grow: 0;
	width: 50%;
	padding: 0 5px 10px;
}
.fig__list.sepa01 li {
	width: 100%;
}
@media only screen and (min-width: 768px) {
	.figLeft {
		float: left;
		margin-right: 30px;
		margin-bottom: 10px;
	}
	.figRight {
		float: right;
		margin-left: 20px;
		margin-bottom: 10px;
	}
	.fig__list {
		margin: 0 -10px;
	}
	.fig__list li {
		padding: 0 10px 20px;
	}
	.fig__list.sepa01 li {
		width: 70%;
	}
	.fig__list.sepa02 li {
		width: 50%;
	}
	.fig__list.sepa03 li {
		width: 33.33333%;
	}
	.fig__list.sepa04 li {
		width: 25%;
	}
}



/* -----------------------------------------------------------------------------

 index

----------------------------------------------------------------------------- */

/* cover
-----------------------------------------------------------*/

.cover {
	position: relative;
}

.cover_catch {
	position: absolute;
	left: 0;
	top: 8%;
	width: 100%;
	color: var(--color-white);
	font-size: min(.875rem,3vw);
	z-index: 1;
}
.cover_catch .catchs {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	width: 560px;
	max-width: 80%;
	margin: 0 auto;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}
.cover_catch .catch01 {
	margin-bottom: .75em;
	font-size: min(2.5rem,6vw);
	font-weight: normal;
}
.cover_catch .catch02 {
	margin-bottom: 1.5em;
	line-height: 4;
}

.cover_image {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100vh;
}
.cover_image img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	top: 0;
	left: 0;
}

.cover_scroll {
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
	color: var(--color-white);
	text-align: center;
}
.cover_scroll span {
	display: block;
}
.cover_scroll span.line {
	width: 1px;
	height: 40px;
	margin: 0 auto;
	background-color: var(--color-white);
}

@media only screen and (min-width: 768px) {
	.cover_image {
		height: auto;
		aspect-ratio: 7 / 4;
	}
}


/* activity
-----------------------------------------------------------*/

.activity__image .image_box {
	position: relative;
	overflow: hidden;
	display: block;
	width: 100%;
	aspect-ratio: 3 / 4;
}
.activity__image .image_box img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	top: 0;
	left: 0;
}

.activity__inner {
	padding: 40px 0;
}
.activity__title {
	margin-bottom: .5em;
	font-size: min(1.625rem,6vw);
	font-weight: normal;
	line-height: 1.4;
}

@media only screen and (min-width: 768px) {
	.activity__item {
		display: flex;
	}
	.activity__item.reverse {
		flex-direction: row-reverse;
	}
	.activity__image ,
	.activity__text {
		flex: 0 0 50%;
	}
	.activity__image .image_box {
		aspect-ratio: 1 / 1;
	}
	.activity__text {
		display: flex;
		align-items: center;
		font-size: .876rem;
	}
	.activity__inner {
		padding: 40px;
	}
}



/* access
-----------------------------------------------------------*/

.access {
	margin-bottom: 40px;
	text-align: center;
	font-size: .8125rem;
}
.access__title {
	margin-bottom: 2em;
	font-weight: normal;
}
.access p:not(:last-child) {
	margin-bottom: 1.5em;
}



/* -----------------------------------------------------------------------------

 LP

----------------------------------------------------------------------------- */

.lp_contents {
	max-width: 780px;
	margin: 0 auto;
	padding-bottom: 100px;
}

.fixbtn {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
}
.fixbtn--lp01 {
	padding: 0 0 15px;
}
.fixbtn--lp01 .btn_box {
	padding: 0;
}

.btn_box.btn_box--lp01 a {
	width: 480px;
	max-width: 80%;
	border-radius: 8px;
	background-color: #76263f;
	color: var(--color-white);
	font-size: min(1.25rem,5vw);
	font-weight: 600;
}
.btn_box.btn_box--lp01 a:hover {
	background-color: #91425b;
}

.lp_contents .splide__arrow {
	background: var(--color-white);
}
.lp_contents .splide__arrow svg {
}


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

 汎用CSS

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

/* テキスト関係 --------------------- */

.attention { /* 注意色(基本赤) */
	color: var(--color-dred);
}

.bold {
	font-weight: bold;
}

.text_SS {
	font-size: 75%;
}

.text_S {
	font-size: 86%;
}

.text_L {
	font-size: 120%;
}

.text_LL {
	font-size: 150%;
}

.text_LLL {
	font-size: 180%;
}


/* テキスト位置設定 ---------------- */

.entry_content p.center ,
.center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.left {
	text-align: left;
}

.right {
	text-align: right;
}


/* マージン関係 ------------------- */

.m0 {
	margin: 0;
}

.m10 {
	margin: 10px;
}

.mT10 {
	margin-top: 10px;
}

.mT20 {
	margin-top: 20px;
}

.mB5 {
	margin-bottom: 5px;
}

.mB10 {
	margin-bottom: 10px;
}

.mB20 {
	margin-bottom: 20px;
}

.mR5 {
	margin-right: 5px;
}

.mR10 {
	margin-right: 10px;
}

.mR20 {
	margin-right: 20px;
}

.mL5 {
	margin-left: 5px;
}

.mL10 {
	margin-left: 10px;
}

.mL20 {
	margin-left: 20px;
}

.mRL10 {
	margin: auto 10px;
}

/*　パディング関係 ------------------ */
.p0 {
	padding: 0;
}

.p10 {
	padding: 10px;
}

.pT5 {
	padding-top: 5px;
}

.pT10 {
	padding-top: 10px;
}

.pB10 {
	padding-bottom: 10px;
}

.pR10 {
	padding-right: 10px;
}

.pL10 {
	padding-left: 10px;
}

.pB20 {
	padding-bottom: 20px;
}

.pRL10 {
	padding: auto 10px;
}

/* フロート関係 ------------------- */

.floatLeft {
	float: left;
}

.floatRight {
	float: right;
}

.clear,
.clearBoth {
	clear: both;
}

.clearfix {
	/zoom : 1; /* IE6-7 */
}
.clearfix:after { /* modern */
	content : '';
	display : block;
	clear : both;
	height: 0;
}


@media only screen and (max-width: 767px) {
	.sp_hide {
		display: none;
	}
	.sp_center {
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}
}
@media only screen and (min-width: 768px) {
	.pc_hide {
		display: none;
	}
	.pc_center {
		margin-left: auto;
		margin-right: auto;
		text-align: center;
	}
}
