@charset "UTF-8";

/*
SP ～519px
tab 520px～959px
PC 960px～
*/

/*================
top
================*/
.top {
    background-color: #fff;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
}

/*================
top kv swiper
================*/

.swiper-wrap {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

@keyframes zoom-out {
    0% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
    animation: zoom-out 20s linear 0s 1 normal both;
}

.slide-img source,
.slide-img img {
    margin: calc(50% - 50vw);
    object-fit: cover;
    top: 0;
    height: auto;
    width: 100%;
}

/*================
top key_title
================*/
.key_title {
    position: absolute;
    height: auto;
    width: 100%;
    z-index: 5;
    top: 40%;
}

.key_title .key_title_inner {
    display: flex;
    width: 100%;
    height: auto;
    justify-content: center;
}

.key_title .key_title_inner img {
    width: 80%;
    max-width: 540px;
    height: auto;
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.5));
}

@media screen and (min-width:720px) {
    .key_title {
        top: 38%;
    }
}

/*========min-width:720px===========*/

/*================
お知らせ
================*/

.news {
    background: #fff url(../../img/SP/SP_news.png) no-repeat;
    background-position: 6px 6px;
    width: 100%;
    height: 72px;
    position: relative;
    margin-top: -66px;
    z-index: 5;
}

/* バナー本体 */
.news_inner {
    background: none;
    display: block;
    padding: 20px auto;
    height: 72px;
    width: 80%;
    margin-left: 20%;
    overflow: hidden;
}

/* バナー内コンテンツ */
.news_inner_banner {
    display: inline-block;
    line-height: 72px;
    padding-left: 100%;
    white-space: nowrap;
    animation: animate-banner 20s linear infinite;
}

/* バナー内の要素をすべて選択 */
.news_inner_banner>* {
    display: inline-block;
}

/* 横にスクロールさせるアニメーション */
@keyframes animate-banner {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* PC設定 */
@media screen and (min-width:960px) {
    .news {
        background: #fff url(../../img/PC&common/PC_news.png) no-repeat;
        background-position: 15%;
        background-size: auto 60px;
    }

    .news_inner {
        width: 70%;
        margin-left: 30%;
    }
}

/*========min-width:960px===========*/

/*================
concept
================*/
/* セクション上余白 */
.concept {
    padding-top: var(--section-gutter);
    width: 100%;
}

.concept .concept_inner {
    padding: 0;
    margin: auto;
}

/* 画像コンテナ */
.concept .concept_img_container {
    /* background-color: #bbb; */
    width: 100%;
    height: auto;
    padding: 0;
    margin: auto;
}

/* コンセプト画像2種 */
.concept picture {
    margin: auto;
    display: block;
}

/* コンセプトサムネイル */
.concept picture.concept_thumb {
    max-width: 300px;
}

/* コンセプトタイトル */
.concept picture.contents_title {
    width: 100%;
    /* 左余白 */
    padding-left: 12px;
    /* マイナス余白150px ＝ 画像高さ90px ＋ 下余白60px */
    padding-bottom: 60px;
}

/* コンセプトタイトルimgタグ */
picture.contents_title source,
picture.contents_title img {
    width: auto;
    margin-right: auto;
    margin-left: auto;
    /* マイナス余白120px ＝ 画像高さ90px ＋ 下余白30px */
    height: 90px;
    margin-top: -150px;
}

/* テキストコンテナ */
.concept_text_container {
    max-width: 300px;
    margin: auto;
    padding-top: var(--contents-gutter);
}

/* キャッチコピー */
.concept h3.caption {
    font-family: var(--font-sawarabi-mincho);
    text-align: center;
    line-height: 1.6;
    margin-bottom: var(--side-gutter);
}

.caption p.caption_catch {
    font-size: 24px;
}

/* リード文 */
.concept p.concept_text {
    text-align: justify;
    line-height: 1.6;
    margin-bottom: var(--side-gutter);
}

/*================
concept tab
================*/
@media screen and (min-width:520px) {

    /* セクション上余白 */
    .concept {
        padding-top: var(--section-gutter-pc);
    }

    /* コンセプトサムネイル */
    .concept picture.concept_thumb {
        max-width: 500px;
    }

    /* コンセプトタイトル */
    .concept picture.contents_title {
        /* 左余白 */
        padding-left: 60px;
        /* マイナス余白120px ＝ 画像高さ90px ＋ 下余白30px */
        padding-bottom: 60px;
    }

    /* コンセプトタイトルimgタグ */
    picture.contents_title source,
    picture.contents_title img {
        /* マイナス余白180px ＝ 画像高さ120px ＋ 下余白60px */
        height: 120px;
        margin-top: -180px;
    }

    /* テキストコンテナ */
    .concept_text_container {
        max-width: 420px;
    }

    /* キャッチコピー */
    .caption p.caption_title {
        font-size: var(--size-lg);
    }

    .caption p.caption_catch {
        font-size: 30px;
    }
}

/*=====min-width:520px=====*/
/*================
concept PC
================*/
@media screen and (min-width:960px) {
    .concept .concept_inner {
        padding: 0 24px;
        height: auto;
        /* 横並びに変換 */
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(1, 1fr);
        align-items: center;
        column-gap: 0px;
        /* grid-gap: 30px; */
    }

    /* 画像2種 格納 */
    .concept .concept_img_container {
        /* background-color: #fff; */
        padding: 0;
        max-width: 600px;
        height: auto;
        margin: auto;
        /* グリッドの位置を指定 */
        grid-column: 2/2;
        grid-row: 1/1;
    }

    /* コンセプトサムネイル */
    .concept picture.concept_thumb {
        max-width: 480px;
        height: auto;
        padding: 0 24px 0 0;
        margin: auto;
    }

    /* コンセプトタイトル */
    .concept picture.contents_title {
        padding: 0;
        margin: auto;
        /* マイナス余白120px ＝ 画像高さ90px ＋ 下余白30px */
        padding-bottom: 60px;
    }

    /* コンセプトタイトルimgタグ */
    picture.contents_title source,
    picture.contents_title img {
        /* マイナス余白180px ＝ 画像高さ120px ＋ 下余白60px */
        height: 150px;
        margin-top: -210px;
    }

    /* テキストコンテナ */
    .concept_text_container {
        /* background-color: #fff; */
        grid-column: 1/2;
        grid-row: 1/1;
        /* SP設定の上余白を消す */
        padding: 0;
        margin: auto;
        width: 420px;
    }

    .caption p.caption_catch {
        /* font-size: 28px; */
        margin-bottom: var(--contents-gutter);
    }

    /* リード文 */
    .concept p.concept_text {
        width: 400px;
        margin: auto;
        font-size: 14px;
        margin-bottom: var(--side-gutter);
    }
}

/*========min-width:960px===========*/

/*================
menu
================*/
/* セクション上余白 */
.menu {
    padding-top: var(--section-gutter);
    width: 100%;
}

/* 画像コンテナ */
.menu .menu_img_container {
    /* background-color: #bbb; */
    width: 100%;
    height: 100%;
    margin: auto;
    /* タイトル画像はみ出し分の上余白 */
    padding: 30px 0;
    /* 親要素に基準位置 */
    position: relative;
}

/* menuタイトル */
picture.menu_title source,
picture.menu_title img {
    height: 60px;
    width: auto;
    /* 子要素に絶対位置指定 */
    position: absolute;
    top: 0;
    left: 0;
}

/* メニュー画像（フレックスボックス） */
.menu .menu_inner ul {
    width: 100%;
    height: 100%;
    margin: auto;
    /* menu画像を横並びに */
    display: flex;
    box-sizing: border-box;
    justify-content: center;
    /* 画像同士の隙間 */
    gap: 15px;
    flex-wrap: wrap;
}

.menu .menu_inner ul li {
    /* SP版画像サイズ */
    width: 180px;
    height: auto;
}

.menu .menu_inner ul li img {
    width: 100%;
    margin: auto;
}

/* テキストコンテナ */
.menu_text_container {
    /* background-color: #bbb; */
    max-width: 300px;
    margin: auto;
    padding-top: var(--side-gutter);
}

/* リード文 */
.menu .menu_text {
    text-align: justify;
    line-height: 1.6;
    margin-bottom: var(--side-gutter);
}

/*================
menu tab
================*/
@media screen and (min-width:520px) {

    /* セクション上余白 */
    .menu {
        padding-top: var(--section-gutter-pc);
    }

    /* 画像コンテナ */
    .menu .menu_img_container {
        /* background-color: #bbb; */
        /* タイトル画像はみ出し分の上余白 */
        padding: 60px 0 30px;
    }

    /* menuタイトル */
    picture.menu_title source,
    picture.menu_title img {
        height: 90px;
    }

    /* メニュー画像（フレックスボックス） */
    .menu .menu_inner ul {
        width: 100%;
        height: 100%;
        /* 画像同士の隙間 */
        gap: 20px;
    }

    /* .menu .menu_inner ul li {
        SP版画像サイズ
        width: 180px;
    } */

    /* テキストコンテナ */
    .menu_text_container {
        /* background-color: #bbb; */
        max-width: 420px;
    }
}

/*=====min-width:520px=====*/
/*================
menu PC
================*/
@media screen and (min-width:960px) {

    /* 画像コンテナ */
    .menu .menu_img_container {
        /* background-color: #bbb; */
        /* タイトル画像はみ出し分の上余白 */
        padding: 60px 0 0;
    }

    /* menuタイトル */
    picture.menu_title source,
    picture.menu_title img {
        height: 120px;
    }

    /* メニュー画像（フレックスボックス） */
    .menu .menu_inner ul {
        /* 画像同士の隙間 */
        gap: 30px;
    }

    .menu .menu_inner ul li {
        /* PC版画像サイズ */
        width: 240px;
    }

    /* テキストコンテナ */
    .menu_text_container {
        /* background-color: #bbb; */
        max-width: 540px;
        padding-top: var(--contents-gutter);
    }

    /* リード文 */
    .menu .menu_text {
        font-size: 14px;
        text-align: justify;
        margin-bottom: var(--contents-gutter);
    }
}

/*========min-width:960px===========*/

@media screen and (min-width:1200px) {

    /* メニュー画像（フレックスボックス） */
    .menu .menu_inner ul {
        /* 画像同士の隙間 */
        gap: 50px;
    }

    .menu .menu_inner ul li {
        /* PC版画像サイズ */
        width: 300px;
    }
}

/*=====min-width:1200px=====*/



/*================
TOP_scroll
================*/
/* .scroll_down {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 5;
}

.scroll_down .arrow_down {
    display: block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(135deg);
}

.scroll_down::before {
    content: "";
    display: block;
    width: 2px;
    height: 90px;
    background-color: #fff;
    position: absolute;
    top: -82px;
    left: 3px;
    animation: arrow 1.2s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes arrow {
    0% {
        transform-origin: 0 0;
        transform: scaleY(0);
    }

    50% {
        transform-origin: 0 0;
        transform: scaleY(1);
    }

    51% {
        transform-origin: 0 100%;
        transform: scaleY(1);
    }

    100% {
        transform-origin: 0 100%;
        transform: scaleY(0);
    }
} */