@charset "utf-8";

#top .sec1{
}
#top .sec1 .sec_inner{
	position: relative;
}
#top .sec1 .text_area{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#top .sec1 .text_area h3{
    background: url(../img/top/sec1_bg.jpg) no-repeat;
    padding: 40px 0;
    background-size: contain;
    background-position: center;
    width: 490px;
    margin: 0 auto;
}
#top .sec1 .text_area p{
	border-left: 1px solid #ccc;
    padding: 20px 0 20px 40px;
}
#top .sec1 ul{
	display: flex;
    justify-content: space-around;
    margin-top: 40px;
}
#top .sec1 ul li{
	position: relative;
    background: rgb(6,162,232);
    background: -webkit-linear-gradient(left, rgba(6,162,232,1) 50%, rgba(158,195,253,1) 100%);
    background: -o-linear-gradient(left, rgba(6,162,232,1) 50%, rgba(158,195,253,1) 100%);
    background: linear-gradient(to right, rgba(6,162,232,1) 50%, rgba(158,195,253,1) 100%);
    width: 30%;
    text-align: center;
    padding: 10px;
    font-size: 2.2rem;
    font-weight: bold;
    color: #fff;
    height: 60px;
}
#top .sec1 ul li:before{
	position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-bottom: 60px solid transparent;
    border-left: 60px solid #1d1d1d;
    top: 0;
    left: 0;
}
#top .sec1 ul li span{
	color: #ffef05;
    font-size: 2.6rem;
    font-weight: bold;
}
@media screen and (max-width:1024px) {
	#top .sec1{
    }
    #top .sec1 .sec_inner{
        position: relative;
    }
    #top .sec1 .text_area{
        display:block;
    }
    #top .sec1 .text_area h3{
        padding: 8% 0;
        width: auto;
    }
    #top .sec1 .text_area p{
        border-left: 0;
        padding: 0;
        width: auto;
        margin: 0 4%;
    }
    #top .sec1 ul{
        display:block;
        margin-top: 40px;
    }
    #top .sec1 ul li{
        width:auto;
        margin: 0 4% 4%;
    }
    #top .sec1 ul li:before{
        position: absolute;
        content: "";
        width: 0;
        height: 0;
        border-bottom: 60px solid transparent;
        border-left: 60px solid #1d1d1d;
        top: 0;
        left: 0;
    }
    #top .sec1 ul li span{
        color: #ffef05;
        font-size: 2.6rem;
        font-weight: bold;
    }
}

#top .sec2{
	background:url(../img/top/sec2_bg_pc.png) ,linear-gradient(0deg,#edf0f0 0%,#edf0f0 70%,#ffffff 70%,#ffffff 100%);
	background-repeat: no-repeat;
	background-position: top 0 right 0;
	background-size: contain;
}
#top .sec2 .heading{
	padding-top: 30px;
    text-align:left;
    margin-bottom: 0;
}
#top .sec2 .heading h4{
	position: relative;
	font-size: 3.2rem;
    display: flex;
    color: #04a2e8;
    font-weight: bold;
    align-items: center;
    padding-left: 40px;
}
#top .sec2 .heading h4:before{
	position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-bottom: 30px solid transparent;
    border-left: 30px solid #ffef05;
    top: 7px;
    left: 0;
}
#top .sec2 .heading h4 span{
	display: block;
    font-family: balboa-plus-fill, sans-serif;
    font-size: 1.6rem;
    color: #1c1c1c;
    margin-left: 10px;
}
#top .sec2 .heading p{
	padding:30px;

}
#top .sec2 .box_wrap {
	display: flex;
    justify-content: space-between;
}
#top .sec2 .box{
	width: 23%;
    margin-top: 50px;
    background: #fff;
}
/* 230307追加ここから */
#top .sec2 .box_wrap.new {
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
    gap: 30px;
}
#top .sec2 .box_wrap.new .box{
	width: calc((100% / 3) - 20px);
    background: #fff;
    margin-top: 0;
}
/* 230307追加ここまで */
#top .sec2 .box .txt_area{
	width: auto;
    margin: 3%;
}
#top .sec2 .box h2 {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.4;
    width: auto;
    margin: 3%;
}
#top .sec2 .box h2 span {
	display: block;
    font-family: balboa-plus-fill, sans-serif;
    color: #00a1e7;
    font-size: 1.6rem;
}
#top .sec2 .box p{
	 margin: 4% 0;
}
#top .sec2 .box a{
	position: relative;
    text-align: right;
    width: auto;
    display: block;
    padding: 0 30px 0 0;
}
#top .sec2 .box a:after{
	content: "";
    position: absolute;
    top: 30%;
    right: 10px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #1c1c1c;
    border-right: 2px solid #1c1c1c;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
@media screen and (max-width: 1024px) {
	#top .sec2{
        background:url(../img/top/sec2_bg_sp.png) ,linear-gradient(0deg,#edf0f0 0%,#edf0f0 70%,#ffffff 70%,#ffffff 100%);
        background-repeat: no-repeat;
        background-position: top 0 right 0;
        background-size: contain;
    }
    #top .sec2 .heading{
        padding-top:6%;
    }
    #top .sec2 .heading h4{
        padding-left:10%;
        font-size: 2.5rem;
    }
    #top .sec2 .heading h4:before{
        border-bottom: 4vh solid transparent;
        border-left: 4vh solid #ffef05;
        top: 1vh;
    }
    #top .sec2 .heading p{
        padding: 8% 0 0 8%;
    }
    #top .sec2 .box_wrap {
        display: block;
    }
    #top .sec2 .box{
        width:auto;
        padding-bottom: 3%;
        margin-top:8%;
        display: flex;
        justify-content: space-between;
    }
    /* 230307更新ここから */
    #top .sec2 .box_wrap.new {
        flex-direction: column;
    }
    #top .sec2 .box_wrap.new .box {
        width: 100%;
        margin-top: 0;
    }
    /* 230307更新ここまで */
    #top .sec2 .box .ttl_area,#top .sec2 .box .txt_area{
        width: 50%;
        margin:0;
    }
    #top .sec2 .box .txt_area{
        position: relative;
        padding: 0 2%;
    }
     #top .sec2 .box .txt_area a{
        position: absolute;
        bottom: 0;
        right: 0;
    }
}

#top .sec3 .banner{
	position: relative;
	background: url(../img/top/sec3_photo_pc.jpg) no-repeat;
    height: 250px;
    background-size: 1180px;
    background-position: center;
}
#top .sec3 .banner .btn_area{
	position: absolute;
    bottom: 20px;
    left: 60px;
}
@media screen and (max-width:1024px) {
    #top .sec3{
        margin: 10% 0;
    }
    #top .sec3 .banner{
        position: relative;
        background: url(../img/top/sec3_photo_sp.jpg) no-repeat;
        height: auto;
        background-size: cover;
        background-position: center;
        padding: 21vh 0;
    }
    #top .sec3 .banner .btn_area{
        bottom: 5%;
        left: 5%;
    }
}

#top .sec4{
    background: #edf0f0;
    position: relative;
    padding-top: 0;
}
#top .sec4 .inner{
	padding-top: 80px;
    position: relative;
}
#top .sec4 .inner:before{
	content: '';
    display: block;
    width: 200%;
    height: 450px;
    background-color: #fff;
    position: absolute;
    top: 0;
    left:40%;
}
#top .sec4 .box_wrap{
	display: flex;
}
#top .sec4 .box{
	position: relative;
	width: 50%;
	height: 500px;
}
#top .sec4 .box:first-of-type{
	background: url(../img/top/sec4_photo1.jpg) no-repeat;
    background-size: cover;
}
#top .sec4 .box:last-of-type{
	background: url(../img/top/sec4_photo2_2.jpg) no-repeat;
	margin-top: 50px;
    background-size: cover;
}
#top .sec4 .box a{
	display: block;
	background-color: rgba(0,0,0,0.5);
	width: 100%;
	height: 100%;
}
#top .sec4 .box a:hover{
	background-color: rgba(0,0,0,1);
	transition: all 0.5s ease 0.2s;
}
#top .sec4 .box .txt_area{
    width: 100%;
	text-align: center;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
#top .sec4 .box .txt_area h2{
	font-size: 3.2rem;
    font-weight: bold;
}
#top .sec4 .box .txt_area h2 span{
	display: block;
    font-family: balboa-plus-fill, sans-serif;
    color: #ffef05;
    font-size: 1.6rem;
}
#top .sec4 .box .txt_area p{
	margin-top:10%;
}
#top .sec4 .box .btn_area{
	position: absolute;
    bottom: -23px;
    right: 0;
}
#top .sec4 .box a:hover .btn{
	background: #ffef05;;
	transition: all 0.5s ease 0.2s;
}
@media screen and (max-width: 1024px) {
	#top .sec4{
       padding-bottom: 20%;
    }
    #top .sec4 .inner{
        padding-top: 15%x;
    }
    #top .sec4 .inner:before{
        height: 50vh;
    }
    #top .sec4 .box_wrap{
        display:block;
    }
    #top .sec4 .box{
        position: relative;
        width:auto;
        height:50vh;
    }
    #top .sec4 .box:last-of-type{
        margin-top: 50px;
    }
    #top .sec4 .box a{
        display: block;
        background-color: rgba(0,0,0,0.5);
        width: 100%;
        height: 100%;
    }
    #top .sec4 .box a:hover{
        background-color: rgba(0,0,0,1);
        transition: all 0.5s ease 0.2s;
    }
    #top .sec4 .box .txt_area{
        text-align: center;
        color: #fff;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
    }
    #top .sec4 .box .txt_area h2{
        font-size:2.5rem;
    }
    #top .sec4 .box .btn_area{
        position: absolute;
        bottom: -23px;
        right: 0;
    }
    #top .sec4 .box a:hover .btn{
        background: #ffef05;;
        transition: all 0.5s ease 0.2s;
    }
}


#top .sec5 .sec_inner{
	position: relative;
}
#top .sec5 h2 a{
	position: absolute;
    top: 50%;
    left: 50%;
    margin: -107px 0 0 -107px;
    display: block;
    width: 214px;
    height: 213px;
    overflow: hidden;
    text-indent: -9999px;
    background: url(../img/top/sec5_logo.png) no-repeat;
    opacity: 1;
    -webkit-transition: top .28s ease-out, opacity .1s linear;
    transition: top .28s ease-out, opacity .1s linear;
    background-size: contain;
}

/* instagram追加 */
.instagram-area {
    position: relative;
}
.instagram-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 20%;
}
.instagram-list {
    display: flex;
    flex-wrap: wrap;
}
.instagram-item {
    width: 20%;
    aspect-ratio: 1 / 1;
}
.instagram-item:first-child {
    margin-left: 20%;
}
.instagram-item img {
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width: 1024px) {
    #top .sec5 .sec_inner{
        margin-bottom: 15%;
    }

    .instagram-logo {
        width: 50%;
    }
    .instagram-item {
        width: 50%;
    }
    .instagram-item:first-child {
        margin-left: 50%;
    }
}


.caption-overlay{
	font-size:12px !important;
	background: rgba(0, 161, 231, 0.8) !important;
}
.caption-overlay, .shoppable-overlay, .stats-overlay {
    opacity: 0;
    background: rgba(0, 161, 231, 0.8) !important;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: opacity .3s;
    color: #fff;
    font-weight: 600;
    font-size:12px;
    text-transform: uppercase;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-family: source sans pro,sans-serif;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    z-index: 3;
}




