@charset "utf-8";

/* ---------- Section内の共通　---------- */
body.home section .sec_ttl {
    height: 50px;
    text-align: center;
}

body.home section .sec_ttl img {
    max-height: 100%;
    width: auto;
    max-width: unset;
}

body.home section .sec_desc {
    line-height: 1.5;
    text-align: center;
    font-weight: 900;
}

body.home section .btn_all {
    line-height: 2;
    font-size: 20px;
    color: var(--white);
    font-weight: 800;
    display: block;
    width: fit-content;
    background: var(--red);
    padding: 10px 66px 10px 45px;
    border-radius: 45px;
    margin: 0 auto;
    position: relative;
}

body.home section .btn_all:hover {
    background: #FFA1A1;
    opacity: 1;
}

body.home section .btn_all.btn_white {
    color: var(--red);
    background: var(--white);
}

body.home section .btn_all.btn_white:hover {
    background: var(--white);
    opacity: 0.7;
}

body.home section .btn_all::after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background: url(../images/icon_btn.png) no-repeat center/cover;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
}

body.home section .btn_all.btn_white::after {
    background: url(../images/icon_btn_red.png) no-repeat center/cover;
}

body.home .content_mask {
    overflow: hidden;
}

@media(max-width:430px) {
    body.home section .sec_ttl {
        height: 30px;
    }

    body.home section .btn_all {
        line-height: 2.5;
        font-size: 16px;
    }
}

/* ---------- ここからFV ---------- */
body.home .sec_fv {
    background: url(../images/fv_bg.jpg) no-repeat center/cover;
    padding: 177px 0 40px;
    position: relative;
    z-index: 2;
}

body.home .sec_fv .site_ttl {
    width: min(1103px, 91.9%);
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

body.home .sec_fv .img_inner {
    width: min(200px, 16.7%);
    margin: 0 auto;
}

body.home .sec_fv .float_list {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

body.home .sec_fv .float_item {
    position: absolute;
}

body.home .sec_fv .float_item:first-child {
    width: min(150px, 8.9vw);
    top: 13.6%;
    left: 60px;
}

body.home .sec_fv .float_item:nth-child(2) {
    width: min(280px, 16.7vw);
    top: -40px;
    left: 13.4%;
}

body.home .sec_fv .float_item:nth-child(3) {
    width: min(163px, 9.7vw);
    top: 12.6%;
    right: 20.23%;
}

body.home .sec_fv .float_item:nth-child(4) {
    width: min(340px, 20.2vw);
    top: 6.9vw;
    right: -40px;
}

body.home .sec_fv .float_item:nth-child(5) {
    width: min(338px, 20.1vw);
    bottom: -10px;
    left: -40px;
}

body.home .sec_fv .float_item:nth-child(6) {
    width: min(190px, 11.3vw);
    bottom: 13.3%;
    right: 21.4%; 
}

body.home .sec_fv .float_item:nth-child(7) {
    width: min(145px, 8.6vw);
    bottom: -40px;
    right: 10.8vw;
}

body.home .sec_fv .float_item:last-child {
    width: min(152px, 9vw);
    right: 60px;
    bottom: 200px;
}

body.home .sec_fv .fanime01 {
    animation: fanime01 1.6s linear infinite;
}

@keyframes fanime01 {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px) scaleY(1);
    }
}

body.home .sec_fv .fanime02 {
    animation: fanime02 1.6s linear infinite;
}

@keyframes fanime02 {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0px) scaleY(1);
    }
}

@media(max-width:834px){
    body.home .sec_fv .float_item:last-child {
        bottom: 160px;
    }
}

@media(max-width: 430px) {
    body.home .sec_fv {
        padding: 92px 0 30px;
    }

    body.home .sec_fv .site_ttl {
        width: 100%;
        margin-bottom: 60px;
    }

    body.home .sec_fv .img_inner {
        width: 100px;
    }

    body.home .sec_fv .float_item:first-child {
        width: 74px;
        top: 50%;
        left: 15px;
    }

    body.home .sec_fv .float_item:nth-child(2) {
        width: 128px;
        left: 43px;
    }

    body.home .sec_fv .float_item:nth-child(3) {
        display: none;
    }

    body.home .sec_fv .float_item:nth-child(4) {
        width: 137px;
        top: unset;
        bottom: 64px;
        right: -20px;
    }

    body.home .sec_fv .float_item:nth-child(5) {
        width: 123px;
        bottom: -10px;
        left: -20px;
    }

    body.home .sec_fv .float_item:nth-child(6) {
        width: 93px;
        bottom: -22px;
        right: 48px; 
    }

    body.home .sec_fv .float_item:nth-child(7) {
        display: none;
    }

    body.home .sec_fv .float_item:last-child {
        width: 75px;
        right: 16px;
        bottom: unset;
        top: 23px;
    }
}



/* ---------- ここから特徴 ---------- */
body.home .sec_feature {
    background: url(../images/feature_bg.jpg) no-repeat center/cover;
    padding: 80px 0;
    position: relative;
}

body.home .sec_feature .feature_ttl {
    margin-bottom: 70px;
}

body.home .sec_feature .feature_list {
    display: flex;
    justify-content: center;
    gap: 70px;
}

body.home .sec_feature .feature_item {
    width: 320px;
    height: 320px;
    background: url(../images/feature_circle.png) no-repeat center/cover;
    text-align: center;
    line-height: 1.3;
    font-weight: 900;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

body.home .sec_feature .feature_item p,
body.home .sec_feature .feature_item a {
    position: relative;
    z-index: 2;
}

body.home .sec_feature .font_blue {
    font-size: 32px;
    color: var(--blue);
    margin-bottom: 16px;
}

body.home .sec_feature .font_black {
    font-size: 24px;
    margin-top: -4px;
}

body.home .sec_feature .font_red {
    font-size: 32px;
    color: var(--red);
    margin-bottom: 11px;
}

body.home .sec_feature .font_red .big {
    font-size: 48px;
}

body.home .sec_feature .feature_btn {
    font-size: 16px;
    color: var(--white);
    line-height: 2.5;
    display: block;
    padding: 10px 56px 10px 30px;
    width: fit-content;
    margin: 0 auto;
    border-radius: 60px;
    background: var(--red);
    position: relative;
}

body.home .sec_feature .feature_btn::after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background: url(../images/icon_btn.png) no-repeat center/cover;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
}

body.home .sec_feature .feature_btn:hover {
    background: #FFA1A1;
    opacity: 1;
}

body.home .sec_feature .feature_btn span {
    font-size: 20px;
}

body.home .sec_feature .feature_princess,
body.home .sec_feature .feature_prince {
    position: absolute;
    bottom: 0;
    z-index: 2;
}

body.home .sec_feature .feature_princess {
    width: min(354px, 21.1vw);
    left: 0;
}

body.home .sec_feature .feature_prince {
    width: min(375px, 22.3vw);
    right: 0;
}

@media(max-width: 1536px) {
    body.home .sec_feature .feature_list {
        gap: 40px;
    }

    body.home .sec_feature .feature_princess {
        width: min(250px, 16.3vw);
    }

    body.home .sec_feature .feature_prince {
        width: min(265px, 17.3vw);
    }
}

@media(max-width: 1280px) {
    body.home .sec_feature {
        padding-bottom: 310px;
    }

    body.home .sec_feature .feature_princess {
        width: 250px;
    }

    body.home .sec_feature .feature_prince {
        width: 265px;
    }
}

@media(max-width: 1024px) {
    body.home .sec_feature .feature_list {
        gap: 20px;
    }
}

@media(max-width:834px) {
    body.home .sec_feature .feature_ttl {
        height: 120px;
    }

    body.home .sec_feature .feature_list {
        flex-direction: column;
        align-items: center;
        gap: 30px;  
    }
}

@media(max-width:430px) {
    body.home .sec_feature {
        padding-top: 60px;
    }

    body.home .sec_feature .feature_princess {
        display: none;
    }

    body.home .sec_feature .feature_prince {
        width: min(329px, 87.7vw);
    }

    body.home .sec_feature .feature_ttl {
        height: 62px;
    }

    body.home .sec_feature .feature_item {
        width: 265px;
        height: 265px;
    }

    body.home .sec_feature .font_blue {
        font-size: 24px;
        margin-bottom: 5px;
    }

    body.home .sec_feature .font_black {
        font-size: 20px;
        margin-top: 0;
    }

    body.home .sec_feature .font_red {
        margin-bottom: 10px;
    }


    body.home .sec_feature .feature_btn {
        font-size: 15px;
        
    }
    
    body.home .sec_feature .feature_btn {
        font-size: 15px;
        line-height: 2.67;
        padding: 8px 51px 8px 20px;
    }

    body.home .sec_feature .feature_btn::after {
        right: 15px;
    }

    body.home .sec_feature .feature_btn span {
        font-size: 16px;
    }

}



/* ---------- ここから最新機種情報 ---------- */
body.home .sec_model {
    padding: 100px 0;
    background: url(../images/model_bg.jpg) no-repeat center/cover;
}

body.home .sec_model .model_ttl {
    margin-bottom: 30px;
}

body.home .sec_model .sec_desc {
    margin-bottom: 60px;
}

body.home .sec_model .model_list {
    margin-bottom: 60px;
}

body.home .sec_model .model_list .slick-list {
    overflow: visible;
}

body.home .sec_model .model_item {
    margin: 0 20px;
    aspect-ratio: 1.17/1;
}

body.home .sec_model .model_item img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

body.home .sec_model .model_item:hover {
    opacity: 1;
    filter:brightness(1.3);
}


.model_inline .model_desc {
    color: var(--white);
    font-weight: 800;
    text-align: center;
    margin-top: 30px;
}

@media(max-width: 834px) {
    body.home .sec_model .model_item {
        margin: 0 7.5px;
    }
}

@media(max-width:430px) {
    body.home .sec_model {
        padding: 60px 0;
    }

    body.home .sec_model .sec_desc {
        margin-bottom: 40px;
    }

    body.home .sec_model .model_list {
        margin-bottom: 40px;
    }
}

/* ---------- ここから景品ラインナップ ---------- */
body.home .sec_prize {
    padding: 100px 0 271px;
    background: url(../images/prize_bg2.png) no-repeat center/cover;
    position: relative;
}

body.home .sec_prize .prize_ttl {
    margin-bottom: 30px;
}

body.home .sec_prize .sec_desc {
    color: var(--white);
    margin-bottom: 60px;
}

body.home .sec_prize .prize_list {
    margin-bottom: 60px;
}

body.home .sec_prize .prize_list .slick-list {
    overflow: visible;
}

body.home .sec_prize .prize_item {
    margin: 0 20px;
    position: relative;
}

body.home .sec_prize .prize_item:hover {
    opacity: 1;
    filter:brightness(1.3);
}

body.home .sec_prize .prize_date {
    font-size: 14px;
    color: var(--white);
    line-height: 1.7;
    background: var(--red);
    padding: 3px 10px;
    position: absolute;
    bottom: 28px;
    right: 30px;
}

body.home .sec_prize .prize_item .img_inner {
    position: relative;
    padding: clamp(25px, 1.8vw, 30px);
}

body.home .sec_prize .prize_item .img_inner img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
}

body.home .sec_prize .prize_item .img_inner::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: url(../images/prize_frame.png) no-repeat center/cover;
    position: absolute;
    top: 0;
    left: 0;
}

.prize_inline .prize_name {
    color: var(--white);
    font-weight: 800;
    text-align: center;
    margin-top: 30px;
}

.prize_inline .prize_date {
    color: var(--white);
    font-size: 14px;
    line-height: 1.71;
    padding: 3px 10px;
    background: var(--red);
    width: fit-content;
    margin: 15px auto 0;
}

body.home .sec_prize .prize_baby {
    width: min(427px, 25.4vw);
    position: absolute;
    bottom: 0;
    right: 0;
}

@media(max-width:1024px) {
    body.home .sec_prize .prize_date {
        bottom: 21px;
        right: 21px;
    }
}

@media(max-width:834px) {
    body.home .sec_prize {
        padding: 60px 0 280px;
    }
    
    body.home .sec_prize .prize_list {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 40px;
    }

    body.home .sec_prize .prize_item {
        width: calc((100% - 15px) / 2);
        margin: 0;
        position: static;
    }

    body.home .sec_prize .prize_item .img_inner {
        padding: 30px;
        margin-bottom: 5px;
    }

    body.home .sec_prize .prize_date {
        background: unset;
        padding: 0;
        position: static;
    }

    body.home .sec_prize .prize_baby {
        width: min(308px, 82.1vw);
    }
}

@media(max-width:430px) {
    body.home .sec_prize .sec_desc {
        text-align: left;
        margin-bottom: 40px;
    }

    body.home .sec_prize .prize_item .img_inner {
        padding: 15px;
    }

    body.home .sec_prize .prize_date {
        line-height: 1.7;
    }
}



/* ---------- ここからイベント情報 ---------- */
body.home .sec_event {
    padding: 100px 0;
    background: url(../images/event_bg.jpg) no-repeat center/cover;
    position: relative;
}

body.home .sec_event .event_ttl01 {
    margin-bottom: 30px;
    position: relative;
}

body.home .sec_event .event_ttl01::after {
    content: "";
    display: block;
    width: min(246px, 20.5%);
    aspect-ratio: 1.2/1;
    background: url(../images/event_prince.png) no-repeat center/cover;
    position: absolute;
    top: -54px;
    right: 0;
}

body.home .sec_event .sec_desc {
    margin-bottom: 60px;
}

body.home .sec_event .sec_desc .sp_none {
    display: none;
}

body.home .sec_event .event_list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

body.home .sec_event .event_item {
    width: calc((100% - 80px) / 3);
    background: #D2F7FF;
    padding: 15px;
}

body.home .sec_event .event_item:hover {
    opacity: 1;
}

body.home .sec_event .event_flyer {
    padding: 0 40px;
    margin-bottom: 15px;
}

body.home .sec_event .event_item:hover .event_flyer {
    filter:brightness(1.1);
}

body.home .sec_event .event_name {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.5;
    margin-bottom: 5px;
}

body.home .sec_event .event_desc {
    line-height: 1.5;
    font-size: 16px;
    margin-bottom: 10px;
}

body.home .sec_event .event_time {
    line-height: 1.5;
    font-size: 15px;
}

body.home .sec_event .event_time span {
    color: var(--white);
    font-size: 14px;
    line-height: 1.71;
    background: var(--red);
    padding: 3px 10px;
    border-radius: 17px;
    display: inline-block;
    margin-right: 10px;
}

body.home .sec_event .btn_all {
    margin-bottom: 80px;
}


body.home .sec_event .event_princess {
    width: min(394px, 23.5vw);
    position: absolute;
    bottom: 0;
    left: 0;
}

@media(max-width:834px) {
    body.home .sec_event {
        padding: 60px 0 310px;
    }
    
    body.home .sec_event .event_item {
        width: calc((100% - 40px) / 2);
    } 
    
    body.home .sec_event .event_princess {
        width: min(324px, 86.4vw);
    }
}

@media(max-width:430px) {
    body.home .sec_event .event_ttl01::after {
        content: none;
    }

    body.home .sec_event .sec_desc {
        margin-bottom: 40px;
    }

    body.home .sec_event .sec_desc .sp_none {
        display: block;
    }

    body.home .sec_event .event_list {
        flex-direction: column;
        gap: 30px;
    }

    body.home .sec_event .event_item {
        width: 100%;
    }

    body.home .sec_event .event_name {
        text-align: center;
    }

    body.home .sec_event .btn_all {
        margin-bottom: 60px;
    }
}

body.home .sec_event .tab-group {
    display: flex;
    justify-content: center;
}

body.home .sec_event .event_ttl02 {
    margin-bottom: 40px;
}

body.home .sec_event .tab {
    flex-grow: 1;
    padding: 40px 5px;
    list-style: none;
    text-align: center;
    cursor: pointer;
    background-color: #ffa85b;
    color: #333;
    font-weight: 700;
    line-height: 160%;
}

body.home .sec_event .tab.is-active {
    background: #e60012;
    color: #FFF;
    transition: all 0.2s ease-out;
}

body.home .sec_event .panel-group {
    border-top: none;
}

body.home .sec_event .panel.is-show {
    display: block;
}

body.home .sec_event .panel {
    display: none;
}

body.home .sec_event .event-box {
    border: solid #e60012 5px;
    padding: 40px 35px;
    background-color: #fff;
}

body.home .sec_event .event-box.event02{
    background-color: transparent;
}

body.home .sec_event .event-box.event03 {
    background-color: #fffddf;
}

body.home .sec_event .event-box.event05{
    background-color: #fffddf;
}

body.home .sec_event .event-box-inner {
    display: flex;
    justify-content: space-between;
}

body.home .sec_event .event-box-inner .imgbox {
    width: min(500px, 41.7%);
}

body.home .sec_event .event-box-inner .txtbox {
    width: min(570px, 47.5%);
}

body.home .sec_event .is-show .banime {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-animation-name: bounceIn;
    -sand-animation-name: bounceIn;
    animation-name: bounceIn;
    -webkit-animation-duration: .75s;
    -sand-animation-duration: .75s;
    animation-duration: .75s;
}

@keyframes bounceIn {
    0%, 20%, 40%, 60%, 80%, 100% {
        -webkit-transition-timing-function: 
    cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: 
    cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        -webkit-transform: scale3d(.3, .3, .3);
        -ms-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        -ms-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        -ms-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }
    60% {
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        -ms-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        -ms-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

body.home .sec_event .btn-link {
    text-align: center;
    padding: 5px 0;
}

body.home .sec_event .btn-link a {
    font-family: "Noto Sans JP", sans-serif;
    display: block;
    text-decoration: none;
    color: var(--white);
    line-height: 1.8;
    text-align: center;
    padding: 15px;
    background-color: #333;
}


@media (min-width: 641px) {
    .PC-inline {
        display: inline;
    }
    .SP {
        display: none;
    }
}

@media (max-width:640px) {
    .SP {
        display: block;
    }
}

@media(max-width:430px) {
    body.home .sec_event .event-box-inner .imgbox {
        width: 47.5%;
    }

    body.home .sec_event .event-box-inner .txtbox {
        width: 47.5%;
    }

}


/* ---------- ここから体験ムービー ---------- */
body.home .sec_movie {
    padding: 100px 0;
    background: url(../images/movie_bg2.jpg) no-repeat center/cover;
}

body.home .sec_movie .movie_ttl {
    margin-bottom: 30px;
    position: relative;
}

body.home .sec_movie .movie_ttl::after {
    content: "";
    display: block;
    width: min(171px, 14.3%);
    aspect-ratio: 1/1.12;
    background: url(../images/movie_prince.png) no-repeat center/cover;
    position: absolute;
    top: -30px;
    left: 38px;
} 

body.home .sec_movie .sec_desc {
    margin-bottom: 60px;
}

body.home .sec_movie .movie_list {
    margin-bottom: 60px;
}

body.home .sec_movie .movie_list .slick-list {
    overflow: visible;
}

body.home .sec_movie .movie_item {
    margin: 0 20px;
}

body.home .sec_movie .movie_item:hover {
    opacity: 1;
    filter:brightness(1.2);
}

body.home .sec_movie .thumb_inner {
    margin-bottom: 15px;
    position: relative;   
}

body.home .sec_movie .movie_date {
    color: var(--white);
    font-size: 14px;
    line-height: 1.71;
    background: var(--red);
    padding: 3px 10px;
    position: absolute;
    bottom: 0;
    right: 0;
}

body.home .sec_movie .movie_name {
    font-size: 13px;
    line-height: 1.5;
}

body.home .sec_movie .slide-arrow {
    width: 50px;
    position: absolute;
    bottom: -33px;
}

body.home .sec_movie .slide-arrow.prev-arrow { 
    left: 35%;
}

body.home .sec_movie .slide-arrow.next-arrow {
    right: 35%;
}

body.home .sec_movie .slick-dotted.slick-slider {
    padding-bottom: 60px;
    margin-bottom: 60px;
}

body.home .sec_movie .slick-dots li {
    margin: 0 7.5px;
}
body.home .sec_movie .prev-arrow,
body.home .sec_movie .next-arrow {
    z-index: 100;
    cursor: pointer;
}

body.home .sec_movie .slick-dots button {
    width: 10px;
    height: 10px;
    background: var(--white);
    border-radius: 50%;
}

body.home .sec_movie .slick-dots li.slick-active button {
    background: unset;
    border: 2px solid var(--white);
}

body.home .sec_movie .movie_btn {
    color: var(--white);
    font-size: 20px;
    font-weight: 800;
    line-height: 2;
    background: var(--red);
    border-radius: 30px;
    padding: 10px 66px 10px 45px;
    width: fit-content;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

body.home .sec_movie .movie_btn::after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background: url(../images/icon_btn.png) no-repeat center/cover;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
}

body.home .sec_movie .movie_btn:hover {
    background: #FFA1A1;
    opacity: 1;
}

body.home .sec_movie .movie_btn .icon_inner {
    width: 25px;
    display: flex;
    align-items: center;
}

@media(max-width:834px) {
    body.home .sec_movie .movie_ttl::after {
        top: -60px;
    }
    body.home .sec_movie .slide-arrow.prev-arrow { 
        left: 20%;
    }

    body.home .sec_movie .slide-arrow.next-arrow {
        right: 20%;
    }

    body.home .sec_movie .movie_item {
        margin: 0 7.5px;
    }
}

@media(max-width:430px) {
    body.home .sec_movie {
        padding: 60px 0;
    }

    body.home .sec_movie .movie_ttl::after {
        content: none;
    } 

    body.home .sec_movie .sec_desc {
        text-align: left;
        margin-bottom: 40px;
    }

    body.home .sec_movie .movie_list {
        margin-bottom: 30px;
    }

    body.home .sec_movie .movie_item {
        margin: 0 7.5px;
    }

    body.home .sec_movie .slide-arrow {
        width: 40px;
        bottom: -33px;
    }

    body.home .sec_movie .slide-arrow.prev-arrow { 
        left:22px;
    }

    body.home .sec_movie .slide-arrow.next-arrow {
        right: 22px;
    }

    body.home .sec_movie .slick-dotted.slick-slider {
        padding-bottom: 70px;
        margin-bottom: 70px;
    }

    body.home .sec_movie .movie_btn {
        font-size: 16px;
        line-height: 2.5;
        padding: 8px 66px 8px 45px;
    }
}



/* ---------- ここからアクセス ---------- */
body.home .sec_access {
    padding: 100px 0 150px;
    position: relative;
}

body.home .sec_access .access_ttl {
    margin-bottom: 60px;
}

body.home .sec_access .access-area-wrapp {
    background-color: #fff;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.20);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    overflow: hidden;
}

body.home .sec_access .access-area-inner {
    display: flex;
    justify-content: space-between;
    padding: 25px 35px 25px 25px;
}

body.home .sec_access .access-area-inner .imgbox {
    width: min(615px, 50.8%);
}

body.home .sec_access .access-area-inner .txtbox {
    width: min(460px, 38.3%);
}

body.home .sec_access .access-area-inner .txtbox-inner {
    margin-top: 30px;
    font-size: 14px;
    line-height: 170%;
}

body.home .sec_access .access-area-inner .txtbox-inner.access01 {
    margin-top: 0;
    font-size: 16px;
}

body.home .sec_access .access-area-inner h3{
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
}

body.home .sec_access .access-area-inner strong {
    font-weight: 700;
    display: block;
}

body.home .sec_access .access-area-inner p{
    margin-top: 15px;
}

body.home .sec_access .access-area-inner ul{
    margin-left: 1.25em;
    margin-top: 15px;
}

body.home .sec_access .access-area-inner .txtbox-inner{
    margin-top: 30px;
    font-size: 14px;
    line-height: 170%;
}

body.home .sec_access .access-area-inner .txtbox-inner.access01{
    margin-top: 0;
    font-size: 16px;
}

body.home .sec_access .access-area-inner .access01 h3{
    background: url("../images/icon_access_yel.png") left center no-repeat;
    background-size: 31px auto;
    padding: 5px 0 10px 45px;
}

body.home .sec_access .access-area-inner .access02 h3{
    background: url("../images/icon_train.png") left center no-repeat;
    background-size: 31px auto;
    padding: 5px 0 10px 45px;
}

body.home .sec_access .access-area-inner .access03 h3{
    background: url("../images/icon_car.png") left center no-repeat;
    background-size: 31px auto;
    padding: 5px 0 10px 45px;
}

body.home .sec_access .access-area-inner p {
    margin-top: 15px;
}

body.home .sec_access .access-area-inner .rightTxt {
    text-align: right !important;
}

body.home .sec_access .access-area-inner .rightTxt a {
    color: #0078ff;
    text-decoration: underline;
}

body.home .sec_access .access_prince {
    width: min(391px, 23.3vw);
    position: absolute;
    bottom: 0;
    left: 100px;
}

@media(max-width:834px) {
    body.home .sec_access {
        padding: 60px 0 380px;
    }  

    body.home .sec_access .access_prince {
        width: min(246px, 70.4vw);
        left: 15px;
        bottom: 80px;
    }
}

@media(max-width:640px) {
    body.home .sec_access .banime{
        padding-bottom: 70px;
    }

    body.home .sec_access .access-area-inner{
        padding: 20px;
        flex-direction: column;
    }

    body.home .sec_access .access-area-inner .imgbox{
        width: 100%;
    }

    body.home .sec_access .access-area-inner .txtbox{
        width: 100%;
        margin-top: 20px;
    }

    body.home .sec_access .access-area-inner h3{
        font-size: 18px;
        line-height: 150%;
    }

    body.home .sec_access .access-area-inner strong{
        font-weight: 700;
        display: block;
    }

    body.home .sec_access .access-area-inner p{
        margin-top: 15px;
    }
}



/* ---------- ここからFOLLOWME ---------- */
body.home .sec_followme {
    padding-bottom: 150px;
    position: relative;
}

body.home .sec_followme .wrapper {
    max-width: 780px;
}

body.home .sec_followme .followme_ttl {
    margin-bottom: 60px;
}

body.home .sec_followme .content-area-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 100px;
}

body.home .sec_followme .sns-t-box h3 {
    width: fit-content;
    margin: 0 auto;
}

body.home .sec_followme .sns-t-box a {
    color:#0078ff;
}

body.home .sec_followme .sns-load-box {
    margin-top: 30px;
    overflow: auto;
    height: 500px;
}

body.home .sec_followme .ig_btn {
    padding: 17px 30px;
    border: 2px solid #000;
    border-radius: 10px;
    width: fit-content;
    display: inline-block;
    margin: 0 auto;
}

body.home .sec_followme .line_ttl {
    margin-bottom: 40px;
}

body.home .sec_followme .line_btn {
    font-size: 24px;
    line-height: 1.67;
    color: var(--white);
    font-weight: 800;
    background: #06C755;
    border-radius: 10px;
    padding: 20px 40px;
    margin: 0 auto;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

body.home .sec_followme .line_btn .icon_inner {
    width: 49px;
}

body.home .sec_followme .followme_prince {
    width: min(461px, 27.4vw);
    position: absolute;
    bottom: 0;
    right: 0;
}

@media(max-width:834px) {
    body.home .sec_followme {
        padding-bottom: 310px;
    }

    body.home .sec_followme .followme_prince {
        width: min(344px, 91.7vw);
    }
}
@media(max-width:640px) {
    body.home .sec_followme .content-area-inner {
        margin-bottom: 80px;
    }
}


/* ---------- ここからFadeInAnimation ---------- */
body.home .fadeInLeft {
    transform: translateX(-100%);
}

body.home .fadeInLeft.animated {
    animation: fadeInLeft .7s ease-out forwards;
}

@keyframes fadeInLeft {
    0%   { transform: translateX(-100%); }
    60%  { transform: translateX(10px); }
    80%  { transform: translateX(-10px); }
    100% { transform: translateX(0); }
}

body.home .fadeInRight {
    transform: translateX(100%);
}

body.home .fadeInRight.animated {
        animation: fadeInRight .7s ease-out forwards;
}

@keyframes fadeInRight {
    0%   { transform: translateX(100%); }
    60%  { transform: translateX(-10px); }
    80%  { transform: translateX(10px); }
    100% { transform: translateX(0); }
}

body.home .runAway {
    transform: translateX(500%);
}
body.home .runAway.animated {
    animation: runAway .7s ease-out forwards;
}

@keyframes runAway {
    0%   { transform: translateX(500%); }
    100% { transform: translateX(0); }
}