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


/* ボタン　================================================== */
.btn_wrap{
	display: block;
	width: 270px;
	margin: 30px auto;
}

.btn01{
	display: inline-block;
	text-align: center;
	width: 100%;
	background: rgba(255,255,255,1);
	color: #333;
	border: solid 3px #f29d49;
	padding: 1em;
	position: relative;
	border-radius: 30px;
	box-shadow: 5px 5px rgba(0,0,0,0.1);
	font-family: "Kosugi Maru", sans-serif;
	font-size: 1em;
	transition: .5s;
}
.btn01::after{
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	content: "\f105";
	position: absolute;
	color: #f29d49;
	top: 50%;
	transform: translateY(-50%);
	right: 15px;
	transition: .5s;
}
.btn01:hover{
	box-shadow: 1px 1px rgba(0,0,0,0.1);
	transition: .5s;
}
.btn01:hover::after{
	right: 10px;
}
.bg_img01 .btn01{
	background: rgba(0,0,0,0);
	color: #fff;
	border: solid 1px #fff;
}

.txt_link{
	display: block;
	color: #333;
	border-bottom: dashed 1px #f29d49;
	margin: 0.5rem;
	opacity: 1;
	transition: .5s;
}
.txt_link i{
	color: #f29d49;
}
.txt_link:hover{
	opacity: .5;
}
/* Table ============================================================ */
.line02 table {
    border-spacing:0;
    margin: 0 auto;
    padding: 0;
    width:100%;
}
.line02 table th{
	border-bottom: solid 3px #8cc63f;
	padding: 1em;
	width: 25%;
	min-width: 9em;
	font-weight: 600;
}
.line02 table td{
	border-bottom: solid 3px #ccc;
	padding: 1em;
}
.line02 dl{
	margin-bottom: 0.5em;
	font-size: 0.9rem;
	display: flex;
}
.line02 dl dt{
	width: 11em;
}
.line02 dl dd{
	
}

.line02 ul li{
	padding-left: 1em;
	text-indent: -1em;
	margin-bottom: 0.5em;
}
@media (max-width: 768px){
	.line02 table th{
		display: block;
		width: 100%;
		border-bottom: none;
		text-align: left;
		padding-bottom: 0;
	}
	.line02 table td{
		display: block;
		width: 100%;
		border-bottom: solid 3px #8cc63f;
	}
	.line02 dl{
		flex-direction: column;
		align-self: flex-start;
		justify-content: flex-start;
	}
}
/* リスト ============================== */
ul.border01{
	padding-left: 1em;
	font-size: 1em;
}
ul.border01 li{
	border-bottom: dotted 8px rgba(140,198,63,0.5);
	margin-bottom: 1rem;
	padding-left: 1rem;
	text-indent: -1rem;
}
ul.border01 li i{
	color: #8cc63f;
}
.dl_border01{
	padding: 1rem;
}
.dl_border01 dl{
	display: flex;
	align-items: flex-start;
	border-bottom: solid 1px #8a9898;
}
.dl_border01 dl dt{
	width: 20%;
	padding: 1em 0 1em 1em;
	font-weight: 700;
}
.dl_border01 dl dt i{
	color: #8a9898;
}
.dl_border01 dl dd{
	padding: 1em;
}
@media (max-width: 960px){
	.dl_border01 dl{
		display: block;
		width: 100%;
	}
	.dl_border01 dl dt{
		width: 100%;
		padding: 1em 1em 0.5em;
	}
	.dl_border01 dl dd{
		width: 100%;
		padding:0.5em 1em 1em;
	}
}

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

/* 写真スライダー ============================================================ */
.photo_flame{
	overflow: hidden;
	position: relative;
	width: 100%;
	margin: 15px 0;
	
}
.photo_flame .slider_s{
	width: 100%;
}
.photo_flame .sslider_s li {
	border-radius: 30px;
	overflow: hidden;
	aspect-ratio: 3 / 2;
}
.photo_flame .slider_s li img {
	display: block;
	border-radius: 30px;
	width: 100%;
	object-fit: cover;
}


@keyframes fadezoom{
	0%{
		transform: scale(1.1);
	}
	100%{
		transform: scale(1);
	}
}
.add-animation{
	animation: fadezoom 5s 0s forwards;
}

.icon_flex{
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: flex-start;
}
.icon_flex li{
	width: calc(100% / 4);
	text-align: center;
	padding: 15px;
	font-family: "Kosugi Maru", sans-serif;
	font-size: 1rem;
}
.icon_flex li img{
	display: block;
	width: 150px;
	padding: 10px;
	margin: auto;
}
@media (max-width: 960px){
	.icon_flex li{
		width: calc(100% / 3);
	}
}
@media (max-width: 750px){
	.icon_flex li{
		width: calc(100% / 2);
	}
}
@media (max-width: 450px){
	.icon_flex li{
		width: 100%;
	}
}

/* QA ============================================================ */
.qa-list dl {
    position: relative;
    margin: 0;
    padding: 28px 80px 28px 30px;
    cursor: pointer;
    border-bottom: 1px solid #ccc;
}
.qa-list dl:first-child {
    border-top: 1px solid #ccc;
}
.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 #8a9898;
    border-right: 2px solid #8a9898;
}
.qa-list .open::before {
    transform: rotate(-45deg);
}
.qa-list dl dt {
    position: relative;
    margin: 0;
    padding: 0 0 0 50px;
    font-weight: bold;
    font-size: 1.2rem;
}
.qa-list dl dt::before {
    font-size: 30px;
    line-height: 1;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: 'Q.';
    color:#8a9898;
}
.qa-list dl dd::before {
    font-size: 30px;
    line-height: 1;
    position: absolute;
    top: 3px;
    left: 2px;
    display: block;
    content: 'A.';
    color: #e65912;
}
.qa-list dl dd {
    position: relative;
    display: none;
    height: auto;
    margin: 20px 0 0;
    padding: 0 0 0 50px;
}
.qa-list dl dd p {
    margin: 30px 0 0;
}
.qa-list dl dd p:first-child{
    margin-top: 0;
}
@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;
	}
}
/* ながれ ================================================== */
.number_list{
	padding: 2rem;
}
.number_list li{
	padding: 1rem 0;
	border-bottom: solid 2px #f29d49;
	position: relative;
	margin-bottom: 50px;
}

.number_list li .li_numbar{
	font-size: 2rem;
	font-family: "Fredoka", sans-serif;
	color:#ff9e42;
}
.number_list li .small{
	font-size: 50%;
}
.number_list li .li_txt{
	font-size: 1.2rem;
	font-family: "Kosugi Maru", sans-serif;
	margin-left: 0.5rem
}
.number_list li p{
	margin-top: 1em;
	margin-left: 4.5em;
}
.number_list li::after{
	position: absolute;
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: 1.5rem;
	content: '\f0ab';
	bottom: -50px;
	left: 0;
	width: 100%;
	text-align: center;
	height: 30px;
	color: #f29d49;
}
.number_list li:last-child{
	margin-bottom: 0;
}
.number_list li:last-child::after{
	content: none;
}

@media (max-width: 960px){
	.number_list li .inner_flex{
		display: flex;
		justify-content: flex-start;
		align-items: center;
	}
	.number_list li .li_numbar{
		width: 120px;
		vertical-align: bottom;
	}
	.number_list li .li_txt{
		flex: 1;
	}
	.number_list li p{
		margin-top: 1em;
		margin-left: 0;
	}
}
@media (max-width: 450px){
	.number_list{
		padding: 1rem 0;
	}
}

/* メールフォーム ================================================== */

/* TEL FAX */
.phone_flex{
	display: flex;
	justify-content: center;
	flex-direction: column;
	max-width: 900px;
	margin: auto;

}
.phone_flex .phone{
	position: relative;
	width: 100%;

}
.phone_flex .phone .inner{
	position: relative;
	color: #1a1a1a;
	display: block;
	padding: 1rem 1.5rem 2rem;
	z-index: 2;
	transition: .5s;
	background: url("../img/border01.png") repeat-x;
	background-position: bottom;
	background-size: auto 10px;
}


.phone_flex .phone .nb{
	font-weight: 700;
	font-size: clamp(1.5rem, 1.2rem + 1.0667vw, 2rem);
	line-height: 50px;
	vertical-align: middle;
	display: block;
	color: #8cc63f;
	white-space: nowrap;
	transition: .5s;
}
.phone_flex .phone .nb i{
	display: inline-block;
	text-align: center;
	color: #fff;
	background:#8cc63f;
	vertical-align: bottom;
	line-height: 50px;
	width: 50px;
	font-size: 1rem;
	border-radius: 50%;
	margin-right: 1rem;
	transition: .5s;
}
.phone_flex .phone .nb:hover{
	color:#f29d49;
}
.phone_flex .phone .nb:hover i{
	background:#f29d49;
}
.phone_flex .phone .txt01{
	font-size: 1.1rem;
	font-weight: 400;
	text-align: center;
	display: block;
	padding: 10px;
}
.phone_flex .phone .txt02{
	background: rgba(250,227,96,0.6);
	padding: 0.5rem;
	font-size: 1rem;
	font-family: "Kosugi Maru", sans-serif;
	font-weight: 400;
	
}
.phone_flex .phone .txt03{
	font-size: 0.75rem;
	text-align: left;
	display: block;
	margin-top: 1em;
}
.phone_flex .phone ul{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap:15px;
	margin-top: 15px;
}
.phone_flex .phone ul li{
	font-size: 0.9em;
}
.phone_flex .phone ul li i{
	padding-right: 0.5em;
	color: #f29d49;
}
.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: '｜'
}
.dl_wrap{
	margin: 15px;
}
@media (max-width: 960px){
	.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 #ccc;
	}
}

#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 #ccc;
}
#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{
	background:#fff;
	border:solid 1px #eee;
	width: 100% !important;
	padding: 1em;
}
#mailform span.form_required{
	font-size: 60%;
	font-weight: normal;
	color: #fff;
	background:#8cc63f;
	padding: 3px 8px;
	margin-left: 0.5rem;
	border-radius: 5px;
}
input[type='submit']{
	display: block;
	width: 100%;
	max-width: 300px;
	padding: 1em;
	font-weight: 600;
	background: #fff;
	color:#1a1a1a;
	border: solid 3px #8cc63f;
	border-radius: 50px;
	margin: 0 auto;
	transition: .5s;
}
input[type='submit']:hover{
	background: #8cc63f;
	color: #fff;
}
.infobox{
	margin-bottom: 30px;
}
.infobox h4{
	text-align: center;
	color: #1f1f1f !important;
	font-size: 1em !important;
	padding-bottom: 1em;
}
.infobox h5{
	color: #1f1f1f;
	margin-top: 1em;
	font-weight: 600;
}
.infobox h5 i{
	color: #8cc63f;
}
.infobox p{
	font-size: 0.8em !important;
	color: #1f1f1f;
	padding: 0.5em 0;
}
.postcord{
	width:150px !important;
	margin-bottom: 5px;
	padding: 1em;
	background:#fff;
	border:solid 1px #eee;
	border-radius: 5px;
}
.postcord_btn{
	font-size: 0.7em;
	font-weight: 600;
	border-radius: 30px;
	background:#8cc63f;
	padding: 0.25em 1em;
	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 #ccc;
	background: #fff;
	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: #8cc63f;
	border-color: #8cc63f;
}

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;
	}
}

