@charset "UTF-8";
/*! このcssはsass（sass/同名の.scssファイル）からコンパイルされています。修正時はこのcssを直接いじらないようにお願いします  */
body {
  font-family: "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  color: #333333;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  font-size: 16px;
  letter-spacing: 0.03em;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

@media only screen and (max-width: 960px) {
  img {
    border: 0;
    max-width: 100%;
    height: auto;
  }
}

a {
  color: #333333;
  text-decoration: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

a:hover {
  opacity: 0.7;
}

a img {
  border: none;
}

i {
  padding: 0 5px;
}

ul {
  letter-spacing: -1em;
}

ul li {
  letter-spacing: 0;
  list-style: none;
}

.pc {
  display: block;
}

@media only screen and (max-width: 960px) {
  .pc {
    display: none;
  }
}

.tablet {
  display: none;
}

@media only screen and (max-width: 960px) {
  .tablet {
    display: block;
  }
}

@media only screen and (max-width: 480px) {
  .tablet {
    display: none;
  }
}

.sp {
  display: none;
}

@media only screen and (max-width: 960px) {
  .sp {
    display: block;
  }
}

.ssp {
  display: none;
}

@media only screen and (max-width: 480px) {
  .ssp {
    display: block;
  }
}

/*PC改行加える*/
.br-pc {
  display: inherit;
}

@media only screen and (max-width: 960px) {
  .br-pc {
    display: none;
  }
}

/*PC改行無効*/
.br_sp {
  display: none;
}

@media only screen and (max-width: 960px) {
  .br_sp {
    display: block;
  }
}

.br_ssp {
  display: none;
}

@media only screen and (max-width: 480px) {
  .br_ssp {
    display: block;
  }
}

/************************************

wrapper

************************************/
.wrapper {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
}

.wrapper::after {
  content: "";
  display: block;
  clear: both;
}

/************************************

.list(flexbox)

************************************/
.list {
  display: block;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.list::after {
  content: "";
  display: block;
  clear: both;
}

.list article {
  width: auto;
}

/************************************

header

************************************/
header {
  width: 100%;
  background-color: #fff;
  position: fixed;
  z-index: 20;
  -webkit-transition: .5s;
  transition: .5s;
}

@media print {
  header {
    position: relative;
  }
}

header #head_top {
  width: 100%;
  border-bottom: 1px solid #ccc;
  padding: 10px 2%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media only screen and (max-width: 960px) {
  header #head_top {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

header #head_top .soryo {
  font-size: 12px;
  width: calc(100% - 600px);
}

@media only screen and (max-width: 960px) {
  header #head_top .soryo {
    display: none;
  }
}

header #head_top ul {
  width: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media only screen and (max-width: 960px) {
  header #head_top ul {
    width: 100%;
    padding-right: 50px;
  }
}

header #head_top ul li {
  font-size: 12px;
  margin: 0 0 0 15px;
}

header #head_top ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

header #head_top ul li .icon {
  width: 20px;
  margin: 0 3px 0 0;
}

@media only screen and (max-width: 960px) {
  header #head_top ul li .icon {
    width: 18px;
  }
}

header #head_top ul li p {
  width: calc(100%-23px);
}

@media only screen and (max-width: 960px) {
  header #head_top ul li p {
    display: none;
  }
}

header #head_main {
  width: 100%;
  padding: 20px 2%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}

@media only screen and (max-width: 960px) {
  header #head_main {
    padding: 10px 2%;
  }
}

header #head_main .logo {
  width: 220px;
  margin: 0 30px 0 0;
}

@media only screen and (max-width: 960px) {
  header #head_main .logo {
    width: 150px;
    margin: 0 10px 0 0;
  }
}

header #head_main nav {
  width: calc(100% - 220px - 30px);
  max-width: 940px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "游明朝", "YuMincho", "HGS明朝E", serif;
}

@media only screen and (max-width: 960px) {
  header #head_main nav {
    width: calc(100% - 170px);
  }
}

header #head_main nav .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: calc(100% - 170px - 185px);
}

@media only screen and (max-width: 960px) {
  header #head_main nav .item {
    width: calc(100% - 120px);
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

@media only screen and (max-width: 570px) {
  header #head_main nav .item {
    width: 100%;
  }
}

header #head_main nav .item li {
  width: 24%;
  text-align: center;
  font-size: 13px;
  line-height: 1.2;
}

@media only screen and (max-width: 960px) {
  header #head_main nav .item li {
    max-width: 120px;
    font-size: 10px;
    width: 33.3%;
  }
}

header #head_main nav .item li:last-child {
  width: 28%;
}

@media only screen and (max-width: 960px) {
  header #head_main nav .item li:last-child {
    display: none;
  }
}

header #head_main nav .item li strong {
  font-size: 19px;
  font-weight: 500;
}

@media only screen and (max-width: 960px) {
  header #head_main nav .item li strong {
    font-size: 15px;
  }
}

@media only screen and (max-width: 420px) {
  header #head_main nav .item li strong {
    display: block;
  }
}

header #head_main nav .item li label {
  display: block;
  padding: 15px 0;
  position: relative;
  cursor: pointer;
}

@media only screen and (max-width: 960px) {
  header #head_main nav .item li label {
    padding: 10px 0 15px;
  }
}

@media only screen and (max-width: 420px) {
  header #head_main nav .item li label {
    padding: 5px 0 15px;
  }
}

header #head_main nav .item li label::before {
  position: absolute;
  bottom: 0;
  left: 0px;
  right: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  background-image: url("../images/yaji_down.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}

header #head_main nav .item input {
  display: none;
}

header #head_main nav .kodawari {
  border-left: 1px solid #ccc;
  font-size: 15px;
  width: 170px;
  text-align: center;
  padding: 10px 0;
}

@media only screen and (max-width: 960px) {
  header #head_main nav .kodawari {
    width: 120px;
    font-size: 12px;
    letter-spacing: 0;
  }
}

@media only screen and (max-width: 570px) {
  header #head_main nav .kodawari {
    display: none;
  }
}

header #head_main nav .search {
  width: 185px;
}

@media only screen and (max-width: 960px) {
  header #head_main nav .search {
    position: absolute;
    top: -32px;
    left: 5px;
  }
}

@media only screen and (max-width: 480px) {
  header #head_main nav .search {
    display: none;
  }
}

header #head_main nav .search .list {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

header #head_main nav .search .icon {
  width: 20px;
  margin: 0 5px 0 0;
}

@media only screen and (max-width: 960px) {
  header #head_main nav .search .icon {
    width: 18px;
  }
}

header #head_main nav .search .form {
  width: 160px;
}

header #head_main nav .search .form input {
  padding: 7px;
  font-size: 13px;
  width: 100%;
  border: 1px solid #ccc;
}

@media only screen and (max-width: 960px) {
  header #head_main nav .search .form input {
    padding: 5px;
  }
}

header #head_main .submenu {
  position: absolute;
  top: calc(100% - 20px);
  z-index: 10;
  width: 100%;
  left: 0;
  opacity: 0;
  height: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  overflow: hidden;
  padding: 0;
}

header #head_main .item li:hover .submenu {
  opacity: 1;
  height: auto;
  padding: 20px 0 0;
}

@media only screen and (max-width: 960px) {
  header #head_main .item li:hover .submenu {
    opacity: 0;
    height: 0;
    padding: 0;
  }
}

@media only screen and (max-width: 960px) {
  header #head_main .item li input[type="checkbox"]:checked + .submenu {
    opacity: 1;
    height: auto;
    padding: 20px 0 0;
  }
}

header #head_main .submenu_waku {
  background-image: url("../images/back_beige.jpg");
  padding: 50px 0;
  text-align: center;
}

@media only screen and (max-width: 960px) {
  header #head_main .submenu_waku {
    padding: 30px 0;
  }
}

header #head_main .submenu_waku h3 {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "游明朝", "YuMincho", "HGS明朝E", serif;
  font-size: 24px;
  display: inline-block;
  border-bottom: 1px solid #333333;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 960px) {
  header #head_main .submenu_waku h3 {
    font-size: 18px;
  }
}

header #head_main .submenu_waku ul {
  width: 90%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

header #head_main .submenu_waku ul li {
  font-size: 16px;
  text-align: left;
  padding: 0;
}

@media only screen and (max-width: 960px) {
  header #head_main .submenu_waku ul li {
    font-size: 14px;
    max-width: 100%;
  }
}

header #head_main .submenu_waku ul li img {
  margin-bottom: 6px;
}

header #head_main .submenu_waku ul li a {
  padding: 0;
}

header #head_main .submenu_waku ul li a::before {
  position: absolute;
  left: auto;
  right: 0;
  background-image: url("../images/yaji_right.svg");
}

header #head_main .sozai .submenu_waku ul, header #head_main .original .submenu_waku ul {
  max-width: 700px;
}

header #head_main .sozai .submenu_waku ul li, header #head_main .original .submenu_waku ul li {
  width: 46%;
  margin: 0 2%;
}

header #head_main .yoto .submenu_waku ul {
  max-width: 1100px;
}

header #head_main .yoto .submenu_waku ul li {
  width: 23%;
  margin: 0px 1% 20px;
}

@media only screen and (max-width: 480px) {
  header #head_main .yoto .submenu_waku ul li {
    width: 48%;
    margin: 0px 1% 10px;
  }
  header #head_main .yoto .submenu_waku ul li:nth-child(5), header #head_main .yoto .submenu_waku ul li:nth-child(6), header #head_main .yoto .submenu_waku ul li:nth-child(7), header #head_main .yoto .submenu_waku ul li:nth-child(8) {
    width: 23%;
    font-size: 12px;
  }
}

header #head_main .katachi .submenu_waku ul {
  max-width: 1100px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

header #head_main .katachi .submenu_waku ul li {
  width: 16%;
  margin: 0px 2%;
  text-align: center;
}

@media only screen and (max-width: 480px) {
  header #head_main .katachi .submenu_waku ul li {
    width: 29.3%;
    margin: 0 2% 10px;
  }
}

header #head_main .katachi .submenu_waku ul li a::before {
  display: none;
}

/************************************

footer

************************************/
footer {
  color: #fff;
  /************************************

#foot_guide

************************************/
  /************************************

#foot_main

************************************/
}

footer a {
  color: #fff;
}

footer #foot_guide {
  background-color: #321500;
  padding: 60px 0;
}

@media only screen and (max-width: 960px) {
  footer #foot_guide {
    padding: 40px 0;
  }
}

footer #foot_guide h2 {
  font-size: 15px;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "游明朝", "YuMincho", "HGS明朝E", serif;
  text-align: center;
  font-weight: normal;
  margin: 0 0 30px;
}

@media only screen and (max-width: 960px) {
  footer #foot_guide h2 {
    margin: 0 0 20px;
  }
}

footer #foot_guide h2 .eng {
  display: block;
  font-family: "EB Garamond", serif;
  font-size: 36px;
}

@media only screen and (max-width: 960px) {
  footer #foot_guide h2 .eng {
    font-size: 24px;
  }
}

footer #foot_guide ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

footer #foot_guide ul li {
  width: 31.3%;
  margin: 0 1% 2%;
  background-color: #543c2b;
}

@media only screen and (max-width: 960px) {
  footer #foot_guide ul li {
    width: 48%;
  }
}

footer #foot_guide ul li a {
  display: block;
  padding: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (max-width: 960px) {
  footer #foot_guide ul li a {
    padding: 10px;
  }
}

footer #foot_guide ul li .icon {
  width: 20px;
}

footer #foot_guide ul li p {
  width: calc(100% - 20px);
  font-weight: bold;
  text-align: center;
  font-size: 15px;
}

@media only screen and (max-width: 960px) {
  footer #foot_guide ul li p {
    font-size: 14px;
  }
}

@media only screen and (max-width: 480px) {
  footer #foot_guide ul li p {
    font-size: 12px;
  }
}

footer #foot_main {
  padding: 60px 0;
  background-color: #000;
}

@media only screen and (max-width: 960px) {
  footer #foot_main {
    padding: 40px 0;
  }
}

footer #foot_main .wrapper {
  max-width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

footer #foot_main .text {
  width: 320px;
}

@media only screen and (max-width: 960px) {
  footer #foot_main .text {
    width: 100%;
    margin: 0 0 40px;
    text-align: center;
  }
}

footer #foot_main .text h2 {
  margin: 0 0 20px;
}

@media only screen and (max-width: 960px) {
  footer #foot_main .text h2 img {
    width: 170px;
  }
}

footer #foot_main .text p {
  font-size: 14px;
}

footer #foot_main .text .tel {
  font-family: "EB Garamond", serif;
  font-size: 26px;
  margin: 5px 0 15px;
}

@media only screen and (max-width: 960px) {
  footer #foot_main .text .tel {
    font-size: 20px;
  }
}

footer #foot_main .text .bt a {
  border: 1px solid #fff;
  font-size: 13px;
  display: inline-block;
  line-height: 1;
  padding: 12px 50px 12px 30px;
  position: relative;
}

footer #foot_main .text .bt a::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 10px;
  width: 12px;
  height: 1px;
  background-color: #fff;
  content: "";
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

footer #foot_main .text .bt a:hover {
  opacity: 1;
  background-color: #fff;
  color: #333333;
}

footer #foot_main .text .bt a:hover::before {
  background-color: #333333;
  -webkit-transform: translateX(5px);
  transform: translateX(5px);
}

footer #foot_main nav {
  width: calc( 100% - 320px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media only screen and (max-width: 960px) {
  footer #foot_main nav {
    width: 100%;
  }
}

footer #foot_main nav article {
  width: 23%;
  margin: 0 1%;
}

@media only screen and (max-width: 480px) {
  footer #foot_main nav article {
    width: 100%;
    margin: 0 0 20px;
  }
}

footer #foot_main nav article h3 {
  font-size: 17px;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "游明朝", "YuMincho", "HGS明朝E", serif;
  margin: 0 0 20px;
}

@media only screen and (max-width: 960px) {
  footer #foot_main nav article h3 {
    font-size: 15px;
    margin: 0 0 12px;
  }
}

@media only screen and (max-width: 480px) {
  footer #foot_main nav article ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

footer #foot_main nav article ul li {
  position: relative;
  font-size: 14px;
  line-height: 1.3;
  margin: 0 0 10px;
  padding-left: 20px;
}

@media only screen and (max-width: 960px) {
  footer #foot_main nav article ul li {
    font-size: 13px;
    padding-left: 10px;
  }
}

@media only screen and (max-width: 480px) {
  footer #foot_main nav article ul li {
    margin: 0 20px 10px 0;
  }
}

footer #foot_main nav article ul li::before {
  position: absolute;
  top: 6px;
  left: 0px;
  width: 8px;
  height: 1px;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  content: "";
}

@media only screen and (max-width: 960px) {
  footer #foot_main nav article ul li::before {
    width: 5px;
  }
}

footer #foot_main nav article ul li:hover::before {
  -webkit-transform: translateX(3px);
  transform: translateX(3px);
}

footer #foot_main .copyright {
  width: 100%;
  margin: 40px 0 0;
  text-align: center;
  font-size: 11px;
  font-family: "EB Garamond", serif;
}

/************************************

PageUP

************************************/
#pageup {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 0;
  right: 0;
  z-index: 10;
  font-size: 8px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media only screen and (max-width: 960px) {
  #pageup {
    bottom: 0px;
    right: 0px;
    font-size: 4px;
  }
}

#pageup.none {
  display: none;
}

#pageup a {
  width: 50px;
  display: block;
  text-decoration: none;
  line-height: 100%;
  color: #777;
}

#pageup i {
  font-size: 40px;
  line-height: 0.8;
}

@media only screen and (max-width: 960px) {
  #pageup i {
    font-size: 36px;
  }
}

/************************************

main

************************************/
#main {
  display: block;
  padding-top: 141px;
}

@media only screen and (max-width: 960px) {
  #main {
    padding-top: 102px;
  }
}

@media only screen and (max-width: 420px) {
  #main {
    padding-top: 109px;
  }
}

#main section {
  opacity: 0;
  transform: translate(0, 0px);
  -webkit-transform: translate(0, 0px);
  -webkit-transition: 1s;
  transition: 1s;
}

#main section.mv07 {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}

@media print {
  #main section {
    opacity: 1;
  }
}

/*移動＋フェードイン表示*/
.list-mv07:not(:target) {
  opacity: 1\9;
  /*IE9対策*/
}

.beige {
  background-image: url("/images/back_beige.jpg");
  padding: 70px 0;
}

/************************************

.second_page

************************************/
.second_page {
  padding-top: 50px;
}

@media only screen and (max-width: 960px) {
  .second_page {
    padding-top: 30px;
  }
}

/************************************

.page_title

************************************/
.page_title {
  margin: 0 0 70px;
}

@media only screen and (max-width: 960px) {
  .page_title {
    margin: 0 0 40px;
  }
}

.page_title h1, .page_title h2 {
  font-size: 15px;
  font-weight: normal;
  text-align: center;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "游明朝", "YuMincho", "HGS明朝E", serif;
}

.page_title h1 .eng, .page_title h2 .eng {
  display: block;
  font-family: "EB Garamond", serif;
  font-size: 36px;
}

@media only screen and (max-width: 960px) {
  .page_title h1 .eng, .page_title h2 .eng {
    font-size: 28px;
  }
}

/************************************

#pickup

************************************/
#pickup {
  padding: 70px 0;
}

@media only screen and (max-width: 960px) {
  #pickup {
    padding: 40px 0;
  }
}

#pickup .page_title {
  margin-bottom: 40px;
}

@media only screen and (max-width: 960px) {
  #pickup .page_title {
    margin-bottom: 30px;
  }
}

#pickup .pickup_slide img {
  border-radius: 3px;
}

#pickup .pickup_slide .waku {
  text-align: center;
  margin: 0 5px;
  position: relative;
}

#pickup .pickup_slide .waku a {
  display: block;
}

#pickup .pickup_slide .waku .text {
  position: absolute;
  z-index: 2;
  width: 100%;
  top: 35%;
  left: 0;
  text-align: center;
}

#pickup .pickup_slide .waku h4 {
  display: inline-block;
  background-color: #333333;
  color: #fff;
  padding: 10px 20px;
  font-size: 14px;
}

/************************************

slick common

************************************/
/* Arrows */
.slick-prev,
.slick-next {
  width: 30px;
  height: 30px;
  z-index: 3;
}

.slick-prev:before,
.slick-next:before {
  font-family: 'FontAwesome';
  font-size: 30px;
  line-height: 1;
  opacity: .75;
  color: #ccc;
}

.slick-prev {
  left: 20px;
}

@media only screen and (max-width: 960px) {
  .slick-prev {
    left: 5px;
  }
}

.slick-prev:before {
  content: '\f104';
}

.slick-next {
  right: 20px;
}

@media only screen and (max-width: 960px) {
  .slick-next {
    right: 5px;
  }
}

.slick-next:before {
  content: '\f105';
}

/************************************

.bt

************************************/
.bt a {
  display: inline-block;
  font-size: 13px;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "游明朝", "YuMincho", "HGS明朝E", serif;
  padding: 10px 70px 10px 50px;
  position: relative;
  border: 1px solid #333333;
}

@media only screen and (max-width: 960px) {
  .bt a {
    padding: 7px 30px 7px 20px;
    font-size: 11px;
  }
}

.bt a::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 12px;
  width: 12px;
  height: 1px;
  background-color: #333333;
  content: "";
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media only screen and (max-width: 960px) {
  .bt a::before {
    right: 7px;
    width: 7px;
  }
}

.bt a:hover {
  background-color: #333333;
  color: #fff;
  opacity: 1;
}

.bt a:hover::before {
  right: 8px;
  background-color: #fff;
}

@media only screen and (max-width: 960px) {
  .bt a:hover::before {
    right: 7px;
  }
}

/************************************

raf

************************************/
.raf {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.raf img {
  width: 100%;
  height: auto;
}

.raf a:hover {
  opacity: 1;
}

/*!------------------------------------*\
    Base
\*!------------------------------------*/
.drawer-nav {
  position: fixed;
  z-index: 1000;
  top: 0;
  overflow: hidden;
  width: 80vw;
  color: #333333;
  height: 100%;
  background-color: #fff;
}

.drawer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

/*! overlay */
.drawer-overlay {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.drawer-open .drawer-overlay {
  display: block;
}

.drawer--right.drawer-open .drawer-nav,
.drawer--right .drawer-hamburger,
.drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
  right: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*!------------------------------------*\
    Right
\*!------------------------------------*/
.drawer--right .drawer-nav {
  right: -80vw;
  -webkit-transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.drawer--right.drawer-open .drawer-nav,
.drawer--right .drawer-hamburger,
.drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
  right: 0;
}

.drawer--right.drawer-open .drawer-hamburger {
  right: 80vw;
}

/*!------------------------------------*\
    Hamburger
\*!------------------------------------*/
.drawer-hamburger {
  position: fixed;
  z-index: 104;
  top: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 40px;
  padding-top: 8px;
  padding-right: 8px;
  padding-bottom: 18px;
  padding-left: 8px;
  background-color: #333333;
  -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  border: 0;
  outline: 0;
}

.drawer-hamburger:hover {
  cursor: pointer;
  background-color: #333333;
}

.drawer-hamburger-icon {
  position: relative;
  display: block;
  margin-top: 10px;
}

.drawer-hamburger-icon,
.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  width: 24px;
  height: 2px;
  -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  background-color: #fff;
}

.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  position: absolute;
  top: -8px;
  left: 0;
  content: ' ';
}

.drawer-hamburger-icon:after {
  top: 8px;
}

.drawer-open .drawer-hamburger-icon {
  background-color: transparent;
}

.drawer-open .drawer-hamburger-icon:before,
.drawer-open .drawer-hamburger-icon:after {
  top: 0;
}

.drawer-open .drawer-hamburger-icon:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.drawer-open .drawer-hamburger-icon:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/*!------------------------------------*\
    accessibility
\*!------------------------------------*/
/*!
 * Only display content to screen readers
 * See: http://a11yproject.com/posts/how-to-hide-content
 */
.sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

/*!
 * Use in conjunction with .sr-only to only display content when it's focused.
 * Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
 * Credit: HTML5 Boilerplate
 */
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  overflow: visible;
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
}

/*!------------------------------------*\
    Container
\*!------------------------------------*/
.drawer-menu {
  padding: 8%;
}

.drawer-menu .logo {
  width: 170px;
  margin: 0 auto;
}

.drawer-menu .search {
  margin: 10px 0;
  padding: 10px;
  background-color: #f2efea;
}

.drawer-menu .search .list {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.drawer-menu .search .icon {
  width: 20px;
  margin: 0 5px 0 0;
}

.drawer-menu .search .form {
  width: calc(100% - 25px);
}

.drawer-menu .search .form input {
  padding: 6px;
  font-size: 14px;
  border: 1px solid #ccc;
  width: 100%;
}

.drawer-menu nav .item article {
  border-bottom: 1px solid #ccc;
}

.drawer-menu nav .item article:first-child {
  border-top: 1px solid #ccc;
}

.drawer-menu nav .item article label {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "游明朝", "YuMincho", "HGS明朝E", serif;
  font-size: 15px;
  display: block;
  padding: 12px 5px;
}

.drawer-menu nav .item article label strong {
  font-size: 18px;
  font-weight: normal;
}

.drawer-menu nav .item article input[type="checkbox"] {
  display: none;
}

.drawer-menu nav .item article ul {
  opacity: 0;
  height: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
}

.drawer-menu nav .item article input[type="checkbox"]:checked + ul {
  margin: 0 0 0 5px;
  opacity: 1;
  height: auto;
}

.drawer-menu nav .item article li {
  margin: 0 0 0px;
  font-size: 14px;
  text-align: left;
  position: relative;
}

.drawer-menu nav .item article li a {
  display: block;
  padding: 7px 0;
}

.drawer-menu nav .item article li a::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0px;
  color: #b6641c;
  font-family: 'FontAwesome';
  content: "\f105";
}

.drawer-menu nav .etc {
  margin-top: 12px;
}

.drawer-menu nav .etc li {
  margin: 0 0 0px;
  font-size: 14px;
  text-align: left;
  position: relative;
}

.drawer-menu nav .etc li a {
  display: block;
  padding: 7px 5px;
}

.drawer-menu nav .etc li a::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0px;
  color: #b6641c;
  font-family: 'FontAwesome';
  content: "\f105";
}

.drawer-menu .tel {
  font-family: "EB Garamond", serif;
  font-size: 20px;
  text-align: center;
  margin: 15px 0 0;
  padding: 12px 0;
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333333;
}

/************************************

#top	

************************************/
#top {
  /************************************

#mainimage

************************************/
  /************************************

#original

************************************/
  /************************************

#top_news

************************************/
  /************************************

#top_ranking

************************************/
  /************************************

#top_sozai

************************************/
  /************************************

#top_yoto

************************************/
  /************************************

#top_katachi

************************************/
  /************************************

#pickup

************************************/
  /************************************

#top_kodawari

************************************/
}

#top #mainimage {
  margin-bottom: 100px;
}

@media only screen and (max-width: 960px) {
  #top #mainimage {
    margin-bottom: 50px;
  }
}

#top #mainimage .waku {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  color: #fff;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "游明朝", "YuMincho", "HGS明朝E", serif;
}

#top #mainimage .waku .image {
  overflow: hidden;
  width: 100%;
  height: 100%;
  background: #fff;
}

#top #mainimage .waku .image img {
  width: 100%;
  display: block;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

#top #mainimage .waku .image img:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  opacity: 1;
}

#top #mainimage .waku a {
  display: block;
  color: #fff;
}

#top #mainimage .waku .large {
  position: relative;
}

#top #mainimage .waku .large h2 {
  position: absolute;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  bottom: 20px;
  font-size: 28px;
  font-weight: normal;
}

@media only screen and (max-width: 960px) {
  #top #mainimage .waku .large h2 {
    font-size: 20px;
    bottom: 10px;
  }
}

#top #mainimage .waku ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#top #mainimage .waku ul li {
  position: relative;
}

#top #mainimage .waku ul li h3 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 18px;
  font-weight: normal;
}

@media only screen and (max-width: 960px) {
  #top #mainimage .waku ul li h3 {
    font-size: 15px;
    bottom: 10px;
    left: 10px;
  }
}

#top #mainimage .sozai .large {
  width: 64.843%;
}

@media only screen and (max-width: 480px) {
  #top #mainimage .sozai .large {
    width: 100%;
  }
}

#top #mainimage .sozai .large h2 {
  left: 40px;
}

@media only screen and (max-width: 960px) {
  #top #mainimage .sozai .large h2 {
    left: 20px;
  }
}

#top #mainimage .sozai ul {
  width: 35.156%;
}

@media only screen and (max-width: 480px) {
  #top #mainimage .sozai ul {
    width: 100%;
  }
}

#top #mainimage .sozai ul li {
  width: 100%;
}

@media only screen and (max-width: 480px) {
  #top #mainimage .sozai ul li {
    width: 50%;
  }
}

#top #mainimage .yoto .large {
  width: 43.75%;
}

@media only screen and (max-width: 480px) {
  #top #mainimage .yoto .large {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

#top #mainimage .yoto .large h2 {
  right: 40px;
  color: #333333;
}

@media only screen and (max-width: 960px) {
  #top #mainimage .yoto .large h2 {
    right: 20px;
  }
}

#top #mainimage .yoto ul {
  width: 56.25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media only screen and (max-width: 480px) {
  #top #mainimage .yoto ul {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

#top #mainimage .yoto ul li {
  width: 50%;
}

@media only screen and (max-width: 480px) {
  #top #mainimage .yoto ul {
    width: 100%;
  }
}

#top #original {
  display: none;
}

@media only screen and (max-width: 960px) {
  #top #original {
    display: block;
    margin: 50px 0;
  }
}

#top #original h3 {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "游明朝", "YuMincho", "HGS明朝E", serif;
  font-size: 18px;
  text-align: center;
  margin: 0 0 15px;
}

#top #original ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#top #original li {
  width: 48%;
  margin: 0 1%;
  text-align: center;
  font-size: 13px;
}

#top #original li img {
  margin: 0 0 5px;
  border: 1px solid #eee;
}

#top #top_news {
  margin-bottom: 80px;
}

@media only screen and (max-width: 960px) {
  #top #top_news {
    margin-bottom: 40px;
  }
}

#top #top_news .wrapper {
  max-width: 900px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#top #top_news .wrapper .title {
  width: 40%;
}

@media only screen and (max-width: 960px) {
  #top #top_news .wrapper .title {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

#top #top_news .wrapper .title h2 {
  font-size: 15px;
  line-height: 1.3;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "游明朝", "YuMincho", "HGS明朝E", serif;
  font-weight: normal;
  margin-bottom: 30px;
}

@media only screen and (max-width: 960px) {
  #top #top_news .wrapper .title h2 {
    margin-bottom: 20px;
  }
}

#top #top_news .wrapper .title h2 .eng {
  font-family: "EB Garamond", serif;
  font-size: 36px;
  display: block;
}

@media only screen and (max-width: 960px) {
  #top #top_news .wrapper .title h2 .eng {
    font-size: 26px;
  }
}

#top #top_news .wrapper .news_list {
  width: 55%;
  margin: 0 0 0 5%;
}

@media only screen and (max-width: 960px) {
  #top #top_news .wrapper .news_list {
    width: 100%;
    margin: 20px 0 0;
  }
}

#top #top_news .wrapper .news_list dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 7px 0;
}

#top #top_news .wrapper .news_list dl dt {
  width: 100px;
  font-family: "EB Garamond", serif;
  font-size: 15px;
}

@media only screen and (max-width: 480px) {
  #top #top_news .wrapper .news_list dl dt {
    width: 100%;
    margin-bottom: 5px;
  }
}

#top #top_news .wrapper .news_list dl dd {
  width: calc( 100% - 100px);
  font-size: 15px;
}

@media only screen and (max-width: 480px) {
  #top #top_news .wrapper .news_list dl dd {
    width: 100%;
  }
}

#top #top_news .wrapper .news_list dl dd a:hover {
  text-decoration: underline;
}

#top #top_ranking {
  background-image: url("../images/back_beige.jpg");
  padding: 70px 0;
}

@media only screen and (max-width: 960px) {
  #top #top_ranking {
    padding: 40px 0;
  }
}

#top #top_ranking .wrapper {
  max-width: 1200px;
}

#top #top_ranking h2 {
  text-align: center;
  font-size: 15px;
  line-height: 1.3;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "游明朝", "YuMincho", "HGS明朝E", serif;
  font-weight: normal;
  margin-bottom: 50px;
}

@media only screen and (max-width: 960px) {
  #top #top_ranking h2 {
    margin-bottom: 30px;
  }
}

#top #top_ranking h2 .eng {
  font-family: "EB Garamond", serif;
  font-size: 36px;
  display: block;
}

@media only screen and (max-width: 960px) {
  #top #top_ranking h2 .eng {
    font-size: 26px;
  }
}

#top #top_ranking .item_list article {
  width: 17%;
  margin: 0 1.5%;
  position: relative;
}

@media only screen and (max-width: 480px) {
  #top #top_ranking .item_list article {
    width: 46%;
    margin: 0 2% 20px;
  }
  #top #top_ranking .item_list article:nth-child(3), #top #top_ranking .item_list article:nth-child(4), #top #top_ranking .item_list article:nth-child(5) {
    width: 29.3%;
  }
}

#top #top_ranking .item_list article::before {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 45px;
  height: 45px;
  background-image: url("../images/icon_ranking1@2x.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
  z-index: 5;
}

@media only screen and (max-width: 960px) {
  #top #top_ranking .item_list article::before {
    width: 30px;
    height: 30px;
    top: -12px;
    left: -12px;
  }
}

#top #top_ranking .item_list article:nth-child(2)::before {
  background-image: url("../images/icon_ranking2@2x.png");
}

#top #top_ranking .item_list article:nth-child(3)::before {
  background-image: url("../images/icon_ranking3@2x.png");
}

#top #top_ranking .item_list article:nth-child(4)::before {
  background-image: url("../images/icon_ranking4@2x.png");
}

#top #top_ranking .item_list article:nth-child(5)::before {
  background-image: url("../images/icon_ranking5@2x.png");
}

#top #top_sozai {
  margin: 80px 0;
}

@media only screen and (max-width: 960px) {
  #top #top_sozai {
    margin: 40px 0;
  }
}

#top #top_sozai .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media only screen and (max-width: 480px) {
  #top #top_sozai .wrapper {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

#top #top_sozai .title {
  width: 100px;
}

@media only screen and (max-width: 960px) {
  #top #top_sozai .title {
    width: 50px;
  }
}

#top #top_sozai .title h2 {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "游明朝", "YuMincho", "HGS明朝E", serif;
  font-weight: normal;
  font-size: 21px;
  border-right: 1px solid #b6641c;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 960px) {
  #top #top_sozai .title h2 {
    font-size: 17px;
  }
}

#top #top_sozai .title h2 strong {
  font-size: 48px;
  font-weight: normal;
}

@media only screen and (max-width: 960px) {
  #top #top_sozai .title h2 strong {
    font-size: 28px;
  }
}

#top #top_sozai #sozai_mokusei {
  width: calc( 100% - 150px);
  margin: 0 0 0 50px;
}

@media only screen and (max-width: 960px) {
  #top #top_sozai #sozai_mokusei {
    width: calc( 100% - 50px - 5%);
    margin: 0 0 0 5%;
  }
}

#top #top_sozai #sozai_mokusei .image {
  width: 50%;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

@media only screen and (max-width: 480px) {
  #top #top_sozai #sozai_mokusei .image {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

#top #top_sozai #sozai_mokusei .text {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  width: 45%;
  margin: 0 5% 0 0;
}

@media only screen and (max-width: 480px) {
  #top #top_sozai #sozai_mokusei .text {
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin: 15px 0 0;
  }
}

#top #top_sozai #sozai_pra {
  width: 100%;
  margin-top: 30px;
}

@media only screen and (max-width: 480px) {
  #top #top_sozai #sozai_pra {
    width: calc( 100% - 50px - 5%);
  }
}

#top #top_sozai #sozai_pra .image {
  width: 50%;
}

@media only screen and (max-width: 480px) {
  #top #top_sozai #sozai_pra .image {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

#top #top_sozai #sozai_pra .text {
  width: 45%;
  margin: 0 0 0 5%;
}

@media only screen and (max-width: 480px) {
  #top #top_sozai #sozai_pra .text {
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin: 15px 0 0;
  }
}

#top #top_sozai article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#top #top_sozai article:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

#top #top_sozai article .image a {
  display: block;
}

#top #top_sozai article .image a:hover {
  opacity: 1;
}

#top #top_sozai article .image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

#top #top_sozai article h3 {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "游明朝", "YuMincho", "HGS明朝E", serif;
  font-weight: normal;
  font-size: 32px;
  margin: 0 0 20px;
}

@media only screen and (max-width: 960px) {
  #top #top_sozai article h3 {
    font-size: 24px;
    margin: 0 0 15px;
  }
}

#top #top_sozai article p {
  line-height: 1.8;
}

@media only screen and (max-width: 960px) {
  #top #top_sozai article p {
    font-size: 15px;
  }
}

#top #top_sozai article ul {
  color: #b6641c;
  font-weight: bold;
  margin: 15px 0 20px;
}

@media only screen and (max-width: 960px) {
  #top #top_sozai article ul {
    font-size: 15px;
  }
}

#top #top_sozai article ul li {
  padding-left: 18px;
  position: relative;
}

#top #top_sozai article ul li::before {
  position: absolute;
  top: 0;
  left: 0px;
  content: "■";
}

#top #top_yoto {
  padding: 80px 0 60px;
  background-image: url("../images/back_beige.jpg");
}

@media only screen and (max-width: 960px) {
  #top #top_yoto {
    padding: 40px 0 20px;
  }
}

#top #top_yoto .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media only screen and (max-width: 480px) {
  #top #top_yoto .wrapper {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

#top #top_yoto .title {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  width: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media only screen and (max-width: 960px) {
  #top #top_yoto .title {
    width: 50px;
  }
  #top #top_yoto .title .title2 {
    width: 50px;
  }
}

#top #top_yoto .title h2 {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "游明朝", "YuMincho", "HGS明朝E", serif;
  font-weight: normal;
  font-size: 21px;
  border-right: 1px solid #b6641c;
  letter-spacing: 0.1em;
  display: inline-block;
}

@media only screen and (max-width: 960px) {
  #top #top_yoto .title h2 {
    font-size: 17px;
  }
}

#top #top_yoto .title h2 strong {
  font-size: 48px;
  font-weight: normal;
}

@media only screen and (max-width: 960px) {
  #top #top_yoto .title h2 strong {
    font-size: 28px;
  }
}

#top #top_yoto .list {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  width: calc( 100% - 150px);
}

@media only screen and (max-width: 960px) {
  #top #top_yoto .list {
    width: calc( 100% - 50px - 3%);
    margin: 0 3% 0 0;
  }
}

#top #top_yoto .list article {
  width: 46%;
  margin: 0 2% 50px;
  text-align: center;
}

@media only screen and (max-width: 960px) {
  #top #top_yoto .list article {
    margin: 0 2% 25px;
  }
}

@media only screen and (max-width: 480px) {
  #top #top_yoto .list article {
    width: 100%;
    margin: 0 0 25px;
  }
}

#top #top_yoto .list article.small {
  width: 21%;
  margin: 0 2%;
}

@media only screen and (max-width: 480px) {
  #top #top_yoto .list article.small {
    width: 48%;
    margin: 0 2% 20px 0;
  }
}

#top #top_yoto .list article.small h3 {
  font-size: 15px;
  margin: 10px 0 0;
}

@media only screen and (max-width: 960px) {
  #top #top_yoto .list article.small h3 {
    font-size: 13px;
    margin: 5px 0 0;
  }
}

#top #top_yoto .list a {
  display: block;
}

#top #top_yoto .list .image {
  overflow: hidden;
  width: 100%;
  height: 100%;
  background: #fff;
}

#top #top_yoto .list .image img {
  width: 100%;
  display: block;
  border-radius: 3px;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

#top #top_yoto .list .image img:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  opacity: 1;
}

#top #top_yoto .list h3 {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "游明朝", "YuMincho", "HGS明朝E", serif;
  font-weight: normal;
  font-size: 20px;
  margin: 25px 0 10px;
}

@media only screen and (max-width: 960px) {
  #top #top_yoto .list h3 {
    font-size: 17px;
    margin: 15px 0 7px;
  }
}

#top #top_yoto .list p {
  font-size: 14px;
}

@media only screen and (max-width: 960px) {
  #top #top_yoto .list p {
    text-align: left;
    font-size: 13px;
  }
}

#top #top_katachi {
  padding: 70px 0;
}

@media only screen and (max-width: 960px) {
  #top #top_katachi {
    padding: 40px 0;
  }
}

#top #top_katachi .title {
  text-align: center;
  margin-bottom: 30px;
}

#top #top_katachi .title h2 {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "游明朝", "YuMincho", "HGS明朝E", serif;
  font-weight: normal;
  font-size: 21px;
  border-bottom: 1px solid #b6641c;
  letter-spacing: 0.1em;
  display: inline-block;
}

@media only screen and (max-width: 960px) {
  #top #top_katachi .title h2 {
    font-size: 17px;
  }
}

#top #top_katachi .title h2 strong {
  font-size: 36px;
  font-weight: normal;
}

@media only screen and (max-width: 960px) {
  #top #top_katachi .title h2 strong {
    font-size: 28px;
  }
}

#top #top_katachi .list {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#top #top_katachi .list article {
  width: 18%;
  margin: 0 1%;
  text-align: center;
}

@media only screen and (max-width: 480px) {
  #top #top_katachi .list article {
    width: 29.3%;
    margin: 0 2% 15px;
  }
}

#top #top_katachi .list article:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

#top #top_katachi .list article img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

#top #top_katachi .list article h3 {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "游明朝", "YuMincho", "HGS明朝E", serif;
  font-weight: normal;
  font-size: 16px;
  margin: 10px 0 0;
}

@media only screen and (max-width: 960px) {
  #top #top_katachi .list article h3 {
    font-size: 14px;
  }
}

#top #pickup {
  background-image: url("../images/back_beige.jpg");
}

#top #top_kodawari {
  background-image: url("../images/top_kodawari.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  color: #fff;
}

@media only screen and (max-width: 960px) {
  #top #top_kodawari {
    padding: 60px 0;
  }
}

#top #top_kodawari a {
  color: #fff;
}

#top #top_kodawari .text {
  width: 50%;
  margin-left: 50%;
}

@media only screen and (max-width: 960px) {
  #top #top_kodawari .text {
    width: 70%;
    margin-left: 30%;
  }
}

@media only screen and (max-width: 480px) {
  #top #top_kodawari .text {
    width: 90%;
    margin: 0 auto;
  }
}

#top #top_kodawari .title {
  position: relative;
  margin-bottom: 80px;
}

@media only screen and (max-width: 960px) {
  #top #top_kodawari .title {
    margin-bottom: 30px;
  }
}

#top #top_kodawari h2 {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "游明朝", "YuMincho", "HGS明朝E", serif;
  font-weight: normal;
  font-size: 32px;
}

@media only screen and (max-width: 960px) {
  #top #top_kodawari h2 {
    font-size: 22px;
  }
}

#top #top_kodawari .copy {
  position: absolute;
  right: -30px;
  top: 25px;
}

@media only screen and (max-width: 960px) {
  #top #top_kodawari .copy {
    right: 0px;
    top: 10px;
    width: 270px;
  }
}

#top #top_kodawari p {
  line-height: 2;
  margin: 0 0 20px;
  font-weight: bold;
  font-size: 15px;
}

@media only screen and (max-width: 960px) {
  #top #top_kodawari p {
    font-size: 14px;
    line-height: 1.8;
  }
}

#top #top_kodawari .bt a {
  border-color: #fff;
}

@media only screen and (max-width: 480px) {
  #top #top_kodawari .bt a {
    display: block;
    text-align: center;
  }
}

#top #top_kodawari .bt a::before {
  background-color: #fff;
}

#top #top_kodawari .bt a:hover {
  background-color: #fff;
  color: #333333;
}

#top #top_kodawari .bt a:hover::before {
  background-color: #333333;
}

/************************************

item

************************************/
/************************************

.cat_title

************************************/
.cat_title {
  text-align: center;
  margin: 0 0 50px;
}

@media only screen and (max-width: 960px) {
  .cat_title {
    margin: 0 0 30px;
  }
}

.cat_title h1, .cat_title h2 {
  position: relative;
  font-size: 32px;
  letter-spacing: 0.08em;
  text-indent: 0.08em;
  font-weight: normal;
  padding-bottom: 12px;
  display: inline-block;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "游明朝", "YuMincho", "HGS明朝E", serif;
}

@media only screen and (max-width: 960px) {
  .cat_title h1, .cat_title h2 {
    font-size: 22px;
  }
}

.cat_title h1::before, .cat_title h2::before {
  position: absolute;
  bottom: 0;
  left: 0px;
  width: 100%;
  height: 1px;
  background-color: #b6641c;
  content: "";
}

/************************************

.item_list

************************************/
#archive_list {
  margin-bottom: 70px;
}

@media only screen and (max-width: 960px) {
  #archive_list {
    margin-bottom: 40px;
  }
}

.item_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.item_list article {
  position: relative;
  width: 21%;
  margin: 20px 2%;
}

@media only screen and (max-width: 960px) {
  .item_list article {
    width: 23%;
    margin: 10px 1%;
  }
}

@media only screen and (max-width: 480px) {
  .item_list article {
    width: 46%;
    margin: 10px 2%;
  }
}

.item_list article a {
  display: block;
}

.item_list article a:hover {
  opacity: 1;
}

.item_list article .image {
  margin: 0 0 15px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background: #fff;
}

@media only screen and (max-width: 960px) {
  .item_list article .image {
    margin: 0 0 10px;
  }
}

.item_list article .image img {
  width: 100%;
  display: block;
  border-radius: 3px;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.item_list article .image img:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  opacity: 1;
}

.item_list article h3 {
  font-size: 15px;
  line-height: 1.3;
}

@media only screen and (max-width: 960px) {
  .item_list article h3 {
    font-size: 13px;
  }
}

.item_list article .price {
  font-size: 14px;
}

@media only screen and (max-width: 960px) {
  .item_list article .price {
    font-size: 12px;
  }
}

.item_list article .fav {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 20px;
  height: 20px;
  z-index: 10;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-decoration: none;
  background-image: url("/images/icon-heart.svg");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
  display: block;
  cursor: pointer;
}

.item_list article .fav.on {
  background-image: url("/images/icon-heart-on.svg");
}

/************************************

.item_list_bottom

************************************/
.item_list_bottom {
  font-size: 13px;
  text-align: center;
  margin: 40px 0;
  border-top: 1px solid #ccc;
  padding-top: 20px;
}

/************************************

.cat_list

************************************/
.cat_list {
  padding: 50px 0;
}

@media only screen and (max-width: 960px) {
  .cat_list {
    padding: 30px 0;
  }
}

.cat_list dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 10px 0;
}

.cat_list dl dt {
  width: 200px;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "游明朝", "YuMincho", "HGS明朝E", serif;
  font-size: 20px;
  font-weight: 500;
}

@media only screen and (max-width: 960px) {
  .cat_list dl dt {
    font-size: 16px;
    width: 120px;
  }
}

@media only screen and (max-width: 480px) {
  .cat_list dl dt {
    width: 100%;
    margin: 0 0 5px;
  }
}

.cat_list dl dd {
  width: calc(100% - 200px);
}

@media only screen and (max-width: 960px) {
  .cat_list dl dd {
    width: calc(100% - 120px);
  }
}

@media only screen and (max-width: 480px) {
  .cat_list dl dd {
    width: 100%;
  }
}

.cat_list dl ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.cat_list dl ul li {
  margin: 0 1% 1% 0;
  width: 19%;
  text-align: center;
}

@media only screen and (max-width: 960px) {
  .cat_list dl ul li {
    width: 32.3%;
  }
}

.cat_list dl ul li a {
  font-weight: bold;
  background-color: #fff;
  border: 1px solid #938075;
  color: #938075;
  font-size: 14px;
  display: block;
  line-height: 1.2;
  padding: 5px 0;
}

@media only screen and (max-width: 960px) {
  .cat_list dl ul li a {
    font-size: 12px;
    padding: 5px 0;
  }
}

.cat_list dl ul li a:hover {
  opacity: 1;
  color: #fff;
  background-color: #938075;
}

/************************************

#item_mainimage

************************************/
#item_mainimage {
  margin: 0 0 100px;
}

@media only screen and (max-width: 960px) {
  #item_mainimage {
    margin: 0 0 50px;
  }
}

#item_mainimage .item_large_slide .waku {
  margin: 0 20px 20px;
}

@media only screen and (max-width: 960px) {
  #item_mainimage .item_large_slide .waku {
    margin: 0 5px 10px;
  }
}

#item_mainimage .item_small_slide .waku {
  width: 80px;
  margin: 0 5px 10px;
}

@media only screen and (max-width: 960px) {
  #item_mainimage .item_small_slide .waku {
    width: 50px;
    margin: 0 2px 4px;
  }
}

#item_mainimage .item_small_slide .slick-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#item_mainimage .item_small_slide .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: auto !important;
  max-width: 100%;
}

#item_mainimage .item_small_slide .slick-slide {
  float: none;
  width: 80px !important;
  height: auto !important;
}

@media only screen and (max-width: 960px) {
  #item_mainimage .item_small_slide .slick-slide {
    width: 50px !important;
  }
}

/************************************

#item_container

************************************/
#item_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 100px;
}

@media only screen and (max-width: 960px) {
  #item_container {
    margin-bottom: 60px;
  }
}

#item_container .text {
  width: 60%;
}

@media only screen and (max-width: 960px) {
  #item_container .text {
    width: 100%;
  }
}

#item_container .text h1 {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "游明朝", "YuMincho", "HGS明朝E", serif;
  font-weight: 500;
  font-size: 24px;
  margin: 0 0 20px;
}

@media only screen and (max-width: 960px) {
  #item_container .text h1 {
    font-size: 21px;
  }
}

#item_container .text ul.cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#item_container .text ul.cat li {
  margin: 0 1% 1% 0;
  text-align: center;
}

#item_container .text ul.cat li a {
  background-color: #fff;
  border: 1px solid #938075;
  color: #938075;
  font-size: 12px;
  display: block;
  line-height: 1.2;
  padding: 5px 20px;
}

@media only screen and (max-width: 960px) {
  #item_container .text ul.cat li a {
    font-size: 11px;
    padding: 5px 12px;
  }
}

#item_container .text ul.cat li a:hover {
  opacity: 1;
  color: #fff;
  background-color: #938075;
}

#item_container .text .explanation {
  margin: 30px 0;
  line-height: 1.8;
}

@media only screen and (max-width: 960px) {
  #item_container .text .explanation {
    font-size: 15px;
  }
}

#item_container .text dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (max-width: 960px) {
  #item_container .text dl {
    font-size: 15px;
  }
}

#item_container .text dl dt {
  width: 100px;
}

#item_container .text dl dd {
  width: calc(100% - 100px);
}

#item_container .text dl dd.price {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "游明朝", "YuMincho", "HGS明朝E", serif;
}

#item_container .text dl dd.price strong {
  font-size: 20px;
  font-weight: normal;
}

#item_container .text dl dd input {
  font-size: 100%;
  padding: 8px;
  width: 150px;
}

#item_container .text .form_bt {
  margin: 30px 0 0;
}

#item_container .text .form_bt input {
  width: 340px;
  max-width: 100%;
}

#item_container .data {
  width: 35%;
  margin: 0 0 0 5%;
}

@media only screen and (max-width: 960px) {
  #item_container .data {
    width: 100%;
    margin: 30px 0 0;
  }
}

#item_container .data h3 {
  font-family: "EB Garamond", serif;
  font-size: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid #333333;
  margin: 0;
  font-weight: normal;
}

#item_container .data table {
  border: 0;
  border-collapse: collapse;
  width: 100%;
}

#item_container .data table th {
  text-align: left;
  font-weight: normal;
  width: 80px;
}

#item_container .data table th, #item_container .data table td {
  padding: 15px;
  font-size: 14px;
  border-bottom: 1px solid #ccc;
}

/************************************

#kodawari

************************************/
#kodawari {
  /************************************

#kodawari_title

************************************/
  /************************************

#kodawari1

************************************/
  /************************************

#kodawari2

************************************/
  /************************************

#kodawari3

************************************/
  /************************************

#kodawari4

************************************/
}

#kodawari #kodawari_title {
  margin-bottom: 70px;
}

@media only screen and (max-width: 960px) {
  #kodawari #kodawari_title {
    margin-bottom: 40px;
  }
}

#kodawari #kodawari_title .page_title {
  margin-bottom: 30px;
}

#kodawari #kodawari1 {
  margin-bottom: 80px;
}

@media only screen and (max-width: 960px) {
  #kodawari #kodawari1 {
    margin-bottom: 40px;
  }
}

#kodawari #kodawari1 .image {
  position: absolute;
  top: 100px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 50vw;
  background-image: url(/images/kodawari1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  #kodawari #kodawari1 .image {
    background-image: url(/images/kodawari1@2x.jpg);
  }
}

@media only screen and (max-width: 960px) {
  #kodawari #kodawari1 .image {
    background-image: url(/images/kodawari1.jpg);
  }
}

@media only screen and (max-width: 480px) {
  #kodawari #kodawari1 .image {
    background-image: url(/images/kodawari1-sp@2x.jpg);
    height: 75vw;
  }
}

#kodawari #kodawari1 .text {
  background-color: #fff;
  max-width: 860px;
  width: 90%;
  margin: 45vw auto 0;
  padding: 5% 8%;
  line-height: 2;
}

@media only screen and (max-width: 960px) {
  #kodawari #kodawari1 .text {
    font-size: 15px;
    line-height: 1.8;
    padding: 8%;
  }
}

@media only screen and (max-width: 480px) {
  #kodawari #kodawari1 .text {
    margin: 70vw auto 0;
  }
}

#kodawari #kodawari2 {
  padding-bottom: 80px;
  position: relative;
}

@media only screen and (max-width: 960px) {
  #kodawari #kodawari2 {
    padding-bottom: 40px;
  }
}

#kodawari #kodawari2::before {
  position: absolute;
  bottom: 0;
  left: 0px;
  width: 100%;
  height: 50vw;
  background-image: url("/images/back_beige.jpg");
  z-index: -1;
  content: "";
}

@media only screen and (max-width: 480px) {
  #kodawari #kodawari2::before {
    height: 80%;
  }
}

#kodawari #kodawari2 .wrapper {
  max-width: 1000px;
}

#kodawari #kodawari2 h2 {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "游明朝", "YuMincho", "HGS明朝E", serif;
  font-weight: normal;
  font-size: 28px;
  text-align: center;
  margin: 50px 0 40px;
}

@media only screen and (max-width: 960px) {
  #kodawari #kodawari2 h2 {
    font-size: 22px;
    margin: 40px 0 30px;
  }
}

#kodawari #kodawari2 p {
  max-width: 700px;
  margin: 0 auto;
  line-height: 2;
}

@media only screen and (max-width: 960px) {
  #kodawari #kodawari2 p {
    font-size: 15px;
    max-width: 84%;
  }
}

#kodawari #kodawari3 {
  padding: 20vw 0 80px;
  background-image: url(/images/kodawari3.jpg);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 55vw;
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 1.5dppx) {
  #kodawari #kodawari3 {
    background-image: url(/images/kodawari3@2x.jpg);
  }
}

@media only screen and (max-width: 960px) {
  #kodawari #kodawari3 {
    background-image: url(/images/kodawari3.jpg);
    padding: 15vw 0 40px;
  }
}

@media only screen and (max-width: 480px) {
  #kodawari #kodawari3 {
    background-size: 80%;
    padding: 60vw 0 40px;
  }
}

#kodawari #kodawari3 .text {
  width: 55%;
  margin-left: 45%;
}

@media only screen and (max-width: 960px) {
  #kodawari #kodawari3 .text {
    width: 70%;
    margin-left: 30%;
  }
}

@media only screen and (max-width: 480px) {
  #kodawari #kodawari3 .text {
    width: 90%;
    margin: 0 auto;
  }
}

#kodawari #kodawari3 h2 {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "游明朝", "YuMincho", "HGS明朝E", serif;
  font-weight: normal;
  font-size: 28px;
  margin: 0 0 30px;
  text-align: right;
}

@media only screen and (max-width: 960px) {
  #kodawari #kodawari3 h2 {
    font-size: 22px;
    margin: 0 0 20px;
  }
}

@media only screen and (max-width: 480px) {
  #kodawari #kodawari3 h2 {
    text-align: center;
  }
}

#kodawari #kodawari3 p {
  line-height: 2;
}

@media only screen and (max-width: 960px) {
  #kodawari #kodawari3 p {
    font-size: 15px;
  }
}

#kodawari #kodawari4 {
  padding: 10vw 0 80px;
  background-image: url("/images/back_beige.jpg");
  position: relative;
}

@media only screen and (max-width: 960px) {
  #kodawari #kodawari4 {
    padding: 15vw 0 40px;
  }
}

@media only screen and (max-width: 480px) {
  #kodawari #kodawari4 {
    padding: 55vw 0 40px;
  }
}

#kodawari #kodawari4::before {
  position: absolute;
  top: 0;
  right: 0px;
  background-image: url(/images/kodawari4.png);
  width: 100%;
  height: 0;
  padding-top: 36%;
  background-repeat: no-repeat;
  background-position: right top;
  background-size: contain;
  content: "";
}

@media only screen and (max-width: 480px) {
  #kodawari #kodawari4::before {
    padding-top: 65%;
  }
}

#kodawari #kodawari4 .text {
  width: 55%;
  margin-right: 45%;
}

@media only screen and (max-width: 960px) {
  #kodawari #kodawari4 .text {
    width: 75%;
    margin-right: 25%;
  }
}

@media only screen and (max-width: 480px) {
  #kodawari #kodawari4 .text {
    width: 90%;
    margin: 0 auto;
  }
}

#kodawari #kodawari4 h2 {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "游明朝", "YuMincho", "HGS明朝E", serif;
  font-weight: normal;
  font-size: 28px;
  margin: 0 0 30px;
  text-align: left;
}

@media only screen and (max-width: 960px) {
  #kodawari #kodawari4 h2 {
    font-size: 22px;
    margin: 0 0 20px;
  }
}

@media only screen and (max-width: 480px) {
  #kodawari #kodawari4 h2 {
    text-align: center;
  }
}

#kodawari #kodawari4 p {
  line-height: 2;
}

@media only screen and (max-width: 960px) {
  #kodawari #kodawari4 p {
    font-size: 15px;
  }
}

/************************************

#faq

************************************/
#faq {
  /************************************

#faq_title

************************************/
  /************************************

.faq_list

************************************/
}

#faq #faq_title {
  margin-bottom: 70px;
}

@media only screen and (max-width: 960px) {
  #faq #faq_title {
    margin-bottom: 40px;
  }
}

#faq #faq_title .page_title {
  margin-bottom: 30px;
}

#faq #faq_title nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#faq #faq_title nav ul li {
  margin: 0 5px 5px;
  font-size: 14px;
}

@media only screen and (max-width: 960px) {
  #faq #faq_title nav ul li {
    font-size: 14px;
  }
}

@media only screen and (max-width: 480px) {
  #faq #faq_title nav ul li {
    margin: 0 auto 5px;
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

#faq #faq_title nav ul li a {
  display: block;
  padding: 10px 20px;
  border: 1px solid #b6641c;
  background-color: #fff;
  color: #b6641c;
  font-weight: bold;
  border-radius: 2em;
}

#faq #faq_title nav ul li a:hover {
  background-color: #b6641c;
  color: #fff;
  opacity: 1;
}

#faq .faq_list {
  margin-bottom: 70px;
}

#faq .faq_list .wrapper {
  max-width: 700px;
}

#faq .faq_list article {
  margin: 0 0 70px;
}

#faq .faq_list .question {
  position: relative;
  margin-bottom: 25px;
  background-color: #f2efea;
  padding: 3% 3% 3% 50px;
}

#faq .faq_list .question::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 10px;
  font-size: 36px;
  color: #fff;
  font-family: "EB Garamond", serif;
  content: "Q";
}

#faq .faq_list .question h3 {
  font-size: 20px;
  line-height: 1.4;
}

@media only screen and (max-width: 960px) {
  #faq .faq_list .question h3 {
    font-size: 17px;
  }
}

#faq .faq_list .answer {
  line-height: 1.8;
}

@media only screen and (max-width: 960px) {
  #faq .faq_list .answer {
    font-size: 15px;
  }
}

#faq .faq_list .answer p {
  margin-bottom: 1em;
}

#faq .faq_list .answer .bt {
  margin-top: 15px;
}

/************************************

#flow

************************************/
#flow {
  /************************************

#flow_title

************************************/
  /************************************

#flow_list

************************************/
}

#flow #flow_title {
  margin-bottom: 70px;
}

@media only screen and (max-width: 960px) {
  #flow #flow_title {
    margin-bottom: 40px;
  }
}

#flow #flow_title .page_title {
  margin-bottom: 30px;
}

#flow #flow_list {
  margin-bottom: 80px;
}

#flow #flow_list .wrapper {
  max-width: 700px;
}

#flow #flow_list article {
  margin-bottom: 70px;
  position: relative;
}

#flow #flow_list article::before {
  position: absolute;
  top: 100%;
  left: 0px;
  right: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  font-size: 50px;
  color: #b6641c;
  font-family: 'FontAwesome';
  content: "\f107";
}

#flow #flow_list article:last-child::before {
  display: none;
}

#flow #flow_list article .midashi {
  background-color: #f2efea;
  padding: 15px;
  margin-bottom: 20px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#flow #flow_list article .midashi .no {
  font-family: "EB Garamond", serif;
  font-size: 40px;
  line-height: 1;
  width: 50px;
  margin-right: 20px;
  text-align: center;
  border-right: 1px solid #333333;
}

@media only screen and (max-width: 960px) {
  #flow #flow_list article .midashi .no {
    font-size: 30px;
    width: 40px;
    margin-right: 10px;
  }
}

#flow #flow_list article .midashi h3 {
  width: calc(100% - 70px);
  font-size: 20px;
}

@media only screen and (max-width: 960px) {
  #flow #flow_list article .midashi h3 {
    width: calc(100% - 50px);
    font-size: 17px;
  }
}

#flow #flow_list article .text {
  line-height: 1.8;
}

@media only screen and (max-width: 960px) {
  #flow #flow_list article .text {
    font-size: 15px;
  }
}

#flow #flow_list article .text p {
  margin-bottom: 1em;
}

#flow #flow_list article .text .chui {
  border: 1px dotted #b6641c;
  padding: 4%;
}

/************************************

#guide

************************************/
#guide {
  /************************************

#guide_title

************************************/
  /************************************

.guide_basic

************************************/
}

#guide #guide_title {
  margin-bottom: 70px;
}

@media only screen and (max-width: 960px) {
  #guide #guide_title {
    margin-bottom: 40px;
  }
}

#guide #guide_title .page_title {
  margin-bottom: 30px;
}

#guide #guide_title nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

#guide #guide_title nav ul li {
  width: 31.3%;
  margin: 0 1% 2%;
  background-color: #b6641c;
  border: 1px solid #b6641c;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

#guide #guide_title nav ul li:hover {
  background-color: #fff;
}

@media only screen and (max-width: 960px) {
  #guide #guide_title nav ul li {
    width: 48%;
  }
}

#guide #guide_title nav ul li a {
  display: block;
  padding: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  position: relative;
}

#guide #guide_title nav ul li a::before {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#guide #guide_title nav ul li a:hover {
  color: #b6641c;
}

#guide #guide_title nav ul li a:hover::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 20px;
  font-size: 20px;
  font-family: 'FontAwesome';
  content: "\f105";
}

@media only screen and (max-width: 960px) {
  #guide #guide_title nav ul li a {
    padding: 10px;
  }
}

#guide #guide_title nav ul li .icon {
  width: 20px;
}

#guide #guide_title nav ul li p {
  width: calc(100% - 20px);
  font-weight: bold;
  text-align: center;
  font-size: 15px;
}

@media only screen and (max-width: 960px) {
  #guide #guide_title nav ul li p {
    font-size: 14px;
  }
}

@media only screen and (max-width: 480px) {
  #guide #guide_title nav ul li p {
    font-size: 12px;
  }
}

#guide .guide_basic {
  margin-bottom: 100px;
}

@media only screen and (max-width: 960px) {
  #guide .guide_basic {
    margin-bottom: 50px;
  }
}

#guide .guide_basic .wrapper {
  max-width: 900px;
}

#guide .guide_basic article {
  margin: 0 0 40px;
}

#guide .guide_basic h3 {
  padding: 12px;
  background-color: #f2efea;
  font-size: 20px;
  margin-bottom: 15px;
}

@media only screen and (max-width: 960px) {
  #guide .guide_basic h3 {
    font-size: 17px;
  }
}

#guide .guide_basic p {
  margin-bottom: 1em;
}

@media only screen and (max-width: 960px) {
  #guide .guide_basic p {
    font-size: 15px;
  }
}

#guide .guide_basic ul.delivery_time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 10px;
}

#guide .guide_basic ul.delivery_time li {
  margin: 0 5px 5px 0;
  border: 1px solid #ccc;
  padding: 7px;
  border-radius: 3px;
  font-size: 14px;
}

@media only screen and (max-width: 480px) {
  #guide .guide_basic ul.delivery_time li {
    width: 49%;
    margin: 0 1% 1% 0;
    text-align: center;
  }
}

@media only screen and (max-width: 960px) {
  #guide .guide_basic .soryo_table {
    width: 100%;
    overflow-x: scroll;
    font-size: 15px;
  }
}

#guide .guide_basic .soryo_table table {
  width: 100%;
  border: 0;
  border-collapse: collapse;
  margin-top: 15px;
  border: 1px solid #ccc;
  font-size: 15px;
}

@media only screen and (max-width: 960px) {
  #guide .guide_basic .soryo_table table {
    width: 700px;
  }
}

#guide .guide_basic .soryo_table table th, #guide .guide_basic .soryo_table table td {
  padding: 10px;
  border-bottom: 1px solid #ccc;
  text-align: center;
}

#guide .guide_basic .soryo_table table thead th {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
}

#guide .guide_basic .soryo_table table thead th, #guide .guide_basic .soryo_table table thead td {
  background-color: #b6641c;
  color: #fff;
  white-space: nowrap;
}

#guide .guide_basic .soryo_table table tbody th {
  background-color: #f2efea;
}

@media only screen and (max-width: 960px) {
  #guide .guide_basic .soryo_table table tbody th {
    width: 150px;
    position: -webkit-sticky;
    position: sticky;
    left: 0;
  }
}

#guide .guide_basic .soryo_table table tbody th ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 10px;
  font-weight: normal;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#guide .guide_basic .soryo_table table tbody th ul li {
  margin: 0 3px;
}

#guide .guide_basic .soryo_table table tbody tr:nth-child(even) th {
  background-color: #EAE3D8;
}

#guide .guide_basic .soryo_table table tbody tr:nth-child(even) td {
  background-color: #f9f9f9;
}

#guide .guide_basic ul.chu {
  margin-left: 18px;
}

@media only screen and (max-width: 960px) {
  #guide .guide_basic ul.chu {
    font-size: 15px;
  }
}

#guide .guide_basic ul.chu li {
  list-style: disc;
}

#guide .guide_basic .law_table table {
  width: 100%;
  border: 0;
  border-collapse: collapse;
  margin-top: 15px;
  border: 1px solid #ccc;
  font-size: 15px;
  text-align: left;
}

@media only screen and (max-width: 960px) {
  #guide .guide_basic .law_table table {
    font-size: 15px;
  }
}

#guide .guide_basic .law_table table th {
  padding: 10px;
  border-bottom: 1px solid #ccc;
  background-color: #f2efea;
}

@media only screen and (max-width: 480px) {
  #guide .guide_basic .law_table table th {
    display: block;
    border-bottom: none;
    width: 100%;
  }
}

#guide .guide_basic .law_table table td {
  padding: 10px;
  border-bottom: 1px solid #ccc;
}

@media only screen and (max-width: 480px) {
  #guide .guide_basic .law_table table td {
    display: block;
    width: 100%;
  }
}

#guide .guide_basic .law_table table td a {
  text-decoration: underline;
}
/*# sourceMappingURL=maps/common.css.map */
