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

/* all */
html {
	scroll-behavior: smooth;
	scroll-padding-top: 120px;
}
html .site-header .top_nav,
html .slide_wrap .copy,
html .subtitle h2{
    visibility: hidden;
	opacity: 0.2;
	transition: 1s;
}
html.wf-active .site-header .top_nav,
html.wf-active .slide_wrap .copy,
html.wf-active .subtitle h2{
    visibility: visible;
	opacity: 1;
}
body{
	color: #5f3700;
	background: #fff;
	font-family: fot-tsukubrdgothic-std, sans-serif;
	font-weight: 400;
	letter-spacing: 0.12em;
}
p{
	line-height: 180%;
	font-size: 1.1rem;
}
a{
	text-decoration-line: none;
}
a:link{
	text-decoration: none;
}
ul li,ol li{
	list-style: none;
}
h2,h3,h4{
	font-weight: 400;
}

/* 幅調整　*/
.wapper{
	width: 100%;
	max-width: 2560px;
	margin-inline: auto;
}
.w1600{
	width: calc(100% - 60px);
	max-width: 1600px;
	margin-inline: auto;
	position: relative;
	z-index: 5;
}
.w1300{
	width: 100%;
	max-width: 1300px;
	margin-inline: auto;
}
.w960{
	width: 100%;
	max-width: 960px;
	margin-inline: auto;
}

.contents{
	padding: 70px 0;
}
.wrap80{
	padding: 10px 10%;
}
.wrap_center{
	width: fit-content;
	margin-inline: auto;
}
@media (max-width: 960px){
	.wrap80{
		padding: 10px 5%;
	}
	.contents.tb_pb15{
		padding: 70px 0 15px;
	}
}
@media (max-width: 450px){
	.w1600{
		width: calc(100% - 30px);
	}
	.wrap80{
		padding: 10px 0;
	}
}

/* 背景　*/
.bg_w{
	background-color: rgba(255,255,255,1);
}

.bg_light{
	background: #fceed8;
}

.bg_inner{
	padding: 50px 10px;
}
.bg_blur{
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
}
.bg_img01{
	background:linear-gradient( to bottom ,rgba(0,0,0,0.5) ,rgba(0,0,0,0.5)) , url("../img/bg_img01.webp");
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	color: #fff;
}
/*Safariのみ*/
::-webkit-full-page-media, :future, :root .bg_img01{
	background-attachment: scroll;
}

.box_wrap_rt{
	position: relative;
}
.box_wrap_rt::before{
	display: block;
    content: '';
    width: 75%;
    height: calc(100% - 200px);
    position: absolute;
    top: 0;
    right: 0;
    background: #fceed8;
	border-radius: 50px 0 0 50px;
    z-index: -1;
}
.box_wrap_lt{
	position: relative;
}
.box_wrap_lt::before{
	display: block;
    content: '';
    width: 75%;
    height: calc(100% - 200px);
    position: absolute;
    top: 0;
	left: 0;
    background: #fceed8;
	border-radius: 0 50px 50px 0;
    z-index: -1;
}
.bg_round01{
	background: url("../img/bg_round01_y.webp");
	background-repeat: no-repeat;
	background-position: left -20% top 15px;
	background-size: auto 750px;
}
.bg_round02{
	background: url("../img/bg_round02_y.webp");
	background-repeat: no-repeat;
	background-position: right -20% top 15px;
	background-size: auto 750px;
}
@media (max-width: 1280px){
	.bg_round01,.bg_round02{
		background-size: auto 95%;
	}
}
@media (max-width: 960px){
	.bg_round01,.bg_round02{
		background-size: 80%;
	}
}

/* 境界線 ================================================== */
.round_top{
	clip-path: ellipse(80% 100% at bottom);
}
@media (max-width: 1366px){
	.round_top{
		clip-path: ellipse(100% 100% at bottom);
	}
}
@media (max-width: 768px){
	.round_top{
		clip-path: ellipse(120% 100% at bottom);
	}
}

.cut01{
	width: 250px;
	padding: 10px;
	vertical-align: middle;
}
.cut_ozigi{
	position: absolute;
	bottom: -30px;
	right: 5%;
	width: 100px;
}
.cut_ozigi img{
	width: 100%;
}
@media (max-width: 750px){
	.cut_ozigi{
		right: -10px;
		width: 80px;
	}
}
@media (max-width: 750px){
	.cut_ozigi{
		right: -15px;
		width: 70px;
	}
}

/* ヘッダー ================================================== */

header{
	position: relative;
	width: 100%;
	z-index: 999;
}
.site-header{
	background:rgba(255,255,255,0.0);
    display: flex;
    position: fixed;
    justify-content: space-between;
	align-items:flex-start;
    width: 100%;
	transition: .5s;
	padding: 0 0 0 30px;
}
.site-header.transform .header_title{
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
}
.site-header h1{
	vertical-align: middle;
	position: relative;
	transition: .5s;
}
.site-header h1 img{
	width: auto;
	height: 90px;
	vertical-align: middle;
	filter: brightness(300%) grayscale(20%);
	transition: .5s;
}
.site-header.transform h1 img{
	filter:none;
}
.site-header h1 a{
	color: #fff;
	transition: .5s;
}

.site-header .top_nav{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	background: #fff;
	padding: 15px;
	border-bottom-left-radius: 30px;
}
.site-header .h_mail{
	margin-right: 15px;
}
.site-header .h_mail a{
	display: block;
	width: 200px;
	font-size: 1rem;
	text-align: center;
	vertical-align: middle;
	background:#fab44b;
	border: solid 2px #fab44b;
	color: #fff;
	font-weight: 700;
	border-radius: 50px;
	padding: 10px;
	line-height: 1;
	transition: .5s;
}
.site-header .h_mail a:hover{
	background:#fff;
	color: #fab44b;
}
.site-header .h_mail a i{
	line-height: 1;
	vertical-align: middle;
}
.site-header .h_mail span{
	display: block;
	font-size: 0.7rem;
	margin-bottom: 3px;
}


.site-header .top_nav ul{
	list-style: none;
	display: flex;
	justify-content: space-between;
	padding:0 30px;
}
.site-header .top_nav ul li{
	margin: auto;
	margin-left: 30px;
	font-size:1rem;
	padding: 15px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.site-header .top_nav ul li a{
	display: block;
	width: 100%;
	height: 100%;
	color: #5f3700;
	font-weight: 700;
	transition: 0.5s;
}

.site-header .top_nav ul li::after{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background:rgba(251,189,96,0.0);
	content: '';
	transition: transform 0.35s;
	transform: translate3d(-100%,0,0);
}
.site-header .top_nav ul li:hover::after{
	background:rgba(251,189,96,1.0);
	transform: translate3d(0,0,0);
}
@media (max-width: 1200px){
	.site-header h1 img{
		height: 80px;
	}
	.site-header .top_nav{
		display: none;
	}
}
@media (max-width: 769px){
	.site-header{
		padding: 0;
	}
	.site-header h1 img{
		height: 70px;
	}
}
/* スライダー　==================== */
.slide_wrap{
	width: 100%;
	height: 100vh;
	min-height: 650px;
	max-height: 1080px;
	position: relative;
	overflow: hidden;
}
.slider{
	position: absolute;
	overflow: hidden;
	top: 0;
	left: 30px;
	width: calc(100vw - 60px);
	height: calc(100vh - 30px);
	min-height: 620px;
	max-height: 1050px;
	border-radius: 0 0 30px 30px;
}

.slider li{
	position: relative;
	top: 0;
	left: 0;
	width: calc(100vw - 60px);
	height: calc(100vh - 30px);
	z-index: 2;
	overflow: hidden;
}
.slider li.top01{
	background:url("../img/img01.webp") no-repeat;
	background-size: cover;
	background-position: 80% 50%;
}
.slider li.top02{
	background:url("../img/img02.webp") no-repeat;
	background-size: cover;
	background-position: center;
}
.slider li.top03{
	background:url("../img/img03.webp") no-repeat;
	background-size: cover;
	background-position: center;
}

@keyframes fadezoom{
	0%{
		transform: scale(1);
	}
	100%{
		transform: scale(1.1);
	}
}
.add-animation{
	animation: fadezoom 10s 0s forwards;
}
.slide_wrap .copy{
	position: absolute;
	bottom: 29px;
	left: 29px;
	width: auto;
	padding: 30px 15px 0;
	background: #fff;
	border-top-right-radius: 30px;
	z-index: 5;
}

.slide_wrap .copy h2{
	margin-inline: auto;
	color: #f79928;
	font-weight: 700;
	font-size: clamp(2rem, 1.1rem + 3.2vw, 4rem);
	line-height: 1.3;
	margin-bottom: 15px;
	
}
.slide_wrap .copy p{
	font-size: clamp(1rem, 0.73rem + 0.96vw, 1.6rem);
	line-height: 1.5;
}


@media (max-width: 769px){
	.slider,
	.slider li{
		top: 0;
		left: 0;
		width: 100vw;
		height: calc(100vh - 30px);
		min-height: 620px;
		max-height: 1050px;
	}
	.slide_wrap .copy{
		left: 0;
	}
}
/* コンテンツレイアウト
   ========================================================================== */

.card001{
	display: flex;
	align-content: flex-start;
	justify-content: center;
	flex-wrap: wrap;
	gap: 15px;
}
.card001 .inner03{
	width: calc(100% / 3 - 15px);
	padding: 30px;
	position: relative;
	z-index: 2;
	margin-top: 70px;
}
.card001 .inner03::after{
	position: absolute;
	z-index: -1;
	content: "";
	top: 0;
	left: 0;
	width: 80%;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	background-color: #fab44b;
	transform: scale(0.1);
	transition: 1s ease-in-out;
}
.card001 .inner03.inview::after{
	transform: scale(1);
}
.card001 .inner03:nth-child(2)::after{
	transition-delay: 0.5s;
}
.card001 .inner03:nth-child(3)::after{
	transition-delay: 1s;
}
.card001 .inner03:nth-child(4)::after{
	transition-delay: 1.5s;
}
.card001 .inner03:nth-child(5)::after{
	transition-delay: 2s;
}
.card001 .inner03 img{
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}
.card001 .inner03 h3{
	font-weight: 700;
	margin-top: 15px;
	line-height: 1.5;
	margin-bottom: 15px;
	font-size: 1.5rem;
	border-bottom: dotted 3px;
}
.card001 .inner03 p{
	font-size: 1rem;
	font-weight: 700;
}
.card001 .inner03:first-child{
	transform: translateY(-50px);
}
.card001 .inner03:nth-child(3){
	transform: translateY(50px);
}
.card001 .inner03:nth-child(4){
	transform: translateY(-50px);
}

@media (max-width: 960px){
	.card001{
		flex-direction: column;
		justify-content: center;
		align-items: center;
		margin: 0 auto 30px;
		max-width: 500px;
	}
	.card001 .inner03{
		width: calc(100% - 15px);
		margin-top: 15px;
		padding: 15px;
	}
	.card001 .inner03:first-child,
	.card001 .inner03:nth-child(3),
	.card001 .inner03:nth-child(4){
		transform: none;
	}
	
}

.card002{
	display: flex;
	justify-content: center;
	align-items: center;
}
.card002 .img {
	width: 100%;
	padding: 10px;
}
.card002 .img img{
	width: 100%;
}
.card002 .txt{
	width: 100%;
	padding: 15px;
	align-self: center;
}
.card002 .txt p{
	margin-bottom: 1em;
}
.card002 .rec p{
	text-indent: 1em;
}
.card002 .video{
	width: 100%;
}
.card002 .video video{
	width: 100%;
	aspect-ratio: 16 / 9;
}
.card002 .video iframe{
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 15px;
}
.img_2{
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
    align-self: center;
}
.img_2 .in01{
	position: absolute;
	top: 10px;
	left: 10px;
	width: 55%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
    border-radius: 50%;
	padding: 15px;
	background: #fceed8;
	z-index: 2;
}
.img_2 .in02{
	position: absolute;
	bottom: 10px;
	right: 10px;
	width: 60%;
    border-radius: 30px;
	z-index: 1;
}

.card003{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 30px 0;
}
.card003 .img{
	width: 300px;
	padding: 15px;
	align-self: center;
}
.card003 .img img{
	width: 100%;
}
.card003 .txt{
	width: 100%;
	flex: 1;
	padding: 10px 5%;
	align-self: center;
}
@media (max-width: 960px){
	.card002,
	.card003{
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.card002 .img{
		text-align: center;
	}
	.card002 .img img{
		max-width: 600px;
	}
	.card002 .txt{
		padding: 15px;
	}
	.img_2{
		max-width: 800px;
		margin: auto;
	}
	.reverse{
		flex-direction: column-reverse;
	}
}

@media (max-width: 450px){
	.card003 .txt{
		padding: 10px;
	}
}
/* 写真横並び基本　*/
.photo_flex{
	display: flex;
	align-items:flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	gap:15px;
}
.photo_flex .img{
	width: 100%;
	padding: 0;
}
.photo_flex img{
	width: 100%;
}


/* カルーセル============================================================ */
.carousel_wrap{
	width: 100%;
	margin-inline: auto;
}
.carousel {
	width:calc(100% - 40px);
	padding: 0;
	margin-inline: auto;
}
.carousel .inner {
	overflow: hidden;
	margin: 20px;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}
.carousel .inner img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}
.carousel .slick-next {
	right: -20px;
	z-index: 50;
}
.carousel .slick-prev {
	left: -20px;
	z-index: 50;
}



/* フッター部分　================================================== */
footer{
	margin-bottom: 0;
	padding-top: 50px;
	background: linear-gradient(rgba(255,255,255,0.7),rgba(255,255,255,0.7)), url("../img/img02.webp") no-repeat;
	background-position: center;
	background-size: cover;
	clip-path: ellipse(80% 100% at bottom);
}


footer h2 img{
	width: 350px;
}
.footer_wrap{
	display: flex;
	justify-content: space-around;
	align-items: center;
	max-width: 960px;
	padding: 50px 10px;
	margin:auto;
}
.footer_in{
	width: 100%;
	max-width: 960px;
	margin: auto;
	display: flex;
	flex-direction: column;
	justify-content:center;
	align-items: center;
}

.footer_in p{
	text-align: center;
	
}

footer p.copyright{
	font-size: 0.9rem;
	text-align: center;
	padding: 15px;
	border-top: solid 1px ;
}

.footer_btn{
	text-align: center;
	border:solid 2px #fab44b;
	border-radius: 50px;
	overflow: hidden;
}
.footer_btn a{
	display: inline-block;
	width: 270px;
	background: #fab44b;
	color: #fff;
	padding: 1rem;
	font-weight: 700;
	transition: .5s;
}
.footer_btn a:hover{
	background: #fff;
	color: #fab44b;
}
@media (max-width: 1366px){
	footer{
		clip-path: ellipse(100% 100% at bottom);
	}
}
@media (max-width: 960px){
	.footer_wrap{
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap:30px;
	}
	
}
@media (max-width: 750px){
	footer{
		clip-path: ellipse(120% 100% at bottom);
	}
	footer h2{
		text-align: center;
	}
	footer h2 img{
		width: calc(100% - 60px);
	}
}



/* サブページタイトル 
   ========================================================================== */
.subtitle{
	display: block;
	width: 100%;
	height: 400px;
	background-size: cover;
	background-color: #ccc;
	position: relative;
	clip-path: ellipse(70% 100% at top);
}
.subtitle h2{
	color:#fff;
	font-weight: 700;
	position: absolute;
	bottom: 80px;
	left: 50%;
	transform: translateX(-50%);
	text-transform: uppercase;
	padding-bottom: 5px;
	text-align: center;
	line-height: 1.2;
	width: 100%;
}
.subtitle h2 span.ja{
	font-size: clamp(3rem, 2.1rem + 3.2vw, 5rem);
}
.subtitle h2 span.en{
	font-family: "Nunito", sans-serif;
	display: block;
	color: #fab44b;
	font-size: clamp(1.1rem, 0.92rem + 0.64vw, 1.5rem);
}

.sub_bg{
	background: linear-gradient( rgba(0,0,0,0.3), rgba(0,0,0,0.3)),url("../img/img07.webp");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-color: #ccc;
}
@media (max-width: 1366px){
	.subtitle{
		clip-path: ellipse(80% 100% at top);
	}
}
@media (max-width: 960px){
	.subtitle{
		height: 350px;
		clip-path: ellipse(100% 100% at top);
	}
}
@media (max-width: 750px){
	.subtitle h2{
		bottom: 100px;
	}
}

/*パンくずリスト ================================================== */
.breadcrumb {
	list-style: none;
	position: absolute;
	bottom: 1.5em;
	left: 50%;
	transform: translateX(-50%);
	padding: 3px 5px;
	font-size: 1em;
	font-weight: 700;
}

.breadcrumb li {
	display: inline;
	list-style: none;
	line-height: 100%;
	color: #fff;
}

.breadcrumb li:after {
	content: '＞';
	padding-left: 0.5rem;
	color: #fff;
}

.breadcrumb li:last-child:after {
	content: '';
}

.breadcrumb li a {
	text-decoration: none;
	color: #fff;
}

.breadcrumb li a:hover {
	text-decoration: underline;
}
@media (max-width: 960px){
	.breadcrumb{
		font-size: 0.9rem;
	}
}
@media (max-width: 750px){
	.breadcrumb{
		bottom: 2rem;
	}
}

/* TOPへ戻るボタン==================== */
#page_top {
	display: block;
	vertical-align: middle;
	position: fixed;
	right: 20px;
	bottom: 20px;
	padding: 12px 15px;
	border: none;
	border-radius: 50%;
	background: #f79928;
	color: #fff;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	opacity: 0;
	pointer-events: none; /* 非表示中はクリックできない */
	transition: opacity 0.5s ease;
	z-index: 999;
}
#page_top.show {
	opacity: 1;
	pointer-events: auto; /* 表示中はクリック可能 */
}
/* スクロールフェードイン ================================================== */
.fadein {
	opacity : 0.2;
	filter: blur(4px);
	transform : translate(0, 80px);
	transition : all 1s;
	}

.fadein.scrollin {
	opacity : 1;
	filter: none;
	transform : translate(0, 0);
	}
/* スクロールエフェクト ================================================== */
.swipe{
   position: relative;
   overflow: hidden;
}
.swipe::after{
   content: '';
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
   background: #fff;
   pointer-events: none;
   z-index: 1;
   transform: translateX(-100%);
   transition: 1.2s ease-in-out;
}
.swipe .swipe_in{
   opacity: 0;
   transition: 0.2s ease-in;
   transition-delay: 0.6s;
}
.swipe.inview .swipe_in{
   opacity: 1;
}
.swipe.inview::after{
   transform: translateX(100%);
}
/* テキストアニメ　==================== */
.eachTextAnime span{
	opacity: 0;
	display: inline-block;
}
.eachTextAnime.appeartext span{ 
	animation:text_anime_on 1.5s ease-out forwards; 
}
@keyframes text_anime_on {
	0% {
		opacity:0;
		
	}
	100% {
		opacity:1;
		transform : translate(0, 0);
	}
}



