@charset "UTF-8";

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

/* -----ローディング画面----- */
#splash {
    /*fixedで全面に固定*/
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background: var(--color-white);
}

/* Loading画像中央配置　*/
#splash_logo {
    width: 100%;
    height: 100vh;
    position: relative;
}

#splash_logo img {
    margin: 0 auto;
    max-width: 366px;
    /* 位置 */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

@media screen and (min-width:729px) {
    #splash_logo img {
        max-width: 565px;
    }
}

/* -----ファーストビュー----- */
.firstview {
    width: 100%;
    height: 100vh;
}

.firstview_inner {
    width: 100%;
    height: 100%;
    /* 位置 */
    position: fixed;
    top: 0;
    z-index: -1;
}

/* ファーストビュー　スライダー */
.slider {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}

.slider .slider-item {
    width: 100%;
    height: 100vh;
    /* 背景 */
    background-color: rgba(189, 177, 161, 50%);
    background-size: cover;
    background-blend-mode: multiply;
    background-repeat: no-repeat;
}

.add_first_anime {
    animation: zoom_first 10s linear 0s normal both;
}

@keyframes zoom_first {
    0% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
        /* 拡大率 */
    }
}

.slider .slider-item01 {
    background-image: url(../../img/first_image.jpg);
    background-position: center;
}

.slider .slider-item02 {
    background-image: url(../../img/first_image2.jpg);
    background-position: right;
}

.slider .slider-item03 {
    background-image: url(../../img/first_image3.jpg);
    background-position: center;
}

/* ファーストビュー　キャプション */

.first_caption {
    position: fixed;
    top: 60%;
    right: 0;
    left: 0;
    margin: 0 auto;
}

.first_caption h1 {
    width: 100%;
    max-width: 366px;
    margin-left: auto;
    margin-right: auto;
}

.first_caption p {
    font-size: var(--size-24px);
    font-weight: 500;
    font-family: var(--font-ryo-mincho);
    color: var(--color-white);
    text-align: center;
}

@media screen and (min-width:729px) {
    .first_caption {
        position: absolute;
        top: auto;
        right: auto;
        left: 60px;
        bottom: 60px;

    }

    .first_caption h1 {
        max-width: 565px;
        margin-left: 0;
    }

    .first_caption p {
        font-size: var(--size-32px);
        text-align: left;
    }
}

/* ファーストビュー　スクロール */
.scroll {
    display: none;
}

@media screen and (min-width:729px) {
    .scroll {
        display: block;
        position: fixed;
        bottom: 140px;
        right: 60px;
        /* background-color: aqua; */
    }

    .scroll span {
        /*描画位置*/
        /* フォント */
        font-family: var(--font-Garamond);
        font-size: var(--size-20px);
        color: var(--color-white);
        /*縦書き設定*/
        -ms-writing-mode: tb-rl;
        -webkit-writing-mode: vertical-rl;
        writing-mode: vertical-rl;
        /* background-color: aqua; */
    }

    .scroll:after {
        content: "";
        /*描画位置*/
        position: absolute;
        top: 0;
        left: 0;
        /*線の形状*/
        width: 1px;
        height: 120px;
        background-color: var(--color-white);
        /*線の動き1.7秒かけて動く。永遠にループ*/
        animation: scrolldown 2s ease-in-out infinite;
        opacity: 0;
    }

    @keyframes scrolldown {
        0% {
            height: 0;
            top: 0;
            opacity: 0;
        }

        30% {
            height: 50px;
            opacity: 1;
        }

        100% {
            height: 0;
            top: 120px;
            opacity: 0;
        }
    }
}


/* -----news----- */
.news .button_mini {
    margin-top: var(--gutter-60px);
    width: 203px;
}

@media screen and (min-width:729px) {
    .news .button_mini {
        width: 293px;
        margin-left: auto;
    }
}

/* news_list */

.news_list a {
    transition: 0.5s;
    display: flex;
    gap: var(--gutter-16px);
}

.news_list a:hover {
    opacity: 0.5;
}

.news_list .news_title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media screen and (min-width:729px) {
    .news .title_wrap {
        margin-bottom: 0;
    }

    .news_contents_flex {
        display: flex;
        overflow: hidden;
        gap: var(--size-32px);
        justify-content: space-between;
    }

    .news_list {
        width: 707px;
    }
}

/* -----about----- */
.about {
    /* 背景画像 */
    background-image: url(../../img/about_main_image.jpg);
    background-color: rgba(189, 182, 174, 100%);
    background-size: cover;
    background-position: left;
    background-blend-mode: multiply;
    /* 文字 */
    color: var(--color-white);
}

.about .about_headline {
    font-size: var(--size-18px);
    font-family: var(--font-ryo-mincho);
    margin-bottom: var(--gutter-40px);
    font-weight: 500;
}

@media screen and (min-width:729px) {
    .about_contents_flex {
        display: flex;
        overflow: hidden;
        gap: var(--size-32px);
        justify-content: space-between;
    }

    .about_text_wrap {
        max-width: 470px;
    }

    .about .about_headline {
        font-size: var(--size-20px);
    }
}

/* -----Item list----- */

/* 背景の設定 */
.itemlist.section {
    padding: 80px 0 0;
}

.itemlist .center {
    padding-top: 60px;
    padding-bottom: var(--gutter-80px);
}

@media screen and (min-width:729px) {
    .itemlist.section {
        padding: 120px 0 0;
    }

    .itemlist .center {
        padding-top: 80px;
        padding-bottom: var(--gutter-120px);
    }
}

/* 商品周りの設定 */

.itemlist ul {
    display: grid;
    gap: var(--gutter-40px);
}

.itemlist ul .item_img_wrap {
    width: 100%;
    overflow: hidden;
    margin-bottom: var(--gutter-16px);
}

.itemlist ul .item_type {
    font-size: var(--size-12px)
}

.itemlist ul li a {
    transition: 0.5s;
    font-size: var(--size-16px);
    font-family: var(--font-ryo-mincho);
    font-weight: 500;
    line-height: 1;
}

.itemlist ul li a:hover {
    opacity: 0.5;
}

@media screen and (min-width:729px) {
    .itemlist ul {
        gap: var(--gutter-60px);
        grid-template-columns: 1fr 1fr;
    }

    .itemlist ul .item_type {
        font-size: var(--size-14px)
    }

    .itemlist ul li a {
        font-size: var(--size-18px);
    }
}


/* -----column----- */

/* 背景の設定 */
.column.section {
    padding: 0;
}

.column .center {
    padding-top: var(--gutter-80px);
    padding-bottom: var(--gutter-80px);
}

@media screen and (min-width:729px) {
    .column.section {
        padding: 0;
    }

    .column .center {
        padding-top: 120px;
        padding-bottom: var(--gutter-80px);
    }
}

/* 記事周りの設定 */

.column ul {
    display: grid;
    gap: 40px;
}

.column ul .column_img_wrap {
    width: 100%;
    overflow: hidden;
    margin-bottom: var(--gutter-16px);
}

.column ul .column_date {
    font-size: var(--size-12px);
    line-height: 1;
    margin-bottom: 8px;
}

.column ul .column_title {
    font-size: var(--size-16px);
    font-family: var(--font-ryo-mincho);
    font-weight: 500;
    margin-bottom: 8px;
}

.column ul .column_text {
    font-size: var(--size-12px);
    height: 4em;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media screen and (min-width:729px) {
    .column ul {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 60px;
    }

    .column ul .column_title {
        font-size: var(--size-18px);
    }
}

/* ボタンアニメーション */

.column ul li a {
    transition: 0.5s;
}

.column ul li a:hover {
    opacity: 0.5;
}

/* -----access----- */
/* 余白 */
@media screen and (min-width:729px) {
    .access.section {
        padding-bottom: 120px;
    }
}

/*  */
.access .access_info_wrap p {
    margin-bottom: var(--gutter-40px);
}

.access .access_info_wrap dl {
    display: flex;
    max-width: 203px;
}

.access .access_map_img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    margin-bottom: var(--gutter-40px);
}

.access .button_mini {
    width: 100%;
    max-width: 203px;
}

@media screen and (min-width:729px) {
    .access .access_map_img {
        margin-bottom: 0;
        max-width: 646px;
    }

    .access_contents_flex {
        display: flex;
        gap: var(--gutter-60px);
    }
}

/* -----Contact----- */

.contact .contact_info_headline {
    margin-top: 40px;
    margin-bottom: var(--gutter-16px);
    /* フォント */
    font-family: var(--font-ryo-mincho);
    font-size: var(--size-16px);
    font-weight: 500;
}

@media screen and (min-width:729px) {
    .contact.section {
        padding-top: 120px;
    }

    .contact_contents_flex {
        display: flex;
        justify-content: space-between;
    }

    .contact .contact_info_wrap {
        max-width: 470px;
    }

    .contact .contact_info_headline {
        font-size: var(--size-18px);
    }

    .contact .button_mini {
        font-size: var(--size-18px);
    }
}