@charset "utf-8";
/* CSS Document */
/*===共通部分==============
====================================================================*/
html{
	font-size: 100%;
}
body{
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	font-weight: 400;
	color: #333;
	font-size: clamp(16px,2vw,18px);
	background: #fff;
	-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: #333;
	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: 30px;
	margin-top: -30px;
}

/*改行　-------*/
@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: 767px) {
	.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;
}
/*高さ*/

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

.radius20{
	border-radius: 20px;
}

/*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%;
}
@media (max-width: 767px){
	.flexbox{
		flex-direction: column;
	}
	.flexbox.rever{
		flex-direction: column-reverse;
	}
	.comn2, .comn3, .comn4, .comn5 {
		width: 100%;
		margin-bottom: 30px
	}
}

/*==背景=============================================*/
.bg_light{
	background: #fef2d4
}

/*背景画像固定*/
.container{
   position: relative;
	z-index: 0;
}
.line_img {
   position: absolute;
   content: '';
   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/img01.jpg");
   background-size: cover;
   background-position: center;
   z-index: -2;
}


/*==見出し=============================================*/

h2{
	font-family: "Kosugi Maru", sans-serif;
	font-size: clamp(1.25rem, 1.134rem + 0.49vw, 1.5rem);
}

h3 b{
	color: #6d370a;
}

.stitle{
	text-align: center;
	position: relative;
	padding-bottom: 15px;
	margin-bottom: 50px;
	color:#6d370a;
	font-size: clamp(1.25rem, 1.018rem + 0.98vw, 1.75rem);
}
.stitle::after{
	position: absolute;
	content: '';
	width: 100px;
	height: 2px;
	background: #6d370a;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.dtitle{
	position: relative;
	font-size: clamp(1.5rem, 0.898rem + 2.54vw, 2.8rem);
	padding-left: 70px;
	color: #6d370a;
	margin-bottom: 30px;
}
.dtitle.tts{
	font-size: clamp(18px,2.5vw,22px);
}

.dtitle::before{
	position: absolute;
	content: '';
	width: 50px;
	height: 2px;
	background: #6d370a;
	left: 0;
	top: 55%;
	transform: translateY(-50%);
	
}

.wtitle{
	background: #6d370a;
	padding: 5px 1.5rem;
	color: #fff;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	font-weight: 400;
}

/*==btn=============================================*/
.btn01{
	display: inline-block;
	background: #6d370a;
	color: #fff;
	font-size: 1.3rem;
	width: 350px;
	position: relative;
	border-radius: 50px;
	line-height: 2.3;
	border: 2px solid #6d370a;
}
.btn01::before{
	position: absolute;
	content: '\f054';
	right: 1.5rem;
	top: 50%;
	transform: translateY(-50%);
	font-weight: 600;
	font-family: "Font Awesome 6 Free";
	transition: .4s;	
}
.btn01:hover{
	background: #fff;
	color: #6d370a;
}

.btn01:hover::before{
	right: 1rem;
	transition: .4s;
}

.btn2{
    background: #fff;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 1.5rem 0 auto;
    max-width: 280px;
    padding: 10px 25px;
    color: #313131;
	border: 1px solid #6d370a;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}
.btn2:before {
    content: '';
    position: absolute;
    top: calc(50% - 2px);
    right: -1em;
    transform: translateY(calc(-50% - 2px)) rotate(30deg);
    width: 12px;
    height: 2px;
    background-color: #6d370a;
    transition: 0.3s;
}
.btn2:after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1em;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background-color: #6d370a;
    transition: 0.3s;
}
.btn2:hover:before, .btn2:hover:after {
    right: -1.5rem;
}
.btn2:hover {
    background: #eee;
    color: #6d370a;
}







/*marker*/
.marker{
    background: -webkit-gradient(linear, left top, left bottom, color-stop(66%, transparent), color-stop(66.1%, #efff1e));
    background: -o-linear-gradient(top, transparent 66%, #efff1e 66.1%);
    background: linear-gradient(to bottom, transparent 66%, #efff1e 66.1%);
}
