@charset "utf-8";
/* CSS Document */

/*==================================
	colors
==================================*/
:root {
  --text-color: #3f3f3f;
  --main-color: #00439a;
  --dark-color: #003060;
  --light-color: #e2ecba;
  --accent-color: #499475;
  --background-color: #f9f9f9;
  --logo-color: #00439a;
  --link-color: blue;
  --visited-color: red;
  --page-top-color: #00439a;

/*
  --color-honten: #bf2f2d;
  --color-adachi: #fd6155;
  --color-kokura: #f68801;
  --color-online: #9da443;
*/
  --color-honten: #993736;
  --color-adachi: #c96b65;
  --color-kokura: #c28d4e;
  --color-online: #93993f;
}

/*==================================
	base
==================================*/
* {
	box-sizing: border-box;
}
html { height: 100%; width: 100%;}
body {
	font-family: 'Noto Serif JP', serif;
	font-size:17px;
	color:#222222;
	background:#fffefc;
	height: 100%;
	width: 100%;
	min-width: 1200px;
	line-height: 1.2;
	letter-spacing: 0.02em;
}
h1, h2, h3, h4, h5, ul, li, dl, dt, dd, p {}
ul, li, dl, dt, dd { list-style: none;}
img { vertical-align: bottom;}
a { color: #222222; text-decoration: none; }
a:hover { color: #999999;}

/* 電話番号リンク */
@media screen and (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    border-bottom: none !important;
  }
}
@media screen and (max-width: 750px) {
  a[href*="tel:"] { border-bottom: 1px dotted; }
}

/* ラッパー */
.outer { width: 1200px; margin-left: auto; margin-right: auto;}
.inner { width: 1000px; margin-left: auto; margin-right: auto;}
/*.inner a { border-bottom: 1px dotted; }*/
@media screen and (min-width: 992px) {
  .inner:after { content: ""; display: block; float: none; clear: both;}
}
@media screen and ((min-width: 751px) and (max-width: 991px)) {
  body { min-width: 100%;}
  .outer { width: 95%; margin-left: auto; margin-right: auto;}
  .inner { width: 95%; margin-left: auto; margin-right: auto;}
}
@media screen and (max-width: 750px) {
  body { min-width: 100%;}
  .outer { width: 90%; margin-left: 5%; margin-right: 5%;}
  .inner { width: 90%; margin-left: 5%; margin-right: 5%;}
} 

/* PC/タブレット/スマホ切替 */
@media screen and (min-width: 992px) {
	.spOnly { display: none !important;}
}
@media screen and ((min-width: 751px) and (max-width: 991px)) {
  .spOnly { display: none !important;}
}
@media screen and (max-width: 750px) {
	.pcOnly { display: none !important;}
}	

/* センタリング */
.text-center, .text_center { text-align: center; }

/* マージン */
.m10 { margin: 10px 0; }
.m20 { margin: 20px 0; }
.m30 { margin: 30px 0; }
.m40 { margin: 40px 0; }
.m50 { margin: 50px 0; }
.m60 { margin: 60px 0; }
.m70 { margin: 70px 0; }
.m80 { margin: 80px 0; }
.m90 { margin: 90px 0; }
.mt10 { margin-top: 10px; }
.mt20 { margin-top: 20px; }
.mt30 { margin-top: 30px; }
.mt40 { margin-top: 40px; }
.mt50 { margin-top: 50px; }
.mt60 { margin-top: 60px; }
.mt70 { margin-top: 70px; }
.mt80 { margin-top: 80px; }
.mt90 { margin-top: 90px; }
.mb10 { margin-bottom: 10px; }
.mb20 { margin-bottom: 20px; }
.mb30 { margin-bottom: 30px; }
.mb40 { margin-bottom: 40px; }
.mb50 { margin-bottom: 50px; }
.mb60 { margin-bottom: 60px; }
.mb70 { margin-bottom: 70px; }
.mb80 { margin-bottom: 80px; }
.mb90 { margin-bottom: 90px; }
@media screen and (max-width: 750px) {
  .m10 { margin: 5px 0; }
  .m20 { margin: 10px 0; }
  .m30 { margin: 15px 0; }
  .m40 { margin: 20px 0; }
  .m50 { margin: 25px 0; }
  .m60 { margin: 30px 0; }
  .m70 { margin: 35px 0; }
  .m80 { margin: 40px 0; }
  .m90 { margin: 45px 0; }
  .mt10 { margin-top: 5px; }
  .mt20 { margin-top: 10px; }
  .mt30 { margin-top: 15px; }
  .mt40 { margin-top: 20px; }
  .mt50 { margin-top: 25px; }
  .mt60 { margin-top: 30px; }
  .mt70 { margin-top: 35px; }
  .mt80 { margin-top: 40px; }
  .mt90 { margin-top: 45px; }
  .mb10 { margin-bottom: 5px; }
  .mb20 { margin-bottom: 10px; }
  .mb30 { margin-bottom: 15px; }
  .mb40 { margin-bottom: 20px; }
  .mb50 { margin-bottom: 25px; }
  .mb60 { margin-bottom: 30px; }
  .mb70 { margin-bottom: 35px; }
  .mb80 { margin-bottom: 40px; }
  .mb90 { margin-bottom: 45px; }
}

/* flexbox */
.row {
	display: flex;
}
.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}


/*==================================
	Form Style
==================================*/
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
select,
textarea,
.field {
  display: block;
  height: 40px;
  line-height: 40px;
  padding: 0 12px;
  margin-bottom: 14px;
  font-size: 1em;
  border-radius: 1px;
  vertical-align: middle;
  box-shadow: none;
  border: 0;
  width: 100%;
  max-width: 400px;
  color: #777;
  background-color: #eaedf2;
  -webkit-transition: background-color 0.24s ease-in-out;
  transition: background-color 0.24s ease-in-out;
  font-family: sans-serif;
}
input[type="text"]:focus, input[type="text"]:active,
input[type="password"]:focus,
input[type="password"]:active,
input[type="datetime"]:focus,
input[type="datetime"]:active,
input[type="datetime-local"]:focus,
input[type="datetime-local"]:active,
input[type="date"]:focus,
input[type="date"]:active,
input[type="month"]:focus,
input[type="month"]:active,
input[type="time"]:focus,
input[type="time"]:active,
input[type="week"]:focus,
input[type="week"]:active,
input[type="number"]:focus,
input[type="number"]:active,
input[type="email"]:focus,
input[type="email"]:active,
input[type="url"]:focus,
input[type="url"]:active,
input[type="search"]:focus,
input[type="search"]:active,
input[type="tel"]:focus,
input[type="tel"]:active,
input[type="color"]:focus,
input[type="color"]:active,
select:focus,
select:active,
textarea:focus,
textarea:active,
.field:focus,
.field:active {
  color:#000;
  background-color: #f7f8fa;
  border: 2px solid #333;
  outline: none;
}
input[type="password"] {
  letter-spacing: 0.3em;
}

textarea {
  max-width: 100%;
  min-height: 120px;
  line-height: 1.5em;
}

input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="color"],
select,
textarea,
.field {
  max-width: 100%;
}

input[type="button"],
input[type="reset"],
input[type="submit"]{
  border:none;
  background: #222;
  color: #fff;
  padding: 20px 30px;
  font-size: 20px;
  margin: 0 16px;
}

input[type="submit"].btn_back { background: #dfdfdf; color: #222; }

form p {
  margin-bottom: 16px;
}

.validationmessage {
  color: #c30;
  margin: 1em auto;
}

/* 点滅 */
.blinking {
  -webkit-animation: blink 1.5s ease-in-out infinite alternate;
  animation: blink 1.5s ease-in-out infinite alternate;
}

@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.required {
  margin-right: 0.6em;
  background-color: #c30;
  font-size: 90%;
  color: #fff;
  padding: 0px 5px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}

/*.form-control {
  display: block;
  width: 100%;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 2px;
  box-shadow: none;
  transition: none;
}

.form-control:focus {
  border-color: inherit;
  outline: 0;
  box-shadow: transparent;
}

button.btn.tf-btn.btn-default {
  float: right;
  background: var(--main-color);
  border: 0;
  border-radius: 0;
  padding: 10px 40px;
  color: #ffffff;
}

.btn:active,
.btn.active {
  background-image: none;
  outline: 0;
  box-shadow: none;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: thin dotted;
  outline: none;
  outline-offset: none;
}
*/

.form_wrap { width: 90%; margin: 1rem auto; }
@media screen and (min-width: 751px) {
.form_wrap { width: 80%; }
.form_wrap dl { display: table; width: 100%;}
.form_wrap dt, .form_wrap dd { display: table-cell; padding: 10px 0}
.form_wrap dt { width: 23%; }
}

.submit { text-align: center; margin-top: 1rem; }

.policy_caution { line-height: 1.5; margin-bottom: 2rem; font-size: 80%; }
.policy_caution a { text-decoration: underline; }


/*==================================
	common
==================================*/
/* 販売店舗ラベル */
.store_label {
	font-size: 73%;
	margin: 15px 0;
	line-height: 2.2;
	text-align: left;
}
.lbl_store {
	background-color: #efefef;
	padding: 3px 7px;
	margin-right: 3px;
	line-height: 2;
  font-weight: bold;
}
.lbl_hon {
	color: var(--color-honten);
}
.lbl_kokura {
	color: var(--color-kokura);
}
.lbl_adachi {
	color: var(--color-adachi);
}
.lbl_online {
	color: var(--color-online);
}

/*==================================
	header
==================================*/
header { position: fixed; width: 100%; z-index: 100;}
header nav .hd_logo a { display: block;}
.sidelink_shop { position: fixed; background: #000; z-index: 100; }
.sidelink_shop a { color: #fff; display: block; font-size: 13px; text-align: center; background: url(../img/icon_cart.png) no-repeat center 15px; font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif; font-weight: lighter; }
header nav .hd_menu ul li.iconFb img {width: 20px;height: auto;}
header nav .hd_menu ul li.iconIg img {width: 20px;height: auto;}
@media screen and (min-width: 1201px) {
header { background-color: rgba(255,255,255,0.9); height: 80px;}
header nav .hd_logo { float: left; margin-left: 52px; margin-top: 22px;}
header nav .hd_logo img { width: 110px;}
header nav .hd_menu { float: right;}
header nav .hd_menu ul { display: flex; padding: 30px 0;}
header nav .hd_menu ul li { margin-right: 40px;}
header nav .hd_menu ul li.hd_contact { display: none;}
}
@media screen and (max-width: 1200px) {
/*.sidelink_shop { display: none;}*/
header { background-color: rgba(255,255,255,0.9);}
header .outer { width: 100%; margin-left: 0; margin-right: 0;}
header nav .hd_logo { display: inline-block;}
header nav .hd_logo img { width: 100%;}
header nav .hd_menu { text-align: center; display: none;}
header nav .hd_menu li { padding-bottom: 10px;}
header nav .hd_menu li a { padding: 10px 0; display: block;}
header nav .hd_menu ul li.hd_contact { margin: 10px 0 30px 0;}
header nav .hd_menu ul li.hd_contact a:before { content: ""; background: url(../img/icon_mail.png) no-repeat; background-size: cover; width: 18px; height: 14px; margin-right: 15px; display: inline-block;}
header nav .hd_menu ul li.hd_contact a { background: #222; color: #fff; display: inline-block; padding: 18px 30px;}
/* btn_hamburger */
.btn_hamburger {display: block; position: absolute; width: 30px; z-index: 20;}
.btn_hamburger a { position: relative; display: block; height: 25px; -webkit-transition: all .4s; transition: all .4s; box-sizing: border-box;}
.btn_hamburger span { position: absolute; display: inline-block; left: 0; width: 100%; height: 2px; background-color: #a2a4a6; border-radius: 2px; -webkit-transition: all .4s; transition: all .4s; box-sizing: border-box;}
.btn_hamburger span:nth-of-type(1) { top: 0;}
.btn_hamburger span:nth-of-type(2) { top: 12px;}
.btn_hamburger span:nth-of-type(3) { bottom: 0;}
.btn_hamburger span:nth-of-type(2)::after { position: absolute; top: 0; left: 0; content: ''; width: 100%; height: 2px; background-color: #a2a4a6; border-radius: 2px; -webkit-transition: all .4s; transition: all .4s;}
.btn_hamburger .active span:nth-of-type(2) { -webkit-transform: rotate(-45deg); -ms-transform: rotate(-45deg); transform: rotate(-45deg);}
.btn_hamburger .active span:nth-of-type(2)::after { -webkit-transform: rotate(90deg); -ms-transform: rotate(90deg); transform: rotate(90deg);}
.btn_hamburger .active span:nth-of-type(1) { -webkit-transform: translateY(20px) scale(0); -ms-transform: translateY(20px) scale(0); transform: translateY(20px) scale(0);}
.btn_hamburger .active span:nth-of-type(3) { -webkit-transform: translateY(-20px) scale(0); -ms-transform: translateY(-20px) scale(0); transform: translateY(-20px) scale(0);}
}
@media screen and (min-width: 751px) {
/*.sidelink_shop { right: -120px; top: 120px; border-radius: 10px 0 0 10px; }*/
.sidelink_shop { right: 0; top: 120px; border-radius: 10px 0 0 10px; }
.sidelink_shop a { padding: 85px 15px 15px 15px; }
header nav .hd_logo { width: 110px; margin: 15px 5%;}
.btn_hamburger { top: 20px;  right: 20px;}
}
@media screen and (max-width: 750px) {
.sidelink_shop { right: -10px; bottom: 70px; border-radius: 50%; }
.sidelink_shop a { background-size: 40px; width: 95px; height: 95px; padding: 54px 0 0 0; line-height: 1.2; }
header nav .hd_logo { width: 25%; margin: 15px 5%}
.btn_hamburger { top: 13px;  right: 10px;}
}


/*==================================
	footer
==================================*/
footer { width: 100%; margin-top: 130px;}
footer .contact { text-align: center; margin-bottom: 100px;}
footer .contact a:before { content: ""; background: url(../img/icon_mail.png) no-repeat; display: inline-block;}
footer .contact a { background: #222; color: #fff; display: inline-block;}
footer .copy { width: 100%; background: #222; color: #fff; padding: 12px 0; letter-spacing: 0;}
footer .footLine {display: flex;justify-content: space-between;align-items: center;}
footer .iconFb img {width: 20px; height: auto;}
@media screen and (min-width: 751px) {
footer { margin-top: 130px;}
footer .contact a { padding: 30px 80px; font-size: 25px;}
footer .contact a:before { width: 26px; height: 20px; margin-right: 20px; }
footer .copy { font-size: 14px;}
}
@media screen and (max-width: 750px) {
footer { margin-top: 80px;}
footer .contact a { padding: 20px 30px; font-size: 110%;}
footer .contact a:before { background-size: cover; width: 18px; height: 14px; margin-right: 15px;}
footer .copy { font-size: 50%;}
}

footer .footer_sns { display: flex; justify-content: center; margin: 0 0 3rem; }
footer .footer_sns .footer_sns_icon { margin: 20px 20px; }
footer .footer_sns .footer_sns_icon img { width: 60px; }

footer .footer_menu { }
footer .footer_menu .footer_logo { text-align: center; margin: 1rem auto; }
footer .footer_menu ul { font-size: 80%; margin: 50px 0;}
@media screen and (min-width: 751px) {
footer .footer_menu { padding: 1rem 1rem; }
footer .footer_menu ul { display:flex; justify-content: center; line-height: 1.7; }
footer .footer_menu li { margin: 0 15px; }
}
@media screen and (max-width: 750px) {
footer .footer_menu { padding: 0 2rem; }
footer .footer_menu ul { line-height: 2.7; text-align: center; }
}

/*==================================
	container
==================================*/
.wrapper { position: relative; height: 100%; width: 100%;}
section {}
section .sectit { text-align: center;}
section .sectit .en { font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif; font-weight: lighter;}
.linkbtn { font-size: 16px; text-align: center;}
.linkbtn a { border: solid 1px #dddddd; display: inline-block; padding: 15px 55px;}

.arrow{ position: relative; display: inline-block; padding: 0 16px 0 0; color: #000; vertical-align: middle; text-decoration: none;}
.arrow::before,
.arrow::after { position: absolute; top: 0; bottom: 0; right: 0; margin: auto; content: ""; vertical-align: middle;}
@media screen and (min-width: 751px) {
section .sectit .jp { font-size: 38px; margin-bottom: 25px;}
section .sectit .en { font-size: 15px; margin-bottom: 60px;}
}
@media screen and (max-width: 750px) {
section .sectit .jp { font-size: 120%; margin-bottom: 15px;}
section .sectit .en { font-size: 50%; margin-bottom: 40px;}
}


/*==================================
	product common
==================================*/
.product_listbox {}
.product_listbox .cat_tit { border-bottom: solid 1px #d9d9d9; padding: 0 0 10px 10px; margin-bottom: 35px;}
.product_listbox ul { display: flex; flex-wrap: wrap; }
.product_listbox ul:before { content: ''; display: block; order: 1; }
.product_listbox ul .listitem {}
.product_listbox ul .listitem a { display: inline-block;}
.product_listbox ul .listitem a .img { position: relative; }
.product_listbox ul .listitem a .img:after {
  position: absolute;
  content: '詳しくはこちら';
  bottom: 6px;
  right: 6px;
  background-color: rgba(255,255,255,0.8);
  padding: 6px 15px;
  font-size: 80%;
}
.product_listbox ul .listitem a .img img {}
.product_listbox ul .listitem a .tit { margin-top: 10px;}

@media screen and (min-width: 992px) {
.product_listbox {}
.product_listbox .cat_tit {}
.product_listbox ul {}
.product_listbox ul:before { width: 345px; }
.product_listbox ul .listitem { margin-left: 35px; width: 310px;}
.product_listbox ul .listitem:nth-child(3n+1) { margin-left: 0;}	
.product_listbox ul .listitem:nth-child(n+4) { margin-top: 50px;}	
.product_listbox ul .listitem a {}
.product_listbox ul .listitem a .img {}
.product_listbox ul .listitem a .img img { width: 310px; height: 250px; object-fit: cover;}
.product_listbox ul .listitem a .tit {}
}
@media screen and ((min-width: 751px) and (max-width: 991px)) {
.product_listbox {}
.product_listbox .cat_tit {}
.product_listbox ul {}
.product_listbox ul:before { width: 50%; }
.product_listbox ul .listitem { margin-left: 35px; margin-bottom: 30px; width: 45%;}
.product_listbox ul .listitem a {}
.product_listbox ul .listitem a .img {}
.product_listbox ul .listitem a .img:after { content: '詳しくはタップ'; }
.product_listbox ul .listitem a .img img { width: 310px; height: 250px; object-fit: cover;}
.product_listbox ul .listitem a .tit {}
}
@media screen and (max-width: 750px) {
.product_listbox {}
.product_listbox .cat_tit {}
.product_listbox ul {}
.product_listbox ul .listitem { margin-bottom: 20px;}
.product_listbox ul .listitem:last-child { margin-bottom: 0;}
.product_listbox ul .listitem a {}
.product_listbox ul .listitem a .img {}
.product_listbox ul .listitem a .img:after { content: '詳しくはタップ'; }
.product_listbox ul .listitem a .img img { width: 100%;}
.product_listbox ul .listitem a .tit {}
}

/*==================================
    faq
==================================*/
.faq { line-height: 2; }
.faq a { border-bottom: 1px dotted; }
.faq h3 {
    position: relative;
    width: 90%;
    font-size: 1.5em;
    margin-top: 1rem;
    margin-bottom: 15px;
    padding: 5px 0 5px 20px;
    background-color: #eee;
}
.faq h3:after {
    position: absolute;
    content: '';
    border-bottom: 59px solid transparent;
    border-left: 25px solid #eee;
    top: 0;
    right: -25px;
}
.faq dl { border-bottom: 1px solid #ccc; margin-bottom: 2.5rem; padding-bottom: 1rem; }
.faq dt, .faq dd { 
    position: relative;
    min-height: 50px;
    padding-left: 50px;
}
.faq dt:before, .faq dd:before {
    position: absolute;
    top: 0;
    left: 0;
    font-family: sans-serif;
    color: #fff;
    font-size: 1.5rem;
    font-weight: normal;
    text-align: center;
    line-height: 1.7;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    margin-right: 10px;
}
.faq dt { color: #222; font-weight: bold; }
.faq dt:before { content:'Q'; background-color: #eee; color: #222; }
.faq dd:before { content:'A'; background-color: var(--color-honten); }
@media screen and (max-width: 750px) {
.faq dl { font-size: 87%; }
}


