@charset "UTF-8";



/* Galleries
--------------------------------------------- */
.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {
	/*rtl:ignore*/
	float: left;

	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {
	/*rtl:ignore*/
	float: right;

	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}
html[lang] body .has-text-align-center{
	text-align: center;
}
html[lang] body .has-text-align-left{
	text-align: left;
}
html[lang] body .has-text-align-right{
	text-align: right;
}
@media (max-width: 782px) {
	.break_reverse{

	}
}







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

html[lang]{
	margin: 0 !important;
}
#wpadminbar{
	opacity: 0.5;
	/*display: none;*/
}

body{
	padding: 0;
	margin: 0;
	font-family: "hiragino-kaku-gothic-pron", sans-serif;
	font-weight: 300;
	font-size: 1.6rem;
	line-height: 1.8;
	color: #000;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%; /* iPhoneだけ文字が大きくなる現象を防ぐ */
	/*font-feature-settings: "palt";*/ /* 文字詰め（フォントにカーニング情報が含まれる場合） */

	/* iPhoneで上下のバーを抜いた高さ */
	height: -webkit-fill-available;
	height: -moz-available;
}

::-webkit-input-placeholder{ color: #bbb; }
:-moz-placeholder          { color: #bbb; }
:-ms-input-placeholder     { color: #bbb; }

html.pc .sp{ display: none !important; }
html.sp .pc{ display: none !important; }

body .ta_center { text-align: center; }
body .ta_justify{ text-align: justify; }
body .ta_right  { text-align: right; }
.no_wrap  { white-space: nowrap; }
.wbr  { word-break: keep-all; }

.flex {
	display: flex;
}
.flex.column{
	flex-direction: column;
}
.flex.grow div,
.flex div.grow{
	flex-grow: 1;
}
:is(.flex, .row).center  { justify-content: center; }
:is(.flex, .row).between { justify-content: space-between; }
:is(.flex, .row).ai_center { align-items: center; }
:is(.flex, .row).ai_end    { align-items: flex-end; }
.flex + .flex{
/*	margin-top: 1em;*/
}
body .contents .flex + p{
	margin-top: 1em;
}

.row {
	--bs-gutter-x: 40px;
	--bs-gutter-y: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10vw 0;
	margin-top: calc(-1* var(--bs-gutter-y));
	margin-right: calc(-0.5* var(--bs-gutter-x));
	margin-left: calc(-0.5* var(--bs-gutter-x));
}
.row > * {
	box-sizing: border-box;
	flex-shrink: 0;
	width: 100%;
	max-width: 100%;
	padding-right: calc(var(--bs-gutter-x) * 0.5);
	padding-left: calc(var(--bs-gutter-x) * 0.5);
	margin-top: var(--bs-gutter-y);
/*	border: 1px solid #000;*/
}
.col-auto { flex: 0 0 auto;  width: auto; }
.col-1  { flex: 0 0 auto;  --width: 8.33333333%;   width:var(--width); }
.col-2  { flex: 0 0 auto;  --width: 16.66666667%;  width:var(--width); }
.col-3  { flex: 0 0 auto;  --width: 25%;           width:var(--width); }
.col-4  { flex: 0 0 auto;  --width: 33.33333333%;  width:var(--width); }
.col-5  { flex: 0 0 auto;  --width: 41.66666667%;  width:var(--width); }
.col-6  { flex: 0 0 auto;  --width: 50%;           width:var(--width); }
.col-7  { flex: 0 0 auto;  --width: 58.33333333%;  width:var(--width); }
.col-8  { flex: 0 0 auto;  --width: 66.66666667%;  width:var(--width); }
.col-9  { flex: 0 0 auto;  --width: 75%;           width:var(--width); }
.col-10 { flex: 0 0 auto;  --width: 83.33333333%;  width:var(--width); }
.col-11 { flex: 0 0 auto;  --width: 91.66666667%;  width:var(--width); }
.col-12 { flex: 0 0 auto;  --width: 100%;          width:var(--width); }
.row ._1  { width: calc(var(--width) + 0.69444444%); }
.row ._2  { width: calc(var(--width) + 1.38888888%); }
.row ._3  { width: calc(var(--width) + 2.08333333%); }
.row ._4  { width: calc(var(--width) + 2.77777777%); }
.row ._5  { width: calc(var(--width) + 3.47222222%); }
.row ._6  { width: calc(var(--width) + 4.16666666%); }
.row ._7  { width: calc(var(--width) + 4.86111110%); }
.row ._8  { width: calc(var(--width) + 5.55555555%); }
.row ._9  { width: calc(var(--width) + 6.24999999%); }
.row ._10 { width: calc(var(--width) + 6.94444444%); }
.row ._11 { width: calc(var(--width) + 7.63888888%); }
@media (max-width: 650px) {
	.min650{
		display: none !important;
	}

	.flex {
		flex-direction: column;
	}
	.flex.no_break{
		flex-direction: row;
	}
	.flex.br_ai_center{
		align-items: center;
	}

	body .row {
		--bs-gutter-x: 0px;
		flex-direction: column;
	}
	body .row.break_reverse,
	body .flex.break_reverse {
		flex-direction: column-reverse;
	}
	body .row > [class*="col"]{
		width: 100%;
	}

	.br_order1{ order: 1; }
	.br_order2{ order: 2; }
	.br_order3{ order: 3; }
}
@media (min-width: 651px) {
	.max650{
		display: none !important;
	}
}
@media (max-width: 500px) {
	.min500{
		display: none !important;
	}
}
@media (min-width: 501px) {
	.max500{
		display: none !important;
	}
}

.din-2014{
	font-family: din-2014, sans-serif;
	font-weight: 700;
}

h1{
	font-family: "hiragino-kaku-gothic-pron", sans-serif;
	margin: 100px 0 0;
	font-size: min(8.6rem, 11vw);
}
h1 .din-2014{
	font-family: din-2014, sans-serif;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: 0.05em;
}
h1 small{
	display: block;
	font-size: 0.35em;
	line-height: 1.6;
	margin: min(25px, 2vw) 0 0 0;
}

h2{
	text-align: center;
	font-family: "hiragino-kaku-gothic-pron", sans-serif;
	font-weight: 600;
	font-size: min(3.9rem, 5vw);
	line-height: 1.6;
}
h2 .din-2014{
	font-family: din-2014, sans-serif;
	font-weight: 700;
	font-size: 6.8rem;
}
h2 small{
	display: block;
	font-size: 2.4rem;
	line-height: 1.6;
}
@media (max-width: 650px) {
	h2 .din-2014{
		font-size: 4.8rem;
	}
	h2 small{
		font-size: 1.7rem;
	}
}

h3{
	text-align: center;
	font-family: "hiragino-kaku-gothic-pron", sans-serif;
	font-weight: 600;
	font-size: min(2.6rem, 4.5vw);
	line-height: 1.5;
}

h4{
	font-weight: 600;
	font-size: 2rem;
	line-height: 1.5;
}

hr{
	border: 0;
	border-top: 1px solid #c9c9c9;
	margin: 50px 0;
}

p{
	text-align: justify;
}

img{
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}
iframe{
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

a,
a:link,
a:visited{
	color: inherit;
}
a:hover{

}

a.type1{
	text-decoration-color: transparent;
	text-underline-offset: 4px;
	transition: text-decoration-color 0.2s linear;
}
a.type1:hover{
	text-decoration-color: inherit;
}

.bright{
	transition: 0.15s linear;
}
.bright:hover{
	filter: brightness(1.1);
}

.page_width1{
	max-width: 94%;
	width: 1000px;
	margin: 0 auto;
}
.page_width2{
	max-width: 94%;
	width: 940px;
	margin: 0 auto;
}
.page_width1 .page_width2{
	max-width: 100%;
}

.header_height{
	height: 100px;
}

.header_lang{
	position: fixed;
	right: 5%;
	width: 100px;
	text-align: center;
	line-height: 1.4;
	border-radius: 0 0 5px 5px;
	color: #fff;
	background-color: #000;
	z-index: 1000;
}

.site-header{
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 50px;
	position: fixed;
	z-index: 1000;
	right: 5%;
	box-sizing: border-box;
	width: 90%;
	margin: 30px 0 0;
	background-color: #fff;
	border-radius: 5px;
	padding: 10px 13px;
}
.site-header .site-branding{
	display: flex;
	justify-content: space-between;
	text-decoration: none;
	gap: 0 15px;
	z-index: 900;
}
.site-header .site-branding .image{
	min-width: 50px;
}
.site-header .site-branding .img_header_1{
/*	margin: 0 15px 0 0;*/
}
.site-header .site-branding .text{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px 40px;
}
@media (max-width: 1470px) {
	.site-header .site-branding{
		width: 330px;
	}
}
@media (max-width: 850px) {
	.header_lang{
		display: none;
	}
	.site-header{
		margin: 15px 0 0;
	}
}


#site-navigation{
	flex-grow: 1;
	display: flex;
	justify-content: space-between;
	box-sizing: border-box;
	max-width: 720px;
	z-index: 1000;
}
#site-navigation .nav1{
	flex-grow: 1;
	display: flex;
	justify-content: space-between;
	box-sizing: border-box;
	/*max-width: 720px;*/
	/*z-index: 1000;*/
}
#site-navigation a{
	user-select: none;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-family: din-2014, sans-serif;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.09em;
	white-space: nowrap;
	padding: 12px 0;
	transform: scaleX(1.04);
}
html[lang="en"] #site-navigation a{
	white-space: normal;
	max-width: 120px;
}
#site-navigation .contact{
	gap: 5px;
	text-decoration: none;
	color: #fff;
	background-color: #38a633;
	box-sizing: border-box;
	padding: 12px min(20px,1.5vw);
	min-width: 128px;
	max-width: none;
	border-radius: 5px;
	transition: 0.2s linear;
}
html[lang="en"] #site-navigation .contact{
	white-space: nowrap;
}
#site-navigation .contact:hover{
	filter: brightness(1.15);
}
#site-navigation .lang{
	display: none;
	text-align: center;
}
.site-header .nav_knob{
	display: none;
	cursor: pointer;
	width: 33px;
	z-index: 900;
}
@media (max-width: 1200px) {
	#site-navigation {
		max-width: min(490px, calc(100vw - 520px));
	}
	#site-navigation .nav1{
		flex-grow: 0;
		flex-wrap: wrap;
		justify-content: flex-end;
		/*width: 300px;*/
		margin: 0 30px 0 0;
	}
	#site-navigation .nav1 a{
		padding: 8px 0;
		margin: 0 0 0 30px;
	}
	#site-navigation .nav1 a:first-child{
		margin: 0;
	}
	.max1470{
		/*display: none !important;*/
	}
}
@media (max-width: 965px) {
	#site-navigation{
		position: fixed;
		top: 0;
		left: 0;
		max-width: none;
		width: 100%;
		height: 100vh;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		background-color: #fff;
		padding: 100px 5vw 0;
		z-index: 800;

		opacity: 0;
		pointer-events: none;
		transition: 0.2s linear;
	}
	html[lang="en"] #site-navigation{
		padding: 170px 5vw 0;
	}
	#site-navigation.open{
		opacity: 1;
		pointer-events: auto;
	}
	#site-navigation .nav1{
		margin: 0;
	}
	#site-navigation a,
	#site-navigation .nav1 a,
	html[lang="en"] #site-navigation a,
	html[lang="en"] #site-navigation .nav1 a{
		font-size: 2.2rem;
		width: 100%;
		max-width: none;
		margin: 0;
	}
	#site-navigation .nav1 a{
		padding: 4vmin 0;
		border-bottom: 1px solid #4d4d4d;
	}
	#site-navigation .nav1 > a:first-child{
		border-top: 1px solid #4d4d4d;
	}
	#site-navigation .lang{
		display: block;
		border-bottom: 1px solid #4d4d4d;
		padding: 20px 0;
		width: 100%;
	}
	#site-navigation .lang a{
		display: inline;
	}
	#site-navigation .contact,
	html[lang="en"] #site-navigation .contact{
		border-bottom: 0;
		margin: 20px 0 0;
		width: 250px;
	}
	#site-navigation .contact img{
		width: 25px;
	}
	.site-header .nav_knob{
		display: block;
	}
}


.site-footer{
	font-family: "hiragino-kaku-gothic-pron", sans-serif;
	font-weight: 600;
	font-size: 1.8rem;
	padding: 0 0 100px;
	margin-top: 150px;
}
.site-footer ul.type1 a{
	font-size: 2.2rem;
}
.site-footer .page_width2 > .flex{
/*	margin: 30px 0;*/
}
.site-footer .tel{/*	text-decoration: none;*/font-family: din-2014, sans-serif;font-weight: 700;font-size: 3.8rem;}
.site-footer .copyright{
	text-align: center;
	font-family: "hiragino-kaku-gothic-pron", sans-serif;
	font-weight: 300;
	font-size: 1.4rem;
	margin: 100px 0 0;
}
.site-footer .footer1{
	margin: 0 0 50px;
}
.site-footer .footer_text1{
	gap: 10px;
	min-height: 65px;
}
@media (max-width: 650px) {
	.site-footer .tel{
		font-size: 3.5rem;
	}
	.site-footer .row3{
		padding: 0 20vw;
	}
	.site-footer .footer_text1{
		min-height: 0;
	}
}

.gototop{
	position: fixed;
	right: 2px;
	bottom: 90px;
	transition: 0.15s linear;
}
.gototop:hover{
	filter: brightness(1.15);
}

.anchor_target{
	position: relative;
	top: -100px;
}

body .wpcf7-submit,
body .wpcf7cp-cfm-edit-btn,
body .button1{
	background-color: transparent;
	border: none;
	border-radius: 0;
	cursor: pointer;
	outline: none;
	padding: 0;
	-webkit-appearance: none;
	appearance: none;
	text-decoration: none;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	white-space: nowrap;
	font-weight: 600;
	font-size: min(2.4rem, 3.5vw);
	letter-spacing: 0.05em;
	line-height: 1;
	box-sizing: border-box;
	padding: 0 4em 0 2em;
	height: 2.8em;
	border-radius: 100px;
	color: #fff;
	background-color: #38a633;
	background-image: url(img/common/bt1.png);
	background-size: 1.8em;
	background-position: calc(100% - 0.6em); 50%;
	background-repeat: no-repeat;
	transition: 0.2s linear;
}
body .wpcf7-submit:hover,
body .wpcf7cp-cfm-edit-btn:hover,
body .button1:hover{
	filter: brightness(1.15);
}

body .fs23{ font-size:2.3rem; }
body .fs19{ font-size:1.9rem; }
body .fs14{ font-size:1.4rem; }

.bg{
	background-repeat: no-repeat;
}

.round{
	border-radius: 20px;
}
.round2{
	border-radius: 40px;
}

.green{
	color: #38a633;
}
.gray{
	color: #656464;
}
.red{
	color: #ff6069;
}

ul.type1{
	padding: 0;
	margin: 0px 0;
	list-style: none;
}
ul.type1 > li{
	text-indent: -22px;
	line-height: 1.3;
	margin: 18px 0 18px 22px;
}
ul.type1 > li:before{
	content: "";
	display: inline-block;
	width: 14px;
	aspect-ratio: 1;
	margin: 0 8px 0 0;
	background-image: url(img/common/ul1.png);
	background-size: cover;
	background-position: 50%;
	background-repeat: no-repeat;
}

ul:is(.type2, .type3){
	padding: 0;
	margin: 0px 0;
	list-style: none;
}
ul:is(.type2, .type3) > li{
	text-indent: -1em;
	line-height: 1.3;
	margin: 2px 0 2px 1em;
}
ul:is(.type2, .type3) > li:before{
	content: "■";
	white-space: nowrap;
}
ul.type3 > li{
	margin: 9px 0 9px 1em;
}
ul.type3 > li:before{
	content: "・";
}

table.type1{
	border-collapse: separate;
	border-spacing: 15px 0;
	width: 100%;
}
table.type1 :is(th, td){
	text-align: left;
	font-weight: 300;
	border-bottom: 1px solid #cfcfcf;
	padding: 11px min(30px, 3vw);
	background-clip: padding-box; /* Firefox対策。border が表示されるようにする。 */
}
table.type1 tr:first-child :is(th, td){
	border-top: 1px solid #cfcfcf;
}
table.type1 th{
	white-space: nowrap;
}
html[lang="en"] table.type1 th{
	white-space: normal;
}
table.type1 td{
}
table.th_center th{
	text-align: center;
}


.round_box{
	border: 1px solid #000;
	border-radius: 40px;
	padding: min(30px, 4vmin);
}
.round_box .text{
	max-width: 500px;
}
.round_box h3{
	text-align: left;
	margin: 15px 0;
}
@media (max-width: 650px) {
	.round_box h3{
		font-size: 2.5rem;
	}
}

.round_box2{
	display: inline-block;
	border: 1px solid #000;
	border-radius: 10px;
	padding: 8px 15px;
}

.green_box{
	display: inline-block;
	border: 1px solid #38a633;
	color: #38a633;
	padding: 10px;
}
.green_box h4{
	margin: 0 0 10px;
}





/* トップ *************************************************************************** */

.page-template-top{
	/*letter-spacing: 0.1em;*/
}

.page-template-top .main_slide{
	--main_slide_height: 100vh;
	height: var(--main_slide_height);
}
.page-template-top .main_slide .swiper-slide{
	display: flex;
	box-sizing: border-box;
	width: 100%;
	height: var(--main_slide_height);
	background-size: cover;
	background-position: 50%;
	background-repeat: no-repeat;
}
.page-template-top .main_slide .slide1{
	background-image: url(img/top/slide/1_bg.webp);
	justify-content: flex-end;
	align-items: flex-end;
	padding: 0 15vw 10vh 0;
}
.page-template-top .main_slide .slide2{
	background-image: url(img/top/slide/2_bg.webp);
	justify-content: center;
	align-items: flex-start;
	padding: 25vh 0 0;
}
.page-template-top .main_slide .slide3{
	background-image: url(img/top/slide/3_bg.webp);
	justify-content: flex-end;
	align-items: flex-start;
	padding: 50vh 15vw 0 0;
}
.page-template-top .main_slide .slide4{
	background-image: url(img/top/slide/4_bg.webp);
	justify-content: flex-end;
	align-items: flex-end;
	padding: 0 10vw 50vh 0;
}
html.sp .page-template-top .main_slide img{
	display: none;
}
@media (max-width: 650px) {
	.page-template-top .main_slide{
		--main_slide_height: calc(100vh - 250px);
	}
}


.page-template-top .news{
	background-repeat: no-repeat;
	background-image: url(img/top/bg1.webp);
	background-position: calc(50% + 580px) 80px;
	box-sizing: border-box;
	min-height: 250px;
	padding: 80px 0 160px;
}
.page-template-top .news .h2_col{
	padding: 0 50px 0 0;
	margin: 0 50px 0 0;
	border-right: 1px dotted #bdbdbd;
}
.page-template-top .news h2{
	white-space: nowrap;
	line-height: 1.3;
	letter-spacing: 0.05em;
	margin: 0;
}
.page-template-top .news .more_area{
	margin: 30px 0 0;
}
.page-template-top .news .more_area a{
	display: inline-block;
	text-decoration: none;
	font-weight: 600;
	color: #fff;
	background-color: #38a633;
	border-radius: 50px;
	width: 110px;
	padding: 5px 0;
	transition: 0.2s linear;
}
.page-template-top .news .more_area a:hover{
	filter: brightness(1.15);
}
.page-template-top .news .post{
	display: flex;
	margin: 0 0 10px;
}
.page-template-top .news .post .date{
	font-size: 1.2rem;
	font-weight: 600;
	white-space: nowrap;
	min-width: 150px;
}
@media (max-width: 650px) {
	.page-template-top .news{
		position: relative;
		background-image: url(img/top/bg2.webp);
		background-size: 130px auto;
		background-position: 10% 0px;
		padding: 70px 0 40px;
		margin: -30px 0 0;
		z-index: 500;
	}
	.page-template-top .news .h2_col{
		padding: 0 0 0 0;
		margin: 0 0 5vw 0;
		border-right: 0;
	}
	.page-template-top .news .post .date{
		font-size: 1rem;
		min-width: 100px;
	}
}

.page-template-top .bg2{
	background-image: url(img/top/bg2.webp);
	background-position: calc(50% - 550px) 0;
	min-height: 200px;
}
.page-template-top .bg3{
	background-image: url(img/top/bg3.webp);
	background-position: calc(50% + 530px) 100%;
	min-height: 200px;
	text-align: center;
}
.page-template-top .bg4{
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: url(img/top/bg4.webp);
	background-position: calc(50% - 500px) 50%;
	min-height: 110px;
	text-align: center;
	margin: 0 0 100px;
}
@keyframes top_img3_1{
	0% {background-position: var(--background-size);}
	100% {background-position: 0px;}
}
.page-template-top .img3_1{
	--background-size: min(2050px, 200vw);
	background-image: url(img/top/3_1.webp);
	background-position: center;
	background-repeat: repeat-x;
	background-size: var(--background-size);
	height: min(485px, 50vw);
	animation: top_img3_1;
	animation: 25s linear infinite top_img3_1;
}
.page-template-top .img3_2{
	text-align: center;
	margin: 70px 0;
}
.page-template-top .img4{
	text-align: center;
	margin: 0px 0 100px;
}
.page-template-top .img4 img{
	max-width: 90%;
}
.page-template-top .bg5{
	background-image: url(img/top/bg5.webp);
	background-position: calc(50% - 550px) 50%;
	min-height: 170px;
}
.page-template-top .bg6{
	background-image: url(img/top/bg6.webp);
	background-position: calc(50% + 500px) 50%;
	min-height: 95px;
	margin: 0 0 30px;
}
.page-template-top .image7{
	background-image: url(img/top/bg7.webp);
	background-size: cover;
	background-position: 30% 0%;
	min-height: 365px;
	margin: 0 0 0 min(calc((940px - 100vw) / 2), -5vw);
}
@media (max-width: 650px) {
	.page-template-top .bg2{
		min-height: 0px;
		margin-bottom: -10vw;
	}
	.page-template-top .bg3{
		background-image: url(img/top/bg1.webp);
		background-position: 90% 0%;
		background-size: 100px auto;
		padding: 18vw 0 9vw;
		overflow: hidden;
	}
	.page-template-top .bg3 img{
		max-width: 115%;
		margin-left: -10vw;
		filter: drop-shadow(0px min(50px, 5vw) min(20px, 3vw) rgba(0, 0, 0, 0.3));
	}
	.page-template-top .img4{
		margin: 100px 0 100px;
	}
	.page-template-top .bg5{
		min-height: 130px;
	}
	.page-template-top .chiiki_omou .row{
		gap: 15vw;
	}
	.page-template-top .bg6{
		min-height: 0;
	}
	.page-template-top .image7{
		min-height: 50vw;
		width: 100vw;
	}
	.page-template-top .kaisya .right{
		padding: 0 20vw;
	}
}





/* 発電所について *************************************************************************** */

.page-template-about .h1{
	text-align: right;
	overflow: hidden;
	padding: 0 0 min(80px, 9vw);
}
.page-template-about h1{
	text-align: left;
	margin: min(100px,10vw) 0 0 max(calc(600px - 50vw), -100px);
}
.page-template-about .h1 img{
	filter: drop-shadow(0px min(50px, 5vw) min(20px, 3vw) rgba(0,0,0, 0.3));
	margin: clamp(-220px, calc(500px - 65vw), 0px) -50px 0 -80px;
	max-width: 130%;
}
@media (max-width: 1200px) {
	.page-template-about h1{
		margin-left: min(calc(600px - 50vw), 20px);
	}
}

.page-template-about .img_1{
	margin: 20px 0 40px;
}

.page-template-about .maru_row{
	margin: 0 0 40px;
}
.page-template-about .maru1{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 200px;
	aspect-ratio: 1;
	border-radius: 200px;
	background-color: #d9f0ce;
	margin: 0 10px;
}
.page-template-about .maru1 span{
	line-height: 1.5;
}
.page-template-about .maru1 strong{
	font-size: 3rem;
	font-weight: 600;
	line-height: 1.3;
	margin: 15px 0 0;
}

.page-template-about #tokucho{
	padding: 70px 0;
	margin: 60px 0;
	background-color: #d9f0ce;
}
.page-template-about #tokucho .row{
	text-align: center;
	margin-top: 40px;
	margin-bottom: 40px;
}
.page-template-about #tokucho .row .text{
	margin: 0 50px;
}
.page-template-about #tokucho .row h3{
	text-align: left;
	margin-top: 0px;
}
@media (max-width: 650px) {
	.page-template-about #tokucho{
		margin-bottom: 0;
	}
	.page-template-about #tokucho .row{
		gap: 5vw 0;
	}
	.page-template-about #tokucho .row .text{
		margin: 0 0px;
	}
	.page-template-about #tokucho .row .image{
		width: 100%;
	}
	.page-template-about #tokucho .row .image img{
		display: inline-block;
		width: 100%; 
		vertical-align: bottom;
	}
}

.page-template-about .bg1{
	background-image: url(img/about/bg1.webp);
	background-position: calc(50% + 450px) 0%;
	min-height: 360px;
}
.page-template-about .img_3{
	margin: 130px 0 60px;
}

.page-template-about .shikumi .arrow{
	margin: 50px 0 50px;
}

.page-template-about .shikumi .text1{
	line-height: 1.4;
	margin: 10px 0 0;
}
.page-template-about .shikumi .text2{
	display: inline-block;
	text-align: left;
	font-size: 2.1rem;
	width: min(230px, 35vw);
}
.page-template-about .a5_2_2{
	flex-grow: 1;
	text-align: center;
	box-sizing: border-box;
	min-width: 85px;
	margin: 0 30px 0 10px;
}
.page-template-about .img_11{
	margin: -30px 0 0;
}
@media (max-width: 650px) {
	.page-template-about .bg1{
		background-position: 93% 0%;
		background-size: 130px auto;
		padding: 180px 0 0;
		margin: -50px 0 0;
	}
	.page-template-about .img_3{
		margin: 30px 0 60px;
	}
	.page-template-about .arrow{
		margin: 20px 0;
	}
	.page-template-about .img_12_1{
		width: 80%;
	}
	.page-template-about .img_12_2{
		width: 80%;
	}
}

.page-template-about .sisetu_table{
	margin-top: 150px;
	margin-bottom: 150px;
}
.page-template-about .sisetu_table h2{
	margin: 100px 0 60px;
}




/* HISTORY *************************************************************************** */

body.page-template-history .h1{
	height: min(650px, 85vw);
}

.page-template-history .greetings_from_president{
	margin: min(100px,10vw) 0;

	.greetings_header{
		display: flex;
		align-items: flex-end;
		background-image: url(img/history/1.webp);
		background-size: cover;
		background-position: 50%;
		background-repeat: no-repeat;
		box-sizing: border-box;
		aspect-ratio: 940/567;
		padding: 15px;

		img{
			max-width: 60%;
		}
	}
	h2{
		font-size: min(3.9rem, 5.5vw);
		text-align: left;
		margin: min(80px,9vw) 0 min(50px,7vw);
	}
	.voice_header{
		margin: 0 0 min(50px,7vw);
	}
	.vh_r1{
		margin: 0 0 10px;
	}
	.img_2{
		margin: min(100px,10vw) 0 0px;
	}
}

.page-template-history .ayumi{
	margin: min(150px,17vw) 0 0;
}





/* 会社概要 *************************************************************************** */

.page-template-company .h1,
.page-template-history .h1{
	box-sizing: border-box;
	height: min(650px, 100vw);
	background-image: url(img/company/1.webp);
	background-size: cover;
	background-position: 50% 100%;
	background-repeat: no-repeat;
	padding: min(200px, 20vw) 0 0;
}
.page-template-company h1,
.page-template-history h1{
	text-align: right;
	width: 1800px;
	max-width: 90%;
	margin: 0 auto;
}
@media (max-width: 1000px) {
	.page-template-company .h1,
	.page-template-history .h1{
		background-size: 125% auto;
		background-position: 10% 100%;
	}
	.page-template-company .sisetu_table{
		max-width: 100%;
	}
}

.page-template-company h2,
.page-template-history h2{
	margin: min(100px,11vw) 0 min(60px,7vw);
}

.page-template-company .ayumi .row,
.page-template-history .ayumi .row{
	margin: 0 0 40px;
}
.page-template-company .ayumi h3,
.page-template-history .ayumi h3{
	text-align: left;
	font-size: min(2.6rem, 4vw);
	margin: 0 0 1em;
}
@media (max-width: 650px) {
	.page-template-company .ayumi .row,
	.page-template-history .ayumi .row{
		gap: 7vw 0;
	}
	.page-template-company .ayumi img,
	.page-template-history .ayumi img{
		width: 100%;
	}
}

.access .text1{
	font-size: min(3rem, 4vw);
}
.access .text2{
	margin: 20px 0 40px;
}
.access .map iframe{
	width: 100%;
	height: 600px;
}
.access .text3{
	margin: 30px 0 0;
}
@media (max-width: 650px) {
	.access h2{
		margin-bottom: 40px;
	}
	.access .text2{
		margin: 0px 0 40px;
	}
	.access .map iframe{
		width: 100%;
		height: 90vw;
	}
}

.page-template-company .uucharo{
	margin: 50px 0;
}





/* U-CHARO'S ROOM ********************************************************************* */

.page-template-u_charos_room .h1{
	text-align: center;
	background-image: url(img/u_charos_room/1bg.png);
	background-position: 50%;
}
.page-template-u_charos_room .h1 h1{
	margin-top: 0;
}
.page-template-u_charos_room .h1 .img_1{
	margin: 0 0 max(-78px, -6.83vw);
}

.page-template-u_charos_room .img_c3{
	margin: min(70px, 7vw) 0;
}
.page-template-u_charos_room .img_3{
	margin: min(70px, 7vw) 0;
}





/* うんちで電気大作戦！ ********************************************************************* */

.page-template-unchi_de_denki .h1{
	text-align: center;
	background-image: url(img/unchi_de_denki/1bg.webp);
	background-size: cover;
	background-position: 50%;
}
.page-template-unchi_de_denki .h1 h1{
	margin-top: 0;
}

.page-template-unchi_de_denki .main{
	text-align: center;
	overflow: hidden;
}

.page-template-unchi_de_denki .img_m1{
	margin: 0 0 min(50px, 5vw) ;
}
.page-template-unchi_de_denki .img_m2{
	margin: 0 max(-107px, -10vw) min(90px, 9vw) 0;
}
.page-template-unchi_de_denki .img_m3{
	margin: 0 max(-164px, -16vw) min(90px, 9vw) 0;
}
.page-template-unchi_de_denki .img_m4{
	margin: 0 0 min(90px, 9vw) 0;
}
.page-template-unchi_de_denki .img_m5{
	margin: 0 max(-120px, -12vw) min(90px, 9vw) max(-70px, -7vw);
}
.page-template-unchi_de_denki .img_m6{
	/*margin: 0 max(-164px, -16vw) min(90px, 9vw) 0;*/
}
.page-template-unchi_de_denki .img_m7{
	margin: 0 0 min(90px, 9vw) 0;
	padding: 0 min(20px, 2vw) 0 0;
}

.page-template-unchi_de_denki .video{
	width: 870px;
	max-width: 96%;
	margin: 50px auto;
}
.page-template-unchi_de_denki .video iframe{
	width: 100%;
	aspect-ratio: 560/315;
	margin: 0px 0 20px;
	border-radius: 8px;
}
.page-template-unchi_de_denki .video .caption{
	box-shadow: 8px 8px 12px 0 rgba(0,0,0,0.15);
}


.page-template-unchi_de_denki .center_line{
	position: fixed;
	top: 0;
	left: 50%;
	height: 100vh;
	width: 1px;
	z-index: 1000;
	background-color: rgba(0, 255, 0, 0.5);
	background: revert;
}





/* MEMBER ********************************************************************* */

.member_page .h1{
	height: min(650px,58vw);
	background-image: url(img/member/1.webp);
	background-size: cover;
	background-position: 50%;
	background-repeat: no-repeat;
	margin-bottom: 50px;
}
.member_page .h1 .inner{
	width: 1200px;
	max-width: 90%;
	margin: 0 auto;
	padding-top: 20px;
}
.member_page h1{
	font-size: min(8.6rem, 8vw);
	color: #fff;
	margin-top: min(100px,11vw);
}
.member_page h1 small{
	margin-top: min(0px, calc(2vw - 15px));
}

.member_page h2{
	margin: min(120px,13vw) 0 0;
}

.member_page .p1{
	max-width: 700px;
	margin: min(60px, 6vw) auto 0;
}

.member_page .member_list{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 40px;
	margin: min(75px,8vw) 0;
}
.member_page .member_list a.member{
	flex-basis: calc(50% - 20px);
	/*display: flex;*/
	/*gap: 15px;*/
	text-decoration: none;
	transition: 0.15s linear;
	outline: 10px solid transparent;
	max-width: 450px;
	border-radius: 20px;
}
.member_page .member_list a.member:hover{
	--bg: rgba(0,0,0,0.07);
	/*background-color: var(--bg);*/
	/*outline: 10px solid var(--bg);*/
	opacity: 0.8;
}
.member_page .member_list .member .image img{
	border-radius: 20px;
}
.member_page .member_list .member .text{
	background-image: url(img/member/arrow.svg);
	background-position: 100% 5px;
	background-repeat: no-repeat;
	padding-right: 50px;
}
.member_page .member_list .member .text > p{
	margin: 0;
}
.member_page .member_list .member .text .vh_r1{
	flex-wrap: wrap;
	gap: 0 min(20px,2vw);
	margin: 10px 0;
}
.member_page .member_list .member .text .vh_r1_1{
	line-height: 1.5;
	margin: 0;
}
@media (max-width: 750px) {
	.member_page .member_list{
		display: inline-flex;
		flex-direction: column;
	}
	.member_page .member_list a.member{
		flex-basis: auto;
	}
}





/* MEMBER シングル ********************************************************************* */

.single-member .site-main{
	padding: min(170px,19vw) 0 0;
}

.single-member h1{
	text-align: center;
	font-size: 4rem;
	margin: 0px 0 30px;
}

.single-member .site-main :is(h2, h3){
	text-align: left;
}
.single-member .site-main h2{
	margin: min(7rem,5vw) 0 min(6rem,6vw);
}
.single-member .site-main h3{
	line-height: 1.7;
	margin-top: min(30px, 6vw);
}
.single-member .site-main h3:first-child{
	margin-top: 0;
}

@media (max-width: 900px) {
	.single-member .site-main .main_image{
		margin: 0 -4vw 1em;
	}
}

.single-member .site-main .wp-block-columns{
	margin: min(50px,8vw) 0;
}
.single-member .site-main .bp_break figure{
	margin: 0 auto;
	text-align: center;
	float: none;
}

.single-member article .voice_header{
	margin-bottom: min(60px,10vw);
}
.single-member article .bp_break .voice_header{
	justify-content: center;
}
.voice_header .vh_l{
	white-space: nowrap;
	font-family: din-2014, sans-serif;
	font-weight: 700;
	border-right: 1px solid #000;
	padding-right: 3rem;
	margin-right: 2.5rem;
}
.voice_header .vh_l1{
	font-size: min(3.2rem);
	line-height: 1;
}
.voice_header .vh_l2{
	font-size: min(8.6rem) !important;
	line-height: 0.7;
	margin-left: -0.04em;
}
.voice_header .vh_r{
	gap: 0.3em;
}
.single-member .site-main .bp_break .vh_r1{
	flex-direction: column;
	align-items: stretch;
}
.voice_header .vh_r1_1{
	font-weight: 600;
	font-size: min(2.6rem, 6vw);
	line-height: 1.1;
	margin-right: 0.4em;
}
.voice_header .vh_r1_2{
	font-family: din-2014, sans-serif;
	font-weight: 400;
	font-size: min(1.2rem, 3vw);
	letter-spacing: 0.1em;
}
.voice_header .vh_r2{
	font-size: min(1.6rem, 4vw);
	margin-top: 9px;
}
.voice_header .vh_r2 a:after{
	content: "";
	display: inline-block;
	background-image: url(img/common/a_after1.svg);
	background-size: cover;
	background-position: 50%;
	background-repeat: no-repeat;
	width: 1.1em;
	aspect-ratio: 1;
	margin: 0 0 -2px 6px;
}

.single-member .member_list{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 40px;
	margin: min(200px,20vw) 0;
}
.single-member .member_list a.member{
	flex-basis: calc(50% - 20px);
	display: flex;
	gap: 15px;
	text-decoration: none;
	transition: 0.15s linear;
	outline: 15px solid transparent;
}
.single-member .member_list a.member:hover{
	background-color: #f5f5f5;
	outline: 15px solid #f5f5f5;
}
.single-member .member_list .member .image{
	width: min(111px, 23vw);
}
.single-member .member_list .member .text{
	white-space: nowrap;
}
.single-member .member_list .member .vh_r1{
	flex-direction: column;
	align-items: stretch;
	gap: 0;
}
.single-member .member_list .member .vh_r1_1{
	line-height: 1.5;
	margin: 0;
}
.single-member .member_list .member .vh_r2{
	line-height: 1.9;
	margin: 10px 0 0;
}
@media (max-width: 820px) {
	.single-member .member_list{
		display: inline-flex;
		flex-direction: column;
	}
	.single-member .member_list a.member{
		flex-basis: auto;
	}
}





/* NEWS *************************************************************************** */

.news_page .h1{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 650px;
	background-image: url(img/news/1.webp);
	background-size: cover;
	background-position: 50%;
	background-repeat: no-repeat;
	margin-bottom: 50px;
}

.news_page h1{
	text-align: center;
	color: #000;
}

.news_page .bg1{
	background-image: url(img/news/bg1.webp);
	background-position: 50% 0;
	background-repeat: repeat-y;
}

.news_page article{
	padding: 60px 40px 60px 0;
	border-bottom: 1px solid #656464;
}
.news_page article .date{
	display: inline-block;
	font-size: 1.2rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	color: #fff;
	background-color: #38a633;
	padding: 5px 15px;
}
.news_page article .title{
	font-size: 2.6rem;
	line-height: 1.7;
	font-weight: 600;
	margin: 20px 0;
}
.news_page article .content{
/*	font-size: 1.4rem;*/
/*	line-height: 2.1;*/
}
.news_page .pagination{
	text-align: center;
	margin: 100px 0 100px;
	border-top: 1px solid #bfbdbd;
	padding: 50px 0;
}
.news_page .pagination h2{
	display: none;
}
.news_page .pagination .nav-links > div{
	display: inline-block;
	margin: 0 50px;
}

.news_page aside h2{
	text-align: left;
	font-size: 1.6rem;
	color: #38a633;
	margin: 50px 0 0;
}
.news_page aside ul{
	border-top: 1px solid #bfbdbd;
	margin: 0;
}
.news_page aside ul li{
	border-bottom: 1px solid #bfbdbd;
	padding: 10px 5px;
}
.news_page aside ul li a{
/*	text-decoration: none;*/
	font-weight: 600;
	text-decoration-color: transparent;
	text-underline-offset: 4px;
	transition: text-decoration-color 0.2s linear;
}
.news_page aside ul li a:hover{
	text-decoration-color: inherit;
}

.news_page aside .wp-block-archives{
	list-style: none;
	padding: 0;
}
.news_page aside .wp-block-archives li:before{
	content: "> ";
	font-weight: 600;
}

.news_page .post-navigation{
	display: none;
}
.single .news_page .post-navigation{
	display: block;
}

@media (max-width: 650px) {
	.news_page .h1{
		height: 55vw;
		margin: 0 0 0;
	}
	.news_page .h1 h1{
		margin: 10vw 0 0;
	}
	.news_page aside{
		padding: 1px 0;
		overflow: hidden;
		height: 0;
		transition: 0.3s ease-in-out;
	}
	.news_page .row1{
		gap: 30px 0;
	}
	.news_page .recent_posts{
		display: none;
	}
	.news_page .recent_posts{
		display: none;
	}
	.news_page .archive_button_row{
		text-align: right;
		margin: 5px 0;
	}
	.news_page .archive_button{
		cursor: pointer;
		display: inline-block;
		color: #fff;
		background-color: #38a633;
		border-radius: 50px;
		padding: 5px 15px;
		transition: 0.15s linear;
	}
	.news_page .archive_button:hover{
		filter: brightness(1.15);
	}
}




/* お問合せ *************************************************************************** */

.page-template-contact h1{
	text-align: center;
	margin: min(100px, 10vw) 0;
}
.page-template-contact #input_area{
	scroll-margin: 100px;
}
.page-template-contact #privacy_policy_check{
	text-align: center;
	margin: 60px 0 40px;
	scroll-margin: 300px;
}
.page-template-contact .submit_area,
.page-template-contact .wpcf7cp-btns{
	position: relative;
	text-align: center;
}

.page-template-contact span[data-name="english"]{
	display: none;
}

table.type_cf7,
#wpcf7cpcnf table{
	border-collapse: collapse;
	width: 100%;
}
table.type_cf7 :is(th, td),
#wpcf7cpcnf table :is(th, td){
	text-align: left;
	font-weight: 300;
	padding: 15px 30px;
	background-clip: padding-box; /* Firefox対策。border が表示されるようにする。 */
}
table.type_cf7 th,
#wpcf7cpcnf table th{
	white-space: nowrap;
	vertical-align: top;
	padding-left: 0;
}
table.type_cf7 th.hissu:after{
	content: "※";
	color: #ff6069;
}
table.type_cf7 td,
#wpcf7cpcnf table td{
	background-color: #fff;
	width: 750px;
}
table.type_cf7 p,
#wpcf7cpcnf table p{
	margin: 0;
}
@media (max-width: 650px) {
	table.type_cf7 td,
	#wpcf7cpcnf table td{
		padding-left: 0;
		padding-right: 0;
	}
}
@media (max-width: 500px) {
	:is(table.type_cf7, #wpcf7cpcnf table),
	:is(table.type_cf7, #wpcf7cpcnf table) thead,
	:is(table.type_cf7, #wpcf7cpcnf table) tbody,
	:is(table.type_cf7, #wpcf7cpcnf table) tr,
	:is(table.type_cf7, #wpcf7cpcnf table) th,
	:is(table.type_cf7, #wpcf7cpcnf table) td{
		display: block;
		width: 100%;
	}
	:is(table.type_cf7, #wpcf7cpcnf table) th{
		padding-bottom: 0;
	}
	:is(table.type_cf7, #wpcf7cpcnf table) td{
		padding-top: 0;
	}
}

div.wpcf7 .wpcf7-form .ajax-loader{
	display: none;
}

.wpcf7-spinner{
	position: absolute;
	top: calc(50% - 12px);
}

.thanks_url{
	display: none;
}

.wpcf7-checkbox > span{
	display: block;
}

.en_page .wpcf7cp-cfm-edit-btn,
.en_page .wpcf7cp-cfm-submit-btn{
	color: transparent;
	letter-spacing: -1em;
}
.en_page .wpcf7cp-cfm-edit-btn:before,
.en_page .wpcf7cp-cfm-submit-btn:before{
	content: "Edit";
	color: #fff;
	letter-spacing: 0;
}
.en_page .wpcf7cp-cfm-submit-btn:before{
	content: "Submit";
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="search"],
textarea,
select{
	font-size: 1.6rem;
	font-weight: 400;
	box-sizing: border-box;
	border: 1px solid #cdcdcd;
	border-radius: 4px;
	outline: 0;
	padding: 10px;
	margin: 0;
	width: 100%;
	-webkit-appearance: none; /* iPhone の入力欄へのエフェクトを消す */
}

.page-template-contact #privacy_policy{
	margin: 130px 0 0;
	scroll-margin: 100px;
}
.page-template-contact #privacy_policy p{
	margin: 0;
}
.page-template-contact #privacy_policy .submit_area{
	margin: 70px 0 0;
}
.page-template-contact .ja_page .contact_en,
.page-template-contact .en_page .contact_ja{
	display: none;
}



.page-template-thanks h1{
	text-align: center;
	margin: min(100px, 10vw) 0 0;
}
.page-template-thanks .title1{
	text-align: center;
	font-size: min(6.1rem, 5vw);
	font-weight: 600;
	margin: 40px 0;
}



/* 404 *************************************************************************** */

.error-404{
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	padding: 100px 0 0;
	height: calc(100vh - 750px);
}

