@charset "utf-8";
/* ======================================
	body [ ボディ ]
====================================== */
html {
    width: 100%;
    font-size: 15px;
}
body {
    color: #fff;
    font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    line-height: 1.8;
    letter-spacing: 0.06em;
    width: 100%;
    font-weight: 400;
}
body * {
    box-sizing: border-box;
}
img {
    max-width: 100%;
    vertical-align: bottom;
}
a, a:focus, .slick-slide, area, area:focus {
    outline: none;
}
a {
    color: #fff;
    word-break: break-all;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
a:hover {
    text-decoration: none;
    cursor: pointer;
    opacity: 0.8;
}
p, dd {
    text-align: justify;
    text-justify: inter-ideograph;
}

/* ======================================
	共通スタイル
====================================== */
.d_sp {
    display: none !important;
}
.cont_wrap {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
}
/* fonts */
.serif {
  font-family: "Noto Serif JP", serif;
}
.bonheur {
  font-family: "Bonheur Royale", cursive;
}
.barlow {
  font-family: "Barlow", sans-serif;
}
/* スクロールCSS */
.fade-in {
    opacity: 0;
}
.fade-in-up {
    transform: translate(0, 80px);
}
.fade-in-down {
    transform: translate(0, -80px);
}
.fade-in-left {
    transform: translate(-80px, 0);
}
.fade-in-right {
    transform: translate(80px, 0);
}
.scroll-in {
    animation: fadeIn 1s ease;
    animation-fill-mode: forwards;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}
/* slider */
.slick-dotted.slick-slider {
    margin-bottom: 0!important;
}
.slick-slide {
    position: relative;
}
.dots-class button {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
}
.dots-class {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}
.dots-class li {
    width: 12px;
    height: 12px;
    background-color: #e6e6e6;
    border-radius: 50%;
    margin-right: 12px;
    cursor: pointer;
    transition: background-color .5s ease;
}
.dots-class li.slick-active {
    background-color: #808080;
}
.dots-class li:hover {
    background-color: #808080;
}
.dots-class li:last-child {
    margin-right: 0;
}
/* ======================================
	コンテンツ
====================================== */
#content {
    width: 100%;
    overflow: hidden;
}
/* parallax */
.parallax-section {
    background-position: top center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat
}

/* mv
 * ************************************************** */
#mv {
    width: 100%;
    background-image: url("../images/mv_bg.jpg");
}
#mv .mv_inner {
    margin: 0 auto;
    padding: 50px 50px 60px;
    width: 1024px;
    max-width: 100%;
	position: relative;
}
#mv .mv_inner .mv_main {
    width: 100%;
    height: 0;
    display: block;
    overflow: hidden;
    padding-top: 66.602%;
    background: url("../images/mv_main.jpg") no-repeat 0 0 / 100%;
}
#mv .mv_inner .mv_lead01 {
    padding: 40px 0 30px;
}
#mv .mv_inner .mv_lead01 p {
    text-align: center;
    font-size: 1.067rem;
    letter-spacing: 0.15em;
}
#mv .mv_scroll {
    display: block;
    margin: 0 auto 40px;
	width: 16px;
	animation: arrowmove 1.2s ease-out infinite;
}
@keyframes arrowmove{
    0%,100%{transform: translate(0, -5px);}
    60%{transform: translate(0, 5px);}
}
#mv .mv_lead02 p:first-child {
    margin-bottom: 20px;
    font-size: 1.067rem;
    text-align: center;
}
#mv .mv_lead02 p:last-child {
    font-size: 1.2rem;
    text-align: center;
    letter-spacing: 0.15em;
}

/* information
 * ************************************************** */
#information {
    padding: 70px;
    width: 100%;
    background: url("../images/information_bg.jpg") no-repeat 50% 50% / cover;
}
#information .cont_inner {
    margin: 0 auto;
    padding: 40px 70px;
    width: 800px;
    max-width: 100%;
    background: rgba(0,0,0,0.5);
}
#information .cont_inner .cont_ttl {
    margin: 0 auto 25px;
    padding-bottom: 10px;
    width: 500px;
    max-width: 100%;
    font-size: 2.533rem;
    text-align: center;
    line-height: 1;
    border-bottom: 1px solid #fff;
}
#information .cont_inner .movie_ttl {
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 0.15em;
}
#information .cont_inner .movie_ttl span:first-child {
    display: block;
    font-size: 1.067rem;
}
#information .cont_inner .movie_ttl span:last-child {
    display: block;
    font-size: 1.667rem;
}
#information .cont_inner .movie_img {
    margin: 0 auto 25px;
    width: 500px;
    max-width: 100%;
}
#information .cont_inner .disney_credit {
    font-size: 0.667rem;
}
#information .cont_inner .movie_intro {
    margin-bottom: 15px;
}
#information .cont_inner .url {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
#information .cont_inner .url span {
    display: block;
    margin-right: 28px;
    padding-left: 0.5em;
    width: 100px;
    height: 30px;
    background: #c7b299;
    position: relative;
    font-size: 0.733rem;
    color: #000;
    font-weight: bold;
    line-height: 30px;
    text-align: center;
}
#information .cont_inner .url span::after {
    display: inline-block;
    content: '';
    vertical-align: middle;
    color: #c7b299;
    line-height: 1;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent;
    border-width: 15px 18px;
    border-left-color: currentColor;
    border-right: 0;
    position: absolute;
    top: 0;
    right: -18px;
}
#information .cont_inner .url a {
    font-size: 0.867rem;
    text-decoration: none;
}

/* course
 * ************************************************** */
#course {
    width: 100%;
    background: rgb(0,255,214);
    background:  linear-gradient(180deg, rgba(0,255,214,1) 10%, rgba(0,0,127,1) 90%);
    overflow: hidden;
    position: relative;
}
#course .course_wrap {
    padding-bottom: 110px;
    width: 100%;
    height: 100%;
    background: url("../images/course_bg.png") repeat-y 50% 50% / 100%;
}
#course .cont_inner {
    margin: 0 auto;
    padding: 80px 0;
    width: 1024px;
    max-width: 92%;
	position: relative;
}
#course .cont_inner .cont_ttl {
    margin-bottom: 65px;
    text-align: center;
    font-size: 2.133rem;
    letter-spacing: 0.2em;
    font-weight: bold;
    line-height: 1.3;
}
#course .cont_inner .course_cont .course_cont_ttl_en {
    margin-bottom: 8px;
    font-size: 3.333rem;
    line-height: 1;
}
#course .cont_inner .course_cont .course_cont_ttl {
    margin-bottom: 25px;
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.15em;
}
#course .cont_inner .course_cont .course_cont_catch {
    margin-bottom: 15px;
    font-size: 1.333rem;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.1em;
}
/* arrow */
#course .cont_inner .course_cont .arrow {
    display: block;
    width: 3px;
    height: 300px;
    position: relative;
    margin: 30px auto 0;
}
#course .cont_inner .course_cont .arrow::before {
    content:"";
    display: block;
    width: 3px;
    height: 300px;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
	transform: scale(1, 0);
	transform-origin: left top;
	transition-duration: 1s;
	transition-delay: 0.5s;
}
#course .cont_inner .course_cont .arrow.active::before {
    transform: scale(1, 1);
}
#course .cont_inner .course_cont .arrow::after {
    content: "";
    display: block;
    width: 8px;
    height: 32px;
    border-right: 3px solid #fff;
    transform: rotate(45deg) scale(1, 0);
    transform-origin: right bottom;
    position: absolute;
    bottom: 0;
    right: 0;
}
#course .cont_inner .course_cont .arrow.active::after {
    animation: arrow02 3.5s ease-in-out forwards;
}
@keyframes arrow02 {
    0% { transform: rotate(45deg) scale(1, 0); }
    45% { transform: rotate(45deg) scale(1, 0); }
    55% { transform: rotate(45deg) scale(1, 1); }
    100% { transform: rotate(45deg) scale(1, 1); opacity: 1; }
}
/* course_cont01 */
#course .cont_inner .course_cont01 {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 170px;
}
#course .cont_inner .course_cont01 .img {
    width: 58.594%;
}
#course .cont_inner .course_cont01 .txt {
    padding-top: 10%;
    width: 38.086%;
}
#course .cont_inner .course_cont01 .txt .course_cont_txt {
    width: 300px;
    max-width: 100%;
}
/* course_cont02 */
#course .cont_inner .course_cont02 {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-direction: row-reverse;
    margin-bottom: 70px;
}
#course .cont_inner .course_cont02 .img {
    width: 62.5%;
}
#course .cont_inner .course_cont02 .txt {
    padding-top: 4%;
    width: 30.273%;
}
#course .cont_inner .course_cont02 .arrow {
    height: 200px;
}
#course .cont_inner .course_cont02 .arrow::before {
    height: 200px;
}
/* course_cont03 */
#course .cont_inner .course_cont03 {
    margin-bottom: 90px;
}
#course .cont_inner .course_cont03 .course_cont_ttl_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}
#course .cont_inner .course_cont03 .course_cont_ttl_wrap .course_cont_ttl_en {
    margin-right: 30px;
}
#course .cont_inner .course_cont03 .img {
    margin-bottom: 30px;
}
#course .cont_inner .course_cont03 .course_cont_txt {
    width: 600px;
    max-width: 100%;
}
/* course_cont04,05 */
#course .cont_inner .corse_cont_wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 100px;
}
#course .cont_inner .corse_cont_wrap .course_cont {
    width: 46.875%;
}
#course .cont_inner .corse_cont_wrap .course_cont .img {
    margin-bottom: 30px;
}
/* course_cont06 */
#course .cont_inner .course_cont06 {
    width: 58.594%;
    margin: 0 auto;
}
#course .cont_inner .course_cont06 .img {
    margin-bottom: 30px;
}
#course .cont_inner .course_cont06 .course_cont_txt {
    width: 480px;
    max-width: 100%;
}
#course .cont_inner .course_cont06 .arrow {
    height: 190px;
    margin-left: 40px;
}
#course .cont_inner .course_cont06 .arrow::before {
    height: 190px;
}
/* course_cont07 */
#course .cont_inner .course_cont07 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: row-reverse;
    margin-bottom: 110px;
    width: 1200px;
    max-width: 100vw;
}
#course .cont_inner .course_cont07 .img {
    margin-left: 5.833%;
    width: 53.333%;
}
#course .cont_inner .course_cont07 .txt {
    width: 33.333%;
}
/* credit */
#course .credit {
    text-align: center;
    font-size: 0.8rem;
}

/* event
 * ************************************************** */
#event {
    margin: 0 auto;
    width: 1200px;
    max-width: 94%;
    background: #000031;
    border-radius: 36px;
}
#event .org {
    color: #f7931e;
}
#event .event_cont {
    padding: 70px 0;
}
#event .event_ttl {
    margin-bottom: 70px;
    text-align: center;
    line-height: 1;
    font-size: 2.667rem;
    letter-spacing: 0.5em;
}
#event .event_cont_ttl_en {
    margin-bottom: 8px;
    font-size: 3.333rem;
    line-height: 1;
}
#event .event_cont_ttl {
    margin-bottom: 8px;
    font-size: 2.933rem;
    line-height: 1;
}
/* event_stamp */
#event .event_stamp {
    margin-bottom: 5.319%;
    padding: 0 10.833%;
}
#event .event_stamp .event_cont_ttl_en {
    text-align: center;
}
#event .event_stamp .event_cont_ttl {
    text-align: center;
    margin-bottom: 15px;
}
#event .event_stamp .event_stamp_period {
    margin-bottom: 8px;
    text-align: center;
    font-size: 1.333rem;
}
#event .event_stamp .event_stamp_lead {
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.067rem;
}
#event .event_stamp .event_stamp_stand_wrap {
    margin-bottom: 12px;
}
#event .event_stamp .event_stamp_stand_wrap img {
    display: block;
    margin-bottom: 7px;
}
#event .event_stamp .event_stamp_stand_wrap .disney_credit {
    text-align: right;
    font-size: 0.667rem;
}
#event .event_stamp .event_stamp_txt {
    padding: 0 2.128%;
}
#event .event_stamp .event_stamp_txt .event_stamp_intro {
    margin-bottom: 35px;
    font-size: 1.2rem;
}
#event .event_stamp .event_stamp_txt .event_stamp_intro .txt_s {
    font-size: 60%;
}
#event .event_stamp .event_stamp_txt .event_stamp_howto {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
#event .event_stamp .event_stamp_txt .event_stamp_howto .event_stamp_howto_ttl {
    border: 1px solid #f7931e;
    line-height: 1;
    padding: 1em;
    width: 200px;
    text-align: center;
    margin-right: 20px;
}
#event .event_stamp .event_stamp_txt .event_stamp_howto p {
    font-size: 0.933rem;
}
/* event_wchance */
#event .event_wchance {
    margin: 0 auto 90px;
    padding: 3.2% 2% 1% 4.167%;
    width: 75%;
    background: #fff;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
#event .event_wchance .txt {
    padding-top: 10px;
    width: 45%;
}
#event .event_wchance .img {
    width: 48%;
}
#event .event_wchance .img img {
    width: 88%;
}
#event .event_wchance .img .disney_credit {
    text-align: right;
    font-size: 0.667rem;
    color: #808080;
}
#event .event_wchance .img .event_wchance_note {
    text-align: right;
    font-size: 0.733rem;
    color: #000;
}
#event .event_wchance .event_wchance_ttl {
    margin-bottom: 5px;
    padding-top: 10px;
    width: 361px;
    height: 104px;
    background: url("../images/event_wchance_ttl.png") no-repeat 0 0 / contain;
    font-family: "Zen Maru Gothic", serif;
    font-size: 2rem;
    text-align: center;
}
#event .event_wchance .event_wchance_txt01 {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
    line-height: 1.5;
}
#event .event_wchance .event_wchance_txt02 {
    font-size: 1.6rem;
    letter-spacing: 0.2em;
    color: #ed1c24;
    margin-bottom: 10px;
    line-height: 1.5;
}
#event .event_wchance .event_wchance_note {
    font-size: 0.8rem;
    color: #666;
}
/* event_cafe */
#event .event_cafe_workshop_wrap {
    margin: 0 auto;
    width: 75%;
}
#event .event_cafe_workshop_wrap > div {
    margin: 0 auto;
    width: 110%;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row-reverse;
}
#event .event_cafe_workshop_wrap > div .img {
    width: 45.455%;
}
#event .event_cafe_workshop_wrap > div .txt {
    width: 49.495%;
    color: #f7931e;
}
#event .event_cafe_workshop_wrap > div .txt .event_cont_ttl_en {
    margin-bottom: 14px;
}
#event .event_cafe_workshop_wrap > div .txt .event_cont_ttl {
    margin-bottom: 18px;
    font-size: 2.8rem;
    letter-spacing: 0;
}
#event .event_cafe_workshop_wrap > div .txt .event_cont_catch {
    font-weight: 400;
    font-size: 1.2rem;
    margin-bottom: 15px;
}
/* event_cafe */
#event .event_cafe_workshop_wrap .event_cafe {
    margin-bottom: 90px;
}
#event .event_cafe .txt .event_cont_txt dl {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
#event .event_cafe .txt .event_cont_txt dl dt {
    width: 3.5em;
}
#event .event_cafe .txt .event_cont_txt dl dd {
    width: calc(100% - 3.5em);
}
/* event_workshop */
#event .event_workshop .event_cont_period {
    color: #fff;
    font-size: 1.333rem;
    margin-bottom: 10px;
}
#event .event_workshop .img img {
    display: block;
}
#event .event_workshop .img .event_workshop_img02 {
    margin: 25px 0 0 auto;
    width: 44.444%;
}
#event .event_workshop .img .disney_credit {
    font-size: 0.667rem;
    text-align: right;
    color: #fff;
}

/* eventinfo
 * ************************************************** */
#eventinfo {
    padding: 90px;
    width: 100%;
    background: #fff;
    color: #000;
}
#eventinfo .event_cont {
    margin: 0 auto;
    width: 1024px;
    max-width: 100%;
}
#eventinfo .event_cont .event_ttl {
    margin-bottom: 35px;
    text-align: center;
    line-height: 1;
    font-size: 2.667rem;
    letter-spacing: 0.5em;
}
#eventinfo .event_cont .event_catch {
    margin-bottom: 50px;
    text-align: center;
    line-height: 1;
    font-size: 1.267rem;
}
#eventinfo .event_cont .event_wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}
#eventinfo .event_cont .event_wrap .img {
    width: 48.828%;
}
#eventinfo .event_cont .event_wrap .txt {
    padding-top: 2%;
    width: 45.898%;
}
#eventinfo .event_cont .event_txt_catch {
    margin-bottom: 25px;
    font-size: 2.133rem;
    line-height: 1.4;
}
#eventinfo .event_cont .event_wrap .txt p {
    margin-bottom: 25px;
    width: 360px;
    max-width: 100%;
}
#eventinfo .event_cont .event_wrap .txt dl {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
#eventinfo .event_cont .event_wrap .txt dl dt {
    width: 3.5em;
}
#eventinfo .event_cont .event_wrap .txt dl dd {
    width: calc(100% - 3.5em);
}
#eventinfo .event_cont .event_btn {
    display: block;
    margin: 0 auto;
    padding: 20px 35px;
    width: 480px;
    background: #000;
    position: relative;
    text-decoration: none;
}
#eventinfo .event_cont .event_btn .event_btn_arrow {
    position: absolute;
    top: calc(50% - 7px);
    right: 35px;
    display: inline-block;
    width: 150px;
    height: 1px;
    margin-top: 9.9px;
    border-radius: 9999px;
    background-color: #ffffff;
}
#eventinfo .event_cont .event_btn .event_btn_arrow::before {
    content: "";
    position: absolute;
    top: calc(50% - 0.5px);
    right: 0;
    width: 15px;
    height: 1px;
    border-radius: 9999px;
    background-color: #ffffff;
    transform: rotate(45deg);
    transform-origin: calc(100% - 0.5px) 50%;
}

/* ======================================
	footer [ フッタ ]
====================================== */
#footer {
    padding: 60px 0 40px;
    background: #00005a;
}
#footer .note {
    margin-bottom: 50px;
    text-align: center;
    font-size: 0.8rem;
}
#footer .copy a {
    display: block;
    font-size: 0.75rem;
    text-align: center;
    letter-spacing: 0;
    color: #fff;
    text-decoration: none;
}
/* share button */
.shareBtn ul {
    margin: 0 auto 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.shareBtn li {
    margin: 0 8px;
    width: 75px;
}
.shareBtn li:hover {
    transform: translateY(-.5rem);
    transition: .5s;
}
.shareBtn li a:hover {
    opacity: 1;
}
#page-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 80px;
    z-index: 98;
    cursor: pointer;
    transition: all 0.3s ease;
}

@media (max-width: 1200px) {
    #course .cont_inner .cont_ttl {
        font-size: 2.8vw;
    }
    #course .cont_inner .course_cont .course_cont_ttl_en {
        font-size: 3.8vw;
    }
    #course .cont_inner .course_cont .course_cont_ttl {
        font-size: 4.2vw;
    }
    #event .event_stamp {
        margin-bottom: 5.319%;
        padding: 0 6%;
    }
    #event .event_wchance {
        margin: 0 auto 80px;
        width: 85%;
        border-radius: 12px;
    }
    #event .event_wchance .event_wchance_ttl {
        margin-bottom: 5px;
        padding-top: 1.5vw;
        width: 100%;
        height: 9.6vw;
        background: url(../images/event_wchance_ttl.png) no-repeat 0 0 / contain;
        font-family: "Zen Maru Gothic", serif;
        font-size: 2.5vw;
    }
    #event .event_wchance .event_wchance_txt01 {
        font-size: 1.7vw;
    }
    #event .event_wchance .event_wchance_txt02 {
        font-size: 2.1vw;
    }
    #event .event_wchance .event_wchance_note {
        font-size: 0.9vw;
    }
    #event .event_cafe_workshop_wrap > div .txt .event_cont_ttl {
        font-size: 3.3vw;
    }
    #event .event_cafe_workshop_wrap > div .txt .event_cont_catch {
        font-size: 1.5vw;
    }
    #event .event_cafe .txt .event_cont_txt dl,
    #event .event_workshop .txt .event_cont_outline {
        font-size: 1.25vw;
    }
    #event .event_workshop .event_cont_period {
        font-size: 1.9vw;
    }
    #eventinfo .event_cont .event_txt_catch {
        font-size: 2.8vw;
    }
}
@media (max-width: 1100px) {
    #course .cont_inner .course_cont01 {
        margin-bottom: 10vw;
    }
    #course .cont_inner .course_cont02 {
        margin-bottom: 4vw;
    }
    #course .cont_inner .course_cont03,
    #course .cont_inner .corse_cont_wrap {
        margin-bottom: 7vw;
    }
    #eventinfo .event_cont .event_ttl {
        font-size: 4.2vw;
    }
}
@media (max-width: 1000px) {
    #mv .mv_inner .mv_lead01 p,
    #mv .mv_lead02 p:first-child {
        font-size: 1.75vw;
    }
    #course .cont_inner .course_cont .course_cont_catch {
        font-size: 2.3vw;
    }
    #course .cont_inner .course_cafe .txt .course_cont_catch {
        font-size: 1.8vw;
    }
    #course .cont_inner .course_cafe .arrow,
    #course .cont_inner .course_cafe .arrow::before {
        height: 640px;
    }
    #course .cont_inner .course_cont07 {
        align-items: flex-start;
    }
    #event .event_cont_ttl_en {
        font-size: 5vw;
    }
    #event .event_cont_ttl {
        font-size: 4.7vw;
    }
    #event .event_stamp .event_stamp_txt .event_stamp_intro {
        font-size: 2.1vw;
    }
}