@charset "utf-8";
/* CSS Document */
/*common領域*/
* {
 box-sizing: border-box;
}
@font-face {
 font-family: "NotoSansCJKjp";
 font-style: normal;
 font-weight: normal;
 src: url("../font/web/NotoSansCJKjp.eot");
 src: url("../font/web/NotoSansCJKjp.eot?#iefix") format("embedded-opentype"), url("../font/web/NotoSansCJKjp.woff") format("woff"), url("../font/web/NotoSansCJKjp.otf") format("opentype");
}
html body {
 color: #333;
 background: #fffef2;
 font-size: 14px;
 font-family: 'Noto Serif', "Noto Sans", "Noto Sans CJK JP", serif, sans-serif;
}
.inner {
 max-width: 1024px;
 margin: 0 auto;
}
.main {
 margin: 0 15px;
}
a {
 text-decoration: none;
 color: #333;
}
a:hover {
 opacity: .7;
 transition: .8s;
 cursor: pointer;
}
img {
 width: 100%;
 height: auto;
 margin: 0 auto;
}
/*ヘッダー領域*/
.header {
 width: 100%;
 height: auto;
 margin: 0 auto;
 display: flex;
 align-items: center;
 background-color: #fff;
 box-shadow: 0 32px 30px -30px rgba(53, 47, 47, 0.25);
 position: fixed;
 top: 0;
 z-index: 4000;
}
.header div {
 width: 100%;
 height: 70px;
}
.header_flex {
 display: flex;
 align-items: center;
}
.header_flex h1 {
 max-width: 30vh; 
 margin: 0 0 0 6%;
 display: inline-block;
}
.pc_nav {
 display: none;
}
/*ハンバーガーメニュー表示領域*/
#hamburger {
 visibility: visible;
}
#hamburger {
 position: relative;
 display: block;
 width: 46px;
 height: 25px;
 margin: 0 2% 0 auto;
}
#hamburger span {
 display: block;
 position: absolute;
 top: 70%;
 left: 16%;
 width: 50%;
 height: 1px;
 background: #333;
 transform: translateY(0%);
}
#hamburger::before {
 content: '';
 display: block;
 position: absolute;
 top: 30%;
 left: 16%;
 width: 50%;
 height: 1.2px;
 background-color: #333;
}
#hamburger::after {
 content: 'MENU';
 font-size: 12px;
 font-family: sans-serif;
 display: block;
 position: absolute;
 bottom: 0;
 left: 0;
 width: 50%;
 height: 1.2px;
 background: #fff;
 transform: translateY(0%);
}
/*ハンバーガーメニュー内装領域*/
.sp_nav {
 z-index: 1;
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100vh;
 display: block;
 background: rgba(0, 0, 0, .8);
 transition: all .2s ease-in-out;
 opacity: 0;
 transform: translateY(-100%);
}
.sp_nav ul {
 padding: 0;
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: center;
 height: 100%;
}
.sp_nav ul li {
 margin: 0;
 padding: 0;
}
.sp_nav ul li a {
 color: #fff;
}
.sp_nav li span {
 font-size: 15px;
 color: #fff;
}
.sp_nav li a, .sp_nav li span {
 display: block;
 padding: 20px 0;
}
.sp_nav .close {
 position: relative;
 padding-left: 20px;
}
.sp_nav .close::before {
 content: '';
 position: absolute;
 top: 50%;
 left: 0;
 display: block;
 width: 16px;
 height: 1px;
 background: #fff;
 transform: rotate(45deg);
}
.sp_nav .close::after {
 content: '';
 position: absolute;
 top: 50%;
 left: 0;
 display: block;
 width: 16px;
 height: 1px;
 background: #fff;
 transform: rotate(-45deg);
}
.toggle {
 transform: translateY(0);
 opacity: 1;
}
.hero_sp {
 width: 100%;
 height: auto;
 padding-top: 70px; 
}
/*セクション共通領域*/
.section_wrapper {
 margin: 90px auto 0;
}
.section_wrapper:last-of-type {
 margin: 90px 0;
}
.section_ttl {
 margin: 20px auto;
 text-align: center;
 font-size: 36px;
 letter-spacing: 0.05em;
}
.section_lead {
 display: block;
 margin-bottom: 10px;
 text-align: center;
 font-size: 13px;
 line-height: 1.6;
 color: #494949;
}
.section_lead::after {
 content: '';
 display: block;
 width: 160px;
 height: 1.8px;
 margin: 10px auto 4px;
 background-image: url("../img/line.svg");
 background-size: contain;
 vertical-align: middle;
}
/*コレクション領域 > Home*/
.section_collec {
 margin: 80px 0 0;
 text-align: center;
}
.section_collec li {
 font-size: 14px;
 line-height: 1.35;
 letter-spacing: 0.5em;
}
/*商品紹介スライダー矢印 > Home*/
.slick_arrow {
 position: absolute;
 top: 35%;
 margin: auto;
 width: 80px;
 height: 80px;
}
.slick-arrow_prev {
 left: 0;
 z-index: 10;
}
.slick-arrow_next {
 right: 0;
 z-index: 10;
}
/*サービス領域 >Home*/
.section_service .service_ttl {
 margin-top: 28px;
 margin-bottom: 20px;
 font-size: 20px;
}
.section_service .service_text {
 margin-bottom: 10px;
 font-size: 14px;
}
.section_about .main_flex img {
 width: 100%;
 height: auto;
}
.section_about .main_flex {
 margin-top: 14px;
}
.about_text {
 font-size: 14px;
 color: #494949;
 text-align: left;
}
/*アクセス領域 > Home*/
.shop_inner h3 {
 margin: 20px 0 30px;
 text-align: center;
 font-size: 14px;
 font-weight: 300;
}
.link_inner p {
 text-align: center;
 font-size: 17px;
 line-height: 4; 
}
.link_inner .link_btn_faq, .link_btn_email {
 max-width: 207px;
 height: 70px;
 display: block;
 margin: 0 auto;
 color: #fff;
}
.link_inner .link_btn_faq {
 margin-bottom: 15px;
 background: #c4421a;
}
.link_inner .link_btn_faq img {
 width: 22px;
 height: 19px;
 margin: 0 0 3% 10px;
 vertical-align: middle;
}
.link_inner .link_btn_email {
 letter-spacing: -1.7px;
 background: #708238;
}
.link_inner .link_btn_email img {
 width: 22px;
 height: 22px;
 margin: 0 0 2% 7.5px;
 vertical-align: middle;
}
.link_inner p a:not(.link_btn_faq) {
 margin-bottom: 0;
}
/*ページトップへ戻る領域 > Home*/
.pagetop {
 width: 100%;
 height: 50px;
 margin: 0 auto;
 display: flex;
 align-items: center;
 background: #333;
 justify-content: center;
}
.pagetop a p {
 font-size: 19px;
 font-family: sans-serif;
 letter-spacing: 0.2em;
 color: #fff;
}
.pagetop .fas {
 width: 30px;
 height: 20px;
 text-align: center;
}
.copyright {
 width: 100%;
 height: auto;
 padding-bottom: 13.5px;
}
/*フッター領域 > Home*/
.child {
 display: none;
}
.footer .dropdown {
 width: 100%;
 height: auto;
 margin: 0 auto;
 background: #dbb98f;
}
.footer .dropdown .footer_menu .footer_list {
 padding: 0.8rem;
 color: #333;
 font-size: 17px;
 letter-spacing: 0.1em;
}
.footer_inner {
 width: 100%;
 padding: 0.8rem 0;
 margin: 0;
 list-style: none;
}
.footer_list .footer_inner img {
 width: 7px;
 height: auto;
 margin-left: 3.4%;
}
.footer_inner li {
 padding: 0.8rem 0;
}
.footer_inner li a {
 text-decoration: none;
 color: #333;
}
.copyright {
 margin: 0 auto;
 text-align: center;
 font-size: 12px;
 background: #dbb98f;
}
.copyright p {
 text-align: center;
 vertical-align: middle;
 font-size: 13px;
}
/*パンくずリスト > 下層共通*/
#breadcrumb {
 position: absolute;
 top: 80px;
 max-width: 100%;
 height: auto;
 padding-left: 20px;
}
#breadcrumb li {
 display: inline-block;
 font-size: .8em;
}
#breadcrumb li a {
 text-decoration: none;
 color: #888;
}
#breadcrumb .bc_home::after {
 content: '>';
 padding: 0 0.2em;
 color: #888;
}
#breadcrumb li a:hover {
 text-decoration: underline;
}
/*サービスページ領域 > Services*/
#services {
 padding: 0 15px;
 margin: 120px auto 80px;
}
.lower_ttl {
 width: 80%;
 height: auto;
 margin: 0 auto;
}
.lower_ttl .section_ttl {
 width: 100%;
 height: 0%;
}
#services .sub_services {
 justify-content: center;
}
#services .sub_services .service_item {
 background: #fff;
 padding: 25px;
 margin: 15px auto;
 text-align: center;
}
#services .sub_services img {
 max-width: 345px;
 height: auto;
}
#services h3 {
 margin: 5% 0;
 text-align: left;
 font-size: 18px;
 border-bottom: .6px solid #888;
}
#services .sub_services .service_item p {
 text-align: left;
 font-size: 14px;
 color: #333;
 line-height: 1.6;
}
#services .service_grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
 grid-gap: 0.8em;
 padding: 0.4em;
 margin: 1em 0;
}
#services .sub_services .service_item .notes {
 font-size: 12px;
}
.step {
 list-style-type: none;
 display: table;
 width: 100%;
 padding: 0;
 margin: 10% auto;
 overflow: hidden;
}
.step li {
 display: table-cell;
 position: relative;
 margin: 0 auto;
 background: #9bbb30;
 padding: 0.78em .9em;
 color: #fff;
 font-size: 14px;
}
.step li:last-child {
 padding-right: 1em;
}
.step li:last-child:before, .step li:last-child:after {
 display: none;
}
.step li:before, .step li:after {
 content: "";
 position: absolute;
 width: 0;
 height: 0;
 margin: auto;
}
.step li:before {
 top: -15px;
 right: -1em;
 border-style: solid;
 border-color: transparent transparent transparent #fff;
 border-width: 40px 0 40px 1em;
 z-index: 10;
}
.step li:after {
 top: -15px;
 right: -.8em;
 border-style: solid;
 border-color: transparent transparent transparent #9bbb30;
 border-width: 40px 0 40px 1em;
 z-index: 10;
}
.step li.step_listt:after {
 border-color: transparent transparent transparent #9bbb30;
}
/*コレクションページ領域 > Collection*/
#collection {
 padding: 0 10px;
 margin: 120px auto 80px;
 width: auto;
}
.collection_wrapper .collec_flex_box {
 background-color: #eaeef4;
 padding: 0;
 display: flex;
 margin: 10px 25px;
 flex-wrap: wrap;
 align-items: flex-start;
 justify-content: center;
}
.collec_flex_box .collec_flex_item {
 width: 300px;
 height: auto;
 padding: 10px;
 margin: 10px;
 box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.05);
}
.collec_flex_box .cp_caption {
 padding: 2%;
 line-height: 1.6em;
 background: #fff;
}
/*お問合わせ領域 > Contact/ Shop*/
.contact_wrapper {
 max-width: 1024px;
 height: auto;
 position: relative;
 overflow: hidden;
 margin: 0 auto;
}
.outer_block {
 width: 100%;
 margin: 0 auto;
}
.inner_block {
 padding: 0 10px;
 margin: 120px auto 80px;
 width: auto;
}
.entryform p {
 margin: 40px 0 40px 10px;
 font-size: 13px;
}
input, select, textarea {
 font-size: 16px;
}
.select_inquiries {
 width: 100%;
 height: auto;
}
input[type="text"], textarea {
 width: 100%;
}
textarea[name="content"] {
 display: inline-block;
 width: 100%;
 height: 200px;
}
.entryform .entrytable, .entryform .entrytable tbody, .entryform .entrytable tr, .entryform .entrytable th, .entryform .entrytable td, .entryform .entrytable caption {
 display: block;
 width: 100%;
 border-bottom: none;
}
input[type="text"], input[type="tel"], input[type="email"], textarea {
 box-shadow: none;
 outline: none;
 border: none;
 padding: 10px 30px 10px 0;
}
input[type="text"]:focus, textarea:focus, input[type="tel"]:focus, input[type="email"]:focus {
 background: #e9f5fb;
 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.entryform .entrytable {
 border-bottom: 1px solid #d7d7d7;
 font-size: 14px;
}
.entryform .entrytable th {
 padding: 8px 15px;
 background: #ef935f;
}
.entryform .entrytable td {
 padding: 15px;
 background: #eaeef4;
}
.entryform .entrytable textarea {
 height: 200px;
}
.entryform .entrytable th, .entryform .entrytable td {
 border: 1px solid #d7d7d7;
 border-width: 1px 1px 0 1px;
}
.contact_btns {
 text-align: center;
}
.contact_btns input {
 width: 160px;
 padding: 6px;
 margin: 4em auto;
 text-decoration: none;
 border-radius: 3px;
 transition: .4s;
 background: #fff;
}
.contact_btns .contact_btns_submit {
 display: block;
 padding: 0.5em 1em;
 color: #ff9c37;
 border: double 4px #ff9c37;
}
.contact_btns .contact_btns_submit:hover {
 color: #fff;
 background: #ff9c37;
}
.contact_btns .contact_btns_clear {
 display: block;
 padding: 0.5em 1em;
 color: #afafaf;
 border: double 4px #afafaf;
}
.contact_btns .contact_btns_clear:hover {
 color: #fff;
 background: #afafaf;
}
/*よくあるご質問領域 > Contact/shop*/
.contact_wrapper .sub_section_faq h2 {
 width: 100%;
 height: auto;
 text-align: center;
 margin-bottom: 10%;
}
.sub_faq {
 width: 90%;
 margin: 0 auto;
}
.sub_faq .sub_faq_list {
 position: relative;
 overflow: hidden;
 width: 100%;
 margin: 0 auto 1em auto;
 background: #fff;
 box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.05);
}
.sub_faq .sub_faq_list input {
 position: absolute;
 opacity: 0;
}
/* 質問 */
.sub_faq .sub_faq_list label {
 position: relative;
 display: block;
 padding: 1em 2.5em;
 cursor: pointer;
 text-indent: 1em;
 line-height: 1.6em;
 border-radius: 0.5em;
 background: #eaeef4;
}
.sub_faq .sub_faq_list label::before {
 font-size: 1.5em;
 margin-left: -2em;
 padding-right: 0.5em;
 content: 'Q';
}
.sub_faq .sub_faq_list label:hover {
 transition: all 0.3s;
 color: #c8520a;
}
.sub_faq .sub_faq_list label::after {
 font-size: 1.9em;
 line-height: 2em;
 position: absolute;
 top: 0;
 right: 0;
 content: '+';
 display: inline-block;
 width: 2em;
 height: 2em;
 transition: transform 0.4s;
}
.sub_faq .sub_faq_list .sub_faq_list_ans {
 position: relative;
 overflow: hidden;
 max-height: 0;
 padding-left: 2.5em;
 transition: max-height 0.2s;
 border-radius: 0 0 0.5em 0.5em;
}
.sub_faq .sub_faq_list .sub_faq_list_ans::before {
 font-size: 1.5em;
 position: absolute;
 margin: 0.4em 0 0 -1em;
 padding: 0;
 content: 'A';
}
.sub_faq .sub_faq_list .sub_faq_list_ans p {
 margin: 1em 1em 1em 0;
}
.sub_faq .sub_faq_list input:checked ~ .sub_faq_list_ans {
 max-height: 40em;
 border: 10px solid rgba(27, 37, 56, 0.1);
}
.sub_faq .sub_faq_list input:checked ~ label {
 border-radius: 0.5em 0.5em 0 0;
}
.sub_faq .sub_faq_list input[type=checkbox]:checked + label::after {
 transform: rotateZ(45deg);
 transform-origin: 50% 50%;
}
/*アクセス領域  > Contact/ Shop*/
.contact_wrapper .sub_section_shop {
 width: 100%;
 height: auto;
}
.contact_wrapper .sub_shop_inner {
 margin: 0 15px;
}
.contact_wrapper .sub_shop_inner dl {
 padding: .3em;
 margin-bottom: 30px;
 line-height: 1.6;
}
.contact_wrapper .sub_shop_inner dt {
 float: left;
}
.contact_wrapper .sub_shop_inner dt .fas, .contact_wrapper .sub_shop_inner dt .far {
 width: 1.4em;
 height: auto;
}
.contact_wrapper .sub_shop_inner a {
 text-decoration: underline;
 color: #0b7faf;
}

@media screen and (min-width: 896px) {
 .section_wrapper .main_flex {
  display: flex;
  margin: 0 auto;
  text-align: center;
 }
 .section_wrapper .main_flex img {
  max-width: 422px;
  height: auto;
  justify-content: space-around;
 }
 /*ヘッダー領域 > HOME*/
 .header {
  width: 100%;
  height: auto;
 }
 .header div {
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
 }
 .header_flex {
  display: flex;
  align-items: center;
 }
 .header_flex .header_nav ul {
  margin: 0 0 0 auto;
  display: flex;
  font-size: 20px;
 }
 .header_nav.pc_nav ul {
  margin: 0 0 0 auto;
 }
 .pc_nav ul li {
  padding: 0 0 0 26px;
 }
 .pc_nav ul li:last-child {
  padding: 0 26px;
 }
 /*ヘッダーナビゲーション切り替え > HOME*/
 .pc_nav {
  display: flex;
 }
 #hamburger {
  display: none;
 }
 /*パンくずリスト > 下層共通*/
 #breadcrumb {
  margin: 2% 0 0 2%;
 }
 /*サービス領域 > HOME*/
 .section_service {
  width: 100%;
  text-align: center;
 }
 .section_service .main_flex img {
  width: 100%;
  height: auto;
 }
 .section_service .main_flex h3 {
  font-size: 24px;
  text-align: left;
  display: inline-block;
  width: 422px;
  height: auto;
 }
 .section_service .service_text {
  font-size: 18px;
  text-align: left;
  display: inline-block;
  width: 422px;
  height: auto;
  margin-bottom: 20px;
 }
 /*アバウト領域 > HOME*/
 .section_about {
  width: 100%;
  height: auto;
 }
 .section_about div {
  display: flex;
  justify-content: center;
 }
 .section_about img {
  width: 422px;
  height: auto;
  margin-right: 30px;
 }
 .section_about .about_text {
  display: flex;
  align-items: flex-start;
  font-size: 18px;
  text-align: left;
  width: 410px; 
  height: auto;
  line-height: 2.44;
 }
 /*対象店舗領域 > HOME*/
 .section_shop {
  width: 100%;
  text-align: center;
 }
 .section_shop .main_flex img {
  width: 100%;
  height: auto;
 }
 .section_shop .main_flex h3 {
  width: 422px;
  height: auto;
  margin-bottom: 20px; 
  display: inline-block;
  text-align: center;
  font-size: 18px;
 }
 /*リンクボタン領域 > HOME*/
 .link_btn {
  width: 100%;
  height: auto;
 }
 .link_inner {
  margin: 0 auto;
  display: flex;
  justify-content: center;
 }
 .link_btn1, .link_btn2 {
  padding: 20px 0px;
  line-height: 3;
  width: 12em;
  font-size: 20px;
  letter-spacing: 2.4px;
  text-align: center;
 }
 /*フッター領域 > HOME*/
 .footer_menu {
  margin: 0 0 0 30px;
 }
 .footer_list {
  width: 32%;
  margin: 30px 0 150px 0;
  display: inline-block;
  letter-spacing: normal;
 }
 .dropdown .footer_menu .faq {
  width: 26.2%;
 }
 .footer_list .footer_inner {
  display: inline-block;
  vertical-align: top;
  padding: 0;
  margin-top: 14%; 
 }
 .faq .footer_inner {
  margin-top: 17%; 
 }
 .footer_list .footer_inner li {
  padding: 0.4em;
  margin: 6% 0 0 0;
 }
 .faq .footer_inner li {
  margin: 7.7% 0 0 0;
 }
 .footer_list .footer_inner li:first-child {
  margin: 0;
 }
 /*コレクション領域 > COLLECTION*/
 #collection {
  width: 1024px;
  max-height: 1100px;
  margin: 12% auto;
 }
 #collection .collec_flex {
  width: 100%;
 }
 .collection_wrapper .collec_flex_box {
  padding: 10px;
  margin: 20px 35px;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
 }
 .collec_flex_box .collec_flex_item {
  width: 280px;
  height: 186px;
  margin: 10px;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.05);
 }
 .collec_flex_box .cp_caption {
  padding: 0;
 }
 figure.cp_caption {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-width: 220px;
  max-width: 300px;
  max-height: 220px;
  margin: 10px 1%;
  color: #fff;
 }
 figure.cp_caption img {
  width: 100%;
  height: 100%;
 }
 figure.cp_caption figcaption {
  position: absolute;
  z-index: 1;
  top: 50%;
  padding: 3em 3em;
  transition: all 0.3s ease-out;
  transition-delay: 0.1s;
  opacity: 0;
 }
 figure.cp_caption:after {
  position: absolute;
  top: 7%;
  right: 10%;
  bottom: 7%;
  left: 10%;
  display: inline-block;
  content: '';
  transition: all 0.3s ease-out;
  opacity: 0;
  background: rgba(27, 37, 56, 0.8);
 }
 figure.cp_caption:hover:after {
  opacity: 0.9;
 }
 figure.cp_caption:hover figcaption {
  transform: translateY(-50%);
  opacity: 1;
 }
 /*サービスページ領域 > SERVICES*/
 #services {
  width: 1024px;
  max-height: 900px;
  margin: 12% auto;
 }
 #services .sub_services {
  width: 100%;
  display: flex;
 }
 .lower_ttl {
  width: 100%;
  height: auto;
 }
 #services .sub_services .service_item {
  background: #fff;
  padding: 10px;
  margin: 15px;
  text-align: center;
 }
 #services .sub_services img {
  max-width: 422px;
  height: auto;
 }
 #services h3 {
  margin: 5% 0;
  text-align: left;
  font-size: 20px;
  border-bottom: .6px solid #888;
 }
 #services .sub_services .service_item p {
  max-width: 422px;
  height: auto;
  text-align: left;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
 }
 #services .service_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  grid-gap: 0.8em;
 }
 #services .service_grid img {
  width: 126px;
  height: auto;
 }
 .service_item .step li {
  padding: 1em 0.5em 1em 2em;
  font-size: 16px;
 }
 /*お問い合わせ領域 > CONTACT/ SHOP*/
 .contact_wrapper {
  width: 100%;
  height: auto;
  position: relative;
 }
 .outer_block {
  max-width: 1024px;
  margin: 0 auto;
 }
 .contact_wrapper .outer_block {
  padding: 0 10px;
  margin: 180px auto 80px;
 }
 .inner_block {
  position: relative;
 }
 .outer_block .entryform p {
  margin-left: 10px;
  font-size: 15px;
 }
 .outer_block .entryform {
  margin: 0 auto;
 }
 input[type="text"], input[type="tel"], input[type="email"], textarea {
  box-shadow: none;
  outline: none;
  border: none;
 }
 .entryform .entrytable td textarea {
  resize: vertical;
 }
 .entryform .entrytable button {
  border: none;
  cursor: pointer;
 }
 label {
  cursor: pointer;
 }
 .sp-ib {
  display: none !important;
 }
 input[type="text"], textarea, input[type="tel"], input[type="email"] {
  width: 480px;
  display: block;
  padding: 12px 15px;
  font-size: 16px;
  background: #fff;
  transition: 0.8s;
  border-radius: 0;
 }
 input[type="text"]:focus, textarea:focus, input[type="tel"]:focus, input[type="email"]:focus {
  background: #e9f5fb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
 }
 textarea[name="content"] {
  display: inline-block;
  width: 100%;
  padding: 0;
 }
 input::placeholder, textarea::placeholder, email::placeholder, tel::placeholder {
  color: #ccc;
 }
 .entryform .entrytable tr {
  display: table;
 }
 .entryform .entrytable th, .entryform .entrytable td {
  width: 100%;
  display: table-cell;
  border-top: 1px solid #d7d7d7;
  border-bottom: 1px solid #d7d7d7;
  padding: 15px;
 }
 .entryform .entrytable th {
  background: #ffecea;
  padding-left: 50px;
  position: relative;
  text-align: left;
  width: 30%; 
 }
 .clearfix::after, .inner-block::after {
  clear: both;
  content: "";
  display: block;
  height: 0;
  font-size: 0;
  visibility: hidden;
 }
 .contact_btns input {
  width: 180px;
  margin: 4em auto;
 }
 .contact_btns .contact_btns_submit {
  display: inline-block;
  padding: 0.9em 1em;
  margin-right: 8%;
 }
 .contact_btns .contact_btns_clear {
  display: inline-block;
  padding: 0.9em 1em;
  margin-left: 8%;
 }
 /*よくあるご質問領域 > CONTACT/ SHOP*/
 .contact_wrapper .sub_section_faq .section_ttl {
  margin-bottom: 4%;
 }
 .contact_wrapper .sub_section_faq .sub_faq_list {
  width: 70%;
 }
 /*アクセス領域 > CONTACT/ SHOP*/
 .sub_faq .sub_faq_list label {
  padding: 1em 2em 1em 2.5em;
 }
 .contact_wrapper .sub_shop_inner {
  margin: 0 25px;
 }
 .contact_wrapper .sub_shop_inner dl {
  width: 70%;
  padding: .6em;
  margin: 0 auto;
  text-align: left;
  line-height: 1.6;
 }
}