@charset "UTF-8";

/*-----------------------------------------------------*/
/* PC用 */
/*-----------------------------------------------------*/
@media only screen and (min-width: 1181px) {

    .container {
        width: 100%;
        background-color: #ffffff;
        color: black;
        padding-top: 3%;
        font-family: "Kiwi Maru", serif;
    }

    img {
        pointer-events: none;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-touch-callout: none;
        -moz-user-select: none;
        user-select: none;
        -webkit-touch-callout: none
    }

    .navi {
        display: none;
    }

    .header {
        width: 70%;
        display: flex;
        margin: 2% auto;
        align-items: center;
    }

    .header1 {
        width: 30%;
        text-align: center;
    }

    .header1 img {
        width: 20%;
    }

    .header2 {
        width: 70%;
    }

    .header2 ul {
        display: flex;
        list-style: none;
        justify-content: space-around;
        font-size: 22px;
        font-family: "EB Garamond", serif;
    }

    .header2 ul a {
        color: black;
        text-decoration: none;
    }

    .top {
        width: 100%;
        display: flex;
        align-items: center;
        margin-top: 100px;
    }

    .top1 {
        width: 45%;
        padding-left: 15%;
    }

    .top1 img {
        width: 80%;
    }

    .top2 {
        width: 55%;
        padding-left: 18%;
    }

    .top2 img {
        width: 100%;
    }

    .main {
        width: 100%;
        margin-top: 100px;
    }

    .main1 {
        width: 95%;
        display: flex;
        align-items: center;
        margin-right: 10%;
    }

    .main2 {
        width: 60%;
    }

    .main2 img {
        width: 90%;
    }

    .main3 {
        width: 40%;
        /* padding-left: 110px; */
        font-size: 18px;
        margin-left: 4%;
    }

    .main4 {
        width: 90%;
        display: flex;
        align-items: center;
        margin-top: 100px;
        margin-left: 10%;
    }

    .main5 {
        /* background-color: burlywood; */
        width: 40%;
        font-size: 18px;
    }

    .main6 {
        /* background-color: cadetblue; */
        width: 60%;
        text-align: center;
    }

    .main6 img {
        width: 70%;
    }

    .catalog {
        width: 100%;
        margin-top: 200px;
        margin-bottom: 200px;
    }

    .catalog1 {
        background-color: #fbdad4;
        width: 100%;
        padding-top: 25px;
        padding-bottom: 25px;
        padding-left: 100px;
        margin-bottom: 80px;
    }

    .catalog1 h2 {
        font-family: "EB Garamond", serif;
        font-size: 58px;
    }

    .catalog2 {
        width: 90%;
        margin: 0 auto;
    }

    .catalog2 ul {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0 3%;
        /* これで左右に均等な余白を追加 */
        justify-content: flex-start;
        /* これでアイテムを左揃えに */
    }

    .catalog2 li {
        width: 33%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        /* これで画像とテキストを縦方向に中央揃え */
        margin-bottom: 20px;
        padding: 10px;
    }

    .catalog2 img {
        width: 70%;
        height: auto;
    }

    .catalog2 p {
        color: black;
        font-size: 15px;
        padding-top: 0;
        padding-bottom: 10px;
        margin-top: 5px;
        text-align: center;
    }

    .buttom {
        width: 100%;
        display: flex;
        align-items: center;
        padding-left: 100px;
    }

    .buttom1 {
        width: 40%;
        font-size: 18px;
    }

    .buttom2 {
        width: 60%;
        text-align: right;
        padding-left: 30px;
    }

    .buttom2 img {
        width: 90%;
    }

    .info {
        width: 70%;
        height: 500px;
        margin: 200px auto;
        display: flex;
    }

    .info1 {
        width: 50%;
        padding-top: 10%;
        padding-left: 10%;
        padding-right: 10%;
    }

    .info1 h3 {
        color: black;
        font-size: 40px;
        font-weight: normal;
    }

    .info1 p {
        color: black;
        font-size: 20px;
        letter-spacing: 1.5px;
        padding-top: 3%;
    }

    .info2 {
        width: 50%;
    }

    .info2 iframe {
        width: 100%;
        height: 100%;
    }

    .footer {
        width: 100%;
        height: 300px;
        text-align: center;
        margin: 0 auto;
        padding-top: 150px;
    }

    .footer p {
        color: black;
        font-size: 16px;
    }

}



























/*-----------------------------------------------------*/
/* タブレット用のCSS */
/*-----------------------------------------------------*/
@media only screen and (min-width:600px) and (max-width:1180px) {

    .container {
        width: 100%;
        background-color: #ffffff;
        color: black;
        padding-top: 3%;
        font-family: "Kiwi Maru", serif;
    }

    img {
        pointer-events: none;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-touch-callout: none;
        -moz-user-select: none;
        user-select: none;
        -webkit-touch-callout: none
    }

    .navi {
        display: none;
    }

    .header {
        width: 90%;
        display: flex;
        margin: 2% auto;
        align-items: center;
    }

    .header1 {
        width: 30%;
        text-align: center;
    }

    .header1 img {
        width: 20%;
    }

    .header2 {
        width: 70%;
    }

    .header2 ul {
        display: flex;
        list-style: none;
        justify-content: space-around;
        font-size: 20px;
        font-family: "EB Garamond", serif;
    }

    .header2 ul a {
        color: black;
        text-decoration: none;
    }

    .top {
        width: 100%;
        display: flex;
        align-items: center;
        margin-top: 100px;
    }

    .top1 {
        width: 45%;
        padding-left: 15%;
    }

    .top1 img {
        width: 80%;
    }

    .top2 {
        width: 55%;
        padding-left: 18%;
    }

    .top2 img {
        width: 100%;
    }

    .main {
        width: 100%;
        margin-top: 100px;
    }

    .main1 {
        width: 95%;
        display: flex;
        align-items: center;
        margin-right: 10%;
    }

    .main2 {
        width: 60%;
    }

    .main2 img {
        width: 90%;
    }

    .main3 {
        width: 40%;
        font-size: 15px;
    }

    .main4 {
        width: 90%;
        display: flex;
        align-items: center;
        margin-top: 100px;
        margin-left: 10%;
    }

    .main5 {
        /* background-color: burlywood; */
        width: 40%;
        font-size: 15px;
    }

    .main6 {
        /* background-color: cadetblue; */
        width: 60%;
        text-align: center;
    }

    .main6 img {
        width: 70%;
    }

    .catalog {
        width: 100%;
        margin-top: 100px;
        margin-bottom: 100px;
    }

    .catalog1 {
        background-color: #fbdad4;
        width: 100%;
        padding-top: 25px;
        padding-bottom: 25px;
        padding-left: 100px;
        margin-bottom: 80px;
    }

    .catalog1 h2 {
        font-family: "EB Garamond", serif;
        font-size: 48px;
    }

    .catalog2 {
        width: 90%;
        margin: 0 auto;
    }

    .catalog2 ul {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0 3%;
        /* これで左右に均等な余白を追加 */
        justify-content: flex-start;
        /* これでアイテムを左揃えに */
    }

    .catalog2 li {
        width: 50%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        /* これで画像とテキストを縦方向に中央揃え */
        margin-bottom: 20px;
        padding: 10px;
    }

    .catalog2 img {
        width: 70%;
        height: auto;
    }

    .catalog2 p {
        color: black;
        font-size: 15px;
        padding-top: 0;
        padding-bottom: 10px;
        margin-top: 5px;
        text-align: center;
    }

    .buttom {
        width: 100%;
        display: flex;
        align-items: center;
        padding-left: 100px;
    }

    .buttom1 {
        width: 40%;
        font-size: 15px;
    }

    .buttom2 {
        width: 60%;
        text-align: right;
        padding-left: 30px;
    }

    .buttom2 img {
        width: 90%;
    }

    .info {
        width: 90%;
        margin: 200px auto 0px auto;
        text-align: center;
    }

    .info1 {
        width: 100%;
    }

    .info1 h3 {
        color: black;
        font-size: 40px;
        font-weight: normal;
    }

    .info1 p {
        color: black;
        font-size: 20px;
        letter-spacing: 1.5px;
        padding-top: 3%;
    }

    .info2 {
        width: 100%;
        margin-top: 50px;
    }

    .footer {
        width: 100%;
        height: 300px;
        text-align: center;
        margin: 0 auto;
        padding-top: 150px;
    }

    .footer p {
        color: black;
        font-size: 16px;
    }

}






























/*-----------------------------------------------------*/
/* スマホ用のCSS */
/*-----------------------------------------------------*/
@media only screen and (max-width: 599px) {

    .container {
        width: 100%;
        background-color: #ffffff;
        color: black;
        padding-top: 3%;
        font-family: "Kiwi Maru", serif;
    }

    img {
        pointer-events: none;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-touch-callout: none;
        -moz-user-select: none;
        user-select: none;
        -webkit-touch-callout: none
    }

    /* ↓5-1-16ナビゲーションコピペ----------------------------- */

    /*========= ナビゲーションのためのCSS ===============*/

    /*アクティブになったエリア*/
    #g-nav.panelactive {
        /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
        position: fixed;
        z-index: 999;
        top: 0;
        width: 100%;
        height: 100vh;
    }

    /*丸の拡大*/
    .circle-bg {
        position: fixed;
        z-index: 3;
        /*丸の形*/
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: #f87926;
        /*丸のスタート位置と形状*/
        transform: scale(0);
        /*scaleをはじめは0に*/
        top: -50px;
        left: calc(50% - 50px);
        /*50%から円の半径を引いた値*/
        transition: all .6s;
        /*0.6秒かけてアニメーション*/
    }

    .circle-bg.circleactive {
        transform: scale(50);
        /*クラスが付与されたらscaleを拡大*/
    }

    /*ナビゲーションの縦スクロール*/
    #g-nav-list {
        display: none;
        /*はじめは表示なし*/
        /*ナビの数が増えた場合縦スクロール*/
        position: fixed;
        z-index: 999;
        width: 100%;
        height: 100vh;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    #g-nav.panelactive #g-nav-list {
        display: block;
        /*クラスが付与されたら出現*/
    }

    /*ナビゲーション*/
    #g-nav ul {
        opacity: 0;
        /*はじめは透過0*/
        /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
        position: absolute;
        z-index: 999;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /*背景が出現後にナビゲーションを表示*/
    #g-nav.panelactive ul {
        opacity: 1;
    }

    /* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
    #g-nav.panelactive ul li {
        animation-name: gnaviAnime;
        animation-duration: 1s;
        animation-delay: .2s;
        /*0.2 秒遅らせて出現*/
        animation-fill-mode: forwards;
        opacity: 0;
    }

    @keyframes gnaviAnime {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }


    /*リストのレイアウト設定*/
    #g-nav li {
        text-align: center;
        list-style: none;
    }

    #g-nav li a {
        color: #ffffff;
        text-decoration: none;
        padding: 10px;
        display: block;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: bold;
    }


    /*========= ボタンのためのCSS ===============*/
    .openbtn {
        position: fixed;
        z-index: 9999;
        /*ボタンを最前面に*/
        top: 10px;
        right: 10px;
        cursor: pointer;
        width: 50px;
        height: 50px;
    }

    /*×に変化*/
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background-color: #666;
        width: 45%;
    }

    .openbtn span:nth-of-type(1) {
        top: 15px;
    }

    .openbtn span:nth-of-type(2) {
        top: 23px;
    }

    .openbtn span:nth-of-type(3) {
        top: 31px;
    }

    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }

    /* ↑5-1-16ナビゲーションコピペ----------------------------- */

    .header {
        width: 80%;
        display: flex;
        margin: 2% auto;
        align-items: center;
    }

    .header1 {
        width: 40%;
        text-align: center;
        margin: 10px auto 0 auto;
        display: none; 
    }

    .header1 img {
        width: 50%;
        display: none; 
    }

    .header2 {
        width: 70%;
        display: none; 
    }

    .header2 ul {
        display: flex;
        list-style: none;
        justify-content: space-around;
        font-size: 20px;
        font-family: "EB Garamond", serif;
        display: none; 
    }

    .header2 ul a {
        color: black;
        text-decoration: none;
        display: none; 
    }

    .top {
        width: 100%;
        display: flex;
        align-items: center;
        margin-top: 100px;
    }

    .top {
        content: url(../img/farbetop5.webp);
        width: 100%;
    }

    .top1 {
        width: 45%;
        padding-left: 15%;
        display: none; 
    }

    .top1 img {
        width: 80%;
        display: none; 
    }

    .top2 {
        width: 55%;
        padding-left: 18%;
        display: none; 
    }

    .top2 img {
        width: 100%;
        display: none; 
    }

    .main {
        width: 100%;
        margin-top: 100px;
    }

    .main1 {
        width: 100%;
    }

    .main2 {
        width: 90%;
    }

    .main2 img {
        width: 80%;
    }

    .main3 {
        width: 90%;
        font-size: 15px;
        margin-top: 30px;
        margin-left: 20px;
    }

    .main4 {
        width: 100%;
        align-items: center;
        margin-top: 30px;
        display: flex;
        flex-direction: column;  /* 子要素を縦に並べる */
    }

    .main5 {
        width: 90%;
        font-size: 15px;
        order: 2;  /* menu5を2番目に表示 */
        margin-top: 40px;
    }

    .main6 {
        width: 100%;
        order: 1;  /* menu6を1番目に表示 */
        display: block;  /* 表示する */
        padding-left: 90px;
    }

    .main6 img {
        width: 100%;
        display: block;  /* 表示する */
    }

    .main6 img {
        content: url(../img/farbetop6.webp);
    }

    .catalog {
        width: 100%;
        margin-top: 100px;
        margin-bottom: 80px;
    }

    .catalog1 {
        background-color: #fbdad4;
        width: 100%;
        padding-top: 25px;
        padding-bottom: 25px;
        padding-left: 30px;
        margin-bottom: 50px;
    }

    .catalog1 h2 {
        font-family: "EB Garamond", serif;
        font-size: 48px;
    }

    .catalog2 {
        width: 90%;
        margin: 0 auto;
    }

    .catalog2 ul {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        padding: 0 3%;
        /* これで左右に均等な余白を追加 */
        justify-content: flex-start;
        /* これでアイテムを左揃えに */
    }

    .catalog2 li {
        width: 50%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        /* これで画像とテキストを縦方向に中央揃え */
        margin-bottom: 20px;
        padding: 10px;
    }

    .catalog2 img {
        width: 70%;
        height: auto;
    }

    .catalog2 p {
        color: black;
        font-size: 15px;
        padding-top: 0;
        padding-bottom: 10px;
        margin-top: 5px;
        text-align: center;
    }

    .buttom {
        width: 100%;
    }

    .buttom1 {
        width: 90%;
        font-size: 15px;
        margin-left: 20px;
    }

    .buttom2 {
        width: 100%;
        margin-top: 40px;
        padding-left: 90px;
    }

    .buttom2 img {
        width: 100%;
    }

    .info {
        width: 80%;
        margin: 80px auto 0 auto;
        text-align: center;
    }

    .info1 {
        width: 100%;
    }

    .info1 h3 {
        color: black;
        font-size: 30px;
        font-weight: normal;
    }

    .info1 p {
        color: black;
        font-size: 14px;
        letter-spacing: 1.5px;
        padding-top: 3%;
        padding-bottom: 20px;
    }

    .info2 {
        width: 100%;
        margin-top: 10px;
    }

    .info iframe {
        width: 100%;  /* 幅を100%に設定 */
        height: 250px; /* 高さを調整（必要に応じて変更） */
        border: none;
    }

    .footer {
        width: 100%;
        height: 150px;
        text-align: center;
        margin: 0 auto;
        padding-top: 75px;
    }

    .footer p {
        color: black;
        font-size: 16px;
    }

}