@charset "utf-8";
/*
* リセット
* 基本スタイル
* 全ページ共通スタイル
* メイン部分
* ヘッダー
* グローバルナビゲーション
* フッター
* リンク
* パーツ
* 汎用
*/

/* -------------------------------- リセット */
/*body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,button,textarea,select,p,blockquote,th,td {margin: 0;padding: 0;}*/
ul,ol,li,h1,h2,h3,h4,h5,h6,form,p {margin: 0;padding: 0;}
table{border-collapse:collapse;border-spacing:0;}
fieldset,img{border:0;}
img{vertical-align:bottom;}
h1,h2,h3,h4,h5,h6{font-size:100%;}
ol,ul {list-style:none;}
em {font-style:normal;}

/* HTML5 */
article,aside,canvas,details,figcaption,figure,footer,header,menu,nav,section,summary,main {display:block; margin:0; padding:0; }
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,button,textarea,select,p,blockquote,table,caption,th,td,article,aside,canvas,details,figcaption,figure,footer,header,menu,nav,section,summary,a {
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
}


/* -------------------------------- 基本スタイル */
html {
    cursor: auto;
    font-size: 62.5%;
}
body {
    font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    font-weight: normal;
    line-height: 1.8;
    font-size: 1.4rem;
    /*min-width: 1200px;*/
}
@media screen and (min-width: 768px) {
    body {
        /*min-width: initial;*/
        /*min-width: auto;*/
    }
}
@media screen and (max-width: 767px) {
    body {
        /*min-width: 375px;*/
        /*min-width: initial;*/
        /*min-width: auto;*/
    }
}
p {
    margin-bottom: 1em;
}
img {
    max-width: 100%;
    height: auto;
}

/* レイアウト */
body {
}


/* -------------------------------- テーブル */
/* 共通 */
table {
    margin: 0 0 20px;
}
table th {
    padding: 6px 15px;
    border: 1px solid #41220E;
    /*background: rgba(65, 34, 14, 0.5);*/
    background-color: #AFA16C;
    text-align: center;
}
table td {
    padding: 6px 15px;
    border: 1px solid #41220E;
    text-align: left;
}

/* 簡単な2列のテーブル。左に見出しで右が内容 */
table.table01 {
    width: 100%;
}
@media screen and (max-width: 767px) {
    table.table01 {
        width: 100%;
        border: 1px solid #41220E;
    }
    table.table01 th {
        /*padding: 0 0 0 0;*/
        display: block;
        width: 100%;
        border-bottom: none;
        /*border: none;*/
        /*border: 1px solid #41220E;*/
        /*background: rgba(65, 34, 14, 0.5);*/
        /*background-color: #AFA16C;*/
        /*background: none;*/
        text-align: left;
        font-weight: bold;
        /*line-height: 1.1;*/
    }
    table.table01 td {
        /*padding: 0;*/
        display: block;
        width: 100%;
        /*border: none;*/
        text-align: left;
        font-weight: normal;
        border-bottom: none;
    }
    table.table01 td:last-child {
        /*border-bottom: 1px solid #41220E;*/
    }
    table.table01 input[type=text],
    table.table01 select,
    table.table01 textarea {
        max-width: 100% !important;
    }
}

/* common */
/* 上部にtheadがあるテーブル。スマホと表示を分ける */
table.table02 {
    width: 100%;
}
@media screen and (max-width: 767px) {
    table.table02 {
        width: 100%;
        border: 1px solid #41220E;
    }
    table.table02 th {
        /*padding: 0 0 0 0;*/
        display: block;
        width: 100%;
        border-bottom: none;
        /*border: none;*/
        /*border: 1px solid #41220E;*/
        /*background: rgba(65, 34, 14, 0.5);*/
        /*background-color: #AFA16C;*/
        /*background: none;*/
        text-align: left;
        font-weight: bold;
        /*line-height: 1.1;*/
    }
    table.table02 td {
        /*padding: 0;*/
        display: block;
        width: 100%;
        /*border: none;*/
        text-align: left;
        font-weight: normal;
        border-bottom: none;
    }
    table.table02 td:last-child {
        /*border-bottom: 1px solid #41220E;*/
    }
    table.table02 input[type=text],
    table.table03 select,
    table.table03 textarea {
        max-width: 100% !important;
    }
}

/* -------------------------------- リスト */
.listDisc_01 {
    padding: 0 0 0 26px;
    list-style: disc;
}
.listDisc_01 li {
    margin: 0 0 12px;
}
.listDisc_02 {
    padding: 0 0 0 5px;
}
.listDisc_02 li {
    margin: 0 0 12px;
}
.listDisc_02 li::before {
    font-family: 'FontAwesome';
    content: '\f0da';
    margin: 0 5px 0 0;
}
.listDisc_03 {
    padding: 7px 0 0 5px;
}
.listDisc_03 li::before {
    content: '\f0da';
    font-family: 'FontAwesome';
    color: #09C;
    margin-right: 5px;
}
.listDecimal {
    list-style: decimal;
    padding-left: 25px;
}
.listRoman {
    list-style-type: lower-roman;
    padding-left: 20px;
}
/* -------------------------------- 定義リスト */
/* dlリスト
dl_01…PC横並び、SP以下改行
dl_02…PC、SP共に横並びリスト
dl_03…PC、SP共に改行
*/
.dlList_01,
.dlList_02 {
    border-bottom: 1px dotted #666;
}
.dlList_01 dt,
.dlList_02 dt {
    clear: both;
    float: left;
    width: 15rem;
    padding: 15px 0 15px 15px;
}
.dlList_01 dt:nth-of-type(n+2),
.dlList_02 dt:nth-of-type(n+2) {
    border-top: 1px dotted #666;
}
.dlList_01 dd,
.dlList_02 dd {
    margin-left: 15rem;
    padding: 15px;
}
.dlList_01 dd:nth-of-type(n+2),
.dlList_02 dd:nth-of-type(n+2) {
    border-top: 1px dotted #666;
}
@media screen and (max-width: 767px) {
    .dlList_02 dt {
        width: 80px;
    }
    .dlList_01 dt {
        float: none;
        width: auto;
        padding: 8px 10px 2px;
    }
    .dlList_01 dd {
        margin-left: 0;
        padding: 2px 10px 8px;
    }
    .dlList_01 dd + dt + dd {
        border: none;
    }
}
/*+++++++++++++++++++++++++++++++++++++++++++
    全ページで必ず使っているstyle
+++++++++++++++++++++++++++++++++++++++++++ */
.inner {
    width: 1200px;
    margin: 0 auto;
}
.inner::after {
    content: '';
    display: block;
    clear: both;
}
.inner::after {
    content: '';
    display: block;
    clear: both;
}
@media screen and (max-width: 767px) {
    .inner {
        max-width: 1200px;
        width: auto;
        padding: 0 0;
    }
}
.pageTop {
    margin: 0 auto;
    padding: 10px 0;
    width: 1200px;
    background: #FFF9F1;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .pageTop {
        float: none;
        width: auto;
        margin: 0;
        padding: 10px 0;
        border: none;
    }
}
.pageTop img {
    width: 65px;
    height: auto;
    cursor: pointer;
}

/*+++++++++++++++++++++++++++++++++++++++++++
    メイン部分
+++++++++++++++++++++++++++++++++++++++++++ */
main .inner {
    padding: 0 30px 30px 30px;
    background: #FFF9F1;
    color: #3f210f;
}
main .inner::after {
    content: "";
    display:block;
    clear:both;
}
@media screen and (max-width: 767px) {
    main .inner {
        padding: 10px;
    }
}

main h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-feature-settings: "palt";
}

main h3 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 0.5rem;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-feature-settings: "palt";
}

main h4 {
    font-size: 1.8rem;
    text-align: left;
    margin-bottom: 0.5rem;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-feature-settings: "palt";
}


main .inner .mainArea {
    float: left;
    width: 900px;
}
@media screen and (max-width: 767px) {
    main .inner .mainArea {
        float: none;
        width: auto;
        margin: 0;
        padding: 0;
        border: none;
    }
}
main .inner .mainArea section.sectionBox {
    box-shadow: 3px 4px 5px 0px rgba(64, 34, 15, 0.55);
}
main .inner .mainArea section.sectionBox h2 {
    height: 60px;
    padding: 5px;
    background: #3f210f;
    text-align: center;
    line-height: 1;
    color: white;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-feature-settings: "palt";
}
main .inner .mainArea section.sectionBox h2 .bg {
    display: inline-block;
    width: 352px;
    height: 50px;
    padding: 8px 70px 0;
    background: url(../img/bg_h2.png) no-repeat;
}
main .inner .mainArea section.sectionBox h2 .bg strong {
    font-size: 2rem;
    font-weight: normal;
}
main .inner .mainArea section.sectionBox .innerBlock {
    padding: 12px;
    background: white;
}

main .inner .mainArea section.sectionBox2 {
    margin: 0 0 30px;
    padding: 25px;
    box-shadow: 3px 4px 5px 0px rgba(64, 34, 15, 0.55);
    text-align: center;
    line-height: 1.5;
}
main .inner .mainArea section.sectionBox2.white {
    background-color: #fff;
}
main .inner .mainArea section.sectionBox2.blue {
    background-color: #e8f1ee;
}
main .inner .mainArea section.sectionBox2.red {
    background-color: #f9f2e3;
}
main .inner .mainArea section.sectionBox2.gold {
    background-color: #e2dbc3;
}
main .inner .mainArea section.sectionBox2.brass {
    background-color: #fcf4d7;
}
main .inner .mainArea section.sectionBox2.pink {
    background-color: #fcecea;
}
main .inner .mainArea section.sectionBox2.mint {
    background-color: #e8f1ee;
}
main .inner .mainArea section.sectionBox2 h2 {
    display: inline-block;
    margin: 0 0 17px;
    line-height: 31px;
    vertical-align: middle;
    font-size: 2.2rem;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-feature-settings: "palt";
}
main .inner .mainArea section.sectionBox2 h2.blue {
    color: #59c3e1;
}
main .inner .mainArea section.sectionBox2 h2.purple {
    color: #d4b6d3;
}
main .inner .mainArea section.sectionBox2 h2.brass {
    color: #d4c17d;
}
main .inner .mainArea section.sectionBox2 h2.pink {
    color: #f19ec2;
}
main .inner .mainArea section.sectionBox2 h2.green {
    color: #48aa6c;
}
/*
main .inner .mainArea section.sectionBox2 h2::before {
    content: "";
    display: inline-block;
    width: 53px;
    height: 31px;
    margin-right: 1em;
    background: url(../img/icon_decoration_01.png) right center no-repeat;
    background-size: contain;
}
main .inner .mainArea section.sectionBox2 h2::after {
    content: "";
    display: inline-block;
    width: 53px;
    height: 31px;
    margin-left: 1em;
    background: url(../img/icon_decoration_01.png) right center no-repeat;
    background-size: contain;
    transform: rotate(180deg);
}
main .inner .mainArea section.sectionBox2 h2.type2::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 74px;
    margin-right: 1em;
    background: url(../img/icon_decoration_02.png) right center no-repeat;
    background-size: contain;
}
main .inner .mainArea section.sectionBox2 h2.type2::after {
    content: "";
    display: inline-block;
    width: 40px;
    height: 74px;
    margin-left: 1em;
    background: url(../img/icon_decoration_02.png) right center no-repeat;
    background-size: contain;
    transform: rotate(180deg);
}
*/
main .inner .mainArea section.sectionBox2 h2.brass-ornament {
    position: relative;
    display: inline-block;
    color: #d4c17d;
    padding-left: 60px;
    padding-right: 60px;
}
@media screen and (max-width: 767px) {
	main .inner .mainArea section.sectionBox2 h2.brass-ornament {
		position: relative;
		display: inline-block;
		color: #d4c17d;
		padding-left: 10px;
		padding-right: 10px;
	}
}
main .inner .mainArea section.sectionBox2 h2.brass-ornament:before,
main .inner .mainArea section.sectionBox2 h2.brass-ornament:after {
    position: absolute;
    top: 50%;
    margin-top: -15px;
    content: "";
    display: block;
    width: 55px;
    height: 30px;
}
/*
main .inner .mainArea section.sectionBox2 h2.brass-ornament:before {
    left: 0;
    background: url(../../assets/img/product/h2_ornament110x60L.png) 0 0 no-repeat;
    background-size: 55px 30px;
    background: url(../../assets/img/product/h2_ornament55x30L.png) 0 0 no-repeat\9;
}
main .inner .mainArea section.sectionBox2 h2.brass-ornament:after {
    right: 0;
    background: url(../../assets/img/product/h2_ornament110x60R.png) 0 0 no-repeat;
    background-size: 55px 30px;
    background: url(../../assets/img/product/h2_ornament55x30R.png) 0 0 no-repeat\9;
}
*/
main .inner .mainArea section.sectionBox2 .innerBlock h3 {
    font-size: 1.9rem;
    color: #59c3e1;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-feature-settings: "palt";
}
main .inner .mainArea section.sectionBox2 .innerBlock h3.brass {
    color: #d4c17d;
}
main .inner .mainArea section.sectionBox2 .innerBlock h3.lavender {
    color: #dd9db2;
}
main .inner .mainArea section.sectionBox2 .innerBlock h3.mandarin {
    color: #eee19e;
}
main .inner .mainArea section.sectionBox2 .innerBlock h3.eucalyptus {
    color: #9dcab6;
}
main .inner .mainArea section.sectionBox2 .innerBlock h3.pink {
    color: #f19ec2;
}
main .inner .mainArea section.sectionBox2 .innerBlock h3.green {
    color: #48aa6c;
}
main .inner .mainArea section.sectionBox2 .innerBlock h3.align-left {
    text-align: left;
}
@media screen and (max-width: 767px) {
    main .inner .mainArea section.sectionBox2 .innerBlock h3.sp_align-left {
        text-align: left;
    }
}
main .inner .mainArea section.sectionBox2 .innerBlock h3.line {
    margin-top: .5em;
    border-top: 2px solid #59c3e1;
    line-height: 1;
}
main .inner .mainArea section.sectionBox2 .innerBlock h3.line.line_pink {
    border-top: 2px solid #f19ec2;
}
main .inner .mainArea section.sectionBox2 .innerBlock h3.line span {
    position:relative;
    top: -.5em;
    display: inline-block;
    padding: 0 .5em 0 0;
    background-color: #e8f1ee;
}
main .inner .mainArea section.sectionBox2 .innerBlock h3.line.line_pink span {
    background-color: #fcecea;
}
main .inner .mainArea section.sectionBox2 .innerBlock h3.line-brass {
    margin-top: .5em;
    border-top: 2px solid #d4c17d;
    line-height: 1;
}
main .inner .mainArea section.sectionBox2 .innerBlock h3.line-brass span {
    position:relative;
    top: -.5em;
    display: inline-block;
    padding: 0 .5em 0 0;
    color: #d4c17d;
    background-color: #fcf4d7;
}
main .inner .mainArea section.sectionBox2 .innerBlock {
    text-align: left;
}
main .inner .mainArea section.sectionBox2 .innerBlock .photo_text {
    margin: 0 0 30px;
}
main .inner .mainArea section.sectionBox2 .innerBlock .photo_text:after {
    content: "";
    display: block;
    clear: both;
}
main .inner .mainArea section.sectionBox2 .innerBlock .photo_text .photo {
    float: left;
    width: 274px;
    margin-right: 30px;
    border: 1px solid #59c3e1;
}
main .inner .mainArea section.sectionBox2 .innerBlock .photo_text .photo.border_pink {
    border: 1px solid #f19ec2;
}
main .inner .mainArea section.sectionBox2 .innerBlock .photo_text .photo.frame-brass {
    border: 1px solid #d4c17d;
}
main .inner .mainArea section.sectionBox2 .innerBlock .photo_text .text {
    float: left;
    width: 535px;
}
main .inner .mainArea section.sectionBox2 .innerBlock .photo_text .text span.bold{
    font-weight: bold;
}
main .inner .mainArea section.sectionBox2 .innerBlock .photo_text .text ul.attention{
    list-style: none;
}
main .inner .mainArea section.sectionBox2 .innerBlock .photo_text .text ul.attention li{
    position: relative;
    margin-bottom: 5px;
    padding-left: 1.2em;
}
main .inner .mainArea section.sectionBox2 .innerBlock .photo_text .text ul.attention li:before{
    position: absolute;
    top: 0;
    left: 0;
    content: '※'
}
/*
main .inner .mainArea section.sectionBox2 .innerBlock .photo_text {
    display: flex;
    margin: 0 0 30px;
}
main .inner .mainArea section.sectionBox2 .innerBlock .photo_text:last-child {
    margin-bottom: 5px;
}
main .inner .mainArea section.sectionBox2 .innerBlock .photo_text .photo {
    width: 274px;
    border: 1px solid #59c3e1;
}
main .inner .mainArea section.sectionBox2 .innerBlock .photo_text .photo img {
    width: 100%;
    height: auto;
}
main .inner .mainArea section.sectionBox2 .innerBlock .photo_text .text {
    flex: 1;
    margin: 0 0 0 28px;
}
main .inner .mainArea section.sectionBox2 .innerBlock .photo_text .text li {
    margin: 0 0 1em;
}
*/
main .inner .mainArea section.sectionBox2 .innerBlock p {
    margin-bottom: 1.45em;
    font-size: 1.4rem;
    line-height: 1.4;
}
main .inner .mainArea section.sectionBox2 .innerBlock p:last-of-type {
    margin-bottom: 0;
}
main .inner .mainArea section.sectionBox2 .innerBlock .photo_text p.mb15rem {
    margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
    /*
    main .inner .mainArea section.sectionBox2 .innerBlock .photo_text {
        display: flex;
        -webkit-flex-direction: column;
        flex-direction: column;
    }
    main .inner .mainArea section.sectionBox2 .innerBlock .photo_text .photo {
        width: 100%;
        max-width: 500px;
        margin: 0 auto 1em;
    }
    main .inner .mainArea section.sectionBox2 .innerBlock .photo_text .text {
        flex: 1;
        margin: 0 0 0 0;
    }
    */
    main .inner .mainArea section.sectionBox2 .innerBlock .photo_text .photo {
        float: none;
        width: 100%;
        max-width: 500px;
        margin: 0 auto 1em;
    }
    main .inner .mainArea section.sectionBox2 .innerBlock .photo_text .photo img {
        width: 100%;
        height: auto;
    }
    main .inner .mainArea section.sectionBox2 .innerBlock .photo_text .text {
        width: 100%;
        margin: 0 0 1em 0;
    }
}
@media screen and (max-width: 767px) {
    main .inner .mainArea section.sectionBox2 h2 {
        position: relative;
        display: block;
        margin: 0 0 30px;
        padding: 0 9.375vw 0;
        line-height: 31px;
        vertical-align: middle;
        font-size: 2.2rem;
    }
    /*
    main .inner .mainArea section.sectionBox2 h2::before {
        content: "";
        position: absolute;
        top: 0%;
        left: 0;
        display: block;
        width: 8.28125vw;
        height: 4.84375vw;
    }
    main .inner .mainArea section.sectionBox2 h2::after {
        content: "";
        position: absolute;
        top: 0%;
        right: 0;
        display: block;
        width: 8.28125vw;
        height: 4.84375vw;
    }
    main .inner .mainArea section.sectionBox2 h2.type2::before {
        content: "";
        position: absolute;
        top: 17%;
        left: 0;
        display: block;
        width: 6.25vw;
        height: 11.5625vw;
    }
    main .inner .mainArea section.sectionBox2 h2.type2::after {
        content: "";
        position: absolute;
        top: 17%;
        right: 0;
        display: block;
        width: 6.25vw;
        height: 11.5625vw;
    }
    */
}
@media screen and (max-width: 639px) {
    main .inner .mainArea section.sectionBox2 h2 {
        position: relative;
        display: block;
        margin: 0 0 17px;
        padding: 0 9.375vw 0;
        line-height: 1.5;
        vertical-align: middle;
        font-size: 2.2rem;
    }
    /*
    main .inner .mainArea section.sectionBox2 h2::before {
        content: "";
        position: absolute;
        top: 37%;
        left: 0;
        display: block;
        width: 8.28125vw;
        height: 4.84375vw;
        background-size: auto 80%;
    }
    main .inner .mainArea section.sectionBox2 h2::after {
        content: "";
        position: absolute;
        top: 37%;
        right: 0;
        display: block;
        width: 8.28125vw;
        height: 4.84375vw;
        background-size: auto 80%;
    }
    main .inner .mainArea section.sectionBox2 h2.type2::before {
        content: "";
        position: absolute;
        top: 0%;
        left: 0;
        display: block;
        width: 6.25vw;
        height: 11.5625vw;
        background-size: auto 80%;
    }
    main .inner .mainArea section.sectionBox2 h2.type2::after {
        content: "";
        position: absolute;
        top: 0%;
        right: 0;
        display: block;
        width: 6.25vw;
        height: 11.5625vw;
        background-size: auto 80%;
    }
    */
}
@media screen and (max-width: 479px) {
    main .inner .mainArea section.sectionBox2 h2 {
/*
        font-size: 1.8rem;
*/
    }
    main .inner .mainArea section.sectionBox2 .innerBlock h3 {
        font-size: 1.6rem;
        letter-spacing:-1px;
    }
    main .inner .mainArea section.sectionBox2 h2 {
        padding: 0 4.6875vw 0;
/*
        font-size: 1.7rem;
*/
        letter-spacing:-1px;
    }
    /*
    main .inner .mainArea section.sectionBox2 h2::before {
        content: "";
        position: absolute;
        top: 20%;
        left: -3.90625vw;
        width: 8.28125vw;
        height: 4.84375vw;
    }
    main .inner .mainArea section.sectionBox2 h2::after {
        content: "";
        position: absolute;
        top: 20%;
        right: -3.90625vw;
        width: 8.28125vw;
        height: 4.84375vw;
    }
    */
    main .inner .mainArea section.sectionBox2 .innerBlock h3 {
        font-size: 1.6rem;
        letter-spacing:-1px;
    }
}

main .inner .sideArea {
    float: right;
    width: 210px;
}
@media screen and (max-width: 767px) {
    main .inner .sideArea {
        float: none;
        width: auto;
        margin: 0;
        padding: 0;
        border: none;
    }
}
main .inner .sideArea h2.h2_01 {
    height: 60px;
    margin-bottom: 0;
    padding: 5px;
    background: #3f210f;
    text-align: center;
    line-height: 1.3;
    color: white;
    /*font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;*/
    /*font-feature-settings: "palt";*/
}
main .inner .sideArea h2.h2_01 .bg {
    display: inline-block;
    width: 200px;
    height: 50px;
    padding: 4px 0 0;
    font-size: 1.3rem;
    font-weight: normal;
    /*background: url(../img/bg_h2_side.png) no-repeat;*/
}
main .inner .sideArea h2.h2_01 .bg strong {
    font-size: 1.8rem;
    font-weight: normal;
}
main .inner .sideArea .productsNav {
    margin: 0 0 20px;
    border: 1px solid #3f210f;
    background: #FFF;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-feature-settings: "palt";
}
main .inner .sideArea .productsNav > li {
    /*margin-left: 1rem;*/
    margin-bottom: 0rem;
    text-indent: -1rem;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.5;
    padding: 0;
    border-bottom: 1px solid #3f210f;
}
main .inner .sideArea .productsNav > li:last-child {
    border-bottom: none;
}
main .inner .sideArea .productsNav > li span {
    font-size: 1.3rem;
    font-weight: normal;
}
main .inner .sideArea .productsNav > li a {
    padding: 10px 5px 10px 30px;
    text-decoration: none;
    display: block;
}
main .inner .sideArea .productsNav > li a::before {
    content: '\0025b7';
    display: inline-block;
    margin-right: 3px;
}
main .inner .sideArea .productsNav > li a:hover {
    background-color: #DDD;
}
main .inner .sideArea .productsNav > li ul {
    margin: 0 0 20px 20px;
}
main .inner .sideArea .productsNav > li ul li {
    text-indent: 0;
    font-size: 1.6rem;
    font-weight: normal;
    list-style: disc;
}
main .inner .sideArea .steraBlog {
    margin: 0 0 20px;
    width: 100%;
    text-align: center;
    background-color: #FFF;
    border: 2px solid #B6A269;
}
main .inner .sideArea .steraBlog a {
    display: block;
    width: 100%;
}
/*main .inner .sideArea .steraBlog h2 {*/
    /*height: 100px;*/
    /*padding: 5px;*/
    /*background: #fff;*/
    /*border: 2px solid #b5a169;*/
    /*color: #3f210f;*/
    /*line-height: 1.2;*/
    /*font-weight: bold;*/
    /*font-size: 2.0rem;*/
    /*font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;*/
    /*font-feature-settings: "palt";*/
/*}*/
/*main .inner .sideArea .steraBlog h2 a {*/
    /*display: block;*/
    /*width: auto;*/
    /*height: 100%;*/
    /*margin: 0 auto;*/
    /*padding: 30px 5px 0;*/
    /*line-height: 1.0;*/
    /*text-align: left;*/
    /*background-image: url(../img/bg_sterablog1.png), url(../img/bg_sterablog2.png);*/
    /*background-position: left top,right center;*/
    /*background-size: auto auto, auto 100%;*/
    /*background-repeat: no-repeat, no-repeat;*/
    /*background-origin: border-box;*/
    /*text-decoration: none;*/
/*}*/
/*@media screen and (max-width: 767px) {*/
    /*main .inner .sideArea .steraBlog h2 a {*/
        /*width: 200px;*/
        /*margin: 0 auto;*/
    /*}*/
/*}*/
/*main .inner .sideArea .steraBlog dl {*/
    /*padding: 10px;*/
    /*background: #FFF;*/
    /*border: 2px solid #b5a169;*/
    /*line-height: 1.2;*/
/*}*/
/*main .inner .sideArea .steraBlog dl dt {*/
    /*font-weight: bold;*/
/*}*/
/*main .inner .sideArea .steraBlog dl dd {*/
    /*margin: 0 0 10px;*/
/*}*/
main .inner .sideArea .bannerArea {
    margin: 0 0 20px;
}
main .inner .sideArea .bannerArea::after {
    content: '';
    display: block;
    clear: both;
}
main .inner .sideArea .bannerArea::after {
    content: '';
    display: block;
    clear: both;
}
main .inner .sideArea .bannerArea li {
    margin: 0 0 20px;
}
@media screen and (max-width: 767px) {
    main .inner .sideArea h2.h2_01 {
        height: auto;
    }
    main .inner .sideArea h2.h2_01 img {
        max-height: 60px;
    }
    main .inner .sideArea .bannerArea {
        margin: 0;
    }
    main .inner .sideArea .bannerArea.bannerSpCol1 li {
        width: 100%;
        text-align: center;
    }
    main .inner .sideArea .bannerArea.bannerSpCol1 li img {
        width: 100%;
        max-width: 49%;
        height: auto;
    }
    main .inner .sideArea .bannerArea li {
        width: 49%;
        /*text-align: center;*/
        float: left;
    }
    main .inner .sideArea .bannerArea li.rightColumn {
        margin-left: 2%;
        float: right;
        text-align: right;
    }
    main .inner .sideArea .bannerArea li img {
        width: auto;
        height: auto;
    }
    /*main .inner .sideArea .bannerArea li:nth-child(2n) {*/
        /*float: right;*/
        /*text-align: right;*/
    /*}*/
}
main .inner .sideArea .facebookArea {
    width: 210px;
    margin: 0 0 20px;
}
@media screen and (max-width: 767px) {
    main .inner .sideArea .facebookArea {
        width: 100%;
    }
    main .inner .sideArea .facebookArea .fb_iframe_widget,
    main .inner .sideArea .facebookArea .fb_iframe_widget span,
    main .inner .sideArea .facebookArea .fb_iframe_widget iframe[style] {
        width: 100% !important;
    }
}

main .inner .sideArea .snsArea {
    text-align: center;
}
main .inner .sideArea .snsArea li {
    display: inline-block;
    margin: 0 5px 0 0;
}
main .inner .sideArea .snsArea li:nth-last-child(1) {
    margin-right: 0;
}
main .inner .sideArea .snsArea li a {
    display: block;
    width: 45px;
    height: 45px;
    background: #3f210f;
    border-radius: 50%;
    font-size: 2.8rem;
    line-height: 45px;
    color: #fff;
    vertical-align: middle;
    font-weight: normal;
}
main .inner .sideArea .snsArea li a i[class*="instagram"] {
    font-size: 2.9rem;
}
main .inner .sideArea .snsArea li a i[class*="google-plus"] {
    font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
    main .inner .sideArea .snsArea {
        margin: 0 0 30px;
    }
    main .inner .sideArea .snsArea li a {
        width: 70px;
        height: 70px;
        font-size: 4.4rem;
        line-height: 70px;
    }
    main .inner .sideArea .snsArea li a i[class*="instagram"] {
        font-size: 4.4rem;
    }
    main .inner .sideArea .snsArea li a i[class*="google-plus"] {
        font-size: 4.0rem;
    }
}
main .inner .sideArea .snsArea {
    display: none;
    text-align: center;
}
main .inner .sideArea .snsArea li {
    display: inline-block;
    margin: 0 5px 0 0;
}
main .inner .sideArea .snsArea li:nth-last-child(1) {
    margin-right: 0;
}
main .inner .sideArea .snsArea li a {
    display: block;
    width: 45px;
    height: 45px;
    background: #3f210f;
    border-radius: 50%;
    font-size: 2.8rem;
    line-height: 45px;
    color: #fff;
    vertical-align: middle;
    font-weight: normal;
}
main .inner .sideArea .snsArea li a i[class*="instagram"] {
    font-size: 2.9rem;
}
main .inner .sideArea .snsArea li a i[class*="google-plus"] {
    font-size: 2.4rem;
}

main .inner .sideArea .snsArea2 {
    text-align: left;
}
main .inner .sideArea .snsArea2 li {
    display: inline-block;
    margin: 0 5px 1.0em 0;
    text-align: center;
}
main .inner .sideArea .snsArea2 li:nth-last-child(1) {
    margin-right: 0;
}
main .inner .sideArea .snsArea2 li a {
    vertical-align: baseline;
    text-decoration: none;
    font-size: 1.5rem;
}
main .inner .sideArea .snsArea2 li a i {
    display: inline-block;
    width: 45px;
    height: 45px;
    margin-right: 5px;
    background: #3f210f;
    border-radius: 50%;
    font-size: 2.9rem;
    line-height: 45px;
    color: #fff;
    vertical-align: middle;
    font-weight: normal;
}
main .inner .sideArea .snsArea2 li a i[class*="instagram"] {
    font-size: 2.9rem;
}
main .inner .sideArea .snsArea2 li a i[class*="google-plus"] {
    font-size: 2.4rem;
}

@media screen and (max-width: 767px) {
    main .guideList {
        text-align: center;
    }
    main .guideList li {
        display: inline-block;
        margin-right: 7px;
        padding: 0 10px 0 0;
        line-height: 1;
        border-right: 1px solid #b5a169;
    }
    main .guideList li:nth-last-child(1) {
        border: none;
    }
    main .guideList li a {
        text-decoration: none;
        color: #b5a169;
    }
}

/*+++++++++++++++++++++++++++++++++++++++++++
    ヘッダー
+++++++++++++++++++++++++++++++++++++++++++ */
header {
    width: 100%;
    padding: 15px 0 20px;
    color: #b5a169;
}

@media screen and (min-width: 768px) {
    header {
        min-width: 1200px;
        padding: 15px 0 20px;
        background: #3f210f url(../img/bg_line.png) left bottom repeat-x;
    }
    header .inner {
        width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }
    header .inner::after {
        content: '';
        display: block;
        clear: both;
    }
    header .leftArea {
        float: left;
        width: 315px;
        padding: 0 0 0 15px;
        color: #b5a169;
    }
    header .leftArea h1 {
        margin: 0 0 13px;
        font-weight: normal;
        white-space: nowrap;
        line-height: 1.0;
    }
    header .leftArea .logo {
        padding: 0 0 15px;
        font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
        font-feature-settings: "palt";
        font-weight: bold;
        font-size: 1.6rem;
        vertical-align: middle;
    }
    header .leftArea .logo img {
        vertical-align: middle;
    }
    header .leftArea .logo a {
        text-decoration: none;
        color: #b5a169;
    }
    
    header .rightArea {
        float: right;
        width: 500px;
    }
    header .rightArea nav {
        /*display: flex;*/
        margin-bottom: 10px;
    }
    header .rightArea p {
        margin-bottom: 50px;
        color: #fff;
        line-height: 19px;
    }
    header .rightArea p img {
        margin-right: 5px;
    }
    header .btnList {
        /*
        -js-display: flex;
        -webkit-display: flex;
        display: flex;
        align-items: center;
        -webkit-justify-content: flex-end;
        justify-content: flex-end;
        */
    }
    header .btnList li {
        float: left;
        margin: 0 10px 15px 0;
        line-height: 20px;
    }
    header .btnList li a {
        display: block;
        width: 130px;
        height: 40px;
        color: #fff;
        text-decoration: none;
        transition-duration: .25s;
        transition-property: all;
        transition-timing-function: ease;
    }
    header .btnList li a:hover {
        opacity: 0.9;
    }
    header .btnList li a span.box {
        display: block;
        width: 100%;
        height: 100%;
        padding 3px;
        font-size: 1.5rem;
        font-weight: bold;
        border: 1px solid #fff;
        text-align: center;
        line-height: 32px;
    }
    header .btnList li.btnRegist a {
        padding: 3px;
        background: #afa16c;
    }
    header .btnList li.btnLogin a {
        padding: 3px;
        background: #afa16c;
    }
    header .btnList li.btnMypage a {
        padding: 3px;
        background: #afa16c;
    }
    header .btnList li.btnLogout a {
        padding: 3px;
        background: #afa16c;
    }
    header .btnList li.btnCart a {
        padding: 3px;
        background: #afa16c;
    }
    header .btnList li.btnCart a span.box {
        padding-left: 32px;
        text-align: left;
        font-size: 1.4rem;
        background: url(../img/icon_cart_pc.png) 4px center no-repeat;
    }
    header .btnList li.btnGNav {
        display: none;
    }
    header .btnList li.btnGNavBar {
        display: none;
    }
    header .btnList li.btnNFlag {
        position: relative;
        margin-right: 0;
        display: table-cell;
        vertical-align: middle;
        padding-bottom: 10px;
    }
    header .btnList li.btnNFlag a {
        /*width: calc(30px + 3em + .5em);*/
        width: auto;
        height: 20px;
        margin: 10px 0 0;
    }
    header .btnList li.btnNFlag img {
        width: 30px;
        height: 20px;
        margin-right: .2em;
    }
    header .btnList li.btnNFlag ul.flaglist {
        position: absolute;
        top: 100%;
        left: -10px;
        width: 110px;
        margin: 0;
        padding: 5px 0;
        background: rgba(121, 91, 65, 0.80);
        z-index: 100;
    }
    header .btnList li.btnNFlag ul.flaglist li {
        float: none;
        margin: 0;
        padding: 7px 10px;
        border-bottom: 1px solid #888;
    }
    header .btnList li.btnNFlag ul.flaglist li:last-child {
        border-bottom: none;
    }
    header .btnList li.btnNFlag ul.flaglist li a {
        margin: 0;
        transition: all .25s ease;
    }
    header .btnList li.btnNFlag ul.flaglist li a:hover {
        text-decoration: underline;
    }
    
    header .guideList {
        text-align: right;
    }
    header .guideList li {
        display: inline-block;
        padding: 0 8px 0 5px;
        border-right: #b5a169 1px solid;
        line-height: 1;
    }
    header .guideList li:last-child {
        padding-right: 0;
        border-right: none;
    }
    header .guideList li a {
        color: #b5a169;
        text-decoration: none;
    }
    header .guideList li a:hover {
        text-decoration: underline;
    }
}
@media screen and (max-width: 767px) {
    header {
        padding: 0 10px;
        background: #3f210f url(../img/bg_line_sp.png) left bottom repeat-x;
        background-size: auto 20px;
    }
    header .inner {
        position: relative;
    }
    header .inner::after {
        content: '';
        display: block;
        clear: both;
    }
    
    header .leftArea {
        position: absolute;
        padding: 10px 0 0;
        color: #b5a169;
    }
    header .leftArea h1 {
        margin: 0 0 13px;
        font-weight: normal;
        white-space: nowrap;
        line-height: 1.0;
    }
    header .leftArea .logo {
        padding: 0 0 15px;
        font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
        font-feature-settings: "palt";
        font-weight: bold;
        font-size: 1.6rem;
        vertical-align: middle;
    }
    header .leftArea .logo img {
        vertical-align: middle;
    }
    header .leftArea .logo a {
        text-decoration: none;
        color: #b5a169;
    }
    
    header .rightArea {
        float: right;
        width: 100%;
    }
    header .rightArea.top {
        padding: 55px 0 0;
    }
    header .btnList {
        margin-bottom: 15px;
        margin-left: auto;
        width: 49%;
        max-width: 260px;
    }
    header .btnList > li {
        margin: 0 0 0 3%;
        line-height: 20px;
        width: 32%;
        float: left;
    }
    header .btnList > li {
        position: relative;
        margin: 0 0 0 3%;
        line-height: 20px;
        width: 32%;
        float: left;
    }
    header .btnList > li:before {
        content: "";
        display: block;
        padding-top: 100%;
    }
    header .btnList > li > a {
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        /*padding-top: 50%;*/
        color: #fff;
        text-decoration: none;
    }
    header .btnList li a span.box {
        display: block;
        width: 100%;
        height: 100%;
        padding 3px;
        font-size: 1.5rem;
        font-weight: bold;
        border: 2px solid #fff;
        text-align: center;
    }
    header .btnList li.btnRegist {
        display: none;
    }
    header .btnList li.btnLogin {
        display: none;
    }
    header .btnList li.btnMypage {
        display: none;
    }
    header .btnList li.btnLogout {
        display: none;
    }
    header .btnList li.btnCart a {
        width: 100%;
        height: 100%;
        padding: 3px;
        background: #afa16c;
    }
    header .btnList li.btnCart a span.box {
        width: 100%;
        height: 100%;
        padding: 68% 3px 3px;
        background: #afa16c url(../img/icon_cart_sp.png) center 5px no-repeat;
        background-size: 52% auto;
        line-height: 1.0;
    }
    header .btnList li.btnGNav {
    }
    header .btnList li.btnGNav a {
        width: 100%;
        height: 100%;
        padding: 3px;
        background: #afa16c;
    }
    header .btnList li.btnGNav a span.box {
        width: 100%;
        height: 100%;
        padding: 68% 3px 3px;
        background: #afa16c url(../img/btn_sp_nav.png) center 9px no-repeat;
        background-size: 58% auto;
        line-height: 1.0;
    }
    header .btnList li.btnGNavBar {
        display: none;
        margin-right: 0;
    }
    header .btnList li.btnGNavBar a {
        text-align: right;
    }
    header .btnList li.btnNFlag {
        position: relative;
        max-width: 70px;
        margin-right: 0;
        width: 25%;
        font-size: 1.1rem;
    }
    header .btnList li.btnNFlag a {
        width: auto;
        height: auto;
        text-align: center;
        padding-top: 10px;
    }
    header .btnList li.btnNFlag img {
        width: 100%;
        height: auto;
        margin-bottom: 3px;
        margin-right: 0;
    }
    header .btnList li.btnNFlag ul.flaglist {
        position: absolute;
        top: 120%;
        right: 0;
        width: 143%;
        margin: 0;
        padding: 5px 0;
        background: rgba(121, 91, 65, 0.90);
        z-index: 100;
    }
    header .btnList li.btnNFlag ul.flaglist li {
        float: none;
        width: 100%;
        margin: 0;
        padding: 5px 10%;
        border-bottom: 1px solid #888;
        line-height: 1.2;
        text-align: center;
    }
    header .btnList li.btnNFlag ul.flaglist li:last-child {
        border-bottom: none;
    }
    header .btnList li.btnNFlag ul.flaglist li a {
        display: block;
        width: 100%;
        margin: 0;
        padding: 0;
        transition: all .25s ease;
        color: #fff;
    }
    header .btnList li.btnNFlag ul.flaglist li a:hover {
        text-decoration: underline;
    }
    header .btnList li.btnNFlag ul.flaglist li img {
        width: 49px;
        height: auto;
    }
    header .rightArea p {
        margin-bottom: 25px;
        text-align: center;
        line-height:19px;
        color: #fff;
    }
    header .rightArea p img {
        margin-right: 5px;
    }
    header .btnList {
        /*
        margin-bottom: 15px;
        */
    }
    header .btnList li a {
        /*
        width: 14.70588235294118vw;
        height: 14.70588235294118vw;
        */
    }
    header .leftArea h1 {
        font-size: 2.352941176470588vw;
    }
    header .leftArea .logo {
        font-size: 3.088235294117647vw;
    }
    header .leftArea .logo img {
        width: 10.29411764705882vw;
        height: auto;
    }
    header .rightArea.top {
        padding: 5% 0 3% 0;
    }
}
@media screen and (max-width: 479px) {
    header .btnList li.btnCart a span.box {
        font-size: 1.2rem;
    }
    header .btnList li.btnGNav a span.box {
        font-size: 1.2rem;
    }
    header .rightArea p {
        font-size: 2.916666666666667vw;
        line-height:3.958333333333333vw;
    }
    header .rightArea p img {
        width: 3.958333333333333vw;
        height: auto;
    }
}
@media screen and (max-width: 449px) {
    header .btnList li.btnCart a span.box {
        font-size: 1.0rem;
    }
    header .btnList li.btnGNav a span.box {
        font-size: 1.0rem;
    }
}
/* +++++++++++++++++++++++++++++++++++++++++++ drawer */
/*
header .drawer-toggle {
    display: none;
}
header .drawer-nav {
    position: relative;
}
@media screen and (max-width: 767px) {
    header .drawer-nav {
        z-index: 100;
        background: #2856A7;
        position: fixed;
    }
    .drawer--top .drawer-nav {
        position: fixed !important;
    }
    header .drawer-toggle {
        display: block;
    }
    header .drawer-hamburger {
        z-index: 10000;
        width: 4rem;
    }
    header .drawer-hamburger-icon {
        margin: 0;
        position: relative;
        top: 6px;
    }
    header .drawer-hamburger-icon,
    header .drawer-hamburger-icon::after,
    header .drawer-hamburger-icon::before {
        background: #FFF;
        height: 4px;
    }
}
*/
/*+++++++++++++++++++++++++++++++++++++++++++
    グローバルナビゲーション
+++++++++++++++++++++++++++++++++++++++++++ */
@media screen and (min-width: 768px) {
    #gNav {
        position: relative;
        min-width: 1140px;
        padding: 0 20px 0;
        background: #3f210f;
        z-index: 10;
    }
    #gNav::before,
    #gNav::after {
        display: block;
        content: url(../img/icon_decoration_01l.png);
        width: 53px;
        height: 31px;
        position: absolute;
        top: 15px;
        left: -980px;
        right: 0;
        margin: auto;
    }
    #gNav::after {
        left: 0;
        right: -980px;
        content: url(../img/icon_decoration_01r.png);
    }
    #gNav ul.gNav {
        display: table;
        margin: 0 auto;
        padding: 22px 0 17px;
    }
    #gNav ul.gNav::after {
        content: '';
        display: block;
        clear: both;
    }
    #gNav ul.gNav > li {
        display: table-cell;
        padding: 0 22px;
        line-height: 1;
        text-align: center;
        font-size: 1.90rem;
        border-right: #FFF 1px solid;
        position: relative;
        font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
        font-feature-settings: "palt";
        white-space: nowrap;
    }
    #gNav ul.gNav > li:nth-of-type(5) {
        border: none;
    }
    #gNav ul.gNav > li a {
        color: white;
        text-decoration: none;
    }
    #gNav ul.gNav > li a:hover {
        /*color: #e6b459;*/
        text-decoration: underline;
    }
    #gNav ul.gNav > li .child_01 {
        position: absolute;
        top: 36px;
        left: 0;
        padding: 0 30px 20px;
        background: #683719;
        text-align: left;
    }
    #gNav ul.gNav > li .child_01 > li {
        margin: 0 0 0px;
        padding : 10px 10px 5px;
        white-space: nowrap;
        position: relative;
        font-size: 1.6rem;
    }
    #gNav ul.gNav > li .child_01 > li span {
        font-size: 1.4rem;
    }
    #gNav ul.gNav > li .child_01 > li::before {
        content: '－';
        position: absolute;
        top: 5px;
        left: -20px;
        display: block;
        padding : 5px;
        color: white;
    }
    #gNav ul.gNav > li .child_01 > li .child_02 {
        padding: 0 0 0 2rem;
        color: #fff;
    }
    #gNav ul.gNav > li .child_01 > li .child_02 > li {
        padding: 5px 5px;
        font-weight: normal;
        font-size: 1.4rem;
        list-style: disc;
    }
    #gNav p {
        /*display: none;*/
    }
}
@media screen and (max-width: 767px) {
    #gNav {
        position: absolute;
        display: block;
        width: 100%;
        min-width: 0;
        /*background: #b5a169;*/
        z-index: 10;
        border-top: 2px solid #fff;
        border-left: 5px solid #fff;
        border-right: 5px solid #fff;
        
    }
    #gNav ul.gNav {
        display: block;
        width: 100%;
        margin: 0 auto;
        padding: 0 0 0;
    }
    /* 第1階層 */
    #gNav ul.gNav > li {
        border-right: 1px solid #3f210f;
        border-left: 1px solid #3f210f;
    }
    #gNav ul.gNav > li > a,
    #gNav ul.gNav > li > span > a {
        display: block;
        width: 100%;
        padding: 15px 22px;
        line-height: 1;
        text-align: left;
        font-size: 2rem;
        border-right: #FFF 1px solid;
        position: relative;
        font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
        font-feature-settings: "palt";
        background: #3f210f;
        border-bottom: 1px solid #fff;
        text-decoration: none;
        color: #fff;
    }
    /* 第2階層 */
    #gNav ul.gNav > li > ul {
        background: #fff;
    }
    #gNav ul.gNav > li > ul > li {
        padding: 12px 0 10px;
        border-bottom: 1px solid #aaa;
        line-height: 1.5;
    }
    #gNav ul.gNav > li > ul > li > a {
        position: relative;
        display: block;
        padding: 0 0 0 2.3em;
        color: #3f210f;
        font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
        font-feature-settings: "palt";
        font-size: 1.8rem;
        font-weight: bold;
        text-decoration: none;
    }
    #gNav ul.gNav > li > ul > li > a::before {
        content: '\0025b7';
        position: absolute;
        top: 0px;
        left: 1.0em;
        display: block;
        color: #3f210f;
        font-weight: bold;
    }
    #gNav ul.gNav > li > ul > li > a + p {
    }
    #gNav ul.gNav > li > ul > li > p {
        display: block;
        margin: 0;
        padding: 0 40px 0;
        font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
        font-feature-settings: "palt";
        font-size: 1.8rem;
        color: #3f210f;
        font-weight: bold;
    }
    /* 第3階層 */
    #gNav ul.gNav > li > ul > li > ul {
        display: none;
    }
    #gNav .title a::after {
        float: right;
        content: "\f067";
        font-family: 'FontAwesome';
        font-weight: normal;
    }
    #gNav .title.current a::after {
        content: "\f068";
    }
    
    #gNav .spnav1 {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 0 1px;
        background: #fff;
    }
    #gNav .spnav1 > div {
        flex: 1;
        margin-right: 1px;
        margin-bottom: 1px;
        padding: 1px;
        background: #b5a169;
        text-align: center;
    }
    #gNav .spnav1 > div:nth-of-type(2n) {
        margin-right: 0px;
    }
    #gNav .spnav1 > div a {
        display: block;
        width: 100%;
        padding: 12px 10px;
        text-align: center;
        color: #fff;
        font-size: 2.0rem;
        text-decoration: none;
        border: 1px solid #fff;
    }
    #gNav ul.gNav > li.spnav2 > a {
        background: rgba(63, 33, 15, 0.8);
        font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
        font-size: 1.8rem;
    }
    #gNav .spnav3 {
        background: rgba(63, 33, 15, 0.8);
    }
    #gNav .spnav3 ul {
        /*
        display: flex;
        justify-content: center;
        align-items: center;
        */
    }
    #gNav .spnav3 ul:after {
        content: "";
        display: block;
        clear: both;
    }
    #gNav .spnav3 ul li {
        float: left;
        width: 15%;
        text-align: center;
    }
    #gNav .spnav3 ul li a {
        /*flex: 1;*/
        color: #fff;
        font-size: 3.6rem;
        text-decoration: none;
        text-align: center;
        
    }
    #gNav .spnav4 {
        padding: 15px 0 15px;
        background: rgba(63, 33, 15, 0.8);
    }
    #gNav .spnav4 ul {
        /*
        display: flex;
        justify-content: center;
        align-items: center;
        */
    }
    #gNav .spnav4 ul:after {
        content: "";
        display: block;
        clear: both;
    }
    #gNav .spnav4 ul li {
        width: 50%;
        float: left;
        text-align: center;
    }
    #gNav .spnav4 ul li a {
        /*flex: 1;*/
        color: #fff;
        font-size: 1.8rem;
        text-decoration: none;
        text-align: center;
        vertical-align: top;
    }
    #gNav .spnav4 ul li a i {
        font-size: 3.6rem;
        
    }
}
/*+++++++++++++++++++++++++++++++++++++++++++
    フッター
+++++++++++++++++++++++++++++++++++++++++++ */
footer {
    background: url(../img/bg_line.png) repeat-x #3f210f;
    padding: 20px 0;
    color: white;
}
footer .footerTopNav {
    text-align: center;
    padding: 20px 0;
}
footer .footerTopNav li {
    display: inline-block;
    border-right: #b5a169 1px solid;
    line-height: 1;
    padding: 0 10px 0 0;
    margin: 0 7px 0 0;
}
footer .footerTopNav li:nth-last-child(1) {
    width: auto;
    float: none;
    margin: 0;
    padding: 0;
    border: none;
}
footer .footerTopNav li a {
    color: #b5a169;
    text-decoration: none;
}
footer .footerTopNav li a:hover {
    text-decoration: underline;
}
footer nav {
    width: 1100px;
    margin: auto;
}
footer nav a {
    color: white;
    text-decoration: none;
}
footer nav .footerNav_01::after {
    content: '';
    display: block;
    clear: both;
}
footer nav .footerNav_01::after {
    content: '';
    display: block;
    clear: both;
}
footer nav .footerNav_01 > li {
    float: left;
    margin-right: 30px;
    font-size: 1.6rem;
    font-weight: bold;
    width: 190px;
}
footer nav .footerNav_01 > li.footerNav_01_1 {
    width: 260px;
}
footer nav .footerNav_01 > li.footerNav_01_2 {
    width: 140px;
}
footer nav .footerNav_01 > li.footerNav_01_3 {
    width: 230px;
}
footer nav .footerNav_01 > li.footerNav_01_4 {
    width: 190px;
}
footer nav .footerNav_01 > li.footerNav_01_5 {
    width: 140px;
}
footer nav .footerNav_01 > li:nth-last-child(1) {
    margin-right: 0;
}
footer nav .footerNav_01 > li .footerNav_02 {
    padding: 0 0 0 20px;
}
footer nav .footerNav_01 > li .footerNav_02 > li {
    position: relative;
    font-size: 1.4rem;
    margin: 0 0 30px;
}
footer nav .footerNav_01 > li .footerNav_02 > li::before {
    content: '－';
    display: block;
    color: white;
    position: absolute;
    top: 0;
    left: -20px;
}
footer nav .footerNav_01 > li .footerNav_02 > li span {
    font-size: 1.3rem;
    font-weight: normal;
}
footer nav .footerNav_01 > li .footerNav_02 > li .footerNav_03 {
    padding: 0 0 0 2rem;
}
footer nav .footerNav_01 > li .footerNav_02 > li .footerNav_03 > li {
    font-weight: normal;
    font-size: 1.4rem;
    list-style: disc;
}
footer nav .footerNav_01 p {
    margin-bottom: 0;
    font-weight: normal;
}
footer .copyright {
    margin: 0;
    padding: 30px 0 0;
    text-align: center;
    color: #b5a169;
}
footer .copyright img {
    width: 64px;
    margin: 0 0 20px;
}
footer .copyright small {
    font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
    footer {
        background: url(../img/bg_line_sp.png) repeat-x #3f210f;
        background-size: auto 20px;
    }
    footer a:hover,
    footer a:active {
        text-decoration: none;
    }
    footer nav {
        width: auto;
        float: none;
        margin: 0;
        padding: 0;
        border: none;
    }
    footer nav br {
        display: none;
    }
    footer nav .footerNav_01 > li {
        position: relative;
        width: auto;
        float: none;
        margin: 0;
        padding: 10px 20px;
        border-bottom: 1px solid #666;
    }
    footer nav .footerNav_01 > li.footerNav_01_1,
    footer nav .footerNav_01 > li.footerNav_01_2,
    footer nav .footerNav_01 > li.footerNav_01_3,
    footer nav .footerNav_01 > li.footerNav_01_4,
    footer nav .footerNav_01 > li.footerNav_01_5{
        width: auto;
    }
    footer nav .footerNav_01 > li:nth-of-type(1) {
        border-top: 1px solid #666;
    }
    footer nav .footerNav_01 > li .footerNav_02 > li {
        margin: 0.5rem 0;
    }
    footer nav .footerNav_01 > li .footerNav_02 > li a {
    }
    footer .title a::after {
        float: right;
        content: "\f067";
        font-family: 'FontAwesome';
        font-weight: normal;
    }
    footer .title.current a::after {
        content: "\f068";
    }
    footer .copyright img {
        width: 53px;
        height: auto;
    }
}
/*+++++++++++++++++++++++++++++++++++++++++++
    リンク
+++++++++++++++++++++++++++++++++++++++++++ */
a {
    color: #000;
    transition: all .25s ease;
}
a:focus {
    outline: none;
}
a:hover,
a:active {
    text-decoration: underline;
}
a:hover .imgOpacity {
    opacity: 0.7;
}
a.link::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 10px;
    border-color: transparent transparent transparent #2DA7E0;
    margin: 0 2px 0 0;
    vertical-align: baseline;
}
a img {
    transition: all .25s ease;
}
a img:hover {
    opacity: 0.8;
}

/*+++++++++++++++++++++++++++++++++++++++++++
    パーツ（不特定のページで使うスタイル）
+++++++++++++++++++++++++++++++++++++++++++ */
.box_01 {
  background: #EEE;
  padding: 15px;
}
.photoFrame {
  -webkit-box-shadow: 1px 1px 3px #999;
  box-shadow: 1px 1px 3px #999;
}
main .inner .mainArea .deco1 {
	position: relative;
	display: inline-block;
	min-height: 31px;
	margin: 0 0 17px;
	padding-right: 60px;
	padding-left: 60px;
}
main .inner .mainArea .deco1:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	width: 53px;
	height: 100%;
	background: url(../img/icon_decoration_01l.png) right center no-repeat;
	background-size: contain;
}
main .inner .mainArea .deco1:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	display: inline-block;
	width: 53px;
	height: 100%;
	background: url(../img/icon_decoration_01r.png) right center no-repeat;
	background-size: contain;
}

main .inner .mainArea .deco2 {
    position: relative;
    display: inline-block;
    min-height: 31px;
    margin: 0 0 17px;
    padding-right: 50px;
    padding-left: 50px;
}
main .inner .mainArea #deadsea .deco2 {
    height: 74px;
    line-height: 65px;
}
main .inner .mainArea .deco2:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 40px;
    height: 100%;
    background: url(../img/icon_decoration_02l.png) right center no-repeat;
    background-size: contain;
}
main .inner .mainArea .deco2.pc_big:before {
    background-size: auto;
}
main .inner .mainArea #deadsea .deco2.pc_big:before {
    background-size: auto 74px;
}
main .inner .mainArea .deco2:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    width: 40px;
    height: 100%;
    background: url(../img/icon_decoration_02r.png) right center no-repeat;
    background-size: contain;
}
main .inner .mainArea .deco2.pc_big:after {
    background-size: auto;
}
main .inner .mainArea #deadsea .deco2.pc_big:after {
    background-size: auto 74px;
}
@media screen and (max-width:767px) {
    main .inner .mainArea section.sectionBox2 h2.deco1,
    main .inner .mainArea .deco1 {
        min-height: 18px;
        margin: 0 0 17px;
        padding-right: 40px;
        padding-left: 40px;
    }
    main .inner .mainArea section.sectionBox2 h2.deco1:before,
    main .inner .mainArea .deco1:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 35px;
        height: 100%;
        background-size: contain;
    }
    main .inner .mainArea section.sectionBox2 h2.deco1.pc_big:before,
    main .inner .mainArea .deco1.pc_big:before {
        background-size: auto 18px;
    }
    main .inner .mainArea section.sectionBox2 h2.deco1:after,
    main .inner .mainArea .deco1:after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 35px;
        height: 100%;
        background-size: contain;
    }
    main .inner .mainArea section.sectionBox2 h2.deco1.pc_big:after,
    main .inner .mainArea .deco1.pc_big:after {
        background-size: auto 18px;
    }

    main .inner .mainArea .deco2 {
        min-height: 31px;
        margin: 0 0 17px;
        padding-right: 35px;
        padding-left: 35px;
    }
    main .inner .mainArea #deadsea .deco2 {
        height: auto;
        font-size: 4.8vw;
        line-height: 1.1;
    }
    main .inner .mainArea .deco2:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 25px;
        height: 100%;
        background-size: contain;
    }
    main .inner .mainArea .deco2.pc_big:before {
        background-size: auto 44px;
    }
    main .inner .mainArea #deadsea .deco2.pc_big:before {
        width: 6vw;
        background-size: auto 9.86vw;
    }
    main .inner .mainArea .deco2:after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 25px;
        height: 100%;
        background-size: contain;
    }
    main .inner .mainArea .deco2.pc_big:after {
        background-size: auto 44px;
    }
    main .inner .mainArea #deadsea .deco2.pc_big:after {
        width: 6vw;
        background-size: auto 9.86vw;
    }
}
ul.iBlock li {
    display: inline-block;
    margin: 0 5px 5px 0;
}
.columnlist {
}
.columnlist::after {
    content: "";
    display: block;
    clear: both;
}
.columnlist .column {
    float: left;
}
.columnlist .column::after {
	content: "";
	display: block;
	clear: both;
}
.columnlist .column a {
    text-decoration: none;
}
.columnlist.product .column {
    position: relative;
    font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
.columnlist.product .column .imgbox {
    position: relative;
    width: 100%;
    padding: 3px;
    border: 1px solid #aaa;
}
.columnlist.product .column .imgbox::before {
    content: "";
    display: block;
    padding-top: 100%;
}
.columnlist.product .column .imgbox .img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    overflow: hidden;
    transition: all .25s ease;
}
.columnlist.product .column .imgbox .img img {
    width: 100%;
    height: auto;
}
.columnlist.product .column .img span.label {
    display: block;
    width: 300px;
    height: 300px;
    padding: 277px 0 0;
    position: absolute;
    top: -210px;
    left: -210px;
    color: #FFF;
    text-align: center;
    transform: rotate(-45deg);
    font-size: 1.2rem;
    font-weight: bold;
    z-index: 2;
}
.columnlist.product .column .img span.label.large {
    top: -200px;
    left: -200px;
    padding: 272px 0 0;
    font-size: 1.4rem;
}
.columnlist .column span.label.blue,
.columnlist .column span.label.gold,
.columnlist .column span.label.yellow,
.columnlist .column span.label.red,
.columnlist .column span.label.label_05,
.columnlist .column span.label.label_01,
.columnlist .column span.label.label_02,
.columnlist .column span.label.label_03,
.columnlist .column span.label.label_04,
.columnlist .column span.label.label_05 {
    position: absolute;
}
.columnlist .column span.label,
.columnlist .column span.label {
    background-color: #3f210f;
}
.columnlist .column span.label.blue,
.columnlist .column span.label.label_01 {
    background-color: #59C3E1;
}
.columnlist .column span.label.gold,
.columnlist .column span.label.label_02 {
    background-color: #b5a169;
}
.columnlist .column span.label.yellow,
.columnlist .column span.label.label_03 {
    background-color: #e6b459;
}
.columnlist .column span.label.red,
.columnlist .column span.label.label_04 {
    background-color: #c50018;
}
@media screen and (min-width: 768px) {
    .columnlist.pcCol2 .column {
        width: 49%;
        margin-left: 2%;
        margin-bottom: 30px;
    }
    .columnlist.pcCol2 .column:nth-child(2n + 1) {
        margin-left: 0;
    }
    .columnlist.pcCol3 .column {
        width: 32%;
        margin-left: 2%;
        margin-bottom: 30px;
    }
    .columnlist.pcCol3 .column:nth-child(3n + 1) {
        margin-left: 0;
    }
    .columnlist.pcCol4 .column {
        width: 23.5%;
        margin-left: 2%;
        margin-bottom: 30px;
    }
    .columnlist.pcCol4 .column:nth-child(4n + 1) {
        margin-left: 0;
    }
}
@media screen and (max-width: 767px) {
    .columnlist.spCol2 .column {
        width: 49%;
        margin-left: 2%;
        margin-bottom: 10px;
    }
    .columnlist.spCol2 .column:nth-child(2n + 1) {
        margin-left: 0;
    }
    .columnlist.spCol3 .column {
        width: 32%;
        margin-left: 2%;
        margin-bottom: 10px;
    }
    .columnlist.spCol3 .column:nth-child(3n + 1) {
        margin-left: 0;
    }
    .columnlist.spCol4 .column {
        width: 23.5%;
        margin-left: 2%;
        margin-bottom: 10px;
    }
    .columnlist.spCol4 .column:nth-child(4n + 1) {
        margin-left: 0;
    }
    .columnlist.spCol2 .column .img span.label {
        top: -200px;
        left: -200px;
        padding: 272px 0 0;
        font-size: 1.6rem;
    }
    .columnlist.spCol2 .column .img span.label.large {
        top: -190px;
        left: -190px;
        padding: 267px 0 0;
        font-size: 1.8rem;
    }
}

@media screen and (min-width: 480px) and (max-width: 767px) {
    .columnlist.spCol2-1 .column {
        width: 48%;
        margin-left: 4%;
        margin-bottom: 10px;
    }
    .columnlist.spCol2-1 .column:nth-child(2n+1) {
        margin-left: 0;
    }
    .columnlist.spCol2-1 .column .img span.label {
        top: -210px;
        left: -210px;
        padding: 277px 0 0;
        font-size: 1.3rem;
    }
    .columnlist.spCol2-1 .column .img span.label.large {
        top: -200px;
        left: -200px;
        padding: 272px 0 0;
        font-size: 1.4rem;
    }
}
@media screen and (max-width: 479px) {
    .columnlist.spCol2-1 .column {
        width: 100%;
        margin-left: 0;
        margin-bottom: 10px;
    }
    .columnlist.spCol2-1 .column .img span.label {
        top: -190px;
        left: -190px;
        padding: 272px 0 0;
        font-size: 1.6rem;
    }
    .columnlist.spCol2-1 .column .img span.label.large {
        top: -180px;
        left: -180px;
        padding: 267px 0 0;
        font-size: 1.8rem;
    }
}

@media screen and (min-width: 640px) and (max-width: 767px) {
    .columnlist.spCol3-1 .column,
    .columnlist.spCol3-2 .column {
        width: 32%;
        margin-left: 2%;
        margin-bottom: 10px;
    }
    .columnlist.spCol3-1 .column:nth-child(3n+1),
    .columnlist.spCol3-2 .column:nth-child(3n+1) {
        margin-left: 0;
    }
    .columnlist.spCol3-1 .column .img span.label,
    .columnlist.spCol3-2 .column .img span.label {
        top: -215px;
        left: -215px;
        padding: 277px 0 0;
        font-size: 1.2rem;
    }
    .columnlist.spCol3-1 .column .img span.label.large,
    .columnlist.spCol3-2 .column .img span.label.large {
        top: -210px;
        left: -210px;
        padding: 277px 0 0;
        font-size: 1.2rem;
    }
}
@media screen and (min-width: 480px) and (max-width: 639px) {
    .columnlist.spCol3-1 .column,
    .columnlist.spCol3-2 .column {
        width: 48%;
        margin-left: 4%;
        margin-bottom: 10px;
    }
    .columnlist.spCol3-1 .column:nth-child(2n + 1),
    .columnlist.spCol3-2 .column:nth-child(2n + 1) {
        margin-left: 0;
    }
}
@media screen and (max-width: 479px) {
    .columnlist.spCol3-1 .column {
        width: 100%;
        margin-left: 0;
        margin-bottom: 10px;
    }
    .columnlist.spCol3-2 .column {
        width: 48%;
        margin-left: 4%;
        margin-bottom: 10px;
    }
    .columnlist.spCol3-2 .column:nth-child(2n + 1) {
        margin-left: 0;
    }
    .columnlist.spCol3-2 .column .img span.label {
        top: -215px;
        left: -215px;
        padding: 277px 0 0;
        font-size: 1.2rem;
    }
    .columnlist.spCol3-2 .column .img span.label.large {
        top: -210px;
        left: -210px;
        padding: 277px 0 0;
        font-size: 1.2rem;
    }
}

@media screen and (min-width: 640px) and (max-width: 767px) {
    .columnlist.spCol4-1 .column,
    .columnlist.spCol4-2 .column {
        width: 23.5%;
        margin-left: 2%;
        margin-bottom: 10px;
    }
    .columnlist.spCol4-1 .column:nth-child(4n+1),
    .columnlist.spCol4-2 .column:nth-child(4n+1) {
        margin-left: 0;
    }
    .columnlist.spCol4-1 .column .img span.label,
    .columnlist.spCol4-2 .column .img span.label {
        top: -219px;
        left: -219px;
        padding: 277px 0 0;
        font-size: 1.1rem;
    }
    .columnlist.spCol4-1 .column .img span.label.large,
    .columnlist.spCol4-2 .column .img span.label.large {
        top: -215px;
        left: -215px;
        padding: 277px 0 0;
        font-size: 1.1rem;
    }
}
@media screen and (min-width: 480px) and (max-width: 639px) {
    .columnlist.spCol4-1 .column {
        width: 32%;
        margin-left: 2%;
        margin-bottom: 10px;
    }
    .columnlist.spCol4-1 .column:nth-child(3n + 1) {
        margin-left: 0;
    }
    .columnlist.spCol4-2 .column {
        width: 48%;
        margin-left: 4%;
        margin-bottom: 10px;
    }
    .columnlist.spCol4-2 .column:nth-child(2n + 1) {
        margin-left: 0;
    }
}
@media screen and (min-width: 415px) and (max-width: 479px) {
    .columnlist.spCol4-1 .column,
    .columnlist.spCol4-2 .column {
        width: 48%;
        margin-left: 4%;
        margin-bottom: 10px;
    }
    .columnlist.spCol4-1 .column:nth-child(2n + 1),
    .columnlist.spCol4-2 .column:nth-child(2n + 1) {
        margin-left: 0;
    }
    .columnlist.spCol4-1 .column .img span.label,
    .columnlist.spCol4-2 .column .img span.label {
        top: -219px;
        left: -219px;
        padding: 277px 0 0;
        font-size: 1.1rem;
    }
    .columnlist.spCol4-1 .column .img span.label.large,
    .columnlist.spCol4-2 .column .img span.label.large {
        top: -215px;
        left: -215px;
        padding: 277px 0 0;
        font-size: 1.1rem;
    }
}
@media screen and (max-width: 414px) {
    .columnlist.spCol4-1 .column {
        width: 100%;
        margin-left: 0;
        margin-bottom: 10px;
    }
    .columnlist.spCol4-2 .column {
        width: 48%;
        margin-left: 4%;
        margin-bottom: 10px;
    }
    .columnlist.spCol4-2 .column:nth-child(2n + 1) {
        margin-left: 0;
    }
    .columnlist.spCol4-2 .column .img span.label {
        top: -219px;
        left: -219px;
        padding: 277px 0 0;
        font-size: 1.1rem;
    }
    .columnlist.spCol4-2 .column .img span.label.large {
        top: -215px;
        left: -215px;
        padding: 277px 0 0;
        font-size: 1.1rem;
    }
}

.columnlist.banner {
    width: 626px;
    margin: 0 auto;
}
.columnlist.banner .column {
    width: 283px;
    margin: 0 15px 30px;
    box-shadow: 3px 4px 5px 0px rgba(64, 34, 15, 0.55);
}
.columnlist.banner .column img {
    width: 100%;
    height: auto;
}
@media screen and (max-width:767px) {
    .columnlist.banner {
        width: 100%;
        margin: 0 auto;
    }
    .columnlist.banner .column {
        width: 48%;
        margin: 0 1% 30px;
    }
}
@media screen and (max-width:479px) {
    .columnlist.banner .column {
        float: none;
        width: 283px;
        max-width: 100%;
        margin: 0 auto 30px;
    }
}




.column2box {
  margin-bottom: 15px;
}
.column2box::after {
  content: '';
  display: block;
  clear: both;
}
.column2box::after {
  content: '';
  display: block;
  clear: both;
}
.column2box > .column {
  float: left;
  width: 49%;
  margin-left: 2%;
  margin-bottom: 10px;
}
.column2box > .column:nth-child(2n + 1) {
  margin-left: 0;
  clear: both;
}
@media screen and (max-width: 767px) {
  .column2box {
    display: block;
  }
  .column2box > .column {
    width: auto;
    margin-left: 0;
  }
}
.column3box {
  margin-bottom: 15px;
}
.column3box::after {
  content: '';
  display: block;
  clear: both;
}
.column3box::after {
  content: '';
  display: block;
  clear: both;
}
.column3box > .column {
  float: left;
  width: 32%;
  margin-left: 2%;
  margin-bottom: 10px;
}
.column3box > .column:nth-child(3n + 1) {
  margin-left: 0;
  clear: both;
}
@media screen and (max-width: 767px) {
  .column3box {
    display: block;
  }
  .column3box > .column {
    width: auto;
    margin-left: 0;
  }
}
.column4box {
  margin-bottom: 15px;
}
.column4box::after {
  content: '';
  display: block;
  clear: both;
}
.column4box::after {
  content: '';
  display: block;
  clear: both;
}
.column4box > .column {
  float: left;
  width: 23.5%;
  margin-left: 2%;
  margin-bottom: 10px;
}
.column4box > .column:nth-child(4n + 1) {
  margin-left: 0;
  clear: both;
}
@media screen and (max-width: 767px) {
  .column4box {
    display: block;
  }
  .column4box > .column {
    width: auto;
    margin-left: 0;
  }
}
.column3box_2box {
  margin-bottom: 15px;
}
.column3box_2box::after {
  content: '';
  display: block;
  clear: both;
}
.column3box_2box::after {
  content: '';
  display: block;
  clear: both;
}
.column3box_2box > .column {
  float: left;
  width: 310px;
  margin-left: 15px;
  margin-bottom: 10px;
}
.column3box_2box > .column:nth-child(3n + 1) {
  margin-left: 0;
  clear: both;
}
@media screen and (max-width: 767px) {
  .column3box_2box {
    display: block;
  }
  .column3box_2box > .column {
    width: auto;
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .column2box,
  .column3box {
    margin-left: 0;
  }
  .column2box .column,
  .column3box .column {
    float: none;
    width: auto;
    padding: 0;
  }
  .column4box {
    margin-bottom: 15px;
  }
  .column4box::after {
    content: '';
    display: block;
    clear: both;
  }
  .column4box::after {
    content: '';
    display: block;
    clear: both;
  }
  .column4box > .column {
    float: left;
    width: 49%;
    margin-left: 2%;
    margin-bottom: 10px;
  }
  .column4box > .column:nth-child(2n + 1) {
    margin-left: 0;
    clear: both;
  }
  .column3box_2box {
    margin-bottom: 15px;
  }
  .column3box_2box::after {
    content: '';
    display: block;
    clear: both;
  }
  .column3box_2box::after {
    content: '';
    display: block;
    clear: both;
  }
  .column3box_2box > .column {
    float: left;
    width: 49%;
    margin-left: 2%;
    margin-bottom: 10px;
  }
  .column3box_2box > .column:nth-child(2n + 1) {
    margin-left: 0;
    clear: both;
  }
}
@media screen and (max-width: 767px) and screen and (max-width: 767px) {
  .column4box {
    display: block;
  }
  .column4box > .column {
    width: auto;
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) and screen and (max-width: 767px) {
  .column3box_2box {
    display: block;
  }
  .column3box_2box > .column {
    width: auto;
    margin-left: 0;
  }
}
.btn_cart {
    text-align:center;
}
.btn_cart button {
    width: 393px;
    max-width: 100%;
    height: 45px;
    margin-bottom: 1em;
    background-color: #afa16c;
    color: #fff;
    font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    line-height: 46px;
    border: none;
    transition: all .33s ease;
}
.btn_cart button:hover {
    opacity: .8;
}
.btn_01 {
  background: #222222;
  color: #FFF!important;
  display: inline-block;
  text-decoration: none;
  padding: 20px;
  line-height: 1;
}
.btn_01 img {
  vertical-align: top;
}
.btn_01:hover {
  opacity: 0.7;
}
.btn_02 {
    position: relative;
    transition: all .33s ease;
}
.btn_02.center {
    text-align: center;
}
.btn_02 a {
    display: inline-block;
    width: 393px;
    max-width: 100%;
    height: 46px;
    padding: 0 20px 0 0;
    text-decoration: none;
    background-color: #3f210f;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    line-height: 46px;
}
.btn_02:hover {
  opacity: 0.7;
}
.btn_02 a span {
    position:absolute;
    display: inline-block;
    width: 23px;
    height: 100%;
    margin: 0 0 0 5px;
    background: url(../img/icon_arrow01_pc.png) center center no-repeat;
    background-size: contain;
}
@media screen and (max-width: 479px) {
    .btn_02 {
        text-align: center;
    }
    .btn_02 a {
        width: 77.33333333333333vw;
    }
}

.btn_03 {
    display: inline-block;
    max-width: 100%;
    height: 46px;
    padding: 0 20px 0;
    text-decoration: none;
    background-color: #3f210f;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    line-height: 46px;
}
.btn_03:hover {
    opacity: 0.7;
}
.btn_04 {
    display: inline-block;
    max-width: 100%;
    height: 30px;
    padding: 0 10px 0;
    text-decoration: none;
    background-color: #3f210f;
    color: #fff;
    font-size: 14px;
    font-weight: normal;
    text-align: center;
    line-height: 30px;
}
.btn_04:hover {
    opacity: 0.7;
}

@media screen and (max-width: 767px) {
    .btn_03 {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
        border-radius: 5px;
    }
}

.fontMin {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-feature-settings: "palt";
}
.bannerTelphone {
    width: 100%;
    height: 80px;
    padding: 5px 5px 3px;
    border: 2px solid #3f210f;
    background-color: #FFFFFF;
    color: #3f210f;
    font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-feature-settings: "palt";
    text-align: center;
}
.bannerTelphone a {
    text-decoration: none;
    color: #3f210f;
}
.bannerTelphone p {
    margin: 0;
    padding: 0;
    line-height: 1.0;
    font-weight: bold;
}
.bannerTelphone i {
    color: #3f210f;
    font-size: 2.3rem;
}
.bannerTelphone p:nth-of-type(1) {
    font-size: 2.0rem;
    letter-spacing:-1px;
}
.bannerTelphone p:nth-of-type(2) {
    font-size: 2.4rem;
    letter-spacing:1.5px;
}
.bannerTelphone p:nth-of-type(3) {
    font-size: 1.6rem;
}

.bannerMailMag {
    width: 100%;
/*    height: 187px;*/
    padding: 2px;
    /*border: 3px solid #3f210f;*/
    color: #3f210f;
    text-align: center;
    /*background: #b5a169;*/
    color: #fff;
    background: url(../img/img_magazine_bg.png) 0 0 no-repeat #40220e;
}
.bannerMailMag_inner {
	border: 3px solid #b6a269;
}
.bannerMailMag_inner p {
	text-align: left;
	font-size: 0.8em;
}
.bannerMailMag_inner p a {
	color: #fff;
}
.bannerMailMag_inner p a:hover {
	text-decoration: none;
}
/*.bannerMailMag > div {*/
    /*display: block;*/
    /*height: 100%;*/
    /*background: #3f210f;*/
    /*text-decoration: none;*/
    /*color: #fff;*/
/*}*/
/*.bannerMailMag > div > div {*/
    /*position: relative;*/
    /*width: 200px;*/
    /*margin: 0 auto;*/
    /*padding: 7px 7px 40px;*/
    /*height: 100%;*/
    /*background: #3f210f;*/
/*}*/
/*.bannerMailMag p {*/
    /*margin: 0;*/
    /*padding: 0;*/
    /*line-height: 1.2;*/
    /*font-size: 1.2rem;*/
    /*letter-spacing:0px;*/
    /*text-align: left;*/
/*}*/
/*.bannerMailMag p + p {*/
    /*margin: 3px 0 2px;*/
    /*font-size: 1.9rem;*/
    /*letter-spacing:-1px;*/
    /*font-weight: bold;*/
    /*font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;*/
    /*font-feature-settings: "palt";*/
/*}*/
/*.bannerMailMag i.fa-envelope-o {*/
    /*position: absolute;*/
    /*right: 8px;*/
    /*top: 10px;*/
    /*font-size: 3.0rem;*/
    /*transform: rotate(35deg);*/
/*}*/
.bannerMailMag form {
    padding: 94px 14px 0;
    display: block;
    width: 100%;
    text-align: right;
}
.bannerMailMag input[type="email"] {
    margin: 2px 0 10px;
    background-color: #fff;
    border-radius: 3px;
    border: 1px solid #ccc;
    color: #3f210f;
    width: 100%;
    line-height: 1;
    padding-top: 4px;
    padding-bottom: 4px;
}
.bannerMailMag input[type="email"]::-webkit-input-placeholder {
    color: #666;
}
.bannerMailMag input[type="email"]:-ms-input-placeholder {
    color: #666;
}
.bannerMailMag input[type="email"]::-moz-placeholder {
    color: #666;
}
.bannerMailMag button {
    /*position: absolute;*/
    right: 7px;
    bottom: 8px;
    width: 55px;
    height: 28px;
    border: 2px solid #fff;
    border-radius: 3px;
    line-height: 23px;
    background-color: #b5a169;
    font-weight: bold;
    color: #fff;
}


@media screen and (max-width: 479px) {
    .bannerTelphone {
        height: 70px;
        padding: 5px 5px 3px;
    }
    .bannerTelphone i {
        font-size: 2.0rem;
    }
    .bannerTelphone p:nth-of-type(1) {
        font-size: 1.8rem;
        letter-spacing:-1px;
    }
    .bannerTelphone p:nth-of-type(2) {
        font-size: 2.2rem;
        letter-spacing:1.5px;
    }
    .bannerTelphone p:nth-of-type(3) {
        font-size: 1.5rem;
    }
    
    .bannerMailMag {
        height: 70px;
        padding: 2px;
        border: 3px solid #3f210f;
    }
    .bannerMailMag a {
        display: block;
        color: #fff;
        text-decoration: none;
    }
    .bannerMailMag > a > div {
        position: relative;
        width: 200px;
        max-width: 100%;
        margin: 0 auto;
        padding: 7px 0 7px 38px;
        height: 100%;
        background: #3f210f;
    }
    .bannerMailMag p {
        line-height: 1.2;
        font-size: 2.0rem;
        letter-spacing:-1.5px;
        text-align: justify;
        text-justify: inter-ideograph;
    }
    .bannerMailMag i.fa-envelope-o {
        position: absolute;
        left: 7px;
        top: 5px;
        font-size: 2.6rem;
    }
}
/*+++++++++++++++++++++++++++++++++++++++++++
    パンくず
+++++++++++++++++++++++++++++++++++++++++++ */
#breadcrumbsList {
  width: 1200px;
  background: #FFF9F1;
  margin: 0 auto;
  padding: 6px 30px 0 30px;
  padding-top: 6px;
  font-size: 85.7%;
  line-height: normal;
  text-align: left;
  height: 30px;
}
#breadcrumbsList a {
  font-weight: normal;
  text-decoration: underline;
  color: #000;
}
#breadcrumbsList a:hover {
    text-decoration: none;
}
#breadcrumbsList li {
  display: inline;
}
#breadcrumbsList li + li::before {
  content: " > ";
}
@media screen and (max-width:767px){
    #breadcrumbsList {
        max-width: 1200px;
        width: auto;
        padding-left: 10px;
    }
}

/*+++++++++++++++++++++++++++++++++++++++++++
    汎用
+++++++++++++++++++++++++++++++++++++++++++ */
.clear { clear:both; }
.texCenter { text-align:center!important; }
.texLeft { text-align:left!important; }
.texRight { text-align:right!important; }
@media screen and (min-width:768px){
    .pc_texCenter { text-align:center; }
    .pc_texLeft { text-align:left; }
    .pc_texRight { text-align:right; }
}
@media screen and (max-width:767px){
    .sp_texCenter { text-align:center; }
    .sp_texLeft { text-align:left; }
    .sp_texRight { text-align:right; }
}
.nowrap {
    white-space: nowrap;
}
.white-space: nowrap;
.weightNormal { font-weight:500!important; }
.weightBold { font-weight:bold!important; }
.floatL { float:left; }
.floatR { float:right; }
.imgL {
    float:left;
    margin:0 1em 1em 0;
}
.imgR{
    float:right;
    margin:0 0 1em 1em;
}

@media screen and (max-width:767px){
    .imgL,
    .imgR {
        display:block;
        float:none;
        margin:0 auto 1em;
    }
}
.boxCenter {
    display:block;
    margin:0 auto;
}
.borderNone { border:none!important; }
.overflowHidden { overflow:hidden; }
.imeDisabled { ime-mode:disabled; }

.lineHeight20 { line-height:2; }
.lineHeight19 { line-height:1.8; }
.lineHeight18 { line-height:1.8; }
.lineHeight17 { line-height:1.7; }
.lineHeight16 { line-height:1.6; }
.lineHeight15 { line-height:1.5; }
.lineHeight14 { line-height:1.4; }
.lineHeight13 { line-height:1.3; }
.lineHeight12 { line-height:1.2; }

.iBlock { display:inline-block; }
.inline { display:inline; }

input[type="text"],
input[type="password"],
input[type="file"],
select,
textarea {
    border: 1px solid #999999;
    background-color: #FFFFFF;
    padding: 3px;
    /*font-size: 12px;*/
}
input[type="submit"],
input[type="button"],
button {
	cursor: pointer;
}
.err {
    background-color: #FCC !important;
}
.error {
    color: #F00;
}
/*+++++++++++++++++++++++++++++++++++++++++++
    横幅
+++++++++++++++++++++++++++++++++++++++++++ */
.w500 { width:500px; }
.w450 { width:450px; }
.w400 { width:400px; }
.w350 { width:350px; }
.w300 { width:300px; }
.w250 { width:250px; }
.w200 { width:200px; }
.w150 { width:150px; }
.w100 { width:100px; }
.w50 { width:50px; }
.w100per { width:100%; }
.w90per { width:90%; }
.w80per { width:80%; }
.w70per { width:70%; }
.w60per { width:60%; }
.w50per { width:50%; }
.w40per { width:40%; }
.w33per { width:33.333%; }
.w30per { width:30%; }
.w20per { width:20%; }
.w10per { width:10%; }
@media screen and (max-width: 767px) {
    .w500 { width:100%; }
    .w450 { width:100%; }
    .w400 { width:100%; }
    .w350 { width:100%; }
    .w300 { width:100%; }
    .w250 { width:100%; }
    /*.w200 { width:200px; }*/
    /*.w150 { width:150px; }*/
    /*.w100 { width:100px; }*/
    /*.w50 { width:50px; }*/
}
/*+++++++++++++++++++++++++++++++++++++++++++
    color
+++++++++++++++++++++++++++++++++++++++++++ */
.color_red {
  color: #c42924;
}
/*+++++++++++++++++++++++++++++++++++++++++++
    font-size
+++++++++++++++++++++++++++++++++++++++++++ */
.fs10 { font-size:1rem; }
.fs11 { font-size:1.1rem; }
.fs12 { font-size:1.2rem; }
.fs13 { font-size:1.3rem; }
.fs14 { font-size:1.4rem; }
.fs15 { font-size:1.5rem; }
.fs16 { font-size:1.6rem; }
.fs17 { font-size:1.7rem; }
.fs18 { font-size:1.8rem; }
.fs19 { font-size:1.9rem; }
.fs20 { font-size:2rem; }
.fs22 { font-size:2.2rem; }
.fs24 { font-size:2.4rem; }
.fs26 { font-size:2.6rem; }
.fs30 { font-size:3rem; }
.fs32 { font-size:3.2rem; }
.fs34 { font-size:3.4rem; }
.fs36 { font-size:3.6rem; }

/*+++++++++++++++++++++++++++++++++++++++++++
    margin
+++++++++++++++++++++++++++++++++++++++++++ */
.mt0 { margin-top:0; }
.mt5 { margin-top:5px; }
.mt10 { margin-top:10px; }
.mt15 { margin-top:15px; }
.mt20 { margin-top:20px; }
.mt25 { margin-top:25px; }
.mt30 { margin-top:30px; }
.mt35 { margin-top:35px; }
.mt40 { margin-top:40px; }
.mt45 { margin-top:45px; }
.mt50 { margin-top:50px; }
.mb0 { margin-bottom:0; }
.mb5 { margin-bottom:5px; }
.mb10 { margin-bottom:10px; }
.mb15 { margin-bottom:15px; }
.mb20 { margin-bottom:20px; }
.mb25 { margin-bottom:25px; }
.mb30 { margin-bottom:30px; }
.mb35 { margin-bottom:35px; }
.mb40 { margin-bottom:40px; }
.mb45 { margin-bottom:45px; }
.mb50 { margin-bottom:50px; }
.mr0 { margin-right:0; }
.mr5 { margin-right:5px; }
.mr10 { margin-right:10px; }
.mr15 { margin-right:15px; }
.mr20 { margin-right:20px; }
.mr25 { margin-right:25px; }
.mr30 { margin-right:30px; }
.mr35 { margin-right:35px; }
.mr40 { margin-right:40px; }
.mr45 { margin-right:45px; }
.mr50 { margin-right:50px; }
.ml0 { margin-left:0; }
.ml5 { margin-left:5px; }
.ml10 { margin-left:10px; }
.ml15 { margin-left:15px; }
.ml20 { margin-left:20px; }
.ml25 { margin-left:25px; }
.ml30 { margin-left:30px; }
.ml35 { margin-left:35px; }
.ml40 { margin-left:40px; }
.ml45 { margin-left:45px; }
.ml50 { margin-left:50px; }

/*+++++++++++++++++++++++++++++++++++++++++++
    TB用、SP用
+++++++++++++++++++++++++++++++++++++++++++ */
.tb_show,
.sp_show {
    display:none;
}

@media screen and (max-width:1023px){
    .tb_hide {
        display:none;
    }

    .tb_show {
        display:block;
    }
}

@media screen and (max-width:767px){
    .sp_hide {
        display:none;
    }

    .sp_show {
        display:block;
    }
}

/*+++++++++++++++++++++++++++++++++++++++++++ clearfix */
.clearfix::after {
  content: '';
  display: block;
  clear: both;
}

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

/*201804*/
ul.lozenge {
	list-style: none;
	margin-bottom: 2em;
	margin-left: auto;
	margin-right: auto;
}
ul.lozenge li {
	position: relative;
	margin: 0 0 1em 0;
	padding: 0 0 0 1.1em;
	text-align: left;
}
ul.lozenge li:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 1em;
	height: 1em;
	color: #AFA16C;
	content: "\0025C6";
	display: block;
}

div.caution_msg {
	width: 100%;
	background: #ffe404;
	text-align: center;
}
div.caution_msg a {
	display: block;
	padding: 5px;
	color: #f00;
	font-size: 1.2em;
	text-decoration: none;
}
div.caution_msg a:hover {
	color: #f66;
}