@charset "UTF-8";

:root {
    --base-color: #000;
    --link-color: #666;
    --linkhover-color: #999;
    /* --back-color: #f7f7f7; */
    --back-color: #009966;
    --border-color: #ccc;
    --white-color: #fff;
}

/* 全体の設定
–––––––––––––––––––––––––––––––––––––––––––––––––– */
html {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    font-size: 62.5%;
}

body {
    color: #000;
    font-family: 'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
    background:#fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin:0;
    padding:0;
}

/* グリッド
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 2.0rem;
    position: relative;
}
/* ブロックを縦に表示 */
.row {
    display: flex;
    flex-direction: column;
    padding: 0;
    width: 100%;
}

.col {
    display: block;
    flex: 1 1 auto;
    margin-left: 0;
    max-width: 100%;
    width: 100%;
}

/* 見出し
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 0.1em;
}
h1 {
    font-size: 3.2rem;
    line-height: 1;
    letter-spacing: -.1rem;
    font-family: serif;
    margin-top: 18px;
    margin-left: 10px;
}
h2 {
    font-size: 3.0rem;
    line-height: 1.25;
    letter-spacing: -.1rem;
    font-family: "ShipporiMincho", serif;
}
h3 {
    font-size: 2.5rem;
    line-height: 1.3;
    letter-spacing: -.1rem;
}
h4 {
    font-size: 2.4rem;
    line-height: 1.35;
    letter-spacing: -.08rem;
}
h5 {
    font-size: 1.8rem;
    line-height: 1.5;
    letter-spacing: -.05rem;
}
h6 {
    font-size: 1.5rem;
    line-height: 1.6;
    letter-spacing: 0;
}

p {
    margin-top: 0;
}

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


/* 販売実績商品・販売実績ブランド
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.provenProducts img,
.provenBrand img {
    width: 210px;
    height: 200px;
}

.provenProducts .title,
.provenBrand .title {
    text-shadow: 2px 2px 1px #BDB76B;
    /* height: 3rem; */
}

.provenProducts .price,
.provenBrand .price {
    font-size: 4rem;
    font-family: 'Times New Roman';
    text-shadow: 2px 2px 2px #FFF;
    color: #BDB76B;
}

/* リンク
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
    display:block;
    text-decoration-line: none;
}
a:hover { 
    color: #fff;
}


/* ボタン
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type="submit"],
input[type="button"] {
    height: 38px;
    padding: 15px 45px 50px;
    color: #fff;
    background-color: #eb6100;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
}
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="button"]:focus {
    font-weight: bold;
    border-color: #888;
    outline: 0;
}


/* フォーム
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"],
input[type="number"],
input[type="text"],
input[type="tel"],
textarea,
select {
    height: 38px;
    padding: 6px 10px;
    background-color: #fff;
    border: 1px solid #D1D1D1;
    box-shadow: none;
    box-sizing: border-box;
    font-size: 16px;
}

input[type="email"],
input[type="number"],
input[type="text"],
input[type="tel"],
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
textarea {
    min-height: 150px;
    padding-top: 6px;
    padding-bottom: 6px;
}
input[type="email"]:focus,
input[type="number"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
    border: 1px solid #0FA0CE;
    outline: 0;
}
label {
    display: block;
    margin-bottom: .5rem;
    font-weight: 500;
}
input[type="checkbox"],
input[type="radio"] {
    display: inline;
}

/*ヘッダー
-------------------------------------*/
header {
    position: fixed;
    width: 100%; 
    background: #fff; 
    top: 0; 
    left: 0; 
    display: flex;
    z-index: 9999;
}
header .ttl {
    display: flex;
}
.header {
    justify-content: space-between;
    width: 100%;
    display: flex;
}
.sp-only {
    display: none;
}

/*メイン画像
-------------------------------------*/
.mainimg {
    margin-top: 6rem;
    width: 100vw;
}

.mobile-image {
    display: none;
}


/*メインコンテンツ
-------------------------------------*/
main {
    margin: 5rem 0 0 0;
}
.gray-back {
	background-color: var(--back-color);
    text-align: center;
    color: #fff;
}

/* リスト
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
    list-style: circle inside;
}
ol {
    list-style: decimal inside;
}
ol, ul {
    padding-left: 0;
    margin-top: 0;
}
ul ul,
ul ol,
ol ol,
ol ul {
    margin: 1.5rem 0 1.5rem 3rem;
    font-size: 90%;
}
li {
    margin-bottom: 1rem;
}

/* テーブル
–––––––––––––––––––––––––––––––––––––––––––––––––– */
table {
    border-collapse: collapse;
}
th,
td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #E1E1E1;
}
th:first-child,
td:first-child {
    padding-left: 0;
}
th:last-child,
td:last-child {
    padding-right: 0;
}

/* スペース
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
    margin-bottom: 1rem;
}
input,
textarea {
    margin-bottom: 1.5rem;
}
table,
p,
ul,
ol,
form {
    margin-bottom: 3rem;
}

/* 全幅
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.full-width {
    width: 100%;
    box-sizing: border-box;
}
.max-full-width {
    max-width: 100%;
    box-sizing: border-box;
}
.pull-right {
    float: right;
}
.pull-left {
    float: left;
}

/* 問い合わせボタン
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.infoBtn {
    display: flex;
}

.infoBtn a {
    background: #3CB371;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 240px;
    padding: 20px 40px;
    color: #fff;
    transition: 0.3s ease-in-out;
    text-align: center;
    font-weight: 700;
}
.infoBtn a:hover {
    background: #2E8B57;
    color: #fff;
}

.displayBtn {
    margin-top: 30px !important;
    margin-bottom: 15px !important;
}

/* アコーディオン
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.accordion-content {
    display: none;
}
.accordion-header {
    background-color: #FFF;
    padding: 12px 45px 10px 20px;
    margin: 10px 0 0;
    transition: background .3s ease;
    cursor: pointer;
    position: relative;
}
.accordion-header::before,
.accordion-header::after {
    position:absolute;
    content:'';
    top:1px;
    right:20px;
    bottom:0;
    width:12px;
    height:2px;
    margin:auto;
    background:#151E2F;
}
.accordion-header::after {
    transform:rotate(-90deg);
    transition:transform 0.3s;
}
.accordion-header.active::after {
    transform:rotate(0deg);
}

.accordion-content {
    background-color: #FFF;
    padding: 12px 20px 10px;
}

.accordion-header span,
.accordion-content span {
    padding-left: 25px;
    position: relative;
    display: flex;
}

.accordion-header span::before {
    position: absolute;
    content:"Q";
    top: -1px;
    left: 0;
    color: #151E2F;
    font-size: 17px;
}

.accordion-content span::before {
    position: absolute;
    content:"A";
    top: -1px;
    left: 0;
    color: #151E2F;
    font-size: 17px;
}

/* hover */
.accordion-header:hover {
    background-color: #F2F2F2;
}

/* 電話ボタン
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.btn {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    padding: 1rem 4rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.1em;
    color: #212529;
    border-radius: 0.5rem;
    width: 60rem;
}

.btn-wrap {
    display: flex;
    justify-content: center;
}

a.btn--tel {
    display: block;
    padding: 1rem 0 1rem 0rem;
    color: #fff;
    border-radius: 100vh;
    background: #eb6100;
    -webkit-box-shadow: 0 5px 0 #d25600;
    box-shadow: 0 5px 0 #d25600;
}

a.btn--tel i,
a.btn--tel {
    font-size: 1.5rem;
}

a.btn--tel .number {
    line-height: 1;
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.25rem 2rem;
    letter-spacing: 0;
    color: #eb6100;
    border-radius: 0.5rem;
    background: #fff;
}

a.btn--tel:hover {
    color: #fff;
}

/* 「個人情報のお取り扱い」「利用規約」
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.policy_box {
    width: 100%;
    height: 230px;
    overflow: auto;
    background: #ffffff;
    border: 1px solid #cccccc;
    padding: 10px;
    text-align: left;
}

.policy_title {
    text-align: center;
    display: block;
    font-weight: bold;
}

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

/* 「問い合わせ」ボタン上のエラーメッセージ
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.error {
    color: red;
}

/*キャッチコピー
-------------------------------------*/
.catch {
    text-align: center;
}
.catch h2 {
    padding-bottom: 1rem;
}
.under {
    border-bottom: 0.4rem solid var(--base-color);
    padding:0 1rem 1rem 1rem;
}
.gray-back > h2 > .under {
    border-bottom: 0.4rem solid #BDB76B !important;
    padding:0 1rem 1rem 1rem;
}
.center {
	text-align: center;
	margin-bottom: 4rem;
}

/*こんな悩みありませんか？
-------------------------------------*/
.worry-box {
    margin-top: 50px;
}
.worries {
    margin-bottom: 50px;
}
.worry-content {
    /* margin: 2em 0; */
    background: #f1f1f1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
}
.worry-content .worry-title {
    font-size: 1.2em;
    background: #99CCCC;
    padding: 4px;
    text-align: center;
    color: #FFF;
    font-weight: bold;
    letter-spacing: 0.05em;
}
.worry-content p {
    padding: 15px 20px;
    margin: 0;
}

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

/*お客様の声
-------------------------------------*/
.impressions {
    text-align: left;
    margin: 0; 
    padding: 0;
}
.impression-title {
    font-family: HiraMinProN-W3;
}
.impression-main {
    padding: 0.5em 1em;
    color: #474747;
    background: whitesmoke;
    border-left: double 7px #3CB371;
    border-right: double 7px #3CB371;
    margin-bottom: 30px;
}

/*鶴の屋が選ばれる理由
-------------------------------------*/
.reason-title {
    font-family: HiraMinProN-W3;
    font-size: 4rem;
    margin-bottom: 0px !important;
}

.appeal-more {
    font-size: 2.2rem;
    text-shadow: 2px 2px 1px #BDB76B;
    color: antiquewhite;
}

.reason-title-box {
    margin-bottom: 15px;
    margin-right: 20px;
    margin-left: 20px;
    margin-top: 12px;
    position: relative;
    padding: 0.25em;
    border: solid 2px #ffcb8a;
    border-radius: 3px 0 3px 0;
}
.reason-title-box:before, .reason-title-box:after {
    content: '';
    position: absolute;
    width:10px;
    height: 10px;
    border: solid 2px #ffcb8a;
    border-radius: 50%;
}
.reason-title-box:after {
    top:-12px;
    left:-12px;
}
.reason-title-box:before {
    bottom:-12px;
    right:-12px;
}

/*フッター
-------------------------------------*/
footer {
    background-color: var(--back-color); 
    padding: 5rem 0;
    text-align: center;
    padding: 1rem 0;
    color: var(--white-color);
    /* background-color: var(--base-color); */
}
footer h4 {
    border-bottom: 3px solid var(--border-color);
}
footer a {
    color: var(--white-color);
    text-decoration: none;
	display: inline;
}
footer .container {
    margin-bottom: 20px;
}
footer p {
    margin-bottom: 0px;
}

/*お問い合わせ
-------------------------------------*/
.table {
	margin: 4rem 0;
}
.table th {
	width: 250px;
}

/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
    position: fixed;
    bottom: 15px;
    right: 15px;
}
#pagetop a {
    display: block;
    background-color: #3CB371;;
    color: var(--white-color);
    width: 60px;
    padding: 15px 5px;
    text-align: center;
    border-radius: 50%;
    text-decoration: none;
}

/* 幅768px以下の表示（スマホ表示）
-------------------------------------*/
@media screen and (max-width: 768px) {
    h1 > img {
        max-width: 70%;
    }
    .header > .infoBtn {
        font-size: 1.5rem;
    }
    .header .infoBtn a {
        padding: 10px 30px;
    }
    .sp-only {
        display: block;
    }
    .mainimg {
        margin-top: 6rem;
    }

    .desktop-image,
    .recommendation-image {
        display: none;
    }
    .mobile-image {
        display: block;
    }

    .pc-only-br {
        display: none;
    }

    /*ヘッダー
    -------------------------------------*/
    .header-box {
        display: none;
    }	
    /*お問い合わせ
    -------------------------------------*/
    .table th {
        width: 100%;
        display: block;
    }	
    .table td {
        display: block;
    }
}

/* 768px以上の表示（PC表示） */
@media (min-width : 768px) {
    .row {
        display: flex;
        flex-direction: row;
        padding: 0;
    }
    .col {
        margin-left: 4%;
    }
        
    .col:first-child { 
        margin-left: 0; 
    }

    .row .col.span-1 {
        flex: 0 0 4.66666666667%;
        max-width: 4.66666666667%;
    }
    .row .col.span-2 {
        flex: 0 0 13.3333333333%;
        max-width: 13.3333333333%;
    }
    .row .col.span-3 {
        flex: 0 0 22%;
        max-width: 22%;
    }
    .row .col.span-4 {
        flex: 0 0 30.6666666667%;
        max-width: 30.6666666667%;
    }
    .row .col.span-5 {
        flex: 0 0 39.3333333333%;
        max-width: 39.3333333333%;
    }
    .row .col.span-6 {
        flex: 0 0 48%;
        max-width: 48%;
    }
    .row .col.span-7 {
        flex: 0 0 56.6666666667%;
        max-width: 56.6666666667%;
    }
    .row .col.span-8 {
        flex: 0 0 65.3333333333%;
        max-width: 65.3333333333%;
    }
    .row .col.span-9 {
        flex: 0 0 74.0%;
        max-width: 74.0%;
    }
    .row .col.span-10 {
        flex: 0 0 82.6666666667%;
        max-width: 82.6666666667%;
    }
    .row .col.span-11 {
        flex: 0 0 91.3333333333%;
        max-width: 91.3333333333%;
    }
    .row .col.span-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* オフセット */
    .row .col.offset-1 {
        margin-left: 8.66666666667%;
    }
    .row .col.offset-2 {
        margin-left: 17.3333333333%;
    }
    .row .col.offset-3 {
        margin-left: 26%;
    }
    .row .col.offset-4 {
        margin-left: 34.6666666667%;
    }
    .row .col.offset-5 {
        margin-left: 43.333333333%;
    }
    .row .col.offset-6 {
        margin-left: 52%;
    }
    .row .col.offset-7 {
        margin-left: 60.6666666667%;
    }
    .row .col.offset-8 {
        margin-left: 69.3333333333%;
    }
    .row .col.offset-9 {
        margin-left: 78.0%;
    }
    .row .col.offset-10 {
        margin-left: 86.6666666667%;
    }
    .row .col.offset-11 {
        margin-left: 95.3333333333%;
    }

    .impression-title {
        height: 6.5rem;
    }
}

/* PC表示 */
@media (min-width: 550px) {
    h1 {
        font-size: 3.0rem;
    }
    h2 {
        font-size: 2.8rem;
    }
    h3 {
        font-size: 2.5rem;
    }
    h4 {
        font-size: 2.0rem;
    }
    h5 {
        font-size: 1.8rem;
    }
    h6 {
        font-size: 1.5rem;
    }
    .provenProducts .title,
    .provenBrand .title,
    .provenBrand .detail {
        height: 6rem;
    }
}