/* 基本リセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Helvetica Neue", sans-serif;
    line-height: 1.6;
    background-color: #fff;
    color: #333;
    padding: 0;
    margin: 0;
}
a {
    color: #27acd9;
    font-weight: bold;
}
/*上に戻るボタン*/
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #ffb6c1; /* かわいいピンク */
    color: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    font-size: 24px;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top:hover {
    background-color: #ff69b4;
    transform: scale(1.1);
}

/*ナビ始まり*/
nav {
    background: #ffffff;
    color: #708090;
    padding: 20px;
    font-weight: 600;
    font-family: "Yu Gothic", "游ゴシック体", "YuGothic", "メイリオ", "Meiryo", sans-serif;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-logo img {
    display: block;
    margin: 0 auto;
    width: 200px;
}
.nav-menu {
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background: rgba(0, 0, 0, 0.95);
    padding: 15px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    visibility: hidden;
    z-index: 1000; /* ← ここを追加！ */
    list-style: none;
}

.nav-menu.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
}
.nav-menu li {
    padding: 10px 0;
}

.nav-menu li a {
    color: #708090;
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
}

.nav-menu li a::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #708090;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-menu li a:hover::after {
    transform: scaleX(1);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #aaa;
    cursor: pointer;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute; /* ← ここを static → absolute にする！ */
        top: 100%; /* ← navの下に出す */
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        visibility: hidden;
        z-index: 1000;
        width: 100%; /* 画面幅いっぱいに */
    }

    .nav-menu.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        visibility: visible;
    }
    .nav-container {
        position: relative; /* ← 絶対配置の基準にするために必要！ */
        padding: 10px 20px;
    }
}
/*PC用*/
@media (min-width: 759px) {
    .nav-menu {
        position: static;
        display: flex;
        flex-direction: row;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        visibility: visible;
        background: none;
        box-shadow: none;
        gap: 35px; /* 必要ならスペースも */
    }

    .hamburger {
        display: none;
    }
}

/*ナビ終わり*/
main {
    background-color: #fff;
}

h1,
h2 {
    padding: 0;
}

/* レイアウト・セクション */
.hero,
.features,
.site-footer {
    padding: 2rem 0;
    text-align: center;
}

/*************ヒーローイメージ*************/

.top-bg {
    background-image: url(../images/bg-kumo.jpg);
    background-repeat: repeat;
    background-size: contain;
}
.fade-slideshow {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 500px;
    margin: 0 auto;
    overflow: hidden;
}

.fade-slideshow img {
    position: absolute;
    width: 100%;
    height: 100%; /* ←追加 */
    object-fit: cover;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 1.5s ease;
    z-index: 10;
}

.fade-slideshow img.active {
    opacity: 1;
    z-index: 1;
}
.hero-con {
    position: relative;
    max-width: 1200px;
    /*max-height: 500px;*/
    display: block;
    margin: 0 auto;
    background-color: #fff;
}
.top-txt-kk1-item1 {
    position: absolute;
    top: 5%;
    left: 1%;
    z-index: 30;
}

.top-txt-kk1-item2 {
    position: absolute;
    bottom: 2%;
    right: 20px;
    z-index: 30;
}
.hero-text {
    display: block;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 10px;
    font-size: 23px;
    max-width: max-content;
    font-family: "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
}

@media screen and (max-width: 450px) {
    .hero-text {
        font-size: 16px;
    }
}

.label-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    /* ラベルの間隔 */
    justify-content: center;
    /* 中央に揃えたいとき */
}

.hero-text-mg {
    display: block;
    margin: 10px;
}

.hero-text-small {
    font-size: 12px;
    text-align: right;
    padding-right: 20px;
}

/***************画像流れていく実験***************/
.slider-wrapper {
    width: 100%;
    overflow: hidden;
}

.slider {
    display: flex;
    animation: scroll-left 80s linear infinite;
    width: max-content;
}

.slider img {
    width: 200px;
    /* 画像サイズは調整してね */
    height: auto;
    margin-right: 10px;
}

/* アニメーション */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

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

/***************レイフラットとは？***************/
/*見出し背景*/
.section-title-intro-bg {
    width: 100%;
    height: 90px;
    background-image: url(../images/orang-obi_03.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
    padding-bottom: 50px;
    position: relative;
    z-index: 5;
}

/*見出しの大元*/
.section-title {
    display: flex;
    align-items: center;
    /* 縦方向中央揃え */
    justify-content: center;
    /* 横方向中央揃え */
    height: 100%;
    font-size: 25px;
    font-family: "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
    text-align: center;
}

/*タイトル文字の調整*/
.pricing-intro-mg {
    display: block;
    margin: 0 auto;
    padding-top: 10px;
}

.section-intro {
    display: block;
    margin: 0 auto;
    position: relative;
    padding-top: 70px;
    /* 装飾の高さに合わせて余白を作る */
    width: 100%;
    background-image: url(../images/bg-kumo.jpg);
    background-size: 1200px;
    background-repeat: repeat-x;
}

.spikes {
    position: relative;
    background: #2c3e50;
    height: 50vh;
}

.spikes::after {
    content: "";
    position: absolute;
    right: 0;
    left: -0%;
    top: 100%;
    z-index: 10;
    display: block;
    height: 50px;
    background-size: 50px 100%;
    background-image: linear-gradient(135deg, #2c3e50 25%, transparent 25%),
        linear-gradient(225deg, #2c3e50 25%, transparent 25%);
    background-position: 0 0;
}
/*

/*ふわふわ区切り*/
/*白*/

.shapedividers_com-434 {
    overflow: hidden;
    position: relative;
}
.shapedividers_com-434::before {
    content: "";
    font-family: "shape divider from ShapeDividers.com";
    position: absolute;
    z-index: 3;
    pointer-events: none;
    background-repeat: no-repeat;
    bottom: -0.1vw;
    left: -0.1vw;
    right: -0.1vw;
    top: -0.1vw;
    background-size: 100% 90px;
    background-position: 50% 0%;
    background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 .5c3.07.55 9.27-.42 16.14 0 6.88.4 13.75.57 19.14-.11V0H0z" fill="%23fffff6"/></svg>');
}

@media (min-width: 2100px) {
    .shapedividers_com-434::before {
        background-size: 100% calc(2vw + 90px);
    }
}

/*緑*/

.shapedividers_com-889 {
    overflow: hidden;
    position: relative;
}
.shapedividers_com-889::before {
    content: "";
    font-family: "shape divider from ShapeDividers.com";
    position: absolute;
    z-index: 3;
    pointer-events: none;
    background-repeat: no-repeat;
    bottom: -0.1vw;
    left: -0.1vw;
    right: -0.1vw;
    top: -0.1vw;
    background-size: 100% 90px;
    background-position: 50% 100%;
    background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.67c-3.07-.55-9.27.41-16.15 0-6.87-.4-13.74-.58-19.13.1v.4h35.28z" fill="%23f0fff0"/></svg>');
}

@media (min-width: 2100px) {
    .shapedividers_com-889::before {
        background-size: 100% calc(2vw + 90px);
    }
}

/*植物のライン*/
.decoration-line-1 {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 50px;
    background-image: url(../images/line-green-1.png);
    background-repeat: repeat-x;
    background-size: contain;
    background-position: top center;
}

.section-heading {
    text-align: center;
    width: 100%;
}

.section-intro-text {
    display: block;
    margin: 0 auto;
    text-align: left;
    max-width: 800px;
    padding: 20px;
}

.section-intro-text img {
    display: block;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
    width: 80%;
}

.section-intro-text p {
    display: block;
    text-align: left;
    padding: 10px;
    width: 100%;
}

/****************製本・印刷のこだわり特徴****************/
.curved {
    position: relative;
    background-image: linear-gradient(to bottom, #f0fff0, #fff);
    /*height: 50vh;
    border-bottom-left-radius: 50% 30%;
    border-bottom-right-radius: 50% 30%;
    */
}

/*レイフラットの特徴　見出し*/
.section-title-features-bg {
    background-image: url(../images/orang-obi_2_05.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 100%;
    /* または固定幅でもOK */
    height: 90px;
    padding-bottom: 25px;
    position: relative;
    z-index: 15;
}

/*見出しタイトル文字の調整*/
.pricing-features-mg {
    display: block;
    margin: 0 auto;
    padding-top: 10px;
}

.features {
    display: block;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.features-photo-box {
    display: block;
    margin: 0 auto;
    max-width: 850px;
}

.features-title {
    color: #2e8b57;
    font-family: "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
}
.features-title-img {
    max-height: 20px;
    max-width: 100%;
}
/*レイフラットの特徴　背景画像*/
.tc-gb {
    width: 100%;
    background-color: #f5f5dc;
    padding: 0;
}

.feature-list2 {
    display: block;
    padding: 2em;
}

/*仕様説明*/
.spec-section {
    padding: 2rem 1rem;
    max-width: 1200px;
}

.spec-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: bold;
}

.spec-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 2rem;
}

.spec-img {
    width: 100%;
    max-width: 300px;
    flex: 1 1 100%;
    margin: 0 auto 1rem;
    border-radius: 12px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.spec-text {
    flex: 1 1 100%;
    text-align: center;
}

.spec-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0;
    color: #2e8b57;
    font-family: "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
}

.spec-text p {
    font-size: 1rem;
    color: #444;
}

/* PCサイズで横並びに */
@media (min-width: 768px) {
    .spec-item {
        flex-wrap: nowrap;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .spec-img,
    .spec-text {
        flex: 1 1 50%;
        text-align: left;
    }
}

/*仕様説明*/

/*メインボックス*/
.feature-con {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 30px;
}

.feature-con img {
    width: 80%;
    display: block;
    height: auto;
    margin: 0 auto;
}

.conA-text {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(50, 50, 50, 0.8);
    color: #fff;
    width: 40%;
    box-sizing: 2rem;
    font-size: 1.5rem;
    /* 背景つけると読みやすい */
    padding: 1rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.conB-text {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(50, 50, 50, 0.8);
    color: #fff;
    width: 40%;
    box-sizing: 2rem;
    font-size: 1.5rem;
    /* 背景つけると読みやすい */
    padding: 1rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    text-align: center;
}

@media screen and (max-width: 768px) {
    .conA-text,
    .conB-text {
        position: relative;
        left: 0;
        top: 50%;
        width: 100%;
        transform: none;
        padding: 1.5rem;
        font-size: 1rem;
        background-color: rgba(50, 50, 50, 0.8);
    }

    .feature-con {
        display: flex;
        flex-direction: column;
    }
}

/****************価格仕様****************/
/*カーブ 波使えたやつ*/
.shapedividers_com-6921 {
    overflow: hidden;
    position: relative;
}
.shapedividers_com-6921::before {
    content: "";
    font-family: "shape divider from ShapeDividers.com";
    position: absolute;
    z-index: 3;
    pointer-events: none;
    background-repeat: no-repeat;
    bottom: -0.1vw;
    left: -0.1vw;
    right: -0.1vw;
    top: -0.1vw;
    background-size: 100% 282px;
    background-position: 50% 0%;
    background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 .5c3.07.55 9.27-.42 16.14 0 6.88.4 13.75.57 19.14-.11V0H0z" fill="%23ffffff"/></svg>');
}

@media (min-width: 2100px) {
    .shapedividers_com-6921::before {
        background-size: 100% calc(2vw + 282px);
    }
}

/*くも*/

.shapedividers_com-9974 {
    overflow: hidden;
    position: relative;
}
.shapedividers_com-9974::before {
    content: "";
    font-family: "shape divider from ShapeDividers.com";
    position: absolute;
    z-index: 3;
    pointer-events: none;
    background-repeat: no-repeat;
    bottom: -0.1vw;
    left: -0.1vw;
    right: -0.1vw;
    top: -0.1vw;
    background-size: 100% 79px;
    background-position: 50% 0%;
    background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" viewBox="0 0 100.86 4.15"><path fill="%23ffffff" d="M0 0v3.5a9.07 9.07 0 0 0 9.37-1.67 9.07 9.07 0 0 0 12.1 0 9.07 9.07 0 0 0 12.11 0 9.07 9.07 0 0 0 12.06 0 9.07 9.07 0 0 0 12.11 0 9.07 9.07 0 0 0 12.08 0 9.07 9.07 0 0 0 12.09 0 9.07 9.07 0 0 0 12.08 0 9.07 9.07 0 0 0 6.86 2.28V.01z"/></svg>');
}

@media (min-width: 2100px) {
    .shapedividers_com-9974::before {
        background-size: 100% calc(2vw + 79px);
    }
}

/*カーブ 波*/
.section-pricing {
    display: block;
    margin: 0 auto;
    max-width: 1200px;
    padding-bottom: 50px;
    padding-top: 100px;
}

.section-pricing-bgg {
    width: 100%;
    background-image: linear-gradient(to bottom, #f5f5dc, #fff);
    background-size: cover;
}

/*価格仕様　見出し*/
.section-title-pricing-bg {
    background-image: url(../images/orang-obi_05_06.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 100%;
    /* または固定幅でもOK */
    /*height: 90px;*/
    padding: 30px;
}

/*価格文字*/
.prixing-font-size {
    font-size: 25px;
    font-weight: bold;
}

/*見出しの大元*/
.section-title-pricing {
    display: flex;
    align-items: center;
    /* 縦方向中央揃え */
    justify-content: center;
    /* 横方向中央揃え */
    height: 100%;
    font-size: 25px;
    font-family: "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
    text-align: center;
}

.pricing-title-mg {
    display: block;
    margin: 0 auto;
    padding: 10px 0 0 20px;
}

/*テーブルのコンテナ*/
.pricing-flex-con {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
}

.pricing-flex-item {
    display: block;
    max-width:100%;
    margin: 0 auto;
    padding-top: 30px;
}

.pricing-flex-con img {
    display: block;
    margin: 0 auto;
    max-width: 350px;
    text-align: center;
    padding: 10px;
    border-radius: 12px;
}

/*テーブル*/
.pricing-table {
    display: block;
    margin: 0 auto;
    width: 100%;
    padding: 10px;
    text-align: left;
    border-collapse: collapse;
    border-spacing: 0;
}

.pricing-table td {
    text-align: left;
    padding: 20px;
}

.pricing-table th {
    padding: 20px;
    /*border: solid 1px #aaa;*/
}

table tr:nth-child(odd) {
    background-color: #d3d3d3;
}

table tr:nth-child(even) {
    background-color: #f5f5f5;
}

.btn-con {
    display: block;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.btn-text {
    display: inline-block;
    margin: 0 auto;
    width: 100%;
    height: auto;
    text-align: center;
    padding: 0;
}

/* ボタン */
.btn-pricing {
    display: block;
    text-align: center;
    text-decoration: none;
    max-width: 320px;
    margin: auto;
    padding: 1rem 4rem;
    font-weight: bold;
    border: 2px solid #27acd9;
    background: #27acd9;
    color: #fff;
    border-radius: 100vh;
    transition: 0.5s;
}

.btn-pricing:hover {
    color: #27acd9;
    background: #fff;
}

.btn-pricing.large {
    font-size: 1.25rem;
}

/*見出しの文字*/
.pricing-item {
    text-align: center;
    font-size: 30px;
    font-family: "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
}

/***************注文までの流れ***************/

/*注文までの流れ　見出し*/
.section-title-flow-bg {
    background-image: url(../images/orang-obi_04_06.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 100%;
    /* または固定幅でもOK */
    height: 90px;
    padding: 60px;
    position: relative;
    z-index: 15;
}

/*見出しのマージン*/
.pricing-flow-mg {
    display: block;
    margin: 0 auto;
    padding-top: 10px;
}

.section-flow {
    display: block;
    margin: 0 auto;
    max-width: 1200px;
}

.section-flow-bg {
    background-image: url(../images/mizutama_bk.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    text-align: center;
    margin: 0 auto;
}

@media screen and (min-width) {
    .section-flow-bg {
        background-size: contain;
    }
}

.flex-flow-con {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
}

.flex-flow-item {
    display: block;
    margin: 0 auto;
    max-width: 390px;
    padding: 30px;
    /*background-color: rgba(255, 255, 255, 0.5);*/
}

.flex-flow-item p {
    display: block;
    margin: 0 auto;
    padding: 20px;
}

.flex-flow-item-img {
    display: block;
    margin: 0 auto;
    text-align: center;
    width: 80%;
    border: solid 1px #aaa;
}

.flow-title {
    display: flex;
    flex-direction: row;
    font-size: 25px;
    font-family: "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
    text-align: left;
}

.flow-title-font {
    padding: 0 0 0 20px;
    line-height: 31px;
}

.flow-title img {
    max-width: 150px;
}

/****************おすすめのシーン**********************/

.section-suggestion {
    display: block;
    margin: 0 auto;
    width: 100%;
    padding: 20px 0;
    background-color: #f5f5dc;
}

/*おすすめのシーン　見出し*/
.section-title-suggestion-bg {
    background-image: url(../images/orang-obi_03.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 100%;
    /* または固定幅でもOK */
    padding: 10px;
}

.pricing-suggestion-mg {
    display: block;
    margin: 0 auto;
    padding-bottom: 40px;
}

/*フレックス*/

.suggestion-flex-con {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.suggestion-flex-item {
    display: block;
    margin: 5px;
    padding: 20px;
    background-color: #fffff3;
    border: solid 1px #ecb105;
    border-radius: 10px;
    width: 48%;
}

@media screen and (max-width: 1300px) {
    .suggestion-flex-item {
        width: 300px;
    }

    .suggestion-mini-flex-con {
        flex-wrap: wrap;
    }
}

.suggestion-flex-item img {
    width: 250px;
}

@media screen and (max-width: 376px) {
    .suggestion-flex-item {
        width: 100%;
    }

    .suggestion-flex-item img {
        width: 200px;
        text-align: center;
        margin: 0 auto;
        display: block;
    }
}

.suggestion-midashi-con {
    padding: 5px 0;
}

.suggestion-midashi-con img {
    max-height: 20px;
}

/*写真と見出しと説明文のフレックス*/
.suggestion-mini-flex-con {
    display: flex;
    flex-direction: row;
}

.suggestion-mini-flex-item {
    padding: 10px;
}

/* ボタン */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    margin-top: 1rem;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    text-align: center;
    max-width: 250px;
}

.btn:hover {
    background-color: #0056b3;
}

.btn.large {
    font-size: 1.25rem;
}

/* フッター */
/*波*/

.shapedividers_com-3921 {
    overflow: hidden;
    position: relative;
}
.shapedividers_com-3921::before {
    content: "";
    font-family: "shape divider from ShapeDividers.com";
    position: absolute;
    z-index: 3;
    pointer-events: none;
    background-repeat: no-repeat;
    bottom: -0.1vw;
    left: -0.1vw;
    right: -0.1vw;
    top: -0.1vw;
    background-size: 100% 90px;
    background-position: 50% 0%;
    background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 .5c3.07.55 9.27-.42 16.14 0 6.88.4 13.75.57 19.14-.11V0H0z" fill="%23f5f5dc"/><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" opacity=".5" fill="%23f5f5dc"/><path d="M0 1.85c2.56-.83 7.68-.3 11.79-.42 4.1-.12 6.86-.61 9.58-.28 2.73.33 5.61 1.17 8.61 1 3-.19 4.73-.82 5.3-.84V.1H0z" opacity=".5" fill="%23f5f5dc"/></svg>');
}

@media (min-width: 2100px) {
    .shapedividers_com-3921::before {
        background-size: 100% calc(2vw + 90px);
    }
}

/*波終わり*/
.footer-con-bg {
    background-image: url(../images/parara-footer.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    text-align: center;
    height: 500px;
}
.footer-con {
    display: block;
    margin: 0 auto;
    padding: 80px 0;
}
.footer-posi-con {
    position: relative;
    width: 100%;
}
.footer-posi-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding-top: 30%;
    color: #fff;
    font-size: 25px;
    font-family: "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
}

@media screen and (max-width: 730px) {
    .footer-con-bg {
        height: 300px;
    }
    .footer-posi-item {
        font-size: 20px;
        padding-top: 50%;
    }
}
.site-footer {
    font-size: 0.875rem;
    color: #777;
    border-top: 1px solid #f5f5dc;
    padding-top: 1rem;
}

footer img {
    max-width: 200px;
}
.footer-posi-item h2 {
    white-space: normal; /* 折り返しを許可 */
    word-break: break-word;
}

@media (max-width: 768px) {
    .sp-only {
        display: inline;
    }
}

/* PCレイアウト */
@media (min-width: 768px) {
    .features .feature-list {
        flex-direction: row;
        justify-content: space-between;
    }

    .feature {
        flex: 1;
        margin: 0 0.5rem;
    }

    /*
    body {
        padding: 0 2rem;
    }*/
}
/*youtube動画*/
.youtube-douga {
    max-width: 100%;
    margin: 0 auto;
    background-image: url(../images/bg-kumo.jpg);
    padding-bottom: 30px;
}
@media (min-width: 768px) {
    .youtube-douga {
        max-width: 600px;
    }
}
.youtube-douga iframe {
    width: 100%;
    aspect-ratio: 16/9;
}
