@charset "UTF-8";
/* --------------------------------------------------
 Base
-------------------------------------------------- */
html,
body {
  max-width: 100%
}

body,ol,ul,dl,li,dt,dd,table,th,td,input,textarea,select,h1,h2,h3,h4,h5,h6 {
  color: #333;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  background-color: #ffffff;
  min-width: 320px;
  line-height: 2;
  font-size: 100%;
  word-break: break-all;
  position: relative;
  animation: pageLoad 2s;
}

.noto-serif-jp-font {
  font-family: "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "Times New Roman", serif !important;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 90%;
  }
}

@keyframes pageLoad {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

img {
  max-width: 100%;
  vertical-align: middle;
}

input {
  padding: 8px 15px;
}

textarea {
  padding: 12px 15px;
}

select,
textarea,
option {
  color: #333;
}

ol {
  margin: 0px 0px 0px 21px;
}

ol>li {
  list-style: decimal outside;
  margin: 0px 0px 3%;
}

a:link,
a:visited {
  color: #333;
  text-decoration: underline;
  outline: 0;
}

a:hover,
a:active {
  color: #333;
  text-decoration: none;
}

figure {
  text-align: center;
}

em {
  font-style: normal;
  font-weight: bold;
}

strong {
  font-style: normal;
  font-weight: bold;
}

@media screen and (min-width: 1001px) {
  a[href^="tel"] {
    pointer-events: none;
    text-decoration: none;
  }
  a[href^="tel"]::after {
    display: none !important;
  }
}

/* --------------------------------------------------
 drw-nav-btn
-------------------------------------------------- */

#drw-nav-trigger {
  display: none;
}

#drw-nav-trigger:checked~.drw-nav-btn {
  box-shadow: none;
  opacity: 1 !important;
}

.drw-nav-btn {
  position: fixed;
  top: 12px;
  right: 8px;
  display: none;
  width: 45px;
  height: 38px;
  text-align: center;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0px 0px 2px rgba(255, 255, 255, 0.6);
}

@media screen and (max-width: 1200px) {
  .drw-nav-btn {
    display: block;
  }
}

.drw-nav-btn-bar {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 32px;
  height: 2px;
  transition: all 0.4s;
  transform-origin: left top;
  margin: auto;
}

.drw-nav-btn-bar {
  background: #815A2F;
}

.drw-nav-btn-bar.top {
  top: 0px;
  left: 0;
  right: 0;
}

.drw-nav-btn-bar.middle {
  top: 8px;
  right: 0;
  opacity: 1;
}

.drw-nav-btn-bar.bottom {
  top: 17px;
  left: 0;
  right: 0;
  transform-origin: left bottom;
}

#drw-nav-trigger:checked~.drw-nav-btn .drw-nav-btn-bar.top {
  top: 0;
  transform: rotate(45deg);
}

#drw-nav-trigger:checked~.drw-nav-btn .drw-nav-btn-bar.middle {
  opacity: 0;
}

#drw-nav-trigger:checked~.drw-nav-btn .drw-nav-btn-bar.bottom {
  top: 22px;
  transform: rotate(-45deg);
}

#drw-nav-trigger:checked~.drw-nav-btn .drw-nav-btn-bar.top,
#drw-nav-trigger:checked~.drw-nav-btn .drw-nav-btn-bar.bottom {
  left: 8px;
}

.drw-nav-btn-bar-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: all 0.3s;
  display: block;
  visibility: visible;
  opacity: 1;
  letter-spacing: 0;
  font-size: 11px;
  color: #795548;
}

#drw-nav-trigger:checked~.drw-nav-btn .drw-nav-btn-bar-text {
  visibility: hidden;
  opacity: 0;
}

.drw-nav-close {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0);
  cursor: url(../img/common/close_cross.png), auto;
  visibility: hidden;
  opacity: 0;
}

#drw-nav-trigger:checked~.drw-nav-close {
  transition: all 0.4s;
  background: rgba(38, 38, 38, 0.7);
  visibility: visible;
  opacity: 1;
  z-index: 993;
}

#drw-nav {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100%;
  transition: all 0.4s;
  opacity: 0;
  overflow: hidden;
  transform-origin: left center;
  transform: translateX(320px);
  z-index: 992;
}

#drw-nav-trigger:checked~#drw-nav {
  transition-delay: 0.3s;
  transform: none;
  opacity: 1;
  z-index: 993;
}

.drw-nav-inner {
  width: 100%;
  min-width: 320px;
  height: 100%;
  padding: 10px 0;
  overflow-x: hidden;
  overflow-y: scroll;
  background-color: #fff;
  box-sizing: border-box;
}

#drw-nav .drw-logo {
  margin: auto;
  padding: 0 50px 0 10px;
  width: 100%;
  box-sizing: border-box;
}

#drw-nav .drw-logo .txt {
  font-size: 90%;
}

#drw-nav .drw-logo .img {
  margin-top: 8px;
}

#drw-nav .drw-logo .img img {
  max-height: 150px;
  box-sizing: border-box;
}

#drw-nav .drw-logo .txt-desc {
  width: 100%;
  font-size: 90%;
  display: block;
  margin-bottom: 0;
  margin-top: 1rem;
  text-align: center;
}

#drw-nav .drw-global-nav {
  width: 100%;
/*  margin-top: 1rem;*/
  box-sizing: border-box;
}

#drw-nav .drw-global-nav>li>a {
  box-sizing: border-box;
  display: block;
  text-decoration: none;
  padding: 12px 2rem 12px 10px;
  position: relative;
  border-bottom: 1px solid #000;
  font-family: "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "Times New Roman", serif;
}

#drw-nav .drw-global-nav>li>a::after {
  font-family: "Font Awesome 5 Free";
  content: '\f105';
  font-weight: 900;
  font-size: 16px;
  position: absolute;
  top: 12px;
  right: 15px;
  color: #000;
}

#drw-nav .drw-global-nav li.accordion-wrap>.accordion-trigger {
  cursor: context-menu;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

#drw-nav .drw-global-nav li.accordion-wrap>.accordion-trigger:after {
  font-family: "Font Awesome 5 Free";
  content: '\f107';
  font-weight: 900;
  font-size: 16px;
  position: absolute;
  top: 12px;
  right: 15px;
  color: #000;
}

#drw-nav .drw-global-nav li.accordion-wrap>.accordion-trigger.onclick {
  color: #000;
}

#drw-nav .drw-global-nav li.accordion-wrap>.accordion-trigger.onclick:after {
  content: '\f106';
}

#drw-nav .drw-global-nav li.accordion-wrap>.accordion-content {
  border-top: 4px solid #000;
}

#drw-nav .drw-global-nav li.accordion-wrap>.accordion-content li a::after {
  content: none;
}

#drw-nav .drw-global-nav li.accordion-wrap>.accordion-content li a {
  box-sizing: border-box;
  display: block;
  text-decoration: none;
  padding: 10px 2rem;
  line-height: 1.4;
  border-bottom: 1px solid #d1d1d1;
  background-color: #f2f5f7;
}

/* drw-other-blc -------------------------*/

#drw-nav .drw-other-blc {
  padding: 2rem 10px;
  box-sizing: border-box;
  background-color: #000;
}

/* drw-shop-nav -------------------------*/

#drw-nav .drw-other-blc .drw-shop-nav {
  margin-top: 1rem;
  display: block;
}

#drw-nav .drw-other-blc .drw-shop-nav>li {
  margin-top: 10px;
  text-align: center;
}

#drw-nav .drw-other-blc .drw-shop-nav>li:first-child {
  margin-top: 0;
}

#drw-nav .drw-other-blc .drw-shop-nav>li a {
  color: #fff;
  text-decoration: none;
  position: relative;
  display: inline-block;
  box-sizing: border-box;
}

#drw-nav .drw-other-blc .drw-shop-nav>li a>span {
  display: inline-block;
  padding-left: 30px;
  position: relative;
}

#drw-nav .drw-other-blc .drw-shop-nav>li a>span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

#drw-nav .drw-other-blc .drw-shop-nav>li a.online-shop>span::before {
  width: 20px;
  height: 21px;
  background-image: url(../img/common/icon_top_bar_cart.png);
}

#drw-nav .drw-other-blc .drw-shop-nav>li a.shop-list>span::before {
  width: 18px;
  height: 17px;
  top: 4px;
  background-image: url(../img/common/icon_top_bar_shop.png);
}

/* drw-contact -------------------------*/

#drw-nav .drw-other-blc .drw-contact .tel-blc {
  text-align: center;
}

#drw-nav .drw-other-blc .drw-contact .tel-blc>a {
  text-decoration: none;
  font-size: 150%;
  display: inline-block;
  padding-left: 25px;
  box-sizing: border-box;
  position: relative;
  color: #fff;
}

#drw-nav .drw-other-blc .drw-contact .tel-blc>a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 18px;
  height: 17px;
  background-image: url(../img/common/icon_tel.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

#drw-nav .drw-other-blc .drw-contact .tel-blc>.txt {
  color: #fff;
}

#drw-nav .drw-other-blc .btn-blc {
  margin-top: 1rem;
}

#drw-nav .drw-other-blc .btn-blc>a {
  border: 1px solid #fff;
  padding: 10px 10px;
  box-sizing: border-box;
  display: block;
  text-align: center;
  text-decoration: none;
  color: #fff;
}

#drw-nav .drw-other-blc .translateBlc {
  text-align: center;
  margin-top: 1rem;
  color: #fff;
}

#drw-nav .drw-other-blc .translateBlc .goog-te-combo {
  width: 100%;
  padding: 10px;
  margin: 0 0 5px;
}

#drw-nav .drw-other-blc .translateBlc .goog-te-gadget,
#drw-nav .drw-other-blc .translateBlc .goog-te-gadget span a {
  color: #fff !important;
}

#drw-nav .drw-sns {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  box-sizing: border-box;
}

#drw-nav .drw-sns>li .ig-img img,
#drw-nav .drw-sns>li .line-img img {
  max-width: 30px;
}

#drw-nav .drw-sns>li {
  margin-right: 10px;
}

#drw-nav .drw-sns>li:last-child {
  margin-right: 0;
}

#drw-nav .drw-sns>li .coupon-img {
  text-decoration: none;
  padding: 8px 20px 8px 40px;
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
  border-radius: 5px;
  font-size: 90%;
  display: inline-block;
  box-sizing: border-box;
  position: relative;
}

#drw-nav .drw-sns>li .coupon-img::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 10px;
  width: 18px;
  height: 18px;
  background-image: url(../img/common/icon_coupon.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (max-width:767px) {
  #drw-nav .drw-other-blc .drw-contact .tel-blc>a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
  }
}

/* --------------------------------------------------
 Wrapper
-------------------------------------------------- */

#wrapper {
  width: 100%;
  position: relative;
  box-sizing: border-box;
}

/* --------------------------------------------------
 header
-------------------------------------------------- */

@media screen and (min-width:1001px) {
  #header .txt-shop .online-shop>a:hover,
  #header .txt-shop .list-shop>a:hover,
  #header .bottom-blc .menu-blc .global-nav ul.parent>li a:hover,
  #header .bottom-blc .logo-blc .logo-img a:hover,
  #header .bottom-blc .sns-blc .sns-list>li a.ig-img:hover img,
  #header .bottom-blc .sns-blc .sns-list>li a.line-img:hover img {
    opacity: 0.5;
  }
  #header .contact-btn-blc>a:hover {
    background-color: #fff;
    color: #333;
  }
  #header .bottom-blc .sns-blc .sns-list>li a.coupon-img:hover {
    background-color: #fff;
    color: #000;
  }
  #header .bottom-blc .sns-blc .sns-list>li a.coupon-img:hover::before {
    background-image: url(../img/common/icon_coupon_hover.png);
  }
}

#header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  background-color: #fff;
  z-index: 10;
}

/* header top-bar ---------------------------------------------*/

#header .top-bar {
  background-color: #030303;
  padding: 6px 0px;
  box-sizing: border-box;
}

#header .top-bar .large-comm-blc {
  display: flex;
  align-items: center;
}

/* txt-blc01 ------------------------ */

#header .top-bar .large-comm-blc .txt-blc01 {
  width: 40%;
  box-sizing: border-box;
  padding-right: 1rem;
}

#header .top-bar .large-comm-blc .txt-blc01>.txt {
  color: #fff;
  font-size: 90%;
}

/* txt-blc02 ------------------------ */

#header .top-bar .large-comm-blc .txt-blc02 {
  display: flex;
  width: 70%;
  align-items: center;
}

#header .top-bar .large-comm-blc .txt-blc02>div:first-child {
  width: 40%;
  padding-right: 10px;
  box-sizing: border-box;
}

#header .top-bar .large-comm-blc .txt-blc02>div:last-child {
  width: 60%;
}

/* txt-blc02 > txt-shop ------- */

#header .txt-shop {
  display: flex;
  width: 100%;
  justify-content: center;
}

#header .txt-shop .online-shop>a {
  color: #fff;
  text-decoration: none;
  position: relative;
  padding-left: 30px;
  box-sizing: border-box;
  display: inline-block;
  transition: all ease-in 0.3s;
}

#header .txt-shop .online-shop>a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 20px;
  height: 21px;
  background-image: url(../img/common/icon_top_bar_cart.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin: auto 0;
}

#header .txt-shop .list-shop {
  padding-left: 20px;
  box-sizing: border-box;
}

#header .txt-shop .list-shop>a {
  color: #fff;
  text-decoration: none;
  position: relative;
  padding-left: 25px;
  box-sizing: border-box;
  display: inline-block;
  transition: all ease-in 0.3s;
}

#header .txt-shop .list-shop>a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 18px;
  height: 17px;
  background-image: url(../img/common/icon_top_bar_shop.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin: auto 0;
}

/* txt-blc02 > contact-blc ------- */

#header .top-bar .large-comm-blc .txt-blc02 .contact-blc {
  display: flex;
  align-items: center;
}

#header .contact-tel-blc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 200px;
  width: 100%;
  line-height: 1.5;
  justify-content: center;
  text-align: center;
}

#header .contact-tel-blc>a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  /* bottom: 0; */
  width: 18px;
  height: 17px;
  background-image: url(../img/common/icon_tel.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  /* margin: auto 0; */
}

#header .top-bar .large-comm-blc .txt-blc02 .contact-blc>div {
  width: calc(100% / 2);
  box-sizing: border-box;
}

#header .top-bar .large-comm-blc .txt-blc02 .contact-blc>div:first-child {
  padding-left: 0;
  padding-right: 10px;
}

/* txt-blc02 > contact-btn ------- */

#header .contact-btn-blc>a {
  color: #fff;
  text-decoration: none;
  border: 1px solid #ddd;
  padding: 8px 8px;
  line-height: 1;
  display: block;
  font-size: 90%;
  text-align: center;
  box-sizing: border-box;
  transition: all ease-in 0.3s;
}

/* txt-blc02 > contact-tel ------- */

#header .contact-tel-blc>a {
  text-decoration: none;
  color: #fff;
  padding-left: 20px;
  box-sizing: border-box;
  position: relative;
  display: inline-block;
}

#header .contact-tel-blc>.txt {
  color: #fff;
  font-size: 80%;
  display: block;
  width: 100%;
  line-height: 1;
}

/* txt-blc02 > translate-blc ------- */

#header .top-bar .large-comm-blc .txt-blc02 .contact-blc .translate-blc {
  color: #fff;
}

#header .top-bar .large-comm-blc .txt-blc02 .contact-blc .translate-blc .goog-te-combo {
  width: 100%;
  margin: 0;
}

#header .top-bar .large-comm-blc .txt-blc02 .contact-blc .translate-blc .goog-te-gadget>div {
  display: block;
  width: 100%;
  text-align: center;
}

#header .top-bar .large-comm-blc .txt-blc02 .contact-blc .translate-blc .goog-te-gadget,
#header .top-bar .large-comm-blc .txt-blc02 .contact-blc .translate-blc .goog-te-gadget span a {
  color: #fff !important;
}

/* header bottom-bar ---------------------------------------------*/

#header .bottom-blc {
  border-bottom: 1px solid #010101;
  padding: 20px 0;
  box-sizing: border-box;
}

#header .bottom-blc .large-comm-blc {
  display: flex;
  align-items: center;
}

/* logo-blc ------------------------ */

#header .bottom-blc .logo-blc {
  width: 15%;
  box-sizing: border-box;
}

#header .bottom-blc .logo-blc .logo-img a {
  display: inline-block;
  transition: all ease-in 0.3s;
}

#header .bottom-blc .logo-blc .logo-img img {
  max-height: 150px;
}

/* menu-blc ------------------------ */

#header .bottom-blc .menu-blc {
  width: 65%;
}

#header .bottom-blc .menu-blc .global-nav ul.parent {
  display: flex;
  justify-content: center;
}

#header .bottom-blc .menu-blc .global-nav ul.parent>li {
  padding: 0 10px;
  box-sizing: border-box;
  display: inline-block;
}

#header .bottom-blc .menu-blc .global-nav ul.parent>li a {
  text-decoration: none;
  font-family: "Yu Mincho Regular","Noto Serif JP", "游明朝", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "Times New Roman", serif !important;
  display: inline-block;
  transition: all ease-in 0.3s;
}

/* sns-blc ------------------------ */

#header .bottom-blc .sns-blc {
  width: 20%;
}

#header .bottom-blc .sns-blc .sns-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

#header .bottom-blc .sns-blc .sns-list>li {
  margin-right: 20px;
}

#header .bottom-blc .sns-blc .sns-list>li:last-child {
  margin-right: 0;
}

#header .bottom-blc .sns-blc .sns-list>li a.ig-img img,
#header .bottom-blc .sns-blc .sns-list>li a.line-img img {
  max-width: 30px;
  display: inline-block;
  transition: all ease-in 0.3s;
}

#header .bottom-blc .sns-blc .sns-list>li a.coupon-img {
  text-decoration: none;
  padding: 5px 15px 5px 35px;
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
  border-radius: 5px;
  font-size: 90%;
  display: inline-block;
  box-sizing: border-box;
  position: relative;
  transition: all ease-in 0.3s;
}

#header .bottom-blc .sns-blc .sns-list>li a.coupon-img::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0px;
  bottom: 0;
  width: 18px;
  height: 18px;
  background-image: url(../img/common/icon_coupon.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin: auto 0;
  transition: all ease-in 0.3s;
}

@media screen and (max-width:1366px) {
  #header .top-bar .large-comm-blc .txt-blc01 {
    width: 25%;
  }
  #header .top-bar .large-comm-blc .txt-blc02 {
    width: 75%;
  }
}

@media screen and (max-width:1200px) {
  #header {
    position: fixed;
  }
  #header .top-bar {
    display: none;
  }
  #header .bottom-blc .menu-blc {
    display: none;
  }
  #header .bottom-blc .sns-blc {
    display: none;
  }
  #header .bottom-blc .logo-blc {
    width: 100%;
    text-align: center;
    padding: 0 40px;
  }
  #header .bottom-blc {
    padding: 10px 0;
  }
}

/* --------------------------------------------------
 keyvisual
-------------------------------------------------- */
#keyvisual {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

#keyvisual .main-path {
  position: relative;
  margin-top: 8px;
}

#keyvisual .main-path a {
  text-decoration: none;
  transition: all 300ms ease-in-out;
}

#keyvisual .main-path a:hover {
  opacity: .7;
}

#keyvisual .main-img {
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  padding-top: 2rem;
}

#keyvisual .main-img > .inner {
  max-width: 1200px;
  width: 94%;
}

#keyvisual .main-img > .inner > .ttl {
  font-size: 260%;
  font-weight: 600;
  line-height: 1.5;
}

#keyvisual .main-img > .inner > .sub {
  font-size: 120%;
}

@media screen and (max-width:1000px) {
  #keyvisual .main-img > .inner > .ttl {
    font-size: 240%;
  }
  #keyvisual .main-img > .inner > .sub {
    font-size: 110%;
  }
}

/* --------------------------------------------------
 contents
-------------------------------------------------- */
#contents {
  padding-top: 128px;
  box-sizing: border-box;
}

@media screen and (max-width:1200px) {
  #contents {
    padding-top: 62px;
  }
}

/* --------------------------------------------------
 page-top
-------------------------------------------------- */
@media screen and (min-width:1001px) {
  #page-top a:hover {
    opacity: 0.5;
  }
}

#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  border-radius: 5px;
  z-index: 1;
}

#page-top a {
  color: #fff;
  width: 50px;
  height: 50px;
  background-color: #fff8f4;
  border: 1px solid #d7c7be;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  position: relative;
  transition: all ease-in 0.3s;
}

#page-top a::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 14px solid #000;
}

@media screen and (max-width:767px) {
  #page-top {
    bottom: 10px;
    right: 10px;
  }

  #page-top a {
    width: 40px;
    height: 40px;
  }

  #page-top a::before {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 10px solid #000;
  }
}


/* --------------------------------------------------
 service-list
-------------------------------------------------- */
@media screen and (min-width:1001px) {
  .service-list li a:hover {
    background-color: #5e3f32;
    color: #fff;
  }
  .service-list li:nth-child(1) a:hover>span::before {
    background-image: url(../img/common/service_list_icon01_hover.png);
  }
  .service-list li:nth-child(2) a:hover>span::before {
    background-image: url(../img/common/service_list_icon02_hover.png);
  }
  .service-list li:nth-child(3) a:hover>span::before {
    background-image: url(../img/common/service_list_icon03_hover.png);
  }
  .service-list li:nth-child(4) a:hover>span::before {
    background-image: url(../img/common/service_list_icon04_hover.png);
  }
  .service-list li:nth-child(5) a:hover>span::before {
    background-image: url(../img/common/service_list_icon05_hover.png);
  }
  .service-list li:nth-child(6) a:hover>span::before {
    background-image: url(../img/common/service_list_icon06_hover.png);
  }
  .service-list li:nth-child(7) a:hover>span::before {
    background-image: url(../img/common/service_list_icon07_hover.png);
  }
  .service-list li:nth-child(8) a:hover>span::before {
    background-image: url(../img/common/service_list_icon08_hover.png);
  }
  .service-list li:nth-child(9) a:hover>span::before {
    background-image: url(../img/common/service_list_icon09_hover.png);
  }
  
  
  
  .service-list li a:hover>span::after {
    background-image: url(../img/common/list_arrow_icon_hover.png);
  }
}

.service-list li a {
  text-decoration: none;
  display: block;
  border: 1px solid #5e3f32;
  padding: 1.5rem 1rem;
  box-sizing: border-box;
  transition: all ease-in 0.3s;
}

.service-list li a>span {
  padding: 0 25px 0 40px;
  box-sizing: border-box;
  display: block;
  position: relative;
}

.service-list li a>span::before,
.service-list li a>span::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
}

.service-list li a>span::before {
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  transition: all ease-in 0.3s;
}

.service-list li:nth-child(1) a>span::before {
  background-image: url(../img/common/service_list_icon01.png);
}

.service-list li:nth-child(2) a>span::before {
  background-image: url(../img/common/service_list_icon02.png);
}

.service-list li:nth-child(3) a>span::before {
  background-image: url(../img/common/service_list_icon03.png);
}

.service-list li:nth-child(4) a>span::before {
  background-image: url(../img/common/service_list_icon04.png);
}

.service-list li:nth-child(5) a>span::before {
  background-image: url(../img/common/service_list_icon05.png);
}

.service-list li:nth-child(6) a>span::before {
  background-image: url(../img/common/service_list_icon06.png);
}

.service-list li:nth-child(7) a>span::before {
  background-image: url(../img/common/service_list_icon07.png);
}

.service-list li:nth-child(8) a>span::before {
  background-image: url(../img/common/service_list_icon08.png);
}

.service-list li:nth-child(9) a>span::before {
  background-image: url(../img/common/service_list_icon09.png);
}



.service-list li a>span::after {
  background-image: url(../img/common/list_arrow_icon.png);
  top: 4px;
  right: 0;
  width: 19px;
  height: 16px;
  transition: all ease-in 0.3s;
}

@media screen and (max-width:1000px) {
  .service-list li a {
    font-size: 90%;
    padding: 1rem 10px;
  }
  .service-list li a>span {
    padding-left: 35px;
  }
}

@media screen and (max-width:767px) {
  .service-list li {
    margin-top: 1rem;
  }
  .service-list li:nth-child(3n+3) {
    margin-right: 1rem;
  }
  .service-list li:nth-child(2n+2) {
    margin-right: 0;
  }
  .service-list li:nth-child(-n+3) {
    margin-top: 1rem;
  }
  .service-list li:nth-child(-n+2) {
    margin-top: 0;
  }
  .service-list li a>span::before {
    top: -2px;
  }
  .service-list li a {
    font-size: 100%;
  }
}

@media screen and (max-width:480px) {
  .service-list li:nth-child(-n+2) {
    margin-top: 1rem;
  }
  .service-list li:first-child {
    margin-top: 0;
  }
}

/* --------------------------------------------------
 footer
-------------------------------------------------- */
@media screen and (min-width:1001px) {
  #footer .menu-blc>ul li a:hover,
  #footer .sns-blc>ul li a:hover,
  #footer .logo-blc .img a:hover {
    opacity: 0.5;
  }
}

/* menu-blc ---------------------------------- */

#footer .logo-blc .img {
  display: block;
  text-align: center;
}

#footer .logo-blc .img a {
  display: inline-block;
  transition: all ease-in 0.3s;
}

/* menu-blc ---------------------------------- */

#footer .menu-blc {
  margin-top: 2rem;
}

#footer .menu-blc>ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#footer .menu-blc>ul li {
  margin: 10px 10px;
  line-height: 1;
}

#footer .menu-blc>ul li a {
  text-decoration: none;
  display: inline-block;
  padding-left: 15px;
  position: relative;
  line-height: 1;
  box-sizing: border-box;
  transition: all ease-in 0.3s;
}

#footer .menu-blc>ul li a::before {
  content: "";
  background-image: url(../img/common/footer_list_icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 0;
  top: 3px;
  width: 10px;
  height: 10px;
}

/* sns-blc ---------------------------------- */

#footer .sns-blc {
  margin-top: 2rem;
}

#footer .sns-blc>ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

#footer .sns-blc>ul li {
  margin: 0 2rem;
}

#footer .sns-blc>ul li a {
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: all ease-in 0.3s;
}

#footer .sns-blc>ul li figure>figcaption {
  margin-top: 10px;
  display: block;
  line-height: 1.3;
  font-size: 75%;
}

/* txt-blc ---------------------------------- */

#footer .txt-blc {
  margin-top: 2rem;
}

#footer .txt-blc>.txt {
  text-align: center;
  font-size: 80%;
  color: #7b7b7b;
    line-height: 1.5;
}

/* copy-right ---------------------------------- */

#footer .copy-right {
  background-color: #ece9e0;
  padding: 10px 10px;
  box-sizing: border-box;
  margin-top: 2rem;
}

#footer .copy-right .txt {
  text-align: center;
  font-size: 90%;
}

@media screen and (max-width:640px) {
  #footer .sns-blc>ul li {
    margin: 0 2%;
  }
}



/* --------------------------------------------------
 langBox
-------------------------------------------------- */
.langBox{
/*
  position: fixed;
  z-index: 999;
  bottom: 70px;
  right: 0px;
  box-sizing: border-box;
  width: 195px;
*/
  background: #F6F6F6;
  border-radius: 8px;
/*
  box-shadow: 0px 0px 2px #E5E5E5;
  border-top-left-radius: 8px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 0px;
*/
}
#header .langBox{
      width: 200px !important;
}
#drw-nav .langBox{
    padding: 2px 0;
    margin: 10px 0 0;
}


.langBox .langflex,.langBox .langflex ul.flag{
  display: flex;
  justify-content: center;
  align-items: center;
}
.langBox .langflex{
  margin: 5px;
}
.langBox .langflex ul.flag li>div{
  cursor: pointer;
}
.langBox .langflex .txt .txt_a{
  color: #333;
  line-height: 1.4;
  text-decoration: underline;
  font-size: 12px;
  padding-left: 5px;
  cursor: pointer;
}
.langBox .langflex .txt .txt_a:hover{
  opacity: 0.5;
}
@media screen and (max-width: 700px) {
/*
  .langBox{
  position: static;
  width: 100%;
  box-shadow: 0px 0px 0px #E5E5E5;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  padding: 3px 0;
  }
  .langBox .langflex{
  margin: 0;
  }
*/
}



