*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

body{
    color: #333;
}

a {
    color: #dab788;
    text-decoration: none !important;
    outline: none !important;
}

th:first-child,
td:first-child{
	border-left: solid 1px #aaa !important;
}
th,
td{
    padding: 10px !important;
	border-top: solid 1px #aaa !important;
	border-right: solid 1px #aaa !important;
}
tr:last-child{
	border-bottom: solid 1px #aaa !important;
}


/*--------------------------------------------------------
共通
--------------------------------------------------------*/
.mini{
    font-size: .85em;
}
.large{
    font-size: 1.35em;
}
.bold{
    font-weight: bold;
}
.al-center{
    text-align: center;
}
.al-right{
    text-align: right;
}
.al-left{
    text-align: left;
}

.m-l5{
    margin-left: 5px;
}
.m-l10{
    margin-left: 10px;
}
.m-l15{
    margin-left: 15px;
}

.m-t15{
    margin-top: 15px;
}
.m-t25{
    margin-top: 25px;
}
.m-t35{
    margin-top: 35px;
}

.green{
	color: #5a9900;
}
.blue{
	color: #1a9690;
}
.gray{
	color: #aaa;
}
.red{
    color: #da3c10;
}

/*マーカー表示（背景に着色）*/
.marker-yellow{ background: linear-gradient(transparent 50%, #ff6 50%); }/*黄*/
.marker-lime{ background: linear-gradient(transparent 50%, #bfffbf 50%); }/*黄緑*/
.marker-pink{ background: linear-gradient(transparent 50%, #ffccff 50%); }/*ピンク*/

h1.entry-title{
    margin: 16px 0 24px;
    font-size: 1.65em;
    font-weight: bold;
}

.hentry{
    margin: 0 0 1em !important;
}


/*--------------------------------------------------------
メインメニュー
--------------------------------------------------------*/
.site-header{
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 2;
    position: fixed;
    top: 0;
    left: 0;
}

.site-header .col-full{
    display: flex;
    align-items: center;
    padding: 0;
}
.site-branding{
    margin: 0 !important;
    font-size: .9em;
}
.site-title{
    margin-right: auto;
}
.nav-menu{
    margin-left: auto !important;
    text-align: right;
}
.nav-menu > li.menu-item{
    position: relative;
}
.nav-menu > li.menu-item > a {
    display: block;
    padding: 5px 0 !important;
    width: 105px;
    height: 70px;
    font-size: .8em;
    position: relative;
    display: flex;
	justify-content: center;
    align-items: end;
}
.nav-menu > li.menu-item > a::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    background-size: cover;
    background-position: 50% 50%;
    display: block !important;
}
.nav-menu > li.menu-item:nth-child(1) > a::before {
    background-image: url(../img/image.png);
    width: 36px;
    height: 36px;
}
.nav-menu > li.menu-item:nth-child(2) > a::before {
    background-image: url(../img/shopping_cart.png);
    top: 6px;
    width: 35px;
    height: 34px;
}
.nav-menu > li.menu-item:nth-child(3) > a::before {
    background-image: url(../img/person.png);
    top: 2px;
    width: 38px;
    height: 40px;
}
.nav-menu > li.menu-item:nth-child(4) > a::before {
    background-image: url(../img/help.png);
    width: 34px;
    height: 34px;
}
.nav-menu > li.menu-item:nth-child(3) > a::after,
.nav-menu > li.menu-item:nth-child(4) > a::after {
    content: '';
    position: absolute;
    bottom: 15px;
    right: 0;
    width: 10px;
    height: 10px;
    display: block !important;
}

.nav-menu .menu-item-parent::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 50%;
    transform: translateX(-25%);
    width: 0%;
    border-bottom: solid 3px #555;
    transition: .3s;
}
.nav-menu .menu-item-parent:hover::after {
    left: 0;
    transform: translateX(0);
    width: 100%;
}

.nav-menu .sub-menu{
    position: absolute;
    bottom: 0;
    transform: translateX(-25%);
}
.nav-menu .sub-menu .menu-item{
    background: #efefef;
    min-width: 200px;
}
.nav-menu .sub-menu .menu-item a{
    width: 100%;
    font-size: .85em;
    padding: 15px;
    transition: .3s;
    text-align: center;
}
.nav-menu .sub-menu .menu-item a:hover {
    color: #efefef;
    background: #555;
}


/*--------------------------------------------------------
モバイルメニュー
--------------------------------------------------------*/
.mobile-menu,
.mb-menu,
.menu-btn{
    display: none;
}

.menu-btn-area{
    margin-left: auto;
    margin-right: 0;
}
.menu-btn{
	position: relative;
    width: 40px;
    height: 41px;
    cursor: pointer;
    z-index: 3;
	-webkit-transition-duration: .5s;
	transition-duration: .5s;
}
.bar{
    position: absolute;
    top: 10px;
    right: 6px;
    display: block;
    width: 28px;
    height: 2px;
    background: #333;
    border-radius: 5px;
    -webkit-transition: all .5s;
    transition: all .5s;
    -webkit-transform-origin: left top;
    transform-origin: left top;
}
.bar.middle{
    top: 20px;
    opacity: 1;
}
.bar.bottom{
    top: 30px;
}

/* 操作時 */
.mb-menu:checked ~ .menu-btn .bar.top {
    top: 10px;
    right: -1px;
    width: 34px;
    -webkit-transform: rotate(36deg);
    transform: rotate(36deg);
}
.mb-menu:checked ~ .menu-btn .bar.middle {
    opacity: 0;
}
.mb-menu:checked ~ .menu-btn .bar.bottom {
    top: 30px;
    right: -1px;
    width: 34px;
    -webkit-transform: rotate(-36deg);
    transform: rotate(-36deg);
}
/* メニューの背景*/
.menu-overlay{
	position: fixed;
	top: 0;
	left: 0;
	content: "";
	width: 100vw;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: .5s;
    transition: .5s;
}
.menu-overlay.active{
    visibility: visible;
    opacity: 1;
}

/* メニュー */
.mobile-menu{
    height: auto;
    max-height: 0;
    overflow: hidden;
    background: #efefef;
    transition: .3s;
}
.mobile-menu.active {
    max-height: 700px;
}
.mobile-menu ul{
    margin: 0;
}
.mobile-menu ul > li{
    list-style: none;
    width: 100%;
    margin: 0;
    padding: 0;
    border-bottom: solid 1px #ddd;
}
.mobile-menu ul > li > a{
    display: block;
    width: 100%;
    padding: 10px 25px;
    color: #555;
}
.mobile-menu ul > li > a:hover {
    color: #efefef;
    background: #555;
}
.mobile-menu ul > li > ul > li > a{
    padding: 10px 25px 10px 45px;
}

.mobile-menu > ul > li > ul > li:first-child{
    border-top: solid 1px #ddd;
}
.mobile-menu > ul > li:last-child,
.mobile-menu .sub-menu li:last-child {
    border-bottom: none;
}
.mobile-menu ul li:last-child{
    border-bottom: solid 1px #ddd;
}

@media only screen and (max-width: 930px){
    .col-full{
        padding: 0;
    }
    .site-title {
        padding: 10px 0;
    }
    .main-navigation,
    .site-description{
        display: none !important;
    }
    .menu-btn,
    .mobile-menu{
        display: block;
    }
}


/*--------------------------------------------------------
フッターメニュー
--------------------------------------------------------*/
.site-footer{
    padding: 35px 0 15px;
}
.footer-menu{
    display: flex;
	justify-content: right;
    align-items: center;
    margin: 0;
}
.footer-menu > li.menu-item{
    list-style: none;
    margin-bottom: 15px;
}
.footer-menu > li.menu-item:not(:last-child){
    margin-right: 30px;
}
.footer-menu > li.menu-item.instagram a {
    color: transparent;
    position: relative;
}
.footer-menu > li.menu-item.instagram a::before {
    position: absolute;
    content: '';
    top: -25%;
    left: 50%;
    transform:  translateX(-50%) translateY(0);
    width: 35px;
    height: 35px;
    background-size: cover;
}
.footer-menu > li.menu-item.instagram a::before {
    background-image: url(../img/Instagram.png);
    filter: brightness(0) invert(1);
}

@media only screen and (max-width: 930px){
    .footer-menu{
		flex-flow: column;
    }
    .footer-menu > li.menu-item:not(:last-child){
        margin-right: 0;
    }
    .footer-menu > li.menu-item.instagram a {
        display: inline;
    }
    .footer-menu > li.menu-item.instagram a::before {
        top: -15%;
        left: 50%;
	    width: 25px;
	    height: 25px;
    }
}


/*--------------------------------------------------------
コンテンツ
--------------------------------------------------------*/
/*ヘッダーに対する高さ調整分*/
#content{
    margin-top: 70px;
    min-height: 78vh;
	min-height: 78dvh;
}
@media only screen and (max-width: 930px){
    #content{
        margin-top: 55px;
    }
}

.box-normal{
    margin: 20px 0 10px;
    padding: 7px 13px;
    font-size: 1.1em;
    border: 1px solid #333;
    line-height: 1.4;
}
.box-normal p{
    margin: 0;
    font-weight: bold;
}
.box-brown{
    width: fit-content;
    padding: 15px 20px;
    color: #fff !important;
    background: #402802;
    font-weight: bold;
    font-size: 1.1em;
    border-radius: 15px;
}

.red{
    color: #F26060;
}
.blue{
    color: #2678BA;
}
.ten{
    -webkit-text-emphasis: dot;
    text-emphasis: dot;
}


/*--------------------------------------------------------
フォーム
--------------------------------------------------------*/
/* ユーザーフォーム共通スタイル */
.user-form {
    max-width: calc(500px - 2em);
    margin: 0 auto;
}

.user-form p {
    margin-bottom: 15px;
    position: relative;
}

/* フォーム入力フィールド */
.user-form input[type=text],
.user-form input[type=date],
.user-form input[type=email],
.user-form input[type=password],
.user-form select {
    width: 100%;
    padding: 8px 10px;
    font-size: 16px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: none;
    outline: none;
    transition: .3s;
}

.user-form input::placeholder {
    color: #aaa;
}

.user-form select {
    padding: 10px;
    color: #333;
}

.user-form input[type=text]:focus, 
.user-form input[type=date]:focus,
.user-form input[type=email]:focus,
.user-form input[type=password]:focus,
.user-form select:focus {
    background: #fff;
    box-shadow: 0 0 8px rgba(0, 191, 255, .3);
}

.user-form .double{
    display: flex;
	justify-content: space-between;
    align-items: start;
}

.user-form .half{
    width: 49%;
}

.password.icon-eye,
.password.icon-eye-close{
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 30px;
    color: #aaa;
    border: none;
    background: transparent;
    display: flex;
	justify-content: center;
    align-items: center;
}
.password.icon-eye:focus,
.password.icon-eye-close:active,
.password.icon-eye:focus,
.password.icon-eye-close:focus{
	outline: 0;
}

/* ボタンスタイル */
.user-form button[type="submit"] {
    width: 100%;
    margin: 25px 0;
    padding: 13px;
    font-size: 16px;
    color: white;
    background: #333;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: .3s;
}

.user-form button[type="submit"]:hover {
    background: #555;
}
.user-form button[type="submit"]:focus {
    outline: none;
}

/* チェックボックス */
input[type=checkbox] {
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    position: relative;
    top: 4px;
    left: -5px;
    width: 19px;
    height: 19px;
    border: 1px solid #aaa;
    border-radius: 5px;
    margin-left: 5px;
    cursor: pointer;
}

input[type=checkbox]:checked {
    background: #ddc49f;
    border: 1px solid #ddc49f;
}

input[type=checkbox]:checked:after {
    position: absolute;
    content: "";
    top: 0;
    left: 4px;
    width: 9px;
    height: 15px;
    -webkit-transform: rotate(40deg);
    transform: rotate(40deg);
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
}

/* ラジオボタン */
.radio-parts{
    margin-right: 15px;
}
input[type=radio] {
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    position: relative;
    top: 3px;
    left: -3px;
    width: 18px;
    height: 18px;
    border: 1px solid #aaa;
    border-radius: 50%;
    margin-left: 5px;
    cursor: pointer;
}

input[type=radio]:checked {
    background: #ddc49f;
    border: 1px solid #ddc49f;
}

input[type=radio]:checked:after{
    position: absolute;
    content: "";
    top: 0;
    left: 4px;
    width: 7px;
    height: 13px;
    -webkit-transform: rotate(40deg);
    transform: rotate(40deg);
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
}

/* メッセージ */
.message{
    padding: 13px;
    font-size: .85em;
    border-radius: 5px;
}
.error_message{
    color: #e74c3c;
    background: #fcf0ef;
}
.success_message{
    color: #0d7d3c;
    background: #e9fbf0;
}
.info_message{
    color: #024ea5;
    background: #e9f3fb;
}
.required {
    margin-left: 3px;
    color: #e74c3c;
}


/*--------------------------------------------------------
トップページお知らせ
--------------------------------------------------------*/
.notice {
    position: fixed;
    bottom: 0;
    left: 0;
    max-width: 350px;
    padding: 20px 25px;
    font-size: .9em;
    background: #fffff6;
    border-radius: 5px;
    box-shadow: 7px 15px 35px rgba(100, 100, 100, .3),
        -7px 15px 35px rgba(100, 100, 100, .3);
    opacity: 0;
    z-index: -1;
}
.notice.active {
    opacity: 1;
    z-index: 2;
}
.notice p {
    margin-bottom: 10px;
}

.notice-check{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notice .notice-button {
	padding: 7px 20px;
    font-size: 1em;
    color: #fff;
    background: #ddc49f;
    border-radius: 5px;
    cursor: pointer;
}