@charset "UTF-8";

/**
 *
 * CSSリセット、再定義
 *
**/


*,
::before,
::after {
    margin: 0;
    padding: 0;
    border: 0;
    -webkit-box-sizing: border-box;
    /*Safari*/
    -moz-box-sizing: border-box;
    /*Firefox*/
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    /*2*/
    -ms-text-size-adjust: 100%;
    /*1*/
    -webkit-text-size-adjust: 100%;
    /*1*/
    margin: 0;
    padding: 0;
    vertical-align: baseline;

}

body {
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/*リストスタイルを消去*/
ul,
ol {
    list-style: none;
}

/*デフォルトでcollapse*/
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/**
  * IE9+用に、displayプロパティを定義。
  * 1. Edge, IE, Firefox用、details要素とsummary要素に「display: block;」を定義。
  * 2. IE, Firefox用、main要素に「display: block;」を定義。
 */
article,
aside,
details,
/* 1 */
figcaption,
figure,
footer,
header,
main,
/* 2 */
menu,
nav,
section,
summary {
    /* 1 */
    display: block;
}


/*-------------------------------
    フォーム類のスタイルをリセットする
-------------------------------*/
input,
textarea,
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    /*Chromeのフォーカス時アウトラインを削除*/
    border: none;
    border-radius: 0;
    background: none;
    box-shadow: none;
    resize: none;
}

select {
    /*Firefoxのセレクト矢印を削除*/
    text-indent: .01px;
    text-overflow: "";
}

select::-ms-expand {
    /*IEのセレクト装飾を非表示*/
    display: none;
}

textarea {
    overflow: auto;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    border: 0;
    cursor: pointer;
}

[disabled] {
    cursor: default;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

button:-moz-focusring,
input:-moz-focusring {
    outline: 1px dotted ButtonText;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/*-------------------------------
    テキスト・イメージ類スタイル
-------------------------------*/
a {
    background-color: transparent;
    /*IE10のリンクバックグラウンドカラーを透明にする*/
    text-decoration: none;
}

.btn a {
    text-decoration: none;
}

a:active,
a:hover {
    outline: 0;
}

b,
strong {
    font-weight: bold;
}

img {
    border-style: none;
    /*リンク内画像のborderを消去*/
    vertical-align: bottom;
    /*画像下のスキマを消去*/
}

svg:not(:root) {
    overflow: hidden;
}

/**
 * 再定義
**/

body {
    color: #231815;
    font-family: 'Yu Gothic', '游ゴシック', 'YuGothic', '游ゴシック体', 'Hiragino Kaku Gothic ProN', 'MS PGothic', 'メイリオ', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    font-style: normal;
    line-height: 1.6rem;
    letter-spacing: 0px;
    background: #ffffff;
}

table {
    color: #231815;
    font-family: 'Yu Gothic', '游ゴシック', 'YuGothic', '游ゴシック体', 'Hiragino Kaku Gothic ProN', 'MS PGothic', 'メイリオ', sans-serif;
    font-size: 100%;
    line-height: 1.6em;
    letter-spacing: 0px;
    empty-cells: show;
}

table td,
table td {
    empty-cells: show;
}

a {
    color: #231815;
    text-decoration: none;
}

a:hover {
    color: #231815;
    text-decoration: underline;
}

img {
    border: none;
}

em {
    font-style: normal;
}


input[type="submit"],
input[type="text"],
input[type="image"] {
    -webkit-appearance: none;
    border-radius: 0;
}








/**
 *
 * 汎用スタイルシート
 *
**/
.txt_center {
    text-align: center;
}

.mb20 {
    margin-bottom: 20px;
}

.mb30 {
    margin-bottom: 30px;
}

.mb80 {
    margin-bottom: 80px;
}

.fs120 {
    font-size: 1.20rem;
}

.breadcrumb {
    text-align: left;
    font-size: 0.9em;
}

/**
 * SP表示
**/
.sp_disp {
    display: none !important;
}

@media only screen and (max-width: 480px) {
    br.sp_none {
        display: none;
    }

    .sp_none {
        display: none !important;
    }

    .tab_none {
        display: block;
    }

    .pc_none {
        display: block;
    }

    .center {
        text-align: center;
    }
}

@media screen and (min-width: 481px) and (max-width: 1024px) {
    br.tab_none {
        display: none;
    }

    .tab_none {
        display: none;
    }

    .sp_none {
        display: block;
    }
}

@media only screen and (min-width: 1025px) {
    br.pc_none {
        display: none;
    }

    .pc_none {
        display: none;
    }

    .tab_none {
        display: block;
    }

    .sp_none {
        display: block;
    }
}

/**
 * ライン
**/
hr.line {
    margin: 0 auto;
    width: 100%;
    max-width: 1000px;
    height: 0;
    line-height: 0;
    border: none;
    border-bottom: 2px solid #b6b6b6;
    clear: both;
}

/**
 * フォントファミリー
**/
.mincho {
    font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", YuMincho, '游明朝', "HG明朝E", serif;
    font-weight: 100
}

.font_ryumin {
    font-family: a-otf-ryumin-pr6n, serif;
    font-weight: 300;
    font-style: normal;
}

.font_livory {
    font-family: livory, serif;
    font-weight: 400;
    font-style: normal;
}

.font_gothic {
    font-family: tbudgothic-std, sans-serif;
    font-weight: 400;
    font-style: normal;
}

.font_bold {
    font-family: tbudgothic-std, sans-serif;
    font-weight: 900;
    font-style: normal;
}

.font_yugo {
    font-family: 'Yu Gothic', '游ゴシック', 'YuGothic', '游ゴシック体', 'Hiragino Kaku Gothic ProN', 'MS PGothic', 'メイリオ', sans-serif;
}

/**
 * line-height
**/

.lh160 {
    line-height: 160%;
}

.purple {
    color: #c2699f;
}

/**
 * フォントウェイト
**/
.bold {
    font-weight: bold;
}

/**
 * フォントサイズ
**/
/* font */

.fs120 {
    font-size: 1.20rem !important;
}

.fs145 {
    font-size: 1.45rem !important;
}

.fs230 {
    font-size: 2.30rem !important;
}

@media(max-width:480px) {

    .fs180_sp {
        font-size: 1.80rem !important;
    }

    .fs145 {
        font-size: 1.5rem !important;
        letter-spacing: 0.03em;
    }
}

/**
 * テキストアライン
**/
@media(max-width:1024px) {
    .txt_left_sp {
        text-align: left !important;
    }
}

.txt_center {
    text-align: center !important;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .txt_center_tab {
        text-align: center !important;
    }
}

@media(min-width:1025px) {
    .txt_center_pc {
        text-align: center !important;
    }
}

.txt_center img {
    margin-left: auto !important;
    margin-right: auto !important;
}

/**
 * マージン
**/

.mb20 {
    margin-bottom: 20px !important;
}

.mb30 {
    margin-bottom: 30px !important;
    letter-spacing: 2px;
}

.mb40 {
    margin-bottom: 40px !important;
}

.mb50 {
    margin-bottom: 50px !important;
}

@media(max-width:480px) {
    .mb40_sp {
        margin-bottom: 40px !important;
    }
    .mb40 {
      margin-bottom: 20px!important;
    }

}

/**
 * パディング
**/

.pt10 {
    padding-top: 10px !important;
}

.pb40 {
    padding-bottom: 40px !important;
}


/*
*inner
*/
.inner1 {
    width: 880px;
    max-width: 94%;
    margin: 0 auto;
}

.inner2 {
    width: 1000px;
    max-width: 94%;
    margin: 0 auto;
}

.inner3 {
    width: 1280px;
    max-width: 94%;
    margin: 0 auto;
}

.inner4 {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

/**
 * クリア関連
**/
.clear {
    clear: both;
}

.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
}

.clearfix {
    min-height: 1px !important;
}

* html .clearfix {
    height: 1px !important;
}


/**
 * ラッパー
**/

#wrapper {
    overflow: hidden;
    position: relative;
}

/**
 * コンテンツ共通
**/

#content {
    width: 100%;
    color: #231815;
    overflow: hidden;
}

#content img {
    max-width: 100%;
    height: auto;
    display: block;
}


.textBtn {
    background: #ffffff;
    width: 100%;
    margin: auto;
    padding: 10px;
    text-align: center;
    color: #231815;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.5rem;
    box-shadow: 3px 2px 0px 2px #9D798B;
}

.textBtn:hover {
    opacity: 0.5;
}

.textBtn._soldout{
  background: #bfbfbf;
  color: #231815;
  -webkit-box-shadow: 3px 2px 0px 2px #898989;
  box-shadow: 3px 2px 0px 2px #898989;
}

.textBtn._soldout:hover{
  opacity: 1;
}

.textBtn_orange {
    display: block;
    line-height: 1;
    text-align: center;
    background: #eed16d;
    border-radius: 8px;
    color: #231815;
    padding: 11px 15px;
    margin: auto;
    width: 347px;
    font-weight: bold;
    font-size: 1.4rem;
    letter-spacing: 0.9px;
    box-shadow: 3px 3px 0px 2px #604c00;
    max-width: 93%;
}

.textBtn_orange a:hover {
    text-decoration: none !important;
}

.btn a:hover {
    text-decoration: none !important;
}

.icon1 {
    background: url(../img/icon1.png) center left no-repeat;
    padding: 5px 20px 2px;
}

.icon1_2 {
    background: url(../img/icon1_2.png) center left no-repeat;
    padding: 5px 20px 2px;
}

.icon2 {
    background: url(../img/icon2.png) center left no-repeat;
    padding: 5px 30px 2px 30px;
    margin: 0 0 0 20px;
}

.icon3 {
    background: url(../img/icon3.png) center left no-repeat;
    padding: 5px 12px 2px;
}

/**
 * メインイメージ
**/
#main_image {
    width: 1024px;
    max-width: 100%;
    position: relative;
    height: auto;
    margin: auto;
}

@media only screen and (max-width: 480px) {
    #main_image h1 {
        /*padding-top: 50px;*/
        padding-bottom: 30px;
    }

    #main_image img {
        width: 100%;
        height: auto;
    }
}

@media only screen and (min-width: 480px) and (max-width: 937px) {
    #main_image {
        width: 100%;

    }

    #main_image img {
        width: 100%;
    }

}

/**
 *
 * about
 *
**/
.about {
    margin: 0 0 0 0;
    padding: 40px 0 50px 0;
    background: #fff;
}

/*navi*/

.about .page_link_list {
    display: flex;
    justify-content: center;
    margin: 20px auto 110px auto;
    width: 94%;
    max-width: 880px;
    overflow: hidden;
    justify-content: space-between;
}

.about .page_link_list li {

    width: 24%;

}

.about .page_link_list li a {
    line-height: 1.2em;
    text-align: center;
    text-decoration: none;
    color: #231815;
    display: block;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    height: 47px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: #8eb2ae url('../img/page_link_b.png') 98% 85% no-repeat;
    font-size: 15px;
    color: #FFF;
    position: relative;

}
.about .page_link_list li a sup{
    font-size: 1rem;
    margin-top: -0.5rem;

}

.about .page_link_list li a:hover {
    opacity: 0.5;

}

.about .page_link_list li a img {
    margin: auto !important;
}

@media only screen and (max-width: 480px) {
    .about {
        padding: 0 0 45px 0;
    }

    .about .page_link_list {
        width: 94%;
        flex-wrap: wrap;
        margin-bottom: 0;
    }

    .about .page_link_list li {
        width: 100%;
        margin-bottom: 1%;


    }

    .about .page_link_list li a {
        padding: 15px 10px;
        font-size: 1.6rem;
    }



    .about .page_link_list li:nth-of-type(1) a img {
        width: 228px;
    }

    .about .page_link_list li:nth-of-type(2) a img {
        width: 180px;
    }

    .about .page_link_list li:nth-of-type(3) a img {
        width: 130px;
    }

    .about .page_link_list li:nth-of-type(4) a img {
        width: 95px;
    }

    .about .page_link_list.page_link_list_lp2 li:nth-of-type(1) a img {
        width: 200px !important;
    }

    .about .page_link_list.page_link_list_lp2 li:nth-of-type(2) a img {
        width: 130px !important;
    }

    .about .page_link_list.page_link_list_lp2 li:nth-of-type(3) a img {
        width: 110px !important;
    }

    .about .page_link_list.page_link_list_lp2 li:nth-of-type(4) a img {
        width: 80px !important;
    }
}


/**
 * intro
**/


.about .intro {
    margin: 0 auto 50px auto;
    padding: 0;
    width: 94%;
    max-width: 950px;
    line-height: 1.8em;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
}
.about .intro h2 {
    margin: 0 0 35px 0;
    line-height: 1.7;
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 5px;
}


@media only screen and (min-width: 768px)and (max-width: 1024px) {
    .about .intro {
        width: 87%;
        font-size: 1.4rem;
    }
}
@media only screen and (max-width: 1024px) {
    .about .intro h2 {
        margin: 0 0 30px 0;
        font-size: 2.3rem;
        letter-spacing: 2px;
    }
}



@media only screen and (max-width: 480px) {
    .about .intro {
        margin: 0 auto;
        padding: 10px 0 60px 0;
        width: 94%;
        max-width: 880px;
        line-height: 1.8em;
        font-size: 14px;
        font-weight: bold;
        text-align: left;
        background: none;
        overflow: hidden;
    }

    .about .intro.intro_dml {
        padding: 10px 0 10px 0;
    }

    .about .intro h2 {
        margin: 33px 0 28px 0;
        line-height: 1.7em;
        font-size: 2rem;
        font-weight: bold;
        letter-spacing: 3px;
        text-align: center;;
    }
}

.about .point h3 {
    margin: 10px auto 0 auto;
    /*padding: 0 20% 0 0;*/
    line-height: 1.4em;
    text-align: center;
    font-size: 3.4rem;
    letter-spacing: 10px;
}

.about .point h3 img {
    display: block;
    margin: auto;
}



.about .point ol {
    margin: 5px auto 25px auto;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.about .point ol li {
    margin: 0;
    width: 30%;
    max-width: 230px;
}

@media only screen and (max-width: 1024px) {
    .about .point ol li {
        width: 31%;
    }
}

@media only screen and (max-width: 480px) {
    .about .point h3 {
    /*padding: 0 30% 0 0;*/
}
    .about .point ol li {
        margin: 0 auto 50px auto;
        width: 100%;
        max-width: 100%;
        display: block;
    }
    img.main_image_thumbnail.mb20.title{
        width: 70%;
    }
}

.about .point ol li:nth-of-type(3) {
    margin: 0 0 0 0;
}

.about .point ol li .num {
    margin: 0 auto 25px auto;
    width: 55px;
    height: 55px;
    position: static;
}

.about .point ol li .num.pointimg {
    position: static !important;
}

.about .point ol li dl {
    text-align: left;
}

.about .point ol li dl dt {
    padding: 0 0 10px 0;
    line-height: 1.6em;
    font-size: 2.3rem;
    font-weight: bold;
    letter-spacing: 2px;
}

/*.about .point ol li:nth-of-type(3) dl dt {
    padding: 0;
}*/
@media only screen and (max-width: 1024px) {
    .about .point ol li dl dt {
        font-size: 2rem;
        letter-spacing: 0.5px;
    }
}

@media only screen and (max-width: 480px) {
    .about .point ol li dl dt {
        padding: 0 0 20px 68px;
        line-height: 1.6em;
        font-size: 2.1rem;
        letter-spacing: 5px;
        text-align: left;
        white-space: normal;
    }


}

.about .point ol li dl dt em {
    padding: 0 10px 0 0;
    position: relative;
    display: inline-block;
}

.about .point ol li dl dt .upside {
    font-size: 0.6em;
    position: relative;
    top: -10px;
}

.about .point ol li dl dt em:after {
    line-height: 1em;
    font-size: 10px;
    content: "※2";
    position: absolute;
    top: 5px;
    right: -1px;
    letter-spacing: -1px;
}

.about .point ol li dl dt em.baby_em:after {
    line-height: 1em;
    font-size: 1rem;
    content: "※1";
    position: absolute;
    top: 5px;
    right: -1px;
    letter-spacing: -1px;
}

.about .point ol li dl dd {
    min-height: 160px;
    line-height: 1.8em;
    font-size: 1.5rem;
    letter-spacing: .5px;
}

@media only screen and (max-width: 1024px) {
    .about .point ol li dl dd {
        font-size: 1.2rem;
        white-space: normal;
    }
}

@media only screen and (max-width: 480px) {
    .about .point ol li dl dd {
        min-height: 120px;
        line-height: 1.8em;
        font-size: 1.6rem;
        white-space: normal;
    }
}

.product {
    margin: auto auto 65px auto;
    padding: 65px 40px;
    text-align: left;
    display: flex;
    background: #eed16d;
    flex-wrap: wrap;
    justify-content: center;
}



.product.product2 {
    background: #dbb1b6;
    margin-bottom: 0;
}



@media only screen and (max-width: 480px) {
    .product {
        margin: auto;
        padding: 10% 4% 30px 4%;
        display: flex;
    }
}

.product .product_image {
    width: 260px;
    margin-right: 40px;
    text-align: center;
    max-width: 100%;
}

.product.product2 .product_image {
    width: 220px;
    margin-right: 40px;
    text-align: right;
}



.product.product2 .product_image picture {
    display: block;
    text-align: right;
    margin: 0;
}

@media only screen and (max-width: 480px) {
    .product.product2 .product_image {
    width: 66%;
    margin-right: auto;
    text-align: center;
}
    .product.product2 .product_image picture {
        text-align: center;
    }
    .product.product2 .product_image picture img{
        width: 66%;

    }
    .product.product2 .product_image.image02 picture img{
        width: 100%;

    }



}

.product.product2 .product_image picture img{
    margin: 0;
    display: inline-block !important;
}

@media only screen and (max-width: 480px) {
    .product .product_image {
        margin: auto auto 20px auto;
    }
}

.product .product_text {
    width: 347px;
    max-width: 100%;
    margin-bottom: 40px;
}

@media only screen and (max-width: 480px) {
    .product .product_text {
        margin-bottom: 20px;
    }
}

.product .product_text_iyaku {
    display: inline-block;
    border: 1px solid #bba357;
    text-align: center;
    margin-bottom: 10px;
    font-size: 1.3rem;
    font-weight: bold;
    padding: 2px 6px;
}

.product .product_text_title {
    display: block;
    margin-bottom: 17px;
    font-size: 1.6rem;
    white-space: nowrap;
    letter-spacing: 0.9px;
    line-height: 1.5;
}

@media only screen and (min-width: 768px)and (max-width: 1024px) {
    .product .product_text_title {
        white-space: nowrap;
        letter-spacing: -0.2px;

    }
}

@media only screen and (max-width: 480px) {
    .product .product_text_title {
        white-space: normal;
    }
}

.product .product_text_sub {
    display: block;
    margin-bottom: 20px;
    margin-left: -4px;
    font-size: 1.3rem;
    text-indent: 6px;
    line-height: 1.9;
    letter-spacing: 0.9px;
}

.product .product_text_sub .num {
    font-size: 1.7rem;
    position: static;
    padding-left: 5px;
}

.num.font_yugo.bold.price {
    position: static !important;
}

.product .product_bottom {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0.2px;
}


.about .point .text01 {
    margin: 3% 0 0 0;
    width: 100%;
    line-height: 1.2em;
    text-align: left;
    font-size: 16px;
    letter-spacing: -0.05em;
}

.about .point .text02 {
    margin: 0 auto 0 auto;
    width: 89%;
    line-height: 1.4em;
    text-align: left;
    font-size: 13px;
    letter-spacing: -1px;
    margin-top: 9px;
}

.product_pr01 {
    margin: 0 auto;
    padding: 0 0 45px 0;
    width: 94%;
    max-width: 880px;
}

.product_pr01 h2 {
    margin: 0 0 0 0;
    padding: 0 0 40px 0;
    line-height: 1.2em;
    font-size: 3.6rem;
    text-align: center;
    font-weight: bold;
    color: #428474;
    letter-spacing: 13px;
}

.product_pr01 h2 .sub {
    margin: 0 0 0 0;
    padding: 0 0 25px 0;
    line-height: 1.2em;
    font-size: 2rem;
    color: #231815;
    display: block;
    letter-spacing: 6px;
}

.product_pr01 h2 em {
    padding: 0 12px 0 0;
    position: relative;
}

.product_pr01 h2 em:after {
    line-height: 1.2em;
    font-size: 1rem;
    color: #428474;
    content: "※2";
    position: absolute;
    top: 9px;
    right: 0;
    letter-spacing: 3px;
}
.about .point .naga{
    margin-top: -60px;
}
.about .point .note {
    margin: 0 auto 34px auto;
    line-height: 1.6em;
    font-size: 1.2rem;
    text-align: left;
    overflow: hidden;
    letter-spacing: 1px;
}


.product_pr01 .box01 {
    margin: 0 0 60px 0;
    overflow: hidden;
}

.product_pr01 .box01 .image {
    width: 41%;
    max-width: 356px;
    float: right;
    margin: 0;
}

.product_pr01 .box01 .desc {
    padding: 0 0 55px 0;
    width: 57%;
    line-height: 1.9em;
    text-align: left;
    font-size: 1.6rem;
    letter-spacing: 1px;
    float: left;
    position: relative;
}

.product_pr01 .box01 .desc .note {
    padding: 20px 110px 0 0;
    line-height: 1.5em;
    font-size: 1.2rem;
    letter-spacing: 0px;
}

.product_pr01 .box01 .desc .mark {
    width: 108px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.product_pr01 .box02 {
    padding: 20px 22px 20px 48px;
    text-align: left;
    border: 1px solid #959595;
    overflow: hidden;
}

.product_pr01 .box02 .image01 {
    width: 100%;
    position: relative;
    float: left;
}

.product_pr01 .box02 .tit {
    line-height: 2em;
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
    background: #ffffff;
    padding: 3px 20px;
    border: 1px solid #a7a6a6;
    display: inline-block;
}

.product_pr01 .box02 .text01 {
    width: 46%;
    position: absolute;
    top: 75%;
    left: 16%;
}

.product_pr01 .box02 .text02 {
    width: 44%;
    position: absolute;
    top: 75%;
    left: 64%;
}

.product_pr01 .box02 .image01 dt {
    line-height: 1.4em;
    font-size: 1.5rem;
    font-weight: bold;
    color: #428474;
}

.product_pr01 .box02 .image01 dd {
    line-height: 1.4em;
    font-size: 1rem;
    font-weight: bold;
    color: #231815;
}

.product_pr01 .box02 .image01 .text03 {
    width: 100%;
    line-height: 1.2em;
    font-size: 1.2rem;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
}

.product_pr01 .box02 .image02 {
    width: 36.875%;
    max-width: 295px;
    position: relative;
    float: right;
}

.product_pr01 .box02 .image02 .tit {
    width: 230px;
    line-height: 2em;
    text-align: center;
    font-size: 1.7rem;
    font-weight: bold;
    background: #ffffff;
    border: 1px solid #a7a6a6;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
}

.product_pr01 .box02 .image02 .text01 {
    width: 44%;
    position: absolute;
    top: 35%;
    left: 50%;
}

.product_pr01 .box02 .image02 dt {
    line-height: 1.4em;
    font-size: 1.5rem;
    font-weight: bold;
    color: #428474;
}

.product_pr01 .box02 .image02 dd {
    line-height: 1.4em;
    font-size: 10px;
    font-weight: bold;
    color: #231815;
}

.product_pr01 .box02 .image02 .text02 {
    width: 100%;
    line-height: 1.2em;
    font-size: 1.2rem;
    position: absolute;
    top: 65%;
    left: 50%;
    font-weight: bold;
}

.product_pr02 {
    background: url("../img/pr_back_01.png");
}

.product_pr02 .wrap {
    margin: 0 auto;
    padding: 50px 0 15px 0;
    overflow: hidden;
    position: relative;
}

@media only screen and (max-width: 1024px) {
    .product_pr02 .wrap {
        margin: 0 auto;
        padding: 25px 0 30px 0;
        overflow: hidden;
        position: relative;
    }
}

.product_pr02 .wrap .note {
    line-height: 1.2em;
    text-align: right;
    font-size: 1rem;
    letter-spacing: -0.5px;
}

.product_pr02 .wrap ul {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    background: #fff;
    padding: 45px 45px 25px 45px;
    margin-bottom: 40px;
    border: 1px solid #c9bc9c;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
}

@media only screen and (max-width: 1024px) {
    .product_pr02 .wrap ul {
        padding: 45px 20px 25px 20px;
    }
}

@media only screen and (max-width: 480px) {
    .product_pr02 .wrap ul {
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: center;
        padding: 8% 2% 4% 2%;
        margin-bottom: 40px;
    }
}

.product_pr02 .wrap ul li {
    max-width: 144px;
    display: block;
}

@media only screen and (max-width: 1024px) {
    .product_pr02 .wrap ul li {
        max-width: 18%;
    }
}

@media only screen and (max-width: 480px) {
    .product_pr02 .wrap ul li {
        max-width: 30%;
        margin: auto 1%;
    }

    .product_pr02 .wrap ul li img {
        margin: 3% 0;
    }
}

.product_pr02 .wrap .text02 {
    margin: 40px auto -18px auto;
    line-height: 1;
    text-align: center;
    background: #000;
    color: #fff;
    padding: 7px 10px;
    width: 300px;
    font-size: 1.7rem;
    letter-spacing: 2.6px;
    z-index: 100;
    position: relative;
    font-weight: bold;
}

.product_pr02 .wrap .text01 {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 2.2px;
    margin: 0 auto;
    line-height: 2em;
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
}

@media only screen and (max-width: 1024px) {
    .product_pr02 .wrap .text01 {
        font-size: 1.8rem;
    }
}

@media only screen and (max-width: 480px) {
    .product_pr02 .wrap .text01 {
        display: block;
        font-size: 2rem;
        font-weight: bold;
        margin: 0 0 20px 0;
        line-height: 1.2em;
        text-align: center;
        letter-spacing: 8px;
    }
}

.product_pr02 .wrap .text01 em {
    padding: 0 10px 0 15px;
    line-height: 3.8rem;
    text-align: center;
    font-size: 3.8rem;
    font-weight: 600;
    letter-spacing: 5.2px;
    color: #929072;
    margin-right: 35px;
    position: relative;
}

@media only screen and (max-width: 1024px) {
    .product_pr02 .wrap .text01 em {
        font-size: 2.8rem;
        margin-right: 20px;
    }
}

@media only screen and (max-width: 480px) {
    .product_pr02 .wrap .text01 em {
        font-size: 3.2rem;
        letter-spacing: 8px;
        padding: 0;
        margin-right: 0;
    }
}

@media only screen and (max-width: 1024px) {
    .product_pr02 .wrap .text01 picture {
        width: 20%;
    }
}

.product_pr02 .wrap .text01 em:after {
    line-height: 1.2em;
    font-size: 1rem;
    content: "※6";
    color: #231815;
    position: absolute;
    top: 0;
    right: 0;
    letter-spacing: 1px;
}

@media only screen and (max-width: 480px) {
    .product_pr02 .wrap .text01 em:after {
        top: 10px;
        right: -6px;
    }
}

.product_pr02 .wrap .btn {
    text-align: center;
    margin-bottom: 20px;
}

.product_pr02 .wrap .btn a {
    display: block;
    line-height: 1;
    text-align: center;
    background: #eed16d;
    border-radius: 8px;
    color: #231815;
    padding: 11px 15px;
    margin: auto;
    width: 347px;
    font-weight: bold;
    font-size: 1.4rem;
    letter-spacing: 0.9px;
    box-shadow: 3px 3px 0px 2px #604c00;
    max-width: 95%;
}
.product_pr02 .wrap .btn a:hover {
  opacity: 0.5;
}

.product_pr02 .wrap .btn.btn_pink a {
    background: #d78bb6;
}

.how_to_use_wrap {
    margin: 0 0 0 0;
    padding: 60px 0 60px 0;
}

.how_to_use_wrap .how_to_use_title {
    margin: 0 0 45px 0;
    font-size: 2.8rem;
    text-align: center;
    padding: 0 0 25px 0;
    letter-spacing: 6.6px;
}

.how_to_use_wrap .how_to_use_title img {
    display: block;
    margin: auto;
}

.how_to_use_wrap ul {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto 30px auto;
    padding: 0 0 0 0;
    max-width: 880px;
    text-align: left;
}

@media only screen and (max-width: 480px) {
    .how_to_use_wrap ul {
        display: block;
        max-width: 92%;
        margin: auto;
    }

    .how_to_use_wrap .how_to_use_title {
        margin: 0 auto 0;
        font-size: 2.8rem;
        text-align: center;
        padding: 0 0 25px 0;
        letter-spacing: 6.6px;
        width: 70%;
    }

    .voice_wrap .voice_title {
        width: 48%;
        margin: auto !important;
    }
}

.how_to_use_wrap ul li {
    display: block;
    padding: 0;
    width: 153px;
    max-width: 18%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}

@media only screen and (max-width: 480px) {
    .how_to_use_wrap ul li {
        width: 100%;
        max-width: 100%;
        margin-bottom: 25px;
    }
}

.how_to_use_wrap ul li:after {
    display: block;
    background: url("../img/img_sankaku_1.png") 0 0 no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    width: 18px;
    height: 28px;
    content: "";
    position: absolute;
    top: 37%;
    right: -23px;
}

@media only screen and (max-width: 480px) {
    .how_to_use_wrap ul li:after {
        display: block;
        background: url("../img/img_sankaku_1@2x.png") 0 0 no-repeat;
        -webkit-background-size: contain;
        background-size: contain;
        margin: 20px auto auto auto;
        width: 17px;
        height: 28px;
        transform: rotateZ(90deg);
        content: "";
        position: relative;
        top: auto;
        right: auto;
    }
}

.how_to_use_wrap ul li:last-child:after {
    display: none;
}

.how_to_use_wrap ul li .image {
    margin: 0 auto 20px auto;
    max-width: 240px;
    text-align: center;
    width: 100%;
}

@media only screen and (max-width: 480px) {
    .how_to_use_wrap ul li .image {}
}

.how_to_use_wrap ul li .image .image_picture {
    display: block;
    text-align: center;
}

.how_to_use_wrap ul li .image .image_picture img {
    margin: auto !important;
    width: 108px !important;
}

.how_to_use_wrap ul li dl dt {
    padding: 0;
    line-height: 1.2em;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

@media only screen and (max-width: 480px) {
    .how_to_use_wrap ul li dl dt {
        font-size: 1.8rem;
        margin-bottom: 30px;
        border-bottom: 1px solid #929072;
        padding-bottom: 5px;
    }

    .how_to_use_wrap ul li dl dt .how_to_use_step {
        color: #929072;
        padding-bottom: 10px;
        margin-bottom: 10px;
        margin-right: 10px;
        font-size: 2.1rem;
        font-weight: bold;
    }

    .num {
        font-size: 0.5em;
        position: relative;
        top: -0.8em;
    }
}

@media only screen and (min-width: 480px) {
    .how_to_use_wrap ul li dl dt .how_to_use_step {
        display: block;
        color: #929072;
        padding-bottom: 10px;
        border-bottom: 1px solid #929072;
        margin-bottom: 10px;
        font-size: 2.1rem;
        font-weight: bold;
    }

    .num {
        font-size: 0.5em;
        position: relative !important;
        top: -0.8em;
    }
}

.how_to_use_wrap ul li dl dd {
    line-height: 1.8;
    font-size: 1.5rem;
    letter-spacing: 0.1px;
}

@media only screen and (max-width: 480px) {
    .how_to_use_wrap ul li dl dd {
        font-size: 1.6rem;
    }
}

.voice_wrap {
    margin: 0 0 0 0;
    padding: 50px 0 40px 0;
    background: #eae9ea;
}

.voice_wrap .voice_title {
    margin: 0 0 15px 0;
    font-size: 2.8rem;
    text-align: center;
    padding: 0 0 25px 0;
    letter-spacing: 6.6px;
}

.voice_wrap .voice_title img {
    display: block;
    margin: auto;
}

.voice_wrap ul {
    margin: 0 auto 0 auto;
    padding: 0 0 0 0;
    width: 94%;
    max-width: 880px;
    text-align: left;
}

.voice_wrap ul li {
    margin: 0 0 18px 0;
    padding: 20px;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    /* 子要素をflexboxにより縦方向に揃える */
    /* 子要素をflexboxにより中央に配置する */
    align-items: center;
}

.voice_wrap ul li .image {
    margin: 0 30px 0 0;
    width: 125px;
    /* 子要素をflexboxにより縦方向に揃える */
    /* 子要素をflexboxにより中央に配置する */
    font-size: 1.2em;
}

.voice_wrap ul li dl {
    width: 685px;
}

@media only screen and (min-width: 481px)and (max-width: 1024px) {
    .voice_wrap ul li dl {
        width: 75%;
    }
}

.voice_wrap ul li dl dt {
    margin: 0 0 0 0;
    padding: 0 0 10px 0;
    line-height: 1.4em;
    font-size: 2.0rem;
    color: #929072;
    font-weight: bold;
}

.voice_wrap ul li dl dd {
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    line-height: 1.7;
    font-size: 1.5rem;
    letter-spacing: 0;
}

.product_info02 {
    margin: 0 auto 50px auto;
}

.product_info02 .text03 {
    margin: 30px auto 0 auto;
    width: 620px;
    max-width: 94%;
    line-height: 1.3;
    font-size: 1rem;
    letter-spacing: -1px;
}

.recommend {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    background: #f1eac2;
    padding: 3.4% 2.8%;
    margin-bottom: 60px;
}

.recommend.recommend2 {
    background: #dcdddd;
}

@media only screen and (max-width: 480px) {
    .recommend {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        flex-wrap: wrap;
        background: #f1eac2;
        padding: 8.4% 2.8%;
    }
}

.recommend .recommend_title {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    width: 100%;
    margin-bottom: 30px;
}

.recommend .recommend_title .recommend_title_jp {
    display: inline-block;
    font-size: 1.6rem;
    padding: 5px 30px 5px 10px;
    font-weight: bold;
    border-bottom: 1px solid #cfa651;
}

.recommend.recommend2 .recommend_title .recommend_title_jp {
    border-bottom: 1px solid #d78bb6;
}

@media only screen and (max-width: 480px) {
    .recommend .recommend_title .recommend_title_jp {
        font-size: 1.7rem;
        padding: 5px 20px 5px 10px;
    }

    .recommend.recommend2 .recommend_title .recommend_title_jp {
        font-size: 1.6rem;
        letter-spacing: -0.2px;
    }
}

.recommend .recommend_title .recommend_title_jp .recommend_title_en {
    display: inline-block;
    color: #cfa651;
    font-size: 2.1rem;
    margin-right: 40px;
}

.recommend.recommend2 .recommend_title .recommend_title_jp .recommend_title_en {
    color: #d78bb6;
}

@media only screen and (max-width: 480px) {
    .recommend.recommend2 .recommend_title .recommend_title_jp .recommend_title_en {
        display: block;
        margin-bottom: 10px;
    }

    .recommend.recommend2 .recommend_title .recommend_title_jp .recommend_title_en.recommend_title_en_2 {
        display: inline-block;
    }

}

@media only screen and (max-width: 480px) {
    .recommend .recommend_title .recommend_title_jp .recommend_title_en {
        font-size: 1.8rem;
        margin-right: 35px;
    }
}

.recommend .recommend_l {
    margin-right: 35px;
    max-width: 38%;
}

@media only screen and (max-width: 1024px) {
    .recommend .recommend_l {
        margin: 0;
        padding-right: 0px;
        width: 45%;
        max-width: 100%;
    }
}

@media only screen and (max-width: 480px) {
    .recommend .recommend_l {
        margin: 0 auto 0 auto;
        width: 67%;
        text-align: center;
    }

    .recommend .recommend_l picture {
        display: block;
        text-align: center;
        margin: auto;

    }

    .recommend .recommend_l picture img {
        display: block;
        margin: auto;

    }
}

.recommend .recommend_r {
    padding-top: 25px;
    max-width: 60%;
}

@media only screen and (max-width: 1024px) {
    .recommend .recommend_r {
        width: 52%;
        max-width: 100%;
    }
}

@media only screen and (max-width: 480px) {
    .recommend .recommend_r {
        padding-top: 5px;
        width: 310px;
        margin: auto;
    }
}

.recommend .recommend_r .recommend_text .recommend_text_up {
    display: block;
    margin-bottom: 25px;
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 1.8px;
}

.recommend .recommend_r .recommend_text .recommend_text_up.recommend_text_up2 {
    font-size: 2.15rem;
    letter-spacing: 1.0px;
}

@media only screen and (max-width: 1024px) {

    .recommend .recommend_r .recommend_text .recommend_text_up {
        line-height: 1.4;
    }
}

@media only screen and (max-width: 480px) {
    .recommend .recommend_r .recommend_text .recommend_text_up {
        margin: 8px 0;
        font-size: 1.9rem;
    }

    .about .point ol li .num {
        display: none;
    }

    .about .point ol li .font_ryumin span.num {
        display: inline;
        position: relative;
    }

    .about .point ol li .font_yugo span.num {
        display: inline;
        position: relative;
    }
}

.recommend .recommend_r .recommend_text .recommend_text_title {
    display: block;
    margin-bottom: 0;
    font-size: 1.5rem;
    line-height: 1.7;
    letter-spacing: 0.9px;
}

.recommend .recommend_r .recommend_text .recommend_text_sub {
    display: block;
    margin-bottom: 10px;
    margin-left: -4px;
    font-size: 1.2rem;
    text-indent: 6px;
    line-height: 1.9;
    letter-spacing: 0.2px;
}

.recommend .recommend_r .recommend_text .recommend_text_sub .num {
    font-size: 1.7rem;
    position: static;
    padding-left: 4px;
}

.recommend .recommend_r .recommend_text .recommend_text_sub .recommend_iyaku {
    display: inline-block;
    border: 1px solid #bdb597;
    text-align: center;
    margin-left: 10px;
    margin-bottom: 8px;
    font-size: 1.3rem;
    line-height: 1;
    padding: 3px 4px 3px 0px;
}

.recommend .recommend_r .recommend_textBtn {
    background: #231815;
    width: 300px;
    max-width: 100%;
    padding: 10px;
    text-align: center;
    color: #fff;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.3em;
    box-shadow: 3px 2px 0px 2px #9A8B9B;
}
.recommend .recommend_r .recommend_textBtn:hover {
  opacity: 0.5;
}

.bk_gray {
    background: #e5e5e5;
    padding: 35px 6.81%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
}

@media only screen and (max-width: 1024px) {
    .bk_gray {
        padding: 30px 3.81%;
        margin-bottom: 0;
    }
}

.herb {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.box_herb {
    width: 266px;
    height: 155px;
}

.herb .fig_title {
    color: #428474;
    font-size: 1.5rem;
    font-weight: bold;
}

@media only screen and (max-width: 1024px) {
    .herb .fig_title {
        font-size: 1.4rem;
    }
}

.herb .fig_cap {
    display: block;
    width: calc(100%/.6);
    font-size: 1.4rem;
    -webkit-transform: scale(.81);
    transform: scale(.81);
    -webkit-transform-origin: left center;
    transform-origin: left center;
}

.herb_box {
    width: 100%;
    display: flex;
    position: relative;
    justify-content: space-between;
}



.herb_box .text {
    margin-top: auto;
    margin-bottom: 8px;
}


/**
 * タブレット端末用
**/

@media only screen and (min-width: 741px) and (max-width: 937px) {

    .titleText {
        background: url(../img/main_image_text2.png) no-repeat center center,
            url(../img/main_image.png) no-repeat center center;
        background-size: contain, cover;
        padding: 5vh 2% 6vh;
    }



    .titleText2 {
        background: #f9fafc;
        padding: 10px 2%;
    }


    .product_pr01 .box02 {
        padding: 20px 15px 20px 15px;
        text-align: left;
        border: 1px solid #959595;
        overflow: hidden;
    }

    .product_pr01 .box02 .image01 .text03 {
        width: 100%;
        line-height: 1.2em;
        font-size: 12px;
        text-align: center;
        position: absolute;
        bottom: -10px;
        left: 0;
    }


    .no_space {
        margin: 0 !important;
    }





    .tb_on {
        display: block;
    }

    .voice_wrap ul {
        margin: 0 auto 0 auto;
        padding: 0 0 0 0;
        width: 94%;
        max-width: 880px;
        text-align: left;
    }

    .voice_wrap ul li {
        margin: 0 0 18px 0;
        padding: 20px;
        background: #ffffff;
        overflow: hidden;
        display: flex;
        flex-wrap: wrap;
        /* 子要素をflexboxにより縦方向に揃える */
        /* 子要素をflexboxにより中央に配置する */
        align-items: self-start;
    }

    .voice_wrap ul li .image {
        margin: 0 30px 0 0;
        width: 114px;
        /* 子要素をflexboxにより縦方向に揃える */
        /* 子要素をflexboxにより中央に配置する */
        padding: 0;
    }



    .box_6 {
        width: 32%;
    }

    .box_7 {
        width: 38%;
    }

    .box_8 {
        width: 30%;
    }





}





/**
 * スマートフォン端末用
**/

@media only screen and (max-width: 740px) {

    p {
        font-size: 16px;
        line-height: 1.7em;
    }

    /**
 * SP表示
**/
    .sp_disp {
        display: block !important;
    }

    .pc_disp {
        display: none !important;
    }


    /**
 * メインイメージ
**/

    /**
 * コンテンツ
**/


    img.mark_img {
        width: 130% !important;
    }

    img.users_img {
        width: 100% !important;
    }

    img.sp_disp {
        width: 100% !important;
        margin: -13% auto 10% !important;
    }

    figure.image.sp_mini img {
        width: 70% !important;
    }

    /**
 *
 * 今だけ限定
 *
**/


    .about .point {
        margin: 0 auto;
        padding: 20px 0 15px 0;
        width: 94%;
        max-width: 880px;
        /* background: #ffffff; */
        overflow: hidden;
    }


    .about .point h3 .num {
        line-height: 1.4em;
        font-size: 28px;
        font-weight: bold;
    }

    .about .point ol li:nth-of-type(3) {
        margin: 0 auto;
    }

    .about .point ol li .num {
        margin: 0 auto 15px auto;
        width: 55px;
    }


    .about .point ol li dl {
        text-align: left;
    }


    .about .point ol li dl dt em {
        padding: 0 10px 0 0;
        position: relative;
    }

    .about .point ol li dl dt em:after {
        line-height: 1em;
        font-size: 10px;
        content: "※2";
        position: absolute;
        top: 0;
        right: 0;
    }



    .about .point .product .image {
        margin: 0 auto 15px auto;
        width: 100%;
        max-width: 275px;
        float: none;
        display: block;
    }

    .about .point .product .info {
        padding-top: 6%;
        line-height: 1.4em;
        font-size: 13px;
        width: 90%;
        /* overflow: hidden; */
    }




    .about .point .product .info .box .catch01 {
        padding: 15px 0 5px 0;
        line-height: 1em;
        font-size: 32px;
        font-weight: bold;
        color: #e66c2a;
        text-align: center;
    }

    .about .point .product .info .box .catch01 em {
        padding: 0 25px 15px 25px;
        line-height: 1.4em;
        font-size: 22px;
        font-weight: normal;
        color: #e66c2a;
        text-align: center;
        display: inline-block;
        position: relative;
    }

    .about .point .product .info .box .catch01 em:before {
        content: url("../img/icon_01.png");
        position: absolute;
        top: 0;
        left: 0;
    }

    .about .point .product .info .box .catch01 em:after {
        content: url("../img/icon_02.png");
        position: absolute;
        top: 0;
        right: 0;
    }

    .about .point .product .info .box .catch02 {
        padding: 0 0 0 0;
        line-height: 1.4em;
        font-size: 19px;
        text-align: center;
        margin-top: 8%;
        color: #595757;
    }

    .about .point .product .info .box .catch02 em {
        line-height: 1.4em;
        font-size: 22px;
        /*font-weight: bold;*/
        color: #ea5514;
    }

    .about .point .product .info .box .catch03 {
        padding: 15px 0 10px 0;
        line-height: 1.4em;
        font-size: 24px;
        color: #e66c2a;
        text-align: center;
    }

    .about .point .product .info .box .name {
        margin: 0 0 5px 0;
        line-height: 1.4em;
        font-size: 13px;
        font-weight: bold;
        /* width: 80%;
margin: 0 auto; */
    }

    .about .point .product .info .box .text {
        margin: 0 0 0 0;
        /* width: 80%;
margin: 0 auto; */
    }

    .about .point .product .info .box .price {
        margin: 0 0 10px 0;
        /* width: 80%;
margin: 0 auto; */
    }

    .about .point .product .info .box .price .num {
        line-height: 1.4em;
        font-size: 17px;
    }

    .about .point .product .info .btn {
        margin: 6% auto 1%;
        max-width: 387px;
    }

    .product .text01 {
        width: 90% !important;
    }

    .textBtn {
        width: 85%;
        margin: 0 auto;
    }

    .about .point .text01 {
        margin: 5% 0 0 0;
        width: 100%;
        line-height: 1.2em;
        text-align: left;
        font-size: 16px;
    }

    .about .point .text02 {
        margin: 0 auto 0 auto;
        width: 89%;
        line-height: 1.4em;
        text-align: left;
        font-size: 13px;
    }

/**
有機JAS認証取得の自社農場で育てた無農薬ハーブエキスを使用product_pr01
**/


.product_pr01 {
    margin: 0 auto;
    padding: 0 0 45px 0;
    width: 94%;
    max-width: 880px;
}

.product_pr01 h2 {
    margin: 0 0 0 0;
    padding: 0 0 40px 0;
    line-height: 1.2em;
    font-size: 3.6rem;
    text-align: center;
    font-weight: bold;
    color: #428474;
    letter-spacing: 13px;
}

.product_pr01 h2 span {

    line-height: 1.2em;
    font-size: 2rem;
    padding-bottom: 25px;
    color: #231815;
    display: block;
    letter-spacing: 6px;
}

.product_pr01 h2 sup {
    font-size: 0.5rem;
    letter-spacing: 2px;

    vertical-align: top;
    position: relative;
    top: -1em;

}



.product_pr01 .box01 {
    margin: 0 0 35px 0;
    display: flex;
    justify-content: space-between;

}

.product_pr01 .box01 .image {
    width: 41%;
    max-width: 356px;

}

.product_pr01 .box01 .desc {
    padding: 0 0 15px 0;
    width: 57%;
    line-height: 1.9em;
    text-align: left;
    font-size: 1.6rem;
    letter-spacing: 1px;

    position: relative;
}

.product_pr01 .box01 .desc .note {
    padding: 20px 110px 0 0;
    line-height: 1.5em;
    font-size: 1.2rem;
    letter-spacing: 0px;
}

.product_pr01 .box01 .desc .mark {
    width: 108px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.product_pr01 .box02 {
    padding: 20px 40px 20px 30px;
    text-align: left;
    border: 1px solid #959595;
    overflow: hidden;
}

.product_pr01 .box02 .image01 {
    width: 100%;
    position: relative;

}

.product_pr01 .box02 .tit {
    line-height: 2em;
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
    background: #ffffff;
    padding: 3px 20px;
    border: 1px solid #a7a6a6;
    display: inline-block;
}

.product_pr01 .box02 .text01 {
    width: 46%;
    position: absolute;
    top: 75%;
    left: 16%;
}

.product_pr01 .box02 .text02 {
    width: 44%;
    position: absolute;
    top: 75%;
    left: 64%;
}

.product_pr01 .box02 .image01 dt {
    line-height: 1.4em;
    font-size: 1.5rem;
    font-weight: bold;
    color: #428474;
}

.product_pr01 .box02 .image01 dd {
    line-height: 1.4em;
    font-size: 1rem;
    font-weight: bold;
    color: #231815;
}

.product_pr01 .box02 .image01 .text03 {
    width: 100%;
    line-height: 1.2em;
    font-size: 1.2rem;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
}

.product_pr01 .box02 .image02 {
    width: 36.875%;
    max-width: 295px;

}

.product_pr01 .box02 .image02 .tit {
    width: 230px;
    line-height: 2em;
    text-align: center;
    font-size: 1.7rem;
    font-weight: bold;
    border: 1px solid #a7a6a6;


}

.product_pr01 .box02 .image02 .text01 {
    width: 44%;
    position: absolute;
    top: 35%;
    left: 50%;
}

.product_pr01 .box02 .image02 dt {
    line-height: 1.4em;
    font-size: 1.5rem;
    font-weight: bold;
    color: #428474;
}

.product_pr01 .box02 .image02 dd {
    line-height: 1.4em;
    font-size: 10px;
    font-weight: bold;
    color: #231815;
}

.product_pr01 .box02 .image02 .text02 {
    width: 100%;
    line-height: 1.2em;
    font-size: 1.2rem;
    position: absolute;
    top: 65%;
    left: 50%;
    font-weight: bold;
}




@media only screen and (max-width: 700px) {
    .product_pr01 .box01 .desc .note {
        padding: 20px 0 20px 0;

    }

    .product_pr01 .box01 .desc .mark {
        position: static;
    }

}
@media only screen and (max-width: 740px) {

.product_pr01 {
    margin: 0 auto;
    padding: 40px 0 45px 0;
    width: 94%;
    max-width: 880px;
}

.product_pr01 h2 {
    margin: 0 0 0 0;
    padding: 0 0 20px 0;
    line-height: 1.2em;
    font-size: 2.4rem;
    letter-spacing: .09em;
    font-weight: bold;
    color: #428474;
}

.product_pr01 h2 .sub {
    margin: 0 0 0 0;
    padding: 0 0 10px 0;
    line-height: 1.2em;
    font-size: 16px;
    color: #231815;
    display: block;
    letter-spacing: 3px;
}

.product_pr01 h2 em {
    padding: 0 12px 0 0;
    position: relative;
    letter-spacing: 5px;
}

.product_pr01 h2 em:after {
    line-height: 1.2em;
    font-size: 10px;
    color: #428474;
    content: "※2";
    position: absolute;
    top: 0;
    right: 0;
}
    .product_pr01 .box01 {
        display: block;
    }

    .product_pr01 .box01 .desc,
    .product_pr01 .box01 .image {
        width: 100%;
        max-width: 100%;
    }
    .product_pr01 .box01 .image{
        text-align: center;
    }
    .product_pr01 .box01 .image img{
        max-width: 100%;
        height: auto;
        margin: 0 auto;
    }

    .product_pr01 .box01 .desc .mark {
        width: 54px;
    }
.product_pr01 .box02 {
    padding: 0;
    border: none;
    overflow: inherit;
    position: relative;
}

.product_pr01 .box02 .tit {
    padding: 5px 10px;
    width: 80%;
    line-height: 1.2em;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    background: #ffffff;
    border: 1px solid #707070;
    display: inline-block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    top: -15px;
    left: 10%;
}

.product_pr01 .box02 ul {
    margin: 0 0 10px 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.product_pr01 .box02 ul li {
    width: 50%;
    text-align: center;
    /* float: left; */
    margin: 0 0 15px 0;
    padding: 5px;
    box-sizing: border-box;
}
.product_pr01 .box02 ul li picture.picture_box{
    display: block;

}
#content .product_pr01 .box02 ul li picture.picture_box img{
    max-height: 100%;
    width: 110%;
    max-width: 85%;
}

.product_pr01 .box02 ul li.box_10 {
    width: 100%;
    text-align: center;
    /* float: left; */
    margin: 0 0 15px 0;
    padding: 5px;
    box-sizing: border-box;
    display: flex;
}

.product_pr01 .box02 ul li.box_10 dl{
  display: flex;
  align-items: center;
}

.product_pr01 .box02 ul li.box_10 picture{
  width: 45%;
}

.product_pr01 .box02 ul li.box_10 .wrap10{
  width: 45%;
  text-align: left;
  padding: 0 0 0 20px;
}

.product_pr01 .box02 ul li.plus{
  width: 100%;
}

.product_pr01 .box02 ul li.plus img{
  width: 30px !important;
}

.product_pr01 .box02 ul li dt {
    line-height: 1.4em;
    font-size: 13px;
    font-weight: bold;
    color: #428474;
}

.product_pr01 .box02 ul li dd {
    line-height: 1.4em;
    font-size: 10px;
    font-weight: bold;
    color: #231815;
}

.product_pr01 .box02 .text01 {
    margin: 21px 10px 20px 10px;
  line-height: 1.4em;
  font-size: 16px;
}

.product_pr01 .box02 .arrow {
    margin: 0 auto 20px auto;
    width: 25px;
}

.product_pr01 .box02 .image02-sp {
    padding: 10px 0 0 0;
    background: #eeeeef url("../img/pr_image_05-sp.png") no-repeat left 50%;
    background-size: 100% auto;
    height: 170px;
}

.product_pr01 .box02 .image02-sp .sub_tit {
    margin: 0 0 0 0;
    padding: 10px;
    line-height: 1.2em;
    font-size: 16px;
    background: #fff;
    display: inline-block;
    position: relative;
    top: -4vh;
    left: 2vh;
    z-index: 10;
    border: .5px solid #707070;
}
.product_pr01 .box02 .image02-sp .sub_text01 {
    margin: 0 0 15px 45%;
    width: 44%;
}

.product_pr01 .box02 .image02-sp .sub_text01 {
    margin: 0 0 15px 45%;
    width: 44%;
}

.product_pr01 .box02 .image02-sp .sub_text01 dt {
    line-height: 1.4em;
    font-size: 15px;
    font-weight: bold;
    color: #428474;
}

.product_pr01 .box02 .image02-sp .sub_text01 dd {
    line-height: 1.4em;
    font-size: 10px;
    font-weight: bold;
    color: #231815;
}

.product_pr01 .box02 .image02-sp .sub_text02 {
    margin: 0 0 60px 45%;
    width: 50%;
    line-height: 1.2em;
    font-size: 16px;
    font-weight: bold;
}

}





    .product_pr02 {
        background: url("../img/pr_back_01.png");
    }

    .product_pr02 .wrap {
        margin: 0 auto;
        padding: 25px 0 15px 0;
        width: 94%;
        max-width: 880px;
        background: none;
        overflow: hidden;
        position: relative;
    }

    .product_pr02 .wrap .note {
        padding: 0 5% 0 5%;
        width: 90%;
        line-height: 1.2em;
        text-align: left;
        font-size: 13px;
    }

    .how_to_use_wrap {
        margin: 0 0 0 0;
        padding: 40px 0 20px 0;
    }

    .how_to_use_wrap h2 {
        margin: 0 0 0 0;
        padding: 0 0 25px 0;
    }

    .how_to_use_wrap h2 .eng {
        margin: 0 0 0 0;
        padding: 0 0 15px 0;
        line-height: 1.2em;
        font-size: 19px;
        font-family: Arial, Helvetica, sans-serif;
        color: #f8b62d;
        display: block;
    }

    .how_to_use_wrap h2 .jpn {
        margin: 0 0 0 0;
        padding: 0 0 0 0;
        line-height: 1.2em;
        font-size: 24px;
        font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
        display: block;
    }

    .voice_wrap {
        margin: 0 0 0 0;
        padding: 35px 0 30px 0;
        background: #eae9ea;
    }

    .voice_wrap h2 {
        margin: 0 0 0 0;
        padding: 0 0 20px 0;
    }

    .voice_wrap h2 .eng {
        margin: 0 0 0 0;
        padding: 0 0 15px 0;
        line-height: 1.2em;
        font-size: 19px;
        font-family: Arial, Helvetica, sans-serif;
        color: #f8b62d;
        display: block;
    }

    .voice_wrap h2 .jpn {
        margin: 0 0 0 0;
        padding: 0 0 0 0;
        line-height: 1.2em;
        font-size: 23px;
        font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
        display: block;
    }

    .voice_wrap ul {
        margin: 0 auto 0 auto;
        padding: 0 0 0 0;
        width: 94%;
        max-width: 880px;
        text-align: left;
    }

    .voice_wrap ul li {
        margin: 0 0 18px 0;
        padding: 10px;
        background: #ffffff;
        overflow: hidden;
    }

    .voice_wrap ul li .image {
        margin: 0 auto 15px auto;
        width: 114px;
        float: none;
        display: block;
    }

    .voice_wrap ul li dl {
        overflow: hidden;
    }

    .voice_wrap ul li dl dt {
        margin: 0 0 0 0;
        padding: 0 0 10px 0;
        line-height: 1.4em;
        font-size: 1.8rem;
        font-weight: bold;
        color: #929072;
    }

    @media only screen and (max-width: 1024px) {

        .voice_wrap ul li dl dt {
            font-weight: 600;
        }
    }

    .voice_wrap ul li dl dd {
        margin: 0 0 0 0;
        padding: 10px 0 19px 0;
        line-height: 1.5em;
        font-size: 1.6rem;
        color: #000000;
    }



    .product_info02 {
        margin: 0 auto 50px auto;
        padding: 35px 0 0 0;
        width: 94%;
        max-width: 880px;
        text-align: left;
    }

    .product_info02 .product {
        margin: 0 0 30px 0;
    }



    .product_info02 .product .image {
        margin: 0 0 15px 0;
        width: 100%;
        max-width: 100%;
        float: none;
        display: block;
    }

    .product_info02 .product .info {
        line-height: 1.4em;
        font-size: 13px;
        /* overflow: hidden; */
        width: 80%;
        margin: 0 auto;
    }

    .product_info02 .product .info .box {
        min-height: 275px;
    }



    .product_info02 .product .info .box .catch01 {
        padding: 15px 0 5px 0;
        line-height: 1em;
        font-size: 32px;
        font-weight: bold;
        color: #e66c2a;
        text-align: center;
    }

    .product_info02 .product .info .box .catch01 em {
        padding: 0 25px 15px 25px;
        line-height: 1.4em;
        font-size: 22px;
        font-weight: normal;
        color: #e66c2a;
        text-align: center;
        display: inline-block;
        position: relative;
    }

    .product_info02 .product .info .box .catch01 em:before {
        content: url("../images/icon_01.png");
        position: absolute;
        top: 0;
        left: 0;
    }

    .product_info02 .product .info .box .catch01 em:after {
        content: url("../images/icon_02.png");
        position: absolute;
        top: 0;
        right: 0;
    }

    .product_info02 .product .info .box .catch02 {
        padding: 0 0 10px 0;
        line-height: 1.4em;
        font-size: 16px;
        color: #595757;
        text-align: center;
    }

    .product_info02 .product .info .box .catch02 em {
        line-height: 1.4em;
        font-size: 21px;
        /*font-weight: bold;*/
        color: #ea5514;
    }

    .product_info02 .product .info .box .catch03 {
        padding: 15px 0 10px 0;
        line-height: 1.4em;
        font-size: 24px;
        color: #e66c2a;
        text-align: center;
    }

    .product_info02 .product .info .box .name {
        margin: 0 0 5px 0;
        line-height: 1.4em;
        font-size: 13px;
        font-weight: bold;
        /* width: 80%;
    margin: 0 auto; */
    }

    .product_info02 .product .info .box .txt {

        /* width: 80%;
    margin: 0 auto; */
    }

    .product_info02 .product .info .box .price {
        margin: 0 0 10px 0;
        /* width: 80%;
    margin: 0 auto; */
    }

    .product_info02 .product .info .box .price .num {
        line-height: 1.4em;
        font-size: 17px;
    }

    .product_info02 .product .info .btn {
        margin: 6% auto 1%;
        max-width: 387px;
    }

    .product_info02 .text01 {
        margin: 0 0 10px 0;
        line-height: 1.4em;
        font-size: 15px;
        color: #231815;
    }

    .product_info02 .text02 {
        margin: 0 0 10px 0;
        line-height: 1.4em;
        font-size: 12px;
        letter-spacing: -1px;
        color: #231815;
    }


    .titleText {
        background: url("../img/main_image_text2.png") no-repeat center center,
            url("../img/main_image.png") no-repeat center center;
        background-size: contain, cover;
        padding: 5vh 2% 6vh;
    }

    .titleText2 {
        background: #f9fafc;
        padding: 2vh 2%;
    }

    #main_image {
        width: 100%;
        background: none;
        overflow: hidden;
        position: static;
        height: auto;
        background-size: contain;
        box-sizing: border-box;
    }

    #main_image img {
        width: 100%;
        height: auto;
        display: block;
    }

    #main_image h2 {
        margin: 0 auto;
        width: 100%;
        max-width: 923px;
    }

    #main_image .textBox {
        position: static;
        bottom: 0;
        text-align: left;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    #main_image .textBox h2 {
        font-size: 1.0em;
        font-family: serif;
        font-weight: bold;
        margin-bottom: 20px;
        line-height: 2.5em;
    }

    #main_image .textBox h2 span.bigText {
        font-size: 2.0em;
    }

    #main_image .textBox h2 span.kome {
        font-size: 9px;
        position: relative;
        top: -15px;
        font-weight: bold;
    }

    .main_image01 {
        margin-bottom: 15px;
        font-weight: bold;
        font-size: 1.4em;
        font-family: serif;
    }

    #main_image .textBox h3 {
        font-size: 14px;
        line-height: 1.5em;
        margin-bottom: 10px;
    }

    #main_image .textBox .price {
        margin-bottom: 20px;
        width: 100%;
        display: block;
    }


    #main_image .textBox .price01 {
        font-size: 1.0em;
        display: block;
        width: 100%;
    }


    #main_image .textBox .size0 {
        font-size: 14px;
        display: block;
        width: 100%;
    }

    #main_image .textBox .size1 {
        font-size: 14px;
        width: 100%;
        text-align: left;
    }

    #main_image .textBox .price02 {
        margin-bottom: 20px;
        font-size: 12px;
    }

    .w235 {
        width: 80% !important;
    }

    .w235 img {
        width: 80% !important;
    }






    .about .point h3.sp90 {
        width: 95%;
    }




}




.text2 {
    margin-left: 15px;
}



/**
 * cac_web_handandnail_190624
**/

.item_cart_box {
    display: block;
    width: 310px;
    margin: auto auto 45px auto;
}

.item_cart_box_title {
    display: block;
    margin-bottom: 17px;
    font-size: 1.6rem;
    white-space: nowrap;
    letter-spacing: -0.9px;
    line-height: 1.5;
}

@media only screen and (max-width: 480px) {
    .item_cart_box_title {
        white-space: normal;
    }

}

.item_cart_box_kakaku {
    display: block;
    margin-bottom: 20px;
    margin-left: -4px;
    font-size: 1.3rem;
    text-indent: 6px;
    line-height: 1.9;
    letter-spacing: 0.9px;
}

.item_cart_box_kakaku .num {
    font-size: 1.7rem;
}

.textBtn2 {
    width: 300px;
    margin: 0;
    background-color: #dbb1b6;
    box-shadow: 3px 2px 0px 2px #9d798b;

}


.herb_box_wrap {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
}

.herb_box_item {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 32%;
    margin-bottom: 30px;

}

.herb_box_item_l {
    width: 38%;
}

@media only screen and (max-width: 480px) {
    .herb_box_item_l {
        width: 60%;
    }
}

.herb_box_item_r .herb_box_item_r_title {
    color: #428474;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0;
}

.herb_box_item_r .herb_box_item_r_text {
    display: block;
    width: calc(100%/.6);
    font-size: 1.4rem;
    -webkit-transform: scale(.81);
    transform: scale(.81);
    -webkit-transform-origin: left center;
    transform-origin: left center;
}

.herb_box_item_r {
    width: 60%;
}

@media only screen and (max-width: 480px) {
    .herb_box_item_r {
        width: 36%;
    }
}

.herb_box_item_bottom {
    display: none;
}

@media only screen and (max-width: 480px) {
    .herb_box_item_bottom {
        display: block;
    }

    .herb_box_item_r .herb_box_item_r_title,
    .herb_box_item_r .herb_box_item_r_text {
        display: none;
    }

    .herb_box_item_bottom .herb_box_item_r_title {
        color: #428474;
        font-size: 1.5rem;
        font-weight: bold;
    }

    .herb_box_item_bottom .herb_box_item_r_text {
        display: block;
        width: calc(100%/.6);
        font-size: 1.4rem;
        -webkit-transform: scale(.81);
        transform: scale(.81);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }

}


.voice {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 870px;
    margin: auto;
}

.voice .voice_item {
    width: 31%;
    background: #fff;
    padding: 20px;
}

.voice .voice_item h3 {
    font-size: 1.9rem;
    text-align: center;
    color: #8EB2AE;
    margin-bottom: 20px;

}

@media only screen and (max-width: 480px) {
    .voice .voice_item {
        width: 88%;
        margin: auto auto 20px auto;
    }
}

.voice .voice_item .voice_item_title {
    color: #8EB2AE;
    font-size: 1.7rem;
    text-align: center;
    font-weight: bold;
    padding-bottom: 10px;
    border-bottom: 2px solid #8EB2AE;
    margin-bottom: 20px;
    background: url('../img/cac_web_dml_190807/ico_voice.png') 50% 0 no-repeat;
    padding-top: 45px;

}

.voice .voice_item .voice_item_text {
    font-size: 1.6rem;
    line-height: 1.5;

}





/**
 * cac_web_dml_190624
**/



.keep_water {
    display: block;
    margin-bottom: 55px;
    padding: 30px 45px;
    background: #fff;
    text-align: center;
}

@media only screen and (max-width: 480px) {

    .keep_water {
        margin-bottom: 60px;
        padding: 15px;
    }



}

.keep_water picture {
    display: block;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;

}

.keep_water picture img {
    margin: auto;

}


.how_dml {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
}

.how_dml .how_dml_item {
    width: 32%;
    padding: 30px 20px 20px 20px;
    background: #c5d4e3;
}

@media only screen and (max-width: 480px) {
    .how_dml .how_dml_item {
        width: 100%;
        padding: 30px 20px 20px 20px;
        margin-bottom: 10px;
    }
}

.how_dml .how_dml_item .how_dml_title {
    font-size: 1.8rem;
    color: #d78bb6;
    margin-bottom: 15px;
    text-align: center;
}

.how_dml .how_dml_item:nth-child(2) .how_dml_title {
    letter-spacing: -2px;
}

.how_dml .how_dml_item .how_dml_text {
    font-size: 1.6rem;
    line-height: 1.5;
    height: 140px;
    margin-bottom: 20px;
}

@media only screen and (max-width: 480px) {
    .how_dml .how_dml_item .how_dml_text {
        height: auto;
    }
}
/* Acordion Faq */
/*.tab {
  position: relative;
  margin-bottom: 1px;
  width: 100%;
  overflow: hidden;
}
input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
label {
  position: relative;
  display: block;
  padding: 0 0 0 1em;
  font-weight: bold;
  c
}

.tab-content {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height .35s;
  -o-transition: max-height .35s;
  transition: max-height .35s;
}

.tab-content p {
  margin: 1em;
}
/* :checked */
input:checked ~ .tab-content {
  max-height: 100%;
}
/* Icon */
/*label::after {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 3em;
  height: 3em;
  line-height: 3;
  text-align: center;
  -webkit-transition: all .35s;
  -o-transition: all .35s;
  transition: all .35s;
}
input[type=checkbox] + label::after {
  content: "+";
}
input[type=radio] + label::after {
  content: "\25BC";
}
input[type=checkbox]:checked + label::after {
  transform: rotate(315deg);
}
input[type=radio]:checked + label::after {
  transform: rotateX(180deg);
}*/*/



/*ボックス全体*/
.accbox {
    margin: 2em 0;
    padding: 0;
    max-width: 400px;/*最大幅*/
}

/*ラベル*/
.accbox label {
    position: relative;
    display: block;
    margin: 1.5px 0;
    padding : 13px 12px;
    font-weight: bold;
    transition: all 0.5s;
    font-size: 18px;
    text-align: center;
    background: #ffffff;
    border: 1px solid #707070;

}

/*アイコンを表示*/
.accbox label:before {
    position: absolute;
    right: 0;
    top: 0;
    content: '+';
    padding: 13px 17px 12px 0;
    color: #707070;
    font-size: 21px;
}

/*ラベルホバー時*/
/*.accbox label:hover {
    background :#fff;
}*/

/*チェックは隠す*/
.accbox input {
    display: none;
}

/*中身を非表示にしておく*/
.accbox .accshow {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
}

/*クリックで中身表示*/
.cssacc:checked + label + .accshow {
    height: auto;
    padding: 10px 25px 25px;
    background: #ffffff;
    opacity: 1;
}

.accbox .accshow p {
    margin: 15px 10px}

/*アイコンを入れ替える*/
.cssacc:checked + label:before {
    content: 'ー';
    font-size: 17px;
    font-weight: 100;
}

.acc_title {
  color: #428474;
  padding-bottom: 10px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;

}
.title-border {
display: flex;
align-items: center;
}
.title-border:before,
.title-border:after {
border-top: 2px solid;
content: "";
flex-grow: 1;
}
.title-border:before {
margin-right: 1rem;
}
.title-border:after {
margin-left: 1rem;
}

.content {
  width: 1024px;
  margin: 0 auto;
  overflow: hidden;
}

@media screen and (max-width: 740px){
  .content {
    width: 100%;
    margin: 0;
  }
}

.footer{
  min-width: 1024px !important;
}

@media screen and (max-width: 740px){
  .footer{
    min-width: auto !important;
  }
}