@charset "UTF-8";
@import url("grid.css");

img {
    max-width: 100%;
    height: auto;
    /*高さ自動*/
}

a {
    /*display: block;*/
    color: #666;
    text-decoration-line: none;
}

a:hover {
    color: #999;
}

ul li {
    list-style: none;
}

/*ヘッダー
-------------------------------------*/
.header {
    display: flex;
    flex-direction: row;
    padding: 2rem 0 0 0;
}

.header-box {
    margin-left: auto;
    margin-top: 8px;
}

.contact-button {
    padding: 1rem;
    border: 2px solid #000;
}

nav ul {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    list-style: none;
    margin: 1rem 0 0 0;
}

nav li {
    flex: 1 0 auto;
}

nav li a {
    text-decoration: none;
    text-align: center;
    width: 100%;
}

nav a:hover {
    background-color: #f7f7f7;
}

nav a {
    padding: 0.5rem;
}

@media screen and (min-width: 768px) {

    /* PC時はMENUボタンを非表示 */
    #open,
    #close {
        display: none !important;
    }

    #navi {
        display: block !important;
    }
}

@media screen and (max-width: 768px) {
    .header {
        flex-direction: column;
        margin-bottom: 10px;
    }

    .header #open,
    #close {
        position: absolute;
        top: 20px;
        right: 12px;
    }

    nav ul {
        flex-direction: column;
    }

    .header li {
        padding-top: 0;
    }

    /* スマホ時はMENUボタンを表示 */
    #open {
        display: block;
        background: url(../img/button.png);
        background-repeat: no-repeat;
        background-size: contain;
        width: 50px;
        height: 50px;
        border: none;
        position: absolute;
        top: 20px;
        right: 12px;
    }

    #close {
        display: block;
        background: url(../img/button2.png);
        background-repeat: no-repeat;
        background-size: contain;
        width: 50px;
        height: 50px;
        border: none;
        position: absolute;
        top: 20px;
        right: 12px;
    }

    /* スマホ時はメニューを非表示 */
    #navi {
        display: none;
    }
}


/*ロゴ
-------------------------------------*/
.cal-logo img {
    display: block;
    width: 200px;
}

.cal-logo img:hover {
    opacity: 0.5;
}

/*PC用のスタイル
-------------------------------*/

/*モバイルでは表示する*/
.pc-only {
    display: block;
}

/*PCでは非表示にする*/
.pc-only {
    display: none;
}

/*SP用のスタイル
-------------------------------*/
@media screen and (min-width:768px) {

    /*PCでは非表示*/
    .sp-only {
        display: none;
    }

    /*PCでは表示*/
    .pc-only {
        display: block;
    }
}

/*メイン画像
-------------------------------------*/
.mv {
    position: relative;
}

.mainimg img {
    width: 100vw;
}

.maintitle img {
    width: 40%;
    /* 適当な幅を指定 */
    position: absolute;
    /* 相対位置に指定 */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
    .maintitle img {
        width: 60%;
        /* 適当な幅を指定 */
        position: absolute;
        /* 相対位置に指定 */
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
    }
}

/*画像ふわっと*/
.load-fade {
    opacity: 0;
    visibility: hidden;
    transition: all 1s;
}

.load-fade.is-show {
    opacity: 1;
    visibility: visible;
}

/*メインコンテンツ
-------------------------------------*/
main {
    margin: 0;
}

@media screen and (max-width: 768px) {
    main {
        margin: 0;
    }
}

section {
    /*margin: 5rem 0;*/
    padding: 3rem 0;
}

.gray-back {
    background-color: #f4f4f4;
}


.lp-con-df {
    /*display: block;*/
    widows: 800px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    padding: 40px 20px;
}

/*見出し
-------------------------------------*/
.midashi-o {
    display: block;
    margin: 0 auto;
    background-color: #db7093;
    color: #fff;
    font-size: 1.5em;
    padding: 0.5em 2em;
    font-family: "Noto Sans JP", sans-serif, "Kosugi Maru", "Noto Sans JP", sans-serif;
    font-weight: 600;
    text-align: left;
    /*max-width: 90%;*/
}

.midashi-con {
    max-width: 1200px;
    display: block;
    margin: 1em 0;
}

.midashi-s {
    display: block;
    margin: 0 auto;
    color: #1955a6;
    font-size: 1.5em;
    padding: 0.5em 0 0 0;
    font-family: "Noto Sans JP", sans-serif, "Kosugi Maru", "Noto Sans JP", sans-serif;
    ;
    font-weight: 600;
    text-align: left;
    max-width: 90%;
}

.midashi-s:before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    background-image: url("../img/maru.png");
    background-size: contain;
    background-repeat: no-repeat;
    padding-right: 25px;
}


/*タイトル
-------------------------------------*/
.data-title img {
    display: block;
    margin: 0 auto;
    max-width: 800px;
}

@media screen and (max-width: 768px) {
    .data-title img {
        width: 90%;
    }
}

.data-title-short img {
    display: block;
    margin: 0 auto;
    max-width: 800px;
}

@media screen and (max-width: 768px) {
    .data-title-short img {
        width: 70%;
    }
}


/*メリット
-------------------------------------*/
.bg-leaf-color {
    background-color: #e6fbeb;
}



.cal-merit {
    padding: 2rem 0;
}

.cal-merit img {
    display: block;
    text-align: center;
    margin: 0 auto;
    padding-bottom: 20px;
}

.cal-merit-text {
    display: block;
    margin: 0 auto;
    /*max-width: 800px;*/
    background: rgba(255, 255, 255, 0.8);
    padding: 50px;
    text-align: left;
}

@media screen and (max-width: 768px) {
    .cal-merit-text {
        padding: 20px;
        width: 90%;
    }

    .bg-leaf {
        background-size: 100px;
    }
}

/*
-------------------------------------*/

.aaaa {
    margin: 0 auto;
    padding: 100px 20px;
}

.aaaa.bg_pattern {
    position: relative;
    background-color: rgba(255, 233, 167, 0.4);
    /* opacity 0.4 を色に含める */
    background-size: 20px 20px;
    background-image: repeating-linear-gradient(45deg,
            #ffffe0 0,
            #ffffe0 2px,
            rgba(255, 233, 167, 0.4) 0,
            rgba(255, 233, 167, 0.4) 50%);
    background-repeat: repeat;
}


/**/
.company-info {
    font-size: 16px;
}

.address {
    font-size: 18px;
    font-weight: bold;
}

/*おすすめ商品
-------------------------------------*/
.container--1 {
    display: flex;
    flex-wrap: wrap;
    /* 折り返しOK */
    gap: 20px;
    /* カード同士の隙間 */
    justify-content: center;
    /* 中央寄せ */
}

.o-item-con {
    flex: 1 1 250px;
    /* 最小200pxから伸縮 */
    max-width: 300px;
    background-color: #fff;
    padding: 15px;
    text-align: left;
    border: solid 1px #aaa;
    margin: 10px;
}

@media (max-width: 500px) {
    .o-item-con {
        flex: 1 1 100%;
        /* 小さい画面は1列に */
        max-width: 100%;
    }
}


.section-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 26px 28px 26px 28px;
}

.left {
    flex: 0 0 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.illustration {
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 12px;
}

.desc {
    margin-bottom: 14px;
    color: var(--muted);
    line-height: 1.6
}

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.btn {
    display: flex;
    width: fit-content;
    white-space: nowrap;
    padding: 10px 18px;
    border-radius: 30px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.06);
    transition: transform .08s linear;
    margin-bottom: 6px;
    align-items: center;
}

.btn:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid #fff;
    margin-left: 8px;
}

.btn.secondary {
    background: #40e0d0;
    color: #fff;
}

.secondary:hover {
    background-color: #d3d3d3;
    color: #fff;
}

.btn:hover {
    background-color: #d3d3d3;
    color: #fff;
}

/* 端の見た目（左上にピンクのリボンをつけたい） */
.section::before {
    content: "";
    position: relative;
}

/* レスポンシブ */
@media (max-width:760px) {
    .section-inner {
        flex-direction: column;
        align-items: flex-start
    }

    .left {
        flex: 0 0 auto;
        width: 100%;
    }

    .illustration {
        width: 100%;
        height: 120px
    }

    .ribbon {
        font-size: 16px;
        margin-left: 12px
    }
}

/* 小さなアイコンや用紙風デザイン */
.paper {
    width: 72%;
    height: 76%;
    background: #fff;
    border-radius: 4px;
    padding: 10px;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.03) inset;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.paper .lines {
    height: 6px;
    background: linear-gradient(90deg, #f0f6fb 0, #f0f6fb 100%);
    border-radius: 3px;
    margin: 6px 0
}

/*お客様の声
-------------------------------------*/

.interview-bg {
    background-color: #f6f6e0;
}

.interview-bg-footprint {
    background-image: url(../img/footprints.png);
    background-position: top 0px center;
    background-repeat: no-repeat;
    background-size: 90%;
    padding: 5rem 0;
}

@media screen and (max-width: 768px) {
    .interview-bg-footprint {
        background-repeat: repeat;
        background-size: 100%;
        padding: 1rem 0;
    }
}

.chat-b {
    font-size: 1.2em;
    font-weight: 800;
}

/*チャットスタイル*/
.balloon {
    display: flex;
    gap: 12px;
    margin: 24px;
    overflow: hidden;
    align-items: flex-start;
}

/* 基本のチャット見た目 */
.balloon .says {
    background: #d7ebfe;
    padding: 12px;
    border-radius: 12px;
    position: relative;
    max-width: 420px;
}

/* 左右差分 */
.balloon--left {
    flex-direction: row;
}

.balloon--right {
    flex-direction: row-reverse;
}

/* 吹き出しの三角差分 */
.balloon--left .says::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 12px;
    border-right: 10px solid #d7ebfe;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.balloon--right .says::before {
    content: "";
    position: absolute;
    right: -10px;
    top: 12px;
    border-left: 10px solid #d7ebfe;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

/*特　徴
-------------------------------------*/



/*20251113*/
:root {
    --bg: #f6e9e9;
    --ribbon: #f59bbf;
    /* ピンク */
    --pink: #e45a8b;
    --ribbon2: #45ADA8;
    /* 今使われてる緑 */
    --accent: #6fc3ff;
    /* ボタン水色 */
    --panel-bg: #fff;
    --muted: #666;
    --container-width: 980px;
    --circle-num-color: #45ADA8;
    --orang: #ff8c00;
    --toiawase-blue: #1955a6;
    --main-gradient: linear-gradient(270deg, #ff8c00 0%, #ffff00 25%, #ffa500 51%, #ff8c00 100%);
}

.wrap {
    width: 100%;
    /*max-width: var(--container-width);*/
}

/* セクション共通 */
.section {
    background: var(--panel-bg);
    border-radius: 6px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3) inset;
    margin: 22px 0;
    overflow: hidden;
    border: 4px solid transparent;
    /* リボンをはみ出させる余白 */
}

/* リボン見出し */

/* HTML: <div class="ribbon">Your text content</div> */
.ribbon {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
}

.ribbon {
    --r: .8em;
    /* control the cutout */
    border-block: .5em solid #0000;
    padding-inline: .5em calc(var(--r) + .25em);
    line-height: 1.8;
    clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%, calc(100% - var(--r)) calc(100% - .25em), 100% 50%, calc(100% - var(--r)) .25em);
    background:
        radial-gradient(.2em 50% at left, #000a, #0000) border-box,
        var(--ribbon2) padding-box;
    /* the color  */
    width: fit-content;
}

.ribbon.blue {
    --ribbon2: #6fc3ff;
    /* 水色に変更 */
}

.ribbon h3 {
    display: inline-block;
    padding: 5px;
    /*white-space: nowrap;*/
}

@media screen and (max-width: 480px) {
    .ribbon h3 {
        font-size: 18px;
    }

}

.features-title {
    display: inline-block;
    padding-left: 10px;
}

.pink {
    color: var(--pink);
}

.circle-num {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 1.4em;
    height: 1.4em;
    border-radius: 50%;
    background: #fff;
    font-weight: bold;
}

.midori {
    color: var(--ribbon2);
}

.mizuiro {
    color: var(--accent);
}

/*売れ筋カレンダー
-------------------------------------*/

.cal-uresuji-bg {
    width: 100%;
    background-color: #f5f5f5;
}

.cal-feature-bg {
    background-image: url(../img/groovepaper.png);
    background-repeat: repeat;
    padding: 5rem 0;
}

/*初回限定！クーポン
-------------------------------------*/
.coupon40-bg {
    background-image: url(../img/memphis-colorful.png);
    background-repeat: repeat;
    /*background-size: 100%;*/
    padding: 5rem 0;
}

.coupon40 {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    width: 800px;
}

.coupon40:hover {
    opacity: 0.8;
}

@media screen and (max-width: 768px) {
    .coupon40 {
        width: 95%;
    }
}


/*グラデーションが流れる
-------------------------------------*/

.btn-gradient {
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 2rem 0;
}

.gradient1 {
    /*ボタンの形状*/
    display: flex;
    width: fit-content;
    white-space: nowrap;
    padding: 14px 40px;
    align-items: center;
    gap: 0.2em;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    outline: none;
}

.gradient1:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid #fff;
    margin-left: 8px;
}

/*hoverした際の、背景の場所とテキスト色の変更*/
.gradient1:hover {
    color: #fff;
    transition: all 0.3s ease-out;
    background-position: 99% 50%;
}

.gd-gr-orang {
    background: var(--main-gradient);
    background-position: 1% 50%;
    background-size: 200% auto;
}

.gd-blue {
    background: var(--toiawase-blue);
    background-position: 1% 50%;
    font-size: 16px;
}

.gd-pink {
    background: var(--pink);
    background-position: 1% 50%;
    font-size: 13px;
}

/*キャッチコピー
-------------------------------------*/
.pnk-bg {
    background:
        radial-gradient(circle, #e9e0df 1px, transparent 1.5px);
    background-position: 0 0, 5px 5px;
    background-size: 8px 8px;
    background-color: #fbf7f6;
}

.catch h2 {
    padding-bottom: 1rem;
}

.under {
    border-bottom: 0.4rem solid #000;
    padding: 0 1rem 1rem 1rem;
}

.center {
    text-align: center;
    margin-bottom: 4rem;
}

/*申し込みの流れ
-------------------------------------*/
.flow.row {
    margin-bottom: 5rem;
}

/*フッター
-------------------------------------*/
footer {
    /*background-color: #f7f7f7;
	padding: 5rem 0;*/
}

footer h4 {
    border-bottom: 3px solid #ccc;
}

.foot-bg {
    background-image: url(../img/fotter-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 3rem 0;

}

.foot-sns-title {
    font-size: 2em;
    color: #fff;
    text-align: center;
    font-weight: 800;
}

.foot-sns-stm {
    font-size: 1em;
    color: #fff;
    text-align: center;
}

.foot-sns {
    display: flex;
    justify-content: center;
}

.foot-sns img {
    width: 80%;
}

.foot-sns li {
    padding: 0 2rem;
}

/*お問い合わせ
-------------------------------------*/
.contact-box {
    border: 1px solid #ccc;
    text-align: center;
    padding: 2rem 0;
}

.table {
    margin: 4rem 0;
}

.table th {
    width: 250px;
}

/*コピーライト
-------------------------------------*/
.copyright {
    text-align: center;
    padding: 1rem 0;
    background-color: #000;
}

.copyright a {
    color: #fff;
    text-decoration: none;
    display: inline;
}

/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
    position: fixed;
    bottom: 15px;
    right: 15px;
}

#pagetop a {
    display: block;
    background: #000;
    color: #fff;
    width: 50px;
    padding: 10px 5px;
    text-align: center;
}

#pagetop a:hover {
    background: #666;
}

/* 幅768px以下の表示
-------------------------------------*/
@media screen and (max-width: 768px) {

    /*ヘッダー
-------------------------------------*/
    .header-box {
        display: none;
    }

    /*お問い合わせ
-------------------------------------*/
    .table th {
        width: 100%;
        display: block;
    }

    .table td {
        display: block;
    }
}


/*アニメーション
-------------------------------------*/
.anim-box.zoomin.is-animated {
    animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
    animation-iteration-count: 3;
}

@keyframes zoomIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/*ふわふわ表示*/
.fuwafuwa {
    animation: fuwafuwa 3s infinite ease-in-out .8s alternate;
    background: url(../img/ico-apple.svg) no-repeat center center / 60px auto;
    display: inline-block;
    transition: 1.5s ease-in-out;
    /*width: 70px;
	height: 70px;*/
    margin-top: 15px;
}

@keyframes fuwafuwa {
    0% {
        transform: translate(0, 0) rotate(-7deg);
    }

    50% {
        transform: translate(0, -7px) rotate(0deg);
    }

    100% {
        transform: translate(0, 0) rotate(7deg);
    }
}

/**/
/* レイアウトや見た目のスタイル */
/* ---------------------------- */

.single-item + .single-item {
    margin-top: 80px;
}

/* アニメーションスタイル */
/* ---------------------------- */

/* アニメーション前 */
.u-fade-type-up {
    transform: translateY(50px);
    opacity: 0;
}

/* トリガー発火でis-activeを付与 */
.u-fade-type-up.is-active {
    transition: .6s;
    transform: translateY(0);
    opacity: 1;
}

*メイン 下からふわっと表示 ------------------------------------*/ .animation1 {
    // アニメーション設定
    animation-name: animation1; //アニメーションの名前
    animation-duration: 3s; //アニメーション時間
    animation-timing-function: ease-out; //アニメーションさせるイージング
    animation-delay: 1s; //アニメーション開始させる時間
    animation-iteration-count: 1; //繰り返し回数
    animation-direction: normal; //往復処理をするかどうか
    animation-fill-mode: forwards; //アニメーション後のスタイルをどうするか
}


.an1-fadein {
    /*background-color: #ff7f50;*/
    font-size: 30px;
    font-weight: bold;
    animation-name: fadein;
    animation-duration: 2s;
    /*animation-iteration-count: infinite;*/
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/**/
.custom-shape-divider-top-1762758111 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1762758111 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.custom-shape-divider-top-1762758111 .shape-fill {
    fill: #FFFFFF;
}

/*
フェード
--------------------------------------------------------*/
.fade-left {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-left.show {
    opacity: 1;
    transform: translateX(0);
}

.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

.fade-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-scale.show {
    opacity: 1;
    transform: scale(1);
}

/*
価格
------------------------------------------------------------*/
.Product_amount {
    display: flex;
    gap: 5px;
    align-items: center;
    text-align: left;
    padding: 5px;
}

.amount {
    font-size: 20px;
    text-align: left;
    padding-left: 10px;
}

.print-style {
    padding: 5px 10px;
    color: #fff;
    text-align: center;
    border-radius: 10px;
    font-size: 10px;
    font-weight: bold;
}

.seven-color {
    background-color: #ed7d5e;
}

.four-color {
    background-color: #3cb371;
}
