@charset "utf-8";

/* ===================================================================
 style info : コンテンツエリア関係 他

fonts
 10px = 77%     11px = 85%     12px = 93%     13px = 100%
 14px = 108%    15px = 116%    16px = 123.1%  17px = 131%
 18px = 138.5%  19px = 146.5%  20px = 153.9%  21px = 161.6%
 22px = 167%    23px = 174%    24px = 182%    25px = 189%
 26px = 197%
=================================================================== */

/*----------------------------------------------------
	共通
----------------------------------------------------*/
/* スクロールバーの有無によるズレ対策 */
/*html {
	overflow-y:scroll;
	width:100%;
}*/

body {
	font-family: "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
	/*background-color:green;*/
	color: #333333;
}

.en {
	font-family: "Inter", sans-serif;
}

input,
textarea {
	font-family: "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
}

/* PC */
@media print,
screen and (min-width:480px) {
	.sp_none {
		display: block !important;
	}

	.pc_none {
		display: none !important;
	}
}

/* スマホ */
@media print,
screen and (max-width:479px) {
	.sp_none {
		display: none !important;
	}

	.pc_none {
		display: block !important;
	}
}

/* リンク
----------------------------------------------------*/
a {
	color: #333;
	text-decoration: none;
}

a:link {
	color: #333;
}

a:visited {
	color: #333;
}

a:hover {
	color: #333;
}

a:active {
	color: #333;
}

article .container section a {
	color: #333;
	text-decoration: none;
}

article .container section a:link {
	color: #333;
	text-decoration: underline;
}

article .container section a:visited {
	color: #333;
}

article .container section a:hover {
	color: #CC3B53;
	text-decoration: none;
}

article .container section a:active {
	color: #333;
}


/* ===================================================================
 style info : ヘッダーやフッターなどサイト内共通
=================================================================== */

#wrapper {
	float: left;
	width: 100%;
	position: absolute;
}

#bodycover {
	display: none;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(5px);
	z-index: 200;
}

/*----------------------------------------------------
	slidenavi
----------------------------------------------------*/
#slidenavi {
	max-width: 610px;
	width: 95%;
	height: 100%;
	overflow-y: scroll;
	background-color: #fff;
	box-shadow: -2px 0 30px rgba(0, 0, 0, 0.1);
	color: #FFF;
	display: none;
	position: absolute;
	right: -90%;
	top: 0;
	z-index: 999999;
}

@media screen and (max-width:768px) {
	#slidenavi {
		width: 100%;
	}
}

.switch_box {
	display: grid;
	grid-template-rows: auto;
	grid-template-columns: 1fr auto;
	gap: 0 1em;
	padding-left: 9%;

	& #switch2 {
		grid-column: 2/3;
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-direction: column;

		width: 95px;
		height: 95px;
		padding: 24px .5em 20px;
		box-sizing: border-box;
		border: none;
		background-color: #03B2A7;
		cursor: pointer;
		position: relative;
		transition: all .3s ease;

		& span {
			display: block;
			width: 35%;
			height: 1px;
			background-color: #fff;
		}

		& span:nth-of-type(1) {
			transform: translateY(12px) rotate(-45deg);
		}

		& span:nth-of-type(2) {
			opacity: 0;
		}

		& span:nth-of-type(3) {
			-webkit-transform: translateY(-12px) rotate(45deg);
			transform: translateY(-12px) rotate(45deg);
		}

		& span:nth-of-type(4) {
			width: fit-content;
			height: 1em;
			color: #ffffff;
			background: none;
			font-family: "Inter",
				sans-serif;
			font-size: 123%;
			text-align: center;
		}

		@media(hover: hover) {
			&:hover {
				background-color: #D0E877;
			}
		}

		@media screen and (max-width:768px) {
			width: 72px;
			height: 72px;
			padding: 17px .5em 16px;

			& span:nth-of-type(1) {
				transform: translateY(9px) rotate(-45deg);
			}

			& span:nth-of-type(3) {
				-webkit-transform: translateY(-9px) rotate(45deg);
				transform: translateY(-9px) rotate(45deg);
			}

			& span:nth-of-type(4) {
				font-size: 13px;
			}
		}
	}
}

.search_box {
	padding: 40px 9% 0;

	& .searchform {
		display: flex;
		justify-content: flex-start;
		align-items: center;

		width: 100%;
		height: 50px;
		padding: 5px 2%;
		background-color: #fff;
		border-radius: 50px;
		border: 3px solid #03B2A7;
		box-sizing: border-box;
		overflow: hidden;

		& input[type="text"] {
			width: 80%;
			height: 30px;
			border: none;
			background-color: #fff;
			border-radius: 0;
			font-size: 16px;
		}

		/* ChromeとOpera用のハック*/
		@media all and (-webkit-min-device-pixel-ratio:0) and (min-resolution: .001dpcm) {
			& input[type="text"] {
				width: calc(100% - 35px);
			}
		}

		& input[type="image"] {
			width: auto;
			height: 35px;
			-webkit-appearance: none;
			border-radius: 0;
		}
	}

	@media screen and (max-width:768px) {
		padding: 20px 5% 0;
	}
}

#slidenavi .button_list {
	display: grid;
	grid-template-rows: auto;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	padding: 40px 9% 0;

	& .button_list_item_a {
		display: flex;
		justify-content: center;
		align-items: center;

		height: 100%;
		padding: 0.8em .3em 0.6em;
		box-sizing: border-box;
		border: 2px solid #03B2A7;
		background-color: #03B2A7;
		border-radius: 7px;
		color: #fff;
		font-size: 16px;
		font-weight: 500;
		text-align: center;
		transition: all 0.3s ease;
	}

	@media(hover:hover) {
		& .button_list_item_a:hover {
			background-color: #fff;
			color: #03B2A7;
		}
	}

	@media screen and (max-width:768px) {
		padding: 20px 5% 0;

		& .button_list_item_a {
			font-size: 15px;
		}
	}
}

#slidenavi .dropdown {
	padding: 30px 9% 0;
	box-sizing: border-box;

	& .dropdown_item_a {
		display: block;
		width: 100%;
		padding: 24px 0 22px;
		border-top: 1px solid #D9D9D9;
		color: #000;
		font-size: 20px;
		font-weight: 700;
		position: relative;
	}

	& .parent .icon {
		display: block;
		content: "";
		display: inline-block;
		width: 12px;
		height: 2px;
		background-color: #000;
		position: absolute;
		top: 30px;
		right: 20px;
		transition: all 0.3s ease;

		&:before {
			content: "";
			display: inline-block;
			width: 2px;
			height: 12px;
			background-color: #000;
			position: absolute;
			top: -5px;
			right: 5px;
			transition: all 0.3s ease;
		}
	}

	& .selected .icon {
		top: 30px;

		&:before {
			opacity: 0;
		}
	}

	& .parent .dropdown_item_a {}

	& .parent ul {
		display: none;
		position: relative;
	}

	@media screen and (max-width:768px) {
		padding: 15px 5% 0;

		& .dropdown_item_a {
			padding: 15px 0 16px;
			font-size: 16px;
		}
	}
}

#slidenavi nav .dropdown .parent ul {
	padding: 0 0 20px;
	box-sizing: border-box;
}

#slidenavi nav .dropdown .parent ul li {
	background-color: #fff;
}

#slidenavi nav .dropdown .parent ul li:first-child {
	/* border-top: 1px solid #4f4f4f; */
}

#slidenavi nav .dropdown .parent ul li:last-child {
	border-bottom: none;
}

#slidenavi nav .dropdown .parent ul li a {
	display: block;
	padding: 16px 1em;
	font-size: 16px;
	font-weight: 500;

	@media screen and (max-width:768px) {
		padding: 10px 1em;
	}
}

#slidenavi #sns_list {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 25px 9%;

	& .sns_list_item {
		display: block;
		width: 38px;

		img {
			width: 100%;
		}
	}

	& ._youtube {
		width: 45px;
	}

	@media screen and (max-width:768px) {
		padding: 25px 6%;

		& .sns_list_item {
			width: 30px;
		}
	}
}

#slidenavi nav #close {
	width: 82%;
	height: 41px;
	line-height: 41px;
	margin: 10px auto;
	border: 1px solid #000;
	display: block;
	background-color: #fff;
	text-align: center;

	@media screen and (max-width:768px) {
		width: 90%;
		margin: 20px auto;
	}
}

/*----------------------------------------------------
	ichatch
----------------------------------------------------*/
#icatch {
	width: 100%;
	height: 100px;
	background: url('../img/common/bg_slider.png') repeat;
	text-align: center;
	font-size: 0;
}

#icatch>img {
	margin: 0 auto;
	width: 100%;
	max-width: 1180px;
}

@media screen and (max-width:768px) {
	#icatch {
		/*width:90%;*/
		height: auto;
		margin: 50px auto 5%;
		background: none;
		text-align: center;
	}

	#icatch>img {
		margin: 0 auto;
		width: 100%;
	}

	#icatch div.slider {
		margin: 0 !important;
	}
}

/*----------------------------------------------------
	contents
----------------------------------------------------*/
article {
	width: 980px;
	margin: 28px auto 0 auto;
	padding-bottom: 40px;
	background-color: #FFF;
}

article header nav ul li {
	float: left;
}

article header {
	height: 64px;
}

article .container {
	width: 980px;
	margin: 28px auto 0 auto;
	overflow-wrap: break-word;
	word-wrap: break-word;
}

article .container section {
	width: 732px;
	float: left;
	margin-bottom: 30px;
}

article .container section h1 {
	width: 100%;
	padding: 20px 0 16px;
	border-bottom: 3px solid #CC3B53;
	background-color: #F5F5F5;
	font-size: 174%;
	font-weight: normal;
	text-indent: 1em;
	margin-bottom: 1em;
}

article .container section h2 {
	position: relative;
	padding-bottom: .3em;
	text-indent: .5em;
	border-bottom: 3px solid #ddd;
	margin-bottom: .7em;
	font-size: 138.5%;
	font-weight: normal;
}

article .container section h2::after {
	position: absolute;
	bottom: -3px;
	left: 0;
	z-index: 2;
	content: '';
	width: 40%;
	height: 3px;
	background-color: #e18a98;
}

article .container section h3 {
	border-left: 3px solid #e18a98;
	font-weight: normal;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0.75em;
	font-size: 123.1%;
	margin-top: 40px;
	margin-bottom: .7em;
	padding-top: 0.2em;
	line-height: 1;
}

article .container aside {
	width: 220px;
	float: right;
}

article .container aside div {
	height: 51px;
	/*line-height:51px;
	text-align:center;
	background-color:#C13B50;
	color:#FFF;
	font-size:161.6%;
	font-family:"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	border-radius:10px 10px 0 0;
	-webkit-border-top-left-radius:10px;
    -webkit-border-top-right-radius:10px;
    -moz-border-radius-topleft:10px;
    -moz-border-radius-topright:10px;*/
	/*background-image:url('../img/common/txt_aside_guidance.png');*/
}

/* 過去の記事、カテゴリ（POSTページ） */
article .container aside div.archive,
article .container aside div.category {
	height: 31px;
	line-height: 31px;
	text-indent: 10px;
	background-color: #FFF;
	color: #C13B50;
	font-size: 108%;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	border-bottom: 1px solid #C13B50;
}

article .container aside div.topics {
	height: 68px;
}

/* ===================================================================
 style info : コンテンツエリア関係 他

fonts
 10px = 77%     11px = 85%     12px = 93%     13px = 100%
 14px = 108%    15px = 116%    16px = 123.1%  17px = 131%
 18px = 138.5%  19px = 146.5%  20px = 153.9%  21px = 161.6%
 22px = 167%    23px = 174%    24px = 182%    25px = 189%
 26px = 197%
=================================================================== */


article .container aside ul {
	margin-bottom: 50px;
}

article .container aside ul li {
	border-bottom: 1px dotted #C13B50;
	list-style: none;
}

article .container aside ul li a {
	width: 200px;
	height: 100%;
	display: block;
	padding: 12px 10px;
}

article .container aside ul li a:hover {
	background-color: #FCF5F6;
	color: #CC3B53;
}

article .container aside ul li.child a {
	width: 200px;
	height: 100%;
	display: block;
	padding: 12px 10px 12px 20px;
}

article .container aside a img {
	margin-bottom: 20px;
}

article .container aside a img:hover {
	opacity: 0.7;
}

@media screen and (max-width:768px) {
	article {
		width: 100%;
		margin-top: 0;
		margin-bottom: 60px;
	}

	article header {
		display: none;
	}

	article .container {
		width: 90%;
		margin: 0 auto;
	}

	article .container section {
		width: 100%;
		float: none;
	}

	article .container section h1 {
		padding: 10px 3% 4px 3%;
		width: 94%;
		border-bottom: none;
		text-indent: 0;
		margin-bottom: 0;
	}

	article .container aside {
		display: none;
	}

	article .container div#tabA {
		display: block !important;
	}
}

/* パンくずリスト
----------------------------------------------------*/
#pankuzu {
	width: 100%;
	background-color: #F4F4F4;
}

#pankuzu ul {
	width: 960px;
	margin: 0 auto 20px auto;
	padding: 8px 0;
}

#pankuzu ul li {
	display: inline;
	list-style: none;
}

#pankuzu ul li:after {
	content: " > ";
}

#pankuzu ul li:last-child:after {
	content: " ";
}

#pankuzu_sp {
	display: none;
}

@media screen and (max-width:768px) {
	#pankuzu ul {
		width: 100%;
		padding: 8px;
		box-sizing: border-box;
	}
}

@media screen and (max-width:768px) {
	#pankuzu {
		display: none;
	}

	#pankuzu_sp {
		width: 100%;
		background-color: #F4F4F4;
		display: block;
	}

	#pankuzu_sp ul {
		margin: 0 auto 20px auto;
		width: 94%;
		padding: 0 3% 10px 3%;
	}

	#pankuzu_sp ul li {
		display: inline;
		list-style: none;
		width: auto;
		margin: 0;
		background-color: transparent;
	}

	#pankuzu_sp ul li:after {
		content: " > ";
	}

	#pankuzu_sp ul li:last-child:after {
		content: " ";
	}
}

/*追加設定==============================================================================================================================================*/
p {
	font-size: 100%;
	line-height: 1.7;
	color: #333333;
}

blockquote.alignleft,
.wp-caption.alignleft,
img.alignleft {
	margin: 1.3em 0.8em 1.6em 0px;
}

blockquote.alignright,
.wp-caption.alignright,
img.alignright {
	margin: 1.3em 0 1.6em 0.8em;
}

blockquote.aligncenter,
.wp-caption.aligncenter,
img.aligncenter {
	margin: 1.3em 0.8em 1.6em;
	display: block;
	margin-right: auto;
	margin-left: auto;
}

.wp-caption {
	max-width: 100%;
	height: auto;
	text-align: center;
	padding-top: 0.2em;
	margin: 0.6em;
}

.wp-caption .wp-caption-text {
	font-size: 93%;
	padding: 0 0.2em 0.3em;
	margin: 0;
}

.mail_at {
	display: inline;
	width: 1em;
	height: 1em;
}

.mail_at:before {
	content: '＠';
}

/*-----------------------------
ギャラリー
------------------------------*/
.gallery {
	overflow: hidden;
}

.gallery-item {
	float: left;
	margin: 1.3em 0.8em 0.4em 0px;
}

.gallery-icon {
	text-align: center;
}

.gallery-caption {
	font-size: 93%;
	padding: 0.3em;
	text-align: center;
}

.gallery-columns-1 .gallery-item {
	width: 100%;
	margin-right: 0;
}

.gallery-columns-2 .gallery-item {
	width: 49%;
	margin-right: 1%;
}

.gallery-columns-3 .gallery-item {
	width: 32%;
	margin-right: 1%;
}

.gallery-columns-4 .gallery-item {
	width: 24%;
	margin-right: 1%;
}

/* color
   ========================================================================== */
.color-red {
	color: #CC3B53;
}

/* fontsize
   ========================================================================== */
.text06 {
	font-size: 0.6em;
}

.text07 {
	font-size: 0.7em;
}

.text08 {
	font-size: 0.8em;
}

.text09 {
	font-size: 0.9em;
}

.text10 {
	font-size: 1em;
}

.text11 {
	font-size: 1.1em;
}

.text12 {
	font-size: 1.2em;
}

.text13 {
	font-size: 1.3em;
}

.text14 {
	font-size: 1.4em;
}

.text15 {
	font-size: 1.5em;
}

.text16 {
	font-size: 1.6em;
}

.text17 {
	font-size: 1.7em;
}

.text18 {
	font-size: 1.8em;
}

.text19 {
	font-size: 1.9em;
}

.text20 {
	font-size: 2em;
}

.lh16 {
	line-height: 1.6;
}

/* image
   ========================================================================== */
img {
	vertical-align: bottom;
	line-height: 1.0;
	max-width: 100%;
	height: auto;
}

table th img,
table td img {
	vertical-align: middle;
}

/* ClearFix
   ========================================================================== */
.clear {
	clear: both;
}

/* modern browsers */
.clearfix:after,
.fBox:after,
#contents-in:after {
	content: "";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

/* IE7 */
.clearfix,
.fBox,
#contents-in {
	display: inline-block;
}

/* legacy IE */
* html .clearfix,
* html .fBox,
* html #contents-in {
	height: 1%;
}

.clearfix,
.fBox,
#contents-in {
	display: block;
}

/* padding
   ========================================================================== */
.d-block {
	display: block;
}

.d-inblock {
	display: inline-block;
}

.d-inline {
	display: inline;
}

/* float
   ========================================================================== */
.fr {
	float: right;
}

.fl {
	float: left;
}

ul.fBox li {
	float: left;
	display: inline;
}

.in-block {
	letter-spacing: -.40em;
}

.in-block li,
.in-block dt,
.in-block dd {
	display: inline-block;
	*display: inline;
	*zoom: 1;
	letter-spacing: normal;
	vertical-align: top;
}

/* text style
   ========================================================================== */
.text-bold {
	font-weight: bold;
}

.text-c {
	text-align: center;
}

.text-l {
	text-align: left;
}

.text-r {
	text-align: right;
}

/* margin
   ========================================================================== */
.mb0 {
	margin-bottom: 0 !important;
}

.mb5 {
	margin-bottom: 5px !important;
}

.mb10 {
	margin-bottom: 10px !important;
}

.mb15 {
	margin-bottom: 15px !important;
}

.mb20 {
	margin-bottom: 20px !important;
}

.mb25 {
	margin-bottom: 25px !important;
}

.mb30 {
	margin-bottom: 30px !important;
}

.mb35 {
	margin-bottom: 35px !important;
}

.mb40 {
	margin-bottom: 40px !important;
}

.mb45 {
	margin-bottom: 45px !important;
}

.mb50 {
	margin-bottom: 50px !important;
}

.mb55 {
	margin-bottom: 55px !important;
}

.mb60 {
	margin-bottom: 60px !important;
}

.mb65 {
	margin-bottom: 65px !important;
}

.mb70 {
	margin-bottom: 70px !important;
}

.mb75 {
	margin-bottom: 75px !important;
}

.mb100 {
	margin-bottom: 100px !important;
}

.mr0 {
	margin-right: 0 !important;
}

.mr5 {
	margin-right: 5px !important;
}

.mr10 {
	margin-right: 10px !important;
}

.mr15 {
	margin-right: 15px !important;
}

.mr20 {
	margin-right: 20px !important;
}

.mr30 {
	margin-right: 30px !important;
}

.mr40 {
	margin-right: 40px !important;
}

.mr50 {
	margin-right: 50px !important;
}

.ml5 {
	margin-left: 5px !important;
}

.ml10 {
	margin-left: 10px !important;
}

.ml15 {
	margin-left: 15px !important;
}

.ml20 {
	margin-left: 20px !important;
}

.ml30 {
	margin-left: 30px !important;
}

.ml40 {
	margin-left: 40px !important;
}

.ml50 {
	margin-left: 50px !important;
}

.ml60 {
	margin-left: 60px !important;
}

.mt0 {
	margin-top: 0 !important;
}

.mt5 {
	margin-top: 5px !important;
}

.mt10 {
	margin-top: 10px !important;
}

.mt15 {
	margin-top: 15px !important;
}

.mt20 {
	margin-top: 20px !important;
}

/* padding
   ========================================================================== */
.pt0 {
	padding-top: 0 !important;
}

.pt30 {
	padding-top: 30px !important;
}

.pt40 {
	padding-top: 40px !important;
}

.pt50 {
	padding-top: 50px !important;
}

.pl10 {
	padding-left: 10px !important;
}

.pb15 {
	padding-bottom: 15px !important;
}

.pb20 {
	padding-bottom: 20px !important;
}

.pb30 {
	padding-bottom: 30px !important;
}

/*追加設定ここまで==============================================================================================================================================*/
article .container section .spBox {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 20px;
	margin-left: 0;
}

article .container section .contentsBox01 {
	margin-bottom: 50px;
}

article .container section .contentsBox02 {
	margin-right: 15px;
	margin-left: 15px;
}

article .container section .contentsBox02 li {
	list-style-type: none;
}

article .container section .contentsBox03 {
	padding-left: 20px;
}

article .container section .cIndex {
	font-size: 146.5%;
	margin: 0 0 20px 0;
	color: #cd3c54;
}

article .container section .entry-content ul li {
	color: #cd3c54;
	font-size: 108%;
	line-height: 192%;
}

.inyo {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-style: oblique;
	margin: 2em;
}

@media screen and (max-width:479px) {
	article .container section .table_wrap1 {
		box-sizing: border-box;
		overflow-x: scroll;
		-webkit-overflow-scrolling: touch;
	}
}
