@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");
}
@font-face {
	font-family: 'Marcellus';
	font-weight: 400;
	font-style: normal;
	font-display: swap;
	src: url("../fonts/Marcellus-Regular.woff2") format("woff2"),
    url("../fonts/Marcellus-Regular.woff") format("woff");
}
@font-face {
	font-family: 'ShipporiMincho';
	font-weight: 400;
	font-style: normal;
	font-display: swap;
	src: url("../fonts/ShipporiMincho-Regular.woff2") format("woff2"),
        url("../fonts/ShipporiMincho-Regular.woff") format("woff");
}
@font-face {
	font-family: 'ShipporiMincho';
	font-weight: 600;
	font-style: normal;
	font-display: swap;
	src: url("../fonts/ShipporiMincho-SemiBold.woff2") format("woff2");
    src: url("../fonts/ShipporiMincho-SemiBold.woff") format("woff"),
}

:root {
	--oc-link-color: #1E1E1E;
	--oc-primary-color: #1E1E1E;
	
	--oc-btn-primary-color: #1E1E1E;
	--oc-btn-alt-color: #1E1E1E;

	--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: 66px;
}

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

body {
	color: var(--oc-primary-color);
	font-family: "NotoSansJP", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 16px;
	line-height: 1.75;
	letter-spacing: 0.01em;
	background: #F3EEE7;
}
body.locked{
	overflow: hidden;
}
.text-primary-color{
	color: var(--oc-primary-color);
}
.clear-fix { clear: both; }

a {
	text-decoration: none;
	color: var(--oc-link-color);
}
a:hover {
	color: var(--oc-link-color);
	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;
	top: 60px;
}
.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: 14px;
		line-height: 1.85;
		letter-spacing: 0.05em;
	}
}

/* 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; */
	word-break: normal;
}
a,
a *{
    transition: all .3s;
}
a[href^="tel:"] {
    pointer-events: none;
}
a:hover,
a:hover *{
	opacity: 0.6;
}
p{
	margin-bottom: 30px;
}
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;
}
img.full{
	width: 100%;
}
.f1{
	font-family: 'Marcellus', serif;
}
.f2 {
    font-family: 'ShipporiMincho', serif;
}

@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{
	padding-top: var(--header-height);
	overflow: hidden;
}
.home #container{
	padding-top: 0;
}
.container{
	margin: 0;
	padding: 0;
	max-width: 100%;
}

.privacy-policy .container{
	margin-top: 60px;
	margin-bottom: 60px;

}
.privacy-policy h1 {
	text-align: center;
	margin-bottom: 48px;
}
.wrap{
	margin: 0 auto;
	max-width: 1160px;
	padding: 0 15px;
}
.wrap.wide{
	max-width: 1390px;
}


@media screen and (max-width:767px) {
	.container{
		margin-bottom: 35px;
	}
}

/*ヘッダー*/
#header{
	position: fixed;
	top: 0;
	left: 0;
	padding-top: 10px;
	width: 100%;
	z-index: 1000;
}
#header #hinr{
	align-items: center;
	position: relative;
	margin: 0 auto;
	padding: 0 40px;
	width: 100%;
	height: var(--header-height);
	line-height: 1;
}
#header,
#header a{
	color: #fff;
}
#header.s1,
#header.s1 a{
	color: var(--oc-primary-color);
}
/* #header.s1{
	padding-top: 5px;
} */
#header .right{
	display: flex;
	align-items: center;
	gap: 20px;
	padding-top: 10px;
}
#header .description{
	margin: 0;
	margin-bottom: 7px;
	padding: 0;
	font-size: 9px;
	font-weight: normal;
	line-height: 1.2;
	letter-spacing: 0.1em;
	transition: color 1s ease;
}
#header .logo{
	position: relative;
	width: 249px;
	height: 23px;
}
#header .logo img{
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	transition: opacity 1s ease;
}
#header .logo img.l2{
	opacity: 0;
}
#header.s1 .logo img.l1{
	opacity: 0;
}
#header.s1 .logo img.l2{
	opacity: 1;
}
#header .menu ul{
	display: flex;
	gap: 14px;
}
#header .menu a{
	display: block;
	position: relative;
	letter-spacing: 0.05em;
	transition: color 1s ease;
}
#header .menu a:before{
	content: '';
	position: absolute;
	left: 0;
	bottom: -7px;
	width: 100%;
	height: 1px;
	background: #fff;
	opacity: 0;
    transition: all .3s;
}
#header.s1 .menu a:before{
	background: var(--oc-primary-color);
}
#header .menu a:hover,
#header .menu a:hover:before{
	opacity: 1;
}
/* #header .trans select{
	padding: 0 15px 3px 20px;
	color: #fff;
	background: none;
	background: url(../img/icon-language.svg) no-repeat 2px center;
	background-size: 14px auto;
	border: none;
	border-bottom: #fff 1px solid;
	transition: color 1s ease;
}
#header .sp-menu .trans select,
#header.s1 .trans select{
	color: var(--oc-primary-color);
	background: url(../img/icon-language02.svg) no-repeat 2px center;
	background-size: 14px auto;
	border-color: var(--oc-primary-color);
}
#header .sp-menu .trans{
	padding-right: 50px;
	text-align: right;
}
#header .trans option{
	color: var(--oc-primary-color);
} */

/* ここから */
/* プラグインの固定配置を無効化（位置ズレ防止） */
.gtranslate_wrapper .gt_switcher_wrapper {
  position: static !important;
  top: auto !important;
  left: auto !important;
  z-index: auto !important;
}

/* Googleの大きいウィジェットを出さない（必要なら） */
#google_translate_element2,
#google_translate_element2 .goog-te-gadget,
.gtranslate_wrapper .skiptranslate {
  display: none !important;
}

/* ▼ここから元のデザインをプラグインの <select> に適用 */

.gtranslate_wrapper select.gt_selector{
  appearance:none;
  padding-right:30px; 
  border-radius: unset;
  box-sizing: border-box;
  padding: 0 15px 3px 20px;
  color: #fff;
  background: none;
  background: url(../img/icon-language.svg) no-repeat 2px center;
  background-size: 14px auto;
  border: none;
  border-bottom: #fff 1px solid;
  transition: color 1s ease, border-color 1s ease;
  margin: 0;
  font: inherit;
  line-height: 1.5rem;
  cursor: pointer;
}

.gtranslate_wrapper {
	position:relative;  /* 位置づけ用 */
}

.gtranslate_wrapper::before,
.gtranslate_wrapper::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

/* 白矢印（通常表示） */
.gtranslate_wrapper::before {
  background-image: url(../img/pulldown-arrow-white.svg);
  opacity: 1;
}

/* 黒矢印（非表示スタート） */
.gtranslate_wrapper::after {
  background-image: url(../img/pulldown-arrow-black.svg);
  opacity: 0;
}

/* 状態が変わったときに黒に切り替え */
.s1 .gtranslate_wrapper select.gt_selector {
	background: url(../img/icon-language02.svg) no-repeat 2px center;
	background-size: 14px auto;
}
.s1 .gtranslate_wrapper select.gt_selector {
	color: var(--oc-primary-color);
	border-bottom-color: var(--oc-primary-color);
}
.s1 .gtranslate_wrapper::before {
  opacity: 0;
}
.s1 .gtranslate_wrapper::after {
  opacity: 1;
}

/* ========== SP ========== */

/* #header .sp-menu .gtranslate_wrapper::after {
  background: url(../img/icon-language02.svg) no-repeat 1px center;
  background-size: 14px auto;
  padding: 0 15px 3px 25px;
} */

#header .sp-menu .gtranslate_wrapper::before {
	content: "";
	position: absolute;
	right: 0px;               
	top: 50%;
	transform: translateY(-50%);
	width: 12px;              
	height: 12px;
	background: url(../img/pulldown-arrow-black.svg) no-repeat center / contain;
	pointer-events: none;
}
#header .sp-menu .gtranslate_wrapper select.gt_selector {
	color: var(--oc-primary-color);
	border-color: var(--oc-primary-color);
	background: url(../img/icon-language02.svg) no-repeat 1px center;
  	background-size: 14px auto;
}

#header .sp-menu .trans{
  padding-right: 50px;
  text-align: right;
}

/* ここまで */






#header .tel a{
	display: block;
	position: relative;
	padding-left: 37px;
	height: 32px;
	font-size: 8px;
}
#header .tel a:after,
#header .tel a:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 32px;
	height: 100%;
	background: url(../img/icon-phone.svg) no-repeat center;
	transition: opacity 1s ease;
}
#header .tel a:after{
	opacity: 0;
	background: url(../img/icon-phone02.svg) no-repeat center;
}
#header.s1 .tel a:before{
	opacity: 0;
}
#header.s1 .tel a:after{
	opacity: 1;
}
#header .tel b{
	display: block;
	margin-bottom: 3px;
	padding-left: 5px;
	font-size: 18px;
	font-weight: normal;
}
.fixed-menu {
	position: fixed;
	top: 50%;
	right: 0;
    transform: translateY(-50%);
	z-index: 10;
}
.fixed-menu a{
	display: block;
	padding-top: 50px;
	width: 100px;
	height: 90px;
	color: #fff!important;
	line-height: 1.25;
	text-align: center;
    transition: all .3s;
}
.fixed-menu a.tel{
	display: none;
}
.fixed-menu .web{
	margin-bottom: 10px;
	background: #CFAA2A url(../img/icon-calendar.svg) no-repeat center 20px;
}
.fixed-menu .line{
	background: #06C755 url(../img/icon-line.svg) no-repeat center 20px;
}
#header .menu-trigger{
	display: none;
	position: fixed;
	top: 23px;
	right: 15px;
	z-index: 21;
}
.menu-trigger .inr{
	position: relative;
	width: 30px;
	height: 30px;
	cursor: pointer;
    transition: all .3s;
}
.menu-trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #fff;
	transition: all .3s;
}
.menu-trigger span:nth-of-type(2) {
	width: 17px;
}
.menu-trigger:hover span:nth-of-type(2) {
	width: 100%;
}
#header .menu-trigger.open span,
#header.s1 .menu-trigger span {
	background: var(--oc-primary-color);
}
.menu-trigger span:nth-of-type(1) {
	top: 11px;
}
.menu-trigger span:nth-of-type(2) {
	bottom: 11px;
}
.menu-trigger.open span:nth-of-type(1) {
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
}
.menu-trigger.open span:nth-of-type(2) {
	bottom: 50%;
	width: 100%;
	transform: translateY(50%) rotate(45deg);
}
.sp-overlay{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0;
	z-index: -1;
    transition: all .5s;
}
.sp-overlay.on{
	opacity: 0.1;
	z-index: 19;
}
#header .sp-menu{
	position: fixed;
	right: -100%;
	bottom: 0;
	width: auto;
	padding: 15px;
	padding-top: 20px;
	width: 320px;
	height: 100%;
	color: var(--oc-primary-color);
	background: #EEEAE3;
    transition: all .8s cubic-bezier(0.19, 1, 0.22, 1);
    overflow: auto;
	z-index: 20;
}
#header .sp-menu.on{
	right: 0;
}
.sp-menu .upper{
	margin-bottom: 35px;
	padding-top: 30px;
}
.sp-menu li{
	margin-bottom: 20px;
}
#header .sp-menu li a{
	display: block;
	color: var(--oc-primary-color);
	letter-spacing: 0.05em;
}
#header .sp-menu .contact{
	margin-bottom: 25px;
}
#header .sp-menu .contact a{
	display: block;
	margin-bottom: 5px;
	height: 48px;
	color: #fff;
	line-height: 48px;
	text-align: center;
}
#header .sp-menu .contact a span{
	display: inline-block;
	padding-left: 26px;
}
#header .sp-menu a.tel{
	background: #9C834F;
}
#header .sp-menu a.tel span{
	background: url(../img/icon-phone05.svg) no-repeat 0 17px;
}
#header .sp-menu a.web{
	margin-bottom: 10px;
	background: #CFAA2A;
}
#header .sp-menu a.web span{
	background: url(../img/icon-calendar.svg) no-repeat 0 17px;
	background-size: 17px auto;
}
#header .sp-menu a.line{
	background: #06C755;
}
#header .sp-menu a.line span{
	background: url(../img/icon-line.svg) no-repeat 0 17px;
	background-size: 17px auto;
}
#header .sp-menu .contact span.s1{
	display: block;
	margin-bottom: 5px;
	font-size: 13px;
	line-height: 1.85;
	letter-spacing: 0.01em;
}
#header .sns{
	display: flex;
	gap: 20px;
}

@media screen and (max-width:1277px) {
	#header .right{
		display: none;
	}
	#header .menu-trigger{
		display: block;
	}
}

@media screen and (max-width:1000px) {
	.fixed-menu {
		display: flex;
		top: auto;
		right: 0;
		bottom: 0;
		width: 100%;
		transform: translateY(0);
	}
	.fixed-menu a{
		flex: 1;
		padding-top: 0;
		width: auto;
		height: 46px;
		font-size: 16px;
		line-height: 46px;
	}
	.fixed-menu a.tel{
		background: #9C834F;
	}
	.fixed-menu a.web{
		margin-bottom: 0;
		background: #CFAA2A;
	}
	.fixed-menu a.line{
		background: #06C755;
	}
	.fixed-menu a span{
		display: inline-block;
		padding-left: 22px;
	}
	.fixed-menu a.tel span{
		background: url(../img/icon-phone05.svg) no-repeat 4px 17px;
	}
	.fixed-menu a.web span{
		background: url(../img/icon-calendar.svg) no-repeat 1px 16px;
		background-size: 16px auto;
	}
	.fixed-menu a.line span{
		background: url(../img/icon-line.svg) no-repeat 2px 17px;
		background-size: 16px auto;
	}
}

@media screen and (max-width:767px) {
	#header #hinr{
		padding: 0 15px;
	}
	#header .description{
		margin-bottom: 5px;
		font-size: 7px;
	}
	#header .logo{
		width: 200px;
		height: 20px;
	}
	.fixed-menu a.tel{
		display: block;
	}
	.menu-trigger:hover span:nth-of-type(2) ,
	.menu-trigger span:nth-of-type(2) {
		width: 17px;
	}
	.menu-trigger.open span:nth-of-type(2) {
		width: 100%;
	}
}

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

/*メインカラム*/
.top-mv{
	position: relative;
	margin: 0 auto;
	color: #fff;
}
.top-mv .image img{
	width: 100%;
}
.top-mv .text{
	position: absolute;
	left: 120px;
	bottom: 160px;
	font-size: 20px;
	line-height: 1.6;
	letter-spacing: 0.05em;
}
.top-mv .text strong{
	margin-top: 15px;
	padding-top: 15px;
	padding-right: 15px;
	display: block;
	font-size: 48px;
	font-weight: bold;
	line-height: 1.5;
	letter-spacing: 0.02em;
	border-top: #8d816f 1px solid;
}
.top-mv .scroll {
	position: absolute;
	left: 20px;
	bottom: 180px;
}
@media screen and (min-width: 1600px) {
	.top-mv .text {
		bottom: 35%;
	}
	.top-mv .scroll {
		bottom: 40%;
	}
}
@media screen and (min-width: 1400px) { 
.top-mv .text {
		bottom: 30%;
	}
	.top-mv .scroll {
		bottom: 35%;
	}
}
.top-mv .scroll i{
	display: block;
	position: relative;
	margin-bottom: 10px;
	height: 60px;
	overflow: hidden;
}
.top-mv .scroll i:before{
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 0.5px;
	height: 100%;
	background: #fff;
    transform: translateX(-50%);
	animation: slide-down 3s cubic-bezier(0.8, 0, 0.3, 1) infinite;
}
@keyframes slide-down {
  0% {
    transform: translateY(-100%);
  }
  66.66% {
    transform: translateY(200%);
  }
  100% {
    transform: translateY(200%); /* 停止 */
  }
}
.top-mv .scroll span{
	font-size: 14px;
	left: 1px;
    writing-mode: vertical-rl;
	letter-spacing: 0.05em;
}
.top-content.c01 {
	margin-top: -60px;
	padding-top: 220px;
	padding-bottom: 120px;
	background: url(../img/top-c01-bg.webp) no-repeat center bottom;
	background-size: 100% auto;
}
@media screen and (min-width: 2000px) {
	.top-content.c01 {
		/* padding-top: 10%;
		padding-bottom: 60px; */
	}
}
.top-content.c01 .upper{
	margin: 0 auto;
	margin-bottom: 205px;
	padding-left: 160px;
	max-width: 770px;
}
.top-content.c01 .upper strong{
	display: block;
	margin-left: -160px;
	font-size: 66px;
	font-weight: normal;
	line-height: 1.4;
	letter-spacing: 0.05em;
}
.top-content.c01 .upper strong span{
	display: block;
}
.top-content.c01 .upper strong span:nth-of-type(1){
	padding-left: 1em;
}
.top-content.c01 .upper strong span:nth-of-type(3){
	position: relative;
	padding-left: 4.2em;
}
.top-content.c01 .upper strong span:nth-of-type(3):before{
	content: '';
	position: absolute;
	top: 52px;
	left: 0.3em;
	width: 3.7em;
	height: 1px;
	background: #1E1E1E;
}
.top-content.c01 .upper p.s1{
	margin-top: 40px;
	margin-bottom: 20px;
	font-size: 22px;
	line-height: 1.6;
	letter-spacing: 0.1em;
}
.top-content.c01 .bottom {
	position: relative;
	margin: 0 auto;
	max-width: 920px;
	border: #1e1e1e 1px solid;
	border-top: none;
}
.top-content.c01 .bottom:before{
	content: '';
	position: absolute;
	top: -10px;
	left: 10px;
	width: calc(100% - 20px);
	height: 100%;
	border: #1e1e1e 1px dashed;
	border-top: none;
}
.top-content.c01 .bottom>div{
	position: relative;
}
.top-content.c01 .bottom>div>div:after,
.top-content.c01 .bottom>div>div:before,
.top-content.c01 .bottom>div:after,
.top-content.c01 .bottom>div:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 1px;
	background: #1E1E1E;
}
.top-content.c01 .bottom>div:after{
	left: auto;
	right: 0;
}
.top-content.c01 .bottom>div>div{
	position: relative;
	padding: 75px;
	padding-top: 0;
}
.top-content.c01 .bottom>div>div:after,
.top-content.c01 .bottom>div>div:before{
	top: -10px;
	left: 10px;
	width: 40px;
	height: 1px;
	background: none;
	border-top: #1e1e1e 1px dashed;
}
.top-content.c01 .bottom>div>div:after{
	left: auto;
	right: 10px;
}
.top-content.c01 .bottom>div>div>div{
	margin-bottom: -90px;
    transform: translateY(-90px);
}
.top-content.c01 .bottom .header{
	margin-bottom: 25px;
	font-size: 46px;
	letter-spacing: 0.05em;
	text-align: center;
	line-height: 1.3;
}
.top-content.c01 .bottom .header.f2 img {
	width: 200px;
	margin-bottom: 10px;
	margin-top: -80px
} 
.top-content.c01 .bottom .header.f2 div {
	margin-top: 0;
	z-index: -1;
}
.top-content.c01 .bottom .upr{
	text-align: center;
}
.top-content.c01 .bottom .upr dt{
	position: relative;
	margin: 0 auto;
	margin-bottom: 30px;
	width: 325px;
}
@media screen and (max-width:767px) {
	.top-content.c01 .bottom .header.f2 img {
		width: 130px;
		margin-bottom: 30px;
	}
	.top-content.c01 .bottom .header.f2 div {
		margin-top: -30px;
	}
}
.top-content.c01 .bottom .upr dt:before{
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 385px;
	height: 1px;
	background: #1E1E1E;
    transform: translateX(-50%);
}
.top-content.c01 .bottom .upr dt span{
	display: block;
	position: relative;
	height: 32px;
	color: #fff;
	font-weight: normal;
	letter-spacing: 0.05em;
	line-height: 30px;
	background: #1E1E1E;
}
.top-content.c01 .bottom .upr dd{
	margin-bottom: 30px;
	font-size: 24px;
	line-height: 1.3;
	letter-spacing: 0.15em;
}
.top-content.c01 .bottom .mid{
	margin-bottom: 40px;
}
.top-content.c01 .bottom .btm{
	text-align: center;
}
.top-content.c01 .bottom .btm dl{
	position: relative;
	width: 50%;
}
.top-content.c01 .bottom .btm dl:first-child{
	border-right: #c3bfb9 1px solid;
}
.top-content.c01 .bottom .btm dt{
	display: inline-block;
	position: relative;
	margin-bottom: 3px;
	padding: 0 15px;
	height: 28px;
	font-weight: normal;
	line-height: 25px;
	border: #1e1e1e 1px solid;
}
.top-content.c01 .bottom .btm span.s1{
	display: inline-block;
	position: relative;
	margin-bottom: 5px;
	font-size: 15px;
	letter-spacing: 0.05em;
}
.top-content.c01 .bottom .btm span.s1 s{
	display: inline-block;
	margin-left: 8px;
	letter-spacing: 0.01em;
}
.top-content.c01 .bottom .btm span.s2{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 0 5px;
	margin-bottom: 10px;
	width: 100%;
}
.top-content.c01 .bottom .btm i{
	padding-top: 10px;
	width: 100%;
}
.top-content.c01 .bottom .btm i br{
	display: none;
}
.top-content.c01 .bottom .btm i.s1{
	letter-spacing: 0.05em;
	line-height: 1.3;
}
.top-content.c01 .bottom .btm i.s2{
	padding-top: 0;
	font-size: 36px;
	line-height: 1;
}

.top-content.c01 .bottom .btm i.s2 b{
	display: inline-block;
	margin-right: 5px;
	font-size: 54px;
	font-weight: normal;
}
.top-content.c01 .bottom .btm i.s3{
	font-size: 15px;
	letter-spacing: 0.05em;
	line-height: 1.3;
}
.top-content.c01 .bottom .btm span.s3{
	letter-spacing: 0.05em;
}
.top-content.c01 .bottom .btm .link{
	margin-top: 30px;
}
.top-content.c01 .bottom .btm .link a{
	display: inline-block;
	position: relative;
	width: 420px;
	height: 60px;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.05em;
	line-height: 60px;
	background: #9C834F;
}
.top-content.c01 .bottom .btm .link a:before{
	content: '';
	position: absolute;
	top: 0;
	right: 18px;
	width: 12px;
	height: 100%;
	background: url(../img/arrow03.svg) no-repeat center;
}
.top-content.c02 {
	margin-bottom: 120px;
	padding-top: 120px;
}
.top-content.c02 .anchor{
	padding-top: 120px;
}
.top-content.c02 div.s1{
	position: relative;
	margin-bottom: 60px;
	/* height: 170px; */
}
.top-content.c02 .scroll-text{
	position: absolute;
	top: 0;
	left: 100%;
	width: auto;
	color: #CABB9E;
	font-size: 174px;
	line-height: 1;
	white-space: nowrap;
}
.top-content.c02 .bottom{
	position: relative;
	padding-top: 160px;
	padding-bottom: 130px;
	transition: color 1s ease;
}
.top-content.c02 .bottom.end{
	color: #fff;
}
.top-content.c02 .bottom .bg-image{
	position: absolute;
	top: -330px;
	left: 50%;
	width: 600px;
	aspect-ratio: 3 / 2;
	/* height: 400px; */
	object-fit: cover;
	z-index: -1;
    transform: translateX(-50%);
}
.top-content.c02 .bottom.end .bg-image{
	filter: brightness(50%);
}
.top-content.c02 p.s1{
	margin-bottom: 15px;
	font-size: 18px;
	letter-spacing: 0.15em;
}
.top-content.c02 .left{
	width: 46%;
}
.top-content.c02 .right{
	padding-top: 10px;
	width: 48.5%;
}
.top-content.c02 strong{
	font-weight: normal;
	font-size: 42px;
	letter-spacing: 0.1em;
	line-height: 1.5;
}
.top-content.c03 {
	margin-bottom: 115px;
}
.top-content.c03 h2{
	margin-bottom: 40px;
	padding-bottom: 30px;
	font-size: 24px;
	font-weight: normal;
	line-height: 1.5;
	text-align: center;
	letter-spacing: 0.1em;
	border-bottom: #c8c4bf 1px solid;
}
.top-content.c03 .inr{
    counter-reset: order;
}
.top-content.c03 .box{
    counter-increment: order;
	position: relative;
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: #c8c4bf 1px solid;
}
.top-content.c03 .box:after,
.top-content.c03 .box:before{
	content: counter(order);
	position: absolute;
	top: 50%;
	right: 3.8%;
	width: 40px;
	color: #9C834F;
	font-size: 32px;
	font-family: 'Marcellus', serif;
	letter-spacing: 0;
	text-align: center;
    transform: translateY(-138%);
}
.top-content.c03 .box:after{
	content: "3";
	padding-top: 15px;
	color: #C7B99B;
	font-size: 20px;
	background: url(../img/deco02.svg) no-repeat center 0;
    transform: translateY(-65%);
}
.top-content.c03 .left{
	padding-left: 4.5%;
	width: 41.5%;
}
.top-content.c03 .right{
	padding-right: 10.5%;
	width: 53%;
}
.top-content.c03 h3{
	position: relative;
	margin-bottom: 20px;
	padding-top: 40px;
	font-size: 32px;
	line-height: 1.5;
	letter-spacing: 0;
}
.top-content.c03 h3:before{
    content: 'Feature ' attr(data-index);
	position: absolute;
	top: 0;
	left: 0;
	color: #9C834F;
	font-size: 16px;
	font-family: 'Marcellus', serif;
}
.top-content.c04 {
	margin-bottom: 110px;
	padding: 110px 0;
	background: url(../img/top-c04-bg.webp) no-repeat center;
	background-size: cover;
}
.top-content.c04 .upper {
	margin-bottom: 30px;
	letter-spacing: 0.05em;
	text-align: center;
}
.top-content.c04 h2{
	margin-bottom: 20px;
	font-size: 24px;
	font-weight: normal;
	letter-spacing: 0.15em;
	line-height: 1.5;
}
.top-content.c04 .box{
	align-items: center;
	padding: 30px;
	padding-right: 20px;
	width: 48.5%;
	font-size: 15px;
	border-bottom: #c9c5bf 1px solid;
}
.top-content.c04 .box:nth-of-type(1),
.top-content.c04 .box:nth-of-type(2){
	border-top: #c9c5bf 1px solid;
}
.top-content.c04 .left{
	width: 43.5%;
}
.top-content.c04 .right{
	width: 52%;
}
.top-content.c04 h3{
	margin-bottom: 10px;
	font-size: 24px;
	line-height: 1.5;
	letter-spacing: 0;
}
.top-content.c05 {
	margin-bottom: 120px;
	text-align: center;
}
.top-content.c05 .upper{
	position: relative;
	margin: 0 auto;
	margin-bottom: 150px;
	max-width: 910px;
}
.top-content.c05 .upper:before{
	content: '';
	position: absolute;
	left: 0;
	bottom: -95px;
	width: 100%;
	height: 35px;
	background: url(../img/top-c05-bg.svg) no-repeat center;
	background-size: auto 100%;
}
.top-content.c05 .upper p{
	margin-bottom: 30px;
	font-size: 32px;
	line-height: 1.5;
	letter-spacing: 0;
}
.top-content.c05 ul{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 30px 4.25%;
}
.top-content.c05 ul li{
	position: relative;
	padding: 10px;
	width: 30.5%;
	border: #c1beb8 1px solid;
}
.top-content.c05 ul li:before{
	content: '';
	position: absolute;
	top: -8px;
	left: -9px;
	width: 20px;
	height: 25px;
	background: #F3EEE7 url(../img/deco.svg) no-repeat center 3px;
}
.top-content.c05 .bottom{
	margin: 0 auto;
	max-width: 820px;
}
.top-content.c05 .bottom p{
	margin-bottom: 45px;
	color: #9C834F;
	font-size: 32px;
	line-height: 1.5;
	letter-spacing: 0;
}
.top-content.c05 dt{
	margin-bottom: 25px;
	font-size: 24px;
	font-weight: normal;
	line-height: 1.5;
	letter-spacing: 0.1em;
}
.top-content.c05 dd{
	letter-spacing: 0.05em;
	line-height: 2;
}
.top-content.c05 ol{
    counter-reset: order;
	display: flex;
	gap: 0 6.5%;
	min-height: 245px;
	background: url(../img/top-c05-bg02.svg) no-repeat center 3px;
	background-size: 100% auto;
}
.top-content.c05 ol li{
	position: relative;
	padding: 85px 35px 0;
	width: 29%;
	font-size: 20px;
	line-height: 1.6;
	letter-spacing: 0.15em;
}
.top-content.c05 ol li:before{
    counter-increment: order;
    content: counter(order, decimal-leading-zero) '.';
	position: absolute;
	top: 45px;
	left: 0;
	width: 100%;
	color: #9C834F;
	font-size: 22px;
	font-family: 'Marcellus', serif;
	letter-spacing: 0;
}
.top-content.c06 {
	position: relative;
	margin-bottom: 100px;
	padding-top: 100px;
	padding-bottom: 155px;
	color: #fff;
	background: #9C874F;
}
.top-content.c06:before {
	content: attr(data-text);
	position: absolute;
	top: -10px;
	left: -32px;
	color: #B09F72;
	font-size: 210px;
	font-family: 'Marcellus', serif;
	line-height: 1;
    writing-mode: vertical-rl;
}
.top-content.c06 a{
	color: #fff;
	text-decoration: underline;
}
.top-content.c06 .wrap{
	position: relative;
	padding-left: 120px;
}
.top-content.c06 .upper strong{
	display: block;
	margin-bottom: 40px;
	font-size: 42px;
	font-weight: normal;
	line-height: 1.5;
	letter-spacing: 0.1em;
}
.top-content.c06 .upper .left{
	width: 45%;
}
.top-content.c06 .upper .right{
	width: 53%;
}
.top-content.c06 h2{
	margin-top: 5px;
	font-weight: normal;
	font-size: 24px;
	line-height: 1.5;
	letter-spacing: 0.1em;
}
.top-content.c06 .upper .image{
	margin: 50px 0;
}
.top-content.c06 .middle{
	margin-bottom: 55px;
	padding-bottom: 55px;
	border-bottom: #b09f72 1px solid;
}
.top-content.c06 .middle p.s1{
	margin-bottom: 40px;
	font-size: 24px;
	line-height: 1.5;
	letter-spacing: 0.1em;
}
.top-content.c06 h3{
	position: relative;
	margin-bottom: 30px;
	padding-left: 75px;
	font-size: 24px;
	line-height: 1.5;
	letter-spacing: 0;
}
.top-content.c06 h3:after,
.top-content.c06 h3:before{
	content: '';
	position: absolute;
	top: 2px;
	left: 0;
	width: 75px;
	color: #CEC3A7;
	font-size: 32px;
	letter-spacing: 0;
	line-height: 1;
	font-family: 'Marcellus', serif;
}
.top-content.c06 .middle h3:before{
	content: '01';
}
.top-content.c06 h3:after{
	top: 7px;
	left: 57px;
	width: 1px;
	height: 22px;
	background: #B09F72;
}
.top-content.c06 .middle span.s2{
	font-size: 14px;
}
.top-content.c06 .upr{
	margin-bottom: 40px;
}
.top-content.c06 .upr h3:before{
	content: '02';
}
.top-content.c06 .bottom p.s1{
	font-size: 24px;
	line-height: 1.5;
	letter-spacing: 0.1em;
}
.top-content.c06 .upr .image{
	margin-bottom: 20px;
}
.top-content.c06 .mid{
	margin-bottom: 50px;
}
.top-content.c06 .bottom .flex .text{
	width: 45.5%;
}
.top-content.c06 .bottom .flex .image{
	width: 47%;
}
.top-content.c06 .bottom dl{
	margin-bottom: 30px;
}
.top-content.c06 .bottom dt{
	margin-bottom: 15px;
	font-size: 20px;
	font-weight: normal;
	line-height: 1.6;
	letter-spacing: 0.15em;
}
.top-content.c07 {
	margin-bottom: 65px;
}
.top-content.c07 .upper {
	margin-bottom: 90px;
}
.top-content.c07 .upper strong{
	display: block;
	margin-bottom: 35px;
	font-size: 42px;
	font-weight: normal;
	line-height: 1.5;
	letter-spacing: 0.1em;
}
.top-content.c07 .upper .upr{
	margin-bottom: 80px;
}
.top-content.c07 .upper .upr .left{
	width: 45%;
}
.top-content.c07 .upper .upr .right{
	width: 48.5%;
}
.top-content.c07 h2{
	font-weight: normal;
	font-size: 24px;
	line-height: 1.5;
	letter-spacing: 0.1em;
}
.top-content.c07 .upper .btm{
	gap: 25px 0;
}
.top-content.c07 .upper .btm .left{
	padding-right: 70px;
	width: 47.5%;
}
.top-content.c07 .upper .btm .right .inr{
	position: relative;
	padding-right: 5px;
	width: 522px;
	height: 465px;
	background: url(../img/top-c07-bg.svg) no-repeat  center 0;
	background-size: 100% auto;
}
.top-content.c07 .upper .btm p.s1{
	margin-right: -65px;
	margin-bottom: 25px;
	font-size: 24px;
	line-height: 1.5;
	letter-spacing: 0;
}
.top-content.c07 .upper .btm .right p.s1{
	display: none;
}
.top-content.c07 .upper .btm p.s2{
	margin-bottom: 20px;
}
.top-content.c07 .upper .left ul{
	margin-bottom: 25px;
}
.top-content.c07 .upper .left li{
	margin-bottom: 10px;
	padding: 7px 10px;
	padding-left: 43px;
	font-weight: 500;
	line-height: 1.5;
	background: url(../img/icon-check.svg) no-repeat  15px center;
	border: #bbb8b2 1px solid;
}
.top-content.c07 .upper .right li{
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 210px;
	height: 210px;
	font-size: 20px;
	text-align: center;
	line-height: 1.6;
	letter-spacing: 0.15em;
}
.top-content.c07 .upper .right li:nth-of-type(4),
.top-content.c07 .upper .right li:nth-of-type(1){
	top: 0;
	left: 50%;
    transform: translateX(-50%);
}
.top-content.c07 .upper .right li:nth-of-type(4){
	top: auto;
	bottom: 0;
}
.top-content.c07 .upper .right li:nth-of-type(3),
.top-content.c07 .upper .right li:nth-of-type(2){
	top: 50%;
	left: 0;
    transform: translateY(-50%);
}
.top-content.c07 .upper .right li:nth-of-type(3){
	left: auto;
	right: 0;
}
.top-content.c07 .bottom .upr{
	margin-bottom: 30px;
	text-align: center;
}
.top-content.c07 .bottom p.s1{
	font-size: 24px;
	line-height: 1.5;
	letter-spacing: 0;
	text-align: center;
}
.top-content.c07 .bottom .mid{
	margin-bottom: 40px;
}
.top-content.c07 .bottom .mid .box{
	padding: 30px 50px 35px;
	width: 48.5%;
	border: #cbc8c2 1px solid;
}
.top-content.c07 .bottom .mid figure{
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
}
.top-content.c07 .bottom .btm p.caption,
.top-content.c07 .bottom .mid figcaption{
	display: block;
	margin-bottom: 25px;
	font-size: 24px;
	text-align: center;
	line-height: 1.5;
	letter-spacing: 0.1em;
}
.top-content.c07 .bottom .btm .box{
	padding: 40px 80px 50px;
	background: url(../img/top-c07-bg02.webp) no-repeat center;
	background-size: cover;
	border: #cbc8c2 1px solid;
}
.top-content.c07 .bottom .btm p.caption{
	margin-bottom: 30px;
}
.top-content.c07 .bottom .btm .left{
	width: 47.5%;
}
.top-content.c07 .bottom .btm .right{
	padding-top: 5px;
	width: 48%;
}
.top-content.c08 {
	margin-bottom: 120px;
	padding-top: 65px;
}
.top-content.c08 h2{
	margin-bottom: 30px;
	font-size: 24px;
	line-height: 1.5;
	letter-spacing: 0.1em;
	font-weight: normal;
}
.top-content.c08 .flex{
	align-items: center;
}
.top-content.c08 .left{
	width: 47.5%;
}
.top-content.c08 .right{
	width: 41.5%;
}
.top-content.c08 p.s1{
	font-size: 32px;
	line-height: 1.5;
	letter-spacing: 0;
}
.top-content.c11 dl,
.top-content.c08 dl{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.top-content.c08 dl:not(:last-child){
	margin-bottom: 35px;
}
.top-content.c11 dt,
.top-content.c08 dt{
	padding: 5px 0;
	padding-left: 15px;
	width: 100px;
	font-weight: normal;
	border-bottom: #1e1e1e 1px solid;
}
.top-content.c11 dt:first-of-type,
.top-content.c08 dt:first-of-type{
	border-top: #1e1e1e 1px solid;
}
.top-content.c11 dd,
.top-content.c08 dd{
	padding: 5px 0;
	padding-left: 15px;
	width: calc(100% - 103px);
	border-bottom: #B3B0AB 1px solid;
}
.top-content.c11 dd:first-of-type,
.top-content.c08 dd:first-of-type{
	border-top: #B3B0AB 1px solid;
}
.top-content.c08 p.s2{
	margin-bottom: 20px;
	font-weight: bold;
}
.top-content.c09 {
	position: relative;
	margin-bottom: 120px;
}
.top-content.c09:before{
	content: '';
	position: absolute;
	top: 0;
	right: 50%;
	width: 5000px;
	height: 100%;
	background: #EBE7E0;
	z-index: -1;
}
.top-content.c09 .wrap-inr{
	padding: 110px 0;
	background: #EBE7E0;
}
.top-content.c09 .left{
	width: 24%;
}
.top-content.c09 .right{
    counter-reset: order;
	width: 74%;
}
.top-content.c09 h2{
	font-size: 24px;
	font-weight: normal;
	line-height: 1.5;
	letter-spacing: 0.1em;
}
.top-content.c09 h3{
	margin-bottom: 15px;
	font-size: 24px;
	line-height: 1.5;
	letter-spacing: 0;
}
.top-content.c09 .right>div{
	display: flex;
	align-items: center;
	position: relative;
	min-height: 120px;
	padding-left: 300px;
	padding-right: 10px;
	background-size: 120px;
}
.top-content.c09 .right>div:not(:last-child){
	margin-bottom: 40px;
}
.top-content.c09 .right>div:nth-of-type(1){
	background: url(../img/top-c09-01.svg) no-repeat 125px center;
}
.top-content.c09 .right>div:nth-of-type(2){
	background: url(../img/top-c09-02.svg) no-repeat 125px center;
}
.top-content.c09 .right>div:nth-of-type(3){
	background: url(../img/top-c09-03.svg) no-repeat 125px center;
}
.top-content.c09 .right>div:nth-of-type(4){
	background: url(../img/top-c09-04.svg) no-repeat 125px center;
}
.top-content.c09 .right>div:nth-of-type(5){
	background: url(../img/top-c09-05.svg) no-repeat 125px center;
}
.top-content.c09 .right>div:before{
    counter-increment: order;
    content: 'Step ' counter(order, decimal-leading-zero);
	position: absolute;
	top: 50%;
	left: 0;
	color: #9C834F;
	font-size: 20px;
	font-family: 'Marcellus', serif;
	line-height: 1;
	letter-spacing: 0;
    transform: translateY(-50%);
}
.top-content.c09 .right>div:not(:last-child):after{
	content: '';
	position: absolute;
	top: 63%;
	left: 35px;
	width: 1px;
	height: calc(100% + 10px);
	border-left: #9c834f 1px dashed;
}
.top-content.c10 {
	margin-bottom: 55px;
	padding-top: 170px;
	padding-bottom: 160px;
	min-height: 660px;
	line-height: 2;
	letter-spacing: 0.05em;
	background: url(../img/top-c10-bg.webp) no-repeat center;
}
.top-content.c10 .inr{
	margin: 0 auto;
	max-width: 660px;
}
.top-content.c10 strong{
	display: block;
	font-size: 32px;
	font-weight: normal;
	line-height: 1.5;
	letter-spacing: 0;
	text-align: center;
}
.top-content.c11 {
	margin-bottom: 120px;	
	padding-top: 55px;
}
.top-content.c11 h2{
	margin-bottom: 50px;
	font-size: 24px;
	font-weight: normal;
	line-height: 1.5;
	letter-spacing: 0.1em;
	text-align: center;
}
.top-content.c11 .left{
	display: flex;
	justify-content: end;
	padding-right: 80px;
	width: 49%;
}
.top-content.c11 .right{
	width: 51%;
}
.top-content.c11 .left>div{
	width: 100%;
	max-width: 470px;
}
.top-content.c11 strong{
	display: block;
	margin-bottom: 45px;
	/* padding-top: 25px; */
	font-weight: normal;
	font-size: 42px;
	line-height: 1.5;
	letter-spacing: 0.1em;
	/* background: url(../img/logo_alma.png) no-repeat 0 0;
	background-size: 225px auto; */
}
.top-content.c11 .f2 img {
	max-width: 130px;
}
.top-content.c11 dt{
	font-weight: normal;
}
.top-content.c12 {
	margin-bottom: 60px;
	padding: 110px 0;
	background: #EBE7E0;
}
.top-content.c12 h2{
	font-size: 24px;
	font-weight: normal;
	line-height: 1.5;
	letter-spacing: 0.1em;
}
.top-content.c13.news {
	margin-bottom: 115px;
}
.top-content.c13 .left,
.top-content.c12 .left{
	width: 200px;
}
.top-content.c13 .right,
.top-content.c12 .right{
	width: calc(100% - 200px);
	max-width: 910px;
}
.top-content.c12 dl{
	position: relative;
	margin-bottom: 10px;
	padding-bottom: 10px;
	letter-spacing: 0;
	cursor: pointer;
	background: #F3EEE7;
}
.top-content.c12 dl:before{
	content: '';
	position: absolute;
	top: 0;
	right: 40px;
	width: 20px;
	height: 100%;
	background: url(../img/icon-plus.svg) no-repeat 0 23px;
}
.top-content.c12 dl.open:before{
	background: url(../img/icon-minus.svg) no-repeat 0 31px;
}
.top-content.c12 dt{
	position: relative;
	padding: 20px 75px 10px 95px;
	font-weight: normal;
}
.top-content.c12 dd:before,
.top-content.c12 dt:before{
	content: 'Q';
	position: absolute;
	top: 50%;
	left: 40px;
	color: #9C834F;
	font-size: 20px;
	font-family: 'Marcellus', serif;
	line-height: 1;
    transform: translateY(-22%);
}
.top-content.c12 dd{
	display: none;
	position: relative;
	padding: 0 75px 10px 95px;
}
.top-content.c12 dd:before{
	content: 'A';
	color: #1E1E1E;
    transform: translateY(-58%);
}
.top-content.c13 {
	padding-top: 60px;
}
.top-content.c13 h2{
	margin-bottom: 30px;
	font-size: 24px;
	font-weight: normal;
	line-height: 1.5;
	letter-spacing: 0.1em;
}
.top-content.c13 .right{
	letter-spacing: 0.05em;
}
.top-content.c13 .left ul{
	display: inline-block;
	margin-top: -10px;
	text-align: right;
}
.top-content.c13 .left li{
	margin-bottom: 10px;
	color: #5E5C5A;
	letter-spacing: 0.05em;
	cursor: pointer;
}
.top-content.c13 .left li.selected{
	color: var(--oc-primary-color);
	cursor: auto;
}
.top-content.c13 .left li.selected span{
	position: relative;
}
.top-content.c13 .left li.selected span:before{
	content: '●';
	position: absolute;
	top: 50%;
	left: -20px;
	font-size: 10px;
    transform: translateY(-45%);
}
.top-content.c13 .right ul{
	margin-bottom: 25px;
}
.top-content.c13 .right li{
	position: relative;
	padding: 20px 0;
	border-bottom: #b3b0ab 1px solid;
}
.top-content.c13 .right li:first-child{
	border-top: #b3b0ab 1px solid;
}
.top-content.c13 .right li:after{
	content: '';
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 20px;
	height: 1px;
	background: var(--oc-primary-color);
}
.top-content.c13 .right li:first-child:before{
	content: '';
	position: absolute;
	top: -1px;
	left: 0;
	width: 20px;
	height: 1px;
	background: var(--oc-primary-color);
}
.top-content.c13 .right li a{
	display: flex;
	gap: 25px;
}
.top-content.c13 .box{
	display: none;
}
.top-content.c13 .box.selected{
	display: block;
}
.top-content.c13 .date{
	padding-top: 3px;
	width: 82px;
	color: #9C834F;
	font-size: 14px;
	white-space: nowrap;
}
.top-content.c13 .category{
	min-width: 70px;
	text-align: center;
	white-space: nowrap;
}
.top-content.c13 .link{
	margin-right: -10px;
	text-align: right;
}
.top-content.c13 .link a{
	padding-right: 40px;
	background: url(../img/arrow04.svg) no-repeat right 13px center;
}
.top-content.c13 .link a:hover{
	text-decoration: underline;
	background: url(../img/arrow04.svg) no-repeat right 3px center;
	opacity: 1;
}
.wrapp-contact-page {
	max-width: 1280px;
	margin: 0 auto;
}

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

@media screen and (max-width:1050px) {
	.top-content.c07 .upper .btm .left{
		order: 2;
		margin: 0 auto;
		padding-right: 0;
		width: 100%;
	}
	.top-content.c07 .upper .btm .right{
		width: 100%;
		text-align: center;
	}
	.top-content.c07 .upper .btm .right .inr{
		margin: 0 auto;
		padding-right: 0;
	}
	.top-content.c07 .upper .btm .left p.s1{
		display: none;
	}
	.top-content.c07 .upper .btm .right p.s1{
		display: block;
		margin-right: 0;
	}
	.top-content.c11 .left{
		padding-left: 15px;
		padding-right: 0;
		width: 45%;
	}
}

@media screen and (max-width:1000px) {
	.top-mv .text{
		font-size: 16px;
	}
	.top-mv .text strong{
		font-size: 32px;
	}
	.top-content.c01 .upper strong{
		font-size: 45px;
	}
	.top-content.c01 .bottom .btm dl{
		width: 100%;
	}
	.top-content.c01 .bottom .btm dl:first-child{
		margin-bottom: 30px;
		padding-bottom: 30px;
		border: none;
		border-bottom: #c3bfb9 1px solid;
	}
	.top-content.c01 .bottom .btm i{
		width: auto;
	}
	.top-content.c01 .bottom .btm i br{
		display: block;
	}
	.top-content.c05 ol li{
		font-size: 18px;
	}
	.top-content.c06 .wrap{
		padding-left: 15px;
	}
}

@media screen and (max-width:820px) {
	.top-content.c01 {
		padding-top: 110px;
	}
	.top-content.c02 .flex{
		gap: 30px 0;
	}
	.top-content.c02 .left,
	.top-content.c02 .right{
		width: 100%;
	}
	.top-content.c03 .box:after,
	.top-content.c03 .box:before{
		right: 0;
	}
	.top-content.c03 .left{
		padding-left: 0;
		width: 42.5%;
	}
	.top-content.c03 .right{
		padding-right: 6%;
	}
	.top-content.c03 h3{
		font-size: 24px;
		letter-spacing: 0.1em;
	}
	.top-content.c04 .box{
		width: 100%;
		border: none;
		border-top: #c9c5bf 1px solid;
	}
	.top-content.c05 ul li{
		width: 100%;
	}
    .top-content.c05 ol li {
        font-size: 16px;
    }
	.top-content.c06 .bottom .flex .text {
		width: 48.5%;
	}
	.top-content.c08 .right {
		width: 46.5%;
	}
	.top-content.c09 .flex{
		gap: 25px 0;
	}
	.top-content.c09 .left,
	.top-content.c09 .right{
		width: 100%;
	}
	.top-content.c10 {
		position: relative;
		padding-top: 50vw;
		padding-bottom: 50vw;
		background: url(../img/top-c10-bg-sp.webp) no-repeat center 0;
		background-size: 100% auto;
	}
	.top-content.c10:before {
		content: '';
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 100%;
		background: url(../img/top-c10-bg02-sp.webp) no-repeat center bottom;
		background-size: 100% auto;
	}
	.top-content.c10 .wrap{
		position: relative;
	}
	.top-content.c11 .flex{
		gap: 30px 0;
	}
	.top-content.c11 .left,
	.top-content.c11 .right{
		width: 100%;
	}
	.top-content.c11 .right{
		padding-left: 15px;
	}
	.top-content.c13 .flex,
	.top-content.c12 .flex{
		gap: 25px 0;
	}
	.top-content.c13 .left,
	.top-content.c12 .left,
	.top-content.c13 .right,
	.top-content.c12 .right{
		width: 100%;
	}
	.top-content.c13 .left ul{
		display: flex;
		flex-wrap: wrap;
		gap: 20px 10px;
		margin-top: 0;
	}
	.top-content.c13 .left li{
		margin-bottom: 0;
		padding-left: 20px;
	}
}

@media screen and (max-width:767px) {
	.top-mv .text{
		left: 35px;
		bottom: 110px;
		font-size: 14px;
		line-height: 2;
	}
	.top-mv .text p.s1{
		margin-bottom: 15px;
	}
	.top-mv .text strong{
		padding-top: 10px;
		font-size: 24px;
		line-height: 1.5;
	}
	/* .top-mv .scroll {
		left: 5px;
		bottom: 100px;
	} */
	.top-mv .scroll span{
		opacity: 0;
	}
	 /* ここから */
	 .top-mv .scroll {
    left: 10px;        
    bottom: 50px;
    /* transform: none;     */
    z-index: 10;
    /* text-align: left;    */
  }
  .top-mv .scroll i {
    /* height: 40px; */
    width: 2px;
    margin: 0 auto 10px;
    position: relative;
    overflow: hidden;
  }
  .top-mv .scroll i:before {
    width: 2px;
    height: 100%;
    background: #fff;
    animation: slide-down 2s cubic-bezier(0.8, 0, 0.3, 1) infinite;
    left: 50%;
    transform: translateX(-50%);
    content: '';
    position: absolute;
    top: 0;
    display: block;
  }

  /* ここまで */
    .top-content.c01 {
		margin-bottom: 60px;
        padding-top: 120px;
		padding-bottom: 85px;
		background: url(../img/top-c01-bg-sp.webp) no-repeat center bottom;
		/* background-size: 100% auto; */
    }
	.top-content.c01 .upper{
		margin-bottom: 150px;
		padding-left: 0;
	}
	.top-content.c01 .upper>div{
		padding: 0 15px;
	}
	.top-content.c01 .upper p.f2{
		margin-bottom: 20px;
	}
	.top-content.c01 .upper strong{
		margin-left: 0;
		font-size: 30px;
		line-height: 1.7;
		white-space: nowrap;
		text-align: right;
	}
	.top-content.c01 .upper strong span{
		text-align: left;
	}
	.top-content.c01 .upper strong span:nth-of-type(3){
		display: inline-block;
		padding-left: 0;
		font-size: 28px;
		text-align: right;
	}
	.top-content.c01 .upper strong span:nth-of-type(3):before{
		top: 50%;
		left: -25px;
		width: 4em;
		transform: translateX(-100%);
	}
	.top-content.c01 .upper p.s1{
		margin-top: -5px;
		margin-bottom: 15px;
		font-size: 20px;
		letter-spacing: 0.05em;
	}
	.top-content.c01 .upper p.s2{
		font-size: 16px;
		letter-spacing: 0.01em;
	}
	.top-content.c01 .bottom:before{
		top: -5px;
		left: 5px;
		width: calc(100% - 10px);
	}
	.top-content.c01 .bottom>div>div:after,
	.top-content.c01 .bottom>div>div:before,
	.top-content.c01 .bottom>div:after,
	.top-content.c01 .bottom>div:before{
		width: 18px;
	}
	.top-content.c01 .bottom>div>div:after,
	.top-content.c01 .bottom>div>div:before{
		top: -5px;
		left: 5px;
		width: 18px;
	}
	.top-content.c01 .bottom>div>div:after{
		left: auto;
		right: 5px;
	}
	.top-content.c01 .bottom>div>div{
		padding: 30px 20px;
		padding-top: 0;
	}
	.top-content.c01 .bottom>div>div>div{
		margin-bottom: -47px;
		transform: translateY(-47px);
	}
	.top-content.c01 .bottom .header{
		margin-bottom: 15px;
		padding-top: 25px;
		font-size: 24px;
		background-size: 164px auto;
	}
	.top-content.c01 .bottom .upr dt{
		margin-bottom: 15px;
		width: 250px;
	}
	.top-content.c01 .bottom .upr dt:before{
		width: 270px;
	}
	.top-content.c01 .bottom .upr dt span{
		height: 30px;
		font-size: 13px;
		line-height: 28px;
	}
	.top-content.c01 .bottom .upr dd{
		margin-bottom: 25px;
		font-size: 18px;
		letter-spacing: 0.1em;
	}
	.top-content.c01 .bottom .mid {
		margin-bottom: 30px;
	}
    .top-content.c01 .bottom .btm dl:first-child {
        padding-bottom: 20px;
    }
	.top-content.c01 .bottom .btm dt{
		height: 26px;
		line-height: 23px;
	}
	.top-content.c01 .bottom .btm span.s1{
		font-size: 13px;
	}
	.top-content.c01 .bottom .btm span.s2{
		letter-spacing: 0;
	}
	.top-content.c01 .bottom .btm i{
		width: 100%;
	}
	.top-content.c01 .bottom .btm i br{
		display: none;
	}
	.top-content.c01 .bottom .btm i.s2{
		font-size: 32px;
	}
	.top-content.c01 .bottom .btm i.s2 b{
		margin-right: 0;
		font-size: 50px;
	}
	.top-content.c01 .bottom .btm i.s3{
		font-size: 13px;
	}
	.top-content.c01 .bottom .btm .link {
		margin-top: 25px;
	}
	.top-content.c01 .bottom .btm .link a{
		width: 300px;
		height: 50px;
		font-size: 16px;
		line-height: 50px;
	}
	.top-content.c01 .bottom .btm .link a:before{
		right: 12px;
	}
	.top-content.c02 {
		margin-bottom: 60px;
		padding-top: 0;
	}
	.top-content.c02 .anchor{
		padding-top: 0;
	}
	.top-content.c02 .bottom {
		padding-top: 60px;
		padding-bottom: 60px;
		color: #fff;
	}
	.top-content.c02 .scroll-text{
		font-size: 60px;
	}
	.top-content.c02 strong{
		font-size: 24px;
	}
	.top-content.c02 .bottom .bg-image{
		top: 0px;
		width: 100%;
		height: 812px;
		filter: brightness(50%);
	}
	body.locked #container{
		overflow: visible;
	}
	.top-content.c02{
		position: relative;
		height: 100vh; 
		overflow: hidden;
		z-index: 100;
	}
	body.locked .top-content.c02{
		overflow-y: scroll;
	}
	.top-content.c02 .wrapper{
		width: 100%;
		height: 200vh;
	}
	.top-content.c02 div.s1{
		position: fixed;
		top: 100px;
		z-index: 10;
	}
	.top-content.c02 .bottom{
		padding-top: 260px;
		height: 100vh;
		position: sticky;
		top: 0;
		z-index: 2;
	}
	.top-content.c02 .bottom .bg-image{
		top: 0;
	}
	.top-content.c03 {
		margin-bottom: 60px;
	}
	.top-content.c13 h2,
	.top-content.c12 h2,
	.top-content.c08 h2,
	.top-content.c07 h2,
	.top-content.c04 h2,
	.top-content.c03 h2{
		font-size: 20px;
		line-height: 1.6;
		letter-spacing: 0.15em;
	}
	.top-content.c03 h2{
		margin-bottom: 25px;
		padding-bottom: 20px;
	}
	.top-content.c03 .box{
		gap: 25px 0;
		margin-bottom: 10px;
		padding-bottom: 0;
		border: none;
	}
	.top-content.c03 .box:after,
	.top-content.c03 .box:before{
		display: none;
	}
	.top-content.c03 .left,
	.top-content.c03 .right{
		width: 100%;
	}
	.top-content.c03 .left{
		margin-bottom: 25px;
	}
    .top-content.c03 .right {
        padding-right: 0;
    }
	.top-content.c03 h3:before{
		letter-spacing: 0;
	}
	.top-content.c03 .slider-sub{
		position: relative;
		padding-bottom: 35px;
		text-align: center;
		border-bottom: #c8c4bf 1px solid;
	}
	.top-content .slider-sub .arrow i{
		position: absolute;
		top: 20px;
		left: 0;
		width: 30px;
		height: 30px;
	}
	.top-content .slider-sub .arrow .next{
		left: auto;
		right: 0;
	}
	.top-content .slider-sub .next:before,
	.top-content .slider-sub .prev:before{
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 30px;
		height: 30px;
		background: url(../img/arrow06.svg) no-repeat center center;
		background-size: 100% auto;
		transition: all .3s;
	}
	.top-content .slider-sub .next:before{
		background: url(../img/arrow07.svg) no-repeat center center;
		background-size: 100% auto;
	}
	.top-content.c03 .slider-sub .index{
		display: inline-block;
	}
	.top-content.c03 .slider-sub .total{
		display: inline-block;
		padding-left: 15px;
		height: 24px;
		color: #C7B99B;
		font-size: 18px;
		line-height: 24px;
		background: url(../img/deco02.svg) no-repeat 0 center;
		background-size: auto 100%;
	}
	.top-content.c03 .slider-sub .current{
		display: inline-block;
		margin-right: 2px;
		width: 16px;
		color: #9C834F;
		font-size: 30px;
		text-align: center;
    	transform: translateY(4px);
	}
	.top-content.c04 {
		margin-bottom: 50px;
		padding: 50px 0;
	}
	.top-content.c04 h2{
		margin-bottom: 10px;
	}
	.top-content.c04 .box{
		padding: 20px;
		font-size: 14px;
		line-height: 1.85;
		letter-spacing: 0.05em;
	}
	.top-content.c04 .box:nth-of-type(2){
		order: 3;
	}
	.top-content.c04 .box:nth-of-type(4){
		order: 4;
	}
	.top-content.c04 .left,
	.top-content.c04 .right{
		width: 100%;
	}
	.top-content.c04 .left{
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 15px;
	}
	.top-content.c04 .left img{
		width: 39%;
	}
	.top-content.c04 h3{
		margin-bottom: 0;
		width: 54%;
		font-size: 20px;
		line-height: 1.6;
		letter-spacing: 0.05em;
	}
	.top-content.c05 {
		margin-bottom: 65px;
	}
	.top-content.c05 .upper{
		margin-bottom: 90px;
	}
	.top-content.c05 .upper:before{
		bottom: -60px;
		height: 27px;
	}
	.top-content.c05 .bottom p,
	.top-content.c05 .upper p{
		margin-bottom: 25px;
		font-size: 24px;
		letter-spacing: 0.1em;
	}
	.top-content.c05 ul{
		gap: 15px;
		margin: 0 auto;
		max-width: 275px;
	}
	.top-content.c05 ul li{
		font-size: 16px;
	}
	.top-content.c05 .bottom p{
		margin-bottom: 15px;
	}
	.top-content.c05 dt{
		margin-bottom: 20px;
		font-size: 20px;
		letter-spacing: 0.15em;
	}
	.top-content.c05 dd{
		margin-bottom: 15px;	
		text-align: left;
	}
	.top-content.c05 ol{
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		gap: 0 25px;
		margin: 0 auto;
		width: 345px;
		min-height: 320px;
		background: url(../img/top-c05-bg02-sp.svg) no-repeat center 0;
		background-size: 100% auto;
	}
	.top-content.c05 ol li{
		padding: 0 10px;
		padding-top: 55px;
		width: 160px;
		height: 160px;
		font-size: 14px;
		letter-spacing: 0.05em;
	}
	.top-content.c05 ol li:first-child{
		flex-basis: 100%;
		padding-left: calc(50% - 80px);
		padding-right: calc(50% - 80px);
	}
	.top-content.c05 ol li:before{
		top: 25px;
		font-size: 18px;
	}
	.top-content.c06 {
		margin-bottom: 50px;
		padding: 50px 0;
	}
	.top-content.c06:before {
		top: 55px;
		left: -18px;
		font-size: 100px;
	}
	.top-content.c06 .upper strong{
		margin-bottom: 25px;
		font-size: 24px;
	}
	.top-content.c06 .upper .left,
	.top-content.c06 .upper .right{
		width: 100%;
	}
	.top-content.c06 h2{
		margin-top: 0;
		margin-bottom: 15px;
		font-size: 20px;
		letter-spacing: 0.15em;
	}
	.top-content.c06 .upper .image{
		margin: 30px 0;
	}
	.top-content.c06 .middle p.s1{
		margin-bottom: 25px;
		font-size: 20px;
		letter-spacing: 0.15em;
	}
	.top-content.c06 h3{
		margin-bottom: 20px;
		padding-left: 55px;
		font-size: 20px;
		letter-spacing: 0.05em;
	}
	.top-content.c06 h3:after,
	.top-content.c06 h3:before{
		top: 50%;
		left: 0;
		width: 55px;
		font-size: 22px;
		transform: translateY(-50%);
	}
	.top-content.c06 h3:after{
		top: 0;
		left: 40px;
		width: 1px;
		height: 100%;
		transform: translateY(0);
	}
	.top-content.c06 .middle {
		padding-bottom: 30px;
	}
	.top-content.c06 .upr{
		margin-bottom: 25px;
	}
	.top-content.c06 .bottom p.s1{
		font-size: 20px;
		letter-spacing: 0.15em;
	}
	.top-content.c06 .bottom .flex .text,
	.top-content.c06 .bottom .flex .image{
		width: 100%;
	}
	.top-content.c06 .bottom .flex .text{
		order: 2;
		margin-top: 20px;
	}
	.top-content.c06 .mid{
		margin-bottom: 15px;
	}
	.top-content.c06 .bottom dl{
		margin-bottom: 15px;
	}
	.top-content.c06 .bottom dt{
		letter-spacing: 0.05em;
	}
	.top-content.c07 {
		margin-bottom: 25px;
	}
	.top-content.c07 .upper {
		margin-bottom: 40px;
	}
	.top-content.c07 .upper strong{
		margin-bottom: 20px;
		font-size: 24px;
	}
	.top-content.c07 .upper .upr{
		margin-bottom: 40px;
	}
	.top-content.c07 .upper .upr .left,
	.top-content.c07 .upper .upr .right{
		width: 100%;
	}
	.top-content.c07 h2{
		margin-bottom: 15px;
	}
	.top-content.c07 .upper .btm .right .inr{
		width: 345px;
		height: 305px;
	}
	.top-content.c07 .upper .btm p.s1{
		margin-bottom: 20px;
		font-size: 18px;
		text-align: left;
		letter-spacing: 0.1em;
	}
	.top-content.c07 .upper .right li{
		width: 140px;
		height: 140px;
		font-size: 14px;
		letter-spacing: 0.1em;
	}
	.top-content.c07 .bottom .upr{
		margin-bottom: 20px;
		text-align: left;
	}
	.top-content.c07 .bottom p.s1{
		margin-bottom: 15px;
		font-size: 20px;
		letter-spacing: 0.05em;
		text-align: center;
	}
	.top-content.c07 .bottom .mid{
		margin-bottom: 20px;
		gap: 20px;
	}
	.top-content.c07 .bottom .mid .box{
		padding: 25px 20px;
		width: 100%;
	}
	.top-content.c07 .bottom .btm p.caption,
	.top-content.c07 .bottom .mid figcaption{
		margin-bottom: 20px;
		font-size: 20px;
		text-align: center;
		letter-spacing: 0.15em;
	}
	.top-content.c07 .bottom .btm .box{
		padding: 25px 20px;
	}
	.top-content.c07 .bottom .btm .flex{
		gap: 25px;
	}
	.top-content.c07 .bottom .btm .left,
	.top-content.c07 .bottom .btm .right{
		padding-top: 0;
		width: 100%;
	}
	.top-content.c08 {
		margin-bottom: 60px;
		padding-top: 20px;
	}
	.top-content.c08 h2{
		margin-bottom: 20px;
	}
	.top-content.c08 .flex{
		gap: 20px;
	}
	.top-content.c08 .left,
	.top-content.c08 .right{
		width: 100%;
	}
	.top-content.c08 p.s1{
		margin-bottom: 20px;
		font-size: 20px;
		letter-spacing: 0.05em;
	}
	.top-content.c08 dl:not(:last-child){
		margin-bottom: 25px;
	}
	.top-content.c11 dt,
	.top-content.c08 dt{
		padding-left: 10px;
		width: 90px;
	}
	.top-content.c11 dd,
	.top-content.c08 dd{
		padding-left: 10px;
		width: calc(100% - 93px);
	}
	.top-content.c08 p.s2{
		margin-top: -10px;
	}
	.top-content.c09{
		margin-bottom: 60px;
	}
	.top-content.c09:before{
		right: auto;
		left: 0;
		width: calc(100% - 50px);
	}
	.top-content.c09 .wrap-inr{
		padding: 50px 0;
		background: none;
	}
	.top-content.c09 .right>div{
		padding-left: 60px;
		padding-right: 0;
		background-position: 60px 0!important;
		background-size: 60px!important;
	}
	.top-content.c09 .right>div:not(:last-child){
		margin-bottom: 30px;
	}
	.top-content.c09 .right>div:before{
		counter-increment: order;
		content: 'Step\A' counter(order, decimal-leading-zero);
		top: 10px;
		left: 4px;
		font-size: 16px;
		line-height: 1.3;
		text-align: center;
		white-space: pre;
		transform: translateY(0);
	}
	.top-content.c09 .right>div:not(:last-child):after{
		top: 55px;
		left: 20px;
		height: calc(100% - 15px);
	}
	.top-content.c09 h3{
		display: flex;
		align-items: center;
		margin-bottom: 10px;
		padding-left: 80px;
		min-height: 60px;
		font-size: 20px;
		line-height: 1.5;
		letter-spacing: 0.05em;
	}
	.top-content.c10{
		margin-bottom: 35px;
	}
	.top-content.c10 .inr{
		padding: 0 20px;
	}
	.top-content.c10 p.s1{
		margin-bottom: 15px;
	}
	.top-content.c10 strong{
		font-size: 22px;
		letter-spacing: 0.1em;
	}
	.top-content.c11 {
		margin-bottom: 50px;	
		padding-top: 35px;
	}
	.top-content.c11 h2{
		margin-bottom: 25px;
	}
	.top-content.c11 strong{
		margin-bottom: 30px;
		padding-top: 15px;
		font-size: 24px;
		background-size: 180px auto;
	}
	.top-content.c11 iframe{
		height: 240px!important;
	}
	.top-content.c12 {
		margin-bottom: 30px;
		padding: 60px 0;
		padding-bottom: 50px;
	}
	.top-content.c12 .flex {
        gap: 15px 0;
    }
	.top-content.c12 dl{
		padding-bottom: 4px;
	}
	.top-content.c12 dl:before{
		right: 15px;
		width: 16px;
		background-size: 100% auto;
		background-position: center 17px;
	}
	.top-content.c12 dl.open:before{
		background-position: center 24px;
	}
	.top-content.c12 dt{
		padding: 12px 50px 8px;
	}
	.top-content.c12 dd:before,
	.top-content.c12 dt:before{
		left: 15px;
		transform: translateY(-28%);
	}
	.top-content.c12 dd{
		padding: 0 50px 8px;
	}
	.top-content.c13 {
		padding-top: 30px;
	}
	.top-content.c13 h2{
		margin-bottom: 25px;
	}
	.top-content.c13 .left li{
		font-size: 16px;
	}
	.top-content.c13 .right ul{
		margin-bottom: 20px;
	}
	.top-content.c13 .right li{
		padding: 12px 0;
	}
	.top-content.c13 .right li a{
		flex-wrap: wrap;
		gap: 5px 25px;
	}
	.top-content.c13 .category{
		font-size: 16px;
	}
	.top-content.c13 .p-title{
		width: 100%;
	}
	.top-content.c13 .link a{
		font-size: 16px;
	}
}

/* フッター */
.footer-contact {
	margin-bottom: 60px;
	padding-top: 70px;
	padding-bottom: 75px;
	color: #fff;
	text-align: center;
	background: url(../img/footer-contact-bg.webp) no-repeat center;
	background-size: cover;
}
.footer-contact a{
	color: #fff;
}
.footer-contact .upper {
	margin-bottom: 35px;
}
.footer-contact h2{
	margin-bottom: 20px;
	font-size: 36px;
	letter-spacing: 0;
}
.footer-contact .bottom {
	padding: 35px 0;
	border-top: #9faaa5 1px solid;
	border-bottom: #9faaa5 1px solid;
}
.footer-contact .left,
.footer-contact .right{
	padding-top: 60px;
	padding-bottom: 10px;
	width: 100%;
}
.footer-contact .left{
	background: url(../img/icon-phone03.svg) no-repeat center 5px;
	border-right: #9faaa5 1px solid;
}
.footer-contact .right{
	background: url(../img/icon-mail.svg) no-repeat center 7px;
	background-size: 30px auto;
}
.footer-contact .tel{
	margin-bottom: 15px;
}
.footer-contact .tel a{
	font-size: 36px;
	font-weight: normal;
	letter-spacing: 0;
	line-height: 1;
}
.footer-contact .hour{
	display: flex;
	justify-content: center;
	gap: 15px;
}
.footer-contact dt{
	font-weight: normal;
}
.footer-contact dd{

}
.footer-contact .left p{
	font-size: 14px;
}
.footer-contact .right a{
	position: relative;
	font-size: 28px;
	line-height: 1;
	text-decoration: underline;
}
.footer-contact .right a:before{
	content: '';
	position: absolute;
	left: 0;
	bottom: -35px;
	width: 100%;
	height: 13px;
	background: url(../img/arrow03.svg) no-repeat center;
	background-size: auto 100%;
}
#footer {
	padding-bottom: 55px;
}
#footer .upper {
	margin-bottom: 55px;
}
#footer .upper .left{
width: 42%;
}
#footer .upper .right{
	width: 51.5%;
}
#footer .logo img{
	display: block;
	margin-bottom: 10px;
	width: 130px;
}
#footer .left dl{
	display: flex;
	gap: 15px;
	margin-bottom: 3px;
}
#footer .left dt{
	padding-left: 25px;
	font-weight: normal;
	white-space: nowrap;
}
#footer .address dt{
	background: url(../img/icon-pin.svg) no-repeat 0 7px;
}
#footer .tel dt{
	background: url(../img/icon-phone04.svg) no-repeat 0 7px;
}
#footer .hour dt{
	background: url(../img/icon-clock.svg) no-repeat 0 7px;
}
#footer .contact {
	display: flex;
	gap: 20px;
	margin-bottom: 35px;
	justify-content: center;
}
#footer .contact a{
	display: inline-block;
	padding-left: 85px;
	width: 220px;
	height: 52px;
	color: #fff;
	font-size: 16px;
	line-height: 50px;
}
#footer .web{
	background: #CFAA2A url(../img/icon-calendar.svg) no-repeat 47px center;
	background-size: 20px auto;
}
#footer .line{
	background: #06C755 url(../img/icon-line.svg) no-repeat 47px center;
	background-size: 22px auto;
}
#footer .contact a span{
	display: inline-block;
	margin-right: 5px;
	font-size: 20px;
    transform: translateY(2px);
}
#footer .menu{
	display: flex;
	flex-wrap: wrap;
	gap: 15px 45px;
	margin-bottom: 35px;
}
#footer .menu a{
	letter-spacing: 0.05em;
}
#footer .sns{
	display: flex;
	gap: 20px;
}
#footer .bottom{
	align-items: center;
	padding-top: 25px;
	font-size: 14px;
	letter-spacing: 0.05em;
	border-top: #b3b0ab 1px solid;
}
#footer .link a{
	text-decoration: underline;
}

@media screen and (max-width:1000px) {
	#footer{
		padding-bottom: 100px;
	}
	.footer-contact .left,
	.footer-contact .right{
		width: 100%;
	}
	.footer-contact .left{
		position: relative;
		margin-bottom: 25px;
		padding-bottom: 25px;
		border: none;
	}
	.footer-contact .left:before{
		content: '';
		position: absolute;
		left: 50%;
		bottom: 0;
		width: 160px;
		height: 1px;
		background: #9faaa5;
    	transform: translateX(-50%);
	}
	.footer-contact .right{
		margin-bottom: 25px;
	}
	#footer .upper .left,
	#footer .upper .right{
		width: 100%;
	}
	#footer .contact,
	#footer .sns,
	#footer .menu{
		display: none;
	}
}

@media screen and (max-width:767px) {
	.footer-contact {
		margin-bottom: 40px;
		padding-top: 50px;
		padding-bottom: 60px;
		background: url(../img/footer-contact-bg-sp.webp) no-repeat center;
		background-size: cover;
	}
	.footer-contact .upper {
		margin-bottom: 20px;
	}
	.footer-contact h2{
		font-size: 30px;
	}
	.footer-contact .bottom {
		padding: 35px 0;
		padding-bottom: 25px;
	}
	.footer-contact .left,
	.footer-contact .right{
		padding-top: 55px;
	}
	.footer-contact .tel{
		margin-bottom: 5px;
	}
	.footer-contact .tel a{
		font-size: 30px;
	}
	.footer-contact .left p{
		font-size: 12px;
	}
	.footer-contact .right a{
		font-size: 22px;
	}
	.footer-contact .right a:before{
		bottom: -30px;
	}
	#footer .upper {
		margin-bottom: 20px;
	}
	/* #footer .logo img{
		margin-bottom: 20px;
		width: 260px;
	} */
	#footer .left dl{
		display: block;
	}
	#footer .left dt{
		display: inline-block;
		background-position: 0 5px!important;
	}
	#footer .left dd{
		display: inline;
	}
	#footer .left dd span{
		padding-left: 25px;
	}
	#footer .bottom{
		gap: 15px 0;
	}
	#footer .bottom *{
		font-size: 13px!important;
	}
}