@charset "UTF-8";

/* =====
 * サイト全体共通レイアウト
============================================================================= */

html {
    font-size: 16px;
}

body {
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    color: #222;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}

body.-js-fixed {
    width: 100%;
    height: 100%;
    overflow-y: hidden;
}


/* -----
 * link setting
----------------------------------------------------------------------------- */

a:link,
a:visited,
a:active {
    color: #03c;
    outline: 0 none #000;
}

a img {
    vertical-align: bottom;
    box-shadow: #000 0 0 0;
}


/* -----
 * tag setting
----------------------------------------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 1.3em 0 1em;
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
    margin-top: 0;
}

p,
ul,
ol,
table {
    margin: 1em 0;
}

p:last-child,
ul:last-child,
ol:last-child,
table:last-child {
    margin-bottom: 0;
}

p:first-child,
ul:first-child,
ol:first-child,
table:first-child {
    margin-top: 0;
}

img {
    vertical-align: bottom;
    max-width: 100%;
}

* {
    box-sizing: border-box;
}


/* -----
 * サイト内共通class
----------------------------------------------------------------------------- */

.adjust-width {
    width: 980px;
    margin-left: auto;
    margin-right: auto;
}


/** font **/

.en {
    font-family: "Lato", sans-serif;
}


/** 画像 **/

.js-ofi {
    object-fit: cover;
    font-family: "object-fit: cover";
}

.js-ofi.-contain {
    object-fit: contain;
    font-family: "object-fit: contain";
}

.text-indent {
    text-indent: -1em;
    padding-left: 1em;
}

span.text-indent {
    display: inline-block;
}

.indent-list {
    padding: 0;
    list-style: none;
}

.indent-list li {
    text-indent: -1em;
    padding-left: 1em;
}

.d-ibk {
    display: inline-block;
}

.c-red {
    color: #dd0000;
}


/* -----
 * サイト内共通 js class
----------------------------------------------------------------------------- */

.-js-slide-toggle-trig,
[data-tab-target],
[data-tab-switch] {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.tab-switch-target,
.-js-tab-target-hide,
.-js-tab-switch-hide {
    display: none;
}

.-js-tab-target-show,
.-js-tab-switch-show {
    display: block;
    animation: fade-in 0.25s ease-out;
}

@keyframes fade-in {
    0% {
        display: none;
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
    1% {
        display: block;
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
    100% {
        display: block;
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    }
}


/* -----
 * g-container
----------------------------------------------------------------------------- */

.g-container {
    min-width: 1050px;
    padding-top: 72px;
}

.g-main {
    padding-top: 70px;
}


/* -----
 * g-header
----------------------------------------------------------------------------- */

.menu-toggle i,
.menu-toggle i:before,
.menu-toggle i:after,
.menu-close i:before,
.menu-close i:after {
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 26px;
    height: 2px;
    background: #222;
}

.g-header a {
    display: block;
    text-decoration: none;
}

.header-main {
    position: fixed;
    top: 0;
    left: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 72px;
    min-width: 900px;
    padding: 0 40px;
    background: #fff;
    border-bottom: 1px solid #ececec;
    transition: height 0.3s, border 0.2s;
    z-index: 97;
}

.header-main .header-logo {
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 200px;
    margin: 0 40px 0 0;
    transition: width 0.3s;
    line-height: 1.2;
}

.header-main .header-logo img {
    color: #a58959;
    font-size: 14px;
    font-size: 0.875rem;
}

.language-switch {
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    position: relative;
    margin: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.language-switch span {
    display: inline-block;
    position: relative;
    padding: 0 0.9em;
    font-size: 14px;
    font-size: 0.875rem;
    letter-spacing: 0.075em;
    cursor: pointer;
}

.language-switch span:after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    position: absolute;
    top: 50%;
    border-top: 1px solid;
    border-right: 1px solid;
    right: 0;
    transform: rotate(135deg);
    border-color: #222;
    margin-top: -3px;
}

.language-switch .list {
    list-style: none;
    position: absolute;
    top: 30px;
    left: 3px;
    margin: 0;
    padding: 0 5px;
    background: #897044;
    width: 100px;
    height: 0;
    min-height: 0;
    overflow: hidden;
    transition: min-height 0.3s;
    font-size: 12px;
    font-size: 0.75rem;
    z-index: 10;
}

.language-switch .list li:not(:last-child) {
    border-bottom: 1px solid #bca782;
}

.language-switch .list li a {
    text-decoration: none;
    color: #fff;
    text-align: center;
    padding: 7px 0;
}

.language-switch.-js-slide-toggle-trig-open span {
    color: #a58959;
}

.language-switch.-js-slide-toggle-trig-open span:after {
    border-color: #a58959;
}

.header-login {
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    margin: 0 0 0 30px;
}

.header-login a {
    position: relative;
    padding-left: 22px;
    color: inherit;
    font-size: 13px;
    font-size: 0.8125rem;
}

.header-login a:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 16px;
    height: 16px;
    margin-top: -8px;
}

.header-login a.login:before {
    background: url(../images/common/icon-login.png) no-repeat center center;
    background-size: contain;
}

.header-login a.register:before {
    background: url(../images/common/icon-register.png) no-repeat center center;
    background-size: contain;
}

.menu-toggle {
    width: 26px;
    height: 26px;
    margin: 0 0 0 30px;
    cursor: pointer;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.menu-toggle i {
    margin-top: -1px;
}

.menu-toggle i:before,
.menu-toggle i:after {
    content: "";
}

.menu-toggle i:before {
    margin-top: -10px;
}

.menu-toggle i:after {
    margin-top: 8px;
}

.header-shop-link {
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 258px;
    margin-right: auto;
}

.header-shop-link>p {
    float: left;
    width: 124px;
    margin: 0;
    text-align: center;
}

.header-shop-link>p:not(:first-child) {
    margin-left: 10px;
}

.header-shop-link>p a {
    position: relative;
    border-radius: 3px;
    border: 1px solid #aaa;
    font-weight: bold;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 38px;
    letter-spacing: 0.1em;
    color: inherit;
}

.header-shop-link>p a.spa {
    background: #d51518;
    border-color: #d51518;
    color: #fff;
    position: relative;
}

.header-shop-link>p a.spa:before,
.header-shop-link>p a.spa:after {
    content: "";
    display: block;
    position: absolute;
}

.header-shop-link>p a.spa:before {
    width: 100%;
    height: 2px;
    background: #961f24;
    left: 0;
    bottom: 0;
}

.header-shop-link>p a.spa:after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 3.5px 5px 3.5px;
    border-color: transparent transparent #961f24 transparent;
    left: 50%;
    bottom: 2px;
    margin-left: -3.5px;
}

.header-info {
    padding: 15px;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.54;
}

.header-info .header-info-inner {
    display: -ms-flexbox;
    display: flex;
}

.header-info .menu-close {
    display: none;
}

.header-info .heading {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100px;
    height: 50px;
    line-height: 48px;
    margin: 0;
    border: 1px solid #dedede;
    text-align: center;
    font-weight: bold;
    letter-spacing: 0.1em;
}

.header-info .shop-info-group {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: calc(100% - 240px);
    display: -ms-flexbox;
    display: flex;
}

.header-info .shop-info {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 57%;
    padding: 5px 20px;
}

.header-info .shop-info:nth-child(2) {
    width: 43%;
    border-left: 1px solid #dedede;
}

.header-info .shop-info .title {
    display: inline-block;
    padding-right: 1em;
}

.header-info .shop-info p {
    margin: 0;
}

.header-info .shop-info .main {
    font-weight: bold;
}

.header-info .shop-info .sub {
    font-size: 12px;
    font-size: 0.75rem;
}

.header-info .shop-info .sub span {
    display: inline-block;
    margin-right: 1.5em;
}

.header-info .shop-info .sub span:last-child {
    margin-right: 0;
}

.header-info .shop-info .caution {
    margin-top: 0.3em;
    color: #dd0000;
    font-size: 12px;
    font-size: 0.75rem;
}

.header-info .shop-info-link {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 130px;
    margin: 0 0 0 auto;
    border-left: 1px solid #dedede;
}

.header-info .shop-info-link a {
    padding: 0.38em 0;
    font-size: 13px;
    font-size: 0.8125rem;
    color: #dd0000;
}

.header-info .shop-info-link a>span {
    position: relative;
    padding: 0 10px 0 20px;
}

.header-info .shop-info-link a>span:after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    position: absolute;
    top: 50%;
    border-top: 1px solid;
    border-right: 1px solid;
    right: 0;
    transform: rotate(45deg);
    border-color: #222;
    margin-top: -3px;
}

.header-info .shop-info-link a span {
    display: block;
}

.header-bottom-menu {
    background: #a58959;
    text-align: center;
}

.header-bottom-menu ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0;
    list-style: none;
    margin: 0 auto;
}

.header-bottom-menu ul li {
    position: relative;
    display: inline-block;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}

.header-bottom-menu ul li:not(:last-of-type):before {
    display: block;
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    border-right: 1px solid #ddc38f;
    height: 35px;
    opacity: 0.3;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
    transform: translate(0, -50%);
}

.header-bottom-menu ul li._pc-only.sdgs:before {
    content: '';
    width: 92%;
    height: 86%;
    position: absolute;
    border: 1px solid #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.header-bottom-menu ul li a {
    padding: 19px 0;
    color: #fff;
    font-size: 0;
    line-height: 1.7;
    transition: padding 0.3s;
}

.header-bottom-menu ul li a>* {
    display: inline-block;
    vertical-align: middle;
    font-size: 13.008px;
    font-size: 0.813rem;
}

.header-bottom-menu ul li .icon {
    height: 1.572em;
    vertical-align: middle;
    margin-right: 8px;
}

.header-bottom-menu ul li.sdgs .icon {
    height: 2em;
}

.header-bottom-menu ul li .icon img {
    max-height: 100%;
    width: auto;
}

.header-bottom-menu ul li .text {
    margin: 0;
}

.menu-close {
    position: relative;
    float: right;
    width: 26px;
    height: 26px;
    cursor: pointer;
    margin: 0 40px 20px 0;
}

.menu-close i:before,
.menu-close i:after {
    content: "";
    background: #fff;
}

.menu-close i:before {
    transform: rotate(45deg);
}

.menu-close i:after {
    transform: rotate(-45deg);
}

.g-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    max-width: 460px;
    background: #a58959;
    color: #fff;
    text-align: center;
    z-index: 100;
    padding: 28px 0 0;
    overflow: auto;
    line-height: 1.31;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.4s;
    /** open **/
}

.g-menu .heading {
    clear: right;
    font-weight: bold;
    font-size: 18px;
    font-size: 1.125rem;
    margin: 0 0 1em;
    letter-spacing: 0.1em;
}

.g-menu ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

.g-menu a {
    color: #fff;
}

.g-menu .shop-menu {
    padding: 0 15px;
}

.g-menu .shop-menu ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: 1px solid #bca782;
}

.g-menu .shop-menu ul li {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 5px 3px;
    font-size: 13px;
    font-size: 0.8125rem;
}

.g-menu .shop-menu ul li.sdgs_ham::before {
    content: '';
    width: 87%;
    height: 87%;
    position: absolute;
    border: 1px solid #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.g-menu .shop-menu ul li:not(:last-child) a:before {
    content: "";
    width: 1px;
    height: 100%;
    background: #bca782;
    position: absolute;
    right: -3px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.g-menu .shop-menu ul li a {
    padding: 15px 0;
    height: 100%;
    position: relative;
}

.g-menu .shop-menu ul li a .icon-left {
    display: inline-block;
    height: 1.429em;
    margin-right: 0.3em;
    vertical-align: middle;
}

.g-menu .shop-menu ul li a .icon-left img {
    max-height: 100%;
    width: auto;
}

.g-menu .shop-menu ul li a .icon {
    display: block;
    height: 33px;
}

.g-menu .shop-menu ul li.sdgs_ham a .icon {
    height: 36px;
}

.g-menu .shop-menu ul li a .icon img {
    max-height: 100%;
    width: auto;
}

.g-menu .shop-menu ul li a p {
    display: table;
    width: 100%;
    height: 2.62em;
    margin: 0.5em 0 0;
}

.g-menu .shop-menu ul li.sdgs_ham a p {
    margin: 0.4em 0 0;
}

.g-menu .shop-menu ul li a p>span {
    display: table-cell;
    vertical-align: middle;
}

.g-menu .shop-menu ul li a:hover {
    opacity: 0.7;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
}

.g-menu .shop-menu ul.col1 li {
    width: 100%;
}

.g-menu .shop-menu ul.-top {
    padding-bottom: 12px;
    margin-bottom: 5px;
}

.g-menu .shop-menu ul.-top li a {
    padding: 2px 0;
    font-size: 14px;
    font-size: 0.875rem;
}

.g-menu .shop-menu ul.-middle li {
    width: 20%;
    position: relative;
}

.g-menu .shop-menu ul.-middle li:nth-child(-n + 4) {
    width: calc(100% / 4 - 1px);
}

.g-menu .shop-menu ul.-middle li:nth-child(n + 5) a:after {
    content: "";
    width: 100%;
    height: 1px;
    background: #bca782;
    position: absolute;
    right: 0;
    left: 0;
    top: -5px;
    margin: auto;
}

.g-menu .shop-menu ul.-middle li:nth-child(4) a:before {
    content: none;
}

.g-menu .shop-menu ul.-bottom {
    border-bottom: none;
}

.g-menu .shop-menu ul.-bottom li {
    width: 33%;
}

.g-menu .shop-menu ul.-bottom a {
    font-size: 12px;
    font-size: 0.75rem;
}

.g-menu .shop-menu ul.-bottom a .en {
    display: block;
    font-size: 1.5em;
    letter-spacing: 0.075em;
}

.g-menu .other-menu {
    border-top: 5px solid #bca782;
    padding: 0 15px;
}

.g-menu .other-menu ul.inner-group li:first-child {
    border-top: 1px solid #bca782;
}

.g-menu .other-menu li {
    border-bottom: 1px solid #bca782;
    text-align: left;
}

.g-menu .other-menu li>* {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 74px;
}

.g-menu .other-menu li>*>* {
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
}

.g-menu .other-menu li .link-icon {
    display: inline-block;
    position: relative;
    width: 14px;
    height: 20px;
    margin-left: auto;
}

.g-menu .other-menu li .link-icon:before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    position: absolute;
    top: 50%;
    border-top: 2px solid;
    border-right: 2px solid;
    transform: rotate(45deg);
    left: 0;
    margin-top: -4px;
}

.g-menu .other-menu ul.-bottom {
    margin-top: 30px;
}

.g-menu .other-menu ul.-bottom li {
    border-bottom: none;
    border-top: 1px solid #bca782;
}

.g-menu .inner-group {
    margin: 30px 0 0;
}

.g-menu .inner-group .title {
    margin: 0;
    background: #f2e8d7;
    color: #897044;
    font-size: 18px;
    font-size: 1.125rem;
    padding: 0.463em;
    line-height: 1.3;
}

.g-menu .inner-group .box {
    border: 1px solid #bca782;
    border-top: none;
    display: -ms-flexbox;
    display: flex;
    padding: 20px 0;
}

.g-menu .inner-group .box .item {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 0 14px;
}

.g-menu .inner-group .box .item:nth-child(n + 2) {
    border-left: 1px solid #bca782;
}

.g-menu .inner-group .box .item .image {
    margin: 0 auto 15px;
}

.g-menu .inner-group .box.-card .item:first-child {
    width: 30%;
}

.g-menu .inner-group .box.-card .item:last-child {
    width: 70%;
}

.g-menu .inner-group .box.-app {
/*    border: 1px solid #bca782;
    border-top: none; */
	border: none;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
}

.g-menu .inner-group .box.-app .item {
    width: 50%;
}

.g-menu .inner-group .box.-app .image {
    max-width: 80px;
}

.g-menu .sns-menu {
    background: #897044;
    margin: 0 -15px;
}

.g-menu .sns-menu li {
    padding: 0 15px;
    border-color: #a58959;
}

.g-menu .sns-menu li:last-child {
    border-bottom: none;
}

.g-menu .sns-menu .sns-button {
    display: block;
    margin-left: auto;
}

.g-menu .sns-menu a {
    display: inline-block;
    width: 44px;
    margin: 0 4px;
    border: 1px solid #fff;
    border-radius: 50%;
    text-align: center;
}

.g-menu.-js-open {
    transform: translate3d(0, 0, 0);
}

.header-menu-bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99;
}


/* -----
 * g-footer
----------------------------------------------------------------------------- */

.bottom-menu {
    display: none;
}

.g-footer {
    border-top: 1px solid #ccc;
    padding-top: 77px;
    margin-top: 120px;
}

.pagetop {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 98;
    margin: 0;
    width: 70px;
    height: 70px;
    background: #a58959;
    background-size: contain;
    border-radius: 50%;
    cursor: pointer;
    display: none;
}

.pagetop:before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: rotate(-39deg) skew(10deg);
    margin: -4px 0 0 -8.6px;
}

.g-footer .foot-top {
    margin-bottom: 80px;
}

.g-footer .foot-top:after {
    content: "";
    display: block;
    clear: both;
}

.g-footer .foot-logo {
    float: left;
    width: 206px;
    margin: 0 30px 0 0;
}

.g-footer .foot-address {
    float: left;
    font-size: 14px;
    font-size: 0.875rem;
}

.g-footer .foot-address p {
    margin: 0;
}

.g-footer .foot-address p span {
    display: inline-block;
}

.g-footer .foot-button {
    float: right;
    width: 220px;
    margin: 0;
}

.g-footer .foot-note {
    clear: both;
    padding-top: 1em;
    text-align: left;
    font-size: 12px;
    font-size: 0.75rem;
}

.g-footer .foot-bottom {
    background: #a58959;
    color: #fff;
    padding: 20px;
}

.g-footer .foot-bottom>div:after {
    content: "";
    display: block;
    clear: both;
}

.g-footer .foot-bottom ul {
    padding: 0;
    list-style: none;
    float: left;
    margin: 0;
    font-size: 12px;
    font-size: 0.75rem;
}

.g-footer .foot-bottom ul li {
    display: inline-block;
    margin-right: 2em;
}

.g-footer .foot-bottom ul li a {
    display: block;
    text-decoration: none;
    color: #fff;
}

.g-footer .foot-bottom .copyright {
    margin: 0;
    float: right;
    font-size: 12px;
    font-size: 0.75rem;
}


/* -----
 * 共通パーツ
----------------------------------------------------------------------------- */


/** button **/

.button-line {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    max-width: 260px;
    height: 55px;
    margin: auto;
    text-align: center;
    text-decoration: none;
    color: #a58959;
}

.button-line:link,
.button-line:visited,
.button-line:active {
    color: #a58959;
}

.button-line:before,
.button-line:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border: 1px solid #a58959;
    transition: transform 0.3s ease-out;
}

.button-line:before {
    transform: translate(-2px, -2px);
    z-index: 2;
}

.button-line:after {
    transform: translate(2px, 2px);
    border-color: #e7ddcb;
}

.button-line>span {
    display: block;
    position: relative;
    width: 100%;
    padding: 0 30px;
    font-size: 14px;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
}

.button-line>span:after {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    position: absolute;
    top: 50%;
    border-top: 1px solid;
    border-right: 1px solid;
    transform: rotate(45deg);
    border-color: #a58959;
    right: 24px;
    margin-top: -4px;
    transition: right 0.3s ease-out;
}

.button-line>span.link-tab:after {
    transform: none;
    border: none;
    width: 11px;
    height: 11px;
}

.button-line.-black {
    color: #222;
}

.button-line.-black:before {
    border-color: #222;
}

.button-line.-black:after {
    border-color: #d4d4d4;
}

.button-line.-black>span:after {
    border-color: #666;
}

.button-line:hover {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.button-line:hover:before,
.button-line:hover:after {
    transform: translate(0, 0);
}

.button-line:hover>span:after {
    right: 20px;
}

.button-line:hover>span.link-tab:after {
    right: 24px;
}

.button-line.-arrow-left>span:after {
    right: auto;
    left: 24px;
    margin-top: -3px;
    transform: rotate(-135deg);
    transition: left 0.3s ease-out;
}

.button-line.-arrow-left:hover>span:after {
    left: 20px;
}

.button-line.-arrow-bottom>span:after {
    margin-top: -6px;
    right: 20px;
    transform: rotate(135deg);
    transition: margin 0.3s ease-out;
}

.button-line.-arrow-bottom:hover>span:after {
    margin-top: -3px;
}

button.button-line {
    width: 100%;
    background: none;
    outline: none;
    border: none;
}


/** more button **/

.more-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #a58959;
    position: relative;
    margin: 50px auto 0;
    cursor: pointer;
    transition: background-color 0.25s;
}

.more-button:before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    border-top: 1px solid #a58959;
    border-right: 1px solid #a58959;
    transform: rotate(135deg);
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -12px 0 0 -8px;
    transition: border 0.25s;
}

.more-button:hover {
    background: #a58959;
}

.more-button:hover:before {
    border-color: #fff;
}


/** title **/

.section-title {
    margin: 0;
    text-align: center;
    font-size: 32px;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    line-height: 1.2;
}

.section-sub-title {
    margin: 0.3em 0 45px;
    text-align: center;
    color: #a58959;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.5;
}

.page-title {
    position: relative;
    margin-bottom: 20px;
}

.page-title:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 9px;
    background: #faf6ee;
    width: 100%;
    height: 30px;
    z-index: -1;
}

.page-title .section-title {
    margin-top: -0.2em;
}


/** 下線付きのtitle **/

.title-line {
    position: relative;
    margin: 0 0 40px;
    padding-bottom: 0.54em;
    border-bottom: 1px solid #ebe2d1;
    font-weight: 400;
    font-size: 24px;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    line-height: 1.39;
}

.title-line:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 1px;
    width: 50px;
    background: #a58959;
}

.title-line>span {
    display: inline-block;
    padding-top: 5px;
}

.title-line .en {
    margin-right: 1em;
    font-size: 28px;
    font-size: 1.75rem;
    line-height: 1.1;
}

.title-line .ja {
    color: #a58959;
    font-size: 14px;
    font-size: 0.875rem;
}

.title-line.-icon {
    position: relative;
    padding-left: 46px;
    letter-spacing: normal;
}

.title-line.-icon .icon {
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-60%);
}

.title-line.-icon .icon img {
    display: block;
    margin: auto;
}


/** 左線付きのtitle **/

.title-line-left {
    margin: 0 0 30px;
    padding-left: 0.8em;
    border-left: 2px solid #a58959;
    font-weight: 400;
    font-size: 20px;
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    line-height: 1.39;
    color: #a58959;
}


/** 正方形画像リンク **/

.square-image a {
    display: block;
    text-decoration: none;
    padding-top: 100%;
    position: relative;
    overflow: hidden;
}

.square-image a img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.3s linear;
}

.square-image a:hover img {
    transform: scale(1.08);
}


/** 別窓リンク **/

.link-tab {
    display: inline-block;
}

.link-tab:after {
    content: "";
    display: inline-block;
    width: 11px;
    height: 11px;
    background: url(../images/common/icon-outlink.png) no-repeat center center;
    background-size: contain;
    margin-left: 0.5em;
    vertical-align: middle;
}


/** page head button **/

.head-button-group {
    margin-top: 30px;
    text-align: right;
    font-size: 0;
}

.head-button-group>p {
    display: inline-block;
    vertical-align: top;
    margin-left: 10px;
    width: 180px;
}

.head-button-group .button-line {
    height: 48px;
}

.head-button-group .button-line>span {
    font-size: 12px;
    font-size: 0.75rem;
}


/** post style **/

.post-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.post-container.-col3>* {
    width: calc(100% / 3 - 22px);
    max-width: 304px;
    margin: 40px 34px 0 0;
}

.post-container.-col3>*:nth-child(3n) {
    margin-right: 0;
}


/** card post**/

.card-post {
    position: relative;
}

.card-post a {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.25s ease-out;
}

.card-post a:hover {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}

.card-post a:hover .thumb:before,
.card-post a:hover .thumb:after {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.card-post a:hover .thumb:after {
    transform: translateY(0);
}

.card-post a:hover .thumb img {
    transform: scale(1.08);
}

.card-post a:hover .thumb img.-bg {
    transform: none;
}

.card-post .new {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50%;
    background: #c2a97f;
    color: #fff;
    text-align: center;
    font-size: 12px;
    font-size: 0.75rem;
    z-index: 2;
}

.card-post .contents {
    padding: 15px 10px;
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1.7;
}

.card-post .contents>*:first-child {
    margin-top: 0;
}

.card-post .title {
    margin: 0.8em 0 0;
    font-weight: 700;
    font-size: 14px;
    font-size: 0.875rem;
}

.card-post .text {
    margin: 0.7em 0 0;
    font-size: 13.008px;
    font-size: 0.813rem;
}

.card-post .tag-group {
    margin: 0;
    font-size: 0;
}

.card-post .tag-group>span {
    display: inline-block;
    text-align: center;
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1;
    margin-top: 10px;
}

.card-post .tag-group>span:not(:last-child) {
    margin-right: 10px;
}

.card-post .shop {
    margin: 0.5em 0 0;
    color: #a58959;
    font-weight: bold;
}

.card-post .area {
    margin: 0.3em 0 0;
}

.card-post .store,
.card-post .loop {
    padding: 0.25em 0.4em;
    border: 1px solid #000000;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.card-post .store {
    color: #a00000;
    border-color: #a00000;
}

.card-post .loop {
    color: #00974b;
    border-color: #00974b;
}

.date .holiday {
    color: #d30000;
}

.date-state {
    display: inline-block;
    min-width: 3em;
    padding: 0.25em 0.417em;
    margin-right: 0.833em;
    line-height: 1;
    font-size: 12px;
    font-size: 0.75rem;
}

.date-state.-notice {
    background: #ededed;
}

.date-state.-open {
    background: #f5efe3;
}

.date-state.-close {
    background: #ededed;
}

/** media post**/

.media-post {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-top: 40px;
}

.media-post:first-of-type {
    margin-top: 0;
}

.media-post .inner-row {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

.media-post a {
    text-decoration: none;
    color: inherit;
}

.media-post a:hover {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.media-post a:hover .thumb:before,
.media-post a:hover .thumb:after {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.media-post a:hover .thumb:after {
    transform: translateY(0);
}

.media-post a:hover .thumb img {
    transform: scale(1.08);
}

.media-post .image {
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 320px;
    margin-right: auto;
}

.media-post .contents {
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: calc(100% - 350px);
    font-size: 14px;
    font-size: 0.875rem;
}

.thumb {
    display: block;
    position: relative;
    overflow: hidden;
    padding-top: 75%;
}

.thumb.full {
    overflow: visible;
    padding-top: 0;
}

.thumb:before,
.thumb:after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    transition: opacity 0.2s ease-out, transform 0.3s ease-out;
}

.thumb:before {
    content: "";
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.thumb:after {
    content: "MORE";
    border: 1px solid #fff;
    margin: auto;
    max-width: 70%;
    width: 118px;
    height: 32px;
    line-height: 30px;
    letter-spacing: 0.1em;
    text-align: center;
    font-family: "Lato", sans-serif;
    font-size: 12px;
    font-size: 0.75rem;
    color: #fff;
    z-index: 2;
    transform: translateY(-10px);
}

.thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: transform 0.3s linear;
}

.thumb.full img {
    position: static;
    height: auto;
}

.thumb img.-bg {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="2" /></filter></svg>#filter');
    filter: blur(2px);
}

.thumb img.main {
    z-index: 0;
}


/** banner slider **/

.banner-slider {
    background: #f5efe3;
    padding: 60px 0;
    margin-top: 120px;
}

.banner-slider .slick-slide {
    width: 500px;
}

.banner-slider .slide-item {
    vertical-align: bottom;
    padding: 0 10px;
}

.banner-slider .slide-item a {
    display: block;
}


/** slider-parts **/

.slide-set {
    /* Arrows */
}

.slide-set .slick-arrow {
    position: absolute;
    top: 50%;
    display: block;
    width: 40px;
    height: 80px;
    margin-top: -40px;
    padding: 0;
    font-size: 0;
    line-height: 0;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    cursor: pointer;
    z-index: 2;
}

.slide-set .slick-arrow:before {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    position: absolute;
    top: 50%;
    border-top: 2px solid;
    border-right: 2px solid;
    border-color: #a58959;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -9px;
}

.slide-set .slick-prev {
    left: 0;
}

.slide-set .slick-prev:before {
    transform: rotate(-135deg);
    margin-left: 0;
}

.slide-set .slick-next {
    right: 0;
}

.slide-set .slick-next:before {
    transform: rotate(45deg);
    margin-left: -20px;
}

.slide-set .slick-dots {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 0;
    margin: 10px 0 0;
    list-style: none;
    text-align: center;
    font-size: 0;
}

.slide-set .slick-dots li {
    display: inline-block;
    margin: 0 7px;
}

.slide-set .slick-dots li button {
    display: block;
    width: 12px;
    height: 12px;
    line-height: 0;
    padding: 0;
    cursor: pointer;
    color: transparent;
    outline: none;
    border: 1px solid #c2a97f;
    background: #fff;
    border-radius: 50%;
    transition: background 0.3s;
}

.slide-set .slick-dots li button:hover {
    background: #ecd7b5;
}

.slide-set .slick-dots li.slick-active button {
    background: #c2a97f;
}


/** tab **/

.tab-switch {
    padding: 0;
    list-style: none;
    margin: 0 0 10px;
    text-align: center;
    border-bottom: 1px solid #a58959;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.tab-switch li {
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    padding: 0 50px;
    font-size: 14px;
    font-size: 0.875rem;
    height: 50px;
    cursor: pointer;
    line-height: 1.16;
    transition: background 0.25s, color 0.25s;
}

.tab-switch li>span,
.tab-switch li .inner {
    display: block;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-decoration: none;
    color: inherit;
}

.tab-switch li.-js-current,
.tab-switch li.-current {
    background: #f1e9da;
    color: #a58959;
    font-weight: 700;
}

.tab-switch li:hover {
    color: #a58959;
}


/** フォーム共通パーツ **/

.form-text {
    text-align: center;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.7;
}

.form-text.-heading {
    text-align: left;
}

.form-text a {
    color: #a58959;
}

.form-text a:hover {
    text-decoration: none;
}

.form-container {
    background: #f7f7f7;
    padding: 40px 50px;
    margin: 25px auto 40px;
    /** 確認画面 **/
    /* field size */
    /** select **/
    /** radio **/
    /** checkbox **/
    /* zip */
    /* error */
}

.form-container .form-row {
    display: -ms-flexbox;
    display: flex;
    margin: 0;
}

.form-container .form-row:not(:first-child) {
    margin-top: 40px;
}

.form-container .form-row.-gap-reset,
.form-container .form-row.-dt-none {
    margin-top: 0;
}

.form-container .form-row dt {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 180px;
    padding-top: 14px;
    font-weight: 700;
}

.form-container .form-row dt.-gap-reset {
    padding-top: 0;
}

.form-container .form-row dd {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    margin: 0;
}

.form-container .form-row dd .note {
    margin: 0.5em 0 0;
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1.6;
}

.form-container.-confirm .form-row dt {
    padding-top: 0;
}

.form-container .text-field {
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
    border-radius: 0;
    border: 1px solid #dedede;
    background: #fff;
    padding: 6px 20px;
    height: 60px;
    font-size: 16px;
    font-size: 1rem;
    font-family: inherit;
    width: 100%;
    /*&:-ms-input-placeholder {
      //color: #aaa;
      color: green;
    }

    &:-moz-placeholder {
      color: yellow;
      opacity: 1;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    }*/
}

.form-container .text-field:placeholder-shown {
    color: #aaa;
}

.form-container .text-field::-webkit-input-placeholder {
    color: #aaa;
}

.form-container .text-field:focus::-webkit-input-placeholder {
    color: transparent;
}

.form-container .text-field:focus:-moz-placeholder {
    color: transparent;
}

.form-container .text-field:-moz-read-only {
    color: #aaa;
}

.form-container .text-field:read-only {
    color: #aaa;
}

.form-container textarea.text-field {
    height: 200px;
    max-width: 700px;
}

.form-container textarea.text-field.size-m {
    max-width: 340px;
}

.form-container .size-s {
    max-width: 200px;
}

.form-container .size-m {
    max-width: 250px;
}

.form-container .select-field {
    display: block;
    position: relative;
    border: 1px solid #dedede;
    background: #fff;
    font-size: 16px;
    font-size: 1rem;
}

.form-container .select-field:after {
    content: "";
    display: block;
    position: absolute;
    right: 16px;
    top: 50%;
    width: 0.5em;
    height: 0.5em;
    border-right: 1px solid #666;
    border-top: 1px solid #666;
    transform: rotate(135deg);
    margin-top: -0.5em;
    pointer-events: none;
}

.form-container .select-field select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    outline: none;
    border: none;
    width: 100%;
    height: 58px;
    padding: 6px 30px 6px 20px;
}

.form-container .select-field select::-ms-expand {
    display: none;
}

.form-container .radio-field,
.form-container .check-field {
    display: inline-block;
    margin: 0.4em 0;
    cursor: pointer;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.3;
    margin-right: 1.5em;
}

.form-container .radio-field:last-child,
.form-container .check-field:last-child {
    margin-right: 0;
}

.form-container .radio-field span,
.form-container .check-field span {
    position: relative;
    display: inline-block;
    padding-left: 30px;
}

.form-container .radio-field span:before,
.form-container .check-field span:before,
.form-container .radio-field span:after,
.form-container .check-field span:after {
    content: "";
    display: block;
    position: absolute;
    box-sizing: border-box;
}

.form-container .radio-field span:before,
.form-container .check-field span:before {
    width: 20px;
    height: 20px;
    border: 1px solid #a58959;
    background: #fff;
}

.form-container .radio-field span:after,
.form-container .check-field span:after {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    transition: opacity 0.2s ease-out;
}

.form-container .radio-field input,
.form-container .check-field input {
    display: none;
}

.form-container .radio-field input:checked+span:after,
.form-container .check-field input:checked+span:after {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.form-container .radio-field span:before,
.form-container .radio-field span:after {
    border-radius: 50%;
}

.form-container .radio-field span:before {
    top: 1px;
    left: 0;
}

.form-container .radio-field span:after {
    width: 12px;
    height: 12px;
    top: 5px;
    left: 4px;
    background: #a58959;
}

.form-container .check-field span:before {
    top: 1px;
    left: 0;
    border-radius: 2px;
}

.form-container .check-field span:after {
    width: 12px;
    height: 7px;
    top: 6px;
    left: 4px;
    border-bottom: 2px solid #a58959;
    border-left: 2px solid #a58959;
    transform: rotate(-45deg);
}

.form-container .zip-search {
    display: inline-block;
    vertical-align: middle;
    background: #a58959;
    color: #fff;
    border-radius: 15px;
    padding: 0.6em 1.6em;
    margin-left: 20px;
    line-height: 1;
    font-size: 14px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: opacity 0.3s;
}

.form-container .zip-search:hover {
    opacity: 0.7;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
}

.form-container .required {
    display: inline-block;
    vertical-align: baseline;
    padding: 0.346em 0.923em;
    margin-left: 1em;
    background: #dd0000;
    color: #fff;
    line-height: 1;
    font-size: 13.008px;
    font-size: 0.813rem;
}

.form-container .error-text {
    margin: 0;
    color: #dd0000;
}

.submit-button {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 260px;
    height: 55px;
    margin: 40px auto;
    padding: 0;
    outline: 0;
    border: 0;
    background: none;
    color: #fff;
    text-align: center;
}

.submit-button:before,
.submit-button:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    transition: transform 0.3s ease-out;
}

.submit-button:before {
    background: #a58959;
    transform: translate(-2px, -2px);
    z-index: 0;
}

.submit-button:after {
    background: #e7ddcb;
    transform: translate(2px, 2px);
    z-index: -1;
}

.submit-button>span {
    display: block;
    width: 100%;
    position: relative;
    z-index: 2;
    padding: 0 30px;
    font-size: 14px;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
}

.submit-button>span:after {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    position: absolute;
    top: 50%;
    border-top: 1px solid;
    border-right: 1px solid;
    transform: rotate(45deg);
    border-color: #fff;
    right: 24px;
    margin-top: -4px;
    transition: right 0.3s ease-out;
}

.submit-button:hover:before,
.submit-button:hover:after {
    transform: translate(0, 0);
}

.submit-button:hover>span:after {
    right: 20px;
}

.submit-button.-return:before {
    background: #666;
}

.submit-button.-return:after {
    background: #d6d6d6;
}

.submit-button.-return>span:after {
    transform: rotate(-135deg);
    transition: left 0.3s ease-out;
    right: auto;
    left: 24px;
}

.submit-button.-return:hover>span:after {
    left: 20px;
}

.button-group {
    display: -ms-flexbox;
    display: flex;
    max-width: 570px;
    margin: 36px auto;
}

.button-group .submit-button {
    margin: 0 auto;
}


/** フォームエラー **/

.form-error {
    background: #fbf1f1;
    padding: 1.044em 1em;
    margin: 25px auto 30px;
    text-align: center;
    color: #dd0000;
    font-size: 18px;
    font-size: 1.125rem;
}


/** 完了ページ **/

.thanks-text {
    margin: 60px 0 0;
    text-align: center;
}

.thanks-text .form-text {
    margin-top: 4.8em;
}

.thanks-text .return-button {
    margin: 30px 0 0;
}


/** 共通 **/

.sp_only {
    display: none;
}


/* -----
 * responsive
----------------------------------------------------------------------------- */

@media screen and (min-width: 768px) {
    /* PC */
    /* -----
   * link setting
  ----------------------------------------------------------------------------- */
    a {
        transition: opacity 0.3s linear 0s;
    }
    a:hover {
        opacity: 0.6;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
    }
    .g-header {
        position: relative;
        padding-bottom: 60px;
    }
    .header-bottom-menu {
        position: absolute;
        width: 100%;
        bottom: 0;
        z-index: 96;
        transition: all 0.3s;
    }
    .header-bottom-menu.-js-fix {
        position: fixed;
        top: 72px;
        bottom: auto;
    }
    .header-bottom-menu ul li a {
        height: 100%;
        padding: 12px 0;
    }
    .header-bottom-menu ul li.serch a,
    .header-bottom-menu ul li.event a {
        padding: 19px 0;
    }
    .header-bottom-menu ul li.sdgs a {
        padding: 16px 0;
        position: relative;
    }
    .header-bottom-menu ul li .text {
        text-align: left;
        line-height: 1.4;
    }
    .header-bottom-menu ul li p.sdgs-text {
        padding-top: 2px;
    }
    .header-bottom-menu ul li.sdgs .icon {
        position: relative;
        top: 1px;
    }
    /** SP限定 **/
    .sp_only {
        display: none;
    }
}

@media screen and (min-width: 768px) and (max-width: 943px) {
    /* tablet */
}

@media screen and (max-width: 767px) {
    /* smart phone */
    html {
        font-size: 14px;
    }
    /* -----
   * サイト内の共通class
　 ----------------------------------------------------------------------------- */
    .adjust-width {
        width: 100%;
        padding: 0 15px;
    }
    /* -----
   * g-container
  ----------------------------------------------------------------------------- */
    .g-container {
        min-width: 310px;
        padding-top: 100px;
    }
    .g-main {
        padding-top: 60px;
    }
    /* -----
   * g-header
  ----------------------------------------------------------------------------- */
    .header-main {
        padding: 10px 10px 0;
        height: 100px;
        min-width: 310px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        border-bottom: none;
    }
    .header-main .header-logo {
        width: 150px;
        max-width: 45%;
        margin-right: auto;
    }
    .language-switch span {
        padding: 0 0.9em;
        font-size: 0.78571428571429rem;
        letter-spacing: 0.075em;
    }
    .language-switch span:after {
        width: 5px;
        height: 5px;
        margin-top: -4px;
    }
    .language-switch .list {
        left: 0;
        font-size: 0.688em;
        width: 84px;
    }
    .header-login {
        width: 36px;
        margin-left: 15px;
    }
    .header-login a {
        padding: 15px 0 0;
        font-size: 10px;
    }
    .header-login a:before {
        left: 50%;
        top: 0;
        margin: 0 0 0 -8px;
    }
    .header-login a>span {
        display: block;
        transform: scale(0.9) translateX(-2px);
        white-space: nowrap;
    }
    .menu-toggle {
        margin-left: 15px;
    }
    .header-shop-link {
        -ms-flex-order: 4;
        order: 4;
        width: calc(100% + 30px);
        margin: auto -15px 0;
    }
    .header-shop-link>p {
        width: 50%;
    }
    .header-shop-link>p:not(:first-child) {
        margin-left: 0;
    }
    .header-shop-link>p a {
        border-radius: 0;
        background-color: #fff;
    }
    .header-info-switch {
        text-align: center;
        line-height: 50px;
        color: #897044;
        cursor: pointer;
        border-bottom: 1px solid #dedede;
    }
    .header-info-switch span {
        display: inline-block;
        position: relative;
        padding-left: 2.1em;
    }
    .header-info-switch span:before {
        content: "";
        background: url(../images/common/header-business-hours.png) no-repeat center center;
        background-size: contain;
        height: 1.8em;
        width: 1.571em;
        position: absolute;
        left: 0;
        top: 50%;
        margin-top: -0.9em;
    }
    .header-info {
        padding: 15px 0;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        z-index: 99;
        background: #fff;
        text-align: center;
        font-size: 1.0714285714286rem;
        color: #a58959;
        transform: translate3d(0, -100%, 0);
        transition: transform 0.4s;
    }
    .header-info .header-info-inner {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .header-info .menu-close {
        display: block;
        margin: 0 0 0 auto;
    }
    .header-info .menu-close i:before,
    .header-info .menu-close i:after {
        background: #a58959;
    }
    .header-info .heading {
        margin: 0 0 30px;
        width: 100%;
        height: auto;
        line-height: 1;
        border: none;
        font-size: 1.2857142857143rem;
    }
    .header-info .shop-info-group {
        width: 100%;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        height: auto;
    }
    .header-info .shop-info {
        width: 100%;
        padding: 0;
        margin-bottom: 26px;
    }
    .header-info .shop-info:nth-child(2) {
        width: 100%;
        border-left: none;
    }
    .header-info .shop-info .title {
        display: block;
        background: #f1e9da;
        padding: 0.56em;
        margin-bottom: 0.8em;
        font-size: 1.071rem;
    }
    .header-info .shop-info .main {
        font-size: 1.429rem;
        font-weight: normal;
    }
    .header-info .shop-info .sub {
        margin-top: 1em;
        font-size: 1rem;
    }
    .header-info .shop-info .sub span {
        display: block;
        margin-right: 0;
    }
    .header-info .shop-info .caution {
        margin-top: 1em;
        padding: 0 1em;
        font-size: 1rem;
    }
    .header-info .shop-info-link {
        width: 100%;
        margin: 10px 0;
        border: none;
    }
    .header-info .shop-info-link a {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        max-width: 200px;
        height: 48px;
        margin: auto;
        font-size: 1rem;
        letter-spacing: 0.1em;
        color: #a58959;
    }
    .header-info .shop-info-link a:before,
    .header-info .shop-info-link a:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        border: 1px solid #a58959;
        transition: transform 0.3s ease-out;
    }
    .header-info .shop-info-link a:before {
        transform: translate(-2px, -2px);
        z-index: 2;
    }
    .header-info .shop-info-link a:after {
        transform: translate(2px, 2px);
        border-color: #e7ddcb;
    }
    .header-info .shop-info-link a>span {
        width: 100%;
    }
    .header-info .shop-info-link a>span:after {
        border-color: #a58959;
        right: 20px;
        transition: right 0.3s ease-out;
    }
    .header-info .shop-info-link a:hover>span:after {
        right: 15px;
    }
    .header-info .shop-info-link a ._pc-only {
        display: none;
    }
    .header-info.-js-open {
        transform: translate3d(0, 0, 0);
    }
    .header-bottom-menu {
        position: fixed;
        bottom: -65px;
        left: 0;
        z-index: 98;
        width: 100%;
        background: #faf6ee;
        box-shadow: 0 -1px 3px rgba(196, 184, 163, 0.6);
        transition: bottom 0.3s;
    }
    .header-bottom-menu.-js-show {
        bottom: 0;
    }
    .header-bottom-menu ul li {
        width: calc(100% / 6);
    }
    .header-bottom-menu ul li:not(._pc-only):before {
        content: none;
    }
    .header-bottom-menu ul li._pc-only {
        display: none;
    }
    .header-bottom-menu ul li a {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-pack: center;
        justify-content: center;
        height: 60px;
        padding: 0;
        color: #a58959;
    }
    .header-bottom-menu ul li a>* {
        display: block;
        font-size: 0.714rem;
        line-height: 1.11;
    }
    .header-bottom-menu ul li .icon {
        display: block;
        width: 35px;
        height: auto;
        margin: 0 auto 0.1em;
    }
    .header-bottom-menu ul li .text {
        display: table;
        width: 100%;
        height: 2.2em;
        margin: 0;
        color: #a58959;
    }
    .header-bottom-menu ul li .text>span {
        display: table-cell;
        vertical-align: middle;
        transform: scale(0.9);
        transform-origin: center center;
    }
    .header-bottom-menu ul li .text>span span {
        display: block;
    }
    .g-menu {
        padding: 15px 0 0;
    }
    .g-menu .menu-close {
        margin: 0 15px 15px 0;
    }
    .g-menu .heading {
        font-size: 1.125rem;
    }
    .g-menu .shop-menu ul li {
        font-size: 0.786rem;
    }
    .g-menu .shop-menu ul li a .icon {
        height: 26px;
    }
    .g-menu .shop-menu ul.-top {
        padding-bottom: 0.8em;
    }
    .g-menu .shop-menu ul.-top li a {
        font-size: 0.857rem;
    }
    .g-menu .shop-menu ul.-bottom a {
        font-size: 0.714rem;
    }
    .g-menu .other-menu {
        border-top: 5px solid #bca782;
        padding: 0 15px;
    }
    .g-menu .other-menu li>* {
        height: 57px;
    }
    .g-menu .other-menu ul.-bottom {
        margin-top: 25px;
    }
    .g-menu .inner-group {
        margin-top: 25px;
    }
    .g-menu .inner-group .title {
        font-size: 1.125rem;
    }
    .g-menu .inner-group .box {
        padding: 13px 0;
    }
    .g-menu .inner-group .box .item {
        padding: 8px;
    }
    .g-menu .inner-group .box .item .image {
        margin-bottom: 10px;
    }
    .g-menu .inner-group .box.-app .image {
        max-width: 65px;
    }
    .g-menu .sns-menu li {
        font-size: 1.143rem;
    }
    .g-menu .sns-menu a {
        margin: 0 4px;
        width: 35px;
    }
    .g-menu .shop-menu ul li.sdgs_ham a {
        padding: 8% 0;
    }
    /* -----
   * g-footer
  ----------------------------------------------------------------------------- */
    .g-footer {
        padding-top: 30px;
        margin-top: 70px;
        text-align: center;
    }
    .pagetop {
        right: 15px;
        bottom: 80px;
        width: 45px;
        height: 45px;
    }
    .pagetop:before {
        width: 10px;
        height: 10px;
        margin: -4px 0 0 -5.6px;
    }
    .g-footer .foot-top {
        margin-bottom: 30px;
    }
    .g-footer .foot-logo {
        float: none;
        width: 170px;
        margin: 0 auto 10px;
    }
    .g-footer .foot-address {
        float: none;
        font-size: 0.857rem;
    }
    .g-footer .foot-button {
        float: none;
        width: 200px;
        margin: 26px auto 0;
    }
    .g-footer .foot-bottom {
        padding: 20px 0 80px;
    }
    .g-footer .foot-bottom .adjust-width {
        padding: 0;
    }
    .g-footer .foot-bottom ul {
        float: none;
        max-width: 400px;
        margin: auto;
        font-size: 0;
    }
    .g-footer .foot-bottom ul li {
        margin-right: 0;
        margin-bottom: 0.3em;
        padding: 0 0.7em;
        font-size: 0.857rem;
        position: relative;
    }
    .g-footer .foot-bottom ul li:not(:first-child):before {
        content: "";
        display: inline-block;
        width: 1px;
        height: 1em;
        background: #fff;
        position: absolute;
        left: 0;
        top: 0.4em;
    }
    /* ▼▼ 210729 謎の記述フッターに干渉するためコメントアウト start▼▼ */
    /* .g-footer .foot-bottom ul li:nth-child(3):before {
        content: "";
        width: 1px;
        height: 100%;
        background: #bca782;
        position: absolute;
        right: -3px;
        top: 0;
        bottom: 0;
        margin: auto;
    } */
    /* ▲▲ 210729 謎の記述フッターに干渉するためコメントアウト end▲▲ */
    .g-footer .foot-bottom ul li:nth-child(4):before {
        content: none;
    }
    .g-footer .foot-bottom .copyright {
        margin: 16px 0 0;
        float: none;
        font-size: 0.75rem;
    }
    /* -----
   * 共通パーツ
  ----------------------------------------------------------------------------- */
    /** button **/
    .button-line {
        max-width: 220px;
        height: 48px;
    }
    .button-line>span {
        padding: 0 30px;
        font-size: 1rem;
    }
    .button-line>span:after {
        right: 24px;
        margin-top: -4px;
    }
    .button-line>span.link-tab:after {
        width: 9px;
        height: 9px;
    }
    .button-line:hover>span:after {
        right: 20px;
    }
    /** more button **/
    .more-button {
        width: 45px;
        height: 45px;
        margin-top: 30px;
    }
    .more-button:before {
        width: 12px;
        height: 12px;
        margin: -9px 0 0 -6px;
    }
    /** title **/
    .section-title {
        font-size: 1.786rem;
    }
    .section-sub-title {
        margin-bottom: 20px;
        font-size: 0.929rem;
    }
    .page-title:before {
        bottom: 8px;
    }
    /** 下線付きのtitle **/
    .title-line {
        margin-bottom: 20px;
        padding-bottom: 0.6em;
        font-size: 1.286rem;
    }
    .title-line:before {
        width: 40px;
    }
    .title-line .en {
        margin-right: 0.8em;
        font-size: 1.571rem;
    }
    .title-line .ja {
        font-size: 0.929rem;
    }
    .title-line.-icon {
        padding-left: 42px;
    }
    .title-line.-icon .icon {
        width: 30px;
    }
    .title-line.-icon .icon img {
        height: auto;
    }
    .title-line-left {
        margin-bottom: 15px;
        font-size: 1.214rem;
    }
    /** 別窓リンク **/
    .link-tab:after {
        width: 9px;
        height: 9px;
    }
    /** page head button **/
    .head-button-group {
        text-align: center;
    }
    .head-button-group>p {
        display: inline-block;
        margin-left: 12px;
        margin-top: 5px;
        width: calc(50% - 6px);
    }
    .head-button-group>p:nth-child(odd) {
        margin-left: 0;
    }
    .head-button-group>p:nth-child(n+3) {
        margin-top: 12px;
    }
    .head-button-group .button-line {
        height: 42px;
    }
    .head-button-group .button-line>span {
        font-size: 0.786rem;
    }
    /** post style **/
    .post-container.-col3>* {
        width: 48.5%;
        max-width: 100%;
        margin: 40px auto 0 0;
    }
    .post-container.-col3>*:nth-child(-n+2) {
        margin-top: 30px;
    }
    .post-container.-col3>*:nth-child(3n) {
        margin-right: auto;
    }
    .post-container.-col3>*:nth-child(2n) {
        margin-right: 0;
    }
    /** card post**/
    .card-post .new {
        top: -10px;
        left: -5px;
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 10px;
    }
    .card-post .contents {
        padding: 5px;
        font-size: 0.857rem;
        line-height: 1.43;
    }
    .card-post .title {
        margin-top: 0.5em;
        font-size: 1rem;
    }
    .card-post .text {
        display: none;
    }
    .card-post .tag-group>span:not(:last-child) {
        margin-right: 5px;
    }
    .card-post .shop {
        margin-top: 0.4em;
    }
    .date-state {
        padding: 0.334em 0.38em;
        font-size: 0.857rem;
    }
    /** media post**/
    .media-post {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .media-post .inner-row {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .media-post .image {
        max-width: 60%;
        margin: 0 auto 12px;
    }
    .media-post .contents {
        width: 100%;
        font-size: 0.857rem;
    }
    /** banner slider **/
    .banner-slider {
        padding: 40px 0;
        margin-top: 70px;
    }
    .banner-slider .slide-item {
        padding: 0 5px;
    }
    /** slider-parts **/
    .slide-set {
        /* Arrows */
    }
    .slide-set .slick-arrow {
        top: 0;
        width: 40px;
        height: 100%;
        margin-top: 0;
    }
    .slide-set .slick-prev:before {
        margin-left: -6px;
    }
    .slide-set .slick-next:before {
        margin-left: -16px;
    }
    .slide-set .slick-dots {
        margin: 10px 0 0;
    }
    .slide-set .slick-dots li {
        margin: 0 5px;
    }
    .slide-set .slick-dots li button {
        width: 10px;
        height: 10px;
    }
    /** tab button **/
    .tab-switch {
        margin-bottom: 0;
    }
    .tab-switch li {
        width: 25%;
        padding: 0 0.3em;
        font-size: 0.857rem;
        height: 40px;
    }
    /** フォーム共通パーツ **/
    .form-container {
        padding: 25px 15px;
        margin: 20px auto 30px;
        /** 確認画面 **/
        /* field size */
        /** select **/
        /** radio **/
        /** checkbox **/
        /* zip */
    }
    .form-container .form-row {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .form-container .form-row:not(:first-child) {
        margin-top: 22px;
    }
    .form-container .form-row.-gap-reset {
        margin-top: 0;
    }
    .form-container .form-row.-dt-none {
        margin-top: 0;
    }
    .form-container .form-row.-dt-none dt {
        font-size: 0;
        margin-bottom: 0;
    }
    .form-container .form-row dt {
        width: 100%;
        padding-top: 0;
        margin-bottom: 5px;
    }
    .form-container .form-row dd {
        width: 100%;
    }
    .form-container .form-row dd .note {
        font-size: 0.786rem;
    }
    .form-container.-confirm .form-row dt {
        margin-bottom: 5px;
    }
    .form-container .text-field {
        height: 50px;
        padding: 5px 1em;
        margin: 5px 0 0;
        font-size: 16px;
    }
    .form-container .size-m {
        width: 66.7%;
    }
    .form-container textarea {
        max-width: 100%;
    }
    .form-container textarea.text-field.size-m {
        width: 100%;
    }
    .form-container .radio-field,
    .form-container .check-field {
        font-size: 1rem;
    }
    .form-container .radio-field span,
    .form-container .check-field span {
        padding-left: 20px;
    }
    .form-container .radio-field span:before,
    .form-container .check-field span:before {
        width: 15px;
        height: 15px;
    }
    .form-container .select-field {
        font-size: 16px;
        margin: 5px 0 0;
    }
    .form-container .select-field:after {
        right: 16px;
        width: 0.5em;
        height: 0.5em;
        margin-top: -0.5em;
    }
    .form-container .select-field select {
        height: 48px;
        padding: 5px 30px 5px 0.8em;
    }
    .form-container .select-field.size-m,
    .form-container .select-field.size-s {
        max-width: 100%;
        width: 100%;
    }
    .form-container .radio-field span:before {
        top: 2px;
    }
    .form-container .radio-field span:after {
        width: 9px;
        height: 9px;
        left: 3px;
    }
    .form-container .check-field span:before {
        top: 3px;
    }
    .form-container .check-field span:after {
        width: 9px;
        height: 6px;
        left: 3px;
    }
    .form-container .zip-search {
        width: 28.58%;
        padding: 0.6em 0;
        margin: 5px 0 0 4%;
        text-align: center;
        font-size: 0.929rem;
    }
    .form-container .required {
        padding: 0.227em 0.818em;
        font-size: 0.786rem;
    }
    .submit-button {
        max-width: 220px;
        height: 48px;
        margin: 30px auto;
    }
    .submit-button>span {
        padding: 0 24px;
        font-size: 1rem;
    }
    .submit-button>span:after {
        right: 18px;
        margin-top: -4px;
    }
    .submit-button:hover>span:after {
        right: 15px;
    }
    .button-group {
        margin: 28px auto;
    }
    .button-group .submit-button {
        width: 48%;
    }
    .button-group .submit-button:first-child {
        margin-left: 0;
    }
    .button-group .submit-button:last-child {
        margin-right: 0;
    }
    /** フォームエラー **/
    .form-error {
        padding: 1.4em 1em;
        margin: 20px auto;
        font-size: 1rem;
    }
    /** 完了ページ **/
    .thanks-text {
        margin-top: 50px;
    }
    .thanks-text .form-text {
        margin-top: 2.5em;
        line-height: 1.5;
    }
    .thumb.full {
        padding-top: 0;
    }
    .thumb.full img {
        position: static;
    }
}

@media screen and (max-width: 350px) {
    /* smart phone */
    html {
        font-size: 3.75vw;
    }
    .menu-toggle {
        margin-left: 8px;
    }
    .header-login {
        margin-left: 8px;
    }
}

@media screen and (max-width: 413px) {
    .header-main .header-logo {
        width: 110px;
    }
}