@charset "UTF-8";

/* font-family: 'Montserrat', sans-serif; */
/* font-family: 'Zen Kaku Gothic New', sans-serif; */
/* font-family: 'Shippori Mincho', serif; */

/*PCサイズレスポンシブ*/
@media(min-width:1000px) {

    /* PCcss */

    body {
        min-width: 1000px;
        background-color: #f6f3ee;
    }

    .spheader {
        display: none;
    }

    .container {
        width: 100%;
    }

    html {
        scroll-behavior: smooth;
    }

    ul {
        list-style: none;
    }

    a {
        text-decoration: none;
        color: #000000;
    }

    .menu {
        width: 100%;
        height: 120px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: rgba(255, 255, 255, 0.35);
        font-size: 20px;
        transition: 1.3s;
        z-index: 1000;
    }

    .menu1 {
        width: 35%;
        margin-left: 10%;
    }

    .menu1 ul {
        font-family: 'Montserrat', sans-serif;
        display: flex;
        justify-content: space-around;
    }

    .menu2 {
        width: 10%;
    }

    .menu2 img {
        width: 100%;
    }

    .menu3 {
        width: 35%;
        margin-right: 10%;
    }

    .menu3 ul {
        font-family: 'Montserrat', sans-serif;
        display: flex;
        justify-content: space-around;
    }

    /* ホバーでアンダーライン */
    /* https://hakenblog.com/css-hover-underline-animation/ */
    .menu1 a {
        position: relative;
        /*アンダーラインの位置を決めるための基準 */
    }

    .menu1 a::after {
        position: absolute;
        /*親要素であるaタグを基準に位置を指定*/
        left: 0;
        /*アンダーラインを各メニュー（aタグ）の左端に指定*/
        content: '';
        /*本来は、擬似要素に入るテキストなどを’’内に指定。今回はアンダーラインなので何も記載しない*/
        width: 100%;
        /*アンダーラインを各aタグの幅に合わせる*/
        height: 1px;
        /*アンダーラインの高さ（太さ）*/
        background: #000000;
        /*アンダーラインの色*/
    }

    .menu1 a::after {
        position: absolute;
        left: 0;
        content: '';
        width: 100%;
        height: 2px;
        background: #000000;
        bottom: -1px;
        /*アンダーラインがaタグの下端から現れる*/
        transform: scale(0, 1);
        /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
        transform-origin: left top;
        /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
        transition: transform 0.4s;
        /*変形の時間*/
    }

    .menu1 a:hover::after {
        transform: scale(1, 1);
        /*ホバー後、x軸方向に1（相対値）伸長*/
    }

    .menu3 a {
        position: relative;
        /*アンダーラインの位置を決めるための基準 */
    }

    .menu3 a::after {
        position: absolute;
        /*親要素であるaタグを基準に位置を指定*/
        left: 0;
        /*アンダーラインを各メニュー（aタグ）の左端に指定*/
        content: '';
        /*本来は、擬似要素に入るテキストなどを’’内に指定。今回はアンダーラインなので何も記載しない*/
        width: 100%;
        /*アンダーラインを各aタグの幅に合わせる*/
        height: 1px;
        /*アンダーラインの高さ（太さ）*/
        background: #000000;
        /*アンダーラインの色*/
    }

    .menu3 a::after {
        position: absolute;
        left: 0;
        content: '';
        width: 100%;
        height: 2px;
        background: #000000;
        bottom: -1px;
        /*アンダーラインがaタグの下端から現れる*/
        transform: scale(0, 1);
        /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
        transform-origin: left top;
        /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
        transition: transform 0.4s;
        /*変形の時間*/
    }

    .menu3 a:hover::after {
        transform: scale(1, 1);
        /*ホバー後、x軸方向に1（相対値）伸長*/
    }

    /*==================================================
スライダーのためのcss
===================================*/
    /*画像の横幅を100%にしてレスポンシブ化*/

    img {
        width: 100%;
        height: auto;
        vertical-align: bottom;
        /*画像の下にできる余白を削除*/
    }

    /*==================================================
line1の横並び
===================================*/
    .line1 {
        display: flex;
        margin-top: 50px;
    }

    /*==================================================
wrapper1
===================================*/
    .wrapper1 {
        width: 30%;
        margin: 0 auto;
    }

    .wrapper1 h1 {
        font-family: 'Montserrat', sans-serif;
        margin: 5px 0 5px 0;
        font-weight: 500;
    }

    /*メイン画像下に余白をつける*/

    .gallery1 {
        margin: 0 0 5px 0;
    }

    .gallery1 li {
        list-style: none;
    }

    /*矢印の設定*/

    /*戻る、次へ矢印の位置*/
    .slick-prev,
    .slick-next {
        position: absolute;
        /*絶対配置にする*/
        z-index: 3;
        top: 42%;
        cursor: pointer;
        /*マウスカーソルを指マークに*/
        outline: none;
        /*クリックをしたら出てくる枠線を消す*/
        border-top: 2px solid #ccc;
        /*矢印の色*/
        border-right: 2px solid #ccc;
        /*矢印の色*/
        height: 25px;
        width: 25px;
    }

    .slick-prev {
        /*戻る矢印の位置と形状*/
        left: 2.5%;
        transform: rotate(-135deg);
    }

    .slick-next {
        /*次へ矢印の位置と形状*/
        right: 2.5%;
        transform: rotate(45deg);
    }

    /*選択するサムネイル画像の設定*/

    .choice-btn1 li {
        cursor: pointer;
        outline: none;
        background: #f6f3ee;
        width: 25% !important;
        list-style: none;
    }

    .choice-btn1 li img {
        opacity: 0.4;
        /*選択されていないものは透過40%*/
    }

    .choice-btn1 li.slick-current img {
        opacity: 1;
        /*選択されているものは透過しない*/
    }

    .choice-btn1 .slick-track {
        transform: unset !important;
        /*画面幅サイズ変更に伴うサムネイル固定*/
    }


    /*==================================================
wrapper2
===================================*/

    .wrapper2 {
        width: 30%;
        margin: 0 auto;
    }

    .wrapper2 h1 {
        font-family: 'Montserrat', sans-serif;
        margin: 5px 0 5px 0;
        font-weight: 500;
    }

    /*メイン画像下に余白をつける*/

    .gallery2 {
        margin: 0 0 5px 0;
    }

    .gallery2 li {
        list-style: none;
    }

    /*矢印の設定*/

    /*戻る、次へ矢印の位置*/
    .slick-prev,
    .slick-next {
        position: absolute;
        /*絶対配置にする*/
        z-index: 3;
        top: 42%;
        cursor: pointer;
        /*マウスカーソルを指マークに*/
        outline: none;
        /*クリックをしたら出てくる枠線を消す*/
        border-top: 2px solid #ccc;
        /*矢印の色*/
        border-right: 2px solid #ccc;
        /*矢印の色*/
        height: 25px;
        width: 25px;
    }

    .slick-prev {
        /*戻る矢印の位置と形状*/
        left: 2.5%;
        transform: rotate(-135deg);
    }

    .slick-next {
        /*次へ矢印の位置と形状*/
        right: 2.5%;
        transform: rotate(45deg);
    }

    /*選択するサムネイル画像の設定*/

    .choice-btn2 li {
        cursor: pointer;
        outline: none;
        background: #f6f3ee;
        width: 25% !important;
        list-style: none;
    }

    .choice-btn2 li img {
        opacity: 0.4;
        /*選択されていないものは透過40%*/
    }

    .choice-btn2 li.slick-current img {
        opacity: 1;
        /*選択されているものは透過しない*/
    }

    .choice-btn2 .slick-track {
        transform: unset !important;
        /*画面幅サイズ変更に伴うサムネイル固定*/
    }

    /*==================================================
wrapper3
===================================*/
    .wrapper3 {
        width: 30%;
        margin: 0 auto;
    }

    .wrapper3 h1 {
        font-family: 'Montserrat', sans-serif;
        margin: 5px 0 5px 0;
        font-weight: 500;
    }

    /*メイン画像下に余白をつける*/

    .gallery3 {
        margin: 0 0 5px 0;
    }

    .gallery3 li {
        list-style: none;
    }

    /*矢印の設定*/

    /*戻る、次へ矢印の位置*/
    .slick-prev,
    .slick-next {
        position: absolute;
        /*絶対配置にする*/
        z-index: 3;
        top: 42%;
        cursor: pointer;
        /*マウスカーソルを指マークに*/
        outline: none;
        /*クリックをしたら出てくる枠線を消す*/
        border-top: 2px solid #ccc;
        /*矢印の色*/
        border-right: 2px solid #ccc;
        /*矢印の色*/
        height: 25px;
        width: 25px;
    }

    .slick-prev {
        /*戻る矢印の位置と形状*/
        left: 2.5%;
        transform: rotate(-135deg);
    }

    .slick-next {
        /*次へ矢印の位置と形状*/
        right: 2.5%;
        transform: rotate(45deg);
    }

    /*選択するサムネイル画像の設定*/

    .choice-btn3 li {
        cursor: pointer;
        outline: none;
        background: #f6f3ee;
        width: 25% !important;
        list-style: none;
    }

    .choice-btn3 li img {
        opacity: 0.4;
        /*選択されていないものは透過40%*/
    }

    .choice-btn3 li.slick-current img {
        opacity: 1;
        /*選択されているものは透過しない*/
    }

    .choice-btn3 .slick-track {
        transform: unset !important;
        /*画面幅サイズ変更に伴うサムネイル固定*/
    }

    /*==================================================
line2の横並び
===================================*/
    .line2 {
        display: flex;
        margin-top: 50px;
        margin-bottom: 100px;
    }

    /*==================================================
wrapper4
===================================*/
    .wrapper4 {
        width: 30%;
        margin: 0 auto;
    }

    .wrapper4 h1 {
        font-family: 'Montserrat', sans-serif;
        margin: 5px 0 5px 0;
        font-weight: 500;
    }

    /*メイン画像下に余白をつける*/

    .gallery4 {
        margin: 0 0 5px 0;
    }

    .gallery4 li {
        list-style: none;
    }

    /*矢印の設定*/

    /*戻る、次へ矢印の位置*/
    .slick-prev,
    .slick-next {
        position: absolute;
        /*絶対配置にする*/
        z-index: 3;
        top: 42%;
        cursor: pointer;
        /*マウスカーソルを指マークに*/
        outline: none;
        /*クリックをしたら出てくる枠線を消す*/
        border-top: 2px solid #ccc;
        /*矢印の色*/
        border-right: 2px solid #ccc;
        /*矢印の色*/
        height: 25px;
        width: 25px;
    }

    .slick-prev {
        /*戻る矢印の位置と形状*/
        left: 2.5%;
        transform: rotate(-135deg);
    }

    .slick-next {
        /*次へ矢印の位置と形状*/
        right: 2.5%;
        transform: rotate(45deg);
    }

    /*選択するサムネイル画像の設定*/

    .choice-btn4 li {
        cursor: pointer;
        outline: none;
        background: #f6f3ee;
        width: 25% !important;
        list-style: none;
    }

    .choice-btn4 li img {
        opacity: 0.4;
        /*選択されていないものは透過40%*/
    }

    .choice-btn4 li.slick-current img {
        opacity: 1;
        /*選択されているものは透過しない*/
    }

    .choice-btn5 .slick-track {
        transform: unset !important;
        /*画面幅サイズ変更に伴うサムネイル固定*/
    }


    /*==================================================
wrapper5
===================================*/
    .wrapper5 {
        width: 30%;
        margin: 0 auto;
    }

    .wrapper5 h1 {
        font-family: 'Montserrat', sans-serif;
        margin: 5px 0 5px 0;
        font-weight: 500;
    }

    /*メイン画像下に余白をつける*/

    .gallery5 {
        margin: 0 0 5px 0;
    }

    .gallery5 li {
        list-style: none;
    }

    /*矢印の設定*/

    /*戻る、次へ矢印の位置*/
    .slick-prev,
    .slick-next {
        position: absolute;
        /*絶対配置にする*/
        z-index: 3;
        top: 42%;
        cursor: pointer;
        /*マウスカーソルを指マークに*/
        outline: none;
        /*クリックをしたら出てくる枠線を消す*/
        border-top: 2px solid #ccc;
        /*矢印の色*/
        border-right: 2px solid #ccc;
        /*矢印の色*/
        height: 25px;
        width: 25px;
    }

    .slick-prev {
        /*戻る矢印の位置と形状*/
        left: 2.5%;
        transform: rotate(-135deg);
    }

    .slick-next {
        /*次へ矢印の位置と形状*/
        right: 2.5%;
        transform: rotate(45deg);
    }

    /*選択するサムネイル画像の設定*/

    .choice-btn5 li {
        cursor: pointer;
        outline: none;
        background: #f6f3ee;
        width: 25% !important;
        list-style: none;
    }

    .choice-btn5 li img {
        opacity: 0.4;
        /*選択されていないものは透過40%*/
    }

    .choice-btn5 li.slick-current img {
        opacity: 1;
        /*選択されているものは透過しない*/
    }

    .choice-btn5 .slick-track {
        transform: unset !important;
        /*画面幅サイズ変更に伴うサムネイル固定*/
    }

    /*==================================================
wrapper6
===================================*/
    .wrapper6 {
        width: 30%;
        margin: 0 auto;
    }

    .wrapper6 h1 {
        font-family: 'Montserrat', sans-serif;
        margin: 5px 0 5px 0;
        font-weight: 500;
    }

    /*メイン画像下に余白をつける*/

    .gallery6 {
        margin: 0 0 5px 0;
    }

    .gallery6 li {
        list-style: none;
    }

    /*矢印の設定*/

    /*戻る、次へ矢印の位置*/
    .slick-prev,
    .slick-next {
        position: absolute;
        /*絶対配置にする*/
        z-index: 3;
        top: 42%;
        cursor: pointer;
        /*マウスカーソルを指マークに*/
        outline: none;
        /*クリックをしたら出てくる枠線を消す*/
        border-top: 2px solid #ccc;
        /*矢印の色*/
        border-right: 2px solid #ccc;
        /*矢印の色*/
        height: 25px;
        width: 25px;
    }

    .slick-prev {
        /*戻る矢印の位置と形状*/
        left: 2.5%;
        transform: rotate(-135deg);
    }

    .slick-next {
        /*次へ矢印の位置と形状*/
        right: 2.5%;
        transform: rotate(45deg);
    }

    /*選択するサムネイル画像の設定*/

    .choice-btn6 li {
        cursor: pointer;
        outline: none;
        background: #f6f3ee;
        width: 25% !important;
        list-style: none;
    }

    .choice-btn6 li img {
        opacity: 0.4;
        /*選択されていないものは透過40%*/
    }

    .choice-btn6 li.slick-current img {
        opacity: 1;
        /*選択されているものは透過しない*/
    }

    .choice-btn6 .slick-track {
        transform: unset !important;
        /*画面幅サイズ変更に伴うサムネイル固定*/
    }

}


/*ipadサイズレスポンシブ*/
@media(min-width:600px) and (max-width:999px) {

    /* PCcss */

    body {
        min-width: 600px;
        max-width: 999px;
        background-color: #f6f3ee;
    }

    .spheader {
        display: none;
    }

    .container {
        width: 100%;
    }

    html {
        scroll-behavior: smooth;
    }

    ul {
        list-style: none;
    }

    a {
        text-decoration: none;
        color: #000000;
    }

    .menu {
        width: 100%;
        height: 120px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: rgba(255, 255, 255, 0.35);
        font-size: 20px;
        transition: 1.3s;
        z-index: 1000;
    }

    .menu1 {
        width: 35%;
        margin-left: 10%;
    }

    .menu1 ul {
        font-family: 'Montserrat', sans-serif;
        display: flex;
        justify-content: space-around;
    }

    .menu2 {
        width: 10%;
    }

    .menu2 img {
        width: 100%;
    }

    .menu3 {
        width: 35%;
        margin-right: 10%;
    }

    .menu3 ul {
        font-family: 'Montserrat', sans-serif;
        display: flex;
        justify-content: space-around;
    }

    /* ホバーでアンダーライン */
    /* https://hakenblog.com/css-hover-underline-animation/ */
    .menu1 a {
        position: relative;
        /*アンダーラインの位置を決めるための基準 */
    }

    .menu1 a::after {
        position: absolute;
        /*親要素であるaタグを基準に位置を指定*/
        left: 0;
        /*アンダーラインを各メニュー（aタグ）の左端に指定*/
        content: '';
        /*本来は、擬似要素に入るテキストなどを’’内に指定。今回はアンダーラインなので何も記載しない*/
        width: 100%;
        /*アンダーラインを各aタグの幅に合わせる*/
        height: 1px;
        /*アンダーラインの高さ（太さ）*/
        background: #000000;
        /*アンダーラインの色*/
    }

    .menu1 a::after {
        position: absolute;
        left: 0;
        content: '';
        width: 100%;
        height: 2px;
        background: #000000;
        bottom: -1px;
        /*アンダーラインがaタグの下端から現れる*/
        transform: scale(0, 1);
        /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
        transform-origin: left top;
        /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
        transition: transform 0.4s;
        /*変形の時間*/
    }

    .menu1 a:hover::after {
        transform: scale(1, 1);
        /*ホバー後、x軸方向に1（相対値）伸長*/
    }

    .menu3 a {
        position: relative;
        /*アンダーラインの位置を決めるための基準 */
    }

    .menu3 a::after {
        position: absolute;
        /*親要素であるaタグを基準に位置を指定*/
        left: 0;
        /*アンダーラインを各メニュー（aタグ）の左端に指定*/
        content: '';
        /*本来は、擬似要素に入るテキストなどを’’内に指定。今回はアンダーラインなので何も記載しない*/
        width: 100%;
        /*アンダーラインを各aタグの幅に合わせる*/
        height: 1px;
        /*アンダーラインの高さ（太さ）*/
        background: #000000;
        /*アンダーラインの色*/
    }

    .menu3 a::after {
        position: absolute;
        left: 0;
        content: '';
        width: 100%;
        height: 2px;
        background: #000000;
        bottom: -1px;
        /*アンダーラインがaタグの下端から現れる*/
        transform: scale(0, 1);
        /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
        transform-origin: left top;
        /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
        transition: transform 0.4s;
        /*変形の時間*/
    }

    .menu3 a:hover::after {
        transform: scale(1, 1);
        /*ホバー後、x軸方向に1（相対値）伸長*/
    }

    /*==================================================
    スライダーのためのcss
    ===================================*/
    /*画像の横幅を100%にしてレスポンシブ化*/

    img {
        width: 100%;
        height: auto;
        vertical-align: bottom;
        /*画像の下にできる余白を削除*/
    }

    /*==================================================
    line1の横並び
    ===================================*/
    .line1 {
        display: flex;
        margin-top: 50px;
    }

    /*==================================================
    wrapper1
    ===================================*/
    .wrapper1 {
        width: 30%;
        margin: 0 auto;
    }

    .wrapper1 h1 {
        font-family: 'Montserrat', sans-serif;
        margin: 5px 0 5px 0;
        font-weight: 500;
    }

    /*メイン画像下に余白をつける*/

    .gallery1 {
        margin: 0 0 5px 0;
    }

    .gallery1 li {
        list-style: none;
    }

    /*矢印の設定*/

    /*戻る、次へ矢印の位置*/
    .slick-prev,
    .slick-next {
        position: absolute;
        /*絶対配置にする*/
        z-index: 3;
        top: 42%;
        cursor: pointer;
        /*マウスカーソルを指マークに*/
        outline: none;
        /*クリックをしたら出てくる枠線を消す*/
        border-top: 2px solid #ccc;
        /*矢印の色*/
        border-right: 2px solid #ccc;
        /*矢印の色*/
        height: 25px;
        width: 25px;
    }

    .slick-prev {
        /*戻る矢印の位置と形状*/
        left: 2.5%;
        transform: rotate(-135deg);
    }

    .slick-next {
        /*次へ矢印の位置と形状*/
        right: 2.5%;
        transform: rotate(45deg);
    }

    /*選択するサムネイル画像の設定*/

    .choice-btn1 li {
        cursor: pointer;
        outline: none;
        background: #f6f3ee;
        width: 25% !important;
        list-style: none;
    }

    .choice-btn1 li img {
        opacity: 0.4;
        /*選択されていないものは透過40%*/
    }

    .choice-btn1 li.slick-current img {
        opacity: 1;
        /*選択されているものは透過しない*/
    }

    .choice-btn1 .slick-track {
        transform: unset !important;
        /*画面幅サイズ変更に伴うサムネイル固定*/
    }


    /*==================================================
    wrapper2
    ===================================*/

    .wrapper2 {
        width: 30%;
        margin: 0 auto;
    }

    .wrapper2 h1 {
        font-family: 'Montserrat', sans-serif;
        margin: 5px 0 5px 0;
        font-weight: 500;
    }

    /*メイン画像下に余白をつける*/

    .gallery2 {
        margin: 0 0 5px 0;
    }

    .gallery2 li {
        list-style: none;
    }

    /*矢印の設定*/

    /*戻る、次へ矢印の位置*/
    .slick-prev,
    .slick-next {
        position: absolute;
        /*絶対配置にする*/
        z-index: 3;
        top: 42%;
        cursor: pointer;
        /*マウスカーソルを指マークに*/
        outline: none;
        /*クリックをしたら出てくる枠線を消す*/
        border-top: 2px solid #ccc;
        /*矢印の色*/
        border-right: 2px solid #ccc;
        /*矢印の色*/
        height: 25px;
        width: 25px;
    }

    .slick-prev {
        /*戻る矢印の位置と形状*/
        left: 2.5%;
        transform: rotate(-135deg);
    }

    .slick-next {
        /*次へ矢印の位置と形状*/
        right: 2.5%;
        transform: rotate(45deg);
    }

    /*選択するサムネイル画像の設定*/

    .choice-btn2 li {
        cursor: pointer;
        outline: none;
        background: #f6f3ee;
        width: 25% !important;
        list-style: none;
    }

    .choice-btn2 li img {
        opacity: 0.4;
        /*選択されていないものは透過40%*/
    }

    .choice-btn2 li.slick-current img {
        opacity: 1;
        /*選択されているものは透過しない*/
    }

    .choice-btn2 .slick-track {
        transform: unset !important;
        /*画面幅サイズ変更に伴うサムネイル固定*/
    }

    /*==================================================
    wrapper3
    ===================================*/
    .wrapper3 {
        width: 30%;
        margin: 0 auto;
    }

    .wrapper3 h1 {
        font-family: 'Montserrat', sans-serif;
        margin: 5px 0 5px 0;
        font-weight: 500;
    }

    /*メイン画像下に余白をつける*/

    .gallery3 {
        margin: 0 0 5px 0;
    }

    .gallery3 li {
        list-style: none;
    }

    /*矢印の設定*/

    /*戻る、次へ矢印の位置*/
    .slick-prev,
    .slick-next {
        position: absolute;
        /*絶対配置にする*/
        z-index: 3;
        top: 42%;
        cursor: pointer;
        /*マウスカーソルを指マークに*/
        outline: none;
        /*クリックをしたら出てくる枠線を消す*/
        border-top: 2px solid #ccc;
        /*矢印の色*/
        border-right: 2px solid #ccc;
        /*矢印の色*/
        height: 25px;
        width: 25px;
    }

    .slick-prev {
        /*戻る矢印の位置と形状*/
        left: 2.5%;
        transform: rotate(-135deg);
    }

    .slick-next {
        /*次へ矢印の位置と形状*/
        right: 2.5%;
        transform: rotate(45deg);
    }

    /*選択するサムネイル画像の設定*/

    .choice-btn3 li {
        cursor: pointer;
        outline: none;
        background: #f6f3ee;
        width: 25% !important;
        list-style: none;
    }

    .choice-btn3 li img {
        opacity: 0.4;
        /*選択されていないものは透過40%*/
    }

    .choice-btn3 li.slick-current img {
        opacity: 1;
        /*選択されているものは透過しない*/
    }

    .choice-btn3 .slick-track {
        transform: unset !important;
        /*画面幅サイズ変更に伴うサムネイル固定*/
    }

    /*==================================================
    line2の横並び
    ===================================*/
    .line2 {
        display: flex;
        margin-top: 50px;
        margin-bottom: 100px;
    }

    /*==================================================
    wrapper4
    ===================================*/
    .wrapper4 {
        width: 30%;
        margin: 0 auto;
    }

    .wrapper4 h1 {
        font-family: 'Montserrat', sans-serif;
        margin: 5px 0 5px 0;
        font-weight: 500;
    }

    /*メイン画像下に余白をつける*/

    .gallery4 {
        margin: 0 0 5px 0;
    }

    .gallery4 li {
        list-style: none;
    }

    /*矢印の設定*/

    /*戻る、次へ矢印の位置*/
    .slick-prev,
    .slick-next {
        position: absolute;
        /*絶対配置にする*/
        z-index: 3;
        top: 42%;
        cursor: pointer;
        /*マウスカーソルを指マークに*/
        outline: none;
        /*クリックをしたら出てくる枠線を消す*/
        border-top: 2px solid #ccc;
        /*矢印の色*/
        border-right: 2px solid #ccc;
        /*矢印の色*/
        height: 25px;
        width: 25px;
    }

    .slick-prev {
        /*戻る矢印の位置と形状*/
        left: 2.5%;
        transform: rotate(-135deg);
    }

    .slick-next {
        /*次へ矢印の位置と形状*/
        right: 2.5%;
        transform: rotate(45deg);
    }

    /*選択するサムネイル画像の設定*/

    .choice-btn4 li {
        cursor: pointer;
        outline: none;
        background: #f6f3ee;
        width: 25% !important;
        list-style: none;
    }

    .choice-btn4 li img {
        opacity: 0.4;
        /*選択されていないものは透過40%*/
    }

    .choice-btn4 li.slick-current img {
        opacity: 1;
        /*選択されているものは透過しない*/
    }

    .choice-btn5 .slick-track {
        transform: unset !important;
        /*画面幅サイズ変更に伴うサムネイル固定*/
    }


    /*==================================================
    wrapper5
    ===================================*/
    .wrapper5 {
        width: 30%;
        margin: 0 auto;
    }

    .wrapper5 h1 {
        font-family: 'Montserrat', sans-serif;
        margin: 5px 0 5px 0;
        font-weight: 500;
    }

    /*メイン画像下に余白をつける*/

    .gallery5 {
        margin: 0 0 5px 0;
    }

    .gallery5 li {
        list-style: none;
    }

    /*矢印の設定*/

    /*戻る、次へ矢印の位置*/
    .slick-prev,
    .slick-next {
        position: absolute;
        /*絶対配置にする*/
        z-index: 3;
        top: 42%;
        cursor: pointer;
        /*マウスカーソルを指マークに*/
        outline: none;
        /*クリックをしたら出てくる枠線を消す*/
        border-top: 2px solid #ccc;
        /*矢印の色*/
        border-right: 2px solid #ccc;
        /*矢印の色*/
        height: 25px;
        width: 25px;
    }

    .slick-prev {
        /*戻る矢印の位置と形状*/
        left: 2.5%;
        transform: rotate(-135deg);
    }

    .slick-next {
        /*次へ矢印の位置と形状*/
        right: 2.5%;
        transform: rotate(45deg);
    }

    /*選択するサムネイル画像の設定*/

    .choice-btn5 li {
        cursor: pointer;
        outline: none;
        background: #f6f3ee;
        width: 25% !important;
        list-style: none;
    }

    .choice-btn5 li img {
        opacity: 0.4;
        /*選択されていないものは透過40%*/
    }

    .choice-btn5 li.slick-current img {
        opacity: 1;
        /*選択されているものは透過しない*/
    }

    .choice-btn5 .slick-track {
        transform: unset !important;
        /*画面幅サイズ変更に伴うサムネイル固定*/
    }

    /*==================================================
    wrapper6
    ===================================*/
    .wrapper6 {
        width: 30%;
        margin: 0 auto;
    }

    .wrapper6 h1 {
        font-family: 'Montserrat', sans-serif;
        margin: 5px 0 5px 0;
        font-weight: 500;
    }

    /*メイン画像下に余白をつける*/

    .gallery6 {
        margin: 0 0 5px 0;
    }

    .gallery6 li {
        list-style: none;
    }

    /*矢印の設定*/

    /*戻る、次へ矢印の位置*/
    .slick-prev,
    .slick-next {
        position: absolute;
        /*絶対配置にする*/
        z-index: 3;
        top: 42%;
        cursor: pointer;
        /*マウスカーソルを指マークに*/
        outline: none;
        /*クリックをしたら出てくる枠線を消す*/
        border-top: 2px solid #ccc;
        /*矢印の色*/
        border-right: 2px solid #ccc;
        /*矢印の色*/
        height: 25px;
        width: 25px;
    }

    .slick-prev {
        /*戻る矢印の位置と形状*/
        left: 2.5%;
        transform: rotate(-135deg);
    }

    .slick-next {
        /*次へ矢印の位置と形状*/
        right: 2.5%;
        transform: rotate(45deg);
    }

    /*選択するサムネイル画像の設定*/

    .choice-btn6 li {
        cursor: pointer;
        outline: none;
        background: #f6f3ee;
        width: 25% !important;
        list-style: none;
    }

    .choice-btn6 li img {
        opacity: 0.4;
        /*選択されていないものは透過40%*/
    }

    .choice-btn6 li.slick-current img {
        opacity: 1;
        /*選択されているものは透過しない*/
    }

    .choice-btn6 .slick-track {
        transform: unset !important;
        /*画面幅サイズ変更に伴うサムネイル固定*/
    }
}



/*SPサイズレスポンシブ*/
@media(max-width:599px) {

    /* タブレットcss */

    body {
        max-width: 599px;
        background-color: #f6f3ee;
    }

    .header {
        display: none;
    }

    .container {
        width: 100%;
    }

    html {
        scroll-behavior: smooth;
    }

    ul {
        list-style: none;
    }

    a {
        text-decoration: none;
        color: #000000;
    }

    .spheader {
        width: 100%;
        background-size: 100%;
        background-repeat: none;
    }

    .spmenu {
        width: 100%;
        height: 60px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: rgba(255, 255, 255, 0.8);
        font-size: 12px;
        transition: 1.3s;
        z-index: 1000;
    }

    .spmenu1 {
        width: 37%;
        margin-left: 2%;
    }

    .spmenu1 ul {
        font-family: 'Montserrat', sans-serif;
        display: flex;
        justify-content: space-between;
    }

    .spmenu2 {
        width: 22%;
        height: 60px;
    }

    .spmenu2 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .spmenu3 {
        width: 37%;
        margin-right: 2%;
    }

    .spmenu3 ul {
        font-family: 'Montserrat', sans-serif;
        display: flex;
        justify-content: space-between;
    }

    /* ホバーでアンダーライン */
    /* https://hakenblog.com/css-hover-underline-animation/ */
    .menu1 a {
        position: relative;
        /*アンダーラインの位置を決めるための基準 */
    }

    .menu1 a::after {
        position: absolute;
        /*親要素であるaタグを基準に位置を指定*/
        left: 0;
        /*アンダーラインを各メニュー（aタグ）の左端に指定*/
        content: '';
        /*本来は、擬似要素に入るテキストなどを’’内に指定。今回はアンダーラインなので何も記載しない*/
        width: 100%;
        /*アンダーラインを各aタグの幅に合わせる*/
        height: 1px;
        /*アンダーラインの高さ（太さ）*/
        background: #000000;
        /*アンダーラインの色*/
    }

    .menu1 a::after {
        position: absolute;
        left: 0;
        content: '';
        width: 100%;
        height: 2px;
        background: #000000;
        bottom: -1px;
        /*アンダーラインがaタグの下端から現れる*/
        transform: scale(0, 1);
        /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
        transform-origin: left top;
        /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
        transition: transform 0.4s;
        /*変形の時間*/
    }

    .menu1 a:hover::after {
        transform: scale(1, 1);
        /*ホバー後、x軸方向に1（相対値）伸長*/
    }

    .menu3 a {
        position: relative;
        /*アンダーラインの位置を決めるための基準 */
    }

    .menu3 a::after {
        position: absolute;
        /*親要素であるaタグを基準に位置を指定*/
        left: 0;
        /*アンダーラインを各メニュー（aタグ）の左端に指定*/
        content: '';
        /*本来は、擬似要素に入るテキストなどを’’内に指定。今回はアンダーラインなので何も記載しない*/
        width: 100%;
        /*アンダーラインを各aタグの幅に合わせる*/
        height: 1px;
        /*アンダーラインの高さ（太さ）*/
        background: #000000;
        /*アンダーラインの色*/
    }

    .menu3 a::after {
        position: absolute;
        left: 0;
        content: '';
        width: 100%;
        height: 2px;
        background: #000000;
        bottom: -1px;
        /*アンダーラインがaタグの下端から現れる*/
        transform: scale(0, 1);
        /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
        transform-origin: left top;
        /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
        transition: transform 0.4s;
        /*変形の時間*/
    }

    .menu3 a:hover::after {
        transform: scale(1, 1);
        /*ホバー後、x軸方向に1（相対値）伸長*/
    }

    /*==================================================
    スライダーのためのcss
    ===================================*/
    /*画像の横幅を100%にしてレスポンシブ化*/

    img {
        width: 100%;
        height: auto;
        vertical-align: bottom;
        /*画像の下にできる余白を削除*/
    }

    /*==================================================
    line1の横並び
    ===================================*/
    .line1 {
        margin-top: 50px;
    }

    /*==================================================
    wrapper1
    ===================================*/
    .wrapper1 {
        width: 80%;
        margin: 0 auto;
        margin-bottom: 50px;
    }

    .wrapper1 h1 {
        font-family: 'Montserrat', sans-serif;
        margin: 5px 0 5px 0;
        font-weight: 500;
    }

    /*メイン画像下に余白をつける*/

    .gallery1 {
        margin: 0 0 5px 0;
    }

    .gallery1 li {
        list-style: none;
    }

    /*矢印の設定*/

    /*戻る、次へ矢印の位置*/
    .slick-prev,
    .slick-next {
        position: absolute;
        /*絶対配置にする*/
        z-index: 3;
        top: 42%;
        cursor: pointer;
        /*マウスカーソルを指マークに*/
        outline: none;
        /*クリックをしたら出てくる枠線を消す*/
        border-top: 2px solid #ccc;
        /*矢印の色*/
        border-right: 2px solid #ccc;
        /*矢印の色*/
        height: 25px;
        width: 25px;
    }

    .slick-prev {
        /*戻る矢印の位置と形状*/
        left: 2.5%;
        transform: rotate(-135deg);
    }

    .slick-next {
        /*次へ矢印の位置と形状*/
        right: 2.5%;
        transform: rotate(45deg);
    }

    /*選択するサムネイル画像の設定*/

    .choice-btn1 li {
        cursor: pointer;
        outline: none;
        background: #f6f3ee;
        width: 25% !important;
        list-style: none;
    }

    .choice-btn1 li img {
        opacity: 0.4;
        /*選択されていないものは透過40%*/
    }

    .choice-btn1 li.slick-current img {
        opacity: 1;
        /*選択されているものは透過しない*/
    }

    .choice-btn1 .slick-track {
        transform: unset !important;
        /*画面幅サイズ変更に伴うサムネイル固定*/
    }


    /*==================================================
    wrapper2
    ===================================*/

    .wrapper2 {
        width: 80%;
        margin: 0 auto;
        margin-bottom: 50px;
    }

    .wrapper2 h1 {
        font-family: 'Montserrat', sans-serif;
        margin: 5px 0 5px 0;
        font-weight: 500;
    }

    /*メイン画像下に余白をつける*/

    .gallery2 {
        margin: 0 0 5px 0;
    }

    .gallery2 li {
        list-style: none;
    }

    /*矢印の設定*/

    /*戻る、次へ矢印の位置*/
    .slick-prev,
    .slick-next {
        position: absolute;
        /*絶対配置にする*/
        z-index: 3;
        top: 42%;
        cursor: pointer;
        /*マウスカーソルを指マークに*/
        outline: none;
        /*クリックをしたら出てくる枠線を消す*/
        border-top: 2px solid #ccc;
        /*矢印の色*/
        border-right: 2px solid #ccc;
        /*矢印の色*/
        height: 25px;
        width: 25px;
    }

    .slick-prev {
        /*戻る矢印の位置と形状*/
        left: 2.5%;
        transform: rotate(-135deg);
    }

    .slick-next {
        /*次へ矢印の位置と形状*/
        right: 2.5%;
        transform: rotate(45deg);
    }

    /*選択するサムネイル画像の設定*/

    .choice-btn2 li {
        cursor: pointer;
        outline: none;
        background: #f6f3ee;
        width: 25% !important;
        list-style: none;
    }

    .choice-btn2 li img {
        opacity: 0.4;
        /*選択されていないものは透過40%*/
    }

    .choice-btn2 li.slick-current img {
        opacity: 1;
        /*選択されているものは透過しない*/
    }

    .choice-btn2 .slick-track {
        transform: unset !important;
        /*画面幅サイズ変更に伴うサムネイル固定*/
    }

    /*==================================================
    wrapper3
    ===================================*/
    .wrapper3 {
        width: 80%;
        margin: 0 auto;
    }

    .wrapper3 h1 {
        font-family: 'Montserrat', sans-serif;
        margin: 5px 0 5px 0;
        font-weight: 500;
    }

    /*メイン画像下に余白をつける*/

    .gallery3 {
        margin: 0 0 5px 0;
    }

    .gallery3 li {
        list-style: none;
    }

    /*矢印の設定*/

    /*戻る、次へ矢印の位置*/
    .slick-prev,
    .slick-next {
        position: absolute;
        /*絶対配置にする*/
        z-index: 3;
        top: 42%;
        cursor: pointer;
        /*マウスカーソルを指マークに*/
        outline: none;
        /*クリックをしたら出てくる枠線を消す*/
        border-top: 2px solid #ccc;
        /*矢印の色*/
        border-right: 2px solid #ccc;
        /*矢印の色*/
        height: 25px;
        width: 25px;
    }

    .slick-prev {
        /*戻る矢印の位置と形状*/
        left: 2.5%;
        transform: rotate(-135deg);
    }

    .slick-next {
        /*次へ矢印の位置と形状*/
        right: 2.5%;
        transform: rotate(45deg);
    }

    /*選択するサムネイル画像の設定*/

    .choice-btn3 li {
        cursor: pointer;
        outline: none;
        background: #f6f3ee;
        width: 25% !important;
        list-style: none;
    }

    .choice-btn3 li img {
        opacity: 0.4;
        /*選択されていないものは透過40%*/
    }

    .choice-btn3 li.slick-current img {
        opacity: 1;
        /*選択されているものは透過しない*/
    }

    .choice-btn3 .slick-track {
        transform: unset !important;
        /*画面幅サイズ変更に伴うサムネイル固定*/
    }

    /*==================================================
    line2の横並び
    ===================================*/
    .line2 {
        margin-top: 50px;
        margin-bottom: 100px;
    }

    /*==================================================
    wrapper4
    ===================================*/
    .wrapper4 {
        width: 80%;
        margin: 0 auto;
        margin-bottom: 50px;
    }

    .wrapper4 h1 {
        font-family: 'Montserrat', sans-serif;
        margin: 5px 0 5px 0;
        font-weight: 500;
    }

    /*メイン画像下に余白をつける*/

    .gallery4 {
        margin: 0 0 5px 0;
    }

    .gallery4 li {
        list-style: none;
    }

    /*矢印の設定*/

    /*戻る、次へ矢印の位置*/
    .slick-prev,
    .slick-next {
        position: absolute;
        /*絶対配置にする*/
        z-index: 3;
        top: 42%;
        cursor: pointer;
        /*マウスカーソルを指マークに*/
        outline: none;
        /*クリックをしたら出てくる枠線を消す*/
        border-top: 2px solid #ccc;
        /*矢印の色*/
        border-right: 2px solid #ccc;
        /*矢印の色*/
        height: 25px;
        width: 25px;
    }

    .slick-prev {
        /*戻る矢印の位置と形状*/
        left: 2.5%;
        transform: rotate(-135deg);
    }

    .slick-next {
        /*次へ矢印の位置と形状*/
        right: 2.5%;
        transform: rotate(45deg);
    }

    /*選択するサムネイル画像の設定*/

    .choice-btn4 li {
        cursor: pointer;
        outline: none;
        background: #f6f3ee;
        width: 25% !important;
        list-style: none;
    }

    .choice-btn4 li img {
        opacity: 0.4;
        /*選択されていないものは透過40%*/
    }

    .choice-btn4 li.slick-current img {
        opacity: 1;
        /*選択されているものは透過しない*/
    }

    .choice-btn5 .slick-track {
        transform: unset !important;
        /*画面幅サイズ変更に伴うサムネイル固定*/
    }


    /*==================================================
    wrapper5
    ===================================*/
    .wrapper5 {
        width: 80%;
        margin: 0 auto;
        margin-bottom: 50px;
    }

    .wrapper5 h1 {
        font-family: 'Montserrat', sans-serif;
        margin: 5px 0 5px 0;
        font-weight: 500;
    }

    /*メイン画像下に余白をつける*/

    .gallery5 {
        margin: 0 0 5px 0;
    }

    .gallery5 li {
        list-style: none;
    }

    /*矢印の設定*/

    /*戻る、次へ矢印の位置*/
    .slick-prev,
    .slick-next {
        position: absolute;
        /*絶対配置にする*/
        z-index: 3;
        top: 42%;
        cursor: pointer;
        /*マウスカーソルを指マークに*/
        outline: none;
        /*クリックをしたら出てくる枠線を消す*/
        border-top: 2px solid #ccc;
        /*矢印の色*/
        border-right: 2px solid #ccc;
        /*矢印の色*/
        height: 25px;
        width: 25px;
    }

    .slick-prev {
        /*戻る矢印の位置と形状*/
        left: 2.5%;
        transform: rotate(-135deg);
    }

    .slick-next {
        /*次へ矢印の位置と形状*/
        right: 2.5%;
        transform: rotate(45deg);
    }

    /*選択するサムネイル画像の設定*/

    .choice-btn5 li {
        cursor: pointer;
        outline: none;
        background: #f6f3ee;
        width: 25% !important;
        list-style: none;
    }

    .choice-btn5 li img {
        opacity: 0.4;
        /*選択されていないものは透過40%*/
    }

    .choice-btn5 li.slick-current img {
        opacity: 1;
        /*選択されているものは透過しない*/
    }

    .choice-btn5 .slick-track {
        transform: unset !important;
        /*画面幅サイズ変更に伴うサムネイル固定*/
    }

    /*==================================================
    wrapper6
    ===================================*/
    .wrapper6 {
        width: 80%;
        margin: 0 auto;
    }

    .wrapper6 h1 {
        font-family: 'Montserrat', sans-serif;
        margin: 5px 0 5px 0;
        font-weight: 500;
    }

    /*メイン画像下に余白をつける*/

    .gallery6 {
        margin: 0 0 5px 0;
    }

    .gallery6 li {
        list-style: none;
    }

    /*矢印の設定*/

    /*戻る、次へ矢印の位置*/
    .slick-prev,
    .slick-next {
        position: absolute;
        /*絶対配置にする*/
        z-index: 3;
        top: 42%;
        cursor: pointer;
        /*マウスカーソルを指マークに*/
        outline: none;
        /*クリックをしたら出てくる枠線を消す*/
        border-top: 2px solid #ccc;
        /*矢印の色*/
        border-right: 2px solid #ccc;
        /*矢印の色*/
        height: 25px;
        width: 25px;
    }

    .slick-prev {
        /*戻る矢印の位置と形状*/
        left: 2.5%;
        transform: rotate(-135deg);
    }

    .slick-next {
        /*次へ矢印の位置と形状*/
        right: 2.5%;
        transform: rotate(45deg);
    }

    /*選択するサムネイル画像の設定*/

    .choice-btn6 li {
        cursor: pointer;
        outline: none;
        background: #f6f3ee;
        width: 25% !important;
        list-style: none;
    }

    .choice-btn6 li img {
        opacity: 0.4;
        /*選択されていないものは透過40%*/
    }

    .choice-btn6 li.slick-current img {
        opacity: 1;
        /*選択されているものは透過しない*/
    }

    .choice-btn6 .slick-track {
        transform: unset !important;
        /*画面幅サイズ変更に伴うサムネイル固定*/
    }
}