@CHARSET "UTF-8";
/*
Theme Name: ブランクテーマ
date: 204.04.24
*** basic setting on css/destyle.css ***
*/


/* = common setting
-------------------------------------------------------------- */ 

:root {
  --main: #4b4e2a; 
  --bk: #000;
}

*{
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
html{
	font-size: 62.5%;
}
body {
	margin: 0;
	font-size: 1.4rem;
	font-weight: 400;
	font-family: 'ten-mincho','游明朝','Yu Mincho',YuMincho,serif;
	color: var(--bk);
	line-height: 1.7;
	letter-spacing: 1px;
}


/* =layouts
-------------------------------------------------------------- */

body,
#page{
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
#site_footer{
  margin-top: auto;
}

table{
	width: 100%;
	border-collapse: collapse;
  border-spacing: 0;
}
table th{
	padding: 1rem;
	text-align: left;
  width: 30%;
	font-weight: 400;
}
table td{
	padding: 1rem;
}

.txt_right{
	text-align: right;
}

h1,h2,h3,h4,h5,h6{
	margin: 0;
	font-weight: 400;
}
ul,dl,dt,dd{
	margin: 0;
	padding: 0;
	font-weight: 400;
}
li{
	list-style-type: none;
	margin: 0;
	padding: 0;
}
p{
	margin: 0;
}
.pc_only{
	display: none;
}

.wrapper{
	width: 90%;
	max-width: 1050px;
	margin: 0 auto;
}
.hidden{
	overflow: hidden;
}

/* Clearing floats */
.clear:after{
	clear: both;
}
.clear:before,
.clear:after{
	display: table;
	content: "";
}

.txt_right{
	text-align: right;
}
.txt_vertical{
	writing-mode: vertical-rl;
}
.txt_small{
	font-size: 70%;
}
.txt_large{
	font-size: 150%;
}

.underline{
	background: linear-gradient(to bottom , rgba(255,255,255,0) 50%, #ffff00 51%);
	font-weight: 400;
}



/* =link
-------------------------------------------------------------- */


a{
	outline: none;
	color: var(--bk);
	text-decoration: none;
	transition: .3s;
}
*:focus {
  outline: none;
}

.link_none{
  pointer-events: none !important;
  cursor: default !important;
  opacity: .3;
}

input[type="submit"]{
	outline: 0;
	box-shadow: none;
	cursor: pointer;
}
label{
	cursor: pointer;
}




.sns_links{
	display: flex;
	justify-content: center;
}
.sns_links li{
	margin: 0 .5rem;
}
.btn_sns{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
}
.sns_icon{
	fill: #fff;
	width: 2rem;
	height: 2rem;
	object-fit: contain;
}
.icon_stroke{
	fill: none;
	stroke: #fff;
}
.sns_line{
	background: #06c755;
}
.sns_instagram{
	background: linear-gradient(135deg,#741AFA,#FF30C4,#FF5D21,#FFD735);
}
.sns_youtube{
	background: #ff0000;
}
.sns_facebook{
	background: #1877f2;
}
.sns_x{
	background: #000;
}



/* =media
-------------------------------------------------------------- */

img,
svg{
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
	transition: .3s;
}
iframe{
	max-width: 100%;
}
.img_clip{
	position: relative;
	overflow: hidden;
}
.img_clip::before{
	content: '';
	padding-top: 100%;
	display: block;
	background: #ccc;
}
.img_clip img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 1s;
}

figure{
	margin: 0;
	padding: 0;
}
.wp-block-embed-youtube .wp-block-embed__wrapper,
.youtube_wrap{
  position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}
.wp-block-embed-youtube .wp-block-embed__wrapper iframe,
.youtube_wrap iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}




/* =tub
-------------------------------------------------------------- */

summary{
	cursor: pointer;
}
summary::marker{
  content: none;
}
summary::-webkit-details-marker{
  display: none;
}

.accordion dd{
	display: none;
}

.tub{
	display: flex;
}
.tub_cont{
	display: none;
}
.cont_current{
	display: block;
}



/* =slide base
-------------------------------------------------------------- */

.swiper img{
	width: 100%;
}
.swiper-wrapper{
	transition-timing-function:linear; 
}
.swiper-button-next,
.swiper-button-prev{
	color: #fff;
	width: 4rem;
	height: 4rem;
	background: var(--grad);
	border-radius: 50%;
	top: auto;
	bottom: 0;
}
.swiper-button-prev{
	left: 5%;
}
.swiper-button-next{
	right: 5%;
}
.swiper-button-next:after, .swiper-button-prev:after{
	font-size: 1rem;
}
.swiper-pagination-bullet{
	background: #fff;
	border: var(--purpul) solid 1px;
	opacity: 1;
}
.swiper-pagination-bullet-active{
	background: var(--grad);
}


/* =site basic
-------------------------------------------------------------- */

.btn_link{
	background: #000;
	border: #000 solid 1px;
	color: #fff;
	display: block;
	padding: 1rem;
	width: 100%;
	max-width: 300px;
	margin: 0 auto;
	text-align: center;
  position: relative;
}

.section{
	padding: 5rem 0;
}
.wide_wrap{
	max-width: 1200px;
}


/* =Contact
-------------------------------------------------------------- */

.require{
	background: #960014;
	color: #fff;
	font-size: 1.2rem;
	padding: .5rem 1rem;
	border-radius: 50px;
	margin-right: 1rem;
}
.input_box{
	width: 100%;
	padding: .5rem 1rem;
	margin-bottom: 3px;
  line-height: 1.7;
  font-size: 1.6rem;
  border: #ccc solid 1px;
	min-height: 4rem;
	display: block;
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #f4f4f4 inset;
}
.input_box.short_box{
	width: 150px;
}
.form_wrap input[type="radio"],
.form_wrap input[type="checkbox"]{
	width: 20px;
	height: 20px;
	vertical-align: middle;
}

input[type="date"]{
  position: relative;
}
input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}
input[type="date"]::-webkit-inner-spin-button{
  -webkit-appearance: none;
}
input[type="date"]::-webkit-clear-button{
  -webkit-appearance: none;
}

.form_wrap label{
	cursor: pointer;
}
.wpcf7 form .wpcf7-response-output{
	text-align: center;
	padding: 1rem;
}

.form_wrap input[disabled]{
	background: #ccc !important;
	border: #ccc solid 1px;
	color: #fff !important;
	box-shadow: none;
	transform: none;
}

.form_wrap th{
	display: block;
	width: 100%;
	padding: 0 0 1rem;
}
.form_wrap td{
	display: block;
	padding: 0 0 2rem;
	border-bottom: #ccc solid 1px;
	margin-bottom: 2rem;
}
.form_wrap .attention{
	background: #efefef;
	padding: 1rem 5%;
	margin-top: .5rem;
	font-size: 1.2rem;
}
.form_wrap .attention p{
	margin: 1rem 0;
}
.policy_check{
	text-align: center;
	margin: 3rem 0;
}
.policy_check p{
	margin: 1rem 0;
}

.form_wrap .wpcf7-not-valid-tip{
	font-weight: 700;
	color: #960014;
}

.wpcf7-turnstile{
	text-align: center;
	margin: 3rem 0;
}


#site_footer p{
	font-size: 1rem;
}

#main_visual{
	height: 48rem;
	background: #000;
	position: relative;
}
#main_visual .swiper{
	opacity: .7;
	height: 100%;
}
#main_visual .img_clip{
	height: 100%;
}
#main_visual .img_clip::before{
	content: none;
}
#main_visual__inner{
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	z-index: 10;
	width: 90%;
	text-align: center;
	color: #fff;
	text-shadow: 0 0 3px rgba(0,0,0,.5);
}
#main_visual__logo{
	width: 7rem;
	display: block;
	margin: 0 auto;
	filter: brightness(0) invert(1);
}
#main_visual__inner h1{
	font-size: 3rem;
	margin: 1rem 0 2rem;
}
#main_visual__inner p{
	font-size: 1.6rem;
}
#main_visual__scroll{
	width: 1px;
	height: 8rem;
	position: absolute;
	left: 50%;
	bottom: -4rem;
	z-index: 5;
	background: rgba(255,255,255,.6);
	overflow: hidden;
}
#main_visual__scroll span{
	position: absolute;
	top: 0;
	left: 0;
	background: var(--main);
	opacity: .7;
	animation: sdl 2s cubic-bezier(1, 0, 0, 1) infinite;
	display: block;
	z-index: 10;
	width: 1px;
	height: 100%;
}
@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}


.bg{
	background: #fff;
}
.section_title{
	text-align: center;
	font-size: 2rem;
	margin-bottom: 3rem;
}
.section_title span{
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 60%;
}
.section_title span::before,
.section_title span::after{
	content: '';
	width: 3rem;
	height: 1px;
	display: block;
	background: var(--main);
}
.section_title span::before{
	margin-right: 1rem;
}
.section_title span::after{
	margin-left: 1rem;
}
.section_inner__txt{
	margin-bottom: 3rem;
}
.section_inner__txt h3{
	font-size: 1.8rem;
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	position: relative;
	color: var(--main);
}
.section_inner__txt h3 span{
	display: block;
	font-size: 70%;
}
.section_inner__txt h3::after{
	content: '';
	background: var(--main);
	width: 5rem;
	height: 1px;
	position: absolute;
	bottom: 0;
	left: 0;
}
.section_inner__txt p{
	margin: 2rem 0;
}

#experience_list li{
	position: relative;
	margin-top: 2rem;
}
.experience_box__num{
	position: absolute;
	z-index: 5;
	width: 6rem;
	height: 6rem;
	background: var(--main);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	left: 50%;
	top: -3rem;
	translate: -50% 0;
	border-radius: 50%;
	font-size: 2rem;
}
.experience_box{
	overflow: hidden;
	border-radius: 1rem;
	border: var(--main) solid 2px;
	height: 100%;
}
.experience_box__txt{
	padding: 4rem 5% 2rem;
	position: relative;
}
.experience_box__txt h3{
	color: var(--main);
	text-align: center;
	font-size: 2rem;
	margin-bottom: 1rem;
}

#plan .wrapper{
	max-width: 800px;
}
.table{
	background: #fff;
}
.table th,
.table td{
	border: var(--main) solid 1px;
	padding: 1.5rem;
	vertical-align: middle;
}
.table th{
	background: #efefef;
	color: var(--main);
	text-align: center;
}

#option{
	background: var(--main);
}
#option .wrapper{
	background: #fff;
	padding: 3rem 5%;
	border-radius: 1rem;
}

#access_route{
	text-align: center;
	margin-top: 2rem;
}

#matsucho_contact p.contact_tel{
	font-family: inherit;
}
#contact_inner p{
	margin: 2rem 0;
}


/* =RWD
-------------------------------------------------------------- */

@media screen and (min-width: 768px){
  .mobile_only{
		display: none;
	}
	.pc_only{
		display: block;
	}
  a[href*="tel:"] {
    pointer-events: none !important;
    cursor: default !important;
    text-decoration: none !important;
  }
  table th{
		padding: 1rem;
	}
	table td{
		padding: 1rem;
	}
	#main_visual__logo{
		width: 10rem;
	}
	#main_visual__inner h1{
		font-size: 5rem;
		margin: 2rem 0 3rem;
	}
	#main_visual__inner p{
		font-size: 2rem;
	}
	.section_title{
		font-size: 2.6rem;
	}
	.section_inner{
		display: flex;
		align-items: center;
	}
	.section_inner__img{
		flex: 0 0 40%;
		margin-left: 3rem;
	}
	.section_inner__txt{
		flex: 1;
		margin: 0;
	}
	#experience_list{
		display: flex;
	}
	#experience_list li{
		padding: 0 1rem;
		width: 33.33%;
		margin: 0;
	}
	#btn_sptel{
		display: block;
		bottom: auto;
		left: auto;
		top: 1rem;
		right: 1rem;
		width: 35rem;
	}
	#btn_sptel a{
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 1rem 0;
		box-shadow: none;
	}
	#btn_sptel span{
		font-size: 150%;
		margin-left: 1rem;
	}
}




@media screen and (min-width: 1024px){
  html{
    font-size: 75%;
  }
	#main_visual{
		height: 100vh;
	}
	.section_inner__img{
		flex: 0 0 45%;
		margin-left: 5rem;
	}
}


@media (hover: hover) {
  .img_opacity:hover img{
  	opacity: .8;
  }
  .hover_up:hover{
  	transform: translateY(-5px);
  	box-shadow: 0 12px 10px -6px rgba(0,0,0,.3);
  }
  .hover_up__img:hover img{
  	transform: translateY(-5px);
  	box-shadow: 0 12px 10px -6px rgba(0,0,0,.3);
  }
	.btn_link:hover{
		background: #fff;
		color: #000;
	}
}