@charset "UTF-8";
/*
Theme Name: WP14
Description: 
Version: 1.0
Author: Shirokuma Systems LLC.
*/

/* Basic Tag Setting
------------------------- */
* {
	margin: 0px;
	padding: 0px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	word-break: break-word;
}
:root {
	--gray: #999;
	--silver: #aaa;
	--pale-gray: #f8f8f4;
	--gold: #ab8c42;
	--bright-gold: #c9a95e;
	--navy: #000a3d;
	--bright-navy: #001998;
	--dull-blue: #3f6cb7;
	--blue: #3851a2;
	--pale-blue: #e5f1ff;
	--vivid-red: #e00000;
	--red: #c00;
	--enji: #900;
	--sky: #6d98d8;
	--pink: #ff4479;
	--green: #74d3a3;
	--mint-green: #81d5e7;
	--canary: #ffdc1c;
}
body {
	position: relative;
	letter-spacing: 1px;
	font-family:
		"游ゴシック Medium", "Yu Gothic Medium",
		"游ゴシック体", "YuGothic",
		"ヒラギノ角ゴシック", "Hiragino Sans",
		"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN",
		"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
		"メイリオ", "Meiryo",
		sans-serif;
	font-weight: 500;
	font-feature-settings: "palt";
	font-size: 16px;
}
h1, h2, h3, h4, h5, h6 {
	font-size: 16px;
}
address, em {
	font-style: normal;
}
.outfit {
	font-family:
		"Outfit",
		"游ゴシック Medium", "Yu Gothic Medium",
		"游ゴシック体", "YuGothic",
		"ヒラギノ角ゴシック", "Hiragino Sans",
		"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN",
		"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
		"メイリオ", "Meiryo",
		sans-serif;
}
.notoSans {
	font-family:
		"Noto Sans JP",
		"游ゴシック Medium", "Yu Gothic Medium",
		"游ゴシック体", "YuGothic",
		"ヒラギノ角ゴシック", "Hiragino Sans",
		"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN",
		"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
		"メイリオ", "Meiryo",
		sans-serif;
}

/* SVG
------------------------- */
.svg-symbol {
	position: absolute;
	width: 0;
	height: 0;
}
.svg-instance {
	width: 100%;
	height: auto;
}

/* Up Button
------------------------- */
#up-button {
	z-index: 10;
	display: none;
	width: 40px;
	height: 40px;
	position: fixed;
	right: 10px;
	bottom: 10px;
}
#up-button .svg-up-path {
	fill: #fff;
}
#up-button .svg-up-rect {
	transition: 0.4s;
	fill: var(--navy);
}
#up-button:hover .svg-up-rect {
	fill: var(--blue);
}
/* over footer */
#up-button.is-over-footer .svg-up-path {
	fill: #fff;
}
#up-button.is-over-footer .svg-up-rect {
	fill: var(--blue);
}
#up-button.is-over-footer:hover .svg-up-rect {
	fill: var(--sky);
}

#returnToTop {
	width: 100%;
	margin: 0;
	text-align: center;
}
.toTop_button {
	transition: 0.4s;
	text-decoration: none;
	letter-spacing: 1px;
	font-weight: 700;
	font-size: 17px;
	color: var(--navy);
}
.toTop_button:before {
	content: "";
	display: inline-block;
	width: 15px;
	height: 15px;
	margin: 0 5px 0 0;
	background-color: var(--navy);
	mask: url("./img/icon/icon_totop.svg") no-repeat 50% 50% / contain;
	-webkit-mask: url("./img/icon/icon_totop.svg") no-repeat 50% 50% / contain;
	vertical-align: -2px;
}
.toTop_button:hover {
	color: var(--blue);
}
.toTop_button:hover:before {
	background-color: var(--blue);
}


/* Edit Link
------------------------- */
.edit-link {
	width: 300px;
	margin: 20px auto 0;
}
.edit-link a {
	transition: 0.4s;
	display: block;
	padding: 9px 0 7px 30px;
	background-color: #000;
	text-indent: 20px;
	text-decoration: none;
	text-align: center;
	color: #fff;
}
.edit-link a:hover {
	background-color: #666;
}
.edit-link a:after {
	content: "";
	display: inline-block;
	width: 15px;
	height: 15px;
	margin: 0 0 0 30px;
	background-color: #fff;
	mask: url("./img/icon/gt_white.svg") no-repeat 50% 50% / contain;
	-webkit-mask: url("./img/icon/gt_white.svg") no-repeat 50% 50% / contain;
	vertical-align: -2px;
}

/* Login
------------------------- */
#log-in {
	background-color: #000;
	text-align: right;
	color: #fff;
}
#log-in p {
	padding: 16px 0 13px 0;
}
#log-in a {
	display: inline-block;
	padding: 0 70px 0 10px;
	text-decoration: none;
	color: #fff;
}
#log-in a:after {
	content: "";
	display: inline-block;
	width: 25px;
	height: 25px;
	margin: 0 10px 0 3px;
	background-color: #fff;
	mask: url("./img/icon/icon_sign_in.svg") no-repeat 50% 50% / contain;
	-webkit-mask: url("./img/icon/icon_sign_in.svg") no-repeat 50% 50% / contain;
	vertical-align: -5px;
}

/* Menu Button
------------------------- */
#menu-button {
	width: 24px;
	height: 24px;
}
#menu-button2 {
	display: none;
	position: absolute;
	top: 5px;
	left: 0;
	cursor: pointer;
	width: 24px;
	height: 24px;
}

/* Post Meta
------------------------- */
.singlePost__Header {
	padding: 9px 0 10px;
	margin: 0 0 50px;
	border-top: solid 1px #aaa;
	border-bottom: solid 1px #aaa;
}
.post-meta {
	margin: 10px 2px;
}
.post-meta a {
	text-decoration: none;
}
.post-meta li {
	display:inline-block;
	margin-right: 16px;
	font-size: 13px;
}
.post-meta li.tags {
	/*display:none;*/
}
.post-meta .time:before {
	content: "";
	display: inline-block;
	width: 15px;
	height: 15px;
	margin: 0 4px 0 0;
	background-color: #000;
	mask: url("./img/icon/icon_calendar.svg") no-repeat 50% 50% / contain;
	-webkit-mask: url("./img/icon/icon_calendar.svg") no-repeat 50% 50% / contain;
	vertical-align: -2px;
}
.post-meta .cate:before {
	content: "";
	display: inline-block;
	width: 15px;
	height: 15px;
	margin: 0 4px 0 0;
	background-color: #000;
	mask: url("./img/icon/icon_folder.svg") no-repeat 50% 50% / contain;
	-webkit-mask: url("./img/icon/icon_folder.svg") no-repeat 50% 50% / contain;
	vertical-align: -2px;
}
.post-meta .pen:before {
	content: "";
	display: inline-block;
	width: 15px;
	height: 15px;
	margin: 0 4px 0 0;
	background-color: #000;
	mask: url("./img/icon/icon_pen.svg") no-repeat 50% 50% / contain;
	-webkit-mask: url("./img/icon/icon_pen.svg") no-repeat 50% 50% / contain;
	vertical-align: -2px;
}
.post-meta a {
	color: #000;
}

/* Float
------------------------- */
.alignleft {
	float: left;
}
.alignright {
	float: right;
}
.aligncenter {
	display: block;
	margin: 1rem auto;
	text-align: center;
}

/* Simple Button
------------------------- */
.simpleButton { /* a */
	transition: 0.4s;
	display: block;
	margin: auto;
	padding: 6px 0 5px;
	border: solid 1px var(--navy);
	text-decoration: none;
	text-align: center;
	font-weight: 600;
	font-size: 13px;
	color: var(--navy);
}
.simpleButton span {
	display: block;
	margin: 0 0 0 15px;
}
.simpleButton span:after {
	display: inline-block;
	content: "";
	width: 8px;
	height: 11px;
	margin: 0 0 0 15px;
	background-color: var(--navy);
	mask: url("./img/icon/gt_white.svg") no-repeat 50% 50% / contain;
	-webkit-mask: url("./img/icon/gt_white.svg") no-repeat 50% 50% / contain;
	vertical-align: 0px;
}
.simpleButton:hover { /* a */
	background-color: var(--blue);
	border: solid 1px var(--blue);
	color: #fff;
}
.simpleButton:hover span:after {
	background-color: #fff;
}

/* Navy Button
------------------------- */
.navyButton { /* a */
	transition: 0.4s;
	display: block;
	width: 285px;
	margin: auto;
	padding: 7px 0 6px;
	background-color: var(--navy);
	text-decoration: none;
	text-align: center;
	font-weight: 500;
	font-size: 16px;
	color: #fff;
}
.navyButton:hover {
	background-color: var(--blue);
}
.navyButton span {
	display: block;
	margin: 0;
	letter-spacing: 1px;
}
.navyButton.mail span:before {
	display: inline-block;
	content: "";
	width: 19px;
	height: 14px;
	margin: 0 5px 0 0;
	background-color: #fff;
	mask: url("./img/icon/mail.svg") no-repeat 50% 50% / contain;
	-webkit-mask: url("./img/icon/mail.svg") no-repeat 50% 50% / contain;
	vertical-align: -1px;
}


/* Pagenation
------------------------- */
.pagination {
	margin: 50px 0;
	text-align: center;
}
.pagination a {
	text-decoration: none;
}
.pagination .page_num {
	display: block;
	margin: 0 0 10px;
	text-align: center;
}
.pagination .pager {
	transition: 0.4s;
	display: inline-block;
	width: 33px;
	height: 33px;
	margin: 0 3px;
	border: solid 1px var(--gray);
	border-radius: 4px;
	background-color: #fff;
	line-height: 31px;
}
.pagination .pager:hover {
	border: solid 1px var(--blue);
	background-color: var(--blue);
	color: #fff;
}
.pagination a.pager {
	color: #000;
}
.pagination .prev {
	display: inline-block;
	margin: 0 10px 0 5px;
	font-weight: 400;
	font-size: 14px;
	color: var(--blue);
}
.pagination .first {
	display: inline-block;
	margin: 0 10px 0 5px;
	font-weight: 400;
	font-size: 14px;
	color: var(--blue);
}
.pagination .next {
	display: inline-block;
	margin: 0 5px 0 10px;
	font-weight: 400;
	font-size: 14px;
	color: var(--blue);
}
.pagination .last {
	display: inline-block;
	margin: 0 5px 0 10px;
	font-weight: 400;
	font-size: 14px;
	color: var(--blue);
}
.pagination .pager.current {
	border: solid 1px var(--navy);
	background-color: var(--navy);
	font-weight: 900;
	color: #fff;
}

/* Breadcrumbs
------------------------- */
.outerBreadcrumbs {
	background: #fff;
}
.breadcrumbs {
	margin: 0 auto 30px;
	padding: 6px 0 4px;
	line-height: 1.8;
	font-size: 12px;
	color: #000;
}
#footerBreadcrumbs {
	border-top: dotted 1px #aaa;
}
#footerBreadcrumbs .breadcrumbs {
	margin: 0 auto;
	padding: 11px 0 8px;
}
.breadcrumbs a {
	transition: 0.4s;
	text-decoration: none;
	color: #000;
}
.breadcrumbs a:hover {
	text-decoration: underline;
	color: var(--blue);
}
#breadcrumb > span:first-child:before {
	display: inline-block;
	content: "";
	width: 15px;
	height: 15px;
	margin: 0 3px 0 0;
	background-image: url("img/icon/icon_home.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	vertical-align: -2px;
}
.breadcrumb ul {
	list-style-type: none;
}
.breadcrumb ul li {
	display: inline-block;
	margin: 0 4px 0 0;
}

/* Under Constraction
------------------------- */
.uc {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 400px;
}
.uc__inner * {
	text-align: center;
}

/* Google Map
------------------------- */
.googleMap {
	position: relative;
	overflow: hidden;
	height: 0;
	padding-bottom: 66.6667%;
	margin: 0 0 30px;
}
.googleMap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border:solid 1px var(--gold);
	padding: 0 0 1px;
}

/* Youtube
------------------------- */
.yt iframe {
	display: block;
	aspect-ratio: 4 / 3;
	margin: 0 auto 20px;
	width: 100%;
	height: auto;
}
.yt5625 iframe {
	display: block;
	aspect-ratio: 16 / 9;
	margin: 0 auto 20px;
	width: 100%;
	height: auto;
}

/* Google reCAPTCHA
------------------------- */
.grecaptcha-badge {
	visibility: hidden;
}
.coreContents #text_box p.googleRecaptcha__note,
.coreContents p.googleRecaptcha__note {
	margin: 20px 0;
	letter-spacing: 1px;
	text-align: center;
	font-size: 13px;
}
/* End of CSS File */