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


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

.learn-more {
	position: relative;
	display: block;
	cursor: pointer;
	outline: none;
	vertical-align: middle;
	text-decoration: none;
	background: #fff;
	border: solid 3px #ccc;
	border-radius: 100px;
	padding: 0;
	font-size: inherit;
	font-family: inherit;
	width: 14rem;
	height: auto;
}
.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background:#1a1a1a;
  border-radius: 1.625rem;
}
.learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}
.learn-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}
.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.25rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}
.learn-more .button-text {
	transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
	position: absolute;
	top: 0;
	left: 40px;
	right: 0;
	bottom: 0;
	padding: 0.75rem 0;
	margin: 0 0 0 1.5rem;
	color: #1a1a1a;
	font-weight: 600;
	line-height: 1.6;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
.learn-more:hover .circle {
  width: 100%;
}
.learn-more:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(1rem, 0);
}
.learn-more:hover .button-text {
  color: #fff;
}

/* table ================================================== */
.line02 table {
    border-spacing:0;
    margin: 0 auto;
    padding: 0;
    width:100%;
}
.line02 table th{
	font-weight: 600;
	border-bottom: solid 3px #666;
	padding: 1em;
	width: 25%;
	min-width: 9em;
}
.line02 table td{
	font-weight: 400;
	border-bottom: solid 3px #ccc;
	padding: 1em;
}
.line02 table td i{
	color: #666;
	padding-left: 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 #666;
	}
	.line02 dl{
		flex-direction: column;
		align-self: flex-start;
		justify-content: flex-start;
	}
}

.simple01 table {
	border-collapse: collapse;
    border-spacing: 5px;
    margin: 0 auto;
    padding: 0;
    width:100%;
	
}
.simple01 table tr{
	border-bottom: dashed 1px #ccc;
}
.simple01 table th,.simple01 table td{
	padding: 1.5em 1em;
	text-align: left;
	vertical-align: top;
}
.simple01 table th{
	font-weight: 600;
	width: 25%;
	min-width: 6em;
}
.simple01 table td i{
}
@media (max-width: 960px){
	.simple01 table th,.simple01 table td{
		display: block;
		width: 100%;
	}
	.simple01 table th{
		padding-bottom: 0;
	}
}
/* リスト ============================== */
ul.border01{
	padding-left: 1em;
	font-size: 1em;
}
ul.border01>li{
	border-bottom: dotted 1px #1a1a1a;
	margin-bottom: 1rem;
}
ul.border01>li>i{
	color: #0068b7;
}
ul.border02{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;
	padding: 15px;
}
ul.border02>li{
	font-size: 0.9rem;
	border-bottom: dotted 1px #ccc;
}
.dl_border01{
	padding: 1rem;
}
.dl_border01 dl{
	display: flex;
	align-items: flex-start;
	border-bottom: dotted 1px #1a1a1a;
}
.dl_border01 dl dt{
	width: 20%;
	padding: 1em 0 1em 1em;
	font-weight: 700;
}
.dl_border01 dl dt i{
	color: #0068b7;
}
.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;
	}
}


/* カルーセル ============================================================ */
.carousel_wrap{
	width: 100%;
	margin: auto;
}
.carousel {
	width:100%;
	margin: 50px auto;
}
.carousel .inner {
	overflow: hidden;
	margin: 30px 15px;
	aspect-ratio: 4 / 3;
	border-radius: 15px;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
	
}
.carousel .inner:nth-child(odd){
	transform: translateY(-30px);
}
.carousel .inner img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

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


/* 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 #2200b8;
    border-right: 2px solid #2200b8;
}
.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:#2200b8;
}
.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;
	}
}

/* ビフォーアフター ================================================== */
.before_after{
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	width: 100%;
	max-width: 1200px;
	margin-right: auto;
	margin-left: auto
}
.before_after .ba_img{
	width: calc(100% / 2 - 30px);
	aspect-ratio: 3 / 2;
	position: relative;
	background: #fff;
	border-radius: 30px;
	box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
	padding: 30px;
}
.before_after .ba_img:first-child{
	width: calc(45% - 30px);
}
.before_after .ba_img:last-child{
	width: calc(55% - 30px);
}
.before_after .ba_img img{
	width: 100%;
	height: 100%;
	aspect-ratio: 3 / 2;
	border-radius: 20px;
	vertical-align: middle;
	object-fit: cover;
	object-position: center;
}

.before_after .ba_img h3.before{
	position: absolute;
	top: -10px;
	left: -15px;
	font-size: clamp(2rem, 0.92rem + 3.84vw, 4.4rem);
	color: #0068b7;
	filter: drop-shadow(2px 2px 5px rgba(0,0,0,0.1));
	font-family: "Gloria Hallelujah", cursive;
	font-weight: 400;
	font-style: normal;
}
.before_after .ba_img h3.after{
	position: absolute;
	bottom: -10px;
	right: -20px;
	font-size: clamp(2rem, 0.92rem + 3.84vw, 4.4rem);
	color: #0068b7;
	filter: drop-shadow(2px 2px 5px rgba(0,0,0,0.1));
	font-family: "Gloria Hallelujah", cursive;
	font-weight: 400;
	font-style: normal;
}
.ba_arrow{
	padding: 5px;
	align-self: center;
}
.ba_arrow i{
	color: #1a1a1a;
	font-size: 2em;
}
@media (max-width: 960px){
	.before_after{
		flex-direction: column;
		justify-content: center;
		max-width: 600px;
		margin: auto;
	}
	.before_after .ba_img {
		width: calc(100% - 30px);
		margin: auto;
		padding: 20px;
	}
	.before_after .ba_img:first-child{
		width: calc(90% - 30px);
	}
	.before_after .ba_img:last-child{
		width: calc(100% - 30px);
	}
	.before_after .ba_img img{
		border-radius: 10px;
	}
	.ba_arrow{
		transform: rotate(90deg);
		margin: 10px;
	}
}
@media (max-width: 750px){
	.before_after .ba_img{
		width: 100%;
	}
	.before_after .ba_img img{
	}
	.before_after .ba_img h3.before{
		left: 15px;
	}
	.before_after .ba_img h3.after{
		right: 15px;
	}
}

/* メールフォーム==================== */
.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{
	position: relative;
	text-align: center;
	width: calc(100% - 30px);
	margin: 15px;
}
.phone_flex .phone .inner{
	position: relative;
	color: #1a1a1a;
	display: block;
	width: 100%;
	height: 100%;
	padding: 1.5rem;
	background: #fff;
	border-radius: 30px;
	z-index: 2;
	transition: .5s;
}
.phone_flex .phone::after{
	position: absolute;
	content: '';
	display: block;
	top: 15px;
	left: -15px;
	right: 15px;
	bottom: -15px;
	background: #1a1a1a;
	border-radius: 30px;
	z-index: 1;
}

.phone_flex .phone .nb{
	font-family: "Open Sans", sans-serif;
	font-weight: 700;
	font-size: clamp(1.5rem, 1.2rem + 1.0667vw, 2rem);
	line-height: 50px;
	vertical-align: middle;
	display: block;
	color: #1a1a1a;
	transition: .5s;
}
.phone_flex .phone .nb i{
	display: inline-block;
	text-align: center;
	color: #fff;
	background:#1a1a1a ;
	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: #0068b7;
}
.phone_flex .phone .nb:hover i{
	background: #0068b7;
}
.phone_flex .phone .txt01{
	font-size: 1.1rem;
	font-weight: 600;
	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: 500;
	
}
.phone_flex .phone .txt03{
	font-size: 0.75rem;
	text-align: left;
	display: block;
	margin-top: 1em;
}



@media (max-width: 960px){
	.phone_flex{
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: calc(100% - 30px);
		margin: auto;
		max-width: 500px;
	}

}

@media (max-width: 450px){
	.phone_flex{
		width: calc(100% - 20px);
	}
	.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%;
	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.5rem 0;
}
#mailform .form_input,#mailform textarea{
	background:#f5f5f5;
	width: 100% !important;
	padding: 15px 10px;
	border: none;
}
#mailform span.form_required{
	font-size: 60%;
	font-weight: normal;
	color: #fff;
	background:linear-gradient( to bottom, #0068b7 ,#2200b8);
	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;
	border: solid 2px #1a1a1a;
    background: linear-gradient(to right, #1a1a1a 0 50%, #fff 50% 100%);
    background-size: 200%;
    background-position: left;
	color:#fff;
	border-radius: 50px;
	margin: 0 auto;
	transition: .5s;
}
input[type='submit']:hover{
	background-position: right;
    color: #1a1a1a;
}
.infobox{
	margin: 30px 0;
}
.infobox h4{
	text-align: center;
	color: #1f1f1f !important;
	font-size: 1em !important;
	font-weight: 600;
	padding-bottom: 1em;
}
.infobox h5{
	font-weight: 600;
	color: #1f1f1f;
	margin-top: 1em;
	border-bottom: dashed 1px #ccc;
}
.infobox h5 i{
	color: #2200b8;
}
.infobox p{
	font-size: 0.8em !important;
	color: #1f1f1f;
	padding: 0.5em 0;
}
.postcord{
	width:150px !important;
	margin-bottom: 5px;
	padding: 5px 10px;
	background:#f5f5f5;
	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: 3px;
  border: solid 2px #ccc;
  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: #2200b8;
  border-color: #2200b8;
}

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

.shadow_b{
	width: calc(50% - 60px);
	margin: 15px;
	max-width: 600px;
	aspect-ratio: 3 / 2;
	padding: 0;
	background: #000;
	border-radius: 30px;
}
.shadow_b h3{
	line-height: 1;
}
.shadow_b img{
	display: block;
	margin: 0;
	padding: 0;
	position: relative;
	aspect-ratio: 3 / 2;
	object-fit: contain;
	width: 100%;
	height: 100%;
	background: #fff;
	border-radius: 30px;
	transform: translate(30px ,-30px);
	transition: .5s;
}
.shadow_b a img:hover{
	transform: translate(20px ,-20px);
}
@media (max-width: 960px){
	.shadow_b{
		width: calc(100% - 60px);
	}
}
@media (max-width: 750px){
	.shadow_b{
		width: calc(100% - 30px);
		margin: 15px 15px 30px;
	}
	.shadow_b img{
		transform: translate(15px ,-15px);
	}
	.shadow_b a img:hover{
		transform: translate(6px ,-6px);
	}
}


