﻿@charset "utf-8";

:root {
    --main-color: #a37f3a;
    --sub-color: #cce8e3;
    --font-color: #333;
    --accent-color: #d9a796;
}

/* iOSでのデフォルトスタイルをリセットここから */
input[type="submit"],
input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
    outline-offset: -2px;
}

/* iOSでのデフォルトスタイルをリセットここまで */

html {
    font-size: 14px;
    color: var(--font-color);
    background-color: var(--sub-color);
    background-image: url(../images/haikei.png);
    background-repeat: repeat;

}

a {
    color: var(--main-color);
    text-decoration: none;

}

body {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    line-height: 1.6;

}



.container {
    max-width: 940px;
    margin: 10px 15px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 20px;


}

.side {
    border-radius: 20px 20px 0 0 /20px 20px 0 0;
    flex: 0 0 25%;
    border-right: 1px solid #ddd;
    background-color: #fff;
    padding: 10px;

}

.main-wrapper {
    width: 100%;
}

main {
    width: 100%;
    flex: 0 0 75%;

}

@media screen and (max-width:769px) {



    .main-wrapper {
        margin: auto;
        flex-direction: column;
    }

    .side {
        flex: 0 0 100%;
        border: none;
    }

    main {
        flex: 0 0 100%;
    }
}

main header ul {
    width: 100%;
    display: flex;
}

main header ul li {

    display: block;
    text-align: center;

    border-bottom: 1px solid #ddd;
    border-left: 1px solid #ddd;
    border-radius: 10px 10px 0 0 /10px 10px 0 0;
    background-color: #fff;
    padding: 0 13px;
    height: 2em;
    line-height: 2em;

}


header li img {
    width: 50px;
    display: inline-block;
}

.hamburger {
    border: none;
    width: 35px;
    height: 35px;
    background: url(../images/hg.svg) no-repeat;
    background-size: contain;
    margin-top: 10px;
    outline: none;
    cursor: pointer;

}

.hamburger:hover {
    outline: none;
}

.hamburger:active {
    outline: none;
}

.hamburger:link {
    outline: none;
}

.hamburger:visited {
    outline: none;
}

nav {
    display: none;
}

header li p {
    color: var(--main-color);
    text-align: center;
}

.menu-moji {

    font-size: 17px;
}

header ul {
    display: flex;
    justify-content: space-around;
    border-bottom: 1px solid #a37f3a;
    padding-bottom: 10px;
}

header ul li {
    flex: 0 0 auto;
    cursor: pointer;
}


/*ロゴ*/
.logo {

    width: 70%;
    margin: auto;

}

.logo img {
    width: 100%;
    cursor: pointer;

}



/* 検索フォーム */
.search {
    padding-top: 20px;
}

.search_container {
    position: relative;
    box-sizing: border-box;
    border: 1px solid var(--main-color);

    padding: 3px 10px;
    border-radius: 3px;
    height: 2.3em;
    width: 100%;
    overflow: hidden;
}



.search_container input[type="text"] {
    border: none;
    height: 2.0em;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.search_container input[type="text"]:focus {
    outline: 0;
}

.search_container button {
    cursor: pointer;
    font-family: FontAwesome;
    border: none;
    background: var(--main-color);
    color: #fff;
    position: absolute;
    width: 3.5em;
    height: 3.2em;
    right: 0px;
    top: -3px;
    outline: none;
}

.search a {
    display: block;
    text-align: right;
    margin: 0 0 0 auto;
}

/*カテゴリ検索*/
.search-item-box {
    box-sizing: border-box;
    margin-top: 30px;
    border: 1px solid var(--main-color);
    width: 100%;
    height: 3em;
    position: relative;
}

.search-item-box p {
    font-size: 1.5rem;
    text-align: center;
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}


.category-box {
    margin-top: 30px;
    width: 100%;
}

.category-box h2 {
    display: block;
    box-sizing: border-box;
    width: 100%;
    background-color: var(--main-color);
    color: #fff;
    padding: 3px 1em;
    font-size: 1.2rem;

}

.category-box i {
    margin-right: 5px;
}

.radio {
    margin: 10px 0;
    font-size: 1.1rem;
    line-height: 2em;
}

.radio-input {
    display: none;

}

.radio-input + label {
    padding-left: 35px;
    position: relative;
    margin-right: 20px;
}

.radio-input + label:hover {
    cursor: pointer;
    color: var(--main-color);
}

.radio-input + label::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 10px;
    width: 15px;
    height: 15px;
    border: 1px solid var(--main-color);
    border-radius: 50%;
}

.radio-input:checked + label {
    color: var(--main-color);
}

.radio-input:checked + label::after {
    content: "";
    display: block;
    position: absolute;
    top: 3px;
    left: 13px;
    width: 11px;
    height: 11px;
    background: var(--main-color);
    border-radius: 50%;
}



.category-box input[type="submit"] {
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    display: block;

    font-size: 1rem;
    padding: 2px 5px 2px 10px;
    margin: 20px 0 0 auto;
    color: var(--main-color);
    background-color: #fff;
    border: solid 1px var(--main-color);
}

.category-box input[type="submit"]:hover {
    background-color: var(--main-color);
    color: #fff;
}

/*SNSアイコン*/
.sns {
    text-align: center;
    margin: auto;
    padding-top: 32px;
    padding-bottom: 25px;
}

.sns h3 {
    font-size: 2.5rem;
}

.sns p {
    font-size: 1rem;
    color: #000;
}

.sns li {
    display: inline-block;
    font-size: 2rem;
    text-align: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    margin: 15px 10px 0 0;
    border: 2px solid var(--main-color);
}

.sns li:hover {
    background: var(--main-color);
}

.sns a:hover {
    color: #fff;
}

.sns ul {
    width: 300px;
    text-align: center;
    margin: auto;
}

/* お知らせ */
.oshirase {
    box-sizing: border-box;
    margin: 30px 0 0 0;
    width: 100%;
    background: #fafafa;
    border: solid 1px #bbb;
    text-align: center;
    font-size: 1.1rem;
}

.oshirase-list {
    margin: 10px;
    line-height: 2rem;
    margin-bottom: 25px;
}

/* バナー */

.banner img {
    margin-top: 10px;
    width: 100%;
}

.photo {
    max-width: 100%;
}

.catch-photo img {
    width: 100%;
    height: auto;
    margin: 20px auto 0;
}

.main-contents {
    padding: 15px;
    margin: 15px;
}


.top-main-container:last-child {
    margin-bottom: 0;
    padding-bottom: 40px;
}



.banner-box {

    width: 100%;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    margin-bottom: 30px;

}

.banner-box a {
    display: block;
    width: 100%;
    height: 100%;
}

.banner1 {
    flex: 0 0 45%;
    border: 1px solid #ddd;
    height: 90px;
    background-image: url(../images/top-main-banner01.png);

    background-size: cover;
    cursor: pointer;

}

.banner2 {
    flex: 0 0 45%;
    border: 1px solid #ddd;
    height: 90px;
    background-image: url(../images/top-main-banner02.jpg);
    background-position: center;
    background-size: cover;
    cursor: pointer;
}

.banner1,
.banner2 {
    margin-bottom: 50px;
}


/*もっと見る*/
.more1 {
    display: block;
    text-align: right;
    margin-top: 15px;
    padding-top: 15px;
    text-decoration: underline;
    margin-bottom: 30px;
}

.more {
    display: block;
    text-align: right;
    margin: 10px 0 0 auto;
    text-decoration: underline;
    margin-bottom: 30px;
}

/*おすすめ特集*/
.tokusyu-item-box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
}

.tokusyu-item {
    flex: 0 0 200px;
    height: auto;

    color: #fff;
    text-align: center;
    box-sizing: border-box;
}

.banner-box img {
    width: 100%;
    height: 110px;
    object-fit: cover;
}

.banner-box p {
    font-size: 1em;
    color: #a37f3a;

}

@media screen and (max-width:769px) {

    .banner1,
    .banner2 {
        margin-bottom: 0px;
    }

    .banner-box p {
        font-size: 0.9em;
        color: #a37f3a;
        font-weight: bold;
        border: 1px solid #a37f3a;
        margin: 2px;
        border-radius: 4px;
    }

    .item p {
        font-size: 12px;
    }

}

/*トップページアイテム共通*/
.item-box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    padding-top: 20px;

}

.item {
    flex: 0 0 45%;
    height: auto;
    box-sizing: border-box;
}

.item2 {
    margin-top: 25px;
}

.item a {
    font-size: 1.3rem;
    color: #000;
}

.item img {
    width: 100%;
    height: 60%;
    object-fit: cover;
}


h3 {
    font-size: 1.2rem;
    padding-bottom: 8px;
    padding-top: 10px;
    color: #a37f3a;
}

@media only screen and(max-width: 479px) {
    .item-box {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }

}

.lineup_txt {
    color: #a37f3a;
    margin-bottom: 2px;
    font-size: 1rem;
}

/*人気ランキング*/


.ranking-item-box {
    position: relative;
    z-index: 1;
}


.rank {
    text-align: center;
    width: 100%;
    border: 1px solid #a37f3a;
    border-radius: 5px;
    background: #a37f3a;
    color: #fff;
    font-size: 8px;
    margin: 8px auto;
}

.rank p {
    text-align: center;
}

.rank2 {
    display: block;
    position: absolute;
    top: 0;
    left: 145px;
    width: 40px;
    height: auto;
    z-index: 100;
}

.rank3 {
    display: block;
    position: absolute;
    top: 0;
    left: 300px;
    width: 40px;
    height: auto;
    z-index: 100;
}


/*出店ストア*/
.store-item {
    display: flex;
    justify-content: space-between;
    margin: auto;

}

.banner-box3 {
    width: 100%;
    height: 100%;
}

.store-item-box img {
    flex: 0 0 auto;
    width: 100%;

}

@media screen and (max-width:769px) {
    .store-item-box {
        width: 100%;
        height: 100px;
    }

}

.sp_title {
    text-align: center;
    padding: 10px 20px 20px 20px;
    color: --main-color: #a37f3a;
    border-top: 1px solid #cce8e3;

}


.under {
    border-bottom: 3px solid #a37f3a;
}

.sp_title p {
    font-size: 12px;
    color: #a37f3a;
}


/*フリーダイアル*/
.tel {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 90px;
    background: #fafafa;
    border: solid 1px #bbb;
    margin-top: 10px;


}

.tel i {
    font-size: 3rem;
    margin-top: 25px;
    margin-right: 20px;
}

.tel span {
    margin-top: 20px;
    font-size: 40px;
}

.freecall p {
    text-align: center;
    font-size: 1.2em;
}

@media screen and (max-width:769px) {
    .tel span {
        font-size: 20px;
        font-weight: bold;
        text-align: center;
    }

    .freecall p {
        text-align: center;
        font-size: 0.8em;
    }

    .freecall {
        align-self: center;
    }

    .tel {
        display: flex;
        justify-content: center;
        width: 100%;
        height: 100px;
        background: #fafafa;
        border: solid 1px #bbb;
        margin-top: 10px;


    }
}

/*フッダー*/
footer {
    flex: 0 0 100%;
    order: 3;
    border-radius: 0 0 20px 20px/0 0 20px 20px;
    display: block;
    background-color: #fff;

}

.footer-inner {
    margin: 20px 0;

}

.maru-conteiner {
    position: relative;
    width: 100%;
    height: 100px;

}

.maru1 {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 30%;
    left: 3%;
    border-radius: 50%;
    background-color: #000;
    background-image: url(../images/footer01.jpg);
    background-position: 200px 100px;
    background-size: 500px auto;
}

.maru2 {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 0;
    left: 17%;
    border-radius: 50%;
    background-color: #000;
    background-image: url(../images/footer01.jpg);
    background-position: top left;
    background-size: cover;
}

.maru3 {
    position: absolute;
    width: 65px;
    height: 65px;
    top: 30%;
    left: 30%;
    border-radius: 50%;

    background-image: url(../images/footer02.jpg);
    background-position: center;
    background-size: cover;
}

.maru4 {
    position: absolute;
    width: 25px;
    height: 25px;
    top: 70%;
    left: 40%;
    border-radius: 50%;

    background-image: url(../images/footer02.jpg);
    background-position: 0 100px;
    background-size: 200px auto;
}

.maru5 {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 45%;
    left: 50%;
    border-radius: 50%;

    background-image: url(../images/footer03.jpg);
    background-position: 0 0;
    background-size: cover;
}

.maru6 {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 0;
    left: 65%;
    border-radius: 50%;

    background-image: url(../images/footer03.jpg);
    background-position: 0 0;
    background-size: 200px auto;
}

.maru7 {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 65%;
    left: 80%;
    border-radius: 50%;

    background-image: url(../images/footer04.png);
    background-position: 50% 100%;
    background-size: 100px auto;
}

.maru8 {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 0;
    left: 90%;
    border-radius: 50%;

    background-image: url(../images/footer04.png);
    background-position: center;
    background-size: cover;
}

@media screen and (max-width:769px) {
    .maru-conteiner {
        display: none
    }
}



.footer-box {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    margin-top: 20px;
}

.footer-box ul {
    display: table;
    width: 100%;
    margin: 0;
    padding: 0;
}

.footer-box li {
    position: relative;
    display: table-cell;
    width: 23%;
    height: 38px;
    text-align: center;
    vertical-align: middle;
    font-size: 0.8rem;

}

.footer-box li a {
    display: block;
    font-size: 0.85rem;

}

.footer-box li:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    display: block;
    width: 1px;
    height: 19px;
    margin-top: -10px;
    background-color: #cce8e3;
}

.footer-box li:last-child::after {
    content: none;
}

.ookiku {
    padding-left: 4px;
}

.ookiku2 {
    padding-right: 4px;
    padding-left: 4px;
}

.copy {
    background-color: var(--main-color);
    text-align: center;
    max-width: 940px;
    margin: auto;
    height: 2em;
    border-radius: 0 0 20px 20px/0 0 20px 20px;
    color: #fff;
}

.pagetop {
    text-align: center;
    font-size: 20px;
    margin-bottom: 30px;
}

/*--------------------------------------------------------------------商品一覧--------------------------------------------------------------------*/

/*メイン*/




.goodsimg-wrap {
    background-color: #fff;
    margin: auto;
    width: 90%;
    padding-top: 30px;
}

@media screen and (max-width:769px) {
    .goodsimg-wrap {
        width: 90%;

    }
}


.ichiran .contents {
    text-align: justify;
    margin: 30px 0;
    line-height: 2em;
}



.ichiran-item {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    justify-content: space-between;
    border-bottom: dotted 1px #a37f3a;

}

.ichiran-photo img {
    width: 100%;
}

.ichiran-img {
    flex: 0 0 20%;
    position: relative;
}

.ichiran-img img {
    width: 100%;

}

.ichiran-setumei {
    flex: 0 0 75%;
}

.ichiran-icon img {
    float: left;
    margin-right: 20px;
}

.ichiran-icon::after {
    content: "";
    display: block;
    clear: both;
}

.ichiran-cart {
    display: flex;
    justify-content: space-between;
}








/* 商品画像 */


.ichiran .photo {

    text-align: center;
    margin-bottom: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
    border-bottom: dotted 1px #a37f3a;
}



/* カートボタン関係 */
.cartbox {


    float: left;
    margin: 8px 0 8px 70px;
    padding: 8px;
    width: 40px;

}

.ichiran-buy .submit {

    background: var(--accent-color) url(images/cart2.png) 6px center no-repeat;
    background-size: 1.5rem auto;
    padding-left: 1.8rem;
    padding-right: 1rem;
    width: 200px;
    height: 40px;
    color: #fff;
    border-radius: 5px;
}

.ichiran-buy .submit:hover {
    box-shadow: 0px 0px 5px #a37f3a;
    text-shadow: 0px 0px 5px #fff;
}

@media only screen and (max-width: 767px){
    .pagination{
        margin: auto;
        text-align: center;
        padding-top: 15px;
    }
  .pager .pagination li{
    display: none;
  }

  .pager .pagination li.pre,
  .pager .pagination li.next{
    display: inline-block;
    width: 40%;
    height: 50px;
    text-align: center;
  }

  .pager .pagination li.pre a,
  .pager .pagination li.next a{
    width: 100%;
    text-align: center;
  }

  .pager .pagination li.pre span::after{
    content: "　前の10件へ";
  }

  .pager .pagination li.next span::before{
    content: "次の10件へ　";
  }

}



/* --------------------------------------------------------------------
	商品詳細
--------------------------------------------------------------------- */


/* 商品スペック */


.goods {
    background-color: #fff;
    margin: auto;
}

.goodsimg {
    width: 92%;
    background-color: #fff;
    margin: 30px auto;
}

.img-l {
    width: 300px;
    height: 300px;
    margin-bottom: 10px;
}

.img-l img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-s {
    display: flex;
    width: 300px;
    justify-content: space-between;
    cursor: pointer;
}

.etc-goodsimg {
    flex: 0 0 95px;
    height: 95px;


}

.etc-goodsimg img {
    width: 100%;
    height: 100%;
    border: 1px solid #ddd;
    box-sizing: border-box;
    object-fit: cover;
}

.spec_goods {
    font-size: 11px;
    color: #362e2b;
    margin-bottom: 5px;
}

.spec_goods_name {
    color: #000;
}

.spec_goods_name h1 {
    font-size: 20px;
    font-weight: bold;
    color: #000;

}

.goodsinfo {
    flex: 0 0 330px;
    width: 90%;
    margin: 50px auto;
}

.icon {
    margin-bottom: 20px;

}

.tag {
    display: inline-block;
    border: 1px solid var(--main-color);
    font-size: 10px;
    width: 6em;
    text-align: center;
}

.price_box {
    line-height: 22px;
    padding-bottom: 5px;
    margin-bottom: 5px;

}

.price_box {
    color: #362e2b;
    font-size: 1.5rem;
    text-align: right;
    margin-right: 1em;
}


.spec_goods {
    color: var(--main-color);

}


/* カートボタン関係 */
.goodscart {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 30px;
}

.cartbox2 {
    flex: 0 0 100px;
    margin: 30px 0;
}

.cartbox2 p {
    font-weight: bold;
}

.cartbox2 input {
    width: 25px;
    height: 25px;
}
.goodscart a{
    color: var(--main-color);
    background: #fff;
    border: 1px solid var(--main-color);
    font-size: 1rem;
    cursor: pointer;
    font-weight: normal;
    border-radius: 4px;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    padding: 10px;
}

.goodsinfo button {
    width: 100%;
    height: 50px;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    padding: 10px 13px 11px;
    font-size: 1.2rem;
    cursor: pointer;
    font-weight: normal;
    border: none;
    border-radius: 4px;
    line-height: 1;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;

    color: #fff;
    background: var(--accent-color);
    margin-bottom: 50px;
}

.back {
    display: block;
    text-align: end;
    margin: 10px 0 0 auto;
    cursor: pointer;
}

/*--------------------------------------------------------------------会員登録--------------------------------------------------------------------*/
.kaiin_wrapper {
    overflow: hidden;
    padding: 0 3% 10px;
    margin: 0 3%;
    background: #fff;
}

.kaiin {
    background-color: #fff;
    width: auto;
    margin-top: 30px;
}

.otoiawasenaiyou {
    margin-bottom: 30px;
}

.customer dt {
    padding: 10px;
    background: #cce8e3;
}

.customer dd {
    padding: 30px 20px;
    border: 1px solid #cce8e3;
}


.kaiin form h1 {
    font-size: 14px;
    font-weight: normal;
    color: #333;
    border-bottom: solid 2px #ccc;
    margin-bottom: 5px;
}





.kaiin input[type="text"],
.kaiin [type="password"],
.kaiin [type="radio"],
.kaiin select {
    font-size: 1em;
    padding: 8px 8px;
    border-radius: 3px;
    border: 1px #ddd solid;

    outline: none;
    background: none;

}



.kaiin input::placeholder {
    color: #777;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.kaiin select {
    margin-left: 20px;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;

}

.kaiin .hisu {
    float: right;
}

.kaiin span {
    color: #fff;
    background: #a37f3a;
    display: inline-block;
    padding: 1px 5px;
    font-size: 3px;
    border-radius: 2px;
    display: inline;

}

.kaiin .small {
    padding-left: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 12px;
}

.kaiin button {
    width: 200px;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    padding: 10px 13px 11px;
    font-size: 1em;
    cursor: pointer;
    line-height: 1;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    border: 1px solid #a37f3a;
    color: #fff;
    background: #a37f3a;
    border-radius: 3px;
    display: block;
    margin: 50px auto;
}

/*--------------------------------------------------------------------ログイン画面--------------------------------------------------------------------*/
.login {
    width: 90%;
    margin: 30px auto 0;
}

.loginform {
    width: 100%;
    margin-bottom: 50px;
}

.login .member {
    margin-top: 15px;
    margin-bottom: 10px;
    padding: 12px auto;
    font-weight: bold;
    border-bottom: 1px solid #cce8e3;
    clear: both;
}

.login .form_text {
    margin-bottom: 20px;
}

.login-box {
    padding: 30px
}


.login input[type="text"],
[type="password"] {
    font-size: 1em;
    padding: 8px 8px;
    border-radius: 3px;
    margin: 15px auto;

}

.login .button_field {
    margin-top: 30px;
    margin-bottom: 10px;
    text-align: center;
    cursor: pointer;
}

.login .passloss {
    padding-top: 18px;
}

.login button {
    width: 200px;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    padding: 10px 13px 11px;
    font-size: 1em;
    cursor: pointer;
    line-height: 1;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    border: 1px solid #a37f3a;
    color: #fff;
    background: #a37f3a;
    border-radius: 3px;
    cursor: pointer;
}

.login .online_top {
    text-align: center;
    padding: 30px;
    cursor: pointer;
}


.login a:link {
    color: #a37f3a;
}

.login h1 {
    font-size: 22px;
    font-weight: normal;
    color: #333;
    border-bottom: solid 2px #ccc;
    margin-bottom: 5px;
}



/*--------------------------------------------------------------------お買い物かご画面--------------------------------------------------------------------*/
.header-cart li:first-child {
    border-bottom: 1px solid #ddd;
}

.header-cart li:nth-child(4) {
    border-bottom: 1px solid #fff;
}

.cart {
    padding: 30px;
    box-sizing: border-box;

    background-color: #fff;

}


.cart h1 {
    font-size: 22px;
    font-weight: normal;
    color: #333;
    border-bottom: solid 2px #ccc;
    margin-bottom: 5px;
}

.cart-table table {
    width: 100%;
    margin: 50px auto;

}

.cart-table table th,
.cart-table table td {
    text-align: center;
    vertical-align: middle;
    padding: 10px 5px;
    border-bottom: solid 2px var(--sub-color);
    border-top: solid 2px var(--sub-color);
}


.cart-table .syouhinmei {
    display: flex;
    width: auto;

}

.cart-table .syouhinmei-img img {
    width: 100px;
}

.cart-table .syouhinmei-img {
    flex: 0 0 100px;
}

.cart-table .syouhinmei-info {
    padding-left: 20px;
    flex: 1 1 auto;
    text-align: left;
}

.sakujo button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;

    appearance: none;
    background-color: var(--main-color);
    color: #fff;
}

.cart-button {
    display: flex;
    flex-direction: column;
    width: auto;

    margin: 0 0 0 auto;
}

.cart-button a {
    display: block;
    margin: 0 0 20px auto;
    width: 200px;
    height: 40px;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;

    font-size: 1em;
    cursor: pointer;
    line-height: 2.5;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    background: #fff;
    border-radius: 3px;
    box-sizing: border-box;

}

.cart-button button {
    margin: 0 0 0 auto;
    width: 200px;
    height: 40px;

    font-size: 1em;
    cursor: pointer;
    line-height: 1;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    border: 1px solid #a37f3a;
    color: #fff;
    background: #a37f3a;
    border-radius: 3px;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}


/*--------------------------------------------------------------------お買い物かご画面--------------------------------------------------------------------*/
.complete {
    padding: 30px;
    height: 900px;
    background-color: #fff;
}

.complete h1 {
    font-size: 22px;
    font-weight: normal;
    color: #333;
    border-bottom: solid 2px #ccc;
    margin;
}

.complete .kanryou {
    margin-left: 150px;
    margin-top: 50px;
    font-size: 1.3em;
}

.complete .button_field {
    margin-top: 30px;
    margin-bottom: 10px;
    text-align: center;
}


.complete button {
    width: 200px;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    padding: 10px 13px 9px;
    font-size: 1em;
    cursor: pointer;
    line-height: 1;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    border: 1px solid #a37f3a;
    color: #fff;
    background: #a37f3a;
    border-radius: 3px;
}

.complete h3 i {
    font-family: "Font Awesome 5 Free";
    font-size: 1.2em;
    padding-right: 10px;
    /*文字との隙間*/
    color: #fff;
    /*アイコンの色*/
    vertical-align: middle;
    padding-bottom: 5px;
}

.complete img {
    width: auto;
    height: 1.5em;
    display: inline-block;
    margin-right: 8px;
    margin-bottom: -5px;
}

/*--------------------------------------------------------------------登録確認画面--------------------------------------------------------------------*/
.regist_ckeck {
    background-color: #fff;
    width: auto;
    padding: 30px;
}


.regist_ckeck form h1 {
    font-size: 22px;
    font-weight: normal;
    color: #333;
    border-bottom: solid 2px #ccc;
    margin-bottom: 5px;
}



.regist_ckeck input[type="text"],
.regist_ckeck [type="password"],
.regist_ckeck [type="radio"] {
    font-size: 1em;
    padding: 8px 8px;
    border-radius: 3px;
    margin-left: 20px;

}


.button_area {
    text-align: center;
}

.tourokugamen button[type="submit"] {
    width: 200px;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    padding: 10px 13px 9px;
    font-size: 1em;
    cursor: pointer;
    line-height: 1;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    border: 1px solid #a37f3a;
    color: #fff;
    background: #a37f3a;
    border-radius: 3px;
    display: inline-block;
    margin-top: 50px;
}


.regist_ckeck p {
    margin-bottom: 30px;
    margin-top: 10px;
}

.online_top {
    text-align: center;
    margin: 40px 0;
    text-decoration: underline;
}

.back {
    width: 200px;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    padding: 10px 13px 9px;
    font-size: 1em;
    cursor: pointer;
    line-height: 1;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    display: inline-block;
    border-radius: 3px;
}

/*--------------------------------------------------------------------登録完了画面--------------------------------------------------------------------*/
.touroku_complete {
    padding: 30px;

}

.touroku_complete .kanryou {
    margin: 30px auto 50px;
    font-weight: bold;
}

.touroku_complete h1 {
    font-size: 19px;
    font-weight: normal;
    color: #333;
    border-bottom: solid 2px #ccc;

}

.touroku_complete i {
    padding: 8px;
}

.touroku_complete h2 {
    font-size: 22px;
    font-weight: bold;
    color: #a37f3a;
    text-align: center;
    margin-top: 80px;
}

.touroku_complete .button_field {
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
}


.tourokugamen button[type="submit"] {
    width: 200px;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    padding: 10px 13px 9px;
    font-size: 1em;
    cursor: pointer;
    line-height: 1;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    border: 1px solid #a37f3a;
    color: #fff;
    background: #a37f3a;
    border-radius: 3px;
    display: inline-block;
}

.touroku_complete h3 i {
    font-family: "Font Awesome 5 Free";
    font-size: 1.2em;
    padding-right: 10px;
    /*文字との隙間*/
    color: #fff;
    /*アイコンの色*/
    vertical-align: middle;
    padding-bottom: 5px;
}



/* 会社概要 */






.main-container {
    
    background: #fff;
}

#profile{
    margin: 20px;
}

#corpmain {
    width: 100%;
    padding-bottom: 25px;
    background: #fff;
}

#corpmain p {
    margin-bottom: 18px;
}

#corpmain h2 {
    text-align: center;
    font-size: 25px;
    color: #a37f3a;
    margin-top: 25px;
}
#corpmain dt {
    color:#2248b1;
}

#corpmain dd {
    margin-bottom: 20px;
}

/* ご利用ガイド */



.guideh1 {
    font-size: 20px;
    padding-top: 20px;
    text-align: center;
    color: #a37f3a;
}


/* qanda */


.qanda {
    box-sizing: border-box;
    min-height: 1500px;
    background-color: #fff;
}


.qanda p {
    line-height: 1.8;
    min-height: 40px;
}



.qanda h1 {
    margin-bottom: 3rem;
    border-bottom: 1px dashed #a37f3a;
    font-weight: normal;
    font-size: 1.6rem;
}


.q-and-a {
    margin-top: 1em;
    padding: 8px 0 0 60px;
}

.question {
    font-weight: bold;
    color: #6eba44;
    background: url(../images/q.png) no-repeat;
    background-size: 30px 30px;


}

.answer {
    margin-bottom: 2em;
    background: url(../images/a.png) no-repeat;
    background-size: 30px 30px;
}
