@charset 'UTF-8';
/*----------------------------------------

	- content
		- .news-section
			- .news-ttl
		- .information-section
			- .information-ttl

-----------------------------------------*/

main{
	overflow-x: clip;
}

/* .kvはダミーです */
.kv {
	margin: 0 0 90px;
}

@media screen and (max-width: 767px) {
	.kv {
		margin: 0 auto 50px;
	}
}
/* .kvはダミーです */


.news-section {
	width: min(76%, 550px);
	margin: 0 auto 90px;
}

.news-ttl {
	color: #1a1816;
	font-weight: 500;
	font-size: 2.0rem;
	line-height: 1;
	font-family: 'Cormorant Garamond', '游明朝', YuMincho, 'Hiragino Mincho ProN W3', 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', 'ＭＳ 明朝', serif;
}

.news-section dl {
	display: grid;
	gap: 8px;
	align-items: baseline;
	width: 100%;
	margin: 30px auto 0;

	grid-template: auto / 9.6em 1fr;
}

.news-section dl dt {
	grid-column: 1;
	font-size: 1.4rem;
}

.news-section dl dd {
	grid-column: 2;
	font-size: 1.6rem;
	line-height: 2;
}

.news-section dl dd a {
	color: var(--color_black_chocolate);
}

.news-section dl dd a:hover {
	text-decoration: underline;
}

@media screen and (max-width: 767px) {
	.news-section {
		margin: 0 auto 50px;
	}

	.news-ttl {
		font-size: 2.0rem;
	}

	.news-section dl {
		gap: 0;
		align-items: baseline;
		margin: 26px auto 0;

		grid-template: auto / 1fr;
	}

	.news-section dl dt {
		grid-column: unset;
		font-size: 1.2rem;
	}

	.news-section dl dd+dt {
		margin-top: 19px;
	}

	.news-section dl dd {
		grid-column: unset;
		font-size: 1.4rem;
	}
}


.information-section {
	margin: 0 0 90px;
	text-align: center;
}

.information-ttl {
	margin-bottom: 30px;
	/* color: #978d82; */
	font-weight: 300;
	font-size: 2.0rem;
	line-height: 1;
	font-family: 'Cormorant Garamond', '游明朝', YuMincho, 'Hiragino Mincho ProN W3', 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', 'ＭＳ 明朝', serif;
	letter-spacing: 0.1em;
}


/* ============================== */

/* トップ */

/* ============================== */

/* 個別設定 */

/* mv */

.mv{
	position: relative;
	aspect-ratio: 1920 /800;
	overflow: hidden;
}

.mv .imgnote{
	width: 100%;
	z-index: 1;
	text-align: right;
}

.mv .imgnote._03{
	bottom: 42vw;
	z-index: 1;
}

.mv .copy{
	font-family: "shippori", serif;
	position: absolute;
	top: 100px;
	left: 50%;
	transform: translateX(-50%);
	writing-mode: vertical-rl;
	color: #FFFDE9;
	text-shadow: 0 0 5px #000;
	z-index: 1;
	filter: blur(10px);
	opacity: 0;
	animation: fadein 1s ease-in-out forwards;
	animation-delay: 1s;
}

.mv .copy sup{
	display: inline-block;
	font-size: clamp(10px, 3vw, 60px);
	line-height: 1.5em;
	letter-spacing: 0.1em;
	/* filter: blur(10px);
	opacity: 0;
	animation: fadein 1s ease-in-out forwards; */
}

/* .mv .copy sup:nth-of-type(2){
	animation-delay: 0.2s;
}
.mv .copy sup:nth-of-type(3){
	animation-delay: 0.4s;
}
.mv .copy sup:nth-of-type(4){
	animation-delay: 0.6s;
}
.mv .copy sup:nth-of-type(5){
	animation-delay: 0.8s;
} */
.mv .copy sup:nth-of-type(6){
	margin-top: 0.7em;
	/* animation-delay: 1s; */
}
/* .mv .copy sup:nth-of-type(7){
	animation-delay: 1.2s;
}
.mv .copy sup:nth-of-type(8){
	animation-delay: 1.4s;
}
.mv .copy sup:nth-of-type(9){
	animation-delay: 1.6s;
}
.mv .copy sup:nth-of-type(10){
	animation-delay: 1.8s;
}
.mv .copy sup:nth-of-type(11){
	animation-delay: 2s;
}
.mv .copy sup:nth-of-type(12){
	animation-delay: 2.2s;
}
.mv .copy sup:nth-of-type(13){
	animation-delay: 2.4s;
} */

@keyframes fadein {
	from{
		filter: blur(10px);
		opacity: 0;
	}
	to{
		filter: none;
		opacity: 1;
	}
}

.slider._mv {
  overflow: hidden;
  background: #000;
}

.slider._mv li {
  overflow: hidden;
}

.slider._mv li img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.15);
  will-change: transform;
}

.slider._mv li img._sp{
	display: none;
}

/* 下から上へ */
@keyframes move-BtoT {
  0%   { transform: scale(1.15) translateY(5%); }
  100% { transform: scale(1.15) translateY(-5%); }
}

/* 右から左へ */
@keyframes move-RtoL {
  0%   { transform: scale(1.15) translateX(5%); }
  100% { transform: scale(1.15) translateX(-5%); }
}

/* 上から下へ */
@keyframes move-TtoB {
  0%   { transform: scale(1.15) translateY(-35%); }
  100% { transform: scale(1.15) translateY(-10%); }
}

.slider._mv li:nth-child(1).is-moving img {
  animation: move-BtoT 8s linear forwards;
}

.slider._mv li:nth-child(2).is-moving img {
  animation: move-RtoL 16s linear forwards;
}

.slider._mv li:nth-child(3).is-moving img {
  animation: move-TtoB 20s linear forwards;
}

@media screen and (max-width: 768px) {
	.mv{
		aspect-ratio: inherit;
	}

	.mv .imgnote._03{
		bottom: 3px;
	}

	.mv .copy{
		top: 60px;
	}

	.mv .copy sup{
		font-size: clamp(10px, 6vw, 60px);
	}

	.slider._mv {
	}

	.slider._mv li{
	}

	.slider._mv li img._sp{
		display: block;
	}

	.slider._mv li img._pc {
		display: none;
	}

	/* 上から下へ */
	@keyframes move-TtoB {
		0%   { transform: scale(1.15) translateY(-3%); }
		100% { transform: scale(1.15) translateY(7%); }
	}

	.slider._mv li:nth-child(3).is-moving img {
		animation: move-TtoB 12s linear forwards;
	}
}

/* section.main */

.bgwrap{
	background: url(../img/top/bg_01.png);
	background-position: bottom;
	background-size: cover;
}

section.main{
	padding: 150px 0;
}

section.main .p01{
	margin-bottom: 80px;
	font-size: clamp(10px, 3vw, 30px);
	letter-spacing: 0.15em;
	text-align: center;
}

section.main .mrtbox{
	max-width: 1400px;
	width: 98%;
	margin: 0 auto;
}

section.main .mrtbox .item{
	display: flex;
	justify-content: center;
	align-items: center;
}

section.main .mrtbox p{
	font-size: clamp(10px, 2vw, 45px);
	line-height: 1;
	letter-spacing: 0.01em;
}

section.main .mrtbox .xs_txt{
	font-size: clamp(10px, 0.8vw, 14px);
	line-height: 1;
}

section.main .mrtbox .s_txt{
	font-size: clamp(10px, 2vw, 22px);
}

section.main .mrtbox .m_txt{
	font-size: clamp(10px, 2.2vw, 25px);
}

section.main .mrtbox .num{
	margin: 0 5px;
	display: inline-block;
	font-family: "cormo", serif;
	font-size: clamp(10px, 3.5vw, 68px);
}

section.main .mrtbox .num span{
	font-size: 0.5em;
}

section.main .mrtbox .s_num{
	font-size: clamp(10px, 2vw, 30px);
	font-family: "cormo", serif;
}

section.main .mrtbox .rel{
	position: relative;
}

section.main .mrtbox .abs{
	width: 100%;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
}

section.main .mrtbox .item._01 .abs{
	top: -1.5em;
	letter-spacing: 0.2em;
}

section.main .mrtbox .item._03 .rel{
	top: -0.3em;
}

section.main .mrtbox .item._03 .abs{
	bottom: -1.5em;
}

section.main .mrtbox .item._04 p{
	border-bottom: none;
}

section.main .mrtbox .item._04 .rel{
	top: -1.2em;
}

section.main .mrtbox .item._04 .abs{
	bottom: -3.5em;
	letter-spacing: 0.2em;
}

section.main .mrtbox .item._01, section.main .mrtbox .item._03{
	margin-right: 2.5vw;
	padding-right: 2.5vw;
	border-right: 1px solid #2A3E40;
}

section.main .mrtbox .item._t{
	margin-bottom: 1.5vw;
	padding: 0 20px 1.5vw;
	border-bottom: 1px solid #2A3E40;
}

section.main .entbox{
	max-width: 600px;
	width: 70%;
	margin: 150px auto 0;
	text-align: center;
}

section.main .p02{
	font-size: clamp(10px, 1.5vw, 20px);
	font-family: "cormo", serif;
}

section.main .p03{
	margin: 30px auto 40px;
	font-size: clamp(10px, 5vw, 30px);
	letter-spacing: 0.1em;
}

section.main .entbox .btn_ent{
	margin-top: 30px;
	padding: 0.2em 0;
	background: #75797C;
	border: 1px solid #75797C;
	position: relative;
	transition: 1s;
}

section.main .entbox .btn_ent::before{
	content: '';
	width: 0%;
	height: 100%;
	background: #fff;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	transition: 1s;
}

section.main .entbox .btn_ent:hover:before{
	width: 100%;
}

section.main .entbox .btn_ent a{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 3;
}

section.main .entbox .btn_ent p{
	padding: 1em;
	position: relative;
	z-index: 	2;
	color: #fff;
	font-size: clamp(10px, 1.5vw, 20px);
	transition: 1s;
}

section.main .entbox .btn_ent:hover p{
	color: #75797C;
	transition: 1s;
}

section.main .bnr_ent{
	max-width: 900px;
	width: 90%;
	margin: 70px auto 0;
	position: relative;
}

section.main .bnr_ent .mdlbtn{
	width: 95px;
	height: 20px;
	background: #fff;
	position: absolute;
	right: 105px;
	bottom: 40px;
	opacity: 0;
	cursor: pointer;
}

section.main .mdl_bg{
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	background: #000;
	opacity: 0;
	z-index: -2;
}

section.main .mdl_bg.open{
	opacity: 0.5;
	transition: 1s;
	z-index: 2;
}

section.main .mdlbox .mdl{
	max-width: 1100px;
	width: 90%;
	height: 62vh;
	box-sizing: border-box;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	overscroll-behavior: contain;
	opacity: 0;
	transition: 1s;
	z-index: -1;
}

.mdl_header {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  box-sizing: border-box;
  background: #fff;
}

.mdl_body {
	padding: 60px 0;
  flex: 1;
  overflow-y: auto;
  scrollbar-width: thin;
}

.mdl_content::-webkit-scrollbar {
  width: 8px;
}
.mdl_content::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

section.main .mdlbox .mdl.open{
	opacity: 1;
	transition: 1s;
	z-index: 3;
}

section.main .mdlbox .clsbtn{
	width: 40px;
	margin-left: auto;
	top: 0;
	right: 0;
	position: sticky;
	cursor: pointer;
	z-index: 1;
}

section.main .mdlbox .mdl .imgbox{
	width: 32%;
	/* margin: 100px auto 0; */
}

section.main .mdlbox .mdl .p10{
	font-size: clamp(10px, 10vw, 40px);
	font-family: "cormo", serif;
	text-align: center;
}

section.main .mdlbox .mdl .p20{
	margin-top: 25px;
	font-size: clamp(10px, 10vw, 20px);
	line-height: 1.7em;
	text-align: center;
}

section.main .mdlbox .mdl .p30{
	margin-top: 15px;
	margin-bottom: 30px;
	font-size: clamp(10px, 10vw, 15px);
	text-align: center;
}

section.main .mdlbox .mdl .p40{
	color: #fff;
	font-size: clamp(10px, 1.5vw, 18px);
	text-align: center;
}

section.main .mdlbox .mdl .txtbox{
	width: 50%;
}

section.main .mdlbox .mdl .txtbox .item{
	width: 30%;
	padding: 10px 0;
	background: #75797C;
}

section.main .mdlbox .mdl .txtbox .item._l{
	margin-right: 1%;
}

section.main .mdlbox .mdl .txtbox .item._l{
	margin-left: 1%;
}

section.main .mdlbox .mdl .p04{
	margin: 80px auto 20px;
	font-size: clamp(10px, 10vw, 22px);
	text-align: center;
}

section.main .mdlbox .mdl .p04 span{
	font-size: 1.4em;
}

section.main .mdlbox .mdl .p05{
	color: #726934;
	font-size: clamp(10px, 4vw, 20px);
	line-height: 1.5em;
}

section.main .mdlbox .mdl .p06{
	font-size: clamp(10px, 10vw, 14px);
	line-height: 2em;
}

section.main .mdlbox .mdl .anno{
	font-size: 10px;
}

section.main .mdlbox .mdl .num{
	margin-right: 20px;
	color: #726934;
	font-size: clamp(10px, 10vw, 60px);
	font-family: "gara", serif;
}

section.main .mdlbox .mdl ul{
	width: 85%;
	margin: 0 auto;
}

section.main .mdlbox .mdl li{
	padding: 30px 0;
	justify-content: start;
	border-top: 1px solid #75797C;
}

section.main .mdlbox .mdl li._sp{
	display: none;
}

section.main .mdlbox .mdl li.as{
	align-items: start;
}

section.main .mdlbox .mdl li:last-of-type{
	border-bottom: 1px solid #75797C;
}

section.main .mdlbox .mdl .li_item{
	width: 48%;
}

section.main .mdlbox .mdl .item_l{
	width: 33%;
	margin-right: 2%;
	justify-content: start;
}

section.main .mdlbox .mdl .li_item .item_l{
	width: 100%;
}

section.main .mdlbox .mdl .item_r{
	width: 65%;
}

section.main .mdlbox .mdl .item_r.flex{
	justify-content: space-between;
}

section.main .mdlbox .mdl .li_item .item_r{
	width: 100%;
	margin-left: 50px;
}

section.main .mdlbox .mdl .li_item .item_r.mt{
	margin-top: 8px;
}

section.main .mdlbox .mdl .item_r .imgbox_02{
	width: 40%;
}

section.main .mdlbox .mdl .item_r .imgbox_03{
	width: 30%;
	margin-right: 10%;
}

section.main .mdlbox .mdl .btn_mdlent{
	width: 13em;
	margin-top: 8px;
	padding: 5px 0;
	border-radius: 30px;
	background: #75797C;
	box-shadow: 0 1px 5px #000;
	position: relative;
	text-align: center;
	color: #fff;
	font-size: clamp(10px, 10vw, 18px);
}

section.main .mdlbox .mdl .btn_mdlent a{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

@media screen and (max-width: 1000px) {
	section.main .bnr_ent a{
		width: 9.5vw;
		height: 2.2vw;
		right: 10.5vw;
		bottom: 4.2vw;
	}
}

@media screen and (max-width: 768px) {
	.bgwrap{
		background: url(../img/top/bg_01_sp.png);
	}

	section.main{
		padding: 80px 0 100px;
	}

	section.main .p01{
		font-size: clamp(10px, 5vw, 30px);
		letter-spacing: 0.4em;
	}

	section.main .mrtbox{
		width: 90%;
	}

	section.main .mrtbox .item{
		flex-direction: column;
	}

	section.main .mrtbox p{
		width: 100%;
		margin-bottom: 17px;
		padding-bottom: 17px;
		border-bottom: 1px solid #2A3E40;
		font-size: clamp(10px, 5.8vw, 40px);
		letter-spacing: 0.08em;
	}

	section.main .mrtbox .xs_txt{
		font-size: 8px;
		letter-spacing: 0.01em;
	}

	section.main .mrtbox .s_txt{
	}

	section.main .mrtbox .m_txt{
		font-size: clamp(10px, 3.2vw, 20px);
	}

	section.main .mrtbox .num{
		position: relative;
		bottom: -1px;
		margin: 0 3px;
		font-size: clamp(10px, 14vw, 55px);
	}

	section.main .mrtbox .num span{
	}

	section.main .mrtbox .s_num{
		font-size: clamp(10px, 8vw, 30px);
	}

	section.main .mrtbox .l_num{
		font-size: clamp(10px, 20vw, 62px);
	}

	section.main .mrtbox .rel{
	}

	section.main .mrtbox .abs{
	}

	section.main .mrtbox .abs.stt{
		margin-left: 1em;
		position: static;
		font-size: clamp(10px, 3.8vw, 20px);
	}

	section.main .mrtbox .for_2l{
		margin-top: 10px;
		display: block;
	}

	section.main .mrtbox .item{
		width: 100%;
		text-align: center;
	}

	section.main .mrtbox .item._01 .abs{
	}

	section.main .mrtbox .item._02 .num{
		font-size: clamp(10px, 10vw, 55px);
	}

	section.main .mrtbox .item._03 .rel{
	}

	section.main .mrtbox .item._03 .abs{
	}

	section.main .mrtbox .item._03 .m_txt{
		font-size: clamp(10px, 4vw, 20px);
	}

	section.main .mrtbox .item._03 .num{
		font-size: clamp(10px, 14vw, 55px);
	}

	section.main .mrtbox .item._04 .rel{
		top: -0.6em;
	}

	section.main .mrtbox .item._04 .abs{
		bottom: -2.5em;
	}

	section.main .mrtbox .item._01, section.main .mrtbox .item._03{
		margin-right: 0;
		padding-right: 0;
		border-right: none;
	}

	section.main .mrtbox .item._t{
		margin: 0 auto;
		padding-right: 0;
		padding-left: 0;
		border-bottom: none;
	}

	section.main .entbox{
		width: 90%;
		margin-top: 65px;
	}

	section.main .p02{
		font-size: clamp(10px, 5vw, 20px);
	}

	section.main .p03{
		margin: 20px auto 35px;
		font-size: clamp(10px, 7vw, 30px);
	}

	section.main .entbox .btn_ent a{
	}

	section.main .entbox .btn_ent p{
		font-size: clamp(10px, 5vw, 20px);
	}

	section.main .bnr_ent{
		max-width: 337.5px;
		margin-top: 20px;
	}

	section.main .bnr_ent a{
		width: 65vw;
		height: 9vw;
		right: 12.5vw;
		bottom: 9.5vw;
	}

	section.main .bnr_ent .mdlbtn{
		width: 72%;
		height: 30px;
		background: #fff;
		position: absolute;
		right: auto;
		left: 50%;
		bottom: 22px;
		transform: translate(-50%, -50%);
		opacity: 0;
		cursor: pointer;
	}

	section.main .mdl_bg{
	}

	section.main .mdl_bg.open{
	}

	section.main .mdlbox .mdl{
		/* height: 50vh; */
		/* padding: 0 0 50px; */
	}

	section.main .mdlbox .mdl.open{
	}

	section.main .mdlbox .clsbtn{
	}

	section.main .mdlbox .mdl .imgbox{
		width: 80%;
		margin-top: 30px;
	}

	section.main .mdlbox .mdl .p10{
		font-size: clamp(10px, 8vw, 40px);
	}

	section.main .mdlbox .mdl .p20{
    font-size: clamp(10px, 4.5vw, 20px);
	}

	section.main .mdlbox .mdl .p30{
	}

	section.main .mdlbox .mdl .p40{
		font-size: clamp(10px, 3.5vw, 18px);
	}

	section.main .mdlbox .mdl .txtbox{
		width: 100%;
	}

	section.main .mdlbox .mdl .txtbox .flex{
		flex-direction: row;
	}

	section.main .mdlbox .mdl .txtbox .item{
		width: 40%;
	}

	section.main .mdlbox .mdl .txtbox .item._l{
	}

	section.main .mdlbox .mdl .txtbox .item._l{
	}

	section.main .mdlbox .mdl .p04{
	}

	section.main .mdlbox .mdl .p04 span{
	}

	section.main .mdlbox .mdl .p05{
	}

	section.main .mdlbox .mdl .p06{
	}

	section.main .mdlbox .mdl .num{
	}

	section.main .mdlbox .mdl ul{
	}

	section.main .mdlbox .mdl li{
	}

	section.main .mdlbox .mdl li._pc{
		display: none;
	}

	section.main .mdlbox .mdl li._sp{
		display: flex;
	}

	section.main .mdlbox .mdl li:last-of-type{
	}

	section.main .mdlbox .mdl .item_l{
		width: 100%;
		margin-bottom: 15px;
		flex-direction: row;
		justify-content: center;
	}

	section.main .mdlbox .mdl .item_r{
		width: 100%;
		text-align: center;
	}

	section.main .mdlbox .mdl .item_r.flex{
	}

	section.main .mdlbox .mdl .item_r .imgbox_02{
		width: 80%;
		margin-top: 20px;
	}

	section.main .mdlbox .mdl .item_r .imgbox_03{
		width: 60%;
		margin: 20px auto 0;
	}

	section.main .mdlbox .mdl .btn_mdlent{
		margin: 10px auto 0;
	}
}

/* section._01 */

section._01{
	/* max-width: 1100px; */
	/* width: 90%; */
	margin: 0 auto;
	padding-bottom: 700px;
	position: relative;
	text-align: center;
}

section._01 .p01{
	position: relative;
	font-size: clamp(10px, 10vw, 20px);
	font-family: "cormo", serif;
}

section._01 .p01::before{
	content: '';
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #726934;
	position: absolute;
  bottom: -110px;
	left: 50%;
	transform: translateX(-50%);
}

section._01 .p01::after{
    content: "";
    width: 1px;
    height: 90px;
    background-color: #726934;
    display: inline-block;
    position: absolute;
    bottom: -110px;
    left: calc(50% - 1px);
    -webkit-animation: a_pth01 2.5s ease-in-out infinite;
    animation: a_pth01 2.5s ease-in-out infinite;
}

@keyframes a_pth01{
	0%{
		transform: scaleY(0);
		transform-origin: top;
	}
	50%{
		transform: scaleY(1);
		transform-origin: top;
	}
	50.1%{
		transform: scaleY(1);
		transform-origin: bottom;
	}
	100%{
		transform: scaleY(0);
		transform-origin: bottom;

	}
}

section._01 .p02{
	margin-top: 130px;
	font-family: "cormo", serif;
	font-size: clamp(10px, 10vw, 20px);
	letter-spacing: 0.2em;
}

section._01 .copy{
	margin: 150px auto 60px;
	font-family: "shippori", serif;
	writing-mode: vertical-rl;
	font-size: clamp(10px, 3vw, 60px);
	line-height: 1.5em;
	letter-spacing: 0.1em;
	text-align: left;
}

section._01 .copy span{
	margin-top: 0.7em;
	display: block;
}

section._01 .txtbox p{
	margin-bottom: 1.5em;
	color: #726934;
	font-size: clamp(10px, 1.2vw, 18px);
	line-height: 2.5;
}

section._01 .imgarea{
	max-width: 1100px;
	width: 90%;
	height: 2300px;
	margin: 180px auto 0;
	display: flex;
	flex-direction: column;
	position: relative;
	align-items: center;
}

section._01 .imgarea .imgnote{
	color: #000;
	text-shadow: none;
	text-align: left;
	right: auto;
	left: 0;
	bottom: -3em;
}

section._01 .imgnote{
	color: #000;
	text-shadow: none;
	text-align: left;
	right: auto;
	left: 0;
	bottom: -3em;
}

/* section._01 .imgarea .imgbox{
	position: absolute;
	left: 0;
} */

section._01 .imgbox{
	position: absolute;
	left: 0;
}

section._01 .imgbox._01{
	max-width: 400px;
	width: 28%;
	left: 8vw;
	top: -5vw;
}

section._01 .imgbox._02{
	max-width: 350px;
	width: 22%;
	top: -4vw;
	left: auto;
	right: 8vw;
}

section._01 .imgbox._03_01{
	max-width: 300px;
	width: 22%;
	top: 20vw;
	left: 3vw;
	z-index: 1;
}

section._01 .imgbox._03_02{
	max-width: 380px;
	width: 50%;
	top: 550px;
	left: 9vw;
}

section._01 .imgbox._04{
	max-width: 270px;
	width: 15%;
	top: 14vw;
	left: auto;
	right: 3vw;
}

section._01 .imgbox._05{
	max-width: 300px;
	width: 20%;
	top: 43vw;
	left: auto;
	right: 8vw;
}

section._01 .imgbox._06{
	max-width: 380px;
	width: 25%;
	top: 42vw;
	left: 3vw;
}

/* section._01 .imgarea .imgbox._01{
	max-width: 450px;
	width: 50%;
	left: 8vw;
}

section._01 .imgarea .imgbox._02{
	max-width: 400px;
	width: 35%;
	top: 150px;
	left: auto;
	right: 0;
}

section._01 .imgarea .imgbox._03_01{
	max-width: 280px;
	width: 35%;
	top: 390px;
	z-index: 1;
}

section._01 .imgarea .imgbox._03_01 .imgnote{
	left: auto;
	right: -14em;
	bottom: 50px;
}

section._01 .imgarea .imgbox._03_02{
	max-width: 380px;
	width: 50%;
	top: 550px;
	left: 9vw;
}

section._01 .imgarea .imgbox._04{
	max-width: 320px;
	width: 35%;
	top: 600px;
	left: auto;
	right: 1vw;
}

section._01 .imgarea .imgbox._05{
	max-width: 300px;
	width: 35%;
	top: 980px;
	left: 5vw;
}

section._01 .imgarea .imgbox._06{
	max-width: 500px;
	width: 60%;
	top: 1260px;
	left: 12vw;
} */

/* .slider{
	display: none !important;
} */

@media screen and (max-width: 950px) {
	section._01 .imgarea{
		height: 1700px;
	}

	section._01 .imgarea .imgbox._01{
	}

	section._01 .imgarea .imgbox._02{
	}

	section._01 .imgarea .imgbox._03_01{
		top: 340px;
	}

	section._01 .imgarea .imgbox._03_01 .imgnote{
	}

	section._01 .imgarea .imgbox._03_02{
		top: 480px;
	}

	section._01 .imgarea .imgbox._04{
		top: 520px;
	}

	section._01 .imgarea .imgbox._05{
		top: 780px;
	}

	section._01 .imgarea .imgbox._06{
		top: 1020px;
	}
}

@media screen and (max-width: 768px) {
	section._01{
		padding-bottom: 0;
	}

	section._01 .p01{
		font-size: clamp(10px, 5vw, 20px);
	}

	section._01 .p01::before{
		display: none;
	}

	section._01 .p01::after{
		display: none;
	}

	section._01 .p02{
	}

	section._01 .copy{
		margin: 0;
		position: absolute;
		top: 10vw;
		left: 50%;
		transform: translateX(-50%);
		color: #fff;
		font-size: clamp(10px, 7vw, 40px);
	}

	section._01 .copy span{
	}

	section._01 .txtbox{
		width: 100%;
		position: absolute;
		top: 78vw;
		left: 50%;
		transform: translateX(-50%);
	}

	section._01 .txtbox p{
		color: #fff;
		font-size: clamp(12px, 2.5vw, 18px);
		line-height: 2.2;
	}

	section._01 .imgnote{
		color: #fff;
		left: 3px;
		bottom: 3px;
	}

	section._01 .imgnote_en{
		position: absolute;
		right: 3px;
		bottom: 3px;
		color: #fff;
		font-size: 10px;
		opacity: 0.7;
	}

	section._01 .imgbox{
		position: relative;
	}

	section._01 .imgarea{
		display: none;
	}

	section._01 .imgarea .imgnote{
	}

	section._01 .imgarea .imgbox{
	}

	section._01 .imgarea .imgbox._01{
	}

	section._01 .imgarea .imgbox._02{
	}

	section._01 .imgarea .imgbox._03_01{
	}

	section._01 .imgarea .imgbox._03_01 .imgnote{
	}

	section._01 .imgarea .imgbox._03_02{
	}

	section._01 .imgarea .imgbox._04{
	}

	section._01 .imgarea .imgbox._05{
	}

	section._01 .imgarea .imgbox._06{
	}

	/* slick */
	/* .slider{
		overflow-x: hidden;
		display: block !important;
	}

	.slider._t{
		margin-top: 80px;
		margin-bottom: 15px;
	}

	.slider li{
		position: relative;
	}

	.slider li .imgnote{
		text-align: right;
		font-size: clamp(10px, 2vw, 18px);
	}

	.slider._b {
		transform: scaleX(-1);
	}

	.slider._b li {
		transform: scaleX(-1);
	} */

	.slider {
		width: 100%;
		overflow: hidden;
		display: flex;
	}

	.slider._t{
		margin-top: 80px;
		margin-bottom: 15px;
	}

	.slider ul {
		padding: 0;
		margin: 0;
		display: flex;
		list-style: none;
		flex-shrink: 0;
		min-width: 100%;
	}

	.slider ul._r {
		animation: slider_right 22s linear infinite;
	}

	.slider ul._l {
		animation: slider_left 22s linear infinite;
	}

	@keyframes slider_right {
		from {
			transform: translateX(-100%);
		}
		to {
			transform: translateX(0);
		}
	}

	@keyframes slider_left {
		from {
			transform: translateX(0);
		}
		to {
			transform: translateX(-100%);
		}
	}

	.slider li {
		width: 300px;
		flex-shrink: 0;
		position: relative;
	}

	.slider li img {
		width: 100%;
		display: block;
	}
}

/* section._com */

section._com .txtbox{
	margin: 0 auto;
	padding: 12vw 0 8vw;
}

section._com .txtbox .p01{
	font-size: clamp(10px, 3vw, 45px);
	letter-spacing: 0.1em;
}

section._com .txtbox .l_txt{
	font-size: clamp(10px, 4.5vw, 65px);
	letter-spacing: 0.1em;
}

section._com .txtbox .p01 .num{
	font-family: "cormo", serif;
	font-size: clamp(10px, 6.5vw, 90px);
}

section._com .txtbox .p02{
	margin-top: 60px;
	font-size: clamp(10px, 1.5vw, 18px);
	line-height: 2.2;
}

section._com .txtbox._bg{
	padding: 50px 0;
	box-sizing: border-box;
}

section._com .txtbox._bg._r{
	background: linear-gradient(90deg, transparent 0%, #EFEEEC 100%);
}

section._com .txtbox._bg._l{
	background: linear-gradient(270deg, transparent 0%, #EFEEEC 100%);
}

section._com .txtbox._bg .p02{
	margin-top: 0;
}

@media screen and (max-width: 768px) {
	section._com .txtbox{
	}

	section._com .txtbox .p01{
		font-size: clamp(10px, 6vw, 45px);
	}

	section._com .txtbox .l_txt{
		font-size: clamp(10px, 9vw, 65px);
	}

	section._com .txtbox .p01 .num{
		font-size: clamp(10px, 12vw, 90px);
	}

	section._com .txtbox .p02{
		margin-top: 30px;
    font-size: clamp(10px, 3.5vw, 18px);
	}

	section._com .txtbox._bg{
		padding: 25px 0;
		padding-left: 5%;
	}

	section._com .txtbox._bg._r{
	}

	section._com .txtbox._bg._l{
	}

	section._com .txtbox._bg .p02{
	}

	section._com .imgbox._r{
		width: 90%;
		margin-left: auto;
	}

	section._com .imgbox._l{
		width: 90%;
		margin-right: auto;
		margin-top: 20px;
	}

	section._com .imgbox._b{
		margin-top: 20px;
	}

	section._com .imgbox .imgtxt{
		position: absolute;
		bottom: 8vw;
		left: 8vw;
		color: #fff;
		font-size: clamp(10px, 4vw, 18px);
		line-height: 2;
	}

	section._com .flexbox{
		margin-bottom: 40px;
		flex-direction: row;
		justify-content: end;
	}

	section._com .flexbox .imgbox{
		width: 45.5%;
	}

	section._com .flexbox .imgbox._l{
		margin-top: 0;
		margin-right: 4%;
	}

	section._com .flexbox .imgbox._r{
		margin-left: 0;
	}
}

/* section._02 */

section._02{
	padding-bottom: 400px;
	position: relative;
	background: url(../img/top/bg_02.png);
	background-position: top;
	background-size: cover;
}

section._02 .imgbox._07{
	width: 100vw;
	position: absolute;
	right: 0;
	top: -32vw;
}

section._02 .imgbox._07 .imgnote{
	bottom: 3vw;
	color: #000;
	text-shadow: none;
}

section._02 .imgbox._08{
	max-width: 380px;
	width: 30vw;
	position: absolute;
	right: 12vw;
	top: 32vw;
}

section._02 .imgbox._09{
	width: 55vw;
}

section._02 .imgbox._10{
	max-width: 400px;
	width: 30vw;
}

section._02 .imgbox._11{
	max-width: 300px;
	width: 40%;
	position: absolute;
	left: -9vw;
	bottom: -1.5vw;
}

section._02 .txtbox._t{
	max-width: 1300px;
	width: 80%;
}

section._02 .txtbox._t .p01 .ind_01{
	margin-left: 60px;
	display: inline-block;
}

section._02 .txtbox._t .p02.ind_01{
	margin-left: 60px;
}

section._02 .txtbox._t .p02{
	margin-left: 60px;
}

section._02 .item{
	width: 45vw;
	padding-left: 10vw;
	box-sizing: border-box;
	position: relative;
}

section._02 .txtbox._b{
	margin-left: 0;
	padding-bottom: 5vw;
}

section._02 .txtbox._b .p01{
	margin-top: 80px;
}

section._02 .txtbox._b .p01 .ind_02{
	margin-left: 8vw;
	display: inline-block;
}

section._02 .txtbox._bg{
	margin-top: 50px;
}

section._02 .box{
	align-items: start;
}

@media screen and (max-width: 1500px) {
	section._02 .imgbox._11 {
    width: 60%;
    left: -25vw;
	}
}

/* section._03 */

section._03{
	padding-bottom: 250px;
	position: relative;
	background: url(../img/top/bg_03.png);
	background-position: center;
	background-size: cover;
}

section._03 .box{
	width: fit-content;
	margin: 0 auto;
	position: relative;
	left: -8vw;
	top: -10vw;
}

section._03 .absbox{
	position: absolute;
	bottom: -8vw;
	right: -15vw;
}

section._03 .imgbox._12_01{
	width: 60vw;
}

section._03 .imgbox._12_01 .imgnote{
	right: auto;
	left: 3px;
}

section._03 .imgbox._12_02{
	width: 20vw;
}

section._03 .imgbox._13{
	max-width: 540px;
	width: 30%;
	position: absolute;
	right: 18vw;
	bottom: 0;
}

section._03 .item{
	position: relative;
}

section._03 .txtbox{
	max-width: 1300px;
	width: 80%;
	margin-top: -12vw;
}

section._03 .txtbox .ind{
	margin-left: 60px;
}

section._03 .txtbox .p02{
	margin-left: 60px;
}

section._03 .txtbox._bg._r{
	width: 49%;
	margin-top: 50px;
	margin-left: auto;
	margin-right: 0;
}

/* section._04 */

section._04{
	padding-bottom: 150px;
	position: relative;
	background: url(../img/top/bg_04.png);
	background-position: center;
	background-size: cover;
}

section._04 .imgbox._14{
	width: 50vw;
	margin-left: auto;
	position: relative;
	top: -5vw;
}

section._04 .imgbox._15{
	max-width: 500px;
	width: 40%;
	position: absolute;
	top: 16.5vw;
	left: 8vw;
}

section._04 .imgbox._16_01{
	max-width: 500px;
	width: 40vw;
	position: relative;
	z-index: 1;
}

section._04 .imgbox._16_01 .imgnote{
	right: auto;
	left: 3px;
}

section._04 .imgbox._16_02{
	width: 18vw;
}

section._04 .txtbox{
	max-width: 1300px;
	width: 80%;
	padding: 4vw 0 0;
	display: flex;
	flex-direction: column;
	align-items: end;
}

section._04 .txtbox .ind{
	margin-left: 60px;
}

section._04 .txtbox .p02{
	margin-left: 60px;
}

section._04 .txtbox._bg{
	width: 42%;
	padding: 3vw 0;
	position: absolute;
	top: 40vw;
}

section._04 .box{
	max-width: fit-content;
	margin: 0 auto;
	position: relative;
	left: -18vw;
	top: -6vw;
}

section._04 .absbox{
	width: fit-content;
	position: absolute;
	bottom: -10vw;
	right: -15vw;
}

@media screen and (max-width: 1500px) {
	section._04 .txtbox._bg{
		top: 46.5vw;
	}
}

/* section._05 */

section._05 .box_t{
	background: url(../img/top/bg_02_sp.png);
	background-position: bottom;
	background-size: cover;
	position: relative;
}

section._05 .box_b{
	background: url(../img/top/bg_03_sp.png);
	background-position: top;
	background-size: cover;
	position: relative;
}

section._05 .txtbox._t{
	width: 90%;
	margin: 0 auto;
	padding: 80px 0 200px;
}

section._05 .txtbox._t .ind_01{
	margin-left: 35px;
}

section._05 .txtbox._b{
	width: 90%;
	margin: 0 auto;
	padding: 120px 0 30px;
}

section._05 .txtbox._b .ind_02{
	margin-left: 80px;
}

section._05 .imgbox._07{
	width: 105%;
	position: absolute;
	bottom: -10vw;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}

section._05 .imgbox._07 .imgnote{
	right: 6vw;
	bottom: -1em;
	color: #000;
	text-shadow: none;
}

/* section._06 */

section._06 .box{
	background: url(../img/top/bg_04_sp.png);
	background-position: top;
	background-size: cover;
	position: relative;
}

section._06 .txtbox{
	width: 90%;
	margin: 0 auto;
	padding: 80px 0 60px;
}

section._06 .txtbox._bg{
	width: 100%;
}

section._06 .txtbox .ind{
	margin-left: 30px;
}

/* section._07 */

section._07 .box{
	background: url(../img/top/bg_05_sp.png);
	background-position: top;
	background-size: cover;
	position: relative;
}

/* spwrap */

.spwrap{
	padding-bottom: 100px;
	overflow: hidden;
}