@charset "UTF-8";
/* CSS Document */

/*----------------------------------------------------
	共通設定
----------------------------------------------------*/
* {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	text-decoration: none;
	margin: 0;
	padding: 0;
	list-style: none;
}
@font-face{
	font-family: 'Hannari';
	src: url('../fonts/Hannari.otf') format('opentype'),
	     url('../fonts/Hannari.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}
html {
	font-size: 62.5%;
}
body {
	font-family: 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'MS Pゴシック', 'MS PGothic', sans-serif;
	font-size: 2rem;
	line-height: 2;
	background: #f7931e;
	color: #fff;
	width: 100%;
	font-weight: normal;
}
html, body, #wrapper, main, #main {
	min-height: 100%;
}
.screen-reader-text,
.mb,
.mb_inblock,
.portrait {
	display: none;
}
.pc {
	display: block;
}
.opacity0 {
	opacity: 0;
}
a {
	color: #fff;
}
a:hover,
a:hover img {
	opacity: 0.5;
}
.gothic {
	font-family: 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'MS Pゴシック', 'MS PGothic', sans-serif;
}
.mincho {
	font-family: "Hannari", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
.nowrap {
	white-space: nowrap;
}
.normal {
	white-space: normal;
}
.bold {
	font-weight: bold;
	line-height: 1.5;
}
.radius {
	-webkit-border-radius: 5px;
	border-radius: 5px;
}
.block {
	display: block;
}
.inblock {
	display: inline-block;
	text-align: left;
}
img {
	max-width: 100%;
}
svg {
	display: inline-block;
	max-width: 100%;
}
/* Safari, Google Chrome のみに適応 */
@media screen and (-webkit-min-device-pixel-ratio:0) {
	img, svg {
		height: auto;
	}
}
img.border {
	border: 1px solid #ccc;
}
img.circle {
	-webkit-border-radius: 50%;
	border-radius: 50%;
}
figure {
	position: relative;
	display: table-cell;
}
figure > img {
	display: block;
}
figcaption {
	position: absolute;
	left: 0; right: 0;
	bottom: 0;
	background: rgb(247, 147, 30, 0.8);
	color: #fff;
	text-align: center;
}
.relative {
	position: relative;
}
.left {
	text-align: left;
}
.right {
	text-align: right;
}
.center {
	text-align: center;
}
.vtop {
	vertical-align: top;
}
.vmiddle {
	vertical-align: middle;
}
.vbottom {
	vertical-align: bottom;
}
.float_left {
	float: left;
	margin-right: 2rem;
	clear: both;
}
.float_right {
	float: right;
	margin-left: 2rem;
	clear: both;
}
.overflow {
	overflow: hidden;
}

h1, h2, h3 {
	font-size: 3.0rem;
	font-weight: bold;
	line-height: 1.5;
	font-family: "Hannari", "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	margin: 0 0 2rem;
}
.big {
	font-size: 2.3rem;
}
.big1 {
	font-size: 5.4rem;
}
.big2 {
	font-size: 4.2rem;
}
.big3 {
	font-size: 3.0rem;
}
.small {
	font-size: 80%;
}
.small2 {
	font-size: 90%;
}
.space {
	letter-spacing: 1em;
}
hr {
	border: 0px none;
	border-top: 1px solid currentColor;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}
table.fixed {
	table-layout: fixed;
}
table th {
	font-weight: normal;
	white-space: nowrap;
}
.wp-block-table table {
	border: 1px solid #fff;
}
.wp-block-table tr,
.wp-block-table td {
	padding: 0.25em 1em;
}
.wp-block-table tr + tr {
	border-bottom: 0px none;
	border-top: 1px solid #fff;
}
.wp-block-table * + td {
	border-left: 1px solid #fff;
	padding: 0.25em 1em;
}
table.inborder > tbody > tr > th {
	border-right: 1px solid #9b9b9b;
}
table.line {
	border-bottom: 1px solid #9b9b9b;
}
table.inborder > tbody > tr + tr > th,
table.inborder > tbody > tr + tr > td,
table.line > tbody > tr > th,
table.line > tbody > tr > td {
	border-top: 1px solid #9b9b9b;
}
table.border > tbody > tr > th,
table.border > tbody > tr > td {
	border: 1px solid #9b9b9b;
}
table.padg > tbody > tr > th,
table.padg > tbody > tr > td {
	padding: 0.25em 1em;
}
table.padg.fixed > tbody > tr > th,
table.padg.fixed > tbody > tr > td {
	padding: 0 0.5em;
}

#drawer,
.flex {
	display : -webkit-box;
	display : -webkit-flex;
	display : -ms-flexbox;
	display : flex;
	-webkit-justify-content: center;
	-ms-justify-content    : center;
	justify-content        : center;
	-webkit-align-items: center!important;
	-ms-align-items    : center!important;
	align-items        : center!important;
	gap: 5rem;
}
.flex.gap0, .flex_center.gap0 {
	gap: 0;
}
.flex.gap1 {
	gap: 1rem;
}
.flex.gap2 {
	gap: 2rem;
}
.flex_text > * {
	padding: 0 8%;
}
.flex_center,
.body.wp-block-columns {
	-webkit-justify-content: center;
	-ms-justify-content    : center;
	justify-content        : center;
}
.flex.start {
	-webkit-justify-content: flex-start;
	-ms-justify-content    : flex-start;
	justify-content        : flex-start;
}
.flex.end {
	-webkit-justify-content: flex-end;
	-ms-justify-content    : flex-end;
	justify-content        : flex-end;
}
#drawer,
.flex.middle, .mb_flex.middle, .flex_center.middle {
	-webkit-align-items: center!important;
	-ms-align-items    : center!important;
	align-items        : center!important;
}
.flex.bottom, .flex_center.bottom {
	-webkit-align-items: flex-end!important;
	-ms-align-items    : flex-end!important;
	align-items        : flex-end!important;
}
.flex.stretch, .mb_flex.stretch {
	-webkit-align-items: stretch!important;
	-ms-align-items    : stretch!important;
	align-items        : stretch!important;
}
.flex.between, .mb_flex.between {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	-ms-justify-content    : space-between;
	justify-content        : space-between;
}
.flip .flex,
.flex.reverse {
	flex-direction: row-reverse;
}
.flex.list2,
.flex.list3,
.flex.list4,
.flex.list5,
.flex.wrap {
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.flex.list2 > * {
	width: calc( ( 100% - 5rem ) / 2 );
}
.flex.list2.gap1 > * {
	width: calc( ( 100% - 1rem ) / 2 );
}
.flex.list3 > * {
	width: calc( ( 100% - 10rem ) / 3 );
}
.flex.list4 > *:not(.w100per) {
	width: calc( ( 100% - 15rem ) / 4 );
}
.flex.list4.gap1 > *:not(.w100per) {
	width: calc( ( 100% - 3rem ) / 4 );
}
.flex.list5 > * {
	width: calc( ( 100% - 20rem ) / 5 );
}
.flex.price > * {
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	-webkit-justify-content: space-between;
	-ms-justify-content    : space-between;
	justify-content        : space-between;
	-webkit-align-items: center!important;
	-ms-align-items    : center!important;
	align-items        : center!important;
	gap: 0.5em;
}
.flex.price span.line {
	flex: 1;
	border-color: currentColor;
}

ul.default {
	/*background: #E3E3E5;*/
	padding: 0.5em 1em 0.5em 2em;
}
ul.default > li {
	list-style: disc;
}
ul.point,
ul.asterisk {
	list-style: none;
	margin-bottom: 0.5rem;
}
ul.point li,
ul.asterisk li,
p.asterisk {
	position: relative;
	margin-left: 2rem;
}
ul.point li:before {
	content: '〇';
	position: absolute;
	left: -1.2em;
}
ul.asterisk li:before,
p.asterisk:before {
	content: '※';
	position: absolute;
	left: -1.2em;
}
ol.number {
	counter-reset: num;
	list-style-type: none;
	border-top: 1px dotted #4D4D4D;
	border-bottom: 1px dotted #4D4D4D;
	overflow: hidden;
	padding: 1em 0;
}
ol.number li {
	position: relative;
	margin-left: 2.5em;
}
ol.number li + li,
ul.point li + li,
ul.asterisk li + li {
	margin-top: 1em;
}
ol.number li:before {
	counter-increment: num;
	content: counter(num) "・";
	position: absolute;
	left: -2em;
}
/*dl {
	margin-left: 1em;
}*/
dt {
	font-size: 1.3em;
	color: #f7931e;
}
dd {
	margin-bottom: 1em;
}

.btn, .btn_in a {
	display: inline-block;
	position: relative;
	overflow: hidden;
	text-transform: uppercase;
	border: 1px solid currentColor;
	padding: 0.35em 0.75em 0.25em;
	line-height: 1.2;
	transition: .5s cubic-bezier(0.45, 0, 0.55, 1);
}
.btn.red {
	background: #ed1c24;
	color: #fff;
	border: 0px none;
}
a.btn::after,
.btn_in.yaji_after a::before,
.btn_in:not(.yaji_after) a::after {
	background: #ccc;
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 300%;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: .5s cubic-bezier(0.45, 0, 0.55, 1);
	z-index: -1;
	transform: skewY(-10deg) scale(1, 0);
}
.bg_gray a.btn::after {
	background: #333;
}
a.btn:hover,
.btn_in.yaji_after a:hover,
.btn_in:not(.yaji_after) a:hover {
	opacity: 1;
	color: #000;
}
.bg_gray a.btn:hover {
	color: #fff;
}
a.btn:hover::after,
.btn_in.yaji_after a:hover::before,
.btn_in:not(.yaji_after) a:hover::after {
	transform: skewY(-10deg) scale(1, 1);
}
.btn.mincho {
	padding: 0.15em 0.75em 0.35em;
}
div.stack {
	position: relative;
}
div.stack .stack_rb {
	position: absolute;
	right: 25px;
	bottom: 0px;
	max-width: 25%;
}

#viewimg {
	position: absolute;
}
.imgsel {
	background: #c1d0f0;
}

/*----------------------------------------------------
	loading
----------------------------------------------------*/
.loader {
	align-items: center;
	background: #fff;
	bottom: 0;
	display: flex;
	justify-content: center;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 999;
}
.loader::after {
	animation: loader 0.5s linear infinite;
	border: 1px solid orange;
	border-radius: 50%;
	border-right: 1px solid rgba(255,165,0,0.2);
	border-top: 1px solid rgba(255,165,0,0.2);
	content: "";
	height: 70px;
	width: 70px;
}
@keyframes loader {
	0% { transform: rotate(0); }
	100% { transform: rotate(360deg); }
}

/*----------------------------------------------------
	form
----------------------------------------------------*/
input,
textarea {
	max-width: 100%;
	padding: .5rem .8rem;
	background: #fff;
	color: #495057;
	background-clip: padding-box;
	border: 1px solid #ddd;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}
select {
	max-width: 100%;
	padding: .5rem .8rem;
	color: #495057;
	background-color: #fff;
	border: 1px solid #bbb;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}
textarea {
	width: 100%;
}
input:focus,
textarea:focus {
	color: #222;
	border-color: #333;
}
input[type="radio"],
input[type="checkbox"] {
	margin: 1rem 0.5rem;
	-ms-transform: scale(1.5, 1.5);
	-webkit-transform: scale(1.5, 1.5);
	transform: scale(1.5, 1.5);
}

button,
input[type="button"],
input[type="submit"] {
	background: #555;
	color: #fff;
	border: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	cursor: pointer;
	display: inline-block;
	font-size: 2rem;
	font-weight: 800;
	line-height: 1;
	padding: 1rem 3rem;
	text-shadow: none;
	-webkit-transition: background 0.2s;
	transition: background 0.2s;
	-webkit-appearance: none;
	-webkit-border-radius: 0px;
	border-radius: 0px;
}

button.secondary,
input[type="reset"],
input[type="button"].secondary,
input[type="reset"].secondary,
input[type="submit"].secondary {
	background-color: #ddd;
	color: #222;
}

button:hover,
button:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
	background: #fffa7b; color: #666;
}

button.secondary:hover,
button.secondary:focus,
input[type="reset"]:hover,
input[type="reset"]:focus,
input[type="button"].secondary:hover,
input[type="button"].secondary:focus,
input[type="reset"].secondary:hover,
input[type="reset"].secondary:focus,
input[type="submit"].secondary:hover,
input[type="submit"].secondary:focus {
	background: #bbb;
}

/*----------------------------------------------------
	header
----------------------------------------------------*/
.anchor {
	padding-top: 100px;
	margin-top: -100px;
}
#container {
	overflow: hidden;
	/*padding-bottom: 5vw;*/
}
#header {
	width: 100%;
	background: #f7931e;
	color: #fff;
	position: relative;
	gap: 0;
	height: 5vw;
	margin: 0;
	padding: 0 5% 0.75vw;
	line-height: 1;
}
#header h1.logo {
	width: 11.5vw; line-height: 0; margin: 0 0.75rem 0 0;
}
#header svg.logo2 {
	width: 18.4vw;
}
.header_text {
	font-size: 1.06vw;
	padding: 0.5em 1em 0;
}
.header_icon {
	padding: 0.7vw 0.5vw 0 0;
}
.header_icon svg {
	width: 1.8vw;
}

#hamburger-check {
	display: none;
}
#hamburger {
	display: inline-block;
	position: relative;
	cursor: pointer;
	font-size: 2.5vw;
}
#hamburger:after {
	content: "MENU";
	position: absolute;
	left: 10%;
	right: 10%;
	bottom: -0.25em;
	width: 80%;
	height: 0.35em;
	font-size: 0.32em;
	font-weight: bold;
	text-align: center;
}
#hamburger:hover {
	opacity: 0.5;
}
.menu-button {
	display: block;
	width: 1.35em;
	height: 1.0em;
}
.menu-button i {
	display: block;
	width: 1em;
	height: 2px;
	background: currentColor;
	-webkit-transition: background 0.5s;
	        transition: background 0.5s;
	position: relative;
	left: 0.175em;
	top: 0.45em;
}
.menu-button i:before,
.menu-button i:after {
	content: "";
	display: block;
	width: 1em;
	height: 2px;
	background: currentColor;
	position: absolute;
	-webkit-transform: rotate(0deg);
	    -ms-transform: rotate(0deg);
	        transform: rotate(0deg);
	-webkit-transition: all 0.3s !important;
	        transition: all 0.3s !important;
}
.menu-button i:before {
	-webkit-transform: translateY(0.3em);
	    -ms-transform: translateY(0.3em);
	        transform: translateY(0.3em);
}
.menu-button i:after {
	-webkit-transform: translateY(-0.3em);
	    -ms-transform: translateY(-0.3em);
	        transform: translateY(-0.3em);
}
#hamburger-check:checked ~ #hamburger:after {
	content:"CLOSE";
}
#hamburger-check:checked ~ #hamburger .menu-button i {
	background-color: transparent;
}
#hamburger-check:checked ~ #hamburger .menu-button i:after {
	-webkit-transform: translateY(0px) rotate(-45deg);
	    -ms-transform: translateY(0px) rotate(-45deg);
	        transform: translateY(0px) rotate(-45deg);
}
#hamburger-check:checked ~ #hamburger .menu-button i:before {
	-webkit-transform: translateY(0px) rotate(45deg);
	    -ms-transform: translateY(0px) rotate(45deg);
	        transform: translateY(0px) rotate(45deg);
}

#drawer {
	display: none;
	position: fixed; left: 0; right: 0;
	background: rgba( 34, 24, 19, 0.9 ); z-index: 98;
}
#drawer.open {
	display: flex;
	opacity: 0;
	-webkit-animation: fadeIn 0.5s ease 0s 1 normal forwards;
	animation: fadeIn 0.5s ease 0s 1 normal forwards;
}
#drawer .nav_ill {
	padding: 0 3em 5em 0;
}
#drawer .nav li {
	position: relative;
	line-height: 1.6em;
	padding-bottom: 0.7em;
	margin-left: 1.5em;
}
#drawer .nav li + li {
	margin-top: 0.7em;
}
#drawer .nav li > a {
	display: inline-block;
	white-space: nowrap;
}
#drawer .nav li > a:first-of-type:before {
	position: absolute;
	top: 0;
	left: -1.5em;
	content: "→";
}
#drawer .nav li a {
	text-decoration: none;
	color: #DCDED3;
}
#drawer .nav li a:hover {
	color: #fff;
	background-color: transparent;
}
#drawer .nav li svg {
	vertical-align: middle;
	width: 1.5em;
}

.top_button {
	text-align: right;
	color: #f00;
}
.top_button a {
	color: #f00;
}

/*----------------------------------------------------
	footer
----------------------------------------------------*/
#footer {
	background: #5b300d;
	text-align: center;
	padding: 1.5em 0 1em;
}

/*----------------------------------------------------
	Back to top button
----------------------------------------------------*/
#page_top {
	width: 38.7px;
	height: 62px;
	position: fixed;
	right: 20px;
	bottom: -70px;
	transition: all 1s ease;
}
#page_top.show {
	transform: none;
 }
#page_top a{
	display: block;
	width: 38.7px;
	height: 62px;
	background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20387%20620%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20opacity%3D%22.75%22%20fill%3D%22%23FFF%22%20d%3D%22M387%20193.5%20193.5%200%200%20193.5l46.1%2046.1%2072.9-72.9V620h149V166.7l72.9%2072.9z%22%2F%3E%3Cpath%20fill%3D%22%23f09d00%22%20d%3D%22M387%20515.8%20193.5%20322.3%200%20515.8l46.1%2046.1%20147.4-147.3%20147.4%20147.3z%22%2F%3E%3Cpath%20fill%3D%22%23f09d00%22%20d%3D%22M387%20364.7%20193.5%20171.2%200%20364.7l46.1%2046.1%20147.4-147.3%20147.4%20147.3z%22%2F%3E%3C%2Fsvg%3E') no-repeat;
	background-size: contain;
}
#page_top a::after {
	top: 25px;
}

/*----------------------------------------------------
	slider image
----------------------------------------------------*/
#slideWrap {
	overflow: hidden;
	position: relative;
	line-height: 0;
}
#slideWrap img, .subimg img {
	display: block;
	width: 100%;
}
#slider > * {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	opacity: 0;
}
.subimg {
	margin: 0 auto 3rem;
	border-bottom: 6px solid #c90000;
}
.subimg img {
	opacity: 0;
	-webkit-animation: fadeIn 1.2s ease 0.5s 1 normal forwards;
	animation: fadeIn 1.2s ease 0.5s 1 normal forwards;
}

/*----------------------------------------------------
	intro
----------------------------------------------------*/
/*#intro {
	position: fixed; top: 0; left: 0; right: 0; bottom: 0;
	background: #000;
	width: 100%; height: 100vh; overflow: hidden;
	z-index: 999;
}
#intro.intro_end {
	-webkit-animation: introDel 1.2s ease 10s 1 normal forwards;
	animation: introDel 1.2s ease 10s 1 normal forwards;
}

@keyframes introDel {
	0% {opacity: 1;height: 100%}
	99% {opacity: 0;height: 100%}
	100% {opacity: 0;height: 0}
}
@-webkit-keyframes introDel {
	0% {opacity: 1;height: 100%}
	99% {opacity: 0;height: 100%}
	100% {opacity: 0;height: 0}
}
#intro svg {
	position: absolute;
	top:  50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	max-width: 80%;
}
#intro svg > * {
	opacity: 0;
}
#intro:not(.intro_view) svg > * {
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}
#intro:not(.intro_view) svg > *:first-child {
	-webkit-animation-name: fadeInRotate;
	animation-name: fadeInRotate;
}*/

/*----------------------------------------------------
	body
----------------------------------------------------*/
#main {
	/*padding-top: 1em;*/
}
.wp-block-group {
	overflow: hidden;
}
.wp-block-image.w100per > * {
	width: 100%;
}
.body:not(.wp-block-columns) {
	width: 1080px; max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}
.body.wp-block-columns {
	margin-bottom: 0;
}
.body.wp-block-columns > .wp-block-column {
	flex-basis: 520px; flex-grow: 0;
	width: 520px; max-width: 47%;
}

#contact h4.mincho {
	background: #e6e6e6;
	color: #666;
	font-size: 2.4rem;
	letter-spacing: 0.25rem;
	padding: 0.5rem 2rem 1rem;
	margin-bottom: 1.8rem;
}
#contact a.tel {
	display: inline-block;
	color: #fbb03b;
	font-size: 3.6rem;
	line-height: 1;
	margin-top: 0.5em;
}
/*#contact a.remote {
	color: #0099CC;
	font-weight: bold;
}*/
#contact .box_before {
	background: #e6e6e6;
	padding: 1em 2em;
}
#contact th {
	text-align: left;
}
#contact label {
	display: inline-block;
}
#contact small:not(.button) {
	color: #ee0000;
	font-size: 100%;
	font-weight: bold;
}
#contact input {
	margin-bottom: 0.5em;
}
#contact .button {
	display: inline-block;
	padding: 0.2em 1em 0em;
	font-size: 0.7em;
	background: #f7931e;
	color: #fff;
}
#contact .wpcf7-submit {
	background: #f7931e;
	color: #fff;
}
#contact .p-postal-code {
	width: 8em;
}

.mw_wp_form .view_confirm,
.mw_wp_form .view_confirm_in {
	display: none;
}
.mw_wp_form_confirm .view_confirm {
	display: block;
	margin-bottom: 1em;
}
.mw_wp_form_confirm .view_confirm_in {
	display: inline-block;
}
.mw_wp_form_confirm th small,
.mw_wp_form_confirm .hidden_confirm {
	display: none;
}
.mw_wp_form_complete {
	margin-bottom: 3em;
	margin-bottom: 10em;
}

#sidebar h4 {
	background: #9B9B9B;
	color: #fff;
	font-weight: bold;
	padding: 0.2em 1em 0;
}
#sidebar ul {
	margin: 0.5em 1em 1em;
}
#sidebar a {
	display: inline-block;
	color: #595757;
	line-height: 1.3;
}

.news li {
	overflow: hidden;
	padding: 0.75em 0 0.25em;
	/*border-bottom: 1px solid #706559;*/
}
.news li + li {
	border-top: 1px dotted #4d4d4d;
}
.news li:last-child {
	border-bottom: 1px dotted #4d4d4d;
}
.news li > * {
	float: left; 
}
.news li > * + * {
	margin-left: 1em;
}
.news li a {
	float: right;
}

.nav-links {
	margin-top: 3rem;
	margin-bottom: 2rem;
	border: 1px solid #ccc;
	text-align: center;
	overflow: hidden;
}
.nav-links span,
.nav-links a {
	display: inline-block;
	margin: 0.2rem;
	padding: 0rem 1.5rem;
}
.nav-links a[rel^="prev"] {
	float: left;
}
.nav-links a[rel^="next"] {
	float: right;
}
.nav-links a:hover {
	background: #999;
	color: #fff;
}

/*----------------------------------------------------
	size / space
----------------------------------------------------*/
.w100per {
	width: 100%;
}
.w90per {
	width: 90%;
}
.w60per {
	width: 60%;
}
.w55per {
	width: 55%;
}
.w50per {
	width: 50%;
}
.w45per {
	width: 45%;
}
.w38per {
	width: 38%;
}
.w35per {
	width: 35%;
}
.w30per {
	width: 30%;
}
.w25per {
	width: 25%;
}
.w18per {
	width: 18%;
}
.marg_center {
	margin-left: auto;
	margin-right: auto;
}
.marg0 {
	margin-bottom: 0;
}
.marg1 {
	margin-bottom: 1rem;
}
.marg2 {
	margin-bottom: 1.8rem;
}
.marg3 {
	margin-bottom: 3.6rem;
}
.marg5 {
	margin-bottom: 5.4rem;
}
.margT { /* 404 Page */
	margin-top: 3.6rem;
}
.padgT {
	padding-top: 3.6rem;
}
.padg0 {
	padding: 0;
}
.padg1 {
	padding: 1rem;
}
/*.padg2 {
	padding: 1.8rem;
}*/
/*.padg3 {
	padding: 3.6rem;
}*/
/*.padg5 {
	padding: 5.4rem;
}*/
/*.padg10 {
	padding: 1rem 0;
}*/
/*.padg20 {
	padding: 1.8rem 0;
}*/
.padg30 {
	padding: 3.6rem 0;
}
.padg50 {
	padding: 5.4rem 0;
}
/*.padg52 {
	padding: 5.4rem 1.8rem;
}*/
.lhgt2 {
	line-height: 1.2;
}
.lhgt3 {
	line-height: 1.35;
}

/*----------------------------------------------------
	color
----------------------------------------------------*/
.inherit {
	color: inherit; /* 元の色 */
}
.hit {
	color: #c69c6d;
}
.black {
	color: #595757;
}
.red {
	color: #f00;
}
.orange {
	color: #f7931e;
}
.white {
	color: #fff;
}
.blue {
	color: #0071BC;
}
.box {
	border: 1px solid #9b9b9b;
	padding: 1.5rem 2rem;
	word-break: break-all;
}
.box.hit {
	border-color: currentColor;
}
.box.gray {
	border-color: #9b9b9b;
}
.hit a {
	color: #c69c6d;
}
.box.hit.center > a {
	display: inline-block;
	text-align: left;
}
.inbox {
	display: inline-block;
	border: 1px solid #ccc;
	padding: 0.05em 0 0.15em;
	text-align: center;
}
.line {
	border-bottom: 1px solid #ccc;
}
.dotline {
	border-bottom: 1px dotted #595757;
}
.line_red {
	border-bottom: 1px solid #dd391c;
}
.line2 {
	border-bottom: 1px dashed #ccc;
}
.bg_top1 {
	background: url('../img/top10bg.jpg') no-repeat top center;
	background-size: cover;
}
.bg_top3 {
	background: url('../img/top30bg.jpg') no-repeat top center;
	background-size: cover;
}
.bg_circle {
	object-fit: cover;
	border-radius: 50%;
}
.bg_white {
	background: #fff;
	color: #666;
}
.bg_white a {
	color: #666;
}
.bg_black {
	background: #000;
	color: #fff;
}
.bg_gray {
	background: #ccc;
	color: #000;
}
.bg_gray a {
	color: #000;
}
.bg_gray2 {
	background: #edeee9;
	color: #004e32;
}
.bg_gray2 a {
	color: #004e32;
}
.bg_pink {
	background: #f8eee7;
}
.bg_red {
	background: #f00;
	color: #fff;
}
span.yaji::before,
a.yaji::before,
p.yaji > a::before {
	content: '→';
	margin-right: 0.5em;
}
span.yaji_after::after,
a.yaji_after::after,
p.yaji_after > a::after {
	content: '→';
	margin-left: 0.5em;
}
.scroll_text {
	border: 1px solid #ccc;
	padding: 15px;
	height: 50vh;
	overflow-x:hidden;
	overflow-y:scroll;
	background: #fff;
	color: #333;
}
pre.scroll_text {
	white-space: pre-wrap;
}

/*----------------------------------------------------
	後で detail.twig 移動用
----------------------------------------------------*/
.transparent {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKAQMAAAC3/F3+AAAABlBMVEX////MzMw46qqDAAAAEElEQVQI12NgP4CCfjAgIwB8gwi8FGNRqAAAAABJRU5ErkJggg==);
}

/*----------------------------------------------------
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
----------------------------------------------------*/
.animated {
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}
@-webkit-keyframes fadeInRotate {
	0% { opacity: 0; transform:rotateY(0deg); transform-origin:50% 50% 0; }
	50% { opacity: 0.7; }
	100% { opacity: 1; transform:rotateY(180deg); transform-origin:50% 50% 0; }
}
@-webkit-keyframes fadeOut {
	from { opacity: 1; }
	to { opacity: 0; }
}
@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}
@keyframes fadeInRotate {
	0% { opacity: 0; transform:rotateY(0deg); transform-origin:50% 50% 0; }
	50% { opacity: 0.7; }
	100% { opacity: 1; transform:rotateY(180deg); transform-origin:50% 50% 0; }
}
@keyframes fadeOut {
	from { opacity: 1; }
	to { opacity: 0; }
}

.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}
.fadeInRotate {
	-webkit-animation-name: fadeInRotate;
	animation-name: fadeInRotate;
}
.fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}


.hoverBig {
	display: block;
	max-width: 100%;
	overflow: hidden;
}
.hoverBig:hover > * {
	display: inline-block;
	transform: scale(1.1,1.1);
	transition: 1s all;
}

/*@-webkit-keyframes circleAnime1 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(180deg);
    transform: rotateY(180deg);
  }
}

@keyframes circleAnime1 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(180deg);
    -ms-transform: translateY(180deg);
    transform: rotateY(180deg);
  }
}

.top_circle.animated:not(.flip) {
  -webkit-animation-name: circleAnime1;
  animation-name: circleAnime1;
}

@-webkit-keyframes circleAnime2 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(180deg);
    -ms-transform: translateY(180deg);
    transform: rotateY(180deg);
  }
  100% {
	opacity: 1;
  }
}

@keyframes circleAnime2 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(180deg);
    -ms-transform: translateY(180deg);
    transform: rotateY(180deg);
  }
  100% {
	opacity: 1;
  }
}

.top_circle.flip.animated {
  -webkit-animation-name: circleAnime2;
  animation-name: circleAnime2;
}*/

/*----------------------------------------------------
	その他のサイズ
----------------------------------------------------*/
@media screen and (min-width: 769px) {
	input, textarea {
		font-size: 2rem;
	}
	#drawer {
	    top: 50%;
	    left: 0;
	    right: 0;
	    -webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	    transform: translateY(-50%);
		font-size: 1.2vw;
		padding: 3.9em 10%;
	}
	#drawer .nav li svg {
		width: 1.5vw;
	}
	.topimg {
		position: relative;
		overflow: hidden;
		width: 90%;
		margin: 0 auto 1rem;
	}
	table.inborder > tbody > tr:not(:first-child) > th {
		padding: 1em 3em 1em 7em;
	}
	table.inborder > tbody > tr:not(:first-child) > td {
		padding: 1em 7em 1em 3em;
	}
	table.inborder > tbody > tr:last-child > th,
	table.inborder > tbody > tr:last-child > td {
		padding-bottom: 3em;
	}
	table.line > tbody > tr > th {
		padding: 0.5em 1em 0.5em 3em;
	}
	table.line > tbody > tr > td {
		padding: 0.5em 3em 0.5em 1em;
	}
	table.line.th_w3 th {
		width: 7em;
	}
	table.line.th_w3 .lspc1 {
		letter-spacing: 1em;
		padding-right: 2em;
	}
	table.pc_space > tbody > tr > td + td {
		padding-left: 2rem;
	}
	table textarea {
		display: block;
		margin: 0.5rem 0;
	}
	.flex_center .auto,
	.flex .auto {
		-ms-flex-preferred-size: 0;
		-ms-flex-negative:1;
		-webkit-box-flex:1;
		-ms-flex-positive:1;
		flex: 1; /*flex-grow: 1; flex-shrink: 1; flex-basis: 0;*/
	}
	.flex_text > * {
		max-width: 75%;
	}
	.wp-block-columns.body.gap10 {
		gap: 10rem;
	}
	.wp-block-columns.flex_center:not(.is-not-stacked-on-mobile)>.wp-block-column:not(.auto) {
		flex-grow: 0;
		flex-basis: auto;
	}
	.news ul li:first-child {
		padding-right: 7vw;
	}
	ol.number {
		padding: 1.8rem 0;
		font-size: 2.0rem;
		font-weight: bold;
	}
	ol.number li + li {
		margin-top: 0.25rem;
	}
	.scroll_text {
		padding: 30px;
		font-size: 80%;
	}
	.pc_inblock {
		display: inline-block;
	}
	.pc_absolute {
		position: absolute;
	}
	.pc_right {
		text-align: right;
	}
	.pc_w84per {
		width: 84%;
	}
	.pc_w75per {
		width: 75%;
	}
	.pc_w50per {
		width: calc( 50% - 2.5rem );
	}
	.pc_padg0 {
		padding: 0;
	}
	.pc_margT {
		margin-top: 5rem;
	}
}

/*----------------------------------------------------
	mobile
----------------------------------------------------*/
@media screen and (max-width: 768px) {
	body {
		font-size: 1.4rem;
		line-height: 1.6;
	}
	.wp-block-media-text {
		display: block;
	}
	.wp-block-media-text > * + * {
		margin-top: 3em;
	}
	a.radius,
	a.big {
		padding: 5px 10px;
	}
	.pc {
		display: none;
	}
	.mb {
		display: block;
	}
	.mb_inblock,
	br.mb {
		display: inline-block;
	}
	.mb_center {
		text-align: center;
	}
	.mb_marg {
		margin-top: 0.5rem;
	}
	.mb100 {
		max-width: 100%;
		height: auto;
	}
	.mb_flex {
		display : -webkit-box;
		display : -webkit-flex;
		display : -ms-flexbox;
		display : flex;
	}
	.flex.mb_start {
		-webkit-justify-content: flex-start;
		-ms-justify-content    : flex-start;
		justify-content        : flex-start;
	}
	.flex.mb_end {
		-webkit-justify-content: flex-end;
		-ms-justify-content    : flex-end;
		justify-content        : flex-end;
	}
	.mb_flex.mb_between {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		-webkit-justify-content: space-between;
		-ms-justify-content    : space-between;
		justify-content        : space-between;
	}
	.mb_flex .auto {
		flex: 1;
	}
	#header {
		padding: 1em;
		height: auto;
	}
	#header h1.logo {
		width: 27.6vw;
		margin: 0;
	}
	#header svg.logo2 {
		width: 44.2vw;
	}
	.header_icon svg {
		width: 1.8em;
	}
	#hamburger {
		font-size: 9vw;
	}
	#hamburger:after {
		bottom: -0.15em;
	}
	.menu-button i {
		top: 0.35em;
	}
	#drawer {
		top: calc( 2.7em + 8.5vw );
		padding: 30px 10px;
	}
	#drawer .nav li a {
		white-space: normal;
	}
	.topimg img {
		display: block;
	}
	#main {
		padding-top: calc( 2.7em + 8.5vw );
	}
	#contact h4.mincho,
	#contact .box_before {
		margin-left: -20px;
		margin-right: -20px;
	}
	#contact h4.mincho {
		font-size: 1.8rem;
		text-align: center;
	}
	#contact a.tel {
		font-size: 2.4rem;
	}
	.big {
		font-size: 1.6rem;
	}
	h1, .big1 {
		font-size: 1.8rem;
	}
	h2, .big2 {
		font-size: 1.8rem;
	}
	h3, .big3 {
		font-size: 1.8rem;
	}
	h2.mb_small {
		font-size: 1.6rem;
		letter-spacing: -0.1rem;
	}
	iframe {
		max-height: 35vh;
	}
	.body.wp-block-columns > .wp-block-column {
		max-width: 80%;
	}
	*:not(.notwrap) > table:not(.notwrap):not(.inborder) > tbody > tr > th,
	*:not(.notwrap) > table:not(.notwrap):not(.inborder) > tbody > tr > td,
	table td.box {
		display: block;
	}
	table.border:not(.notwrap) {
		border-top: 1px solid #929A9F;
	}
	table.border:not(.notwrap) > tbody > tr + tr > th,
	table.border:not(.notwrap) > tbody > tr + tr > td {
		border-top: 0px none #fff;
	}
	table th, table td {
		padding: 0.5rem 0;
	}
	table.inborder th {
		padding: 0.5rem 1rem;
		text-align: center;
	}
	table.inborder td {
		padding: 0.5rem 1rem;
	}
	table.line > tbody > tr > td {
		border-top: 0px none;
		padding-top: 0;
	}
	table *:not(label) > input:not(.p-postal-code),
	table textarea {
		display: block;
		width: 100%;
		margin-bottom: 0.5rem;
	}
	.flex:not(.notwrap) {
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.flex.mb_gap0 {
		gap: 0;
	}
	.flex.list,
	.flex.list3,
	.flex.list4,
	.flex.list5,
	.flex.mb_gap1 {
		gap: 1rem;
	}
	.flex.mb_gap3 {
		gap: 3rem;
	}
	.btn.flex > a {
		white-space: normal;
	}
	.flex.list > *,
	.flex.list3 > *,
	.flex.list4 > *:not(.w100per),
	.flex.list4.gap1 > *:not(.w100per) {
		width: calc( 50% - 0.5rem );
	}
	.flex.list5 > * {
		width: calc( ( 100% - 2rem ) / 3 );
	}
	.news ul li {
		padding-left: 20px;
		padding-right: 20px;
	}
	#drawer .nav,
	.w25per,
	.w30per,
	.w35per,
	.w38per,
	.w45per,
	.w50per,
	.w55per,
	.w60per,
	.w90per {
		width: 100%;
	}
	.margT {
		margin-top: 2em;
	}
	.mb_w45per {
		width: 45%;
	}
	.mb_w75per {
		width: 75%;
	}
	.mb_w100per {
		width: 100%;
	}
	.mb_marg1 {
		margin-bottom: 1rem;
	}
	.mb_marg2 {
		margin-bottom: 2rem;
	}
	.mb_marg5 {
		margin-bottom: 5rem;
	}
	.mb_marg10 {
		margin: 1em 0;
	}
	.mb_padg0 {
		padding: 0;
	}
	.mb_padg20 {
		padding: 2rem 0;
	}
	.mb_center {
		text-align: center;
	}
	.mb_right {
		text-align: right;
	}
}
/*----------------------------------------------------
	mobile 縦向き
----------------------------------------------------*/
@media (orientation: portrait) and (max-width: 768px) {


}
/*----------------------------------------------------
	mobile 横向き
----------------------------------------------------*/
@media (orientation: landscape) and (max-width: 768px) {

}
@media (orientation: portrait) {

}
/*----------------------------------------------------
	printer
----------------------------------------------------*/
@media print {
	#pageTop, .cb-header { visibility: hidden; }
	.animated { opacity: 1; }
}
