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


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

.btn01{
	display: inline-block;
	text-align: center;
	width: 100%;
	background: #f6ad49;
	color: #fff;
	padding: 0.8em;
	position: relative;
	border-radius: 30px;
	box-shadow: 5px 5px rgba(0,0,0,0.1);
	font-size: 1em;
	font-weight: 600;
	transition: .5s;
}
.btn01::after{
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	content: "\f105";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 15px;
	transition: .5s;
}
.btn01:hover{
	background: #f57149;
	box-shadow: 1px 1px rgba(0,0,0,0.1);
	transition: .5s;
}
.btn01:hover::after{
	right: 10px;
}
.btn01.green{
	background: #b8e68a;
}
.btn01.green:hover{
	background: #68b95c;
}

/* table ============================================================ */
.line02 table {
    border-spacing:0;
    margin: 0 auto;
    padding: 0;
    width:100%;
}
.line02 table th{
	text-align: left;
	border-bottom: solid 3px #f6ad49;
	padding: 1em;
	width: 25%;
	min-width: 9em;
}
.line02 table td{
	text-align: left;
	border-bottom: solid 3px #fff;
	padding: 1em;
}
.bg_w .line02 table td{
	border-bottom-color: #f9eacd;
}
.line02 table th i{
	color: #f6ad49;
	display: inline;
	font-size: 0.6rem;
	vertical-align: middle;
}
.line02 dl{
	margin-bottom: 0.5em;
	font-size: 0.9rem;
	display: flex;
}
.line02 dl dt{
	width: 9em;
}
.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 #f6ad49;
	}
	.line02 dl dt{
		width: 7em;
		margin-right: 1rem;
	}
}
.simple01 table {
	border-collapse: collapse;
    border-spacing: 5px;
    margin: 0 auto;
    padding: 0;
    width:100%;
	
}
.simple01 table tr{
	border-bottom: dashed 1px #683f26;
}
.simple01 table th,.simple01 table td{
	padding: 1.5em 1em;
	text-align: left;
	vertical-align: top;
}
.simple01 table th{
	font-weight: 700;
	width: 25%;
	min-width: 6em;
}
.simple01 table th i{
	color: #f6ad49;
	display: inline;
	font-size: 0.6rem;
	vertical-align: middle;
}
@media (max-width: 960px){
	.simple01 table th,.simple01 table td{
		display: block;
		width: 100%;
	}
	.simple01 table th{
		padding-bottom: 0;
	}
}
.staff dl{
	margin-bottom: 0.5em;
	font-size: 0.9rem;
	display: flex;
	border-bottom: dashed 1px #f6ad49;
}
.staff dl dt{
	width: 9em;
	color: #f57149;
}
.staff dl dd{
	font-size: 0.9rem;
}
.staff dl.message{
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}
.staff dl.message dt{
	width: 100%;
}

.list02{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	gap:15px;
}
.list02 li{
	background: #f2dd70;
	border-radius: 10px;
	padding: 10px 15px;
}

/* Map ============================================================ */
.map iframe{
	width: 100%;
	vertical-align: middle;
}
/* icon ============================================================ */
.icon_flex{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
}
.icon_flex .inner{
	width: calc(100% / 4 - 16px);
	margin: 8px;
	padding: 8px;
}
.icon_flex .inner .icon{
	width: 200px;
	margin: auto;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	overflow: hidden;
	background: rgba(242,221,112,0.5);
}
.icon_flex .inner .icon img{
	width: 100%;
	padding: 20%;
}
.icon_flex .inner .txt{
	margin-top: 15px;
}
.icon_flex .inner .txt h4{
	text-align: center;
	background: #b8e68a;
}
.icon_flex .inner .txt p{
	font-size: 0.85rem;
}
@media (max-width: 960px){
	.icon_flex .inner{
		width: calc(100% / 2 - 20px);
	}
}
@media (max-width: 750px){
	.icon_flex .inner{
		width: calc(100% - 20px);
	}
}
.link_wrap {
	position: relative;
	cursor: pointer;
}
.link_wrap a{
	display: block;
	width: 100%;
	max-width: 800px;
	margin: auto;
	position: relative;
	aspect-ratio: 3 / 1;
	background: #fff;
	border-radius: 30px;
	overflow: hidden;
}
.link_wrap::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to left, rgba(255,255,255,1) 30% ,rgba(255,255,255,0)) 35% 100%;
	border-radius: 30px;
	z-index: 3;
	pointer-events: none;
}
.link_wrap img{
	width: auto;
	height: 130%;
	vertical-align: middle;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	transform: scale(1.0);
	transition: .5s;
}
.link_wrap h3{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 10%;
	font-size: clamp(1.5rem, 1.2rem + 1.0667vw, 2rem);
	color: #f6ad49;
	z-index: 4;
	background: url("../img/border_o.png") repeat-x;
	background-position: bottom;
	background-size: auto 10px;
}
.link_wrap h3 i{
	color: #f57149;
}
.link_wrap:hover img{
	transform: scale(1.1);
}
@media (max-width: 750px){
	.link_wrap a{
		aspect-ratio: 2 / 1;
	}
	.link_wrap::after{
		background: linear-gradient(to top, rgba(255,255,255,1)  ,rgba(255,255,255,0)) 20% 100%;
	}
	.link_wrap h3{
		top: 70%;
		right: auto;
		left: 50%;
		transform: translateX(-50%);
		width:9em;
		white-space: nowrap;
		text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
	}
	.link_wrap img{
		height: auto;
		width: 100%;
		top: -10%;
	}
}

/* メールフォーム============================================================ */
.contents_mail{
	max-width: 960px;
	padding: 10px 10px 30px;
	margin: auto;
}
/* TEL FAX */
.phone_flex{
	display: flex;
	justify-content: center;
	max-width: 900px;
	margin: auto;
}
.phone_flex .phone{
	text-align: center;
	color: #683f26;
	display: block;
	width: calc(100% - 30px);
	margin: 15px;
	padding: 1.5rem;
	background: #fff;
	border-radius: 30px;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.05);
	opacity: 1;
	transition: .5s;
}
.phone_flex .phone:hover{
	opacity: 0.5;
}
.phone_flex .phone .nb{
	font-weight: 400;
	font-family: "Darumadrop One", sans-serif;
	font-size: clamp(1.5rem, 1.2rem + 1.0667vw, 2rem);
	line-height: 50px;
	vertical-align: middle;
	display: block;
	color: #f57149;
}
.phone_flex .phone .nb i{
	display: inline-block;
	text-align: center;
	color:  #fff;
	background:#f57149 ;
	vertical-align: bottom;
	line-height: 50px;
	width: 50px;
	font-size: 1rem;
	border-radius: 50%;
	margin-right: 1rem;
	transition: .5s;
}
.phone_flex .phone .txt01{
	color: #683f26;
	font-size: 1.1rem;
	font-weight: 700;
	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: 15px;
	margin-left: 1em;
	line-height: 1.5;
	text-indent: -1em;
}
.phone_flex .phone ul{
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
.phone_flex .phone ul li{
	font-size: 0.9em;
	padding: 1em 0.5em 0;
}
.phone_flex .phone ul li i{
	padding-right: 0.5em;
	color: #f6ad49;
}
.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{
	margin-left: 0.5em;
}
.phone_flex .phone dl dd::before{
	content: '｜'
}


@media (max-width: 960px){
	.phone_flex{
		flex-direction: column;
		justify-content: center;
		align-items: center;
		max-width: 500px;
	}
	.phone_flex .phone{
		padding: 1rem;
	}
}
@media (max-width: 450px){
	.phone_flex .phone ul{
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		width: fit-content;
		margin: auto;
	}
}

@media (max-width: 450px){
	.phone_flex .phone{
		width: calc(100%);
		margin: 15px 0;
	}
}
#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%;
}
#mailform table td{
	padding: 1em;
}
.flex_btn{
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	width: 100%;
}
#mailform .radio{
	padding: 0 1rem;
}
#mailform .checkbox{
	padding: 0 1rem;
}
#mailform .form_input,#mailform textarea{
	background:#fff;
	width: 100% !important;
	padding: 15px 10px;
	border-radius: 5px;
	border: none;
}
#mailform span.form_required{
	font-size: 60%;
	font-weight: normal;
	color: #fff;
	background:#f57149;
	padding: 3px 8px;
	margin-left: 0.5rem;
	border-radius: 5px;
}
input[type='submit']{
	display: block;
	width: 100%;
	max-width: 300px;
	padding: 1em;
	font-weight: 700;
	background: #f57149;
	color:#fff;
	border-radius: 50px;
	margin: 0 auto;
	transition: .5s;
}
input[type='submit']:hover{
	background: #f6ad49;
	color: #fff;
}
::placeholder{
	color: #b39c8f;
}
.infobox{
	margin-bottom: 30px;
}
.infobox h4{
	text-align: center;
	color: #683f26 !important;
	font-size: 1em !important;
	padding-bottom: 1em;
}
.infobox h5{
	color: #683f26;
	margin-top: 1em;
	border-bottom: dashed 1px #f6ad49;
}
.infobox h5 i{
	color: #f57149;
}
.infobox p{
	font-size: 0.8em !important;
	color: #683f26;
	padding: 0.5em 0;
}
.postcord{
	width:180px !important;
	margin-bottom: 5px;
	padding: 15px 10px;
	background:#fff;
	border-radius: 5px;
}
.postcord_btn{
	font-size: 0.7em;
	font-weight: 700;
	border-radius: 30px;
	background:#666;
	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: 0;
  border: solid 1px #fff;
	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: #f57149;
  border-color: #f57149;
}

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

.photo_img{
	width: 100%;
	max-width: 1300px;
	position: relative;
	text-align: center;
	padding: 30px;
	margin: auto;
}
.photo_img .main{
	width: 80%;
	max-height: 400px;
	object-fit: contain;
}
.photo_img .left{
	position: absolute;
	left: 3%;
	top: 50%;
	width: 15%;
	max-width: 180px;
}
.photo_img .right{
	position: absolute;
	right: 3%;
	top: 40%;
	width: 15%;
	max-width: 180px;
}

