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


/* ボタン　================================================== */

.btn_st{
	width: 250px;
	margin: 30px auto;
	text-align: center;
}
.btn_st a{
	display: block;
	width: 100%;
	background: linear-gradient(to right, #665a02,#b19c03,#e5dead);
	outline: none;
	position: relative;
	padding: 15px;
	overflow: hidden;
	color: #fff;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	box-shadow: 5px 5px #665a02;
}

.btn_st a:hover:before{
	opacity: 1; 
	transform: translate(0,0);
}
.btn_st a:before{
	content: attr(data-hover);
	position: absolute;
	top: 1.5em; 
	left: 0;
	width: 100%;
	text-transform: uppercase;
	font-family: "Cinzel", serif;
	font-weight: 500;
	line-height: 1;
	font-size: .8em;
	opacity: 0;
	transform: translate(-100%,0);
	transition: all .3s ease-in-out;
}
.btn_st a:hover div{
	opacity: 0; 
	transform: translate(100%,0)
}
.btn_st a div{
	text-transform: uppercase;
	font-size: .8em;
	transition: all .3s ease-in-out;
}

/* table　================================================== */

.simple01 table {
	border-collapse: collapse;
    border-spacing: 5px;
    margin: 0 auto;
    padding: 0;
    width:100%;
	
}
.simple01 table tr{
	border-bottom: solid 1px #666;
}
.simple01 table th,.simple01 table td{
	padding: 1.5em 1em;
	text-align: left;
	vertical-align: top;
}
.simple01 table th{
	font-weight: 600;
	width: 20%;
	min-width: 6em;
}
.simple01 table td i{
	color: #8a9898;
}

.simple01 dl{
	margin-bottom: 0.5em;
	font-size: 0.9rem;
	display: flex;
}
.simple01 dl dt{
	width: 11em;
}
.simple01 dl dd{
	
}

.simple01 ul li{
	padding-left: 1em;
	text-indent: -1em;
	margin-bottom: 0.5em;
}
@media (max-width: 960px){
	.simple01 table th,.simple01 table td{
		display: block;
		width: 100%;
	}
	.simple01 table th{
		padding-bottom: 0;
	}
}
/* dl ================================================== */
.border01 dl{
	border-bottom: solid 1px #5cb758;
	margin-bottom: 1rem;
}
.border01 dl dt{
	font-size: clamp(1rem, 0.91rem + 0.32vw, 1.2rem);
}
.border01 dl dt i{
	color: #5cb758;
}
.border01 dl dd{
	padding: 1rem;
	font-size: clamp(0.8rem, 0.71rem + 0.32vw, 1rem);
}
.border02{
	padding: 15px;
}
.border02 dl{
	border-bottom: dashed 1px #5cb758;
	margin-bottom: 1rem;
	display: flex;
	justify-content: flex-start;
}
.border02 dl dt{
	font-size: clamp(1rem, 0.91rem + 0.32vw, 1.2rem);
	min-width: 3rem;
	color: #5cb758;
}
.border02 dl dt i{
	color: #5cb758;
}
.border02 dl dd{
	font-size: clamp(0.8rem, 0.71rem + 0.32vw, 1rem);
	flex:1;
}
@media (max-width: 750px){
	.border02{
		padding: 15px 0;
	}
}

/* タイムラインリスト　================================================== */
.number_list li{
	border-bottom: solid 1px #5cb758;
	padding: 1rem;
	margin-bottom: 1rem;
}
.number_list .inner_flex{
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.number_list .inner_flex .li_nb{
	font-family: "Cinzel", serif;
	font-weight: 500;
	font-size: clamp(1.5rem, 1.05rem + 1.6vw, 2.5rem);
	line-height: 100%;
	background:linear-gradient( to bottom,#99FF94, #5cb758, #438540);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
	min-width: 4em;
}
.number_list .inner_flex .li_txt{
	font-weight: 500;
	font-size: clamp(1rem, 0.91rem + 0.32vw, 1.2rem);
}
.number_list .wrap{
	margin-top: 1rem;
}

/* こだわり　================================================== */
.point_wrap{
	width: 100%;
}
.point_wrap{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.point_wrap .inner{
	width: calc(100% / 3 - 20px);
	padding: 30px;
	margin: 10px;
	background: #333;
	position: relative;
	
}
.point_wrap .inner img{
	display: block;
	margin: auto;
	width: 180px;
	padding: 3px;
	filter: drop-shadow(0 0 5px rgba(0,0,0,0.1));
}
.point_wrap h3{
	font-size: clamp(1.2rem, 1.065rem + 0.48vw, 1.5rem);
	border-bottom: solid 1px #ccab50;
	position: relative;
	margin-bottom: 30px;
	padding-bottom: 0.25em;
}

.point_wrap h3 span.nb{
	font-family: "Cinzel", serif;
	font-weight: 500;
	display: block;
	font-size: 120%;
	line-height: 100%;
	background:linear-gradient( to bottom,#99FF94, #5cb758, #438540);
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
}
.point_wrap h4{
	display: inline;
	font-family: "Shippori Mincho B1", serif;
	font-size: 1.1rem;
	margin-bottom: 1rem;
	font-weight: 600;
	background:linear-gradient(transparent 60%, rgba(179,164,124,0.3) 60%);
}
.point_wrap p{
	margin-top: 15px;
}

@media (max-width: 1200px){
	.point_wrap .inner{
		width: calc(100% - 30px);
		padding: 1.5em;
		margin-top: 70px;
	}
	.point_wrap .inner:first-child{
		margin-top: 0;
	}
}
@media (max-width: 750px){
	.point_wrap{
		flex-direction: column;
		max-width: 600px;
		margin: auto;
	}
	.point_wrap .inner img{
		right: 0;
	}
}
/* リンクコンテンツ　==================== */
.contents_link {
	display: flex;
	justify-content: flex-start;
	gap:15px;
	margin: auto;
}
.effect-chico{
	display: block;
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 5;
	background: #000;
	overflow: hidden;
}
.effect-chico img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.35s, transform 0.35s;
	transform: scale(1.12);
	opacity: 0.8;
}

.effect-chico:hover img {
	opacity: 0.5;
	transform: scale(1);
}

.effect-chico .inner {
	width: 100%;
	padding: 3em;
	position: absolute;
	top:0;
	left: 0;
	bottom: 0;
	right: 0;
}

.effect-chico h3 {
	font-family: "Cinzel", serif;
	font-weight: 500;
	position: absolute;
	right: 35px;
	bottom: 35px;
	font-size: clamp(2rem, 1.55rem + 1.6vw, 3rem);
	writing-mode: vertical-rl;
	letter-spacing: 0.12em;
	text-align: right;
	color: #fff;
	text-shadow: 2px 2px 5px rgba(0,0,0,0.2);
	line-height: 110%;
}
.effect-chico h3 span{
	font-size: 1rem;
	font-family: "Noto Sans JP", sans-serif;
}

.effect-chico p {
	position: absolute;
	bottom: 35px;
	left: 40px;
	font-size: 0.9em;
	margin: 0 auto;
	text-align: right;
	-webkit-transform: scale(1.5);
	transform: scale(1.5);
}

.effect-chico:hover .inner::before,
.effect-chico:hover p {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}
.effect-chico a{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.effect-chico .btn{
	position: absolute;
	bottom: 15px;
	left: 15px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: solid 1px #fff;
}
.effect-chico .btn::after{
	position: absolute;
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	content: "\f061";
	bottom: 17px;
	left: 17px;
}
@media (max-width: 960px){
	.contents_link {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		max-width: 700px;
	}
	.effect-chico{
		display: block;
		position: relative;
		width: 100%;
		height: 220px;
		background: #000;
		overflow: hidden;
	}
	.effect-chico img{
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.effect-chico h3 {
		writing-mode:horizontal-tb;
		top:35px;
	}
}

/* Map ============================================================ */
.map iframe{
	width: 100%;
	vertical-align: middle;
}

/* sticky ============================================================ */
/* 箱 */
.list_wrap{
	display: flex;
	justify-content: center;
	align-content: center;
	padding: 20px 0;
	position: relative;
}
.list_main{
	padding: 10px;
	flex: 1;
}
.list_main .scroll-point{
	width: 100%;
	margin: auto;
	margin-bottom: 50px;
}
.list_side .scrollwrap{
	position: sticky;
	top: 140px;
	width: 100%;
	max-width: 200px;
	height: auto;
	z-index: 10;
	
}
.list_side .scrollwrap::-webkit-scrollbar{
	background: #ccc;
	width: 2px;
	height: 2px;
}
.scrollwrap.wide{
	display: block;
}
.scrollwrap.mb{
	display: none;
}
@media (max-width: 960px){
	.list_wrap{
		flex-direction: column;
		
	}
	.scrollwrap.wide{
		display: none;
	}
	.scrollwrap.mb{
		display: block;
		position: sticky;
		top: 90px;
		width: 100%;
		z-index: 10;
		background: #000;
	}
}
@media (max-width: 960px){
	.list_wrap{
		padding: 0;
	}
	.list_main{
		padding: 0;
	}
}

/* 中身　サイドメニュー */
.scrollwrap h3{
	color: #438540;
	font-family: "Noto Serif JP", serif;
	font-weight: 500;
	font-size: 1.2rem;
}
.scrollwrap ul li{
	margin-bottom: 1em;
	border-bottom: dashed 1px #5cb758;
}
.scrollwrap ul{
	margin-inline: 10px;
}
.scrollwrap ul li a{
	color: #fff;
	font-size: 0.9rem;
}
.scrollwrap ul li a i{
	color: #5cb758;
}

@media (max-width: 1200px){
	.scrollwrap ul li a{
		font-size: 0.8rem;
	}
}
@media (max-width: 960px){
	.scrollwrap.mb ul{
		display: flex;
		justify-content: flex-start;
		gap:15px;
	}
	.scrollwrap ul{
		margin-inline: 0;
	}
}
/* 中身　メインメニュー */
.scroll-point{
	
}


/* QA ============================================================ */
.qa-list dl {
    position: relative;
    margin: 0;
    padding: 28px 80px 28px 30px;
    cursor: pointer;
    border-bottom: 1px solid #666;
	transition: .5s;
}
.qa-list dl:first-child {
    border-top: 1px solid #666;
}
.qa-list dl::before {
    position: absolute;
    top: 35px;
    right: 35px;
    display: block;
    width: 7px;
    height: 7px;
    margin: auto;
    content: '';
    transform: rotate(135deg);
    border-top: 2px solid #5cb758;
    border-right: 2px solid #5cb758;
	transition: .5s;
}
.qa-list .open::before {
    transform: rotate(-45deg);
}
.qa-list dl dt {
    position: relative;
    margin: 0;
    padding: 0 0 0 50px;
    font-weight: 500;
    font-size: clamp(1rem, 0.91rem + 0.32vw, 1.2rem);
}
.qa-list dl dt::before {
    font-size: 30px;
    line-height: 1;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: 'Q.';
    color:#5cb758;
	font-family: "Cinzel", serif;
	font-weight: 500;
}
.qa-list dl dd::before {
    font-size: 30px;
    line-height: 1;
    position: absolute;
    top: 3px;
    left: 2px;
    display: block;
    content: 'A.';
    color: #e65912;
	font-family: "Cinzel", serif;
	font-weight: 500;
}
.qa-list dl dd {
    position: relative;
    display: none;
    height: auto;
    margin: 20px 0 0;
    padding: 0 0 0 50px;
	font-size: clamp(0.8rem, 0.71rem + 0.32vw, 1rem);
}
.qa-list dl dd p {
    margin: 30px 0 0;
}
.qa-list dl dd p:first-child{
    margin-top: 0;
}
.qa_link{
	display: flex;
	justify-content: flex-start;
	gap:15px;
	width: 100%;
	max-width: 500px;
	margin-top: 0.5rem;
	
}
.qa_link li{
	width: 100%;
}
.qa_link li a{
	display: block;
	width: 100%;
	color: #fff;
	background: linear-gradient(to right, #665a02,#b19c03,#e5dead);
	background-size: 200%;
	background-position: left;
	font-size: 0.9rem;
	padding: 0.25rem 1rem;
	text-align: center;
	transition: .5s;
}
.qa_link li a:hover{
	background-position: right;
}
@media (max-width: 960px){
	.qa_link li a{
		font-size: 0.8rem;
	}
}
@media (max-width: 750px){
	.qa-list dl{
		 padding: 28px 30px 28px 15px;
	}
	.qa-list dl::before{
		right: 15px;
	}
	.qa-list dl dt{
		padding: 0 0 0 40px;
	}
	.qa_link{
		flex-direction: column;
	}
}
/* gallery ================================================== */
.gallery_list {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
}
.gallery_list li{
	width: calc(100% / 4 - 10px);
    margin: 0 5px 15px;
    overflow: hidden;
    padding: 10px;
    font-size: 0;
	align-self: stretch;
	box-shadow: 2px 2px 15px rgba(0,0,0,0.1);
	background: #1a1a1a;
}
.gallery_list a.photo{
	display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    overflow: hidden;
	background: #333;
}
.gallery_list a.photo img{
	width: 100%;
    height: 100%;
    object-fit: contain;
	transform: scale(1);
	transition: .5s;
}
.gallery_list a.photo img:hover{
	opacity: 0.6;
	transform: scale(1.1);
}
.gallery_list p{
	font-size: 0.9rem;
	padding: 0.5em;
    font-weight: 400;
}
@media (max-width: 960px){
	.gallery_list li{
		width: calc(100% / 2 - 10px);
	}
}
@media (max-width: 568px){
	.gallery_list li{
		width: calc(100% - 10px);
	}
}
/* Contact ================================================== */
/* TEL FAX */
.phone_flex{
	display: flex;
	justify-content: center;
	max-width: 1200px;
	margin: auto;
}
.phone_flex .phone{
	text-align: center;
	color: #fff;
	display: block;
	width: calc(100% - 30px);
	margin: 15px;
	padding: 1.5rem;
	border: solid 1px #666;
	background: #333;
	opacity: 1;
	transition: .5s;
}
.phone_flex .phone:hover{
	opacity: 0.5;
}
.phone_flex .phone .nb{
	font-weight: 600;
	font-size: clamp(1.5rem, 1.2rem + 1.0667vw, 2rem);
	line-height: 50px;
	vertical-align: middle;
	display: block;
	color: #5cb758;
}
.phone_flex .phone .nb i{
	display: inline-block;
	text-align: center;
	color:  #fff;
	background:linear-gradient(to right bottom, #99FF94, #5cb758, #438540); ;
	vertical-align: bottom;
	line-height: 50px;
	width: 50px;
	font-size: 1rem;
	border-radius: 50%;
	margin-right: 1rem;
	transition: .5s;
}
.phone_flex .phone .txt01{
	font-size: 1.1rem;
	font-weight: 400;
	text-align: center;
	display: block;
	padding: 10px;
	margin-bottom: 1rem;
}
.phone_flex .phone .txt02{
	font-size: 1rem;
	text-align: center;
	display: block;
	margin-top: 1em;
	font-weight: 400;
	
}
.phone_flex .phone .txt03{
	font-size: 0.75rem;
	text-align: left;
	display: block;
	margin-top: 1em;
}
.phone_flex .illust img{
	width: 150px;
	display: block;
	margin: 15px 0 0 auto;
}
.phone_flex .phone ul{
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
.phone_flex .phone ul li{
	font-size: 0.9em;
	font-weight: 600;
	padding: 1em 0.5em 0;
}
.phone_flex .phone ul li i{
	padding-right: 0.5em;
	color:#5cb758;
}

.phone_flex .phone dl{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
.phone_flex .phone dl dt{
	width: 5em;
	text-align: left;
	font-size: 0.9rem;
}
.phone_flex .phone dl dd{
	flex: 1;
	font-size: 0.9rem;
	text-align: left;
	text-indent: -1rem;
	margin-left: 1rem;
}
.phone_flex .phone dl dd::before{
	content: '｜'
}

@media (max-width: 960px){
	.phone_flex{
		flex-direction: column;
	}
	.phone_flex .phone .inner{
		padding: 1rem 1rem 2rem;
	}
	.phone_flex .phone .nb{
		text-align: center;
	}
	.phone_flex .phone ul{
		justify-content: center;
	}
}
@media (max-width: 450px){
	.phone_flex .phone ul{
		flex-direction: column;
		align-items: flex-start;
	}
	.phone_flex .phone ul li{
		border-bottom: dashed 1px #666;
	}
}
#mailform{
	width: 100%;
	padding: 20px;
}
#mailform table{
	width: 100%;
	font-size: 1rem;
	border-collapse: collapse;
	border-spacing: 0;
}
#mailform table tr{
	border-bottom: solid 1px #666;
}
#mailform table tr:last-child{
	border-bottom:none;
}
#mailform table th{
	width: 230px;
	text-align: left;
	padding:1em 0.5em;
	vertical-align: middle;
	line-height: 120%;
	font-weight: 400;
}
#mailform table td{
	padding: 1em;
}
.flex_btn{
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	width: 100%;
}
#mailform .radio{
	padding: 0 2rem 0 0;
}
#mailform .checkbox{
	padding: 0 2rem 0 0;
}
#mailform .form_input,#mailform textarea{
	color: #fff;
	background:#000;
	width: 100% !important;
	padding: 1em;
	border: solid 1px #666;
}
#mailform span.form_required{
	font-size: 60%;
	font-weight: normal;
	color: #fff;
	background:#5cb758;
	padding: 3px 8px;
	margin-left: 0.5rem;
	border-radius: 5px;
}
input[type='submit']{
	display: block;
	width: 100%;
	max-width: 300px;
	margin-inline: auto;
	background: linear-gradient(to right, #665a02,#b19c03,#e5dead);
	background-size: 150%;
	background-position: left;
	outline: none;
	position: relative;
	padding: 15px;
	overflow: hidden;
	color: #fff;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	box-shadow: 5px 5px #665a02;
	transition: .5s;
}
input[type='submit']:hover{
	background-position: right;
}
.infobox{
	margin-bottom: 30px;
}
.infobox h4{
	text-align: center;
	color: #fff !important;
	font-size: 1em !important;
	padding-bottom: 1em;
}
.infobox h5{
	font-weight: 600;
	color: #fff;
	margin-top: 1em;
}
.infobox h5 i{
	color: #5cb758;
}
.infobox p{
	font-size: 0.8em !important;
	color: #fff;
	padding: 0.5em 0;
}
.postcord{
	width:150px !important;
	margin-bottom: 5px;
	padding: 1em;
	background:#000;
	border:solid 1px #666;
	color:#fff;
}
.postcord_btn{
	font-size: 0.7em;
	font-weight: 600;
	border-radius: 30px;
	background:#5cb758;
	padding: 0.5em 1em;
	margin: 0.5rem;
	color: #fff;
}
summary{
	cursor: pointer;
	display: block;
	list-style: none;
}
summary::-webkit-details-marker {
	color: transparent;
	display: none;
}
details::before{
	display: none;
}
details[open]{
	animation: fadeIn 1s ease;
}
@keyframes fadeIn {
  0% {
    opacity: 0; /* 透明 */
    transform: translateY(-10px); /* 上から表示 */
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
details summary h4::before{
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	content: '\f067';
	padding-right: 15px;
}
details[open] summary h4::before{
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	content: '\f068';
	padding-right: 15px;
}
.visually-hidden { /* 元のボタンを非表示にする*/
	position: absolute;
	white-space: nowrap;
	width: 1px;
	height: 1px;
	overflow: hidden;
	border: 0;
	padding: 0;
	clip: rect(0 0 0 0);
	clip-path: inset(50%); 
	margin: -1px;
}
label.radio-label {
	cursor: pointer;
	padding-left: 30px;
	position: relative;
}

label.radio-label::before,
label.radio-label::after {
	content: "";
	display: block;
	border-radius: 50%;
	position: absolute;
	transform: translateY(-50%);
	top: 50%;
}

label.radio-label::before {
	background-color: #fff;
	border: 1px solid #ccc;
	height: 20px;
	width: 20px;
	left: 5px;
}

label.radio-label::after {
	background-color: #666;
	opacity: 0;
	height: 14px;
	width: 14px;
	left: 8px;
	transition: ease .2s;
}

input:checked + label.radio-label::after {
	opacity: 1;
}


label.check-label {
	position: relative;
	padding-left: 30px;
	cursor: pointer;
}

label.check-label:before {
	content: "";
	display: block;
	position: absolute;
	left: 5px;
	width: 20px;
	height: 20px;
	top: 3px;
	border: solid 1px #666;
	background: #000;
	border-radius: 3px;
	transition: all ease-in-out.5s;
}

label.check-label:after {
	content: "";
	position: absolute;
	top: 12px;
	left: 11px;
	transform: rotate(-45deg) scaleX(0);
	transform-origin: left;
	width: 12px;
	height: 6px;
	border-left: 3px solid #fff;
	border-bottom: 3px solid #fff;
	transition: transform 0.125s ease-in-out;
}

input:checked + label.check-label:before {
	background-color: #5cb758;
	border-color: #5cb758;
}

input:checked + label.check-label:after {
	transform: rotate(-45deg) scaleX(1);
}
@media (max-width: 960px){
	#mailform{
		padding: 10px 0;
	}
	#mailform table th,
	#mailform table td{
		display: block;
		width: 100%;
		padding: 0.5rem 0;
	}
	#mailform table td{
		padding-bottom: 1rem;
	}
	
	input[type='text'] ,input[type='date'] , textarea{
		width: 100% ;
	}
	#mailform .radio,#mailform .checkbox{
	padding: 0 2rem 0.5rem 0;
	}
}

