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

/* Global ---------------------- */
* {
	box-sizing: border-box;
}

html {
	height: 100%;
	font-size: 62.5%; 
}

body {
	height: 100%;
	line-height: 1.4em;
	margin: 0;
	padding: 0;
	border: 0;
	color: #707070;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.6rem;
	font-weight:400;
}

a {
	color: #707070;
	text-decoration: none;	
}
a:hover {
	color: #8fbc8f;
	text-decoration: none;	
}

/* Header---------------------- */

.header-class {
	display: flex;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	margin: 0;
	padding: 0;
	z-index: 10;
	background-color: #fff;
	border-bottom: 1px solid #e7eeed;
	justify-content: center;
}
.header-class a {
	text-decoration: none;
	outline: none;
}
.nav-header-inner {
	display: flex;
	width: 100%;
	max-width: 1280px;
	margin-right: auto;
	margin-left: auto;
	padding: 10px 20px 10px 20px;
	justify-content: space-between;
	align-items: center;
}
.header-img {
	width: 98px;
	height: 50px;
	margin-right: 10px;
}
@media screen and (max-width: 899px) {
	.header-img {
		display: none;
	}
}
.header-logo {
	display: flex;
	align-items: center;
}
.gnav {
	display: grid;	
	grid-template-columns: repeat(5, auto);
	grid-template-rows: 35px 30px;
	column-gap: 20px;
}
.gnav__item-about {
	grid-column: 1;
	grid-row: 2;
}
.gnav__item-about > p {
	position: relative;
	color: #707070;
}
.gnav__item-about > p::after {
	width: 100%;
	height: 3px;
	position: absolute;
	left: 0;
	bottom: -7px;
	content: '';
	background: #8fbc8f;
	transform: scale(0, 1);
	transform-origin: center top; 
	transition: transform 0.3s;
}
.gnav__item-about.active > p::after {
	transform: scale(1, 1); 
}
.gnav__item-news {
	grid-column: 2;
	grid-row: 2;
}
.gnav__item-news a {
	display: block;
	position: relative;
	color: #707070;
}
.gnav__item-news a::after {
	position: absolute;
	left: 0;
	content: '';
	width: 100%;
	height: 3px;
	background: #8fbc8f;
	bottom: -7px;
	transform: scale(0, 1);
	transform-origin: center top; 
	transition: transform 0.3s;  
}
.gnav__item-news a:hover::after {
	transform: scale(1, 1); 
}
.gnav__item-admission {
	grid-column: 3;
	grid-row: 2;
}
.gnav__item-admission a {
	display: block;
	position: relative;
	color: #707070;
}
.gnav__item-admission a::after {
	width: 100%;
	height: 3px;
	position: absolute;
	left: 0;
	bottom: -7px;
	background: #8fbc8f;
	content: '';
	transform: scale(0, 1);
	transform-origin: center top; 
	transition: transform 0.3s;  
}
.gnav__item-admission a:hover::after {
	transform: scale(1, 1); 
}
.gnav__item-contents {
	grid-column: 4;
	grid-row: 2;
}
.gnav__item-contents a {
	display: block;
	position: relative;
	color: #707070;
}
.gnav__item-contents a::after {
	width: 100%;
	height: 3px;
	position: absolute;
	left: 0;
	bottom: -7px;
	background: #8fbc8f;
	content: '';
	transform: scale(0, 1);
	transform-origin: center top; 
	transition: transform 0.3s;  
}
.gnav__item-contents a:hover::after {
	transform: scale(1, 1); 
}
.gnav__item-inquiry　{
	grid-column: 5;
	grid-row: 2;	
}
.gnav__item-inquiry a {
	display: block;
	position: relative;
	color: #707070;
}
.gnav__item-inquiry a::after {
	width: 100%;
	height: 3px;
	position: absolute;
	left: 0;
	bottom: -7px;
	background: #8fbc8f;
	content: '';
	transform: scale(0, 1);
	transform-origin: center top; 
	transition: transform 0.3s;  
}
.gnav__item-inquiry a:hover::after {
	transform: scale(1, 1); 
}
.gnav__item-member {
	grid-column: 4 / 6;
	grid-row: 1;
	justify-self: end;
}
.gnav__item-store {
	grid-column: 1 / 5;
	grid-row: 1;
	justify-self: end;
	padding: 0px 40px 0px 0px;
}
.current > a::after {
	transform: scale(1, 1); 
}
.current > p::after {
	transform: scale(1, 1); 
}
.item-grid  {
	display: flex;
	align-items:flex-start;
}
.header__grid-img {
	height: 19px;
	margin-right: 5px;
}
.dropdown-menu {
	display: none;
	width: 100%;
	min-width: 768px;
	position: absolute;
	left:0;
	top:calc(100% + 1px);
	z-index: 9;
	background:#fff;
	border-bottom: 1px solid #e7eeed;
}
.dropdown-inner {
	display: flex;
	width: 100%;
	max-width: 1280px;
	margin-right: auto;
	margin-left: auto;
	justify-content: space-between;
	align-items: center;
}

.inner-main {
	display: block;
	width: 54%;
	padding: 20px 50px ;
	text-align: right;
}
.inner-content {
	display: flex;
	width: 46%;
	margin: 5px 0px;
	padding: 20px 50px ;
	border-left: 1px solid #e7eeed;
	line-height: 1em;
}
.inner-content ul {
	display: grid;
	grid-template-columns: repeat(3, auto);
	column-gap: 50px;
}
.inner-content a {
	display: flex;
}
.inner-content p {
	display: flex;
}
.inner-content a > img {
	width: 10px;
	height: auto;
	margin: 0px 0px 0px 15px;
	vertical-align: text-top;
}
.inner-content p > img {
	width: 10px;
	height: auto;
	margin: 0px 0px 0px 15px;
	vertical-align: text-top;
}
.sm-current {
	color: #8fbc8f;
}
@media screen and (max-width: 1200px) {
	.inner-main {
		width: 46%;
	}
	.inner-content {
		width: 54%;
	}
}
@media screen and (max-width: 1024px) {
	.inner-main {
		width: 39%;
	}
	.inner-content {
		width: 61%;
	}
}
@media screen and (max-width: 899px) {
	.inner-main {
		width: 35%;
	}
	.inner-content {
		width: 65%;
	}
}
@media screen and (min-width: 768px) {
	#spnav {
		display: none;
  	}
}
.drawer_button {
	display: block;
	width: 50px;
	position: fixed;
	top: 10px;
	right: 20px;
	padding: 5px 3px 5px 3px;
	z-index: 11;
	background-color: #FFF;
	color: #707070;
	border: none;
	text-align: center;
	letter-spacing: 0.1em;
	outline: none;
	cursor: pointer;
}
.drawer_button  .drawer_bar {
	background-color: #696969;
	/* ハンバーガーメニュー三本線の色 */
}
.drawer_button.active .drawer_bar {
	width: 40px;
}
.drawer_button.active .drawer_bar1 {
	transform: rotate(30deg);
}
.drawer_button.active .drawer_bar2 {
	opacity: 0;
	/* 透明度 */
}
.drawer_button.active .drawer_bar3 {
	transform: rotate(-30deg);
}
.drawer_button.active .drawer_menu_text {
	display: none;
}
.drawer_button.active .drawer_close {
	display: block;
}
.drawer_bar {
	display: block;
	height: 2px;
	margin: 8px 3px;
	color: #707070;
	transition: all 0.2s;
	transform-origin: 0 0;
}
.drawer_text {
	text-align: center;
	font-size: 1.2 rem;
}
.drawer_close {
	letter-spacing: 0.05em;
	display: none;
}
.drawer_menu_text {
	display: block;
}
@media screen and (max-width: 767px) {
	#pcnav{
		display: none;
	}
	.gnav {
		display: none;
		position:fixed;
		width: 100%;
		height: 100%;
		top: 66px;
		left: 0px;
		overflow-x: hidden;
		overflow-y: hidden;
		list-style-type:none;
		background-color: rgba(0,0,0,0.3);
		z-index: 1;
	}
	.gnav-about  {
		display: flex;
		text-decoration:none;
		padding: 15px 30px 15px 30px;
		width: 100%;
		max-width: 767px;
		/*line-height: 60px;*/
		color: #666666;
		background: #FFF;
		border-bottom: 1px solid #8fbc8f;
		justify-content: space-between;
	}
	.gnav > li > a {
		display: flex;
		width: 100%;
		max-width: 767px;
		padding: 15px 30px 15px 30px;
		border-bottom: 1px solid #8fbc8f;
		background: #FFF;
		color: #666666;
		text-decoration:none;
		justify-content: space-between;
	}
	.gnav > li > a:active {
		background: #f0fff0;
		color: #8fbc8f;
		transition: 500ms;
	}
	.gnav > li > a.current {
		background: #f0fff0;
		color: #8fbc8f;
	}
	.gnav-current  {
		display: flex;
		text-decoration:none;
		padding: 15px 30px 15px 30px;
		width: 100%;
		max-width: 767px;
		/*line-height: 60px;*/
		color: #8fbc8f;
		background: #f0fff0;
		border-bottom: 1px solid #8fbc8f;
		justify-content: space-between;
	}
	.gnav-grid {
		display: flex;
		justify-content: flex-start;
		align-items: center;
	}
	.gnav-grid-img {
		height: 19px;
		margin-left: 10px;
	}
	.current {
		background: #f0fff0;
		color: #8fbc8f;
	}
	.s1 {
		display: none;
		width: 100%;
		background: #FFF;
	}
	.s1  > li > a {
		display: block;
		width: 100%;
		padding: 7px 0px 7px 50px;
		background: #F5F4F4;
		font-size: 1.8rem;
	}
	.s1  > li > a:active {
		background: rgba(143,188,143,0.05);
		color: #8fbc8f;
		transition: 500ms;
	}
	.sm-current {
		display: block;
		width: 100%;
		padding: 7px 0px 7px 50px;
		background: rgba(143,188,143,0.05);
		font-size: 1.8rem;
	}
	.sm1 {
	transition: all 0.2s;
	}
	.sm1.active {
	transform: rotate(45deg);
	}
}
/* Layout <Contents> ---------------------- */

/* Common */
.page-container {
	padding: 81px 0px 0px 0px;
}
.title-style-A {
	padding:0px 15px; /*余白の設定*/
	border-left:3px solid #8fbc8f; /*線の設定*/
	color: #707070;
	font-size: 2.0rem;
	font-weight: 400;
	text-align: left;
	line-height: normal;
}
.title-style-A-contents {
	padding:0px 15px; /*余白の設定*/
	margin-left: 20px;
	border-left:4px solid #8fbc8f; /*線の設定*/
	color: #707070;
	font-size: 2.0rem;
	font-weight: 400;
	text-align: left;
	line-height: normal;
}
.title-style-A__news {
	padding:0px 15px; /*余白の設定*/
	border-left:3px solid #8fbc8f; /*線の設定*/
	color: #707070;
	font-size: 2.0rem;
	font-weight: 400;
	text-align: left;
	line-height: normal;
}
.title-style-A__news span {
	display: inline-block;
	margin-left: 30px;
}
.title-style-B {
	padding:0px 15px; /*余白の設定*/
	border-left:3px solid #8fbc8f; /*線の設定*/
	color: #707070;
	font-size: 2.0rem;
	font-weight: 400;
	text-align: left;
	line-height: normal;
}
.page-title {
	display: flex;
	width: 100%;
	background-color: #8fbc8f;
}
.page-title div {
	display: block;
	width: 100%;
	max-width: 1280px;
	padding: 30px 30px;
	color: #fff;
	margin-right: auto;
	margin-left: auto;
	font-size: 2.0rem;
}
.page-title > div > a {
	color: #FFF;
}
@media screen and (max-width: 767px) {
	.title-style-A-contents {
		margin-left: 10px;
	}
	.title-style-B {
		padding: 0px 10px;
		margin-bottom: 10px;
	}
	.page-title div {
		display: block;
		width: 100%;
		max-width: 767px;
		padding: 30px 15px;
		color: #fff;
		font-size: 2.0rem;
	}
}
.page-title__B {
	display: block;
	width: 100%;
	background-color: #8fbc8f;
}
.page-title__B-inner {
	width: 100%;
	max-width: 1280px;
	padding: 30px 30px;
	margin-right: auto;
	margin-left: auto;
	color: #fff;
}

@media screen and (max-width: 767px) {
	.page-container {
		padding: 66px 0px 0px 0px;
	}
}
/* section */
.section-container {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	width: 100%;
	max-width: 1280px;
	margin-right: auto;
	margin-left: auto;
	padding: 30px 20px 0px 20px;
	justify-content: space-between;
	align-items: top;
}
.section-container_B {
	display: block;
	position: relative;
	width: 100%;
	max-width: 1280px;
	min-height: 680px;
	margin-right: auto;
	margin-left: auto;
	padding: 30px 20px 0px 20px;
}
.section-container_C {
	display: block;
	width: 100%;
	max-width: 1280px;
	min-height: 680px;
	margin-right: auto;
	margin-left: auto;
	padding: 0px 20px 20px 20px;
}
.section-container_D {
	display: block;
	position: relative;
	width: 100%;
	max-width: 1200px;
	min-height: 680px;
	margin-right: auto;
	margin-left: auto;
	padding: 30px 20px 50px 20px;
}
@media screen and (max-width: 767px) {
	.section-container {
		max-width: 767px;
		padding: 30px 10px 0px;
		justify-content: flex-start;
	}
	.section-container_B {
		width: 100%;
		max-width: 767px;
		min-height: 600px;
		padding: 30px 10px 0px 10px;
	}
	.section-container_C {
		width: 100%;
		max-width: 767px;
		min-height: auto;
		margin: 0px 0px 0px 0px;
		padding: 0px 0px 0px 0px;
	}
	.section-container_D {
		width: 100%;
		max-width: 767px;
		min-height: 680px;
		margin: 0px 0px 0px 0px;
		padding: 30px 15px 50px 15px;
	}
}

@media screen and (max-width: 427px){
	.section-container_B {
		display: block;
		width: 100%;
		max-width: 475px;
		padding: 30px 10px 30px 10px;
	}
}

/* ---- index ---- */

/* main-image */
.main-top {
	display: flex;
	position: relative;
	/*height: calc(100vh - 250px);*/
	min-height: 550px;
	max-width: 1920px;
	margin: 0 auto;
	background-image: url(../images/main_image_4_DT.jpg);
	background-size: cover;
	background-position: center center;
	background-repeat: none;
}
.main-img_c {
	display: flex;
	width: 100%;
	height: 100%;
	padding: 20px 20px 5px 20px;
	justify-content:flex-end;
	align-items: flex-end;
	font-size: 1.2rem;
	color: #fff;
}


@media screen and (min-width: 1025px) {
	.main-head-inner {
		display: flex;
		position: absolute;
		top: 0;
		left:0;
		width: 100%;
		justify-content: center;
		z-index: 3;
	}
	.text-inner{
		width: 100%;
		max-width: 1280px;
		padding: 10px 40px 30px 20px;
	}
	.box {
		display: block;
		width: 100%;
		justify-content: center;
	}
	.main_image {
		position: absolute;
		top: 0px;
		left: 0px;
		width: 100%;
	}
	.main_image li {
		position: absolute;
		top: 0px;
		left: 0px;
		width: 100%;
		height: 550px;
		z-index: 2;
		background-size: cover;
		background-position: center center;
		background-repeat: none;
		opacity: 0;
		-webkit-animation: anime 24s linear 0s infinite ;
		animation: anime 24 s linear 0s infinite ;
	}
	.main_image li:nth-child(1) {
		background-image: url(../images/main_image_4_DT.jpg); 
		animation-delay: 0s;
	}
	.main_image li:nth-child(2) {
		background-image: url(../images/main_image_2_DT.jpg);
		-webkit-animation-delay: 8s;
		animation-delay: 8s;
		}
	.main_image li:nth-child(3) {
		background-image: url(../images/main_image_3_DT.jpg);
		-webkit-animation-delay: 16s;
		animation-delay: 16s;
	}
}
@-webkit-keyframes anime { 
    0% {
        -webkit-animation-timing-function: ease-in;
        opacity: 0;
    }
    10% {
        /*-webkit-transform: scale(1.1);*/
        opacity: 1;
    }
    40% {
        /*-webkit-transform: scale(1.2);*/
        -webkit-animation-timing-function: ease-out;
        opacity: 1;
    }
    50% {
        /*-webkit-transform: scale(1.3);*/
        opacity: 0;
    }
    100% {
		opacity: 0;
	}
}
@keyframes anime { 
    0% {
        animation-timing-function: ease-in;
        opacity: 0;
    }
    10% {
        /*transform: scale(1.1);*/
        opacity: 1;
    }
    40% {
        /*transform: scale(1.2);*/
        animation-timing-function: ease-out;
        opacity: 1;
    }
    50% {
        /*transform: scale(1.3);*/
        opacity: 0;
    }
    100% {
		opacity: 0;
	}
}
.top-title {
	margin-top: 380px;
	padding:0px 0px 0px 10px; /*余白の設定*/
	border-left:3px solid #fff; /*線の設定*/
	color: #fff;
	font-size: 2.5rem;
	font-weight: 400;
	text-align: left;
	text-shadow: 1px 1px 3px  #696969;
	line-height: 1.4;
}
.top_text {
	display: block;
	width: 50%;
	margin: 10px 0px 10px 20px;
	color: #fff;
	font-family:'Noto Sans JP', sans-serif;
	font-size: 1.6rem;
	font-weight: 400;
	text-align: left;
	text-shadow: 1px 1px 3px  #696969;
}

@media screen and (max-width: 1024px) {
	.main-top {
		display: flex;
		position: relative;
		min-height: 420px;
		background-image: url(../images/main_image_4_LT.jpg);
	}
	.main-head-inner {
		display: flex;
		position: absolute;
		top: 0;
		left:0;
		width: 100%;
		z-index: 3;
		justify-content: center;
	}
	.text-inner{
		width: 100%;
		max-width: 1024px;
		padding: 10px 40px 30px 20px;
	}
	.box {
		display: block;
		width: 100%;
		justify-content: center;
	}
	.main_image {
		position: absolute;
		top: 0px;
		left: 0px;
		width: 100%;
	}
	.main_image li {
		position: absolute;
		top: 0px;
		left: 0px;
		width: 100%;
		height: 420px;
		z-index: 2;
		background-size: cover;
		background-position: center center;
		background-repeat: none;
		opacity: 0;
		-webkit-animation: anime 24s linear 0s infinite ;
		animation: anime 24s linear 0s infinite ;
	}
	.main_image li:nth-child(1) { 
		background-image: url(../images/main_image_4_LT.jpg);
		animation-delay: 0s;
	}
	.main_image li:nth-child(2) {
		background-image: url(../images/main_image_2_LT.jpg);
		-webkit-animation-delay: 8s;
		animation-delay: 8s;
		}
	.main_image li:nth-child(3) {
		background-image: url(../images/main_image_3_LT.jpg);
		-webkit-animation-delay: 16s;
		animation-delay: 16s;
	}
	.top-title {
		margin-top: 270px;
	}
}

@media screen and (max-width: 767px) {
	.main-top {
		display: flex;
		position: relative;
		min-height: 350px;
		background-image: url(../images/main_image_4_TB.jpg);
	}
	.main-head-inner {
		display: flex;
		position: absolute;
		top: 0;
		left:0;
		width: 100%;
		z-index: 3;
		justify-content: center;
	}
	.text-inner{
		width: 100%;
		max-width: 767px;
		padding: 10px 5px 30px 10px;
	}
	.box {
		display: block;
		width: 100%;
		justify-content: center;
 	 }
	.main_image {
		position: absolute;
		top: 0px;
		left: 0px;
		width: 100%;
	}
	.main_image li {
		position: absolute;
		top: 0px;
		left: 0px;
		width: 100%;
		height: 350px;
		z-index: 2;
		background-size: cover;
		background-position: center center;
		background-repeat: none;
		opacity: 0;
		-webkit-animation: anime 24s linear 0s infinite ;
		animation: anime 24s linear 0s infinite ;
	}
	.main_image li:nth-child(1) { 
		background-image: url(../images/main_image_4_TB.jpg);
		animation-delay: 0s;
	}
	.main_image li:nth-child(2) {
		background-image: url(../images/main_image_2_TB.jpg);
		-webkit-animation-delay: 8s;
		animation-delay: 8s;
		}
	.main_image li:nth-child(3) {
		background-image: url(../images/main_image_3_TB.jpg);
		-webkit-animation-delay: 16s;
		animation-delay: 16s;
	}
	.top-title {
		margin-top: 220px;
		font-size: 2.0rem;
	}
	.top_text {
		width: 90%;
		line-height: 1.2;
	}
}
@media screen and (max-width: 550px) {
	.main-top {
		display: block;
		position: relative;
		/*height: calc(100vh - 250px);*/
		min-height: 400px;
		background-image: url(../images/main_image_4_MB.jpg);
		background-position: top left;
	}
   .main-head-inner {
		display: flex;
		position: absolute;
		top: 0;
		left:0;
		width: 100%;
		z-index: 3;
		justify-content: center;
	}
	.text-inner{
		width: 100%;
		max-width: 550px;
		padding: 10px 10px 30px 10px;
	}
	.box {
		display: block;
		width: 100%;
		justify-content: center;
 	}
	.main_image {
		position: absolute;
		top: 0px;
		left: 0px;
		width: 100%;
	}
	.main_image li {
		position: absolute;
		top: 0px;
		left: 0px;
		width: 100%;
		height: 400px;
		z-index: 2;
		background-size: cover;
		background-position: center center;
		background-repeat: none;
		opacity: 0;
		-webkit-animation: anime 24s linear 0s infinite ;
		animation: anime 24s linear 0s infinite ;
	}
	.main_image li:nth-child(1) { 
		background-image: url("../images/main_image_4_MB.jpg");
		background-position: top left;
		animation-delay: 0s;
	}
	.main_image li:nth-child(2) {
		background-image: url(../images/main_image_2_MB.jpg);
		-webkit-animation-delay: 8s;
		animation-delay: 8s;
		}
	.main_image li:nth-child(3) {
		background-image: url(../images/main_image_3_MB.jpg);
		-webkit-animation-delay: 16s;
		animation-delay: 16s;
	}
	.top-title {
		margin-top: 210px;
	}
	.top_text {
		width: 100%;
		line-height: 1.2;
		margin: 0px 0px 0px 0px;
		padding: 10px 0px 0px 5px;
	}
}

/* news-section */
.section__item-news {
	display: block;
	width: 45%;
	min-width: 346px;
	margin: 0px 0px 0px;
}
.section__item-news > ul {
	margin: 20px 0px 0px 0px;
}
.section__item-news > ul > li > a {
	display: grid;
	width: 100%;
	padding: 15px 0px 15px 0px;
	grid-template-columns: 80px auto;
	grid-auto-rows: 20px auto;
	gap: 5px 20px;
	border-bottom: solid 1px #707070;
	background: #FFF;
	font-size: 1.6rem;
	text-decoration: none;
	transition: all 1s;
}
.section__item-news > ul > li > a:hover {
	border-bottom: solid 1px #8fbc8f;
	background: rgba(143,188,143,0.1);
	color: #8fbc8f;
}
.section__item-news__non-link {
	display: grid;
	width: 100%;
	padding: 15px 0px 15px 0px;
	grid-template-columns: 80px auto;
	grid-auto-rows: 20px auto;
	gap: 5px 20px;
	border-bottom: solid 1px #707070;
	background: #FFF;
	font-size: 1.6rem;
	text-decoration: none;
	transition: all 1s;
}
.date {
	display: block;
	width: 75px;
	margin-left: 15px;
}
.date {
	grid-column: 1;
	grid-row: 1;
}
.date2 {
	display: block;
	width: 120px;
	margin-left: 15px;
}
.date2 {
	grid-column: 1;
	grid-row: 1;
}
.category {
	grid-column: 2;
	grid-row: 1;
	color: #FF8C00;
}
.news {
	width: 95%;
	padding: 0px 15px 0px 15px;
	grid-column: 1 / -1;
	grid-row: 2;
	justify-content: start;
}
.section__item-news > p {
	margin-top: 15px;
	text-align: center;
}
@media screen and (max-width: 767px) {
	.section__item-news {
		width: 100%;
		min-width: 280px;
	}
	.section__item-news > ul {
		margin: 0px 0px 0px 0px;
	}
	.section__item-news > ul > li > a {
		width: 100%;
	}
	.section__item-news > ul > li > a:active {
		border-bottom: solid 1px #8fbc8f;
		background: rgba(143,188,143,0.1);
		color: #8fbc8f;
	}
	.news {
		width: 100%;
		padding: 0px 10px 0px 10px;
	}
	.date {
		margin-left: 10px;
	}
	.date2 {
		margin-left: 10px;
	}
}

/* about-section */
.section__item-about {
	display: block;
	width: 45%;
	min-width: 346px;
	margin: 0px;
}
.section__item-about > ul > li > a {
	display: flex;
	width: 90%;
	height: auto;
	margin: 0px 0px 10px;
	padding: 20px 30px;
	border: solid 1px #707070;
 	border-radius: 3px;/*角の丸み*/
	background: #FFF;
	color: #707070;
	font-size: 2.0rem;
	text-decoration: none;
	justify-content: space-between;
}
.section__item-about > ul > li > a:hover {
	border: solid 1px #8fbc8f;
	background: rgba(143,188,143,0.05);
	color: #8fbc8f;
	transition: .2s;
}
.section__item-about > ul > li:first-child {
	margin: 20px 0px 0px;	
}

@media screen and (max-width: 767px) {
	.section__item-about {
		width: 100%;
		min-width: 280px;
		padding: 25px 0px 0px;
	}
	.section__item-about > ul > li > a {
		width: 100%;
	}
	.section__item-about > ul > li > a:active {
		border: solid 1px #8fbc8f;
		background: rgba(143,188,143,0.05);
		color: #8fbc8f;
		transition: 500ms;
	}
}

/* admission-section */
.section__item-admission {
	display: block;
	width: 100%;
	max-width: 1280px;
	margin: 50px 0px 0px;
	
}
.admission-inner {
	display: block;
	width: 100%;
	max-width: 1024px;
	margin-top: 30px;
	margin-right: auto;
	margin-left: auto;
}
.admission-inner > ul {
	display: flex;
	width: 100%;
	gap: 10px 10px;
	justify-content: center;
}
.admission-inner > ul > li {
	width: 33%;
}

.admission-inner > ul > li > a {
	display: flex;
	width: 100%;
	height: 130px;
	padding: 20px;
	border: solid 1px #707070;
 	border-radius: 3px;/*角の丸み*/
	background: #FFF;
	font-size: 2.0rem;
	text-decoration: none;
	justify-content: space-between;
	align-items:center;
}
.admission-inner > ul > li > a:hover {
	border: solid 1px #8fbc8f;
	background: rgba(143,188,143,0.05);
	transition: .2s;
}
.admission-inner > ul > li > a:last-child {
	margin: 0px 0px 0px 0px;
}
.admission-for-you {
	width: 85%;
}
.admission-inner > ul > li > a > div > p {
	padding: 5px 0px 0px;
	font-size: 1.5rem;
}
.arrow-img {
	width: 10px;
}
@media screen and (max-width: 767px) {
	.section__item-admission {
		display: block;
		width: 100%;
		max-width: 767px;
		margin: 0px;
		padding: 25px 0px 0px;
	}
	.admission-inner {
		display: block;
		width: 100%;
		max-width: 767px;
		margin-top: 20px;
	}
	.admission-inner > ul {
		display: block;
		flex-wrap: wrap;
		gap: 0px 30px;
	}
	.admission-inner > ul > li {
		width: 100%;
		margin-bottom: 10px;
	}
	.admission-inner > ul > li > a {
		display: flex;
		width: 100%;
		min-width: 280px;
		height: auto;
	}
	.admission-inner > ul > li > a:active {
		border: solid 1px #8fbc8f;
		background: rgba(143,188,143,0.05);
		transition: .2s;
	}
}

/* contents */
.contents-wrapper {
	position: relative;
	width: 100%;
	height: 428px;
	margin: 0;
	padding: 0;
	background-color: #8fbc8f;
}
.section__contents_bg {
	position: absolute;
	display: block;
	width: 100%;
	height: 214px;
	margin-top: 0px;
	padding: 0px 0px 0px 0px;
	background-color: #ffffff;
}
.section__contents_inner {
	display: block;
	width: 100%;
	max-width: 1280px;
	margin-right: auto;
	margin-left: auto;
	padding: 50px 0px 0px 0px;
	align-items: top;
}
.swiper {
	width: 100%;
	max-width: 1050px;
	margin-top: 30px;
	margin-right: auto;
	margin-left: auto;
}
.swiper-wrapper {
	position: relative;
	width: 1010px;
	height: 266px;
	margin-right: auto;
	margin-left: auto;
}
.swiper-slide{
	display: block;
	width: 242px;
	height: 265px;
	margin: 0px 10px 0px 10px;
}
.card-img {
	display: block;
	width: 242px;
	height: 133px;
	margin: 0px;
	padding: 0px;
	background: #F5F5DC;
}
.card-caption {
	display: block;
	width: 242px;
	height: 110px;
	margin: 0px;
	padding: 10px 20px;
	background-color: #F5F5DC;
	font-size: 1.5rem;
}
.slide-dots{
	text-align: center;
}
.slide-dots li{
	display: inline-block;
	margin: 20px 15px  0px 0px;
}
.slide-dots button {
	display: block;
	position: relative;
	width: 10px;
	height: 10px;
	margin: 0px;
	padding: 0;
	background: #FFFFFF;
	border-radius: 50%;
	border: 0;
	font-size: 0;
	text-indent: -9999px;
	text-decoration: none;
	outline: none;
	cursor: pointer;
}
.slick-active button {
	background: #41AFAD;
}
@media screen and (min-width: 1050px) {
	.slide-dots li {
		display: none;
	}
}
@media screen and (max-width: 1049px) {
	.swiper {
		width: 768px;
	}
	.swiper-wrapper {
		width: 768px;
	}
}
@media screen and (max-width: 767px) {
	.section__contents_inner {
		max-width: 767px;
		padding: 25px 0px 0px 0px;
	}
	.swiper {
		width: 504px;
		margin-top: 30px;
	}
	.swiper-wrapper {
		width: 504px;
		height: 266px;
	}
	.swiper-slide{
		height: auto;
	}
}
@media screen and (max-width: 504px){
	.swiper {
		width: 320px;
	}
	.swiper-wrapper {
		width: 320px;
		height: 266px;
	}
	.swiper-slide{
		width: 300px;
		height: auto;
	}
	.card-img {
		width: 300px;
		height: 164px;
	}
	.card-caption {
		width: 300px;
		height: 101px;
	}
}
/* ---- about ---- */
/*overview*/
.section__item-overview {
	display: flex;
	padding: 30px 20px;
	justify-content: start;
}
.section__item-overview dl {
	display: block;
	overflow: hidden;
	width: 480px;
	margin: 0px 0px 0px 0px;
	line-height: 1.2;
	float: left;
}
.section__item-overview dt {
	margin: 0px 0px 10px 0px;
}
.section__item-overview dd {
	margin: 0px 0px 30px 0px;
	padding: 0px 0px 0px 20px;
}
.section__item-overview dd > a {
	color: #8fbc8f;
}
@media screen and (max-width: 767px) {
	.section__item-overview {
		padding: 0px 0px;
		justify-content: start;
}
	.section__item-overview dl {
		width: 100%;
		max-width: 320px;
	}
}

/* greeting */
.section__item-greeting {
	display: block;
	width: 100%;
	padding: 30px 0px 0px;
}
@media screen and (min-width: 768px) {
	.section__item-greeting dl {
		display: flex;
		overflow: hidden;
		margin-bottom: 0px;
	}
	.section__item-greeting dt {
		display: block;
		width: 300px;
		margin: 0px 20px 0px 20px;
		padding: 30px 0px 0px 0px;
	}
	.section__item-greeting dt img {
		margin: 20px 0px 0px 0px;
	}
	.section__item-greeting dd {
		display: block;
		width: auto;
		margin: 0px 0px 30px 0px;
		padding: 69px 20px 0px 20px;
		line-height: normal;
	}
	.section__item-greeting dd div {
		font-size: 1.2rem;
		text-align: end;
	}
}
@media screen and (max-width: 767px) {
	.section__item-greeting dl {
		display: block;
		width: 100%;
		margin-bottom: 20px;
	}
	.section__item-greeting dl:last-child {
		margin-bottom: 30px;
	}
	.section__item-greeting dt {
		display: block;
		width: 100%;
	}
	.section__item-greeting dt div {
		padding: 20px 0px 0px 10px;
	}
	.section__item-greeting dt img {
		display: block;
		width: 280px;
		margin: 20px auto 0px auto;
	}
	.section__item-greeting dd {
		display: block;
		width: auto;
		margin: 0px 0px 10px 0px;
		padding: 20px 5px 0px 5px;
		line-height: normal;
	}
	.section__item-greeting dd div {
		font-size: 1.2rem;
		text-align: end;
	}
}
/* declaration */
.section__item-declaration {
	display: block;
	padding: 30px 20px;
	margin-bottom: 30px;
}
.section__item-declaration dl {
	display: block;
	overflow: hidden;
	padding: 0px 20px 30px 20px;
	text-align: center;
}
.section__item-declaration dt {
	display: block;
	padding: 20px 0px 30px 0px;
	text-align: center;
}
.section__item-declaration dd {
	display: block;
	width: 100%;
	margin: 0px 0px 30px 0px;
	text-align: left;
}
.section__item-declaration dd ul {
	margin: 10px 0px 20px 20px;
}
.section__item-declaration dd li {
	margin-bottom: 10px;
	font-weight: 500;
	list-style-type: decimal;
}
.section__item-declaration dd div {
	font-size: 1.6rem;
	text-align: end;
}
.section__item-declaration dd p {
	font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
	.section__item-declaration {
		padding: 30px 0px;
		margin-bottom: 0px;
}
	.section__item-declaration dl {
		padding: 0px 5px 0px 5px;
	}
	.section__item-declaration dl:last-child {
		padding: 0px 5px 30px 5px;
	}
	.section__item-declaration dd {
		margin: 0px 0px 0px 0px;
	}
}

/* boardmember */
.section__item-boardmember {
	display: block;
}
.section__item-boardmember dl {
	display: block;
	overflow: hidden;
	padding: 30px 20px 0px 20px;
}
.section__item-boardmember dt {
	display: block;
	margin: 0px 0px 10px 0px;
	text-align: left;
	line-height: 1.2;
}
.section__item-boardmember dd {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin: 0px 20px 30px 0px;
	padding: 0px 0px 0px 0px;
	justify-content: flex-start;
}
.section__item-boardmember dd:last-child {
	margin: 0px 0px 30px 0px;
}
.section__item-boardmember dd div {
	display: block;
	margin: 0px 30px 0px 0px;
}
.bm-img {
	display: block;
	margin:20px 50px 0px 0px;
}
.bm-img:last-child {
	margin:20px 0px 0px 0px;
}
.bm-img img {
	width: 100px;
}
.bm-name {
	padding: 10px;
	text-align: center;
}
@media screen and (max-width: 767px) {
	.section__item-boardmember dl {
		display: block;
		overflow: hidden;
		padding: 30px 5px 0px 5px;
	}
	.bm-img {
		margin:20px 30px 0px 0px;
	}
	.bm-img:last-child {
		margin:20px 10px 0px 0px;
	}
}
/* about-menu */
.section__item-about-menu {
	width: 100%;
	max-width: 1280px;
	margin: 30px auto 0px auto;
	padding: 30px 20px 30px 20px;
}
@media screen and (min-width: 768px) {
	.section__item-about-menu ul{
		display: flex;
		margin-bottom: 30px;
		justify-content: center;
	}
	.section__item-about-menu li {
		margin-right: 50px;
		width: 50%;
		max-width: 555px;
	}
	.section__item-about-menu li:last-child {
		margin-right: 0px;
	}
	.section__item-about-menu a {
		display: block;
		font-size: 2.0rem;
		padding: 20px 30px;
		background: #FFF;
		border: solid 1px #707070;
	 	border-radius: 3px;/*角の丸み*/
		text-decoration: none;
		align-items:center;
		justify-content: space-between;
	}
	.section__item-about-menu a:hover {
		background: rgba(143,188,143,0.05);
		border: solid 1px #8fbc8f;
		transition: .2s;
	}
}	
@media screen and (max-width: 767px) {
	.section__item-about-menu {
		width: 100%;
		max-width: 767px;
		margin: 0px 0px 0px 0px;
		padding: 0px 0px 0px;
		text-align: center;
	}
	.section__item-about-menu li {
		border-top: solid 1px #707070;
	}
	.section__item-about-menu li:last-child {
		border-bottom: solid 1px #707070;
	}
	.section__item-about-menu a {
		display: block;
		padding: 30px 30px;
		background: #FFF;
		font-size: 2.0rem;
		text-decoration: none;
		text-align: left;
	}
	.section__item-about-menu a:active {
		background: rgba(143,188,143,0.05);
		color: #8fbc8f;
		transition: .2s;
	}
}


/* ---- history ---- */
.history {
	width: 100%;
	max-width: 1280;
	padding: 20px 0px 0px;
}
.history_2010 {
	height: 1em;
	margin-left: 40px;
	transform: rotate(90deg);
	transition: .3s;
}
.history_2010.active {
	transform: rotate(-90deg);
	transition: .3s;
}
.history_2000 {
	height: 1em;
	margin-left: 40px;
	transform: rotate(90deg);
	transition: .3s;
}
.history_2000.active {
	transform: rotate(-90deg);
	transition: .3s;
}
.history_1990 {
	height: 1em;
	transform: rotate(90deg);
	transition: .3s;
	margin-left: 40px;
}
.history_1990.active {
	transform: rotate(-90deg);
	transition: .3s;
}
.history_1970 {
	height: 1em;
	margin-left: 40px;
	transform: rotate(90deg);
	transition: .3s;
}
.history_1970.active {
	transform: rotate(-90deg);
	transition: .3s;
}
.dropdown_2020 {
	display: block;
}
.dropdown_2010 {
	display: none;
}
.dropdown_2000 {
	display: none;
}
.dropdown_1990 {
	display: none;
}
.dropdown_1970 {
	display: none;
}
.history-dropdown-inner {
	width: 100%;
	padding: 0px 0px 10px;
	vertical-align: top;
}
.history__year {
	padding: 5px 0px 5px 0px;
}

.history__wrapper {
	display: flex;
	width: 100%;
	max-width: 1280px;
}
.history__ct {
	width: calc(100% - 350px);
	margin-right: 50px;
	padding: 5px 0px 10px 60px;
}
.history__ct dl {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 10px;
	padding: 0px 0px 0px 5px;
	justify-content: space-between;
	border-bottom: 1px solid #707070;
	align-items: flex-start;
}
.history__ct dl dt {
	display: block;
	width: 3em;
}
.history__ct dl dd {
	display: block;
	width: calc(100% - 3em);
	padding: 0px 0px 10px;
}
.history__img {
	display: block;
	position: relative;
    width: 300px;
	margin: 0px 0px 20px 0px;
	text-align: center;
}
.img__1990 {
	position: absolute;
	top: 55%;
}
.img__1990 img{
	margin-top: 30px;
}
.img__2020 {
	position: absolute;
	top: 65%;
	text-align: center;	
}
.img__2010 {
	position: absolute;
	top: 15%;
}
.img__2010 img{
	margin-bottom: 250px;
}
.img__2000{
	position: absolute;
	top: 60%;
}
.img__2000 img{
	margin-top: 250px;
}
@media screen and (max-width: 767px) {
	.history {
		width: 100%;
		max-width: 767;
		padding: 0px 0px 0px;
	}
	.history__wrapper {
		display: block;
		width: 100%;
		max-width: 767px;
		/*background-color: pink;*/
	}
	.history__ct {
		width: 100%;
		margin-right: 50px;
		padding: 10px 5px 0px 5px;
	}
	.history__ct dl {
		padding: 0px 0px 0px 0px;
	}
	.history__ct dl:last-child {
		margin-bottom: 0px;
		border-bottom: none;
	}
	.history__sp-img {
		display: inline-block;
		margin-left: auto;
		margin-right: auto;
		padding: 10px 0px 10px 0px;
		text-align: center;
	}
	.history__img {
		display: none;
	}
	.history__img img {
 		width: 100%;
	}
}


/* ---- member ---- */
.section__item-member {
	display: block;
}
.section__item-member div {
	padding: 10px 20px 30px 20px;
}
.name {
	display:inline-block;
	margin-right: 30px;
}
.name > a {
	border-bottom: 1px solid #707070;
}
.name > a:hover {
	color: #8fbc8f;
	border-bottom: 1px solid #8fbc8f;
}
@media screen and (max-width: 767px) {
	.section__item-member div {
		padding: 0px 5px 30px 5px;
	}
}


/* ---- news top ---- */
.section__news {
	width: 100%;
	max-width: 1280px;
	padding: 10px 0px 50px 0px;
}
.news__title-box {
	display: flex;
	flex-wrap: wrap;
	padding: 0px 5px 0px 5px;
	justify-content: end;
	align-items: start;
}
.news__button{
	display:inline-block;
	margin-right:10px;
	margin-bottom: 5px;
	padding:5px 15px;
	border:none;
	border-radius:15px;
	background:#9FAFAA;
	color:#E9ECEB;
	font-size: 1.6rem;
	cursor:pointer;
}
.news__button.active {
	background:#8fbc8f;
}

#buttons button:last-child{
	margin-right:0;
}
#buttons button:focus{
	outline:none;
}
#buttons button:hover{
	background: #8fbc8f;
}
.cg__notice {
	grid-column: 1;
	grid-row: 1;
}
.cg__member-infomation {
	grid-column: 2;
	grid-row: 1;
}
.cg__update {
	grid-column: 1;
	grid-row: 2;
}
.cg__concert {
	grid-column: 2;
	grid-row: 2;
}
.news_box {
	width: 100%;
	max-width: 1280px;
	padding: 0px 30px 0px 30px;
}
.section__news ul li a {
	display: grid;
	width: 100%;
	padding: 15px 0px;
	gap: 5px 20px;
	grid-template-columns: 80px auto;
	grid-auto-rows: 20px auto;
	border-bottom: solid 1px #707070;
	background: #FFF;
	font-size: 1.6rem;
	text-decoration: none;
	transition: all 1s;
}
.section__news ul li a:hover {
	border-bottom: solid 1px #8fbc8f;
	background: rgba(143,188,143,0.1);
	color: #8fbc8f;
}
.section__news ul li a:active {
	border-bottom: solid 1px #8fbc8f;
	background: rgba(143,188,143,0.1);
	color: #8fbc8f;
}
.section__news__non-link {
	display: grid;
	width: 100%;
	padding: 15px 0px;
	gap: 5px 20px;
	grid-template-columns: 80px auto;
	grid-auto-rows: 20px auto;
	border-bottom: solid 1px #707070;
	background: #FFF;
	font-size: 1.6rem;
	text-decoration: none;
	transition: all 1s;
}
.news__date {
	display: block;
	width: 75px;
	margin-left: 15px;
}
.news__date {
	grid-column: 1;
	grid-row: 1;
}
.news__date2 {
	display: block;
	width: 150px;
	margin-left: 15px;
	margin-right: 15px;
}
.news__date2 {
	grid-column: 1;
	grid-row: 1;
}
.news__cat-text {
	grid-column: 2;
	grid-row: 1;
	color: #FF8C00;
}
.news__text {
	width: 95%;
	padding: 0px 15px 0px 15px;
	grid-column: 1 / -1;
	grid-row: 2;
	justify-content: start;
}
#list{
}
#list li{
}
@media screen and (max-width: 767px){
	.news__title-box {
		padding: 0px 10px 0px 10px;
		justify-content: start;
	}
	.section__news {
		width: 100%;
		max-width: 767;
		padding: 10px 0px 20px 0px;
	}
	.news_box {
		width: 100%;
		max-width: 767px;
		padding: 0px 0px 0px 0px;
		/*background-color:blue;*/
	}
	.news__date {
		margin-left: 5px;
	}
	.news__date2 {
		margin-left: 5px;
	}
	.news__text {
		width: 95%;
		padding: 0px 5px 0px 5px;
	}
}
/* ---- news article ---- */
.section__news-article {
	width: 100%;
	max-width: 1080px;
	padding: 10px 0px 30px 0px;
	margin: 0px auto 0px auto;
}
.news-article-tbox {
	display: flex;
}
.news-article-text__date {
	padding: 0px 0px 0px 0px;
	font-size: 1.2rem;
}
.news-article-text__ct {
	padding: 0px 0px 0px 10px;
	color: #FF8C00;
	font-size: 1.2rem;
}
.news-article-text__notice {
	color: #707070;
	font-size: 1.2rem;
}
.news-article__inner {
	width: 100%;
	max-width: 1080px;
	margin-left: auto;
	margin-right: auto;
	padding: 50px 30px 50px 30px;
}
.news-article__inner a {
	color: #8fbc8f;
}
.news-article__inner > figure {
	max-width: 400px;
	margin: 10px auto 0px auto;
}
.news-article__inner > figure > figcaption {
	padding: 0px 0px 40px 5px;
	font-size: 1.2rem;
}
.news-article__name {
	display:inline-block;
	margin-right: 20px;
}
.news-article__anchor {
  padding-top: 90px;
}
@media screen and (max-width: 767px) {
	.section__news-article {
		width: 100%;
		max-width: 767px;
		margin: 0px 0px 0px 0px;
		padding: 0px 0px 30px 0px;
	}
	.news-article__inner {
		width: 100%;
		margin-left: 0px;
		margin-right: 0px;
		padding: 30px 5px 50px 5px;
	}
	.news-article__inner img {
		width: 100%;
		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
	}
	.news-article__name {
		display:inline-block;
		margin-right: 20px;
	}
	.news-article__anchor {
		padding-top: 70px;
	}
	.iframe-responsive {
		position: relative;
		width: 95%;
		padding: calc(315 / 560 * 100%) 0 0;
	}
	.iframe-responsive iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
}

/* ---- admission ---- */
.admission-title {
	font-size: 2.0rem;
}
.admission-text {
	padding: 30px 20px 10px 20px;
	font-size: 1.6rem;
}

.admition-page {
	width: 100%;
	max-width: 1280px;
	padding: 10px 20px 10px 20px;
}
.admission__box {
	width: 100%;
	padding: 20px 0px 40px 0px;
}
.admission__box ul {
	padding: 10px 0px 0px 0px;
}
.admission__box a {
	display: block;
	width: 100%;
	padding: 20px 20px;
	border-bottom: solid 1px #707070;
	background: #FFF;
	transition: all 1s;
}
@media screen and (min-width: 768px) {
	.admission__box a:hover {
		background: rgba(143,188,143,0.1);
		color: #8fbc8f;
		border-bottom: solid 1px #8fbc8f;
	}
}
@media screen and (max-width: 767px) {
	.admission-text {
		padding: 30px 0px 10px 0px;
		font-size: 1.6rem;
	}
	.admition-page {
		width: 100%;
		max-width: 767px;
		padding: 0px 0px 0px 0px;
	}
	.admission__box {
		width: 100%;
		padding: 20px 0px 0px 0px;
	}
	.admission__box div {
		padding: 0px 10px 0px 10px;
	}
	.admission__box ul {
		width: 100%;
		padding: 20px 0px 0px;
		text-align: center;
	}
	.admission__box li {
		border-top: solid 1px #707070;
	}
	.admission__box li:last-child {
		border-bottom: solid 1px #707070;
	}
	.admission__box a {
		display: block;
		padding: 30px 30px;
		border-bottom: none;
		background: #FFF;
		font-size: 2.0rem;
		text-decoration: none;
		text-align: left;
	}
	.admission__box a:active {
		background: rgba(143,188,143,0.05);
		color: #8fbc8f;
		transition: .2s;
	}
}
/* ---- admission-ar,bungeibijutsukokuminkenkouhoken,houritsusoudan ---- */
.admission__ar {
	min-height: 440px;
	padding: 20px 40px 0px 40px;
	line-height: normal;
}
.admission__sm {
	padding: 20px 40px 0px 40px;
	line-height: normal;
}
.admission__list-ul {
	padding: 15px 10px 20px 25px;
}
.admission__list-decimal {
	list-style: decimal;
}
.admission__list-disc {
	padding: 0px 0px 0px 0px;
	list-style: disc;
}
.admission__ar dl {
	padding: 0px 0px 10px 0px;
}
.admission__ar dl dt {
	padding: 0px 0px 15px 0px;
	list-style: disc outside;
}
.admission__ar a {
	display: block;
	padding: 20px 0px 20px 20px;
	color: #8fbc8f;
	cursor : pointer;
}
@media screen and (max-width: 767px) {
	.admission__ar {
		min-height: 475px;
		padding: 20px 15px 0px 15px;
	}
	.admission__ar a {
		padding: 10px 0px 10px 10px;
	}
	.admission__sm {
		padding: 20px 15px 30px 15px;
	}
}

/* ---- admission-jcaaforyou ---- */
.admission-foryou {
	width: 100%;
	padding: 30px 0px 30px 0px;
}
.admission-foryou > a {
	display: flex;
	width: 480px;
	height: 100px;
	font-size: 2.0rem;
	padding: 20px;
	box-sizing: border-box;
	text-decoration: none;
	background: #FFF;
	border: solid 1px #707070;
 	border-radius: 3px;/*角の丸み*/
	align-items:center;
	justify-content: space-between;
	margin-right: auto;
 	margin-left: auto;
}
.admission-foryou > a:hover {
	background: rgba(143,188,143,0.05);
	border: solid 1px #8fbc8f;
	transition: .2s;
}
@media screen and (max-width: 767px) {
	.admission-foryou {
		width: 100%;
		max-width: 767px;
		margin-top: 20px;
	}
	.admission-foryou > a {
		display: flex;
		width: 100%;
		min-width: 280px;
		height: auto;
	}
}

/* ---- contents ---- */
.contents-page {
	width: 100%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding: 30px 0px 30px 0px;
}
.contents-page__wrapper {
	display: flex;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding: 0px 0px 20px 0px;
}
.contents-page__wrapper ul {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	margin-left: auto;
	margin-right: auto;
	padding: 50px 30px 30px 30px;
	gap: 80px 5%;
	align-content: flex-start;
}
.contents-page__wrapper ul li {
	display: block;
	width: 30%;
	list-style: none;
}
.contents-page__wrapper ul p {
	margin-bottom: 10px;
	padding:0px 15px; /*余白の設定*/
	border-left:3px solid #8fbc8f; /*線の設定*/
	color: #707070;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 1.2;
	text-align: left;
}
.pic-cr {
	width: 600px;
	margin: 0px auto;
	padding-right: 5px;
	font-size: 1.2rem;
	text-align: right;
}
@media screen and (max-width: 767px) {
	.contents-page {
		width: 100%;
		max-width: 767px;
		padding: 0px 10px 40px 10px;
	}
	.contents-page__wrapper ul {
		padding: 50px 30px 30px 40px;
		gap: 80px 10%;
	}
	.contents-page__wrapper ul li {
		width: 43%;
	}
	.pic-cr {
		width: 300px;
	}
}
@media screen and (max-width: 550px) {
	.contents-page {
		width: 100%;
		max-width: 550px;
		padding: 0px 0px 20px 0px;
	}
	.contents-page__wrapper ul {
		padding: 30px 5px 20px 5px;
		justify-content: center; 
		gap: 50px 0px;
	}
	.contents-page__wrapper ul li {
		display: block;
		width: 100%;
		list-style: none;
	}
}

/* ---- fumen ---- */
.contents-page table {
	table-layout: fixed;
	width: 100%;
	max-width: 1200px;
	margin: 0px auto 30px auto;
	border: 1px solid #707070;
	border-collapse: collapse;
	border-spacing: 0;
}
.contents-page table tr:first-child {
	background-color: #8fbc8f;
	color: #FFF;
}
.contents-page table td {
	padding: 10px 10px;
	border:solid 1px #707070;
}
.contents-page table td:nth-child(1){
	width: 50px;
	text-align: center;
}
.contents-page table td:nth-child(2){
	width: 70px;
	text-align: center;
}
.contents-page table td:nth-child(4){
	width: 8%;
	text-align: center;
}
.contents-table__tr-color {
	background-color: #f5f5f5;
}
@media screen and (max-width: 767px) {
	.contents-page table {
		width: 100%;
		max-width: 767px;
		margin: 0px auto 30px auto;
		border: 1px solid #707070;
	}
	.contents-page table td:nth-child(1){
		width: 40px;
	}
	.contents-page table td:nth-child(2){
		width: 40px;
		word-break: break-all;
	}
	.contents-page table td:nth-child(4){
		width: 50px;
		text-align: center;
		word-break: break-all;
	}
	.contents-page table td:nth-child(5){
		width: 30%;
	}
}

/* ---- haneken ---- */
.text-box {
	width: 100%;
	max-width: 1080px;
	min-height: 500px;
	margin: 0px auto 0px auto;
	padding: 30px 0px 50px 0px;
}
.contents-ul {
	width: 80%;
	max-width: 1000px;
	margin: 20px auto 30px auto;
	line-height: normal;
}

@media screen and (max-width: 767px) {
	.contents-ul {
		width: 90%;
		max-width: 767px;
		margin: 20px auto 30px auto;
		line-height: normal;
	}
	.text-box {
		width: 100%;
		max-width: 767px;
		margin: 0px auto 0px auto;
		padding: 30px 0px 50px 0px;
	}
}

/* ---- konsakka ---- */
.konsakka-new-inner {
	display: flex;
	width: 700px;
	height: 400px;
	margin: 30px auto 30px auto;
	background-color: #F5F5DC;
}
.konsakka-new-img {
	height: 400px;
}
.konsakka-new-text {
	padding: 20px 20px 0px 20px;
}
.konsakka-new-text p {
	margin-top: 120px;
	font-size: 2.0rem;
}
.konsakka-card-wrapper {
	width: 100%;
	max-width: 1200px;
	margin-top: 30px;
}
.konsakka-card-wrapper > ul {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	max-width: 1200px;
	padding: 20px 0px 30px 0px;
	gap: 60px 50px;
}
.konsakka-card-wrapper > ul > li {
	list-style: none;
}
.konsakka__card {
	width: 150px;
	height: 282px;
}
.konsakka__card-caption {
	width: 150px;
	padding: 5px 10px 20px 10px;
}
.konsakka__card-caption > p {
		font-size: 1.2rem;
		line-height: normal;
}
.konsakka-card-wrapper > p {
	font-size: 1.2rem;
	padding: 0px 10px 0px 10px;
	margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
	.konsakka-new-inner {
		display: flex;
		width: 100%;
		height: auto;
		margin: 30px auto 30px auto;
		padding: 0px;
		background-color: #F5F5DC;
	}
	.konsakka-new-img {
		width: 40%;
		height: auto;
		padding: 10px 10px 5px 10px;
	}
	.konsakka-new-text {
		padding: 20px 20px 0px 20px;
	}
	.konsakka-new-text p {
		padding: 20px 0px 0px 0px;
		margin: 0px;
		font-size: 2.0rem;
	}
	.konsakka-card-wrapper {
		width: 100%;
		margin-top: 30px;
	}
	.konsakka-card-wrapper > ul {
		display: flex;
		flex-wrap: wrap;
		width: 100%;
		padding: 20px 0px 30px 0px;
		gap: 20px 0px;
		justify-content: space-between; 
	}
	.konsakka-card-wrapper > ul > li {
		list-style: none;
		width: 30%;
		margin: 0px 0px 0px 0px;
	}
	.konsakka__card {
		width: 100%;
	}
	.konsakka__card-caption {
		width: 100%;
		padding: 5px 10px 10px 10px;
	}
	.konsakka__card-caption > p {
		font-size: 1.2rem;
	}
	.konsakka-card-wrapper > p {
		font-size: 1.2rem;
		margin-bottom: 30px;
		padding: 0px 10px 0px 10px;
	}
	.konsakka__card-img > img {
		width: 100%;
	}
}

/* ---- konsakka-article ---- */
.konsakka__article-inner {
	width: 100%;
	max-width: 820px;
	margin-left: auto;
	margin-right: auto;
	padding: 0px 0px 70px 0px;
}
.konsakka__article-name {
	padding:20px 0px 20px 0px;
	font-size: 2.0rem;
	text-align: center;
}
.konsakka__article-number {
	padding:0px 0px 10px 10px;
	font-size: 2.0rem;
}
.konsakka__article-date {
	padding:0px 0px 10px 20px;
	font-size: 1.6rem;
}
.konsakka__article-date-old {
	padding:0px 20px 10px 20px;
	font-size: 1.2rem;
}
.konsakka__article-withdrawal {
	font-size: 1.2rem;
	line-height: 0.8;
}
.konsakka-copyright {
	font-size: 1.2rem;
	font-weight: 300;
}
.konsakka-text__italic {
	font-style: italic; 
}
.konsakka__article-inner a {
	color: #8fbc8f;
}
.konsakka_pic_box {
	display: flex;
	width: 100%;
	margin: 10px auto 20px auto;
	gap: 10px 30px;
	text-align: center;
	justify-content: center;
	align-items: center;
}
.konsakka__article-inner figure {
	display: table;
	margin-top: 15px;
}
.konsakka__article-inner figcaption {
  	display: table-caption;
	padding: 5px 0px 20px 0px;
	background-color: #fff;
	color: #707070;
	caption-side: bottom;
	font-size: 1.6rem;
}
.konsakka__article-inner ol {
	padding: 0px 0px 0px 30px;
	list-style: decimal;
}
.konsakka__text-left-10px {
	padding: 0px 0px 0px 10px;
}
@media screen and (max-width: 767px) {
	.konsakka__article-inner {
		width: 100%;
		max-width: 767px;
		margin-left: auto;
		margin-right: auto;
		padding: 0px 0px 30px 0px;
	}
	.konsakka__article-inner img {
		width: 100%;
		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
	}
	.konsakka_pic_box {
		display: block;
		width: 100%;
		margin: 10px auto 10px auto;
		gap: 10px;
		background-color:antiquewhite;
		align-items: center;
		justify-content: center;
	}
	.konsakka__article-inner figure figcaption {
  		display: table-caption;
 		padding: 5px 0px 20px 0px;
 		background-color: #fff;
 		color: #707070;
		font-size: 1.6rem;
  		text-align: left;
		caption-side: bottom;
	}
}

/* ---- link ---- */
.link-page {
	width: 100%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding: 30px 0px 30px 0px;
}
.link-inner {
	width: 100%;
	max-width: 1280px;
	padding: 30px 35px 30px 35px;
}
.link-inner > ul {
	display: flex;
	width: 100%;
	gap: 30px 5%;
}
.link-inner > ul > li {
	width: 30%;
}
.link-inner ul > li > a {
	display: flex;
	width: 100%;
	margin-right: auto;
 	margin-left: auto;
	padding: 20px;
	background: #FFF;
	border: solid 1px #707070;
 	border-radius: 3px;/*角の丸み*/
	font-size: 1.6rem;
	text-decoration: none;
	line-height: normal;
	align-items:center;
	justify-content: space-between;
}
.link-inner ul > li > a:hover {
	background: rgba(143,188,143,0.05);
	border: solid 1px #8fbc8f;
	transition: .2s;
}
@media screen and (max-width: 767px) {
	.link-page {
		max-width: 767px;
		padding: 0px 0px 0px 0px;
	}
	.link-inner {
		width: 100%;
		padding: 30px 0px 30px 0px;
	}
	.link-inner > ul {
		display: block;
		width: 100%;
		gap: 0px 0px;
	}
	.link-inner > ul > li {
		width: 100%;
		margin-bottom: 20px;
	}
	.link-inner ul > li > a {
		display: flex;
		width: 100%;
		margin-right: auto;
 		margin-left: auto;
		padding: 20px;
		background: #FFF;
		border: solid 1px #707070;
 		border-radius: 3px;/*角の丸み*/
		font-size: 1.6rem;
		text-decoration: none;
		line-height: normal;
		align-items:center;
		justify-content: space-between;
	}
	.link-inner ul > li > a:active {
		background: rgba(143,188,143,0.05);
		border: solid 1px #8fbc8f;
		transition: .2s;
	}
}

/* ---- member-site-index ---- */
.member__news {
	display: block;
	width: 100%;
	max-width: 1080px;
	margin: 0px auto 0px auto;
	padding: 20px 0px 10px 0px;
}
.member-top-inner {
	width: 100%;
	max-width: 1080px;
	margin: 0px auto 30px auto;
	padding: 20px 10px 30px 10px;
	border-bottom:1px solid #070707;
}
.member-img {
	margin: 30px auto 30px auto;
	text-align: center;
}
.journal-new {
	text-align: left;
	font-size: 1.6rem;
	font-weight: 400;
	color: #FF8C00;
	padding: 0px 0px 20px 0px;
}
.journal_inner {
	display: block;
	width: 500px;
	margin: 30px auto 30px auto;
	text-align: left;
}
.member-menu {
	width: 100%;
	max-width: 1280px;
	padding: 30px 35px 30px 35px;
}
.member-menu > ul {
	display: flex;
	width: 100%;
	gap: 0px 6%;
}
.member-menu > ul > li {
	width: 47%;	
}
.member-menu > ul > li > a {
	display: flex;
	width: 100%;
	margin-right: auto;
 	margin-left: auto;
	padding: 20px;
	border: solid 1px #707070;
 	border-radius: 3px;/*角の丸み*/
	background: #FFF;
	font-size: 1.6rem;
	text-decoration: none;
	line-height: normal;
	align-items:center;
	justify-content: space-between;
}
.member-menu > ul > li > a:hover {
	border: solid 1px #8fbc8f;
	background: rgba(143,188,143,0.05);
	transition: .2s;
}

@media screen and (max-width: 767px) {
	.member__news {
		display: block;
		width: 100%;
		max-width: 767px;
		padding: 0px 0px 0px 0px;
	}
	.member-top-inner {
		width: 100%;
		padding: 20px 0px 30px 0px;
		margin-bottom: 40px;
		border-bottom:1px solid #070707;
	}
	.member-img img {
		width: 90%;
		max-width: 500px
	}
	.journal-new {
		text-align: left;
		font-size: 1.6rem;
		font-weight: 400;
		color: #FF8C00;
		padding: 0px 0px 20px 0px;
	}
	.journal_inner {
		width: 100%;
		max-width: 500px;
		margin: 30px auto 40px auto;
	}
	.member-menu {
		width: 100%;
		padding: 30px 0px 0px 0px;
	}
	.member-menu > ul {
		display: block;
		width: 100%;
		gap: 0px 0px;
	}
	.member-menu > ul > li {
		width: 100%;
		margin-bottom: 20px;	
	}
	.member-menu > ul > li > a {
		display: flex;
		width: 100%;
		margin-right: auto;
 		margin-left: auto;
		padding: 20px;
		background: #FFF;
		border: solid 1px #707070;
 		border-radius: 3px;/*角の丸み*/
		box-sizing: border-box;
		font-size: 1.6rem;
		text-decoration: none;
		line-height: normal;
		align-items:center;
		justify-content: space-between;
	}
	.member-menu > ul > li > a:active {
		background: rgba(143,188,143,0.05);
		border: solid 1px #8fbc8f;
		transition: .2s;
	}
}


/* ---- journal-bn ---- */
.journal-bn_date {
	font-weight: 300;
	font-size: 1.6rem;
}
.journal-bn__inner a {
	display: flex;
	width: 100%;
	max-width: 1080px;
	margin: 0px auto 0px auto;
	padding: 50px 0px 50px 0px;
	justify-content: center;
}
.journal-bn__img {
	width: 30%;
	max-width: 300px;
}
.journal-bn_text {
	width: 50%;
	max-width: 500px;
	padding: 50px 0px 0px 50px;
}
.journal__page-nation {
	margin: 0px auto 0px auto;
	padding: 30px 0px 30px 0px;
}
.journal__page-nation > ul {
	display: flex;
	gap: 0px 15px;
	justify-content: center;
}
.journal__page-nation-current {
	color: #8fbc8f;
}
@media screen and (max-width: 767px) {
	.journal-bn_date {
		font-weight: 300;
		font-size: 1.6rem;
	}
	.journal-bn__inner a {
		display: block;
		width: 100%;
		max-width: 767px;
		margin: 0px auto 0px auto;
		padding: 30px 5px 50px 5px;
	}
	.journal-bn__img {
		width: 100%;
		max-width: 300px;
		margin-left: auto;
		margin-right: auto;
	}
	.journal-bn_text {
		width: 100%;
		max-width: 767px;
		padding: 10px 0px 0px 0px;
	}
	.journal__page-nation {
		margin: 0px auto 0px auto;
		padding: 10px 0px 30px 0px;
	}
}

/* ---- board-repoat_bn ---- */
.board-repoat_bn {
	width: 100%;
	max-width: 1280px;
	margin: 0px auto 0px auto;
	padding: 0px 0px 0px 20px;
}	
.board-repoat_bn-inner {
	width: 100%;
	max-width: 1080px;
	min-height: 580px;
	margin: 0px auto 0px auto;
}
.board-repoat_bn-inner > ul {
	list-style: inside;
	padding:10px 0px 10px 0px;
}
.board-repoat_bn-inner > ul > li {
	padding: 0px 0px 0px 20px;
}
.board-repoat_bn_year {
	font-size: 2.0rem;
}
@media screen and (max-width: 767px) {
	.board-repoat_bn {
		width: 100%;
		max-width: 767px;
		margin: 0px 0px 0px 0px;
		padding: 0px 0px 0px 0px;
	}	
	.board-repoat_bn-inner {
		width: 100%;
		max-width: 767px;
		min-height: 580px;
		margin: 10px 0px 0px 10px;
	}
	.board-repoat_bn-inner > ul > li {
		padding: 0px 0px 0px 10px;
	}
}

/* ---- member article ---- */
.member-article-inner {
	width: 100%;
	max-width: 1080px;
	min-height: 575px;
	margin: 0px auto 0px auto;
	padding: 30px 0px 0px 0px;
	line-height: normal;
}
.member-article__list-ul {
	padding: 15px 10px 20px 25px;
}
.member-article__list-decimal {
	list-style: decimal;
}
.member-article__list-disc {
	padding: 0px 0px 0px 0px;
	list-style: disc;
}
.member-article-inner dl {
	padding: 0px 0px 10px 0px;
}
.member-article-innerdl dt {
	padding: 0px 0px 15px 0px;
	list-style: disc outside;
}
.member-article-inner a {
	display: block;
	padding: 30px 0px 0px 20px;
	cursor : pointer;
}
.membersite-bottom_a {
	display: block;
	padding: 0px 0px 50px 20px;
}
@media screen and (max-width: 767px) {
	.member-article-inner {
		max-width: 767px;
		min-height: 530px;
		padding: 0px 0px 0px 0px;
	}
	.membersite-bottom_a {
		padding: 10px 0px 20px 0px;
	}
}

/* ---- inquiry ---- */
.inquiry {
	width: 100%;
	max-width: 1080px;
	margin: 0px auto 20px auto;
	padding: 30px 10px 30px 10px;
}
.form-wrapper {
	width: 800px;
	margin: 0px auto 0px auto;
	padding: 30px 0px 30px 0px;
}
.i-form__item {
	padding: 20px 20px 10px 20px;
}
.i-form__label {
	display: block;
}
.i-form__required {
	padding: 0px 0px 0px 20px;
	font-size: 1.2rem;
	color: #ff0000;
}
.i-form-input__name {
	width: 120px;
	height: 30px;
	margin: 10px 0px;
	padding: 0px 0px 0px 5px;
	font-size: 1.6rem;
}
.i-form-input__mail {
	width: 200px;
	height: 30px;
	margin: 20px 0px;
	padding: 0px 0px 0px 5px;
	font-size: 1.6rem;
}
.i-form-input__content {
	width: 760px;
	height: 250px;
	margin: 20px 0px;
	padding: 0px 0px 0px 5px;
	font-size: 1.6rem;
}
.i-form__btn-wrapper {
	display: flex;
	padding: 30px 0px 50px 0px;
  	justify-content: center;
	align-items: center;
}
.i-form__btn {
	width: 150px;
	height: 50px;
	padding: 20px auto 20px auto;
	border-radius: 5px;
	font-size: 1.6rem;
}
.completion-title {
	font-size: 2.0rem;
}
.completion-btn__wrapper {
	display: flex;
	padding: 30px 0px 50px 0px;
	justify-content: center;
}
.completion-btn {
	display:flex;
	width: 220px;
	margin: 50px 0px 30px 0px;
	padding: 20px;
	background: #FFF;
	border: solid 1px #707070;
 	border-radius: 3px;
	font-size: 1.6rem;
	text-decoration: none;
	line-height: normal;
	align-items:center;
	justify-content: space-between;
}
.completion-btn:hover {
	background: rgba(143,188,143,0.05);
	border: solid 1px #8fbc8f;
	transition: .2s;
}
.completion-btn img {
	display:block;
	width: 10px;
}
@media screen and (max-width: 767px) {
	.inquiry {
		width: 100%;
		max-width: 767px;
		margin-right: 0px;
 		margin-left: 0px;
		padding: 0px 5px 0px 5px;
	}
	.form-wrapper {
		width: 100%;
		margin: 0px auto 0px auto;
		padding: 30px 0px 0px 0px;
	}
	.i-form__item {
		padding: 20px 10px 10px 10px;
	}
	.i-form-input__content {
		width: 100%;
		max-width: 767px;
	}
	.completion-btn__wrapper {
		padding: 30px 0px 0px 0px;
	}
}

/* ---- privacy-policy ---- */
.privacy-policy-inner {
	width: 100%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding: 30px 30px 50px 30px;
}
.privacy-policy-inner > a {
	color: #8fbc8f;
}
@media screen and (max-width: 767px) {
	.privacy-policy-inner {
		width: 100%;
		max-width: 760px;
		margin-left: auto;
		margin-right: auto;
		padding: 0px 0px 30px 0px;
	}	
}


/* ---- store ---- */
.section-store {
	width: 100%;
	max-width: 1080px;
	margin: 0px auto 0px auto;
	padding: 0px 20px 30px 20px;
	/*background-color: lightgreen;*/
}
.section-store p {
	font-size: 1.2rem;
}
.store__cards-wrapper {
	width: 80%;
	min-height: 430px;
	margin: 50px auto 50px auto;
	/*background-color: lightgreen;*/
}
.store__cards-wrapper > ul {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	gap: 10px 5%;
	/*background-color: white;*/
}
.store__cards-wrapper > ul >li {
	display: block;
	width: 30%;
	/*background-color: lightblue;*/
}
.store__cards-wrapper > ul > li > a img {
	transition:1s all;
}
.store__cards-wrapper > ul > li > a img:hover {
	transform:scale(1.1,1.1);
	transition:1s all;
}
.store__cards-wrapper figcaption {
	width: 100%;
	padding: 10px 20px 10px 20px;
	/*background-color: lightyellow;*/
}
@media screen and (max-width: 767px) {
	.section-store {
		width: 100%;
		max-width: 767px;
		margin: 0px auto 0px auto;
		padding: 0px 10px 40px 10px;
		/*background-color: lightgreen;*/
	}
	.section-store p {
		font-size: 1.4rem;
	}
	.store__cards-wrapper {
		width: 100%;
		margin: 30px 0px 30px 0px;
		/*background-color: lightgreen;*/
	}
	.store__cards-wrapper > ul {
		display: flex;
		flex-wrap: wrap;
		width: 100%;
		gap: 10px 6%;
		/*background-color: white;*/
	}
	.store__cards-wrapper > ul >li {
		display: block;
		width: 47%;
		/*background-color: lightblue;*/
	}
	.store__cards-wrapper > ul > li > a img {
		transition:1s all;
	}
	.store__cards-wrapper > ul > li > a img:hover {
		transform:scale(1.0,1.0);
		transition:1s all;
	}
	.store__cards-wrapper figcaption {
		width: 100%;
		padding: 10px 10px 10px 10px;
		/*background-color: lightyellow;*/
	}
}

/* ---- store-items ---- */
.store-item {
	width: 100%;
	max-width: 1080px;
	margin: 0px auto 0px auto;
	padding-bottom: 50px;
}
.store-item__wrapper {
	display: flex;
	flexwrap: wrap;
	width: 100%;
	margin: 0px auto 0px auto;
	padding: 50px 0px 50px 0px;
	/*background-color: lightyellow;*/
}
.store-item__img-area {
	width: 50%;
	padding: 40px 30px 0px 30px;
	/*background-color: white;*/
}
.store-item__main-img {
	width: 100%;
	padding: 0px 5px 0px 5px;
}
.store-item__main-img > img {
	width: 100%;
}
.store-item__thmb-area {
	padding: 10px 0px 0px 0px;
}
.store-item__thmbnail {
	display: flex;
	flex-wrap: wrap;
}
.store-item__thmbnail > li {
	display: block;
	width: 25%;
	margin: 0px 0px 15px 0px;
	padding: 0px 5px 0px 5px;
}
.store-item__thmbnail > li:last-child {
	margin: 0px 0px 0px 0px;
}
.store-item__thmbnail > li > img {
	cursor: pointer;
	width: 100%;
}
.store-item__txt-area {
	width: 50%;
	padding: 0px 30px 0px 30px;
	/*background-color: lightblue;*/
}

.store-item__heading {
	padding: 10px 0px 0px 0px;
	font-weight: 500;
	font-size: 1.8rem;
}
.store-item__price {
	padding: 30px 0px 0px 0px;
	font-weight: 500;
	font-size: 1.8rem;
}
.store-item__price > span {
	font-size: 1.2rem;
}
.store-item__price > p {
	padding-left: 5px;
	font-weight: 400;
	font-size: 1.2rem;
}
.store-item__details {
	padding: 25px 0px 50px 0px;
}
.store-item__details p {
	font-size: 1.2rem;
}
.store-item__details a {
	display: flex;
	flex-wrap: nowrap;
	width: 100%;
	margin: 0px auto 10px auto;
	padding: 15px 0px;
	background-color: #8fbc8f;
	border-radius: 3px;
	justify-content: center;
	align-items: center;
	font-size: 1.8rem;
	color: #FFF;
}
.store-item__details a:hover {
	background-color: #2e8b57;
}
#postage {
	position: fixed;
	left: 0;
	top: 0;
	display: none;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.4);
	z-index: 100;
}
#postage_wrapper {
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
}
#postage_text-bg {
	width: 88%;
	max-width: 1200px;
	height: 88%;
	max-height: 670px;
	overflow-y: auto;
	background-color: #FFF;
	border-radius: 3px;
}
.postage_text {
	width: 100%;
	padding: 50px 50px 30px 50px;
}
.postage-close_wrapper {
	width: 100%;
	padding: 10px 0px 0px 0px;
	text-align: right;
}
#postage-close {
	width: 100px;
	padding: 5px 0px;
	background-color: #FFF;
	border: 1px solid;
	border-radius: 3px;
	text-align: center;
	font: inherit;
	font-size: 1.4rem;
	color: inherit;
}
#postage-close:hover {
	background-color: #f5f5f5;
	border: 1px solid #8fbc8f;
	color: #8fbc8f;
}
#postage-click {
	padding: 25px 0px 3px 5px;
	border: none;
	outline: none;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.2rem;
	font-weight:400;
	color: inherit;
	background: none
}
#postage-click:hover {
	color: #8fbc8f;
}
.table-container {
	width: 100%;
	margin: 30px 0px 30px 0px;
  	overflow-x: auto;
	white-space: nowrap;
}
.table-container table {
	table-layout: fixed;
	width: 1080px;
	margin: 0px auto 0px auto;
	border: 1px solid #707070;
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 1.4rem;
}
.table-container th {
	width: 7.5%;
	background-color: #8fbc8f;
	padding: 10px 10px;
	border:solid 1px #707070;
	text-align: center;
	color: #FFF;
}
.table-container td {
	padding: 10px 10px;
	border:solid 1px #707070;
	text-align: center;
}

@media screen and (max-width: 767px) {
	.store-item {
		width: 100%;
		max-width: 767px;
		margin: 0px auto 0px auto;
		padding: 0px 10px 30px 10px;
	}
	.store-item__wrapper {
		display: block;
		width: 100%;
		margin: 0px 0px 0px 0px;
		padding: 20px 0px 0px 0px;
		/*background-color: lightyellow;*/
	}
	.store-item__img-area {
		width: 100%;
		padding: 0px 0px 0px 0px;
		/*background-color: white;*/
	}
	.store-item__txt-area {
		width: 100%;
		padding: 0px 0px 0px 0px;
		/*background-color: lightblue;*/
	}
	.store-item__price > span {
		font-size: 1.4rem;
	}
	.store-item__price > p {
		padding: 0px 0px 20px 0px;
		font-size: 1.4rem;
	}
	.store-item__details p {
		font-size: 1.4rem;
	}
	#postage_text-bg {
		width: 90%;
		max-width: 675px;
		height: 90%;
		max-height: 670px;
	}
	.postage-text {
		width: 100%;
		padding: 20px 20px 20px 20px;
	}
	#postage-click {
		padding: 0px;
		font-weight: 500;
		font-size: 1.4rem;
	}
	#postage-close:hover {
		background-color: #FFF;
	}
	.table-container table {
		table-layout: auto;
		width: 90%;
	}
}

/* ---- 404 ---- */
.e404-wrapper {
	width: 100%;
	max-width: 800px;
	margin: 150px auto 0px auto;
	padding: 30px 10px 0px 10px;
	text-align: center;
}
.e404-title {
	font-size: 3.0rem;
	font-weight: 500;
	color: #8fbc8f;
}
.e404-btn__wrapper {
	display: flex;
	padding: 30px 0px 0px 0px;
	justify-content: center;
}
.e404-btn {
	display:flex;
	width: 220px;
	margin: 50px 0px 0px 0px;
	padding: 20px;
	background: #FFF;
	border: solid 1px #707070;
 	border-radius: 3px;
	font-size: 1.6rem;
	text-decoration: none;
	line-height: normal;
	align-items:center;
	justify-content: space-between;
}
.e404-btn:hover {
	background: rgba(143,188,143,0.05);
	border: solid 1px #8fbc8f;
	transition: .2s;
}
.e404-btn img {
	display:block;
	width: 10px;
}
@media screen and (max-width: 767px) {
	.e404-wrapper {
		width: 100%;
		max-width: 767px;
		margin-right: 0px;
 		margin-left: 0px;
		padding: 0px 5px 0px 5px;
	}
	.e404-btn__wrapper {
		padding: 30px 0px 0px 0px;
	}
}
	
/* footer ---------------------- */
.gnav-footer {
	display: block;
	width: 100%;
	height: 188;
	background-color: #E6E6E6;
}
.gnav-footer > .inner {
	display: flex;
	width: 100%;
	min-width: 768px;
	max-width: 1280px;
	margin-right: auto;
	margin-left: auto;
	padding: 0px;
	justify-content: space-between;
}
.gnav-footer > .inner > .logo{
	display: block;
	width: 320px;
	margin: 0;
	padding: 20px 40px 30px 40px;
	font-size: 1.2rem;
}
.gnav-footer > .inner > .sns{
	display: block;
	width: 320px;
	margin: 0;
	padding: 20px 40px 30px 40px;
	font-size: 1.2rem;
}
.gnav-footer > .inner > .sns > ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.gnav-footer > .inner > .sns > li{
	display: block;
	width: 35px;
}
.gnav-footer > .inner > .sns > ul > li > a > img {
	transition: 0.5s;
}
.gnav-footer > .inner > .sns > ul > li > a img:hover {
	transform: scale(1.2);
}
.gnav-footer > .inner > .link{
	display: block;
	width: 320px;
	margin: 0;
	padding: 20px 40px 30px 40px;
	font-size: 1.2rem;
	line-height: 1.5;
}
.gnav-footer > .inner > .link > ul{
	display: flex;
	flex-wrap: wrap;
	gap: 10px 40px;
}
.gnav-footer > .inner > .link > li{
	display: block;
	padding: 0px 40px 0px 0px;
}
.gnav-footer > .copyright {
	display: block;
	max-width: 100%;
	margin: 0;
	padding: 10px 0px 10px;
	font-size: 1.2rem;
	text-align: center;
}
.footer-current {
	color: #8fbc8f;
}
@media screen and (max-width: 767px) {
	.gnav-footer > .inner {
		display: flex;
		flex-wrap: wrap;
		width: 100%;
		min-width: 300px;
		max-width: 767px;
		margin-right: auto;
		margin-left: auto;
		padding: 0px;
		justify-content: space-between;
	}
	.gnav-footer > .inner > .logo{
		padding: 25px 0px 0px 40px;
	}
	.gnav-footer > .inner > .sns{
		padding: 20px 0px 0px 40px;
	}
	.gnav-footer > .inner > .sns > ul{
		display: flex;
		justify-content: start;
		flex-wrap: wrap;
	}
	.gnav-footer > .inner > .sns > ul > li{
		display: block;
		width: 35px;
		margin: 0px 20px 0px 0px;
	}
	.gnav-footer > .inner > .link{
		padding: 20px 0px 40px 40px;
	}
}
/*Media Queries ---------------------- */
@media screen and (min-width: 768px) {
  .spOnly {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pcOnly {
	display: none !important;
  }
}