@charset "utf-8";

@media screen and (min-width: 800px) {
    /*スクリーンサイズが800px以上の場合に適用*/


    /* header */
    #header {
        height: 10rem;
        white-space: nowrap;
    }

    .header__hamburger {
        display: none;
    }

    .header__menu-pc {
        display: block;
    }

    .header__menu-pc ul {
        display: flex;
        align-items: center;
    }

    .header__menu-pc ul li a {
        display: block;
        position: relative;
        font-size: 1.8rem;
        margin: 0 2rem;
    }

    .header__menu-pc ul li a::after {
        position: absolute;
        bottom: -4px;
        left: 0;
        content: '';
        width: 100%;
        height: 2px;
        background: #C1A912;
        bottom: -5px;
        opacity: 0;
    }

    .header__menu-pc ul li a:hover::after {
        opacity: 1;
        transition: 0.5s;
        transform: scale(0.5, 0.5);
    }

    .header__logo {
        display: flex;
        align-items: center;
    }

    .header__logo span {
        font-size: clamp(1rem, 3vw, 3rem);
    }

    .header__logo img {
        width: 8rem;
        padding-left: 3rem;
        padding-top: 0;
    }

    /* common */
    .c__subtitle {
        font-size: 3rem;
    }


    /* fv */
    #fv {
        height: 90vh;
    }

    .fv__picture {
        width: 100%;
        justify-content: space-around;
    }

    .fv__picture img {
        width: 85vh;
        height: auto;
        object-fit: cover;
        margin-left: 30%;
    }

    .fv__text {
        top: 45%;
        left: 20%;
    }

    .fv__text h2 {
        font-size: clamp(3rem, 25vw, 25vh);
    }

    .fv__text p {
        font-size: 2.3vh;
        margin-top: -4rem;
    }

    /* fv-2 */
    .fv-2 {
        height: 90vh;
    }

    .fv__picture-2 img {
        width: 60%;
        object-fit: scale-down;
        margin-right: 5vh;
    }

    .fv__picture-2-text {
        left: 5vh;
        width: 50%;
    }

    /* information */
    .information {
        width: 60%;
        margin: 6rem auto;
    }

    .information__posts {
        font-size: 2rem;
    }

    .information__post-title {
        font-size: 2vh;
        margin-top: 0;
        margin-left: 6rem;
    }

    .information__posts a {
        display: flex;
        align-items: center;
    }
    .information__post-date {
        font-size: 2vh;
    }


    /* items */
    .items__kind {
        font-size: clamp(1rem, 2vw, 2rem);
        color: #000;
        line-height: 2rem;
        padding-top: 3rem;
        padding-bottom: 5rem;
    }

    .items__list {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        /* 画像間の間隔 */
        list-style: none;
        margin: auto;
        padding: 1rem;
        background-color: #38761D;
    }

    .items__list-item {
        margin: 0;
    }

    .items__list-item-name {
        position: absolute;
        top: 6%;
        transform: translate(-50%, -50%);
        display: flex;
        width: fit-content;
        height: 7%;
        background-color: rgba(0, 0, 0, 0.1);
        color: rgb(0, 0, 0);
        font-size: clamp(0.1rem, 1.5vw, 1.5rem);
        padding: 0 10px;
        white-space: nowrap;
    }

    /* contact */
    .contact__container {
        width: 33%;
        margin: 2rem auto;
        padding: 7rem;
    }

    .tel-link {
        white-space: nowrap;
        font-size: clamp(3rem, 4.5vw, 7rem);
        /* (最小値, 基準値, 最大値); */
    }

    .contact__container p {
        font-size: clamp(1.5rem, 1.5vw, 4vh);
        white-space: nowrap;
        padding-top: 3rem;
    }

    /* access */
    .access {
        display: flex;
        justify-content: center;
        margin: 2rem auto;
    }

    .access__address {
        width: 25%;
        font-size: 2rem;
        padding: 5rem 0;
        margin: 0;
    }

    .map {
        width: 50%;
        height: 35rem;
        margin: 0;
    }

    /*投稿ページ */
    .single_inner {
        width: 70%;
    }

    /* 投稿一覧ページ */
    .information__inner {
        width: 60%;
        margin: 4rem auto;
    }

}