/*
Theme Name: Lightning Child
Theme URI: 里山文化サステナブルツーリズム開発プロジェクト
Template: lightning
Description: 里山文化サステナブルツーリズム開発プロジェクト
Author: 名古屋大学環境学研究科教授高野雅夫研究室
Tags: ffs
Version: 0.6.0
*/

@-ms-viewport {
    width: auto;
}

body, html {
    overflow-x: clip;
}

body {
	font-family: 'Noto Sans JP',  "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", sans-serif;
	letter-spacing: 1px;
	color: #212121;
	line-height: 1.5;
	margin: 0;
	padding: 0;
	-webkit-text-size-adjust: 100%;
}

body.home, header, footer {
	font-family: 'Shippori Mincho', "游明朝", YuMincho, 'Noto Serif JP', "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}

/* -----------------------------------------------------------
	グローバルCSS
----------------------------------------------------------- */

:root {
	--color-black1: #111;
	--color-black2: #212121;
	--color-black3: #333;
	--font-gothic: 'Noto Sans JP',  "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", sans-serif;
	--font-mincho: 'Shippori Mincho', "游明朝", YuMincho, 'Noto Serif JP', "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

/* -----------------------------------------------------------
	リセットCSS
----------------------------------------------------------- */

ul {
	list-style-type: none;
	padding-left: 0;
	margin: 0;
}

li {
	margin: 0;
}

img {
	max-width: 100%;
	height: auto;
}

a, .siteFooter a {
	outline:none;
	text-decoration: none;
}

a:hover, .siteFooter li>a:hover, .subSection li>a:hover {
	opacity: 0.7;
	text-decoration: none;
}

h1, h2, h3 {
	margin: 0;
	padding: 0;
	border: none;
	line-height: 1.5;
}

h3::after {
	content: none;
}

p {
	margin: 0;
	line-height: 1.7;
}

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

header.siteHeader {
	box-shadow: none;
	background-color: transparent;
	min-height: inherit;
}

.container, .container-lg, .container-md, .container-sm, .container-xl {
	max-width: inherit;
}

.col {
	padding: 0;
}

.siteContent {
	padding: 0;
}

.mainSection {
	margin-bottom: 0;
}

.admin-bar .vk-mobile-nav-menu-btn {
	display: none !important;
}

.vk-mobile-nav-menu-btn {
	display: none !important;
}

dl {
	margin: 0;
	padding: 0;
}

dl dt, dl dd {
	margin: 0;
	padding: 0;
	border: none;
}

/* -----------------------------------------------------------
	ヘッダー
----------------------------------------------------------- */

header.siteHeader {
	
}

header.siteHeader .siteHeadContainer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 92%;
	padding: 20px 15px;
}

header .siteHeadContainer h1.head-logo {
	line-height: 0;
	max-width: 470px;
}

header .siteHeadContainer h1.head-logo a {
	display: inline-block;
}

header .siteHeadContainer .gnav {
	display: flex;
    align-items: center;
    justify-content: flex-end;
	width: 70%;
	margin-left: auto;
}

header .siteHeadContainer .gnav nav {
	width: 100%;
	display: flex;
    justify-content: flex-end;
}

header .siteHeadContainer .gnav ul {
	display: flex;
}

header .siteHeadContainer .gnav ul li {
	margin-right: 40px;
}

header .siteHeadContainer .gnav ul li a {
	color: var(--color-212121);
	font-weight: 600;
}

header .head-instagram {
	width: 30px;
}

header .head-instagram a {
	display: block;
}

/*---- ハンバーガーメニュー ----*/

.g-nav.panelactive {
    position:fixed;
    z-index: 999;
	top: 0;
	width:100%;
    height: 100vh;
}

.circle-bg{
    position: fixed;
	z-index:3;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #212121;
	transform: scale(0);
	right:-50px;
    top:-50px;
    transition: all .6s;
}

.circle-bg.circleactive{
	transform: scale(50);/*クラスが付与されたらscaleを拡大*/
}

.g-nav ul {
	opacity: 0;/*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

.g-nav.panelactive ul {
    opacity:1;
}

.g-nav.panelactive ul li{
	animation-name:gnaviAnime;
	animation-duration:1s;
	animation-delay:.2s;/*0.2 秒遅らせて出現*/
	animation-fill-mode:forwards;
	opacity:0;
}

@keyframes gnaviAnime{
	0% {
		opacity: 0;
	}
	100% {
	opacity: 1;
	}
}

.g-nav li{
	text-align: center; 
	list-style: none;
	margin-bottom: 10px;
}

.g-nav li a{
	color: #f4f4f4;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
	font-size: 16px;
}


/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
	top: 0;
	right: 0;
	z-index: 9999;
	cursor: pointer;
    width: 50px;
    height:50px;
	background-color: #111;
}
		
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #fff;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

@media screen and (min-width:1201px) {
	.openbtn {
		display: none;
	}
	
	#g-nav {
		display: none;
	}
	
	.circle-bg {
		display: none;
	}
}

@media screen and (min-width: 1201px) and (max-width: 1400px) {
	header.siteHeader .siteHeadContainer {
		max-width: 100%;
	}
}

@media screen and (min-width: 960px) and (max-width: 1200px) {
	header.siteHeader .siteHeadContainer {
		max-width: 100%;
	}
	
	header.siteHeader .siteHeadContainer .gnav {
		display: none;
	}
}

@media screen and (min-width: 769px) and (max-width: 959px) {
	header.siteHeader .siteHeadContainer {
		max-width: 100%;
	}
	
	header.siteHeader .siteHeadContainer .gnav {
		display: none;
	}
}

@media screen and (min-width: 561px) and (max-width: 768px) {
	header.siteHeader .siteHeadContainer {
		max-width: 100%;
	}
	
	header.siteHeader .siteHeadContainer .gnav {
		display: none;
	}
}

@media screen and (max-width: 560px) {
	header.siteHeader .siteHeadContainer {
		max-width: 100%;
	}
	
	header .siteHeadContainer h1.head-logo {
		padding-right: 50px;
	}
	
	header.siteHeader .siteHeadContainer .gnav {
		display: none;
	}
}

/* -----------------------------------------------------------
	共通CSS
----------------------------------------------------------- */

.contents-wrap {
	width: 100%;
	max-width: 1130px;
	margin: 0 auto 60px;
	padding: 0 15px;
}

.flex-wrap {
	display: flex;
	justify-content: space-between;
}

.flex-wrap .flex-left, .flex-wrap .flex-right {
	width: 48%;
}

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

.ib {
	display: inline-block;
	text-align: left;
}

.mb-1 {
	margin-bottom: 1em;
}

#page_top {
    position: fixed;
    bottom: 20px;
    right: 1.5%;
	z-index: 50;
}

.imgcut {
	position: relative;
}

.imgcut::before {
	content:"";
	display: block;
	padding-bottom: 66.6%;
}

.imgcut img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

@media screen and (max-width: 560px) {
	.flex-wrap {
		display: block;
	}

	.flex-wrap .flex-left, .flex-wrap .flex-right {
		width: auto;
	}
	
	.flex-wrap .flex-left {
		margin-bottom: 15px;
	}
}

/* -----------------------------------------------------------
	トップページ
----------------------------------------------------------- */

.mainvisual {
	margin-bottom: 60px;
	position: relative;
	height: 50vh;
	overflow: hidden;
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
.swiper-slide-active .imgcut,
.swiper-slide-duplicate-active .imgcut,
.swiper-slide-prev .imgcut {
  animation: zoomUp 7s linear 0s normal both;
}

.mainvisual .imgcut::before {
	padding-bottom: 100%;
}

.mainvisual .catchcopy {
	position: absolute;
	left: 5%;
	top: 5%;
	z-index: 10;
}

.mainvisual .catchcopy h1 {
	color: #fff;
}

.mainvisual .catchcopy h2 {
	color: #fff;
}

.top_news_wrap h2 {
	text-align: center;
	margin-bottom: 20px;
}

.top_news_wrap ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.top_news_wrap ul::before {
	content: "";
	display: block;
	width: 23%;
	order: 1;
}

.top_news_wrap ul::after {
	content: "";
	display: block;
	width: 23%;
}

.top_news_wrap ul li {
	width: 23%;
	text-align: center;
}

.top_news_wrap ul li a {
	display: block;
	color: #333;
}

.top_news_wrap ul li a .imgcut::before {
	padding-bottom: 80%;
}

.top_news_wrap ul li a p {
	font-size: 14px;
	display: inline-block;
	text-align: justify;
}

.top-project {
	flex-direction: row-reverse;
}

.top-project .flex-left {
	width: 65%;
}

.top-project .flex-left h2 {
	font-size: 36px;
	color: var(--color-black1);
	margin-bottom: 15px;
	line-height: 1;
	font-weight: bold;
}

.top-project .flex-left h3 {
	font-size: 22px;
	color: var(--color-black2);
	margin-bottom: 10px;
	font-weight: bold;
}

.top-project .flex-left p {
	color: var(--color-black3);
	margin-bottom: 20px;
}

.btn-wrap {
	text-align: center;
}

.btn-wrap a {
	display: inline-block;
	box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
	background-color: var(--color-black2);
	color: #fff;
	padding: 15px 30px;
	min-width: 200px;
	position: relative;
	border-radius: 4px;
	transition: 0.3s;
	color: #f4f4f4;
}

.btn-wrap a:hover {
	opacity: 1;
	box-shadow: none;
}

.btn-wrap a::after {
	content: "";
	display: block;
	background-image: url("./images/arrow.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 20px;
	height: 9px;
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	-webkit- transform: translateY(-50%);
	transition: 0.3s;
}

.btn-wrap a:hover::after {
	right: 10px;
}

.top-project .flex-right {
	width: 32%;
}

.top-project .flex-right .imgcut::before {
	padding-bottom: 120%;
}

section.sticky_wrap {
	background-color: #f4f4f4;
	position: relative;
}

section.sticky_wrap.sticky_white {
	background-color: #fff;
}

section.sticky_wrap .section_inr {
	flex-direction: row-reverse;
}

section.sticky_wrap .section_inr .flex-left {
	width: 40%;
	padding: 35px;
	display: flex;
	justify-content: center;
	align-items: center;
}

section.sticky_wrap .section_inr .flex-left .flex-left-inr {
	display: flex;
	flex-direction: column;
	align-items: center;
}

section.sticky_wrap .section_inr .flex-left .section-title {
	margin-bottom: 50px;
}

section.sticky_wrap .section_inr .flex-left .section-title h2 {
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	padding: 15px 5px;
	font-size: 36px;
	background-color: var(--color-black1);
	color: #f4f4f4;
}

section.sticky_wrap .section_inr .flex-left .section-text {
}

.section-text-inr {
	display:flex;
	justify-content: center;
	max-height: 70vh;
	margin-bottom: 25px;
}

section.sticky_wrap .section_inr .flex-left .section-text p {
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}

section.sticky_wrap .section_inr .flex-right {
	width: 60%;
	min-height: 600px;
}

section.sticky_wrap .section_inr .flex-right .img-erea {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center bottom;
}

@media screen and (min-width: 769px) and (max-width: 959px) {
	section.sticky_wrap .section_inr .flex-left .section-title {
   		margin-left: 10px;
	}
}

@media screen and (min-width: 561px) and (max-width: 768px) {
	.mainvisual {
		height: auto;
	}
	
	.mainvisual .imgcut::before {
		padding-bottom: 66.6%;
	}
	
	.mainvisual .catchcopy h1 {
		font-size: 18px;
	}
	
	.mainvisual .catchcopy h2 {
		font-size: 16px;
	}
	
	.top-project .flex-left {
		width: 100%;
		margin-bottom: 20px;
	}
	
	.top-project .flex-left h2 {
		font-size: 28px;
	}
	
	.top-project .flex-left h3 {
		font-size: 18px;
	}
	
	.top-project .flex-right {
		width: 100%;
		max-width: 400px;
		margin: 0 auto;
	}
	
	section.sticky_wrap {
		height: auto;
	}
	
	section.sticky_wrap .section_inr .flex-left {
		width: 100%;
		display: block;
		padding: 15px;
	}
	
	section.sticky_wrap .section_inr .flex-left .flex-left-inr {
		display: block;
	}
	
	section.sticky_wrap .section_inr .flex-left .section-title {
		margin-left: 0;
		text-align: center;
	}
	
	section.sticky_wrap .section_inr .flex-left .section-title h2 {
		-ms-writing-mode: lr-tb;
		writing-mode: horizontal-tb;
		background-color: transparent;
		color: var(--color-black2);
		font-size: 28px;
		padding: 0;
	}
	
	section.sticky_wrap .section_inr .flex-left .section-text p {
		-ms-writing-mode: lr-tb;
		writing-mode: horizontal-tb;
	}
	
	section.sticky_wrap .section_inr .flex-right {
		width: 100%;
		height: 400px;
		min-height: inherit;
	}
}

@media screen and (max-width: 560px) {
	.mainvisual {
		height: auto;
		margin-bottom: 30px;
	}
	
	.mainvisual .imgcut::before {
		padding-bottom: 66.6%;
	}
	
	.mainvisual .catchcopy {
		position: static;
		padding: 15px 15px 0;
	}
	
	.mainvisual .catchcopy h1 {
		font-size: 18px;
		color: #212121;
	}
	
	.mainvisual .catchcopy h2 {
		font-size: 16px;
		color: #212121;
	}
	
	.top_news_wrap ul::before {
		content: none;
	}

	.top_news_wrap ul::after {
		content: none;
	}

	.top_news_wrap ul li {
		width: 48%;
		margin-bottom: 15px;
	}
	
	.top_news_wrap ul li:nth-child(3), .top_news_wrap ul li:nth-child(4) {
		margin-bottom: 0;
	}
	
	.top-project .flex-left {
		width: 100%;
	}
	
	.top-project .flex-left h2 {
		font-size: 28px;
	}
	
	.top-project .flex-left h3 {
		font-size: 18px;
	}
	
	.top-project .flex-right {
		width: 100%;
	}
	
	section.sticky_wrap {
		height: auto;
	}
	
	section.sticky_wrap .section_inr .flex-left {
		width: 100%;
		display: block;
		padding: 15px;
	}
	
	section.sticky_wrap .section_inr .flex-left .flex-left-inr {
		display: block;
	}
	
	section.sticky_wrap .section_inr .flex-left .section-title {
		margin-left: 0;
		text-align: center;
	}
	
	section.sticky_wrap .section_inr .flex-left .section-title h2 {
		-ms-writing-mode: lr-tb;
		writing-mode: horizontal-tb;
		background-color: transparent;
		color: var(--color-black2);
		font-size: 24px;
		padding: 0;
	}
	
	section.sticky_wrap .section_inr .flex-left .section-text p {
		-ms-writing-mode: lr-tb;
		writing-mode: horizontal-tb;
	}
	
	section.sticky_wrap .section_inr .flex-right {
		width: 100%;
		height: 250px;
		min-height: inherit;
	}
}


/* -----------------------------------------------------------
	フッター
----------------------------------------------------------- */

footer.siteFooter {
	border: none;
	padding: 290px 15px 0;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
	font-family: var(--font-gothic);
}

footer.siteFooter::before {
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	background-color: rgba(35,35,35,0.7);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: 0 auto;		
}

.ftr_top-logo {
	position: absolute;
	top: 30px;
	right: 0;
	left: 0;
	width: 40%;
	max-width: 200px;
	margin: 0 auto;
	z-index: 3;
}

.ftr_top-logo a {
	display: block;
}


.footer-contents {
	position: relative;
	z-index: 3;
	display: flex;
	justify-content: space-between;
	color: #fff;
	max-width: 90%;
	margin: 0 auto 30px;
}

.footer-contents .ftr-logo .ftr-logo-erea {
	margin-bottom: 15px;
	max-width: 470px;
}

.footer-contents .ftr-logo .ftr-logo-erea a {
	display: inline-block;
}

.footer-contents .ftr-link ul li {
	margin-bottom: 15px;
}

.footer-contents .ftr-link ul li a {
	display: flex;
	align-items: center;
	width: 230px;
	border: 1px solid #fff;
	border-radius: 4px;
	padding: 5px 0;
	color: #fff;
}

.footer-contents .ftr-link ul li a .icon-wrap {
	text-align: center;
	width: 62px;
	height: 46px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-right: 1px solid #fff;
	padding: 0 10px;
	margin-right: 15px;
}

.footer-contents .ftr-link ul li:nth-child(2) a .icon-wrap img {
	max-width: 26px;
	margin: 0 auto;
}

.follow_instagram a {
	color: #fff;
	display: flex;
	justify-content: flex-end;
	align-items: center;font-family: 'Shippori Mincho', "游明朝", YuMincho, 'Noto Serif JP', "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	
}

.follow_instagram a span {
	margin-right: 10px;
}

.follow_instagram a img {
	width: 32px;
	height: 32px;
}

.copySection {
	color: #fff;
	font-size: 14px;
	position: relative;
	z-index: 3;
}

@media screen and (min-width: 769px) and (max-width: 959px) {
	.ftr-logo {
		padding-right: 15px;
	}
}

@media screen and (min-width: 561px) and (max-width: 768px) {
	.footer-contents {
		display: block;
		max-width: 100%;
	}
	
	.ftr-logo {
		text-align: center;
		margin-bottom: 25px;
	}
	
	.footer-contents .ftr-link {
		text-align: center;
	}
	
	.footer-contents .ftr-link ul {
		width: 500px;
		margin: 0 auto;
		display: flex;
		justify-content: space-between;
	}
	
	.footer-contents .ftr-link ul li {
		display: inline-block;
	}
	
	.follow_instagram a {
		justify-content: center;
	}
	
	.copySection {
		padding: 0;
	}
	
	.copySection p {
		margin: 15px 0;
	}
}

@media screen and (max-width: 560px) {
	.footer-contents {
		display: block;
		max-width: 100%;
	}
	
	.ftr-logo {
		text-align: center;
		margin-bottom: 15px;
	}
	
	.footer-contents .ftr-link {
		text-align: center;
	}
	
	.footer-contents .ftr-link ul {
		max-width: 230px;
		margin: 0 auto;
	}
	
	.footer-contents .ftr-link ul li {
		display: inline-block;
	}
	
	.follow_instagram a {
		justify-content: center;
	}
	
	.copySection {
		padding: 0;
	}
	
	.copySection p {
		margin: 15px 0;
	}
}

/* -----------------------------------------------------------
	下層ページ共通
----------------------------------------------------------- */

.page-head-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.page-head-bg .page-header {
	background-color: rgba(0,0,0,0.3);
	padding: 30px 0;
}

.breadSection {
	background-color: #fff;
	margin-bottom: 50px;
}

.breadSection .container {
    width: 100%;
    max-width: 1130px;
    margin: 0 auto;
    padding: 0 15px;
}

.breadSection .breadcrumb {
	padding: 6px 0;
}

.breadSection .row {
	margin: 0;
}

/* -----------------------------------------------------------
	お問い合わせ
----------------------------------------------------------- */

.contact-text {
	text-align: center;
	margin-bottom: 30px;
}

.contact-text a {
	text-decoration: underline;
	color: #0645ad;
}

a.js-modal-open {
    position: relative;
}

.modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
}
.modal__bg{
    background: rgba(0,0,0,0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
}
.modal__content{
    background: #fff;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 94%;
	max-width: 1000px;
	overflow-y: scroll;
	max-height: 90vh;
}

.modal__content dl dt {
	margin-bottom: 5px;
	font-weight: 600;
	color: #444;
}

.modal__content dl dd {
	margin-bottom: 25px;
}

.modal__content a.js-modal-close {
	background-color: #555;
	color: #fff;
	margin-bottom: 15px;
	display: inline-block;
	padding: 8px 40px;
	border-radius: 4px;
	text-decoration: none;
}

.privacy_page h2 {
	text-align: center;
	margin-bottom: 20px;
}

.privacy_erea p {
	margin-bottom: 1em;
}

.privacy_page {
	text-align: left;
	padding: 30px 15px;
}

.privacy_erea {
	height: auto;
	border: none;
	overflow: auto;
	padding: 0;
}

.form_wrap {
	box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 18px;
	border-radius: 10px;
	background-color: #fafafa;
	max-width: 830px;
    margin: 0 auto;
}

.form_inr {
	max-width: 800px;
	margin: 0 auto;
	padding: 30px 15px;
}

.form_wrap dl {
	width: 100%;
}

.form_wrap dl dt {
	margin-bottom: 5px;
	font-weight: 500;
	color: var(--color-black3);
}

.form_wrap dl dt span {
	background-color: #d66765;
	font-size: 12px;
	display: inline-block;
	padding: 4px 10px;
	margin-left: 10px;
	border-radius: 4px;
	color: #fff;
	position: relative;
    top: -2px;
}

.form_wrap dl dd {
	margin-bottom: 20px;
}

.form-control {
	background-color: #fefefe;
}

.form_wrap .mwform-checkbox-field input, .form_wrap .mwform-radio-field input {
	margin-right: 1px;
}

.submt_wrap {
	text-align: center;
	padding-top: 15px;
}

.submt_wrap input[type=submit] {
	font-size: 16px;
	width: 120px;
	border-radius: 4px;
}

.submt_wrap input[type=submit]:hover {
	opacity: 0.8;
}

.form_wrap select {
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
        text-indent: .01px;
        text-overflow: "";
    appearance:none;
     
}

.submt_wrap input[type=submit] {
	background-image: none;
	font-weight: bold;
}

.submt_wrap button {
	color: #efefef;
	display: inline-block;
	overflow: hidden;
	position: relative;
	padding: 10px 20px 8px;
	text-decoration: none;
	cursor: pointer;
	border: 1px solid var(--color-black3);
	box-shadow: inset 0px 0px 1px rgba(255,255,255,1);
	background-color: var(--color-black3);
	border-color: var(--color-black3);
	font-size: 16px;
    width: 120px;
    border-radius: 5px;
	font-weight: bold;
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: var(--color-black3);
    border-color: var(--color-black3);
}

.submt_wrap button:hover {
	opacity: 0.7;
}
.thanks_wrap {
	text-align: center;
	font-size: 18px;
	padding-top: 30px;
	margin-bottom: 70px;
}

.thanks_contact {
	margin-top: 25px;
}

.thanks_contact a {
	color: #212121;
	font-weight: bold;
	font-size: 1.4em;
}

form input[type=text], form input[type=email], form input[type=password], form input[type=date], form textarea {
	width: 100%;
}

.submt_wrap .btn-primary {
	border: 1px solid var(--color-black3);
    box-shadow: inset 0px 0px 1px rgba(255,255,255,1);
    background: var(--color-black3);
	padding: 10px 20px 8px;
	margin-bottom: 0;
	color: #efefef;
	position: relative;
    top: -3px;
}

input[type=submit] {
	border: 1px solid var(--color-black3);
    box-shadow: inset 0px 0px 1px rgba(255,255,255,1);
    background: var(--color-black3);
	padding: 10px 20px 8px;
	margin-bottom: 3px;
	color: #efefef;
}

.mw_wp_form form {
	width: auto;
}

.form_wrap dl dd span.mwform-checkbox-field {
	display: block;
	margin-left: 10px;
}

.er_m_wrap {
	text-align: center;
	margin-bottom: 15px;
}

.mw_wp_form .error-message {
	display: none;
}

.mw_wp_form_error .error-message {
	display: inline-block;
	color: #E60012;
	text-align: left;
	padding-left: 1em;
	text-indent: -1em;
}

.confirm_block .form_wrap {
	padding-top: 30px;
	padding-bottom: 30px;
}

.confirm_p {
	text-align: center;
}

.confirm_p p {
	display: inline-block;
	text-align: left;
	padding: 0 15px;
}

.confirm_block dl dt {
	padding-top: 20px;
	border-top: 1px solid #aaa;
}

.confirm_block dl dd:last-child {
	border-bottom: 1px solid #aaa;
	padding-bottom: 20px;
}

.confirm_block .mw_wp_form_preview {
	max-width: 800px;
	margin: 0 auto;
}

.thanks_wrap h3 {
	font-size: 18px;
	color: #333;
	margin-bottom: 30px;
}

/* -----------------------------------------------------------
	活動記録
----------------------------------------------------------- */

.blog .container, .post-template-default .container, .archive .container, .single-recorden .container {
	max-width: 1130px;
	margin: 0 auto;
	padding: 0 15px;
}

.blog .page-header .container .col-md-12, .post-template-default .page-header .container .col-md-12, .archive .page-header .container .col-md-12, .single-recorden .page-header .container .col-md-12 {
	max-width: inherit;
}

.blog .siteHeadContainer, .post-template-default .siteHeadContainer, .archive .siteHeadContainer, .blog .site-header-container, .post-template-default .site-header-container, .archive  .site-header-container, .single-recorden  .site-header-container {
	max-width: inherit;
	padding: 0;
	margin: 0 auto;
}

.blog .site-footer-copyright, .post-template-default .site-footer-copyright, .archive .site-footer-copyright, .single-recorden .site-footer-copyright {
	max-width: inherit;
	margin: 0;
	padding: 10px 5px;
}

.blog .siteContent .container, .post-template-default .siteContent .container, .archive .siteContent .container, .single-recorden .siteContent .container {
	margin-bottom: 50px;
    margin-bottom: 50px;
	padding: 0 30px;
}

.mainSection header h1.entry-title {
	font-size: 1.2em;
}

.entry-meta_updated, .entry-meta_items_author {
	display: none !important;
}

.archive .mainSection header h1 {
	font-size: 26px;
	font-weight: bold;
	color: #191919;
}

.media .hentry .media-body .media-heading {
	font-size: 22px;
	font-weight: bold;
	color: var(--color-black3);
}

.category-news .entry-meta_items .btn-primary {
	background-color: var(--color-black3) !important;
}

.entry-footer {
	margin-top: 20px;
}

.entry-meta-dataList dd a {
	color: var(--color-black3) !important;
}

.widget .subSection-title {
	padding-top: 10px;
}

.vk_posts-mainSection .vk_post-col-lg-12.media .media-img {
	display: none;
}

.vk_post_title_new {
	display: none;
}

.vk_post .media-img {
	display: none;
}

.next-prev {
	display: none;
}

.entry-meta-item-updated, .entry-meta-item-author {
	display: none;
}

.archive-header-title {
	font-size: 24px;
}

.entry-header h1.entry-title {
	font-size: 22px;
}

.breadcrumb-list a {
	text-decoration: none;
}

/* -----------------------------------------------------------
	投稿機能
----------------------------------------------------------- */


.postList {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.postList:after {
	content: "";
	display: block;
	width: 32%;
}

.postList article.media {
	width: 32%;
}

.media .postList_thumbnail {
	float: none;
	width: 100%;
	padding-right: 0;
}

.media .postList_thumbnail img {
	height: 100%;
	border: none;
}

.entry-meta {
	margin-bottom: 0;
}

.media .media-body .media-heading a {
	font-size: 16px;
	font-weight: 500;
	font-family: var(--font-mincho);
}

.entry-meta_items_term {
	float: left;
	margin-right: 3px;
}

.entry-meta_items_term_button {
	font-size: 12px;
	line-height: 1.2;
	padding: 4px 1em;
	border-radius: 3px;
	background-color: #333;
}

@media screen and (max-width: 560px) {
	.postList {
		display: block;
	}
	
	.postList:after {
		content: none;
	}

	.postList article.media {
		width: 100%;
	}
}

/* -----------------------------------------------------------
	プロジェクトについて
----------------------------------------------------------- */

.page-template-page-project .page-head-bg .page-header, .page-template-page-project .breadSection {
	display: none;
}

section.project-top-section {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	padding: 50px 0;
	margin-bottom: 5px;
}

.project-top .project-header {
	text-align: center;
	padding: 0 15px;
	max-width: 92%;
	margin: 0 auto 40px;
}

.project-top .project-header h2 {
	font-size: 30px;
	margin-bottom: 10px;
}

.project-top .project-header p {
	display: inline-block;
	text-align: left;
	background-color: #fff;
	padding: 3px 50px;
}

.project-contents {
	display: flex;
	justify-content: space-between;
	padding: 0 15px;
	max-width: 92%;
	margin: 0 auto;
}

.project-contents .project-list {
	width: 32%;
}

.project-contents .project-list:nth-child(2) {
	margin-top: 50px;
}

.project-contents .project-list:nth-child(3) {
	margin-top: 100px;
}

.project-contents .project-list .imgcut {
	margin-bottom: 15px;
}

.project-contents .project-list .imgcut::before {
	padding-bottom: 58%;
}

.project-contents .project-list ul li {
	color: #fff;
	margin-bottom: 10px;
	padding-left: 1em;
	text-align: justify;
	font-size: 15px;
	position: relative;
}

.project-contents .project-list ul li::before {
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
}

.project-detail-wrap {
	padding: 0 15px;
	max-width: 92%;
	margin: 0 auto;
}

.detail-top {
	margin-bottom: 20px;
}

.detail-bottom {
	margin-bottom: 30px;
	border-bottom: 2px solid #707070;
}

.line_one {
	width: 100%;
	height: 7px;
	background-color: #707070;
	margin: 5px auto;
}

.line_two {
	width: 100%;
	height: 15px;
	background-color: #BEBEBE;
}

.project-detail-wrap .project-info-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border: 1px solid #707070;
	padding: 15px 0;
	margin-bottom: 70px;
}

.project-detail-wrap .project-info-wrap .project-name {
	font-size: 14px;
	width: 30%;
	padding: 0 3%;
	text-align: center;
}

.project-detail-wrap .project-info-wrap .project-name p {
	text-align: left;
	display: inline-block;
}

.project-detail-wrap .project-info-wrap .project-name-en {
	width: 60%;
	text-align: center;
	border-left: 1px solid #707070;
	border-right: 1px solid #707070;
	padding: 0 3%;
}

.project-detail-wrap .project-info-wrap .project-info {
	font-size: 14px;
	width: 30%;
	padding: 0 3%;
	text-align: center;
}

.project-detail-wrap .project-info-wrap .project-info p {
	text-align: left;
	display: inline-block;
}

.project-detail-wrap .project-info-wrap .project-info a {
	text-align: left;
	display: block;
}

.phase_wrap {
	text-align: center;
}

.phase_wrap h2 {
	font-size: 16px;
	margin-bottom: 60px;
}

.phase_wrap .phase_list_wrap {
	display: flex;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto 70px;;
}

.phase_wrap .phase_list_wrap .phase_list ul {
	margin-bottom: 20px;
}

.phase_wrap .phase_list_wrap .phase_list ul li:not(:last-child) {
	position: relative;
	padding-bottom: 30px;
}

.phase_wrap .phase_list_wrap .phase_list ul li:not(:last-child)::after {
	content: "";
	width: 5px;
	height: 30px;
	background-color: #333;
	display: block;
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	margin: 0 auto;
}

.phase_wrap .phase_list_wrap .phase_list ul li dl {
	border: 1px solid #2b2b2b;
	padding: 40px 20px 20px;
	border-radius: 10px;
	position: relative;
	min-height: 120px;
    display: flex;
    align-items: center;
}

.phase_wrap .phase_list_wrap .phase_list ul li dl dt {
	background-color: #2b2b2b;
	color: #fff;
	border-radius: 3px;
	position: absolute;
	top: -20px;
	right: 0;
	left: 0;
	z-index: 3;
	margin: 0 auto;
	padding: 8px 25px;
	display: inline-block;
	width: 150px;
	font-weight: 500;
}

.phase_wrap .phase_list_wrap .phase_list ul li dl dd {
	text-align: left;
}

.phase_wrap .phase_list_wrap .phase_list p.phase_t {
	border-bottom: 5px solid #ffbaba;
	line-height: 1;
	max-width: 95%;
	margin: 0 auto;
	font-size: 13px;
	display: inline-block;
	text-align: left;
}

.phase_wrap .phase_list_wrap .phase_list p.phase_t.phase_purple {
	border-bottom: 5px solid #babfff;
}

.phase_wrap .phase_list_wrap .phase_list p.phase_t.phase_green {
	border-bottom: 5px solid #9ad2ab;
}

.phase_wrap .phase_list_wrap .triangle {
	width: 29px;
	display: flex;
	align-items: center;
	padding-bottom: 50px;
}

@media screen and (min-width: 769px) and (max-width: 959px) {
	.project-detail-wrap .project-info-wrap {
		display: block;
	}
	
	.project-detail-wrap .project-info-wrap .project-name {
		width: 100%;
	}
	
	.project-detail-wrap .project-info-wrap .project-name-en {
		width: 100%;
		border: none;
		padding: 15px 3%;
	}
	
	.project-detail-wrap .project-info-wrap .project-info {
		width: 100%;
	}
	
	.project-detail-wrap .project-info-wrap .project-info a {
		text-align: center;
		display: block;
	}
}

@media screen and (min-width: 561px) and (max-width: 768px) {
	.project-top .project-header p {
		padding: 3px 15px;
	}
	
	.project-contents {
		display: block;
	}
	
	.project-contents .project-list {
		width: 100%;
		margin-bottom: 20px;
	}
	
	.project-contents .project-list:nth-child(2) {
		margin-top: 0;
		margin-bottom: 20px;
	}
	
	.project-contents .project-list:nth-child(3) {
		margin-top: 0;
	}
	
	.project-detail-wrap .project-info-wrap {
		display: block;
	}
	
	.project-detail-wrap .project-info-wrap .project-name {
		width: 100%;
	}
	
	.project-detail-wrap .project-info-wrap .project-name-en {
		width: 100%;
		border: none;
		padding: 15px 3%;
	}
	
	.project-detail-wrap .project-info-wrap .project-info {
		width: 100%;
	}
	
	.project-detail-wrap .project-info-wrap .project-info a {
		text-align: center;
		display: block;
	}
	
	.phase_wrap h2 {
		text-align: left;
	}
	
	.phase_wrap .phase_list_wrap {
		display: block;
	}
	
	.phase_wrap .phase_list_wrap {
		max-width: 300px;
	}
	
	.phase_wrap .phase_list_wrap .phase_list {
		margin-bottom: 30px;
	}
	
	.phase_wrap .phase_list_wrap .triangle {
		justify-content: center;
		margin: 0 auto;
	}
	
	.phase_wrap .phase_list_wrap .triangle img {
		transform: rotate(90deg);  
	}
}

@media screen and (max-width: 560px) {
	.project-top .project-header p {
		padding: 3px 15px;
	}
	
	.project-contents {
		display: block;
	}
	
	.project-contents .project-list {
		width: 100%;
		margin-bottom: 20px;
	}
	
	.project-contents .project-list:nth-child(2) {
		margin-top: 0;
		margin-bottom: 20px;
	}
	
	.project-contents .project-list:nth-child(3) {
		margin-top: 0;
	}
	
	.project-detail-wrap .project-info-wrap {
		display: block;
	}
	
	.project-detail-wrap .project-info-wrap .project-name {
		width: 100%;
	}
	
	.project-detail-wrap .project-info-wrap .project-name-en {
		width: 100%;
		border: none;
		padding: 15px 3%;
	}
	
	.project-detail-wrap .project-info-wrap .project-info {
		width: 100%;
	}
	
	.project-detail-wrap .project-info-wrap .project-info a {
		text-align: center;
		display: block;
	}
	
	.phase_wrap h2 {
		text-align: left;
	}
	
	.phase_wrap .phase_list_wrap {
		display: block;
	}
	
	.phase_wrap .phase_list_wrap {
		max-width: 300px;
	}
	
	.phase_wrap .phase_list_wrap .phase_list {
		margin-bottom: 30px;
	}
	
	.phase_wrap .phase_list_wrap .triangle {
		justify-content: center;
		margin: 0 auto;
	}
	
	.phase_wrap .phase_list_wrap .triangle img {
		transform: rotate(90deg);  
	}
}

/* -----------------------------------------------------------
	サステナブルツアー
----------------------------------------------------------- */

.tours_wrap h1 {
	font-family: var(--font-mincho);
	margin-bottom: 5px;
}

.tours-meta {
	margin-bottom: 25px;
}

.tours-meta .entry-meta_items {
	font-size: 16px;
}

.lb-data .lb-number {
	display: none !important;
}

.tours_wrap .flex-wrap {
	margin-bottom: 50px;
}

.tours_wrap .flex-left ul li:not(:last-child) {
	margin-bottom: 15px;
}

.tours_wrap .flex-left ul li a {
	text-align: center;
	display: block;
}

.tours_wrap .main-text {
	margin-bottom: 20px;
}

.tours_wrap .timeline-wrap {
	border: 1px solid #555;
	padding: 15px;
	margin-bottom: 25px;
}

.single-tours .mainSection, .single-toursen .mainSection {
	float: none;
	width: 100%;
	max-width: 1130px;
    margin: 0 auto 50px;
    padding: 0 15px;
}

.guide-list .guide-man {
	background-color: #eaebe4;
	padding: 15px;
	margin-bottom: 15px;
	display: flex;
	justify-content: space-between;
}

.guide-list .guide-man .flex-left .guide_img {
	margin-bottom: 15px;
}

.guide-list .guide-man .flex-left .guide_btn a {
	
}

.guide-list .btn-wrap a {
	min-width: inherit;
	display: block;
	padding: 15px 30px 15px 15px;
}

.guide-list .btn-wrap a::after {
	right: 10px;
}

.guide-list .btn-wrap a:hover::after {
	right: 5px;
}

.gaiyou_wrap dl {
	display: flex;
	border-bottom: 1px dashed #ccc;
	padding-bottom: 10px;
	margin-bottom: 10px;
}

.gaiyou_wrap dl dt {
	width: 8em;
	margin-right: 15px;
}

.gaiyou_wrap dl dd {
	flex: 1;
	word-break: break-all;
}

.hosoku_wrap {
	border-top: 1px solid #777;
	border-bottom: 1px solid #777;
	padding-top: 30px;
}

.hosoku_wrap dl {
	margin-bottom: 30px;
}

.hosoku_wrap dl dt {
	margin-bottom: 5px;
}

.post-type-archive-tours .mainSection, .post-type-archive-toursen .mainSection {
	float: none;
	width: 100%;
	max-width: 1130px;
    margin: 0 auto 50px;
    padding: 0 15px;
}

.post-type-archive-tours .siteContent .container, .post-type-archive-toursen .siteContent .container {
	padding: 0 15px;
}

.post-type-archive-tours .entry-meta, .post-type-archive-toursen .entry-meta {
	display: none;
}

.post-type-archive-tours .has-post-thumbnail, .post-type-archive-toursen .has-post-thumbnail {
	position: relative;
}

.post-type-archive-tours .media .postList_thumbnail, .post-type-archive-toursen .media .postList_thumbnail {
	margin-bottom: 0;
}

.post-type-archive-tours .media .postList_thumbnail a, .post-type-archive-toursen .media .postList_thumbnail a {
	border: none;
}

.post-type-archive-tours .media-body, .post-type-archive-toursen .media-body {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 5px 10px;
	background-color: rgba(0,0,0,0.6);
	color: #fff;
	pointer-events: none;
}

.post-type-archive-tours .media-body a, .post-type-archive-toursen .media-body a {
	color: #fff !important;
}

@media screen and (min-width: 1100px) {
	.single-tours .breadSection .container, .single-toursen .breadSection .container {
		padding: 0;
	}
}

@media screen and (min-width: 561px) and (max-width: 768px) {
	.tours_wrap .flex-wrap {
		display: block;
	}
	
	.flex-wrap .flex-left {
		width: 100%;
		margin-bottom: 30px;
	}
	
	.flex-wrap .flex-right {
		width: 100%;
	}
	
	.flex-wrap .guide-man .flex-left {
		width: 48%;
	}
	
	.flex-wrap .guide-man .flex-right {
		width: 48%;
	}
}

@media screen and (max-width: 560px) {
	.guide-list .guide-man {
		display: block;
	}
	
	.gaiyou_wrap dl {
		display: block;
	}

	.gaiyou_wrap dl dt {
		width: 100%;
		margin-bottom: 5px;
	}

	.gaiyou_wrap dl dd {
	}
}

/* -----------------------------------------------------------
	トップページに一覧表示
----------------------------------------------------------- */

.top_newslist {
	position: absolute;
	width: 57%;
	bottom: 20px;
	left: 1.5%;
	z-index: 5;
	background-color: rgba(255,255,255,0.7);
	font-family: 'Noto Sans JP',  "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", sans-serif;
}

.top_newslist h2 {
	padding: 10px 10px 5px 25px;
	position: relative;
	margin-left: 20px;
	font-size: 18px;
}

.top_newslist h2::before {
	content: "";
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: #ed4f4f;
	position: absolute;
	top: 14px;
	left: 0;
}

.top_newslist ul {
	overflow-y: scroll;
	height: 400px;
	padding: 0 20px 20px;
}

.top_newslist ul li {
	border: 1px solid #555;
	padding: 20px;
	margin-bottom: 20px;
}

.top_newslist ul li:last-child {
	margin-bottom: 0;
}

.top_newslist ul li .flex-wrap {
	border: 1px solid #555;
	padding: 7px;
	background-color: #fff;
}

.top_newslist ul li a {
	display: block;
}

.top_newslist ul li a.thumb_a {
	width: 60%;
}

.top_newslist ul li a.post_a {
	width: 40%;
	padding: 0 10px;
}

.news_title {
	display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 14; /* 制限したい行数が3の場合 */
  overflow: hidden;
}

.news_title h3 {
	font-size: 18px;
	margin-bottom: 10px;
	font-weight: bold;
}

.top_newslist ul li a.post_a:hover {
	color: #333;
	opacity: 0.7;
}

.widget_archive {
	display: none;
}

@media screen and (min-width: 561px) and (max-width: 768px) {
	.top_newslist {
		position: static;
		width: 100%;
		height: auto;
	}
}

@media screen and (max-width: 560px) {
	.top_newslist {
		position: static;
		width: 100%;
		height: auto;
	}
	
	.top_newslist ul li .flex-wrap {
		display: block;
	}
	
	.top_newslist ul li a.thumb_a {
		width: 100%;
		margin-bottom: 15px;
	}
	
	.top_newslist ul li a.post_a {
		width: 100%;
	}
}

/* -----------------------------------------------------------
	ローディング画面
----------------------------------------------------------- */

.lp-screen span, .lp-screen span img {
	width: 500px !important;
}

@media screen and (max-width: 560px) {
	.lp-screen span, .lp-screen span img {
		width: 300px !important;
	}
}

/* -----------------------------------------------------------
	Where is Tono?
----------------------------------------------------------- */

.tono-wrap {
	text-align: center;
	max-width: 900px;
}

.tono-wrap h2 {
	font-size: 30px;
	margin-bottom: 25px;
}

.tono-wrap p {
	text-align: justify;
}

.map_erea {
	background-color: #eee;
	padding: 15px;
	text-align: center;
}

.about-erea-wrap {
	text-align: center;
}

.about-erea-wrap h2 {
	font-size: 30px;
	margin-bottom: 25px;
}

.about-erea-wrap h3 {
	font-size: 18px;
	margin-bottom: 15px;
}

.about-erea-wrap h4 {
	font-size: 22px;
	line-height: 1.8;
	margin: 0 0 30px 0;
}

.about-erea-wrap .flex-wrap {
	margin-bottom: 70px;
}

.about-erea-wrap .flex-wrap .flex-left {
	width: 67%;
	text-align: left;
}

.about-erea-wrap .flex-wrap .flex-right {
	width: 30%;
}

.about-erea-wrap .flex-wrap .flex-right .imgcut::before {
	padding-bottom: 100%;
}

.member-wrap {
	padding-top: 30px;
	position: relative;
	border: 1px solid #ccc;
	text-align: left;
	max-width: 750px;
	margin: 0 auto;
	border-radius: 2px;
}

.member-wrap h3 {
	background-color: #2b2b2b;
    color: #fff;
    border-radius: 3px;
    position: absolute;
    top: -20px;
    right: 0;
    left: 0;
    z-index: 3;
    margin: 0 auto;
    padding: 8px 25px;
    display: inline-block;
	max-width: 150px;
	text-align: center;
}


.member-wrap .member-flex {
}

.member-wrap .member-flex dl {
	display: flex;
	padding: 10px 15px;
}

.member-wrap .member-flex dl:nth-child(even) {
	background-color: #f7f7f7;
}

.member-wrap .member-flex dl dt {
	width: 70%;
	font-weight: normal;
	padding-right: 1em;
}

.member-wrap .member-flex dl dd {
	width: 30%;
}

@media screen and (min-width: 561px) and (max-width: 768px) {
	.about-erea-wrap .flex-wrap {
		display: block;
	}
	
	.about-erea-wrap .flex-wrap .flex-left {
		width: 100%;
	}
	
	.about-erea-wrap .flex-wrap .flex-right {
		width: 100%;
		max-width: 400px;
		margin: 0 auto;
		text-align: center;
	}
}

@media screen and (max-width: 560px) {
	.about-erea-wrap h3 {
		font-size: 16px;
	}
	
	.about-erea-wrap h4 {
		font-size: 18px;
		text-align: left;
	}
	
	.about-erea-wrap .flex-wrap .flex-left {
		width: 100%;
	}
	
	.about-erea-wrap .flex-wrap .flex-right {
		width: 100%;
	}
	
	.member-wrap .member-flex dl {
		display: block;
	}
	
	.member-wrap .member-flex dl dt {
		width: 100%;
		padding-right: 0;
	}
	
	.member-wrap .member-flex dl dd {
		width: 100%;
	}
}

/* -----------------------------------------------------------
	英語用トップページ
----------------------------------------------------------- */

.en_top_page section.sticky_wrap .section_inr .flex-left .flex-left-inr {
	display: block;
}

.en_top_page section.sticky_wrap .section_inr .flex-left .section-title {
	margin-left: 0;
	margin-bottom: 70px;
}

.en_top_page section.sticky_wrap .section_inr .flex-left .section-title h2 {
	-webkit-writing-mode:horizontal-tb;
	writing-mode:horizontal-tb;
	display: inline-block;
	line-height: 1;
    padding: 3px 15px 10px;
}

.en_top_page section.sticky_wrap .section_inr .flex-left .section-text p {
	-webkit-writing-mode:horizontal-tb;
	writing-mode:horizontal-tb;
}

.en_ftr_link ul li p {
	word-break: break-all;
    max-width: 150px;
}

.en-header {
	display: none;
}

body.toursen-template-default .en-header, body.recorden-template-default .en-header, body.tax-recorden-cat .en-header {
	display: block;
}

body.toursen-template-default .defo-header, body.recorden-template-default .defo-header, body.tax-recorden-cat .defo-header {
	display: none;
}

.entry-body .youtube {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	margin-bottom: 20px;
}

.entry-body .youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}