html,
body {
  overflow-x: hidden;
}

#wrap {
  position: relative;
  overflow: hidden;
	margin-top: 0;
}
@media screen and (max-width: 910px) {
}
@media screen and (max-width: 680px) {
}
/* --------------------------------------------------- */
#mainvisual {
	width: 100%;
	min-height: 100vh;
	position: relative;
	z-index: 2;
}
#mainvisual .arrow {
	width: 110%;
	position: absolute;
	left: 5%;
	bottom: 0;

	opacity: 0;
	transform: translate(140px, -80px) scale(1.08) rotate(-16deg);
	transform-origin: center center;

	animation: arrowIn .75s cubic-bezier(.16, .84, .28, 1) .2s forwards;
}

@keyframes arrowIn {
	0% {
		opacity: 0;
		transform: translate(300px, -80px) scale(1.08) rotate(-16deg);
		filter: blur(4px);
	}

	100% {
		opacity: 1;
		transform: translate(0, 0) scale(1) rotate(-16deg);
		filter: blur(0);
	}
}
#mainvisual .ph {
	width: 830px;
	position: absolute;
	left: 45%;
	bottom: 10%;
}
#mainvisual .mv-ttl {
	max-width: 272px;
	position: absolute;
	display: flex;
	justify-content: space-between;
	top: 15%;
	left: 10%;
}
#mainvisual .mv-ttl .ttl1 {
	width: 61%;
}
#mainvisual .mv-ttl .ttl2 {
	width: 37%;
}
#mainvisual .mv-ttl .ttl3 {
	position: absolute;
	width: auto;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: bold;
	left: 39%;
	bottom: 18%;
}
@media screen and (max-width: 980px) {
	#mainvisual {
		height: 900px;
		min-height: 0;
    }
	#mainvisual .ph {
        width: 650px;
		left: 40%;
		bottom: 5%;
    }
	#mainvisual .mv-ttl {
        max-width: 210px;
        top: 15%;
        left: 8%;
      }
	#mainvisual .mv-ttl .ttl3 {
		width: 150%;
	}
}
@media screen and (max-width: 580px) {
	#mainvisual {
		height: 600px;
    }
	#mainvisual .ph {
        width: 450px;
		left: 30%;
		bottom: 2%;
    }
	#mainvisual .mv-ttl {
        max-width: 140px;
        top: 20%;
      }
	#mainvisual .mv-ttl .ttl3 {
		width: 180%;
		font-size: 11px;
		font-weight: 500;
		left: 45%;
		bottom: 20%;
	}
}
/* --------------------------------------------------- */
.sec01-area {
	position: relative;
	height: 200vh;
}

#sec01 {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

#sec01.is-fixed {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1;
}

#sec01.is-end {
	position: absolute;
	left: 0;
	bottom: 0;
	top: auto;
	z-index: 1;
}


/* ==============================
スライダー
============================== */

.slider01 {
	width: 100%;
	height: 100vh;
}

/* Slickが生成する要素にも高さを設定 */
.slider01 .slick-list,
.slider01 .slick-track {
	height: 100%;
}

.slider01 .slide {
	width: 100%;
	height: 100vh;
}

/* Slick初期化前の画像の重なり防止 */
.slider01:not(.slick-initialized) .slide:not(:first-child) {
	display: none;
}

.slider01 .slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}


/* ==============================
タブレット
============================== */

@media screen and (max-width: 980px) {

	.sec01-area {
		height: 140vh;
	}

	#sec01,
	#sec01.is-fixed,
	#sec01.is-end {
		height: 70vh;
	}

	.slider01,
	.slider01 .slide {
		height: 70vh;
	}
}


/* ==============================
スマホ
============================== */

@media screen and (max-width: 680px) {

	.sec01-area {
		height: 100vh;
	}

	#sec01,
	#sec01.is-fixed,
	#sec01.is-end {
		height: 50vh;
	}

	.slider01,
	.slider01 .slide {
		height: 50vh;
	}
}
/* --------------------------------------------------- */
.wrap-area {
	position: relative;
	z-index: 2;
	width: 100%;
	min-height: 100vh;
	background: #fff;
	margin-top: -100vh;
	padding-top: clamp(30px, 3vw, 40px);
}
@media screen and (max-width: 980px) {
	.wrap-area {
		margin-top: -70vh;
	}
}
@media screen and (max-width: 680px) {
	.wrap-area {
		margin-top: -50vh;
	}
}
/* --------------------------------------------------- */
#sec02 {
	max-width: 1000px;
	width: 90%;
	margin: 0 auto;
	margin-bottom: clamp(80px, 15vw, 150px);
}
#sec02 .title {
	text-align: center;
	font-size: 1.7em;
	font-weight: 500;
	margin-bottom: clamp(20px, 5vw, 60px);
}
#sec02 .inner {
	margin-bottom: 30px;
}
#sec02 dl {
	width: 100%;
	display: table;
	border: #ddd 1px solid;
	padding: 15px;
	border-radius: 3px;
	margin-bottom: 10px;
}
#sec02 dt,
#sec02 dd {
	display: table-cell;
	vertical-align: top;
}
#sec02 dt {
}
#sec02 dd {
	width: 120px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 11px;
	padding-top: 3px;
	color: #aaa;
}
#sec02 dt a:hover {
	text-decoration: underline;
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 680px) {
	#sec02 dd {
        width: 80px;
        font-size: 9px;
		letter-spacing: 1px;
    }
}
/* --------------------------------------------------- */
#sec03 {
	position: relative;
	z-index: 2;
	max-width: 1500px;
	width: 100%;
	margin: 0 auto 50px;
	margin-bottom: clamp(70px, 10vw, 150px);
}
#sec03 .block1 {
	max-width: 1400px;
	width: 90%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
#sec03 .block1 dt {
	width: 30%;
	max-width: 420px;
	order: 2;
}
#sec03 .block1 dd {
	width: 60%;
	order: 1;
	margin-bottom: 30px;
}
#sec03 .block1 dd p {
	margin-bottom: 25px;
}
#sec03 .block1 dd strong {
	font-size: 1.2em;
	font-weight: 500;
	letter-spacing: 1px;
}
#sec03 .block2 {
	padding-top: 35%;
	position: relative;
	margin-bottom: clamp(50px, 7vw, 80px);
}
#sec03 .block2 .ph1,
#sec03 .block2 .ph2,
#sec03 .block2 .ph3,
#sec03 .block2 .ph4,
#sec03 .block2 .arrow {
	position: absolute;
}
#sec03 .block2 .ph1 {
	width: 34%;
	top: 0;
	left: 0;
	transition-delay: .2s;
}
#sec03 .block2 .ph2 {
	width: 25%;
	bottom: 0;
	left: 37%;
	transition-delay: .4s;
}
#sec03 .block2 .ph3 {
	width: 19%;
	left: 65%;
	top: 10%;
	transition-delay: .1s;
}
#sec03 .block2 .ph4 {
	width: 23.5%;
	right: 0;
	top: 70%;
	transition-delay: .3s;
}
#sec03 .block2 .arrow {
	width: 38%;
	transform: rotate(-24deg);
	top: 0;
	right: 35%;
}
#sec03 .block3 {
	max-width: 900px;
	width: 70%;
	margin: 0 auto 0 5%;
}
#sec03 .block3 dt {
	font-size: 1.5em;
	font-weight: 500;
	margin-bottom: 20px;
	letter-spacing: 5px;
}
#sec03 .block3 dd {
}
@media screen and (max-width: 980px) {
}
@media screen and (max-width: 680px) {
	#sec03 .block1 {
        display: block;
    }
    #sec03 .block1 dt {
        width: 50%;
		margin: 0 auto 30px;
    }
    #sec03 .block1 dd {
        width: 100%;
    }
	#sec03 .block1 dd strong {
        font-size: 1.1em;
		font-family: "Noto Sans JP", sans-serif;
        font-weight: 500;
		letter-spacing: 0;
    }
	#sec03 .block2 .arrow {
		width: 15%;
        transform: rotate(124deg);
        top: auto;
        right: 26%;
		bottom: 0;
		margin-bottom: -5%;
    }
	#sec03 .block3 {
        width: 90%;
    }
	#sec03 .block3 dt {
        font-size: 1.3em;
        margin-bottom: 15px;
        letter-spacing: 3px;
    }
}
/* --------------------------------------------------- */
#sec04 {
	position: relative;
	z-index: 2;
	margin-bottom: clamp(70px, 10vw, 150px);
}
#sec04 .title {
	font-size: 4.5em;
	font-weight: 300;
	position: relative;
	display: inline-block;
	padding: 0 15px;
	z-index: 1;
}
#sec04 .title img {
	display: inline-block;
	position: absolute;
	width: 110%;
	left: -20px;
	top: 100%;
	margin-top: -10px;
}
#sec04 .block {
	width: 95%;
	margin: 0 0 0 auto;
	position: relative;
	padding-top: 100px;
	z-index: 0;
}
#sec04 .block .ph {
	width: 75%;
	height: 670px;
	background: url("../images/top/sec4-ph1.jpg") no-repeat center;
	background-size: cover;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 0;
	
	transform: scale(1.1);
	opacity: 0;
	transition: 1s ease;
}
#sec04 .block .ph.active {
	transform: scale(1);
	opacity: 1;
}
#sec04 .block .box {
	background-color: #fff;
	padding: 4%;
	position: relative;
	z-index: 1;
	width: 50%;
}
#sec04 .block .box p {
	margin-bottom: 30px;
}
#sec04 .block .box p.name {
	font-size: 13px;
	margin-bottom: 0;
	text-align: right;
	line-height: 1.6;
}
#sec04 .block .box p.name span {
	display: block;
	font-size: 18px;
	text-align: right;
}
@media screen and (max-width: 980px) {
	#sec04 .title {
		font-size: 3.5em;
	}
	#sec04 .block {
		width: 100%;
        padding-top: 45%;
    }
    #sec04 .block .ph {
        width: 90%;
        height: auto;
		padding-top: 55%;
        position: absolute;
    }
    #sec04 .block .box {
        width: 90%;
    }
}
@media screen and (max-width: 680px) {
	#sec04 .title {
		font-size: 2.5em;
	}
	#sec04 .block .box {
        width: 95%;
		padding: 5% 5% 5% 7%;
    }
}
/* --------------------------------------------------- */
#sec05 {
	position: relative;
	z-index: 2;
	margin-bottom: clamp(100px, 20vw, 250px);
}
#sec05 .title-box {
    text-align: right;
}
#sec05 .title {
	font-size: 4.5em;
	font-weight: 300;
	position: relative;
	display: inline-block;
	padding: 0 15px 0px;
	margin-bottom: 100px;
}
#sec05 .title img {
	display: inline-block;
	position: absolute;
	width: 110%;
	right: -20px;
	top: 100%;
}
#sec05 .text {
	max-width: 600px;
	width: 70%;
	margin: 0 auto 50px 5%;
}
#sec05 .block {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	max-width: 1400px;
	width: 95%;
	margin: 0 auto;
}
#sec05 .box {
	display: block;
	width: 24%;
	border: #ddd 1px solid;
	background-color: #fff;
	box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 0.08);
}
#sec05 .box:hover {
	box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.08);
}
#sec05 .box .ph {
	position: relative;
}
#sec05 .box .ph::before {
	content: "arrow_forward_ios";
    font-family: "Material Symbols Outlined";
    font-weight: normal;
    font-style: normal;
    font-size: 11px;
	
    position: absolute;
	bottom: 0;
    right: 10px;
    transform: translate(0%, 50%);
    color: #fff;
	width: 30px;
	height: 30px;
	line-height: 30px;
	background-color: #111;
	
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
	
	border-radius: 50%;
	transition: .3s;
	letter-spacing: 0;
}
#sec05 .box:hover .ph::before {
	color: #111;
	background-color: #fff;
}
#sec05 .box dl {
	padding: 20px;
}
#sec05 .box dt {
	font-size: 1.2em;
	font-weight: 500;
	margin-bottom: 20px;
	line-height: 1.6;
}
#sec05 .box dd {
	letter-spacing: 1px;
}
#sec05 .box {
}
@media screen and (max-width: 1200px) {
	#sec05 .box dt {
		font-size: 1.1em;
	}
}
@media screen and (max-width: 980px) {
	#sec05 .title {
		font-size: 3.5em;
	}
	#sec05 .block {
		width: 90%;
        flex-wrap: wrap;
    }
    #sec05 .box {
        width: 48%;
    }
}
@media screen and (max-width: 680px) {
	#sec05 .title {
		font-size: 2.5em;
		margin-bottom: 80px;
	}
	#sec05 .text {
        max-width: none;
        width: 90%;
        margin: 0 auto 40px;
    }
	#sec05 .block {
		display: block;
    }
    #sec05 .box {
		width: 100%;
		margin-bottom: 20px;
	}
	#sec05 .box dt {
		font-size: 1.2em;
	}
}
/* --------------------------------------------------- */
#sec06{
	position:relative;
	background:#F2F2F2;
	padding-bottom: clamp(70px, 10vw, 150px);
}
#sec06::before{
	content:"";
	position:absolute;
	left:0;
	right:0;
	top:-100px;
	height:340px;
	background:#F2F2F2;
	transform: skewY(2.8deg);
	z-index:-1;
}
#sec06 .title {
	font-size: 4.5em;
	font-weight: 300;
	position: relative;
	display: inline-block;
	padding: 0 15px 0px;
	z-index: 1;
}
#sec06 .title img {
	display: inline-block;
	position: absolute;
	width: 130px;
	top: 60%;
	left: 90%;
}
#sec06 .slider {
	position: relative;
	z-index: 0;
	margin-bottom: clamp(70px, 10vw, 150px);
}
#sec06 .slider .item {
	box-sizing: border-box;
}
#sec06 .slider .item a {
	display: block;
	margin: 0 20px;
}
#sec06 .slider .item .ph {
	margin-bottom: 25px;
}
#sec06 .slider .item .ttl {
	font-size: 1.4em;
	font-weight: 500;
	margin-bottom: 15px;
}
#sec06 .slider .item .date {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	font-size: 12px;
	display: inline-block;
	border: #333 1px solid;
	line-height: 1;
	padding: 7px 15px 10px;
}
#sec06 .slick-dots {
	display: flex;
	justify-content: flex-end;
	width: 95%;
	margin: 0 auto;
}
#sec06 .slick-dots li {
	width: 50px;
	height: 2px;
	margin: 0 5px;
}
#sec06 .slick-dots li button {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	border: none;
	background: #ddd;
	font-size: 0;
}

#sec06 .slick-dots li button::before {
	display: none;
}
#sec06 .slick-dots li.slick-active button {
	background: #111;
}
#sec06 .slick-prev,
#sec06 .slick-next {
	width: 30px;
	height: 60px;
	border: none;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;

	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;

	font-size: 0;
	color: transparent;
	cursor: pointer;
}
#sec06 .slick-prev {
	background-image: url("../images/common/arrow13.png");
	left: 4%;
	background-color: transparent;
}
#sec06 .slick-next {
	background-image: url("../images/common/arrow14.png");
	right: 4%;
	background-color: transparent;
}

#sec06 .slick-prev::before,
#sec06 .slick-next::before {
	display: none;
}
@media screen and (max-width: 980px) {
	#sec06 .title {
		font-size: 3.5em;
	}
	#sec06 .title img {
        width: 90px;
    }
}
@media screen and (max-width: 680px) {
	#sec06::before{
        top:-50px;
        height:140px;
    }
	#sec06 .title {
		font-size: 2.5em;
	}
	#sec06 .title img {
        width: 40px;
    }
	
	#sec06 .slider .item .ttl {
        font-size: 1.1em;
        font-weight: 500;
        margin-bottom: 10px;
		letter-spacing: 1px;
    }
    #sec06 .slider .item .date {
        font-size: 10px;
        padding: 7px 10px;
    }
	
	#sec06 .slick-dots li {
        width: 30px;
        margin: 0 1px;
    }
	
	#sec06 .slick-prev,
    #sec06 .slick-next {
        width: 20px;
        height: 40px;
    }
    #sec06 .slick-prev {
        left: 2%;
    }
    #sec06 .slick-next {
        right: 2%;
    }
}
/* --------------------------------------------------- */

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

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


