@charset "utf-8";

/* 1100px 以上 */
@media screen and (min-width:1159px) {

    .br-1159 {
        display: none;
    }
}


@media screen and (min-width:851px) and (max-width:1159px) {

    /* コンテンツ幅 */
    .inner {
        width: 90%;
    }

    h2 {
        font-size: 30px;
    }

    .h2__44 {
        font-size: 38px;
    }
}


/* タブレット以上 */
@media screen and (min-width:851px) {

    .display-850 {
        display: none !important;
    }

    .br-850 {
        display: none;
    }

    .br-850__only {
        display: none;
    }
}


/* タブレット以下 */
@media screen and (max-width:850px) {

    html {
        scroll-padding-top: 60px;
    }

    .display-pc {
        display: none !important;
    }

    .display-850 {
        display: block;
    }

    .br-pc {
        display: none;
    }

    .br-850 {
        display: block;
    }

    .br-850__only {
        display: block;
    }

    /* コンテンツ幅 */
    .inner {
        width: 90%;
    }

    .inner-850 {
        width: 90%;
        margin: 0 auto;
    }

    /* 横並び解除 */
    .flex-box {
        display: block;
    }

    h2 {
        font-size: 30px;
        line-height: 40px;
    }

    .h2__44 {
        font-size: 36px;
    }
}


/* スマホ以上 */
@media screen and (min-width:451px) {

    .br-450 {
        display: none;
    }
}


/* スマホ以下 */
@media screen and (max-width:450px) {

    .br-850__only {
        display: none;
    }

    .br-450 {
        display: block;
    }

    h2 {
        font-size: 26px;
        line-height: 34px;
    }

    .h2__44 {
        font-size: 30px;
    }
}



/*------------- ヘッダー --------------*/

.header-inner__responsive {
    display: none;
}

@media screen and (min-width:1024px) and (max-width:1460px) {

    .header-title a {
        font-size: 25px;
        column-gap: 10px;
        margin-top: 10px;
    }

    .header-title span {
        font-size: 14px;
    }

    .header-container {
        width: 98%;
    }

    /* グロナビ */
    .nav-global__ul {
        width: 730px;
        margin: 0 auto;
    }

    .nav-global__ul li a {
        font-size: 14px;
    }

    .nav-global__li a::after {
        width: 12px;
        height: 12px;
        margin-left: 2px;
    }

    /* お問い合わせ・ご注文 */
    li.nav-global__contact a {
        font-size: 14px;
        width: 170px;
        height: 35px;
    }
}


@media screen and (max-width: 1023px) {

    .header-inner {
        display: none;
    }

    .header-inner__responsive {
        display: block;
    }

    .wrapper {
        padding-top: 60px;
    }

    .header-inner__responsive {
        width: 100vw;
    }

    .header-title a {
        font-size: 26px;
        color: #2C4C67;
    }

    .header-container__responsive {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 90%;
        height: 60px;
        margin: 0 auto;
        position: relative;
    }

    /* ハンバーガーアイコン */
    .drawer__btn {
        width: 44px;
        height: 44px;
        position: absolute;
        top: 8px;
        right: 0;
        cursor: pointer;
        z-index: 1001;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        background-color: #7093B1;
        border-radius: 50%;
    }

    .drawer__btn span {
        display: block;
        width: 24px;
        height: 2px;
        background: #fff;
        transition: transform 0.3s ease, opacity 0.3s ease;
        position: relative;
    }

    /* ×アイコンアニメーション */
    .drawer__btn.active span:nth-child(1) {
        transform: rotate(40deg);
        position: absolute;
    }

    .drawer__btn.active span:nth-child(2) {
        opacity: 0;
    }

    .drawer__btn.active span:nth-child(3) {
        transform: rotate(-40deg);
        position: absolute;
    }

    /* ドロワーメニュー全画面化 */
    .drawer__menu {
        position: fixed;
        top: -200%;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #E6EDF4;
        z-index: 1000;
        transition: top 0.4s ease;
        padding: 80px 0 0 20px;
        box-sizing: border-box;
    }

    .drawer__menu.open {
        top: 0;
    }

    /* 背景のオーバーレイ */
    .drawer__bg {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        display: none;
        z-index: 999;
    }

    .drawer__bg.open {
        display: block;
    }

    /* メニュー内テキストのスタイル調整 */
    .nav-drawer__anchor {
        font-size: 18px;
        font-weight: 500;
        font-family: "Zen Maru Gothic", serif;
        color: #2C4C67;
        display: block;
        padding: 12px 0;
    }

    .nav-drawer__li {
        position: relative;
        padding-left: 15px;
        margin-left: 10px;
    }

    .nav-drawer__li::before {
        content: "";
        position: absolute;
        top: 23px;
        left: 0;
        width: 8px;
        height: 8px;
        background-image: url(../img/listmark-drower__blue.svg);
        background-size: contain;
        background-repeat: no-repeat;
    }


    .nav-drawer__top .nav-drawer__anchor,
    .nav-drawer__contact .nav-drawer__anchor {
        font-size: 20px;
    }
}


@media screen and (max-width: 450px) {

    .header-title a {
        font-size: 22px;
    }

    .nav-drawer__top .nav-drawer__anchor,
    .nav-drawer__contact .nav-drawer__anchor {
        font-size: 17px;
    }

    .nav-drawer__anchor {
        font-size: 16px;
    }
}


/*------------- フォームリンク --------------*/

@media screen and (min-width:851px) and (max-width:1159px) {

    .contact-link__text {
        font-size: 17px;
        line-height: 34px;
    }

    /* お問い合わせ・定期便のご注文はこちら ボタン */
    .btn-contact {
        width: 100%;
        max-width: 900px;
    }

    .btn-contact__1 {
        font-size: 29px;
    }
}


@media screen and (max-width: 850px) {

    .contact-link .inner {
        padding: 40px 0;
    }

    .contact-link__text {
        font-size: 18px;
        line-height: 30px;
    }

    /* お問い合わせ・定期便のご注文はこちら ボタン */
    .mv .btn-contact {
        bottom: -80px;
    }

    .btn-contact {
        width: 100%;
        height: 160px;
    }

    .btn-contact__1 {
        font-size: 26px;
        line-height: 36px;
    }

    .btn-contact__2 {
        font-size: 20px;
        padding-top: 15px;
    }

    .btn-contact__icon {
        right: 16px;
        width: 30px;
    }

    .btn-contact {
        background-position: bottom 10px left 5px;
        background-size: 18%;
    }
}


@media screen and (max-width: 450px) {

    .contact-link .inner {
        padding: 30px 0;
    }

    .contact-link__text {
        font-size: 16px;
        line-height: 28px;
    }

    /* お問い合わせ・定期便のご注文はこちら ボタン */
    .mv .btn-contact {
        bottom: -60px;
    }

    .btn-contact {
        height: 120px;
    }

    .btn-contact__1 {
        font-size: 22px;
        line-height: 30px;
    }

    .btn-contact__2 {
        font-size: 16px;
        padding-top: 10px;
    }

    .btn-contact__icon {
        right: 14px;
        width: 24px;
    }
}


/*------------- MV --------------*/

@media screen and (min-width:851px) and (max-width:1159px) {

    .mv-content {
        gap: 1vw;
    }

    .mv-title {
        font-size: 20px;
        line-height: 60px;
        margin: 1.5vw 0 0 6.2vw;
    }

    .mv-catch {
        font-size: 24px;
        line-height: 60px;
        padding: 0 50px 0 100px;
    }

    .mv-catch__1 {
        margin-bottom: 7px;
    }

    .mv-description {
        font-size: 16px;
        line-height: 30px;
        margin: 30px 0 30px 3.2vw;
    }

    .mv-points {
        margin-left: 3vw;
    }

    .mv-points img {
        width: 100px;
        height: auto;
        margin-right: 10px;
    }

    /* mv__image */
    .mv-image {
        height: 500px;
        border-radius: 0 0 0 250px;
        border-left: 20px solid #ffffff;
        border-bottom: 20px solid #ffffff;
        box-sizing: border-box;
        background-image: url(../img/mv.jpg);
        background-position: center;
        background-size: cover;
        position: relative;
    }

    .mv-logo {
        position: absolute;
        top: 88%;
        right: 10%;
        width: 250px;
    }

    .mv .btn-contact {
        width: 90%;
        position: absolute;
        bottom: -70px;
        left: 50%;
        transform: translateX(-50%);
    }
}



@media screen and (max-width: 850px) {

    .mv {
        padding-top: 50px;
        padding-bottom: 120px;
    }

    .mv-title {
        font-size: 34px;
        line-height: 30px;
        margin: 0 0 30px 0;
    }

    .mv-catch {
        font-size: 42px;
        line-height: 80px;
        padding: 0 150px 0 0;
        z-index: 3;
        position: relative;
        margin-left: calc(50% - 50vw);
        padding-left: calc(50vw - 50%);
    }

    .mv-description {
        font-size: 18px;
        line-height: 30px;
        margin: 20px auto 0 auto;
    }

    .mv-image {
        width: 100vw;
        height: 55vw;
        border-radius: 0;
        border-left: none;
        border-top: 8px solid #ffffff;
        border-bottom: 8px solid #ffffff;
        margin-top: -40px;
        z-index: 1;
        margin-left: calc(50% - 50vw);
        padding-left: calc(50vw - 50%);
        margin-right: calc(50% - 50vw);
        padding-right: calc(50vw - 50%);
    }

    .mv-logo {
        top: 92%;
        right: 8%;
        width: 200px;
    }

    .mv-points {
        justify-content: space-evenly;
        margin-left: 0;
        margin-top: 30px;
    }

    .mv-points img {
        width: 20%;
        height: auto;
    }

    .mv .btn-contact {
        width: 90%;
    }
}


@media screen and (max-width: 600px) {

    .mv-title {
        font-size: 26px;
        margin: 0 0 20px 0;
    }

    .mv-catch {
        font-size: 34px;
        line-height: 66px;
        padding: 0 34px 0 0;
        position: relative;
        margin-left: calc(50% - 50vw);
        padding-left: calc(50vw - 50%);
    }

    .mv-image {
        margin-top: -33px;
        height: 60vw;
    }

    .mv-logo {
        top: 90%;
        right: 5%;
        width: 150px;
    }

    .mv-points img {
        width: 30%;
    }

    .mv-points {
        justify-content: space-between;
        margin-left: 0;
        margin-top: 30px;
    }
}


@media screen and (max-width: 450px) {

    .mv {
        padding-top: 20px;
        padding-bottom: 100px;
    }

    .mv-title {
        font-size: 20px;
        line-height: 20px;
        margin: 20px 0 10px 0;
    }

    .mv-catch {
        font-size: 28px;
        line-height: 50px;
    }

    .mv-description {
        font-size: 15px;
        line-height: 24px;
        margin: 13px auto 0 auto;
    }

    .mv-image {
        margin-top: -25px;
    }

    .mv-logo {
        top: 88%;
        right: 8%;
        width: 100px;
    }

    .mv-points {
        margin-top: 20px;
    }
}



/*------------- オフィスコーヒー定期便とは？ --------------*/

@media screen and (min-width:851px) and (max-width:1159px) {

    .about h2::before {
        width: 80px;
        left: -95px;
    }

    .about h2::after {
        right: -90px;
        width: 70.5px;
    }

    .about-catch {
        font-size: 20px;
    }

    .about-contents__1 {
        align-items: flex-start;
    }

    .about-contents__1 p {
        font-size: 16px;
        line-height: 30px;
        width: 57%;
    }

    .about-contents__1 img {
        width: 40%;
        height: auto;
    }

    .about-contents__2 img {
        width: 40%;
        height: auto;
    }

    .about-contents__2-text {
        width: 55%;
    }

    .about-contents__2 h3 {
        font-size: 24px;
        line-height: 36px;
    }

    .about-contents__2 p {
        font-size: 16px;
        line-height: 30px;
    }

    .about-contents__attempt {
        width: 100%;
        border-radius: 50px;
        padding: 20px 15px 25px 15px;
    }

    p.about-contents__result {
        font-size: 22px;
    }
}


@media screen and (max-width: 850px) {

    .about {
        margin-top: 140px;
        margin-bottom: 80px;
    }

    .about h2::before {
        left: -58px;
        top: 65%;
        width: 60px;
    }

    .about h2::after {
        right: -68px;
        top: 66%;
        width: 67px;
    }

    .about-contents__1 {
        margin-top: 36px;
        padding-bottom: 50px;
    }

    .about-catch {
        font-size: 22px;
        line-height: 34px;
        margin: 34px auto 0 auto;
    }

    .about-contents__1 p {
        font-size: 18px;
        line-height: 34px;
        width: 100%;
    }

    .about-contents__1 img {
        width: 80%;
        display: block;
        height: auto;
        border-radius: 14px;
        margin-top: 30px;
        margin: 30px auto 0;
    }

    .about-contents__2 img {
        width: 80%;
        height: auto;
        display: block;
        margin: 0 auto;
        border-radius: 14px;
    }

    .about-contents__2 {
        padding-top: 50px;
    }

    .about-contents__2 h3 {
        font-size: 28px;
        line-height: 44px;
        margin: 30px 0 26px 0;
    }

    .about-contents__2 p {
        font-size: 20px;
        line-height: 34px;
        margin-bottom: 45px;
    }

    .about-contents__attempt {
        border-radius: 40px;
        width: 100%;
        padding: 28px 27px 30px 27px;
    }

    .about-contents__2 dl dt {
        font-size: 20px;
    }

    .about-contents__2 dl dd {
        line-height: 30px;
        margin-bottom: 12px;
    }

    .about-contents__2 dl dd:last-child {
        margin-bottom: 0;
    }

    p.about-contents__result {
        font-size: 24px;
        line-height: 44px;
    }
}


@media screen and (max-width: 500px) {

    .about-catch {
        font-size: 20px;
        line-height: 32px;
    }
}


@media screen and (max-width: 450px) {

    .about {
        margin-top: 95px;
        margin-bottom: 60px;
    }

    .about h2::before {
        left: -50px;
        top: 65%;
        width: 48px;
    }

    .about h2::after {
        right: -52px;
        top: 60%;
        width: 45px;
    }

    .about-contents__1 {
        margin-top: 24px;
        padding-bottom: 40px;
    }

    .about-catch {
        font-size: 16px;
        line-height: 30px;
        margin: 28px auto 0 auto;
    }

    .about-contents__1 p {
        font-size: 16px;
        line-height: 30px;
    }

    .about-contents__1 img {
        margin-top: 24px;
    }

    .about-contents__2 {
        padding-top: 40px;
    }

    .about-contents__2 h3 {
        font-size: 24px;
        line-height: 40px;
        margin: 24px 0 20px 0;
    }

    .about-contents__2 p {
        font-size: 18px;
        line-height: 32px;
        margin-bottom: 40px;
    }

    .about-contents__2 dl dt {
        font-size: 18px;
    }

    .about-contents__2 dl dd {
        font-size: 16px;
        line-height: 28px;
    }

    p.about-contents__result {
        font-size: 21px;
    }

    .about-contents__1 img {
        width: 100%;
    }

    .about-contents__2 img {
        width: 100%;
    }
}



/*------------- こんなお悩みありませんか？ --------------*/

@media screen and (min-width:851px) and (max-width:1159px) {

    .worries-container {
        border-radius: 80px;
        width: 100%;
        padding: 50px 15px 40px 15px;
    }

    .worries-summary {
        font-size: 32px;
    }
}


@media screen and (max-width: 850px) {

    .worries {
        margin: 100px auto 0 auto;
    }

    .worries-container {
        border-radius: 30px;
        width: 100%;
        padding: 50px 20px 40px 20px;
    }

    .worries-title {
        height: 55px;
        padding: 0 37px;
    }

    .worries-title p {
        font-size: 23px;
        line-height: 54px;
    }

    .worries-title::before {
        top: 12px;
        left: -5px;
        width: 35px;
        height: 44px;
    }

    .worries-title::before {
        left: -5px;
    }

    .worries-contents {
        display: block;
    }

    .worries-contents ul li {
        font-size: 18px;
    }

    .worries-container::after {
        bottom: -47px;
    }

    .worries-summary {
        font-size: 30px;
        line-height: 40px;
    }
}


@media screen and (max-width: 450px) {

    .worries {
        margin: 80px auto 0 auto;
    }

    .worries-title::before {
        left: 0;
        width: 30px;
        height: 38px;
    }

    .worries-title p {
        font-size: 18px;
        line-height: 54px;
    }

    .worries-contents ul li {
        font-size: 16px;
    }

    .worries-container {
        border-radius: 30px;
        width: 100%;
        padding: 45px 15px 35px 15px;
    }

    .worries-summary {
        font-size: 22px;
        line-height: 34px;
        margin-top: 35px;
    }

    .worries-summary::before {
        left: -30px;
    }

    .worries-summary::after {
        right: -30px;
    }
}



/*------------- オフィスコーヒー定期便のメリット --------------*/

@media screen and (min-width:851px) and (max-width:1159px) {

    .merit-contents {
        width: 30%;
        padding: 24px 15px 32px 15px;
    }

    .merit-contents h3 {
        font-size: 18px;
        line-height: 30px;
    }

    .merit-catch {
        font-size: 28px;
        width: 700px;
    }
}


@media screen and (max-width: 850px) {

    .merit {
        margin-top: 70px;
        padding: 60px 0 100px 0;
    }

    .merit h2 {
        margin-bottom: 45px;
    }

    .merit-contents {
        width: 80%;
        margin: 0 auto 45px auto;
    }

    .merit-contents:last-child {
        margin-bottom: 0;
    }

    .merit-contents h3 {
        font-size: 22px;
        line-height: 32px;
    }

    .merit-catch {
        font-size: 27px;
        border-radius: 60px;
        width: 85%;
        max-width: 500px;
        height: 95px;
        line-height: 33px;
    }
}


@media screen and (max-width: 450px) {

    .merit {
        margin-top: 60px;
        padding: 50px 0 80px 0;
    }

    .merit h2 {
        margin-bottom: 30px;
    }

    .merit-contents h3 {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 15px;
    }

    .merit-contents__1::before,
    .merit-contents__2::before,
    .merit-contents__3::before {
        content: "";
        position: absolute;
        top: -15px;
        left: -15px;
        width: 55px;
        height: 46px;
    }

    .merit-contents {
        padding: 24px 25px 32px 25px;
    }

    .merit-catch {
        font-size: 22px;
        width: 90%;
        height: 80px;
        line-height: 28px;
    }
}


/*------------- and coffeeが美味しい理由 --------------*/

@media screen and (min-width:851px) and (max-width:1159px) {

    .reason-contents img {
        width: 45%;
        height: auto;
    }

    .reason-text {
        width: 50%;
    }
}


@media screen and (max-width: 850px) {

    .reason-contents {
        width: 100%;
        padding: 5vw 6vw;
        margin-bottom: 30px;
    }

    .reason-contents img {
        width: 100%;
        height: auto;
    }

    .reason-text {
        width: 100%;
    }

    .reason-contents h3 {
        font-size: 22px;
        margin-top: 20px;
    }

    .reason-contents p {
        font-size: 16px;
        line-height: 28px;
    }
}


@media screen and (max-width: 450px) {

    .reason {
        margin: 100px auto 100px auto;
    }

    .reason-contents {
        padding: 20px 25px;
        margin-bottom: 20px;
    }

    .reason-contents h3 {
        font-size: 20px;
    }
}


/*------------- アンドコーヒーができるまで --------------*/

@media screen and (min-width:851px) and (max-width:1159px) {

    .process-contents {
        width: 27%;
    }

    .process-contents img {
        width: 180px;
        height: 180px;
    }

    .process-arrow {
        width: 50px;
        margin-top: 90px;
    }

    .process-contents p {
        font-size: 17px;
        line-height: 30px;
        margin-top: 10px;
    }
}


@media screen and (max-width: 850px) {

    .process {
        margin: 0 auto 80px auto;
    }

    .process-contents {
        width: 400px;
        margin: 0 auto;
    }

    .process-text {
        font-size: 17px;
        line-height: 30px;
        margin: 30px auto;
    }

    .process-contents p {
        font-size: 17px;
        line-height: 30px;
        margin-top: 10px;
    }

    .process-arrow {
        transform: rotate(90deg);
        display: block;
        margin: 30px auto 40px auto;
    }
}


@media screen and (max-width: 450px) {

    .process-contents {
        width: 100%;
    }
}



/*------------- 定期便コース --------------*/

@media screen and (min-width:851px) and (max-width:1159px) {

    .plan-contents {
        width: 49%;
        padding: 22px 20px 32px 20px;
    }

    .plan-amount {
        width: 330px;
    }

    .plan-amount dl dt {
        font-size: 14px;
        width: 115px;
    }

    .plan-amount dl dd {
        font-size: 16px;
        font-weight: 700;
        color: #2C4C67;
    }

    .plan-package {
        width: 100%;
        justify-content: space-evenly;
    }

    .plan-package img {
        width: 45%;
        height: auto;
    }

    /* オリジナルラベル */
    .original-contents {
        padding: 30px 25px 40px 25px;
    }


.original-amount {
    font-size: 16px;
}

.original-cost {
    display: block;
}

.original-cost__text{
    margin-bottom: 7px;
}


    .order-flow img {
        width: 35%;
        height: auto;
    }

    .order-flow__contents {
        width: 62%;
    }

    .order-flow__contents h3 {
        font-size: 26px;
    }

    .step-text p {
        font-size: 17px;
        line-height: 30px;
    }

    .btn-order {
        font-size: 20px;
        width: 260px;
        height: 50px;
        line-height: 49px;
    }
}


@media screen and (max-width: 850px) {

    .plan {
        padding: 65px 0 60px 0;
    }

    .plan-catch {
        line-height: 34px;
    }

    .plan-catch::before {
        bottom: 10px;
        left: -35px;
    }

    .plan-catch::after {
        bottom: 10px;
        right: -35px;
    }

    .plan-container {
        margin-top: 30px;
    }

    .plan-contents {
        width: 100%;
        max-width: 500px;
        padding: 22px 30px 32px 30px;
        margin: 0 auto 20px auto;
    }

    .plan-contents h3 {
        font-size: 28px;
    }

    .plan-contents:last-child {
        margin: 0 auto;
    }

    .plan-price {
        font-size: 38px;
    }

    .plan-yen {
        font-size: 24px;
        margin-left: 3px;
    }

    .plan-notes {
        font-size: 15px;
    }

    .plan-amount {
        width: 100%;
        max-width: 360px;
    }

    .plan-amount dl dt {
        font-size: 14px;
        width: 110px;
    }

    /* パッケージ */
    .plan-package {
        width: 100%;
        margin: 50px auto;
    }

    .plan-package-text {
        font-size: 22px;
    }

    .plan-package img {
        width: 80%;
        height: auto;
        border-radius: 20px;
        margin: 20px auto 0 auto;
    }

    /* オリジナルラベル */
    .original-contents {
        padding: 22px 30px 32px 30px;
        max-width: 500px;
        margin: 0 auto;
    }

    .original-contents h3 {
        text-align: center;
        font-size: 28px;
    }

    .original-price {
        display: block;
        margin-bottom: 0;
    }

    .original-contents .plan-price {
        text-align: center;
    }

    .original-amount {
        font-size: 18px;
        line-height: 28px;
        width: 300px;
        margin: 10px auto 16px auto;
        padding: 10px 0 12px 0;
    }

    .plan-amount__drip dd:first-child::after {
        bottom: -2px;
        left: 38px;
    }

    .plan-amount__drip::after {
        bottom: -2px;
        left: 160px;
    }

    .original-explanation {
        font-size: 17px;
        line-height: 28px;
    }

    .original-contents dl {
        display: block;
    }

    .original-contents dl dt {
        margin-right: 0;
        margin-bottom: 7px;
    }

    .original-contents dl dd {
        margin: 0 0 4px 0;
    }

.original-cost {
    display: block;
    margin-top: 10px;
        margin-bottom: 15px;
}

.original-cost__text{
    margin-bottom: 7px;
    text-align: center;
}

.original-cost__ul {
    display: block;
    width: fit-content;
    margin: 0 auto;
    line-height: 30px;
}

    /* オリジナルラベルコーヒーご注文の流れ */
    .order-flow__contents {
        width: 100%;
    }

    .order-flow__contents h3 {
        text-align: center;
        margin-bottom: 30px;
    }

    .order-flow img {
        width: 70%;
        height: auto;
        margin: 0 auto 25px auto;
    }
}


@media screen and (max-width: 450px) {

    .plan {
        padding: 55px 0 60px 0;
    }

    .plan-catch {
        font-size: 20px;
        line-height: 30px;
    }

    .plan-container {
        margin-top: 20px;
    }

    .plan-contents h3 {
        font-size: 24px;
    }

    .plan-criterion {
        font-size: 16px;
        padding-bottom: 10px;
    }

    .plan-price {
        line-height: 0px;
    }

    .plan-amount {
        width: 100%;
    }

    .plan-amount dl dt {
        font-size: 12px;
        width: 95px;
    }

    .plan-amount dl dd {
        font-size: 14px;
        font-weight: 700;
        color: #2C4C67;
    }

    .plan-amount-notes {
        font-size: 3.8vw;
    }

    .plan-amount__drip dd:first-child::after {
        font-size: 12px;
        bottom: 0px;
        left: 28px;
    }

    .plan-amount__drip::after {
        font-size: 12px;
        bottom: 0px;
        left: 135px;
    }

    /* パッケージ */
    .plan-package-text {
        font-size: 20px;
        line-height: 32px;
        margin: 30px auto 40px auto;
    }

    p.plan__note {
        font-size: 14px;
        line-height: 28px;
    }

    /* オリジナル */
    .original-contents h3 {
        font-size: 24px;
        line-height: 30px;
    }

.original-cost__ul .pink{
    margin-left: 30px;
}

    .original-amount {
        width: 100%;
    }

    .order-flow__contents h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .order-flow img {
        width: 80%;
    }

    .step-number {
        font-size: 20px;
        width: 35px;
        height: 35px;
        line-height: 35px;
        top: 2px;
    }

    .step-text p {
        font-size: 17px;
        line-height: 32px;
    }

    .btn-order {
        font-size: 19px;
        width: 90%;
        height: 55px;
        line-height: 54px;
        margin-top: 15px;
    }

    .step-text small {
        font-size: 14px;
        line-height: 28px;
    }

    p.order-flow__note {
        font-size: 14px;
        line-height: 28px;
    }

    .order-flow .step-line {
        left: 12px;
        width: 5px;
    }
}



/*------------- 商品詳細 --------------*/

@media screen and (min-width:851px) and (max-width:1159px) {

    .detail-contents__1 {
        width: 42%;
    }

    .detail-contents__2 {
        width: 52%;
    }

    /* お届けコーヒーの種類について */
    .kinds-container {
        justify-content: space-evenly;
    }

    .kinds-contents dl dt {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .kinds-contents dl dd {
        font-size: 14px;
        line-height: 20px;
    }
}


@media screen and (max-width: 850px) {

    .detail {
        margin-top: 60px;
    }

    .detail-contents__1 {
        width: 100%;
        margin-bottom: 40px;
    }

    .detail-contents__2 {
        width: 100%;
    }

    .detail h3 {
        margin-bottom: 10px;
    }

    /* お届けコーヒーの種類について */

    .kinds-container__850 {
        display: block;
        margin-top: 30px;
    }

    .kinds-inner__850 {
        display: flex;
        justify-content: space-between;
        width: 100%;
        max-width: 550px;
        margin: 0 auto 30px auto;
    }

    .kinds-contents dl dt {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .kinds-contents dl dd {
        font-size: 14px;
        line-height: 20px;
    }

    .kinds-contents__border {
        height: 115px;
    }

    .kinds-contents dl dd.expiration {
        margin-top: 5px;
    }
}


@media screen and (max-width: 450px) {

    .kinds-inner__450 {
        display: flex;
        justify-content: space-between;
        width: 100%;
        max-width: 250px;
        margin: 0 auto 20px auto;
    }

    .kinds-container__850 {
        display: none;
    }

    .kinds-container__450 {
        display: block;
        margin-top: 20px;
    }
}



/*------------- 導入事例 --------------*/

@media screen and (min-width:851px) and (max-width:1159px) {

    .examples-contents {
        width: 50%;
    }

    .examples-comment {
        padding: 25px 25px;
    }

    .examples-comment__blue {
        width: 350px;
    }

    .examples-comment__blue::after {
        right: 35%;
    }

    .examples-comment__yellow {
        top: -90px;
    }

    .examples-comment__yellow::after {
        left: 30%;
    }

    .examples-comment__pink {
        width: 375px;
        bottom: -30px;
        left: 28%;
        transform: translateX(-50%);
    }

    .examples-comment__pink::after {
        right: 5%;
    }

    .examples-name {
        font-size: 14px;
        line-height: 20px;
    }
}


@media screen and (max-width: 850px) {

    .examples {
        margin: 100px auto 0 auto;
    }

    .examples-contents {
        width: 100%;
        margin: 40px auto 18px auto;
        padding: 150px 0 0 0;
    }

    .examples img {
        width: 80%;
        display: block;
        margin: 0 auto;
    }

    .examples-comment {
        padding: 25px 30px;
    }

    .examples-comment__blue {
        width: 380px;
        top: 0;
        left: 0;
    }

    .examples-comment__blue::after {
        left: 80px;
    }

    .examples-comment__yellow {
        width: 320px;
        top: 80px;
    }

    .examples-comment__yellow::after {
        left: 70%;
    }

    .examples-comment__pink {
        width: 450px;
        bottom: 65px;
        left: 70px;
    }

    .examples-comment__pink::after {
        left: 45%;
    }

    .examples-name {
        margin-top: 130px;
    }
}


@media screen and (max-width: 785px) {

    .examples-contents {
        padding: 200px 0 0 0;
    }

    .examples-comment__blue::after {
        left: 45px;
    }

    .examples-comment__yellow {
        top: 145px;
    }
}


@media screen and (max-width: 680px) {

    .examples-contents {
        padding: 220px 0px 0px;
    }

    .examples-comment__pink {
        left: 60px;
    }

    .examples-comment__pink::after {
        left: 33%;
    }
}


@media screen and (max-width: 600px) {

    .examples {
        margin: 100px auto 0 auto;
    }

    .examples-contents {
        padding: 300px 0 0 0;
    }

    .examples-comment__blue {
        width: 360px;
    }

    .examples-comment__blue::after {
        left: 40px;
    }

    .examples-comment__yellow {
        width: 300px;
        top: 180px;
    }

    .examples-comment__pink {
        width: 400px;
        left: 0;
    }

    .examples-comment__pink::after {
        left: 30%;
    }

    .examples-name {
        margin-top: 155px;
    }
}


@media screen and (max-width: 450px) {

    .examples-contents {
        padding: 290px 0 0 0;
    }

    .examples-comment__blue {
        width: 100%;
    }

    .examples-comment__yellow {
        width: 90%;
        top: 175px;
    }

    .examples-comment__pink {
        width: 100%;
    }
}

@media screen and (max-width: 400px) {

    .examples-contents {
        padding: 350px 0 0 0;
    }

    .examples-comment__yellow {
        top: 200px;
    }

    .examples-comment__pink {
        bottom: 82px;
    }

    .examples-name {
        margin-top: 170px;
    }
}


/*------------- 注文方法 お支払い方法 --------------*/

@media screen and (min-width:851px) and (max-width:1159px) {

    .order {
        width: 38%;
    }

    .order p {
        font-size: 17px;
        line-height: 32px;
    }

    .payment {
        width: 55%;
    }

    .order-link {
        font-size: 20px;
        background-color: #EB737B;
        width: 270px;
    }

    .payment ul li {
        font-size: 17px;
    }
}


@media screen and (max-width: 850px) {

    .method {
        margin-top: 100px;
    }

    .order {
        width: 100%;
        margin-bottom: 50px;
    }

    .payment {
        width: 100%;
    }

    .payment ul li {
        font-size: 17px;
        line-height: 26px;
    }
}


@media screen and (max-width: 450px) {

    .method {
        margin-top: 80px;
        padding: 50px 0;
    }

    .method h2 {
        margin-bottom: 30px;
    }

    .order p {
        font-size: 17px;
        line-height: 32px;
    }

    .order-link {
        font-size: 20px;
        width: 90%;
        height: 55px;
        line-height: 54px;
        margin: 25px auto 0 auto;
    }

    .payment ul li {
        font-size: 16px;
        line-height: 24px;
        padding-left: 18px;
    }

    .payment ul li::before {
        top: 8px;
        width: 10px;
        height: 10px;
    }
}



/*------------- よくあるご質問 --------------*/

@media screen and (min-width:851px) and (max-width:1159px) {

    .faq dl {
        width: 100%;
        max-width: 900px;
    }
}

@media screen and (max-width: 850px) {

    .faq dl {
        width: 100%;
        padding: 25px 20px 32px 20px;
        box-sizing: border-box;
        margin-bottom: 24px;
    }

    .faq dl dt::before {
        font-size: 24px;
        width: 38px;
        height: 38px;
        line-height: 37px;
    }

    .faq dl dd::before {
        font-size: 24px;
        width: 38px;
        height: 38px;
        line-height: 37px;
    }

    .faq dl dt {
        font-size: 18px;
        padding-bottom: 15px;
    }

    .faq dl dd {
        font-size: 16px;
        line-height: 28px;
        margin-top: 20px;
    }
}


@media screen and (max-width: 450px) {

    .faq {
        margin: 60px auto 80px auto;
    }

    .faq h2 {
        margin-bottom: 30px;
    }

    .faq dl dt {
        font-size: 16px;
        line-height: 26px;
        padding-bottom: 15px;
        padding-left: 40px;
    }

    .faq dl dt::before {
        font-size: 22px;
        width: 30px;
        height: 30px;
        line-height: 29px;
    }

    .faq dl dd::before {
        font-size: 22px;
        width: 30px;
        height: 30px;
        line-height: 29px;
    }

    .faq dl dd {
        padding-left: 40px;
    }
}



/*------------- 作っているのはこんな場所です --------------*/

@media screen and (min-width:851px) and (max-width:1159px) {

    .company-text {
        width: 50%;
    }

    .company-text h2 {
        margin-bottom: 30px;
    }

    .company img {
        width: 45%;
        height: auto;
    }
}


@media screen and (max-width: 850px) {

    .company {
        margin: 60px auto 80px auto;
    }

    .company-text {
        width: fit-content;
    }

    .company-text h2 {
        margin-bottom: 40px;
        text-align: center;
    }

    .company img {
        width: 90%;
        max-width: 500px;
        margin: 0 auto 30px auto;
    }


}


@media screen and (max-width: 450px) {

    .company-text h2 {
        margin-bottom: 30px;
        line-height: 41px;
    }

    .company img {
        width: 100%;
    }

    .company-text p {
        font-size: 16px;
        line-height: 30px;
        margin-bottom: 20px;
    }

    .company-text address {
        font-size: 16px;
        line-height: 28px;
    }
}



/*------------- フッター --------------*/

@media screen and (min-width:851px) and (max-width:1159px) {

    .footer-container {
        width: 100%;
    }

    .footer-illustration__1 {
        width: 80px;
        bottom: 40px;
        left: 0;
    }

    .footer-illustration__2 {
        width: 130px;
        bottom: 0;
        left: 100px;
    }
}


@media screen and (max-width: 850px) {

    a.footer-title {
        font-size: 36px;
        margin-bottom: 25px;
    }

    .footer-office {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .footer-container {
        width: 100%;
    }

    .footer-container address {
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 30px;
    }

    .footer-container ul li {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .copyright {
        margin: 180px auto 0 auto;
    }

    .footer-illustration__1 {
        width: 65px;
        height: auto;
        bottom: 70px;
        left: 15px;
    }

    .footer-illustration__2 {
        width: 95px;
        bottom: 50px;
        left: 90px;
    }
}


@media screen and (max-width: 450px) {

    a.footer-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .footer-office {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .footer-container address {
        font-size: 14px !important;
        line-height: 24px;
    }

    .footer-container ul li {
        font-size: 16px !important;
        margin-bottom: 12px;
        padding-left: 15px;
    }

    .footer-container ul li::before {
        top: 14px;
        left: 0;
        width: 10px;
        height: 10px;
    }

    .copyright {
        font-size: 13px;
        margin: 145px auto 0 auto;
    }

    .footer-illustration__1 {
        width: 49px;
        height: auto;
        left: 5px;
    }

    .footer-illustration__2 {
        width: 79px;
        left: 61px;
    }
}



/*-------------------------------- 
定期便のお問い合わせ・ご注文
-----------------------------------*/

@media screen and (min-width:851px) and (max-width:1159px) {

    .page-title h1 {
        font-size: 38px;
    }

    .contact-explanation__p {
        font-size: 17px;
        line-height: 34px;
    }

    .contact-inner {
        width: 90%;
    }

    /* .course-group {
        display: block;
        width: 100%;
        border-bottom: 1px solid #B7AE9E;
        padding: 15px 0;
    }

    .course-group legend {
        width: 100%;
    }

    .radio-container {
        display: flex;
        width: 100%;
        margin-top: 15px;
    } */
}


@media screen and (max-width: 850px) {

    .page-title {
        height: 180px;
    }

    .page-title h1 {
        font-size: 28px;
    }

    .contact-explanation__p {
        font-size: 16px;
        line-height: 32px;
    }

    .contact-explanation {
        padding: 70px 0;
    }

    .contact-inner {
        width: 90%;
    }

    .contact-form {
        padding: 80px 0;
    }

    .wrapper-contact h2 {
        font-size: 27px;
    }
/* 
    .form-group label {
        font-size: 17px;
    }

    .inquiry-group {
        column-gap: 20px;
    }

    .course-group {
        display: block;
    }

    .course-group legend {
        font-size: 17px;
        width: 100%;
        margin-bottom: 10px;
    }

    .form-group input[type="text"],
    .form-group input[type="tel"],
    .form-group input[type="email"],
    .form-group textarea,
    .form-group select {
        padding: 15px 20px;
    }

    button[type="submit"] {
        width: 90%;
        max-width: 400px;
    } */
}


/* @media screen and (max-width: 640px) {

    .radio-container {
        display: block;
    }
} */


@media screen and (max-width: 450px) {

    .page-title {
        height: 170px;
    }

    .page-title h1 {
        font-size: 24px;
        line-height: 36px;
    }

    .contact-explanation__p {
        font-size: 15px;
        line-height: 30px;
    }

    .contact-explanation {
        padding: 55px 0;
    }

    .contact-form {
        padding: 60px 0;
    }

    .wrapper-contact h2 {
        font-size: 6.3vw;
    }
/* 
    .form-group label {
        font-size: 16px;
    }

    .form-group input[type="text"],
    .form-group input[type="tel"],
    .form-group input[type="email"],
    .form-group textarea,
    .form-group select {
        padding: 15px 10px;
    }

    .inquiry-group {
        display: block;
    }

    .inquiry-group .checkbox-group {
        margin-bottom: 5px;
    }

    .inquiry-group .checkbox-group:last-child {
        margin-bottom: 0;
    }

    .course-group:nth-of-type(1) {
        padding: 0 0 15px 0;
    }

    button[type="submit"] {
        font-size: 22px;
        width: 90%;
        height: 60px;
    }

    #error-message p {
        font-size: 14px;
        margin-bottom: 3px;
    }

    #error-message {
        margin-bottom: 15px;
    } */
}



/*----------------------------------------- 
オリジナルラベルコーヒーのお問い合わせ・ご注文
------------------------------------------*/

@media screen and (max-width: 850px) {

    .contact-explanation h2 {
        font-size: 26px;
        line-height: 43px;
    }
/* 
    .form-group input[type="text"]#quantity {
        width: 200px;
    }

    .quantity__small {
        display: block;
        margin-left: 0;
    }

    .contact-original .inquiry-group {
        display: block;
    } */
}


@media screen and (max-width: 450px) {

    .contact-explanation h2 {
        margin-top: 50px;
    }

    .contact-explanation h2 {
        font-size: 23px;
        line-height: 37px;
    }

    .step-text {
        margin-left: 45px;
    }

    .step-text p {
        font-size: 16px;
        line-height: 28px;
    }

    .step-number {
        font-size: 18px;
        width: 30px;
        height: 30px;
        line-height: 30px;
    }

    .contact-explanation .step-line {
        top: 32px;
        left: 12px;
        width: 5px;
    }

    /* .contact-original .form-group .inquiry-group label {
        font-size: 14px;
    }

    .quantity__small {
        font-size: 13px;
    } */
}



/*----------------------------------------- 
thanksページ
------------------------------------------*/

@media screen and (max-width: 850px) {

    .sec-thanks {
        padding: 60px 0;
    }

    .sec-thanks h1 {
        font-size: 23px;
    }

    .sec-thanks p {
        font-size: 16px;
    }
}


@media screen and (max-width: 450px) {

    .sec-thanks {
        padding: 50px 0;
    }

    .sec-thanks h1 {
        margin-bottom: 20px;
    }

    .sec-thanks p {
        font-size: 14px;
        line-height: 26px;
    }

    .btn-top {
        font-size: 22px;
        width: 90%;
        max-width: 400px;
        margin: 30px auto 0 auto;
    }
}