@import "oc-theme-base.css";

@font-face {
	font-family: 'NotoSansJP';
	font-weight: 400;
	font-style: normal;
	font-display: swap;
	src: url("../fonts/NotoSansJP-Regular.woff2") format("woff2"),
		 url("../fonts/notosansjp/NotoSansJP-Regular.woff") format("woff");
}
@font-face {
	font-family: 'NotoSansJP';
	font-weight: 500;
	font-style: normal;
	font-display: swap;
	src: url("../fonts/NotoSansJP-Medium.woff2") format("woff2"),
		url("../fonts/notosansjp/NotoSansJP-Medium.woff") format("woff");
}
@font-face {
	font-family: 'NotoSansJP';
	font-weight: 700;
	font-style: normal;
	font-display: swap;
	src: url("../fonts/NotoSansJP-Bold.woff2") format("woff2"),
		url("../fonts/notosansjp/NotoSansJP-Bold.woff") format("woff");
}

:root {
	--oc-link-color: #06725B;
	--oc-primary-color: #222222;
	
	--oc-btn-primary-color: #233b68;
	--oc-btn-alt-color: #233b68;

	--oc-blog-heading-mt: 1.9rem;
	--oc-blog-heading-mb: 1.625rem;
	--oc-blog-heading-pt: 1.625rem;
	--oc-blog-font-size: calc(1rem + .069vw);
	--oc-blog-heading1-fs: calc(1.6rem + .069vw);
	--oc-blog-heading2-fs: calc(1.5rem + .069vw);
	--oc-blog-heading3-fs: calc(1.35rem + .069vw);
	--oc-blog-line-height: 1.625rem;

	--header-height: 93px;
}

@media screen and (max-width:900px) {
	:root {
		--header-height: 58px;
	}
}

body {
	color: var(--oc-primary-color);
	font-family: "NotoSansJP", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 18px;
	line-height: 1.8;
}

.text-primary-color{
	color: var(--oc-primary-color);
}
.clear-fix { clear: both; }

a {
	text-decoration: none;
	color: var(--oc-link-color);;
}
a:hover {
	text-decoration: none;
}
img {
	max-width: 100%;
}

.bg-image {
	z-index: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.text-bg-top {
	z-index: 0;
	height: 200px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.text-bg-top .caption {
}
.text-bg-top .caption h1,
.text-bg-top .caption h2 {
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
}

.content-none {
    text-align: center;
    font-size: 20px;
    padding: 80px 10px;
}
.content-none .error-number {
    font-size: 70px;
}
.content-none .content-none-btn {
    margin: 20px auto;
    text-align: center;
}

@media screen and (max-width:767px) {
	body {
		font-size: 16px;
	}
}

/* OC Button Style */
.site-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 375px;
    height: 73px;
    max-width: 90%;
    border: 1px solid #fff;
    color: #fff;
    background-color: transparent;
    transition: all 0.5s;
}
.site-btn {
    color: var(--oc-primary-color);
    border-color: var(--oc-primary-color);
}

/* END - OC Button Style */

/* OC Modal Style */
.modal-design {
	height: 80vh;
	overflow: scroll;
	margin: 15% 0 10% 0;
	border-radius: unset;
} 
.modal-dialog{
	max-width: 800px;
	padding: 1rem;
}

@media (min-width: 576px){
	.modal-dialog {
		max-width: 500px;
		margin: 1.75rem auto;
	}
}

.close-btn {
	position: fixed;
	right: 0x;
	top: 25px;
}
.modal-side-margin {
	margin: 0;
}

.modal-body-design {
	padding: 0;
}

.round_btn {
	display: block;
	width: 45px;
	height: 45px;
	border: 2px solid #AA8400; /* 枠の調整 */
	border-radius: 50%;  /* 丸みの度合い */
	background: #fff; /* ボタンの背景色 */
}

.round_btn::before, .round_btn::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 3px; /* 棒の幅（太さ） */
	height: 22px; /* 棒の高さ */
	background: #AA8400; /* バツ印の色 */
}

.round_btn::before {
	transform: translate(-50%,-50%) rotate(45deg);
}

.round_btn::after {
	transform: translate(-50%,-50%) rotate(-45deg);
}

/* END - OC Modal Style */


*{
	word-break: break-word;
}
a,
a img{
    transition: all .3s;
}
a[href^="tel:"] {
    pointer-events: none;
}
p{
	margin-bottom: 25px;
}
p:last-child{
	margin-bottom: 0;
}
img{
	max-width: 100%;
}
figure{
	margin-bottom: 0;
}
i{
	font-style: normal;
}
table{
	width: 100%;
}
.home dl,
.home dd,
.content dl,
.content dd,
ul.reset,
ol.reset,
#header ul,
#footer ul,
.home ul,
.home ol{
	margin: 0;
	padding: 0;
}
ul.reset li,
ol.reset li,
#header li,
#footer li,
.home li{
	list-style: none;
}
.mt0{margin-top: 0px!important;}
.mt5{margin-top: 5px!important;}
.mt10{margin-top: 10px!important;}
.mt15{margin-top: 15px!important;}
.mt20{margin-top: 20px!important;}
.mt25{margin-top: 25px!important;}
.mt30{margin-top: 30px!important;}
.mt35{margin-top: 35px!important;}
.mt40{margin-top: 40px!important;}
.mt45{margin-top: 45px!important;}
.mt50{margin-top: 50px!important;}
.mt55{margin-top: 55px!important;}
.mt60{margin-top: 60px!important;}
.mt65{margin-top: 65px!important;}
.mt70{margin-top: 70px!important;}
.mt75{margin-top: 75px!important;}
.mt80{margin-top: 80px!important;}
.mt85{margin-top: 85px!important;}
.mt90{margin-top: 90px!important;}
.mt95{margin-top: 95px!important;}
.mt100{margin-top: 100px!important;}
.mb0{margin-bottom: 0px!important;}
.mb5{margin-bottom: 5px!important;}
.mb10{margin-bottom: 10px!important;}
.mb15{margin-bottom: 15px!important;}
.mb20{margin-bottom: 20px!important;}
.mb25{margin-bottom: 25px!important;}
.mb30{margin-bottom: 30px!important;}
.mb35{margin-bottom: 35px!important;}
.mb40{margin-bottom: 40px!important;}
.mb45{margin-bottom: 45px!important;}
.mb50{margin-bottom: 50px!important;}
.mb55{margin-bottom: 55px!important;}
.mb60{margin-bottom: 60px!important;}
.mb65{margin-bottom: 65px!important;}
.mb70{margin-bottom: 70px!important;}
.mb75{margin-bottom: 75px!important;}
.mb80{margin-bottom: 80px!important;}
.mb85{margin-bottom: 85px!important;}
.mb90{margin-bottom: 90px!important;}
.mb95{margin-bottom: 95px!important;}
.mb100{margin-bottom: 100px!important;}
.mlr10{margin-left: 10px!important;margin-right: 10px!important;}
.mlr20{margin-left: 20px!important;margin-right: 20px!important;}
.mlr30{margin-left: 30px!important;margin-right: 30px!important;}
.mlr40{margin-left: 40px!important;margin-right: 40px!important;}
.mlr50{margin-left: 50px!important;margin-right: 50px!important;}
.mlr60{margin-left: 60px!important;margin-right: 60px!important;}
.mlr70{margin-left: 70px!important;margin-right: 70px!important;}
.mlr80{margin-left: 80px!important;margin-right: 80px!important;}
.mlr90{margin-left: 90px!important;margin-right: 90px!important;}
.mlr100{margin-left: 100px!important;margin-right: 100px!important;}
.tb,
.sp{
	display: none;
}
.flex{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.btn-s1{
	display: inline-block;
	position: relative;
	padding-top: 25px;
	padding-left: 30px;
	width: 338px;
	height: 67px;
	color: #fff;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 1;
	text-align: left;
	background: url(../img/button.png) no-repeat center;
	background-size: 100% auto;
	border-radius: 5px;
	overflow: hidden;
}
.btn-s1.small{
	padding-top: 13px;
	padding-left: 20px;
	width: 226px;
	height: 41px;
	font-size: 14px;
	background: url(../img/button02.png) no-repeat center;
	background-size: 100% auto;
}
.btn-s1:before{
	content: '';
	position: absolute;
	top: 0;
	right: 45px;
	width: 7px;
	height: 100%;
	background: url(../img/arrow.svg) no-repeat center 29px;
	background-size: 100% auto;
}
.btn-s1.small:before{
	right: 20px;
	width: 4.5px;
	background-position: center;
}
.btn-s1:after {
    position: absolute;
    content: '';
    display: inline-block;
    top: -200px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fbfbfb;
}
.btn-s1:hover:after {
    animation: btn_animation 0.8s ease-in-out;
}
@keyframes btn_animation {
  0%   { transform: scale(0) rotate(45deg); opacity: 1; }
  5%  { transform: scale(1) rotate(45deg); opacity: 0.7; }
  10%  { transform: scale(2) rotate(45deg); opacity: 1; }
  100% { transform: scale(50) rotate(45deg); opacity: 0; }
}
.f1{
	font-family: "Shippori Mincho", serif;
	font-weight: 700;
	font-style: normal;
}
.f2{
	font-family: "Cormorant", serif;
	font-optical-sizing: auto;
	font-weight: bold;
	font-style: normal;
}
.f3{
	font-family: "Cormorant Infant", serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
}

@media screen and (max-width:820px) {
	.tb{
		display: block;
	}
}

@media screen and (max-width:767px) {
	.pc{
		display: none;
	}
	.sp{
		display: block;
	}
    a[href^="tel:"] {
        pointer-events: auto;
    }
}

/*base*/
#container{
 	overflow: hidden;
}
.container{
	position: relative;
	margin: 0;
	padding: 0;
	max-width: 100%;
}
.wrap{
	margin: 0 auto;
	max-width: 1130px;
	padding: 0 15px;
}
.wrap.wide{
	max-width: 1350px;
}

/*ヘッダー*/
#header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 11;
}
#header #hinr{
	align-items: center;
	position: relative;
	margin: 0 auto;
	padding: 0 40px;
	width: 100%;
	height: var(--header-height);
	font-size: 14px;
}
#header .left{
	color: #272931;
	font-weight: bold;
	line-height: 1.5;
}
#header h1{
	margin: 0;
	font-size: 14px;
}
#header .left img{
	display: inline-block;
	margin-right: 10px;
}
#header .contact{
	color: #fff;
	font-size: 15px;
	text-align: center;
}
#header .contact span{
	display: block;
	text-shadow: 0px 4px 9px rgba(0,0,0,0.9);
}
#header .contact i{
	margin: 0 3px;
	font-size: 14px;
}
#header .menu-trigger{
	display: none;
	position: fixed;
	top: 7px;
	right: 15px;
	width: 60px;
	height: 44px;
	background: linear-gradient(90deg, rgba(107, 107, 107,1) 3%,rgba(106, 106, 106,1) 3%,rgba(1, 1, 1,1) 98%);
	clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
	z-index: 30;
}
#header .menu-trigger.active{
	background: #000;
}
.menu-trigger .inr{
	position: relative;
	width: 24px;
	height: 26px;
	cursor: pointer;
    transition: all .3s;
}
.menu-trigger span {
	position: absolute;
	right: 0;
	width: 14px;
	height: 3px;
	background: #fff;
	transition: all .3s;
}
.menu-trigger span:nth-of-type(2){
	width: 100%;
}
.on .menu-trigger span {
	background: #222;
}
.menu-trigger span:nth-of-type(1) {
	top: 0;
	right: 2px;
}
.menu-trigger span:nth-of-type(2) {
	top: 50%;
	transform: translateY(-50%);
}
.menu-trigger span:nth-of-type(3) {
	right: 7px;
	bottom: 0;
}
.menu-trigger.active span:nth-of-type(1) {
	top: 50%;
	right: 0;
	width: 100%;
	transform: translateY(-50%) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
	opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
	right: 0;
	bottom: 50%;
	width: 100%;
	transform: translateY(50%) rotate(45deg);
}
.sp-menu{
	position: fixed;
	right: -100%;
	bottom: 0;
	width: auto;
	padding: 20px;
	padding-bottom: 45px;
	width: 375px;
	height: 100%;
	background: url(../img/sp-menu-bg.webp) no-repeat center;
	background-size: cover;
    transition: all .8s cubic-bezier(0.19, 1, 0.22, 1);
    overflow: auto;
	z-index: 20;
}
.sp-menu.on{
	right: 0;
} 
.sp-menu a{
	color: #fff;
}
.sp-menu .upper{
	margin-bottom: 60px;
}
.sp-menu .logo{
	display: block;
	margin-left: -7px;
	margin-bottom: 40px;
	width: 102px;
}
.sp-menu li{
	padding-top: 30px;
	padding-bottom: 10px;
	background: url(../img/arrow.svg) no-repeat right bottom 18px;
	background-size: 7px auto;
	border-bottom: #fff 1px solid;
}
.sp-menu li a{
	display: block;
	padding-right: 10px;
	font-size: 20px;
	font-weight: normal;
	line-height: 1.5;
}
.sp-menu .bottom.contact{
	text-align: center;
}
.sp-menu .btn-s1{
	padding-top: 20px;
	width: 299px;
	height: 60px;
	font-size: 18px;
	background: url(../img/button03.png) no-repeat center;
	background-size: 100% auto;
}
.sp-menu .btn-s1:before{
	right: 28px;
	background-position: center 25px;
}

@media screen and (max-width:900px) {
	#header .right,
	#header h1 span{
		display: none;
	}
	#header .menu-trigger{
		display: flex;
		align-items: center;
		justify-content: center;
	}
}

@media screen and (max-width:767px) {
	.home .fixed-menu,
	.home .fixed-menu_top,
	.home #header h1 a{
		opacity: 0;
		pointer-events: none;
	}
	body.show .fixed-menu,
	body.show .fixed-menu_top,
	body.show #header h1 a{
		opacity: 1;
		pointer-events: auto;
	}
}

@media screen and (max-width:500px) {
	.sp-menu{
		width: 100%;
	}
}

/*メインカラム*/
.top-mv{
	padding-top: 105px;
	background: url(../img/mv-bg.webp) no-repeat center;
	background-size: cover;
}
.top-mv .wrap{
	max-width: 1190px;
}
.top-mv .upper{
	margin-bottom: 45px;
}
.top-mv .middle{
	margin-bottom: 40px;
	font-size: 20px;
	font-weight: bold;
	font-style: italic;
	line-height: 1.5;
}
.top-mv .middle>div{
	display: inline-block;
	padding-left: 30px;
	text-align: center;
}
.top-mv .middle p{
	margin-bottom: 45px;
}
.top-mv .middle strong.s1{
	color: #008951;
	font-size: 26px;
}
.top-mv .middle strong.s2{
	color: #EB6100;
	font-size: 26px;
}
.top-mv .middle i{
	display: inline-block;
	position: relative;
	height: 36px;
	font-style: italic;
}
.top-mv .middle i:before{
	content: '・';
	position: absolute;
	top: -13px;
	left: 0;
	width: 100%;
	color: #008951;
	font-size: 16px;
	text-align: center;
}
.top-mv .middle .contact {
	position: relative;
}
.top-mv .middle .contact span{
	position: absolute;
	top: -22px;
	left: 50%;
	width: 227px;
	height: 36px;
	font-size: 16px;
	font-style: normal;
	line-height: 34px;
	text-align: center;
	background: #fff;
	border: #fd7746 1px solid;
    transform: translateX(-50%);
	z-index: 2;
}
.top-mv .middle .contact span b{
	margin-left: 5px;
	color: #DC3434;
	font-size: 20px;
}
.top-mv .bottom {
	margin: 0 auto;
	padding: 25px 7%;
	max-width: 745px;
	font-weight: bold;
	font-size: 16px;
	line-height: 1.5;
	background: #EAF2F2;
	box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
    transform: translateY(70px);
}
.top-mv .bottom dt{
	position: relative;
	margin-bottom: 10px;
	padding: 0 50px;
	font-size: 20px;
	text-align: center;
}
.top-mv .bottom dt:after,
.top-mv .bottom dt:before{
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 6.5%;
	height: 1px;
	background: #12966D;
    transform: translateY(-50%);
}
.top-mv .bottom dt:after{
	left: auto;
	right: 0;
}
.top-mv .bottom dt b{
	color: #0C7F5B;
}
.top-mv .bottom dt i{
	font-size: 16px;
}
.top-mv .bottom dd{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px 15px;
}
.top-mv .bottom span{
	display: block;
	padding: 3px 10px;
	background: #fff;
	border: #c4c4c4 1px solid;
}
.top-mv .fixed-menu {
	position: fixed;
	top: auto;
	bottom: 10px;
	transform: translateY(0);
	right: 35px;
	padding-top: 5px;
	width: 281px;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
	background: rgba(255,255,255, 0.9);
	border: #cdcdcd 1px solid;
    transition: all .3s;
	z-index: 10;
}
.top-mv .fixed-menu .close{
	position: absolute;
	top: 14px;
	right: 12px;
	width: 15px;
	height: 15px;
	cursor: pointer;
	background: url(../img/icon-close.svg) no-repeat center;
	z-index: 2;
}
.top-mv .fixed-menu a{
	color: var(--oc-primary-color);
}
.top-mv .fixed-menu a:hover{
	opacity: 0.8;
}
.top-mv .fixed-menu p{
	margin-bottom: 10px;
}
.top-mv .fixed-menu span.s1{
	color: #EB6100;
	font-size: 30px;
}
.top-mv .fixed-menu span.s1 i{
	font-size: 16px;
}
.top-mv .fixed-menu span.s1 i.s1{
	font-size: 19px;
}
.top-mv .fixed-menu span.s2{
	display: inline-block;
	margin-bottom: 5px;
	color: #008951;
	font-size: 18px;
}
.top-mv .fixed-menu span.s2 b{
	display: inline-block;
	margin-right: 3px;
	padding: 0 5px;
	height: 27px;
	color: #fff;
	font-size: 16px;
	line-height: 25px;
	background: #008951;
}
.top-mv .fixed-menu span.s2 i{
	font-size: 16px;
}
.top-mv .fixed-menu .link{
	height: 40px;
	color: #fff;
	line-height: 38px;
	background: #272931 url(../img/arrow.svg) no-repeat right 60px center;
}
.top-mv .fixed-menu .link02{
	height: 40px;
	color: #fff;
	line-height: 38px;
	background: #EB6100 url(../img/arrow.svg) no-repeat right 40px center;
	/* margin-top: 3px; */
}
.top-mv .fixed-menu_top {
	position: fixed;
	top: auto;
	bottom: 10px;
	transform: translateY(0);
	left: 35px;
    transition: all .3s;
	z-index: 10;
}
.top-mv .fixed-menu_top .link_top{
	width: 50px;
	height: 50px;
	background: #272931;
	border-radius: 50%;
  }
  .top-mv .fixed-menu_top .link_top a{
	position: relative;
	display: block;
	width: 50px;
	height: 50px;
	text-decoration: none;
  }
  .top-mv .fixed-menu_top .link_top a::before {
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: '\f106';
	font-size: 25px;
	color: #fff;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	width: 25px;
	height: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  .top-mv .fixed-menu_top .link_top:hover{
	opacity: 0.7;
  }
.top-content.c01 {
	padding-top: 120px;
	padding-bottom: 65px;
	text-align: center;
	background: url(../img/top-c01-bg.webp) no-repeat center;
	background-size: cover;
}
.top-content.c03 .h2,
.top-content.c01 .h2{
	position: relative;
	margin-bottom: 50px;
	font-size: 28px;
	font-style: italic;
	line-height: 1.5;
	letter-spacing: -3px;
}
.top-content.c01 .h2:before{
	content: attr(data-en);
	position: absolute;
	left: 0;
	bottom: -10px;
	width: 100%;
	color: #F4F4F4;
	font-family: "Cormorant", serif;
	font-optical-sizing: auto;
	font-weight: bold;
	font-style: normal;
	font-size: 82px;
	line-height: 1;
}
.top-content.c01 .h2>div{
	position: relative;
}
.top-content.c03 .h2 span,
.top-content.c01 .h2 span.s1{
	display: inline-block;
	margin-bottom: 10px;
	width: 260px;
	height: 40px;
	color: #fff;
	font-size: 20px;
	line-height: 40px;
	letter-spacing: 0;
	background: linear-gradient(130deg, rgb(18, 133, 83) 1%,rgba(17, 132, 82,1) 1%,rgba(12, 67, 41,1) 100%);
	clip-path: polygon(7px 0%, 100% 0%, calc(100% - 7px) 100%, 0% 100%);
}
.top-content.c01 .h2 strong,
.top-content.c01 .h2 span.s2{
	background: linear-gradient(90deg, #4EBB8C 0%, #0c4329 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.top-content.c01 .h2 span.s2{
	margin: 0 -10px;
	padding: 0 10px;
}
.top-content.c01 .h2 strong{
	display: inline-block;
	margin: 0 -10px;
	padding: 0 10px;
	font-size: 52px;
	letter-spacing: 0;
	line-height: 1.1;
}
.top-content.c01 p{
	font-weight: 500;
	font-size: 20px;
	letter-spacing: 0.02em;
}
.top-content.c01 .inr {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px 30px;
	margin: 0 auto;
	max-width: 800px;
}
.top-content.c01 .inr span{
	display: block;
	width: 173px;
	height: 80px;
}
.top-content.c01 .inr span img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.top-content.c02 {
	padding: 85px 0;
	font-weight: 500;
	text-align: center;
	background: url(../img/top-c02-bg.webp) no-repeat center;
	background-size: cover;
}
.top-content.c02 .h2{
	margin-bottom: 25px;
	color: #06725B;
	font-size: 42px;
	font-weight: bold;
	line-height: 1.5;
	letter-spacing: 0.02em;
}
.top-content.c03 {
	padding-top: 60px;
	padding-bottom: 100px;
	background: url(../img/top-c03-bg.webp) no-repeat center;
	background-size: cover;
}
.top-content.c03 .upper{
	margin-bottom: 10px;
	font-weight: 500;
	text-align: center;
}
.top-content.c03 .h2{
	font-size: 42px;
	font-style: normal;
	line-height: 1.3;
	letter-spacing: -0.02em;
}
.top-content.c03 .h2 strong{
	color: #06725B;
	font-style: normal;
}
.top-content.c03 .h2 i{
	font-size: 32px;
}
.top-content.c03 .upper p:not(:last-child){
	margin-bottom: 15px;
}
.top-content.c03 .upper b{
	color: #E25829;
	font-weight: bold;
}
.top-content.c03 .bottom {
	position: relative;
	padding-top: 110px;
	color: #fff;
}
.top-content.c03 .bottom:before{
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 1180px;
	height: 100%;
	background: url(../img/top-c03-bg02.webp) no-repeat center;
	background-size: contain;
    transform: translateX(-50%);
}
.top-content.c03 .bottom>div{
	position: relative;
}
.top-content.c03 .h3{
	margin-bottom: 30px;
	font-size: 32px;
	font-style: italic;
	line-height: 1.5;
	text-align: center;
}
.top-content.c03 .bottom .upr,
.top-content.c03 .bottom .btm{
	margin: 0 auto;
	max-width: 800px;
}
.top-content.c03 .bottom .upr{
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
	position: relative;
	margin-bottom: 90px;
}
.top-content.c03 .bottom .upr:before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: -65px;
	width: 325px;
	height: 18px;
	background: #696969;
	clip-path: polygon(50% 100%, 0 0, 100% 0);
    transform: translateX(-50%);
}
.top-content.c03 dl{
	padding: 25px 15px;
	width: 31.25%;
	text-align: center;
	background: #0C8C71;
}
.top-content.c03 dl:nth-of-type(2){
	background: #06725B;
}
.top-content.c03 dl:nth-of-type(3){
	background: #0F4E40;
}
.top-content.c03 dt{
	display: inline-block;
	margin-bottom: 10px;
	padding-bottom: 5px;
	font-size: 20px;
	line-height: 1.5;
	letter-spacing: 0.04em;
	border-bottom: #fff 1px solid;
}
.top-content.c03 dd{
	font-size: 16px;
	letter-spacing: 0.02em;
	text-align: left;
}
.top-content.c03 dd ul{
	display: flex;
	flex-wrap: wrap;
	gap: 0 15px;
}
.top-content.c03 dd li{
	position: relative;
}
.top-content.c03 dd li:before{
	content: '・';
	display: inline-block;
}
.top-content.c03 .btm{
	font-size: 26px;
	line-height: 1.5;
	text-align: center;
}
.top-content.c03 .btm ul{ 
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 7px 15px;
	margin: 0 auto;
	margin-bottom: 5px;
	max-width: 580px;
}
.top-content.c03 .btm li{
	padding: 0 10px;
	height: 31px;
	color: #06725B;
	font-size: 16px;
	font-weight: bold;
	line-height: 31px;
	background: #fff;
}
.top-content.c04 {
	padding-top: 100px;
	padding-bottom: 315px;
	background: url(../img/top-c04-bg.webp) no-repeat center 0;
	background-size: cover;
}
.top-content.c04 .wrap{
	position: relative;
}
.top-content.c04 .inr-wrap {
    margin: 0 auto;           /* ← 中央寄せ */
    width: 100%;              /* ← 固定幅を解除 */
    overflow: hidden;
    max-width: 1200px;        /* ← 任意。全体幅制限をつけるなら */
}

.top-content.c04 .inr {
    width: auto;              /* ← 固定364pxを解除 */
}

.top-content.c04 .next {
	position: absolute;
	top: 315px;
	width: 50px;
	height: 50px;
	background: url(../img/arrow02.svg) no-repeat center 0;
	background-size: 100% auto;
	cursor: pointer;
}

/* ← 左側：前へボタン */
.top-content.c04 .prev {
	right: -50px;
	transform: rotate(180deg); /* 画像を反転させて左向きに */
}

/* → 右側：次へボタン */
.top-content.c04 .next-right {
	left: -50px;
}


.top-content.c04 h2{
	position: relative;
	margin-bottom: 45px;
	padding-top: 40px;
	color: #fff;
	font-size: 42px;
	text-align: center;
	font-style: italic;
}
.top-content.c04 h2:before{
	content: attr(data-en);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	color: #3F3F3F;
	font-size: 82px;
	font-family: "Cormorant", serif;
	font-optical-sizing: auto;
	font-weight: bold;
	font-style: normal;
	line-height: 1;
	white-space: nowrap;
}
.top-content.c04 h2 span{
	position: relative;
}
/* .top-content.c04 .inr{
	width: 364px;
} */
.top-content .inr-wrap{
	margin-left: 90px;
	width: 4000px;
	overflow: hidden;
}
.top-content .slick-arrow,
.top-content .slick-dots{
	display: none!important;
}
.top-content .slick-track{
	display: flex;
	gap: 20px;
	margin-bottom: 40px;
	justify-content: center;  /* ← スライド全体を中央寄せ */
}
.top-content .slick-slide{
	float: none;
	height: auto!important;
}
.top-content .slick-list{
	overflow: visible;
}
.top-content.c04 .box{
	padding: 20px;
	padding-top: 25px;
	height: 100%;
	background: #fff;
}
.top-content.c04 img{
	display: block;
	margin-bottom: 10px;
	width: 100%;
	height: auto;
}
.top-content.c04 .meta{
	font-size: 16px;
	line-height: 1.5;
}
.top-content.c04 .meta span{
	display: inline-block;
	margin-right: 5px;
	width: 60px;
	height: 25px;
	font-size: 14px;
	text-align: center;
	line-height: 22px;
	border: #d9d9d9 1px solid;
}
.top-content.c04 .case-title{
	margin-bottom: 12px;
	color: #008951;
	font-size: 20px;
	font-weight: bold;
	line-height: 1.5;
}
.top-content.c04 .location{
	margin-bottom: 10px;
}
.top-content.c04 .link{
	color: #fff;
	font-weight: 500;
	font-size: 14px;
	text-align: center;
}
.top-content.c04 .link SPAN{
	display: block;
	margin-bottom: 5px;
}
.top-content.c04 .link b{
	font-size: 16px;
	font-weight: 500;
}
.top-content.c04 .link i{
	color: #FFD335;
}
.top-content.c04 .link a{
	display: inline-block;
	width: 338px;
	height: 67px;
	color: #fff;
	font-size: 20px;
	text-align: center;
	line-height: 65px;
	background: rgba(38,38,38,0);
	border: #fff 1px solid;
	border-radius: 5px;
}
.top-content.c04 .link a:hover{
	background: rgba(38,38,38,0.8);
}
.top-content.c04 .link a span{
	display: block;
	padding-right: 20px;
	background: url(../img/arrow.svg) no-repeat right 47px center;
	background-size: 7px auto;
    transition: all .3s;
}
.top-content.c04 .link a:hover span{
	opacity: 0.7;
}
.top-content.c05{
	position: relative;
	margin-top: -300px;
	padding: 125px 0;
	padding-bottom: 100px;
	color: #fff;
	text-align: center;
	background: url(../img/top-c05-bg.webp) no-repeat center;
	background-size: auto 100%;
	z-index: 2;
}
.top-content.c05 .upper{
	margin-bottom: 35px;
	font-size: 20px;
	letter-spacing: 0.02em;
}
.top-content.c05 .h3{
	margin-bottom: 20px;
	font-size: 42px;
	font-style: italic;
	line-height: 1.5;
	letter-spacing: -0.02em;
	background: linear-gradient(90deg, rgba(255, 249, 195,1) 0%,rgba(255, 219, 35,1) 90%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.top-content.c05 .upper strong{
	display: inline;
	margin-right: 5px;
	padding: 0 10px;
	font-weight: 500;
	background: #222222;
}
.top-content.c05 .bottom{
	font-size: 16px;
	letter-spacing: 0.02em;
}
.top-content.c05 .bottom p{
	margin-bottom: 15px;
}
.top-content.c05 .bottom b{
	display: inline-block;
	margin-bottom: 5px;
	padding: 0 5px;
	padding-bottom: 15px;
	font-size: 24px;
	font-weight: normal;
	background: url(../img/deco.svg) no-repeat center bottom;
}
.top-content.c05 .bottom span{
	color: #FFD335;
}
.top-content.c05 .bottom i{
	display: inline-block;
	position: relative;
	height: 24px;
}
.top-content.c05 .bottom i:before{
	content: '・';
	position: absolute;
	top: -11px;
	left: 0;
	width: 100%;
	color: #FFD335;
	text-align: center;
}
.top-content.c06 {
	position: relative;
	margin-top: -300px;
	padding-top: 370px;
	padding-bottom: 140px;
	color: #fff;
	background: url(../img/top-c06-bg.webp) no-repeat center bottom;
	background-size: 100% auto;
}
.top-content.c06 .h2{
	margin-bottom: 55px;
	font-size: 42px;
	line-height: 1.5;
	letter-spacing: -0.02em;
	text-align: center;
}
.top-content.c06 .h2 b{
	display: inline-block;
	padding-bottom: 5px;
	font-size: 58px;
	line-height: 1.2;
	background: url(../img/deco02.webp) no-repeat center;
	background-size: cover;
}
.top-content.c06 ul{
	gap: 15px 0;
	margin: 0 auto;
	max-width: 754px;
}
.top-content.c06 li{
	padding: 10px 20px;
	padding-right: 5px;
	width: 45.8%;
	font-size: 20px;
	line-height: 1.5;
	letter-spacing: 0.02em;
	background: linear-gradient(130deg, rgba(0, 0, 0,1) 2%,rgba(0, 0, 0,1) 2%,rgba(0, 0, 0,0) 92%);
}
.top-content.c06 li span{
	color: #FFD335;
}
.top-content.c07 {
	margin-top: -150px;
	padding-top: 200px;
	padding-bottom: 75px;
	background: url(../img/top-c07-bg.webp) no-repeat center 0;
	background-size: 100% auto;
}
.top-content.c07 .h2{
	margin-bottom: 50px;
	font-size: 52px;
	line-height: 1.5;
	font-style: italic;
	text-align: center;
}
.top-content.c07 .h2 span{
	display: block;
	font-size: 32px;
}
.top-content.c07 .h2 b{
	color: #008951;
}
.top-content.c07 .h2 strong{
	display: inline-block;
	padding: 0 8px;
	color: #fff;
	line-height: 1.2;
	background: linear-gradient(132deg, rgba(18, 134, 84,1) 2%,rgba(17, 133, 83,1) 2%,rgba(12, 68, 42,1) 100%);
	clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.top-content.c07 .inr{
	padding: 45px 13%;
	text-align: center;
	background: #fff;
	box-shadow: 0px 4px 20px 0px rgba(0,0,0,0.15);
}
.top-content.c07 .h3{
	display: inline-block;
	position: relative;
	margin-bottom: 35px;
	padding-bottom: 15px;
	font-size: 32px;
	line-height: 1.5;
	text-align: center;
}
.top-content.c07 .h3:before{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, rgba(166, 162, 162,1) 1%,rgba(165, 161, 161,1) 1%,rgba(4, 4, 4,1) 100%);
}
.top-content.c07 .box{
	display: flex;
	flex-wrap: wrap;
	gap: 40px 6.5%;
}
.top-content.c07 dl{
	width: 29%;
	text-align: left;
	line-height: 1.5;
}
.top-content.c07 dt{
	display: flex;
	align-items: center;
	position: relative;
	margin-bottom: 5px;
	padding-left: 55px;
	min-height: 50px;
	color: #000;
	font-size: 16px;
	white-space: nowrap;
}
.top-content.c07 dt:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 50px;
	height: 50px;
}
.top-content.c07 .d1 dt:before{
	background: url(../img/top-c07-01.svg) no-repeat 0 center;
	background-size: 100% auto;
}
.top-content.c07 .d2 dt:before{
	background: url(../img/top-c07-02.svg) no-repeat 0 center;
	background-size: 100% auto;
}
.top-content.c07 .d3 dt:before{
	background: url(../img/top-c07-03.svg) no-repeat 0 center;
	background-size: 100% auto;
}
.top-content.c07 .d4 dt:before{
	background: url(../img/top-c07-04.svg) no-repeat 0 center;
	background-size: 100% auto;
}
.top-content.c07 .d5 dt:before{
	background: url(../img/top-c07-05.svg) no-repeat 0 center;
	background-size: 100% auto;
}
.top-content.c07 .d6 dt:before{
	background: url(../img/top-c07-06.svg) no-repeat 0 center;
	background-size: 100% auto;
}
.top-content.c07 .d7 dt:before{
	background: url(../img/top-c07-07.svg) no-repeat 0 center;
	background-size: 100% auto;
}
.top-content.c07 .d8 dt:before{
	background: url(../img/top-c07-08.svg) no-repeat 0 center;
	background-size: 100% auto;
}
.top-content.c07 dd{
	font-size: 15px;
}
.top-content.c08 {
	padding-top: 115px;
	padding-bottom: 35px;
	background: url(../img/top-c08-bg.webp) no-repeat center;
	background-size: cover;
}
.top-content.c08 h2{
	position: relative;
	margin-bottom: 80px;
	padding-top: 35px;
	font-size: 42px;
	font-style: italic;
	line-height: 1.5;
	text-align: center;
}
.top-content.c08 h2:before{
	content: attr(data-en);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	color: #E8E8E8;
	font-size: 82px;
	font-family: "Cormorant", serif;
	font-optical-sizing: auto;
	font-weight: bold;
	font-style: normal;
	line-height: 1;
}
.top-content.c08 h2 span{
	position: relative;
}
.top-content.c08 h2 b{
	color: #008951;
}
.top-content.c08 .inr{
	gap: 10px 0;
    counter-reset: order;
}
.top-content.c08 .box{
	position: relative;
	padding-left: 45px;
	width: 49.5%;
}
.top-content.c08 .box:nth-of-type(even){
	margin-top: 200px;
}
.top-content.c08 .box:before{
    counter-increment: order;
    content: counter(order, decimal-leading-zero);
	position: absolute;
	top: -42px;
	left: 0;
	color: #E2E2E2;
	font-size: 120px;
	font-family: "Cormorant Infant", serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
	line-height: 1;
}
.top-content.c08 .image{
	position: relative;
	margin-bottom: 20px;
}
.top-content.c08 dl{
	line-height: 1.5;
}
.top-content.c08 dt{
	margin-bottom: 10px;
	color: #008951;
	font-size: 26px;
}
.top-content.c08 dd span{
	color: #008951;
}
.top-content.c09 {
	position: relative;
	padding-top: 50px;
	line-height: 1.5;
	text-align: center;
	background: url(../img/top-c09-bg.webp) no-repeat center 0;
	background-size: 100% auto;
}
.top-content.c09 .upper {
	margin-bottom: 10px;
}
.top-content.c09 .upper p.s1 {
	display: inline-block;
	margin-bottom: 15px;
	padding: 5px 20px;
	padding-bottom: 10px;
	color: #fff;
	font-size: 24px;
	background: linear-gradient(90deg, rgba(1, 1, 1,1) 1%,rgba(95, 95, 95,1) 100%);
	clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}
.top-content.c09 .upper p.s1 span {
	color: #FFD335;
}
.top-content.c09 .upper p.s1 b{
	font-size: 34px;
}
.top-content.c09 .upper p.s2 {
	color: #000;
	font-size: 32px;
}
.top-content.c09 .upper p.s2 strong{
	display: inline-block;
	font-size: 32px;
    background: linear-gradient(90deg, #128352 0%, #0B3E26 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.top-content.c09 .upper p.s2 b{
	font-size: 42px;
}
.top-content.c09 .middle {
	position: relative;
	margin: 0 auto;
	padding-top: 70px;
	padding-bottom: 130px;
	max-width: 866px;
	background: url(../img/top-c09-bg03.webp) no-repeat center;
	background-size: cover;
	z-index: 2;
}
.top-content.c09 .middle p.s1 {
	display: inline-block;
	font-size: 26px;
    background: linear-gradient(90deg, #FAEB7C 0%, #DCA70E 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.top-content.c09 .middle p.s1 b{
	font-size: 38px;
}
.top-content.c09 .middle p.s2 {
	color: #fff;
	font-size: 26px;
	font-style: italic;
}
.top-content.c09 .middle p.s2 i {
	display: inline-block;
	position: relative;
	height: 39px;
	font-style: italic;
}
.top-content.c09 .middle p.s2 i:before{
	content: '・';
	position: absolute;
	top: -20px;
	left: 0;
	width: 100%;
	color: #FFD335;
	text-align: center;
}
.top-content.c09 .middle p.s2 b {
	font-size: 38px;
}
.top-content.c09 .bottom {
	position: relative;
	margin-top: -255px;
	padding-top: 250px;
	padding-bottom: 75px;
	color: #fff;
	text-align: left;
}
.top-content.c09 .bottom:before{
	content: '';
	position: absolute;
	top: 0;
	left: -110px;
	width: calc(100% + 220px);
	height: 100%;
	background: url(../img/top-c09-bg02.webp) no-repeat center;
	background-size: cover;
}
.top-content.c09 .bottom>div{
	position: relative;
}
.top-content.c09 .bottom .upr p{
	margin-bottom: 15px;
	font-size: 32px;
	font-style: italic;
	text-align: center;
}
.top-content.c09 .bottom .upr strong{
	color: #FFD335;
}
.top-content.c09 .bottom .image{
	margin-bottom: 35px;
}
.top-content.c09 .bottom .btm{
	gap: 20px 0;
	margin: 0 auto;
	max-width: 1000px;
}
.top-content.c09 .bottom dl{
	padding: 20px 25px 30px;
	width: 46%;
	border: #fff 1px solid;
}
.top-content.c09 .bottom dt{
	margin-bottom: 20px;
	font-size: 26px;
	text-align: center;
}
.top-content.c09 .bottom li{
	padding-left: 20px;
	font-size: 16px;
	background: url(../img/icon-check.svg) no-repeat 0 center;
}
.top-content.c09 .bottom li:not(:last-child){
	margin-bottom: 20px;
}
.top-content.c09 .bottom span{
	padding: 1px 0;
	background: #008951;
}
.top-content.c10 {
	margin-top: -170px;
	padding-top: 280px;
	padding-bottom: 20px;
	line-height: 1.5;
	background: url(../img/top-c10-bg.webp) no-repeat center 0;
	background-size: cover;
}
.top-content.c10 .wrap{
	position: relative;
}
.top-content.c10 .inr-wrap {
    margin: 0 auto;           /* ← 中央寄せ */
    width: 100%;              /* ← 固定幅を解除 */
    overflow: hidden;
    max-width: 1200px;        /* ← 任意。全体幅制限をつけるなら */
}

.top-content.c10 .inr {
    width: auto;              /* ← 固定364pxを解除 */
}

.top-content.c10 .next{
	position: absolute;
	top: 300px;
	width: 50px;
	height: 50px;
	background: #fff url(../img/arrow04.svg) no-repeat center 0;
	background-size: 100% auto;
	border-radius: 100%;
	cursor: pointer;
	z-index: 5;
}
/* ← 左側：前へボタン */
.top-content.c10 .prev {
	right: -50px;
	transform: rotate(180deg); /* 画像を反転させて左向きに */
}

/* → 右側：次へボタン */
.top-content.c10 .next-right {
	left: -50px;
}
.top-content.c12 h2,
.top-content.c11 h2,
.top-content.c10 h2{
	position: relative;
	margin-bottom: 35px;
	padding-top: 40px;
	font-size: 42px;
	font-style: italic;
	text-align: center;
}
.top-content.c12 h2:before,
.top-content.c11 h2:before,
.top-content.c10 h2:before{
	content: attr(data-en);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	color: #D7DFE3;
	font-size: 82px;
	font-family: "Cormorant", serif;
	font-optical-sizing: auto;
	font-weight: bold;
	font-style: normal;
	line-height: 1;
}
.top-content.c12 h2 span,
.top-content.c11 h2 span,
.top-content.c10 h2 span{
	position: relative;
}
/* .top-content.c10 .inr{
	width: 394px;
} */
.top-content.c10 .slick-track{
	margin-bottom: 10px;
}
.top-content.c10 .box{
	padding: 20px 15px;
	background: #fff;
}
.top-content.c10 .box a{
	color: var(--oc-primary-color);
}
.top-content.c10 .box .upr{
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 15px;
}
.top-content.c10 figure{
	width: 120px;
}
.top-content.c10 .box img{
	width: 120px;
	height: 120px;
	object-fit: cover;
	border-radius: 100%;
}
.top-content.c10 .voice-title{
	flex: 1;
	color: #008951;
	font-size: 20px;
	line-height: 1.5;
}
.top-content.c10 .position{
	display: inline-block;
	margin-bottom: 10px;
	padding: 1px 3px;
	color: #fff;
	font-size: 14px;
	background: #008951;
}
.top-content.c10 .voice{
	font-size: 15px;
	line-height: 1.8;
}
.top-content.c10 p.s1{
	margin: 0 auto;
	max-width: 1100px;
	font-size: 14px;
	font-weight: bold;
	text-align: right;
}
.content-wrap{
	padding-top: 90px;
	padding-bottom: 430px;
	background: url(../img/top-content-bg.webp) no-repeat center;
	background-size: cover;
}
.top-content.c11 {
	margin-bottom: 75px;
}
.top-content.c11 h2{
	margin-bottom: 0;
}
.top-content.c11 h2:before{
	content: attr(data-en);
}
.top-content.c11 .inr{
    counter-reset: order;
	position: relative;
	margin: 0 -40px;
	margin-top: -10px;
	padding: 0 16%;
	padding-top: 105px;
	padding-bottom: 185px;
}
.top-content.c11 .inr:before{
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 1180px;
	height: 100%;
	background: url(../img/top-c11-bg.webp) no-repeat center 0;
	background-size: contain;
    transform: translateX(-50%);
}
.top-content.c11 dl{
	position: relative;
	margin-bottom: 15px;
	padding-left: 100px;
	padding-bottom: 25px;
}
.top-content.c11 dl:before{
	content: '';
	position: absolute;
	left: 28px;
	bottom: 0;
	width: 1px;
	height: calc(100% - 50px);
	background: #8C8C8C;
}
.top-content.c11 dt:after,
.top-content.c11 dt:before{
    content: 'STEP';
	position: absolute;
	top: 10px;
	left: 0;
	color: #fff;
	font-size: 16px;
	font-family: "Cormorant", serif;
	font-optical-sizing: auto;
	font-weight: bold;
	font-style: normal;
	line-height: 1;
	letter-spacing: 0.03em;
}
.top-content.c11 dt:after{
    counter-increment: order;
    content: counter(order, decimal-leading-zero);
	left: 40px;
	font-family: "Cormorant Infant", serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
}
.top-content.c11 dt{
	margin-bottom: 10px;
	color: #FFD335;
	font-size: 26px;
	line-height: 1.5;
	letter-spacing: 0.03em;
}
.top-content.c11 dd{
	color: #fff;
	font-weight: 500;
}
.top-content.c12 dl{
	position: relative;
	margin-bottom: 25px;
	background: #fff;
	cursor: pointer;
}
.top-content.c12 dt,
.top-content.c12 dd{
	position: relative;
	padding: 30px 100px 30px 80px;
	font-weight: 500;
}
.top-content.c12 dt:before,
.top-content.c12 dd:before {
	content: 'Q';
	position: absolute;
	top: 33px;
	left: 45px;
    width: auto;
    color: #008951;
    font-size: 20px;
	font-family: "Cormorant Infant", serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
    line-height: 1;
}
.top-content.c12 dt:after{
	content: '';
	position: absolute;
	top: 50%;
	right: 45px;
	width: 18px;
	height: 18px;
	background: url(../img/icon-plus.svg) no-repeat center;
	background-size: 100% auto;
    transform: translateY(-50%);
}
.top-content.c12 dl.open dt:after{
	background: url(../img/icon-minus.svg) no-repeat center;
	background-size: 100% auto;
}
.top-content.c12 dd{
	display: none;
}
.top-content.c12 dd:before{
	content: 'A';
	color: #FD6D38;
}
.top-content.c12 dd:after {
	content: '';
	position: absolute;
	top: 0;
	left: 100px;
	width: calc(100% - 200px);
	height: 1px;
	background: #999999;
}
.top-content.c13 {
	margin-top: -380px;
	padding: 90px 0;
	min-height: 835px;
	color: #fff;
	text-align: center;
	background: url(../img/top-c13-bg.png) no-repeat center;
	background-size: auto 100%;
}
.top-content.c13 .h3{
	margin-bottom: 20px;
	font-size: 42px;
	font-style: italic;
	line-height: 1.5;
	letter-spacing: -0.02em;
	background: linear-gradient(90deg, rgba(255, 249, 195,1) 0%,rgba(255, 219, 35,1) 90%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.top-content.c13 .upper{
	margin-bottom: 30px;
	font-size: 16px;
	letter-spacing: 0.02em;
}
.top-content.c13 .upper p{
	margin-bottom: 15px;
}
.top-content.c13 .upper b{
	display: inline-block;
	margin-bottom: 5px;
	padding: 0 5px;
	padding-bottom: 15px;
	font-size: 24px;
	font-weight: normal;
	background: url(../img/deco.svg) no-repeat center bottom;
}
.top-content.c13 .upper span{
	color: #FFD335;
}
.top-content.c13 .upper i{
	display: inline-block;
	position: relative;
	height: 24px;
}
.top-content.c13 .upper i:before{
	content: '・';
	position: absolute;
	top: -11px;
	left: 0;
	width: 100%;
	color: #FFD335;
	text-align: center;
}
.top-content.c13 .bottom {
	font-size: 14px;
	line-height: 1.5;
}
.top-content.c13 .bottom p.s1{
	margin-bottom: 10px;
	font-size: 26px;
	font-style: italic;
}
.top-content.c13 ol{
    counter-reset: order;
	margin: 0 auto;
	margin-bottom: 10px;
	max-width: 375px;
}
.top-content.c13 li{
	position: relative;
	padding-top: 10px;
	height: 67px;
	font-size: 16px;
	font-weight: normal;
	line-height: 1;
	background: #0C8C71;
	clip-path: polygon(0 0, 100% 0%, 100% calc(100% - 8px), 50% 100%, 0 calc(100% - 8px));
}
.top-content.c13 li:before{
    counter-increment: order;
    content: 'STEP' counter(order, decimal-leading-zero);
	display: block;
	margin-bottom: 7px;
	font-size: 14px;
	font-family: "Shippori Mincho", serif;
	font-weight: 700;
	font-style: normal;
}
.top-content.c13 li:not(:first-child){
	margin-top: -2px;
	padding-top: 18px;
	background: #06725B;
	clip-path: polygon(50% 8px, 100% 0, 100% calc(100% - 8px), 50% 100%, 0 calc(100% - 8px), 0 0);
}
.top-content.c13 li:last-child{
	background: #0F4E40;
}

@media screen and (max-width:1440px) {
	.top-content.c06 {
		background-size: auto;
	}
	.top-content.c09 {
		background-size: auto;
	}
}

/* ====== 1220px以下でSPと同じUIに変更 ====== */
@media screen and (max-width: 1220px) {

	  /* nav全体（矢印＋ドット）を横並び中央寄せに */
	  .top-content .slider-nav {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 15px;
		margin-top: 12px;
	  }
	
	/* slickの矢印・ドットを表示に切り替え */
	.top-content .slick-arrow,
	.top-content .slick-dots {
	  display: block !important;
	}

	.top-content .slick-arrow:before {
		display: none;
	}
  
	/* nav全体（矢印＋ドット）を横並び中央寄せに */
	.top-content .slider-nav {
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  gap: 15px;
	  margin-top: 12px;
	}
  
	/* 矢印ボタン（.slider-nav内に並ぶ） */
	.top-content .slick-arrow {
	  position: static;
	  width: 40px;
	  height: 40px;
	  background: url(../img/arrow02.svg) no-repeat center;
	  background-size: 100% auto;
	  border: none;
	  z-index: 1;
	  transform: none;
	  cursor: pointer;
	}
  
	.top-content .slick-prev {
	  order: 1;
	}
  
	.top-content .slick-next {
	  order: 3;
	  background: url(../img/arrow03.svg) no-repeat center;
	  background-size: 100% auto;
	}
  
	/* c10だけ別デザイン */
	.top-content.c10 .slick-arrow {
	  background: url(../img/arrow04.svg) no-repeat center;
	  background-size: 100% auto;
	}
	.top-content.c10 .slick-next {
	  background: url(../img/arrow05.svg) no-repeat center;
	  background-size: 100% auto;
	}
  
	/* ドットを中央に並べる */
	.top-content .slick-dots {
	  order: 2;
	  position: static;
	  display: flex !important;
	  align-items: center;
	  gap: 10px;
	  width: auto;
	  max-width: calc(100% - 110px);
	}
  
	.top-content .slick-dots li,
	.top-content .slick-dots button,
	.top-content .slick-dots button:before {
	  content: '';
	  margin: 0;
	  padding: 0;
	  width: 10px;
	  height: 10px;
	  border-radius: 100%;
	  opacity: 1;
	}
  
	.slick-dots button:before {
	  background: #CCCCCC;
	}
  
	.slick-dots .slick-active button:before {
	  background: #008951;
	}
  
	/* 旧の手作り矢印は非表示 */
	.top-content.c04 .next-right,
	.top-content.c04 .prev,
	.top-content.c10 .next-right,
	.top-content.c10 .prev
	 { display:none !important; }

	 .top-content.c04 .link {
        margin-top: 30px;
    }


  }
  

@media screen and (max-width:1000px) {
	.top-content.c11 .inr{
		padding-right: 10%;
		padding-left: 10%;
	}
}

@media screen and (max-width:820px) {
	.top-mv{
		padding-top: 60px;
		background: url(../img/mv-bg.webp) no-repeat 40% center;
		background-size: cover;
	}
	.top-mv .upper{
		margin: 0 auto;
		width: 70%;
	}
	.top-mv .fixed-menu {
		position: fixed;
		top: auto;
		right: 10px;
		bottom: 10px;
		transform: translateY(0);
	}
	.top-mv .fixed-menu_top {
		position: fixed;
		top: auto;
		bottom: 10px;
		transform: translateY(0);
		left: 10px;
	}
	.top-content.c07 .box{
		gap: 40px 5%;
	}
	.top-content.c07 dl{
		width: 47.5%;
	}
	.top-content.c09 .bottom dl{
		width: 100%;
	}
}

@media screen and (max-width:767px) {
	.top-mv{
		padding-top: 0;
		background: none;
	}
	.top-mv .wrap-inr{
		position: relative;
		margin: 0 -15px;
		margin-bottom: 25px;
		padding: 0 15px;
		padding-top: 45px;
		aspect-ratio: 125 / 211;
		height: auto;
		background: url(../img/mv-bg-sp.webp) no-repeat center 0;
		background-size: 100% auto;
	}
	.top-mv .upper{
		width: 98%;
		margin: 0;
		margin-bottom: 20px;
	}
	.top-mv .middle{
		margin-bottom: 0;
		font-size: 14px;
	}
	.top-mv .middle>div{
		padding: 0;
		text-align: left;
	}
	.top-mv .middle p{
		margin-bottom: 0;
	}
	.top-mv .middle strong.s1,
	.top-mv .middle strong.s2{
		font-size: 16px;
	}
	.top-mv .middle i{
		height: 21px;
	}
	.top-mv .middle i:before{
		top: -8px;
		font-size: 9px;
	}
	.top-mv .middle .contact {
		position: absolute;
		left: 50%;
		bottom: 15px;
		transform: translateX(-50%);
	}
	.top-mv .bottom {
		padding: 15px;
		font-size: 14px;
		text-align: center;
		transform: translateY(0);
	}
	.top-mv .bottom dt{
		display: inline-block;
		padding: 0 30px;
		font-size: 16px;
		line-height: 1.3;
	}
	.top-mv .bottom dt i{
		font-size: 14px;
	}
	.top-mv .bottom dd{
		gap: 3px 5px;
	}
	.top-mv .bottom span{
		padding: 2px 5px;
	}
	.top-content.c01 {
		padding-top: 55px;
		padding-bottom: 60px;
		background: url(../img/top-c01-bg-sp.webp) no-repeat center;
		background-size: cover;
	}
	.top-content.c03 .h2,
	.top-content.c01 .h2{
		margin-bottom: 20px;
		font-size: 22px;
		letter-spacing: -0.13em;
	}
	.top-content.c01 .h2:before{
		bottom: -10px;
		font-size: 48px;
	}
	.top-content.c03 .h2 span,
	.top-content.c01 .h2 span.s1{
		width: 200px;
		height: 34px;
		font-size: 16px;
		line-height: 34px;
	}
	.top-content.c01 .h2 strong{
		font-size: 32px;
		letter-spacing: -0.08em;
	}
	.top-content.c01 p{
		font-size: 16px;
	}
	.top-content.c01 .inr {
		gap: 7px 6.5%;
	}
	.top-content.c01 .inr span{
		aspect-ratio: 173 / 80;
		width: 29%;
		height: auto;
	}
	.top-content.c02 {
		padding-top: 65px;
		padding-bottom: 55px;
		background: url(../img/top-c02-bg-sp.webp) no-repeat center;
		background-size: cover;
	}
	.top-content.c02 .h2{
		margin-bottom: 30px;
		font-size: 32px;
		letter-spacing: -0.02em;
	}
	.top-content.c02 p{
		text-align: left;
	}
	.top-content.c02 p br{
		display: none;
	}
	.top-content.c03 {
		padding-bottom: 30px;
	}
	.top-content.c03 .upper{
		margin-bottom: 40px;
	}
	.top-content.c03 .bottom{
		padding-bottom: 50px;
	}
	.top-content.c03 .bottom:before{
		width: calc(100% + 30px);
		background: url(../img/top-c03-bg02-sp.png) no-repeat center 0;
		background-size: contain;
	}
	.top-content.c03 .h2 {
		margin-bottom: 25px;
        font-size: 32px;
    }
	.top-content.c03 .upper p{
		text-align: left;
	}
	.top-content.c03 .h3{
		margin-bottom: 15px;
		font-size: 24px;
	}
	.top-content.c03 .bottom .upr{
		padding: 0 35px;
	}
	.top-content.c03 dl{
		width: 100%;
	}
	.top-content.c03 dt{
		font-size: 18px;
	}
	.top-content.c03 dd{
		font-size: 14px;
	}
	.top-content.c03 .bottom .upr{
		margin-bottom: 70px;
	}
	.top-content.c03 .bottom .upr:before{
		bottom: -45px;
		width: 260px;
	}
	.top-content.c03 .btm{
		font-size: 20px;
	}
	.top-content.c03 .btm ul{ 
		margin-bottom: 10px;
	}
	.top-content.c03 .btm li{
		font-size: 14px;
	}
	.top-content.c03 .image{
		margin: 0 -70px;
	}
	.top-content.c04 {
		padding-bottom: 85px;
		background: url(../img/top-c04-bg-sp.webp) no-repeat center 0;
		background-size: cover;
	}
	.top-content.c04 .next{
		display: none;
	}
	.top-content.c04 h2{
		padding-top: 20px;
		font-size: 32px;
	}
	.top-content.c04 .inr{
		width: 342px;
	}
	.top-content.c04 h2:before{
		font-size: 38px;
	}
	.top-content .inr-wrap{
		margin-left: -10px;
	}
	.top-content .slick-slider{
		position: static;
	}
	.top-content .slick-track{
		gap: 10px;
		margin-bottom: 25px;
	}
	.top-content .slider-nav{
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 15px;
	}
	.top-content .slick-arrow,
	.top-content .slick-dots{
		display: block!important;
	}
	.top-content .slick-arrow {
		position: static;
		width: 40px;
		height: 40px;
		background: url(../img/arrow02.svg) no-repeat center;
		z-index: 1;
    	transform: translateY(0) translateX(0);
	}
	.top-content .slick-next {
		order: 3;
		background: url(../img/arrow03.svg) no-repeat center;
	}
	.top-content.c10 .slick-arrow {
		background: url(../img/arrow04.svg) no-repeat center;
	}
	.top-content.c10 .slick-next {
		background: url(../img/arrow05.svg) no-repeat center;
	}
	.top-content .slick-prev{
		order: 1;
	}
	.top-content .slick-arrow:before {
		display: none;
	}
	.top-content .slick-dots{
		order: 2;
		position: static;
		display: flex!important;
		align-items: center;
		gap: 10px;
		width: auto;
		max-width: calc(100% - 110px);
	}
	.top-content .slick-dots li,
	.top-content .slick-dots button,
	.top-content .slick-dots button:before{
		content: '';
		margin: 0;
		padding: 0;
		width: 10px;
		height: 10px;
		border-radius: 100%;
		opacity: 1;
	}
	.slick-dots button:before{
		background: #CCCCCC;
	}
	.slick-dots .slick-active button:before{
		background: #008951;
	}
	.top-content.c04 .box{
		padding: 10px;
		padding-bottom: 50px;
	}
	.top-content.c04 .link{
		margin-top: 30px;
	}
	.top-content.c05{
		margin-top: 0;
		padding: 65px 0;
		background: url(../img/top-c05-bg-sp.webp) no-repeat center;
		background-size: 100% auto;
	}
	.top-content.c05 .upper{
		margin-bottom: 25px;
		font-size: 16px;
		text-align: left;
	}
	.top-content.c05 .h3{
		margin-bottom: 25px;
		font-size: 32px;
		text-align: center;
	}
	.top-content.c05 .upper strong{
		padding: 0 5px;
	}
	.top-content.c05 .bottom b{
		padding-bottom: 10px;
		font-size: 20px;
		background: url(../img/deco.svg) no-repeat center bottom;
		background-size: 100%;
	}
	.top-content.c06 {
		margin-top: 0;
		padding-top: 50px;
		padding-bottom: 100px;
		background: url(../img/top-c06-bg-sp.webp) no-repeat center 0;
		background-size: 100% auto;
	}
	.top-content.c06 .h2{
		margin-bottom: 30px;
		font-size: 32px;
	}
	.top-content.c06 .h2 b{
		font-size: 42px;
	}
	.top-content.c06 ul{
		gap: 10px 0;
	}
	.top-content.c06 li{
		padding: 8px 5px;
		width: 100%;
		font-size: 16px;
		font-weight: normal;
	}
	.top-content.c07 {
		margin-top: 0;
		padding-top: 45px;
		padding-bottom: 55px;
		background: url(../img/top-c07-bg-sp.webp) no-repeat center bottom;
		background-size: 100% auto;
	}
	.top-content.c07 .h2{
		margin: 0 -10px;
		margin-bottom: 30px;
		font-size: 38px;
	}
	.top-content.c07 .h2 span{
		font-size: 24px;
	}
	.top-content.c07 .inr{
		padding: 25px 15px 40px;
	}
	.top-content.c07 .h3{
		margin-bottom: 20px;
		padding-bottom: 0;
		font-size: 24px;
	}
	.top-content.c07 .h3:before{
		display: none;
	}
	.top-content.c07 .box{
		gap: 20px 5%;
	}
	.top-content.c07 dt{
		padding-top: 38px;
		padding-left: 0;
		font-size: 15px;
	}
	.top-content.c07 dt:before{
		width: 34px;
		height: 34px;
	}
	.top-content.c07 dd{
		font-size: 14px;
	}
	.top-content.c08 {
		padding: 65px 0;
		background: url(../img/top-c08-bg-sp.webp) no-repeat center;
		background-size: cover;
	}
	.top-content.c08 h2{
		margin-bottom: 55px;
		padding-top: 15px;
		font-size: 32px;
	}
	.top-content.c08 h2:before{
		font-size: 48px;
	}
	.top-content.c08 .inr{
		gap: 70px 0;
	}
	.top-content.c08 .box{
		padding-left: 40px;
		width: 100%;
	}
	.top-content.c08 .box:nth-of-type(even){
		margin-top: 0;
	}
	.top-content.c08 .image{
		margin-right: -15px;
	}
	.top-content.c08 dl{
		margin-left: -40px;
	}
	.top-content.c08 dt{
		font-size: 24px;
	}
	.top-content.c09 {
		padding-top: 0;
		background: url(../img/top-c09-bg-sp.webp) no-repeat center 70px;
		background-size: 100% auto;
	}
	.top-content.c09 .upper p.s1 {
		margin: 0 -10px;
		margin-bottom: 15px;
		padding: 5px 10px;
		font-size: 20px;
		clip-path: polygon(15px 0%, 100% 0%, calc(100% - 15px) 100%, 0% 100%);
	}
	.top-content.c09 .upper p.s1 b{
		font-size: 28px;
	}
	.top-content.c09 .upper p.s2 ,
	.top-content.c09 .upper p.s2 strong{
		font-size: 24px;
	}
	.top-content.c09 .upper p.s2 b{
		font-size: 32px;
	}
	.top-content.c09 .middle {
		margin-right: -15px;
		margin-left: -15px;
		padding-top: 40px;
		padding-bottom: 70px;
		background: url(../img/top-c09-bg03-sp.webp) no-repeat center;
		background-size: cover;
	}
	.top-content.c09 .middle p.s1 {
		margin-bottom: 15px;
		font-size: 20px;
		white-space: nowrap;
	}
	.top-content.c09 .middle p.s1 b{
		font-size: 24px;
	}
	.top-content.c09 .middle p.s2 {
		font-size: 20px;
	}
	.top-content.c09 .middle p.s2 b {
		font-size: 26px;
	}
	.top-content.c09 .middle p.s2 i {
		height: 30px;
	}
	.top-content.c09 .middle p.s2 i:before{
		top: -10px;
		font-size: 14px;
	}
	.top-content.c09 .bottom {
		margin-top: -220px;
		padding-top: 240px;
		padding-bottom: 65px;
	}
	.top-content.c09 .bottom:before{
		left: -15px;
		width: calc(100% + 30px);
		background: url(../img/top-c09-bg02-sp.webp) no-repeat center;
		background-size: cover;
	}
	.top-content.c09 .bottom .upr p{
		margin-bottom: 25px;
		font-size: 24px;
	}
	.top-content.c09 .bottom .image{
		margin-bottom: 55px;
	}
	.top-content.c09 .bottom .btm{
		margin: 0 -5px;
	}
	.top-content.c09 .bottom dl{
		padding: 10px 0 20px 5px;
	}
	.top-content.c09 .bottom dt{
		margin-bottom: 10px;
		font-size: 20px;
	}
	.top-content.c09 .bottom li{
		font-size: 14px;
	}
	.top-content.c10 {
		margin-top: 0;
		padding-top: 65px;
		padding-bottom: 45px;
		background: url(../img/top-c10-bg-sp.webp) no-repeat center 0;
		background-size: 100% auto;
	}
	.top-content.c12 h2,
	.top-content.c11 h2,
	.top-content.c10 h2{
		margin: 0 -10px;
		margin-bottom: 50px;
		padding-top: 20px;
		font-size: 32px;
	}
	.top-content.c12 h2:before,
	.top-content.c11 h2:before,
	.top-content.c10 h2:before{
		font-size: 48px;
	}
	.top-content.c10 .slick-list{
		/* overflow: hidden; */
	}
	.top-content.c10 .slick-dotted.slick-slider {
		margin-bottom: 0;
	}
	.top-content.c10 .inr{
		width: 355px;
	}
	.top-content.c10 figure {
		width: 80px;
		height: 80px;
	}
	.top-content.c10 .box{
		padding-bottom: 0;
	}
	.top-content.c10 .box figure img{
		height: auto;
	}
	.top-content.c10 p.s1{
		margin-bottom: 20px;
		font-size: 12px;
	}
	.content-wrap{
		padding-top: 50px;
		padding-bottom: 75px;
		background: url(../img/top-content-bg-sp.webp) no-repeat center;
		background-size: cover;
	}
	.top-content.c11 {
		margin-bottom: 20px;
	}
	.top-content.c11 h2{
		margin-bottom: 10px;
	}
	.top-content.c11 .inr{
		margin: 0 -15px;
		padding: 0 30px;
		padding-top: 100px;
		padding-bottom: 120px;
	}
	.top-content.c11 .inr:before{
		left: 0;
		width: 100%;
		background: url(../img/top-c11-bg-sp.webp) no-repeat center 0;
		background-size: 100% auto;
		transform: translateX(0);
	}
	.top-content.c11 dl{
		margin-bottom: 25px;
		padding-left: 80px;
		padding-bottom: 0;
	}
	.top-content.c11 dt{
		font-size: 20px;
	}
	.top-content.c11 dt:after,
	.top-content.c11 dt:before{
		left: 5px;
	}
	.top-content.c11 dt:after{
		left: 45px;
	}
	.top-content.c11 dd{
		font-size: 14px;
		font-weight: normal;
	}
	.top-content.c12 dl{
		margin-bottom: 10px;
	}
	.top-content.c12 dt,
	.top-content.c12 dd{
		padding: 25px 40px;
	}
	.top-content.c12 dt:before,
	.top-content.c12 dd:before {
		top: 30px;
		left: 14px;
	}
	.top-content.c12 dt:after{
		right: 15px;
		width: 11px;
		height: 11px;
	}
	.top-content.c12 dd{
		padding-right: 10px;
		font-size: 14px;
		line-height: 1.6;
	}
	.top-content.c12 dd:after {
		left: 0;
		width: 100%;
	}
	.top-content.c13 {
		margin-top: 0;
		padding: 55px 0;
		min-height: auto;
		background: url(../img/top-c13-bg-sp.webp) no-repeat center;
		background-size: cover;
	}
	.top-content.c13 .h3{
		font-size: 32px;
	}
	.top-content.c13 .upper b{
		padding-bottom: 10px;
		font-size: 20px;
	}
	.top-content.c13 .upper i:before{
		top: -13px;
	}
	.top-content.c13 .bottom p.s1{
		font-size: 24px;
	}
}

/* フッター */
#footer {
	margin-top: -470px;
	padding-top: 510px;
	padding-bottom: 15px;
	color: #fff;
	letter-spacing: 0.02em;
	background: linear-gradient(180deg, rgba(107, 107, 107,1) 2%,rgba(106, 106, 106,1) 2%,rgba(5, 5, 5,1) 97%);
}
#footer .finr{
	margin-bottom: 50px;
}
#footer .left{
	width: 42%;
	text-align: right;
}
#footer .right{
	width: 50%;
}
#footer .company{
	margin-bottom: 5px;
}
#footer .address{
	font-size: 14px;
}
#footer .tel{
	font-size: 14px;
}
#footer .tel span{
	margin-right: 10px;
}
#footer .copyright{
	font-size: 14px;
	text-align: center;
}

@media screen and (max-width:767px) {
	#footer {
		margin-top: 0;
		padding-top: 55px;
		padding-bottom: 25px;
	}
	#footer .left,
	#footer .right{
		width: 100%;
	}
	#footer .left{
		margin: 0 auto;
		margin-bottom: 25px;
		width: 250px;
	}
}