@charset "UTF-8";
/*リセット
--------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/*メディアクエリー
---------------------------------------------*/
/*変数
---------------------------------------------*/
/* common
---------------------------------------------*/
body {
  font-family: a-otf-ud-reimin-pr6n, sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 769px) {
  body {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  body {
    font-size: 12px;
  }
}

.garamond {
  font-family: eb-garamond, serif;
  font-weight: 400;
  font-style: normal;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  text-decoration: none;
}

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

@media screen and (min-width: 769px) {
  .pc_none {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .pc_none {
    display: block;
  }
}

@media screen and (min-width: 769px) {
  .sp_none {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .sp_none {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  section {
    padding: 150px 0;
  }
}

@media screen and (max-width: 768px) {
  section {
    padding: 100px 0;
  }
}

@media screen and (min-width: 769px) {
  section.lead {
    padding-top: 100px;
  }
}

@media screen and (max-width: 768px) {
  section.lead {
    padding-top: 70px;
  }
}

.sec_title {
  text-align: center;
  line-height: 1;
}

@media screen and (min-width: 769px) {
  .sec_title {
    font-size: 50px;
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 768px) {
  .sec_title {
    font-size: 35px;
    margin-bottom: 30px;
  }
}

.inner {
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .inner {
    width: 1000px;
  }
}

@media screen and (max-width: 768px) {
  .inner {
    width: 90%;
  }
}

*:focus {
  outline: none;
}

.sec_img {
  position: absolute;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .sec_img {
    overflow: hidden;
  }
}

@media screen and (max-width: 768px) {
  .sec_img img {
    width: 150%;
  }
}

.sec_img.bottom {
  bottom: 0;
}

@media screen and (min-width: 769px) {
  .sec_img.bottom {
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }
}

@media screen and (max-width: 768px) {
  .sec_img.bottom {
    left: 50%;
    -webkit-transform: translateY(50%) translateX(-50%);
            transform: translateY(50%) translateX(-50%);
  }
}

.sec_img.top {
  top: 0;
}

@media screen and (min-width: 769px) {
  .sec_img.top {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@media screen and (max-width: 768px) {
  .sec_img.top {
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
            transform: translateY(-50%) translateX(-50%);
  }
}

/* action
---------------------------------------------*/
.fadeup {
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  opacity: 0;
  -webkit-transition: opacity 1s, -webkit-transform 0.7s;
  transition: opacity 1s, -webkit-transform 0.7s;
  transition: transform 0.7s, opacity 1s;
  transition: transform 0.7s, opacity 1s, -webkit-transform 0.7s;
}

.fadeup.on {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

/* header
---------------------------------------------*/
header {
  width: 100%;
  position: relative;
}

.kakushi {
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 0;
  background-color: #dce2d6;
}

/* lead
---------------------------------------------*/
.lead {
  background-color: #dce2d6;
  position: relative;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .lead {
    text-align: center;
  }
}

.date {
  background-color: #fff;
}

@media screen and (min-width: 769px) {
  .date {
    width: 1000px;
    padding: 40px 0;
    margin: 0 auto 100px;
  }
}

@media screen and (max-width: 768px) {
  .date {
    width: 90%;
    padding: 30px 0;
    margin: 0 auto 70px;
  }
}

.date_title {
  border: 1px solid #1b1513;
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .date_title {
    font-size: 22px;
    width: 510px;
    line-height: 40px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 768px) {
  .date_title {
    font-size: 14px;
    width: 290px;
    line-height: 26px;
    margin-bottom: 7px;
  }
}

@media screen and (min-width: 769px) {
  .date_title span {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .date_title span {
    font-size: 12px;
  }
}

.date_text_1 {
  letter-spacing: 0.15em;
}

@media screen and (min-width: 769px) {
  .date_text_1 {
    font-size: 30px;
    margin-bottom: -8px;
  }
}

@media screen and (max-width: 768px) {
  .date_text_1 {
    font-size: 17px;
    margin-bottom: -3px;
  }
}

@media screen and (min-width: 769px) {
  .date_text_1 span {
    font-size: 50px;
  }
}

@media screen and (max-width: 768px) {
  .date_text_1 span {
    font-size: 29px;
  }
}

.date_text_2 {
  letter-spacing: 0.15em;
}

@media screen and (min-width: 769px) {
  .date_text_2 {
    font-size: 25px;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 768px) {
  .date_text_2 {
    font-size: 15px;
    margin-bottom: 10px;
  }
}

@media screen and (min-width: 769px) {
  .date_text_2 span {
    font-size: 19px;
  }
}

@media screen and (max-width: 768px) {
  .date_text_2 span {
    font-size: 11px;
  }
}

@media screen and (max-width: 768px) {
  .date_text_min {
    font-size: 11px;
  }
}

.lead_text {
  line-height: 2;
}

@media screen and (min-width: 769px) {
  .lead_text {
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 768px) {
  .lead_text {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 40px;
    text-align: justify;
  }
}

.slick {
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .slick {
    width: 500px;
  }
}

@media screen and (max-width: 768px) {
  .slick {
    width: 80%;
  }
}

@media screen and (min-width: 769px) {
  .slick-list {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .slick-list {
    margin-bottom: 13px;
  }
}

.slick-dots {
  text-align: center;
}

.slick-dots li {
  display: inline-block;
  margin: 0 15px;
}

@media screen and (max-width: 768px) {
  .slick-dots li {
    margin: 0 5px;
  }
}

.slick-dots li button {
  position: relative;
  text-indent: -9999px;
  background: none;
  border: none;
}

.slick-dots li button:before {
  content: '●';
  font-size: 16px;
  text-indent: 0px;
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  line-height: 1;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .slick-dots li button:before {
    font-size: 14px;
  }
}

.slick-dots li.slick-active button:before {
  content: '●';
  color: #1b1513;
}

/* profile
---------------------------------------------*/
.profile {
  text-align: center;
}

@media screen and (min-width: 769px) {
  .profile .sec_title {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 768px) {
  .profile .sec_title {
    margin-bottom: 30px;
  }
}

.profile_img {
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .profile_img {
    width: 200px;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 768px) {
  .profile_img {
    width: 38%;
    margin-bottom: 30px;
  }
}

.profile_text {
  margin-bottom: 30px;
  line-height: 1.7;
}

@media screen and (max-width: 768px) {
  .profile_text {
    text-align: justify;
    width: 90%;
    margin: 0 auto 30px;
  }
}

.profile_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 769px) {
  .profile_link {
    gap: 0 40px;
  }
}

@media screen and (max-width: 768px) {
  .profile_link {
    gap: 0 25px;
  }
}

.profile_link li a {
  display: block;
  color: #fff;
  background-color: #1b1513;
}

@media screen and (min-width: 769px) {
  .profile_link li a {
    width: 200px;
    line-height: 48px;
  }
}

@media screen and (max-width: 768px) {
  .profile_link li a {
    width: 135px;
    line-height: 33px;
  }
}

.profile_link li a:hover {
  opacity: .8;
  -webkit-transition: all .3s;
  transition: all .3s;
}

/* item
---------------------------------------------*/
.item {
  background-color: #dce2d6;
  position: relative;
}

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

@media screen and (min-width: 769px) {
  .item_list {
    gap: 40px;
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 768px) {
  .item_list {
    gap: 30px 4.5%;
    margin-bottom: 50px;
  }
}

.item_list li {
  background-color: #fff;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .item_list li {
    width: 220px;
    padding-bottom: 25px;
  }
}

@media screen and (max-width: 768px) {
  .item_list li {
    width: 47.7%;
    padding-bottom: 20px;
  }
}

.item_list li a {
  color: #1b1513;
}

@media screen and (min-width: 769px) {
  .item_list li a {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .item_list li a {
    gont-size: 11px;
  }
}

@media screen and (min-width: 769px) {
  .item_price {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 768px) {
  .item_price {
    margin-bottom: 10px;
  }
}

.link_none .item_price {
  margin-bottom: 0;
}

.buy {
  margin: 0 auto;
  border: 1px solid #1b1513;
}

@media screen and (min-width: 769px) {
  .buy {
    width: 100px;
    line-height: 30px;
  }
}

@media screen and (max-width: 768px) {
  .buy {
    width: 65px;
    line-height: 20px;
  }
}

.buy:hover {
  background-color: #1b1513;
  color: #fff;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media screen and (min-width: 769px) {
  .attention {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .attention {
    font-size: 11px;
  }
}

@media screen and (min-width: 769px) {
  .attention .attention_title {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .attention .attention_title {
    margin-bottom: 10px;
  }
}

.attention .attention_text {
  line-height: 1.85;
  text-align: justify;
}

/* footer
---------------------------------------------*/
@media screen and (min-width: 769px) {
  footer {
    padding: 160px 0;
  }
}

@media screen and (max-width: 768px) {
  footer {
    padding: 100px 0;
  }
}

footer .logo a {
  margin: 0 auto;
  display: block;
}

@media screen and (min-width: 769px) {
  footer .logo a {
    width: 117px;
  }
}

@media screen and (max-width: 768px) {
  footer .logo a {
    width: 26%;
  }
}

footer .logo a:hover {
  opacity: .7;
  -webkit-transition: .3s;
  transition: .3s;
}
/*# sourceMappingURL=style.css.map */