@charset "utf-8";

/* common
--------------------------------------------------------------------*/

:root{
	--black:#333333; 
    --line_bg:#06c755;

    --gray_gray: hsl(0, 0%, 94%);
    --gray_light: hsl(0, 0%, 91%);
    --gray_bg: hsl(0, 0%, 70%);
    --gray_txt: hsl(0, 0%, 57%);

    --pink_gray: hsl(354, 28%, 96%);
    --pink_light: hsl(354, 94%, 96%);
    --pink_bg: hsl(354, 94%, 70%);
    --pink_txt: hsl(354, 94%, 57%);

    --blue_gray: hsl(216, 28%, 96%);
    --blue_light: hsl(216, 94%, 96%);
    --blue_bg: hsl(216, 94%, 70%);
    --blue_txt: hsl(216, 94%, 57%);

    --gold_gray: hsl(49, 28%, 96%);
    --gold_light: hsl(49, 94%, 96%);
    --gold_bg: hsl(49, 47%, 49%);
    --gold_txt: hsl(49, 66%, 37%);

}

* {
    font-feature-settings: 'palt'
}

html{
	font-size: 62.5%;
}
sup {
   font-size: .55em;
   vertical-align: top;
}
sub {
	font-size: .55em;
    vertical-align: bottom;
}

::selection{
    background-color:  var(--pink_light);
    color: var(--black);
	text-shadow: none;
}

body{
	width: 100%;
	background:#fff;
    color: var(--black);
    font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", 游ゴシック, "Yu Gothic", YuGothic, sans-serif;
	font-weight: 500;
    letter-spacing: 0.11em;
	line-height: 1.7;
    font-size: 1.8rem;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	font-variant-east-asian: proportional-width;
	overflow-wrap: break-word;
	word-wrap: break-word;
	text-rendering: optimizelegibility;
}
body.modal_open{
    overflow-y: hidden;
}

.mincho ,h2,h3,h4 {
    font-family: "Noto Serif JP", 游明朝, "Yu Mincho", YuMincho, serif, Georgia;
}

@media screen and (max-width: 980px) {
	body{
		font-size:1.6rem;
	}
}


@media screen and (max-width: 767px) {
	body{
		font-size:1.4rem;
	}
}


/* --============== c_headline =============== */

    .c_headline{
        margin-bottom: 35px;
        font-weight: 700;
        line-height: 1.4;
        font-size: 3.8rem;
        text-align: center;
    }

    .c_headline_latter{
        margin-bottom: 90px;
        font-weight: 700;
        line-height: 1.4;
        font-size: 3.8rem;
        padding: 20px 0;
        text-align: center;
        position: relative;
        background-color: var(--pink_bg);
        color: #fff;
    }

    .c_headline_latter::after{
        content: "";
        position: absolute;
        border-style: solid;
        border-width: 34px 68px;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        border-color: var(--pink_bg) transparent transparent;
    }


    @media screen and (max-width: 980px) {
        .c_headline{
            font-size: 2.8rem;
            margin-bottom: 25px;
        }
        .c_headline_latter{
            font-size: 2.8rem;
            padding: 15px;
            margin-bottom: 60px;
        }
    }


    @media screen and (max-width: 767px) {
        .c_headline_latter{
            margin-bottom: 50px;
        }
    
        .c_headline_latter::after{
            border-width: 26px 52px;
        }


    }


    @media screen and (max-width: 520px) {
        .c_headline{
            margin-bottom: 20px;
        }
    }

/* --============== c_container =============== */


.c_container{
    padding: 80px 0 140px;
	overflow: hidden;
	position: relative;
}
.c_container.--gray{
    background-color: var(--gray_gray);
}
.c_container.--gold{
    background-color: var(--gold_gray);
}
.c_container.--blue{
    background-color: var(--blue_gray);
}
.c_container.--pink{
    background-color: var(--pink_gray);
}

.c_inner{
	width: calc(100% - 120px);
	max-width:980px;
	margin: 0 auto;
	position: relative;
}
@media screen and ( max-width: 980px ) {
    .c_container{
		padding: 60px 0 60px;
	}
}
@media screen and ( max-width: 767px ) {
	.c_container{
		padding: 35px 0;
	}
    .c_inner{
        width: calc(100% - 60px);
    }
}
@media screen and ( max-width: 520px ) {
    .c_inner{
        width: calc(100% - 30px);
    }
}



/* --============== font =============== */

 h1, h2, h3, h4, h5 {
	-webkit-font-smoothing: antialiased;
 }


/* --============== module =============== */

.mt00{
    margin-top: 0!important;
}
.mb00{
    margin-bottom: 0!important;
}
.pt00{
    padding-top: 0!important;
}


.txt_pink{
    color: var(--pink_txt);
}
.highlight_pink{
    color: var(--pink_txt);
    font-weight: bolder;
}

.line_marker_pink {
    background: linear-gradient(transparent 65%, #fed2d6 65%);
}

.sp_only {
    display:none;
}
.pc_only {
    display:block;
}

@media screen and (max-width: 767px) {
.sp_only{
    display:inherit;
	}
.pc_only{
    display:none;
	}
}



/* --============== column_area =============== */

.column_area{
    margin-top: 80px;
    padding: 30px 30px 50px;
    background-color: var(--gold_light);
}

.column_area h3{
    font-size: 2.4rem;
    margin-bottom: 10px;
    line-height: 1.5;
    color: var(--gold_txt);
    font-weight: 700;
}
.column_area .hr{
    background: linear-gradient(to left, transparent 0, var(--gold_txt) 5%, var(--gold_txt) 95%, transparent 100%);
    height: 1px;
    margin-bottom: 15px;
}

.column_area .content{
    display: flex;
    gap: 30px;
}

.column_area .img_area{
    width: 240px;
    flex-shrink: 0;
}
.column_area .img_area img{
    border: 1px solid var(--gold_bg);
    padding: 5px;
    background: #fff;
}

.column_area .txt_area{
    font-size: 1.6rem;
}


.column_area .head{
    display: flex;
    gap: 15px;
    margin-bottom: 5px;
}

.column_area h4{
    font-size: 2rem;
    color: var(--gold_txt);
    font-weight: 700;
}
.column_area .head:not(:first-child){
    margin-top: 30px;
}
.column_area .head img{
    width: auto;
    display: block;
    width: 114px;
    object-fit: contain;
}

@media screen and (max-width: 920px) {
    .column_area .head{
        flex-direction: column;
        gap: 10px;
    }
    .column_area .img_area{
        display: none;
    }
}
@media screen and (max-width: 767px) {
    .column_area{
        margin-top: 60px;
    }
    .column_area h3{
        font-size: 2.2rem;
    }
    .column_area .txt_area{
        font-size: 1.4rem;
    }
    .column_area h4{
        font-size: 1.8rem;
    }
    .column_area .head img{
        width: 100px;
    }
    .column_area .head:not(:first-child){
        margin-top: 20px;
    }
}

@media screen and (max-width: 520px) {
    .column_area{
        padding: 24px 24px 48px;
        margin-top: 40px;
    }
    .column_area h3{
        font-size: 1.8rem;
        text-align: center;
    }
    .column_area h4{
        font-size: 1.6rem;
    }
    .column_area .hr{
        margin-bottom: 15px;
    }
    .column_area .head img{
        width: 86px;
    }
}


/* --============== movie_area =============== */

.movie_area{
    margin: 80px auto 0;
}


.movie_area .movie_wrapper{
    margin: auto;
    max-width: 520px;
}

.movie_area iframe{
    max-width: unset!important;
}

.movie_area .h3_wrapper{
    text-align: center;
}
.movie_area .h3_wrapper h3{
    font-size: 2.4rem;
    font-size: 2.8rem;
    position: relative;
    color: var(--pink_txt);
    color: var(--gold_txt);
    margin: 0 auto 50px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    line-height: 1.5;
}

.movie_area .h3_wrapper h3::after{
    content: "";
    height: 1px;
    background: linear-gradient(to left, transparent 0, var(--gold_txt) 25%, var(--gold_txt) 75%, transparent 100%);
    width: 100%;
}


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

    .movie_area .h3_wrapper h3{
        font-size: 2.4rem;
        margin: 0 auto 25px;
    }
}


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

    .movie_area{
        margin: 60px auto 0;
    }    
}


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

    .movie_area{
        margin: 40px auto 0;
    }
    .movie_area .h3_wrapper h3{
        margin: 0 auto 20px;
    }
}

