@charset "UTF-8";
@import url("temp-grid.css");

/*カラー指定
-------------------------------------*/
:root{
    --maincolor:#0289c6;
    --pointcolor:#DD4545;
    --subcolor:#D0EAF6;
    --basecolor:#efefef;
    --fontcolor:#333;
    --whcolor:#fff;
}
.main-color{
    color: var(--maincolor) ;
}
.wh-color{
    color: var(--whcolor) ;
}
.point-color{
    color: var(--pointcolor) ;
}

/*フォント指定
-------------------------------------*/
body {
    color: var(--fontcolor) ;
    font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, sans-serif;
}

/* 背景設定
-------------------------------------*/
.back {
	background-color: var(--subcolor);
}
.no-back{
	margin: 5rem auto;
    max-width: 980px;
}
.flowback{
    background-color: var(--basecolor);
}
.flowback .col{
    margin-bottom: 0;
}
.flowback .back{
    background-color: var(--maincolor);
}
.main-back{
	background-color: var(--maincolor);
    color: var(--whcolor);
}
/* 全画面背景設定 */
.back-maxwidth1 {
    background-color:var(--basecolor);
    background-size: cover;
    background-position: 50% 50%;
    width: 100vw;
    height: 100vh;
    max-height: 768px;
    position: relative;
}
.back-maxwidth2 {
    background-image: url();
    background-size: cover;
    background-position: 50% 50%;
    width: 100vw;
    height: 100vh;
    max-height: 768px;
    position: relative;
    color: var(--whcolor);
}
.back-maxwidth3 {
    background-image: url();
    background-size: cover;
    background-position: 50% 50%;
    width: 100vw;
    height: 100vh;
    max-height: 768px;
    position: relative;
    color: var(--whcolor);
}
.back-maxwidth4 {
    background-image: url();
    background-size: cover;
    background-position: 50% 50%;
    width: 100vw;
    height: 100vh;
    max-height: 768px;
    position: relative;
    color: var(--whcolor);
}
@media screen and (max-width: 768px){
    .no-back{
        margin: 2rem 0;
    }
}

/*基本設定
-------------------------------------*/
img {
	max-width:100%;
	height: auto;/*高さ自動*/
}
a {
    display:block;
    color: var(--maincolor) ;
    -webkit-text-decoration-line: none;/*ベンダープレフィックス追加*/
            text-decoration-line: none;
    cursor: pointer;
    -webkit-transition: 0.2s ease all;/*ベンダープレフィックス追加*/
    transition: 0.2s ease all;
}
a:hover {
    opacity: 0.7;
}
a .cardcontent p{
    color: var(--fontcolor) ;
}

/*フォント設定
-------------------------------------*/
.smalltext{
    font-size: 14px;
    margin-bottom: 0.5rem;
}

/*装飾設定
-------------------------------------*/
.button {
	padding: 1rem;
	border-radius: 4px;
    background-color: var(--pointcolor) ;
    color: var(--whcolor) ;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
}
.triangle{
    border-top: 30px solid var(--maincolor);
    border-right: 30px solid transparent;
    border-left: 30px solid transparent;
    width: 30px;
    margin: -1em auto 1em;
}
.space{
    margin: 0;
}
.point{
    background: var(--subcolor) ;
    color: var(--maincolor) ;
    padding: 1.4em;
    margin: 2em auto;
}
@media screen and (max-width: 768px){
    span.button{
        display: -webkit-box;/*ベンダープレフィックス追加*/
        /* display: -ms-flexbox; */
        /*Internet Explorer ベンダープリフィクス指定*/
        display: flex;
        -webkit-box-pack: center;/*ベンダープレフィックス追加*/
        /* -ms-flex-pack: center; */
        /*Internet Explorer ベンダープリフィクス指定*/
        justify-content: center;
    }
}

/*ヘッダー
-------------------------------------*/
.header {
	display: -webkit-box;/*ベンダープレフィックス追加*/
	/* display: -ms-flexbox; */
    /*Internet Explorer ベンダープリフィクス指定*/
	display: flex;
    -webkit-box-orient: horizontal;/*ベンダープレフィックス追加*/
    -webkit-box-direction: normal;/*ベンダープレフィックス追加*/
        /* -ms-flex-direction: row; */
        /*Internet Explorer ベンダープリフィクス指定*/
    flex-direction: row;
    padding: 2rem 0 0 0;
}
.header-container {
    max-width: 980px;
    margin: 0 auto;
}
.header-container h1{
    padding: 1rem;
    line-height: 0;
    margin-bottom: 0;
}
.header-box {
	margin-left: auto;
}
/*ナビゲーション*/
nav ul {
	display: -webkit-box;/*ベンダープレフィックス追加*/
	/* display: -ms-flexbox; */
    /*Internet Explorer ベンダープリフィクス指定*/
	display: flex;
    -webkit-box-orient: horizontal;/*ベンダープレフィックス追加*/
    -webkit-box-direction: normal;/*ベンダープレフィックス追加*/
        /* -ms-flex-direction: row; */
        /*Internet Explorer ベンダープリフィクス指定*/
    flex-direction: row;
    /* -ms-flex-pack: distribute; */
    /*Internet Explorer ベンダープリフィクス指定*/
    justify-content: space-around;
    list-style: none;
	margin: 1rem 0 0 0;
}
nav li {
	-webkit-box-flex: 1;/*ベンダープレフィックス追加*/
	    /* -ms-flex: 1 0 auto; */
        /*Internet Explorer ベンダープリフィクス指定*/
	flex: 1 0 auto;
}
nav li a {
    text-decoration: none;
    text-align: center;
    width: 100%;
    font-weight: bold;
}
nav a:hover {
    background-color: var(--whcolor);
}
nav a {
    padding: 1rem;
}
/* @media screen and (min-width: 769px){ */
    /* ipadでメニューボタンが表示されていなかったため、一部修正 小山 */
    /* #open,#close {
        display: none !important;
    }
} */
@media screen and (min-width: 768px){
    /* PC時はMENUボタンを非表示 */
    /* #open,#close {
        display: none !important;
    } */
    #navi {
        display: block ;
    }
    .pc-none{
        display: none;
    }
}
@media screen and (max-width: 768px){
    .header {
        -webkit-box-orient: vertical;/*ベンダープレフィックス追加*/
        -webkit-box-direction: normal;/*ベンダープレフィックス追加*/
        /* -ms-flex-direction: column; */
        /*Internet Explorer ベンダープリフィクス指定*/
        flex-direction: column;
        margin-bottom: 0;
        padding: 0;
    }
    header .container{
        margin:0;
    }
    .header #open,#close  {
        position: absolute;
        top: 5px;
        right: 12px;
    }
    .header-box{
        width: 100%;
        display: none;
    }
    nav ul {
        flex-direction: column;
    }
    #nav li {
        padding-top: 0;
    }
    /* スマホ時はMENUボタンを表示 */
    #open,#close  {
        display: block;
        width: 50px;
        border: none;
        position: absolute;
        top: 5px;
        right: 12px;
    }
    /* スマホ時はメニューを非表示 */
    #navi {
        display: none;
        padding: 2em 0 0;
    }
    .pc-none{
        display: block;
    }
}

/*MV
-------------------------------------*/
.mainimg {
    background-image: url(../img/Photo-black.png);
    background-size: cover;
    background-position: 50% 50%;
    width: 100vw;
    height: 100vh;
    max-height: 768px;
    position: relative;
}

/*コンバージョンエリア
-------------------------------------*/
.cv{
    background-color: ver(--subcolor);
    background-size: cover;
    background-position: 50% 50%;
    width: 100vw;
    height: 300px;
    max-height: 768px;
    position: relative;
}
.cv .catch{
    top: 30%;
}

/*メインコンテンツ
-------------------------------------*/
main {
    margin: 5rem 0 0 0;
}
section {
	margin: 5rem 0;
	padding: 5rem 0;
}
@media screen and (max-width: 768px){
    section {
        margin: 0;
        padding: 5rem 0 1rem;
    }
}

/*タイトル・キャッチコピー
-------------------------------------*/
.catch {
    text-align: center;
    width: 100vw;
    position: absolute;
    top: 40%;
    padding: 0 17rem;
}
.catch h2 {
    padding-bottom: 1rem;
}
.catch p{
    display: -webkit-box;/*ベンダープレフィックス追加*/
    /* display: -ms-flexbox; */
    /*Internet Explorer ベンダープリフィクス指定*/
    display: flex;
    -webkit-box-pack: center;/*ベンダープレフィックス追加*/
    /* -ms-flex-pack: center; */
    /*Internet Explorer ベンダープリフィクス指定*/
    justify-content: center;
    -webkit-box-align: center;/*ベンダープレフィックス追加*/
    /* -ms-flex-align: center; */
    /*Internet Explorer ベンダープリフィクス指定*/
    align-items: center;
    max-width: 980px;
    margin: 0 auto 1em;
}
/*補足タイトルテキスト*/
p.title{
    margin: 0 auto 0;
    display: -webkit-box;/*ベンダープレフィックス追加*/
    /* display: -ms-flexbox; */
    /*Internet Explorer ベンダープリフィクス指定*/
    display: flex;
    -webkit-box-pack: center;/*ベンダープレフィックス追加*/
    /* -ms-flex-pack: center; */
    /*Internet Explorer ベンダープリフィクス指定*/
    justify-content: center;
}
/*ライン付きキャッチフレーズ*/
.under {
    font-size: 30px;
    font-size: 3rem;
    position: relative;
    padding: 1.5rem;
    text-align: center;
    display: block;
}
.under:before {
    position: absolute;
    bottom: -0.3rem;
    left: calc(50% - 30px);
    width: 60px;
    height: 5px;
    content: '';
    border-radius: 3px;
    background: var(--maincolor);
}
.main-back .under:before {
    background: var(--whcolor);
}
/*上余白必要な場合*/
.section-text{
    margin: 1em auto 0;
}
@media screen and (max-width: 768px){
    .catch {
        padding: 0 2rem;
        top: 25%;
    }
}

/*テキストレイアウト
-------------------------------------*/
/*センター揃え*/
.center {
	text-align: center;
	margin-bottom: 2rem;
    padding: 0 1.0rem;
}
h3.center{
    margin-top: 0;
    margin-bottom: 0.5rem;
}
/*左揃え*/
.left{
    text-align: left;
    padding: 0 1.0rem;
}
/*上下左右真ん中揃えの場合*/
.outer{
    position: relative;
}
.inner{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);/*ベンダープレフィックス追加*/
    /* -ms-transform: translateY(-50%) translateX(-50%); */
    /*Internet Explorer ベンダープリフィクス指定*/
    transform: translateY(-50%) translateX(-50%);
}
/*背景ありテキストの場合*/
.back-container{
    margin: 0 auto;
    padding: 2em 2em;
    position: relative;
}
.back-container p{
    margin-bottom: 0;
}
@media screen and (max-width: 768px){
    .inner{
        position: relative;
        top: 0;
        left: 0;
        -webkit-transform: translateY(0) translateX(0);/*ベンダープレフィックス追加*/
        /* -ms-transform: translateY(0) translateX(0); */
        /*Internet Explorer ベンダープリフィクス指定*/
        transform: translateY(0) translateX(0);
        text-align: center;
        margin: 1em 2rem;
    }
    .flex-order1{
        -webkit-box-ordinal-group:2;/*ベンダープレフィックス追加*/
        /* -ms-flex-order:1; */
        /*Internet Explorer ベンダープリフィクス指定*/
        order:1;
    }
    .flex-order2{
        -webkit-box-ordinal-group:3;/*ベンダープレフィックス追加*/
        /* -ms-flex-order:2; */
        /*Internet Explorer ベンダープリフィクス指定*/
        order:2;
    }
}

/*画像背景ありレイアウト
-------------------------------------*/
.back-maxwidth {
    background-image: url(../img/Photo.png);
    background-size: cover;
    background-position: 50% 50%;
    width: 100vw;
    height: 100vh;
    max-height: 768px;
    position: relative;
}
.flexbox{
    display: -webkit-box;/*ベンダープレフィックス追加*/
    /* display: -ms-flexbox; */
    /*Internet Explorer ベンダープリフィクス指定*/
    display: flex;
}
.catch-2clumn{
    text-align: center;
    width: 50vw;
    position: absolute;
    top: 40%;
    padding: 0 17rem;
}
.catch-3clumn{
    text-align: center;
    width: 33vw;
    position: absolute;
    top: 40%;
    padding: 0 17rem;
}
.flex-column{
    text-align: center;
    width: 100%;
    max-width: 980px;
    padding: 10rem;
}
.flex-column .back h3{
    padding: 1em 0;
    margin: 2em 0;
}
@media screen and (max-width: 768px){
    .catch-2clumn{
         width:100vw;
         padding: 0 4rem;
     }
     .catch-3clumn{
         width:100vw;
         padding: 0 4rem;
     }
     .flexbox{
         display: block;
     }
     .flex-column{
         padding: 4rem;
     }
}

/*上下余白なしレイアウト
-------------------------------------*/
section.no-whspace{
    margin: 0;
	padding: 0;
}
main.no-whspace{
    margin: 0;
	padding: 0;
}
.no-whspace .container{
	padding: 0;
    margin: 0 auto;
}
.no-whspace .container.left{
	margin: 1em auto 2em;
}
.no-whspace .flowback .container{
	margin: 1em auto 2em;
    padding: 1rem 2.0rem 0;
}
@media screen and (max-width: 768px){
    .no-whspace .container{
        padding: 0 2.0rem;
    }
}

/*動画レイアウト
-------------------------------------*/
.movie-1col,.movie-2col,.movie-3col{
    width: 100%;
    display: -webkit-box;/*ベンダープレフィックス追加*/
    /* display: -ms-flexbox; */
    /*Internet Explorer ベンダープリフィクス指定*/
    display: flex;
    -webkit-box-pack: center;/*ベンダープレフィックス追加*/
    /* -ms-flex-pack: center; */
    /*Internet Explorer ベンダープリフィクス指定*/
    justify-content: center;
    margin: 2em auto;
}
.movie-1col iframe {
    width: 100%;
    height: 420px;
    max-width: 682px;
    display: block;
    margin: 0 auto;
}
.movie-2col iframe{
    width: 100%;
    height: 246px;
    display: block;
    margin: 0 1em;
}
.movie-3col iframe{
    width: 100%;
    height: 158px;
    display: block;
    margin: 0 1em;
}
@media screen and (max-width: 768px){
    .movie-1col,.movie-2col,.movie-3col{
        -webkit-box-orient: vertical;/*ベンダープレフィックス追加*/
        -webkit-box-direction: normal;/*ベンダープレフィックス追加*/
        /* -ms-flex-direction: column; */
        /*Internet Explorer ベンダープリフィクス指定*/
        flex-direction: column;
        margin: 0 auto;
    }
    .movie-1col iframe,
    .movie-2col iframe,
    .movie-3col iframe {
        height: 240px;
        margin: 1em auto;
    }
}

/*申し込みの流れ
-------------------------------------*/
.flow.row {
	margin-bottom: 3rem;
}
.flowback .container{
    margin: 1em auto 2em;
    padding: 1rem 2.0rem 0;
}

/*フッター
-------------------------------------*/
footer {
    background: var(--subcolor);
    padding: 80px 0 40px;
    text-align: center;


}
footer .logo_enjoyworks {
    width: 236px;
}
footer .list_sns {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    margin: 28px 0 54px;
    align-items: center;
}
footer .list_sns img {
    height: 25px;
    width: auto;
    margin: 0 0.5em;
}
footer .list_sns .button {
    height: 27px;
    width: auto;
    margin: 0 0.5em 0.5em;
    line-height: 0.5;
}
footer .list_links {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    margin: 1em 0;
}
footer .list_links li {
    padding: 0 1em;
    line-height: 1em;
    border-right: 1px solid #111;
    font-weight: bold;
}
footer .list_links li:last-child {
    border-right: none;
}
footer .websites {
    background: #fff;
    border-radius: 1em;
    max-width: 678px;
    margin: 40px auto;
    text-align: center;
    padding: 24px 38px;
}
footer .websites ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
footer .websites ul li {
    margin: 0.5em;
}
footer .websites ul li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
footer .websites ul li a img {
    max-height: 42px;
    max-width: 128px;
    width: 100%;
}
footer address {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9em;
    font-style: normal;
}
@media screen and (max-width: 425px) {
    footer {
        padding: 60px 16px 40px;
    }
    footer .list_links li {
        padding: 0 1em;
    }
    footer .websites {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        padding: 24px 16px;
    }
    footer .websites ul {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-top: 1em;
        justify-content: space-around;
    }
    footer .websites ul li a img {
        max-width: 120px;
        height: auto;
    }
}

/*お問い合わせ
-------------------------------------*/
.contact-box {
    background-color: #efefef;
	text-align: center;
	padding: 2rem 6rem;
}
.table {
	margin: 4rem 0;
}
.table th {
	width: 250px;
}
@media screen and (max-width: 768px){
    .contact-box{
        padding: 2rem 4rem;
    }
    .table th {
        width: 100%;
        display: block;
    }
    .table td {
        display: block;
    }
}

/*コピーライト
-------------------------------------*/
.copyright {
    text-align: center;
    padding: 1rem 0;
    background-color: #3B4043;
}
.copyright a {
    color: #fff;
    text-decoration: none;
	display: inline;
}

/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop{
    width: 50px;
    height: 50px;
    position: fixed;
    right: 10px;
    bottom: 10px;
    background: var(--pointcolor);
    border-radius: 50%;
}
#pagetop a{
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    text-decoration: none;
}
#pagetop a::before{
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f0d8';
    font-size: 25px;
    color: #fff;
    position: absolute;
    width: 25px;
    height: 25px;
    top: -15px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
}

/*円形スタイル
-------------------------------------*/
.circle img {
    border-radius: 50%;
    object-fit: cover;
}
.circle-box{
    position: relative;
    border-radius: 50%;
    background: var(--subcolor);
    width: 100px;
    height: 100px;
}
.circle-text{
    position: absolute;
    display: inline-block;
    text-align: center;
    font-weight: bold;
    color: var(--maincolor);
    top: 50%;
    left: 33%;
    -webkit-transform: translateY(-50%);
    /* -ms-transform: translateY(-50%); */
    /*Internet Explorer ベンダープリフィクス指定*/
    transform: translateY(-50%);
}
@media screen and (max-width: 768px){
    .circle-box {
        margin: 0 auto;
    }
}

/*FAQスタイル
-------------------------------------*/
.faq-flex{
    display: flex;
}
.faq-flex .back-continer{
    padding: 2em 2em 1em;
}
.faq-container{
    margin: 0 auto;
    padding: 0em 2em;
    position: relative;
}
@media screen and (max-width: 768px){
    .faq-flex {
        -webkit-box-orient: vertical;/*ベンダープレフィックス追加*/
        -webkit-box-direction: normal;/*ベンダープレフィックス追加*/
        /* -ms-flex-direction: column; */
        /*Internet Explorer ベンダープリフィクス指定*/
        flex-direction: column;
    }
    .faq-flex .back-container{
        padding: 2em 0 0;
    }
    .faq-container{
        padding: 1em;
        background: var(--basecolor);
    }
}
