@charset "utf-8";
/* CSS Document */
/*===共通部分==============
====================================================================*/
html{
	font-size: 100%;
}
body{
 	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 400;
	color: #463C38;
	font-size: clamp(16px,2vw,18px);
	background: url("../img/bg.jpg");
	-webkit-font-smoothing: antialiased;/*アンチエイリアスを滑らかに*/
	-moz-osx-font-smoothing: grayscale;
	line-height: 1.7;
}
p{
	letter-spacing: 0.1em;
}
h1,h2,h3,h4,h5,h6{
	font-weight: 600;
	line-height: 1.7;
}
a{
	text-decoration: none;
	color:#463C38;
	transition: .4s;
}
ul,ol{
	list-style: none;
	padding: 0;
}
main{
	width: 100%;
	height: 100%;
	overflow: hidden;
}

section {
	padding: clamp(30px,8vw,80px) 0 ;
	position: relative
}
table{
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;/*隙間なし*/
}

a.anchor{
	display: block;
	padding-top:80px;
	margin-top: -80px;
}

/*改行　-------*/
@media (min-width: 451px){
	br.only450{
		display: none;
	}
}

@media (max-width: 450px){
	br.not450{
		display: none;
	}
}

span.ib{
	display: inline-block !important;
}

/*PC・SP表示-----------------------*/
.sp{
	display: none;
}
.pc{
	display: block;
}

@media (max-width: 768px) {
	.sp{
		display: block;
	}
	.pc{
		display: none;
	}
}

/*幅・高さ調整-------*/
.inner{
	width: 96%;
	max-width: 1200px;
	margin: 0 auto;
}
.inner.wide{
	max-width: 1400px;
}
.inner.max{
	max-width: none;
}
.w960{
	max-width: 960px;
	margin: 0 auto;
}

/*高さ*/

.mg100{
	margin-bottom: 100px !important;
}
.mg80{
	margin-bottom: 80px !important;
}
.mg60{
	margin-bottom: 60px !important;
}
.mg50{
	margin-bottom: 50px !important;
}
.mg40{
	margin-bottom: 40px !important;
}
.mg30{
	margin-bottom: 30px !important;
}
.mg20{
	margin-bottom: 20px !important;
}
.mg10{
	margin-bottom: 10px !important;
}
.mg0{
	margin-bottom: 0 !important;
}

.pmg5 p{
	margin-bottom: 5px;
}
.pmg p{
	margin-bottom: 10px;
}
.pmg15 p{
	margin-bottom: 15px;
}
.pmg20 p{
	margin-bottom: 20px;
}
.pmg5 p:last-child,
.pmg p:last-child,
.pmg15 p:last-child,
.pmg20 p:last-child{
	margin-bottom: 0;
}

.h30{
	height: 30px;
}
.h50{
	height: 50px
}


.t_center{
	text-align: center;
}
.t_left{
	text-align: left;
}
/* 画像　-------------------------- */
.obj-in{
	width: 100%;
	height: 100%;
	object-fit: contain
}
.obj-cov{
	width: 100%;
	height: 100%;
	object-fit: cover;	
}
.img_4-3{
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.img_16-9{
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

/*flexbox------------------------*/
.flexbox{
	display: flex;
	flex-wrap: wrap;
}
.f_jsb{
	justify-content: space-between;
}
.f_cent{
	justify-content: center;
}
.fac{
	align-items: center;
}

.comn2{
	width: 48%;
}
.comn3{
	width: calc( 100% / 3 - 20px);
}
.comn4{
	width: 35%;
}
.comn5{
	width: 62%;
}

.f_center{
	align-items: center;
}
@media (max-width: 768px){
	.flexbox{
		flex-direction: column;
	}
	.flexbox.rever{
		flex-direction: column-reverse;
	}
	.comn2, .comn3, .comn4, .comn5 {
		width: 100%;
		margin-bottom: 30px
	}
}

/*==背景=============================================*/
/*背景back全面固定*/
.container{
   position: relative;
	height: 280px;
}
.line_img {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   clip-path: inset(0);
}
.bg{
   position: fixed;
   top: 0;
   left: 0;
   width: 100vw;
   height: 100vh;
   background-image: url("../img/slide01.jpg");
   background-size: cover;
   background-position: center;
   z-index: -1;
}
@media (max-width: 768px) {
	.container{
		height: 20vh;
	}	
}



/*==見出し=============================================*/
.ttl{
	font-size: clamp(1.25rem, 1.105rem + 0.61vw, 1.563rem);
}

.kosugi-regular {
  font-family: "Kosugi", sans-serif;
}

.mtitle{
	text-align: center;  
	letter-spacing: .2rem;
	font-size: clamp(1.8rem, 1.476rem + 1.37vw, 2.5rem);
	color: #391700;
}
.mtitle span{
	position: relative;
}
.mtitle span::before,
.mtitle span::after{
	position: absolute;
	content: '';
	height: 100%;
	aspect-ratio: 19 / 50; 
	bottom: 0;
}
.mtitle span::before{
	background: url("../img/title-icon-l.png");
	background-repeat: no-repeat;
	background-size: contain;
	left: -50px;
}
.mtitle span::after{
	background: url("../img/title-icon-r.png");
	background-repeat: no-repeat;
	background-size: contain;
	right: -50px;
}

.stitle span{
	font-size: 1.5rem;
	padding: 0 15px;
	color: #FBBD32;
	position: relative;
}
.stitle span::before,
.stitle span::after{
	position: absolute;
	content: '';
	width: 30%;
	height: 1.5px;
	background: #fbbd32;
	top: 50%;
	transform: translateY(-50%);
}
.stitle span::before{
	right: 100%;
}
.stitle span::after{
	left: 100%;
}
.dtitle{
	background: url("../img/ttl_bg.png");
	color: #fff;
	font-weight: 600;
	padding: 3px 1rem;
	margin-bottom: 20px;
}

/*==btn=============================================*/
.btn-wrap{
	margin: 30px 0;
}

.btn01{
	background: #fff;
	padding: 1rem 4rem;
	display: inline-block;
	margin: 0 auto;
	font-weight: 600;
	border: 4px solid #1ca8c966;
	position: relative;
	border-radius: 150px;
}
.btn01::after{
	position: absolute;
	content: '\f054';
	font-family: "Font Awesome 6 Free";
	top: 50%;
	right: 1.8rem;
	transform: translateY(-50%);
	transition: .4s;
	color: #1ca8c966;
}
.btn01:hover{
	background: #47B7DF;
	color: #fff;
}
.btn01:hover::after{
	color: #fff;
	right: 1.3rem;	
}

@media(max-width:600px){
	.btn01{
		padding: .7rem 2.5rem;
	}
	.btn01::after{
		right: 1.3rem;
	}	
}

/*list*/
.list_number {
  counter-reset: number;
  list-style-type: none;
  padding: 0 16px;
}
.list_number li {
  position: relative;
  border-bottom: 1px dashed #fbbd32;
  margin-top: 0;
  line-height: 1.2;
  padding: 16px 0 16px 53px;
}
.list_number li p {
  margin: 0;
}
.list_number li:before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  background: #fbbd32;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
}

.check li{
	position: relative;
	padding-left: 2rem;
	padding-bottom: 8px;
}
.check li::before{
	position: absolute;
	content: '\f14a';
	font-family: "Font Awesome 6 Free";
	font-weight: 600;
	left: .3rem;
	top:1px;
	
	
}