@charset "UTF-8";
/* Scss Document */
/*リセット
--------------------------------------------*/
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;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
}

*,
*:after,
*:before {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/*変数
---------------------------------------------*/
html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  color: #000;
  letter-spacing: 1px;
  font-family: garamond-premier-pro, a-otf-ryumin-pr6n, "YuGothic", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", arial, helvetica, sans-serif;
}
@media screen and (min-width: 970px) {
  body {
    font-size: 13px;
    line-height: 19px;
  }
}
@media screen and (max-width: 970px) {
  body {
    font-size: 12px;
    line-height: 20px;
  }
}

ul li {
  list-style: none;
}

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

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  color: #723030;
}

/* clearfix
-------------- */
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

@media screen and (min-width: 970px) {
  .pc_none {
    display: none !important;
  }
}
@media screen and (max-width: 970px) {
  .pc_none {
    display: block;
  }
}

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

.animated {
  /* animation-duration:0.1s; */
  transition-delay: 0.38s;
}

/* ---------------------------------------------------
 Common
--------------------------------------------------- */
.read {
  font-family: ryo-display-plusn, serif;
  text-align: center;
}
@media screen and (min-width: 970px) {
  .read {
    margin: 150px auto;
    font-size: 13px;
    width: 60%;
    line-height: 30px;
  }
}
@media screen and (max-width: 970px) {
  .read {
    margin: 70px auto;
    width: 87%;
    line-height: 25px;
  }
}
.read p {
  text-align: left;
}

#wrap {
  background: #fff;
  margin: 0 auto;
}
@media screen and (min-width: 970px) {
  #wrap {
    width: 100%;
    height: 100%;
  }
}

#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 14px;
  line-height: 1;
  z-index: 99;
}
@media screen and (max-width: 970px) {
  #page-top {
    right: 10px;
    bottom: 10px;
  }
}

#page-top a {
  position: relative;
  background: #E6DCD2;
  text-decoration: none;
  color: #723030;
  width: 60px;
  padding: 30px 14px;
  text-align: center;
  display: block;
  border-radius: 90px;
  opacity: 1;
  transition: all 0.3s ease;
}
#page-top a .bag {
  position: absolute;
  top: 46%;
  left: 15px;
}

#page-top a::before {
  position: absolute;
  top: -30%;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 10px;
  height: 10px;
  margin: auto;
  content: "";
  transform: rotate(315deg);
  border-top: 1px solid #723030;
  border-right: 1px solid #723030;
}

#page-top a:hover {
  text-decoration: none;
  opacity: 0.7;
}

/* ---------------------------------------------------
 FV
--------------------------------------------------- */
#mainarea {
  width: 100%;
  background-color: #D2C6BA;
}
#mainarea .main_container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 970px) {
  #mainarea .main_container {
    width: 100%;
    margin: 0 auto;
  }
}
#mainarea .main_container .main_flex {
  position: absolute;
  display: flex;
  width: 92.5%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (min-width: 970px) {
  #mainarea .main_container .main_flex {
    top: 4.2%;
  }
}
@media screen and (max-width: 970px) {
  #mainarea .main_container .main_flex {
    flex-wrap: wrap;
    width: 96%;
  }
}
@media screen and (max-width: 970px) {
  #mainarea .main_container .main_flex.top {
    top: 1.1%;
  }
}
@media screen and (max-width: 970px) {
  #mainarea .main_container .main_flex.bottom {
    bottom: 1.1%;
  }
}
#mainarea .main_container .main_flex .flex_img {
  width: 33%;
}
@media screen and (max-width: 970px) {
  #mainarea .main_container .main_flex .flex_img {
    width: 50%;
  }
}
@media screen and (max-width: 970px) {
  #mainarea .main_container .flex_img_L {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px 0;
    width: 92%;
  }
}
#mainarea .main_container h1 {
  position: absolute;
  bottom: 3.4%;
  width: 53%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 970px) {
  #mainarea .main_container h1 {
    width: 80%;
    margin: 0 auto;
  }
}
#mainarea .main_container .otonaLogo {
  position: absolute;
}
@media screen and (min-width: 970px) {
  #mainarea .main_container .otonaLogo {
    width: 6.2%;
    bottom: 4%;
    right: 10.8%;
  }
}
@media screen and (max-width: 970px) {
  #mainarea .main_container .otonaLogo {
    width: 14.1%;
    top: 2%;
    left: 4%;
  }
}
#mainarea .main_container .fadeIn {
  opacity: 0;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@media screen and (min-width: 970px) {
  #mainarea .main_container .fadeIn {
    -webkit-animation-name: fadein;
            animation-name: fadein;
  }
}
@media screen and (max-width: 970px) {
  #mainarea .main_container .fadeIn {
    -webkit-animation-name: fadein_sp;
            animation-name: fadein_sp;
  }
}
#mainarea .main_container .delay_2 {
  opacity: 0;
  -webkit-animation-delay: 500ms;
          animation-delay: 500ms;
}
#mainarea .main_container .delay_3 {
  opacity: 0;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
#mainarea .main_container .delay_4 {
  opacity: 0;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

@media screen and (min-width: 970px) {
  .main_container::before {
    content: "";
    display: block;
    padding-top: 58.3333333333%;
  }
}
@media screen and (max-width: 970px) {
  .main_container::before {
    content: "";
    display: block;
    padding-top: 177.7%;
  }
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
    transform: translateX(0px);
  }
  100% {
    opacity: 1;
    transform: translateX(20px);
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateX(0px);
  }
  100% {
    opacity: 1;
    transform: translateX(20px);
  }
}
@-webkit-keyframes fadein_sp {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes fadein_sp {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
/* ---------------------------------------------------
 brand list
--------------------------------------------------- */
.container {
  max-width: 560px;
  margin: 150px auto;
}
@media screen and (max-width: 970px) {
  .container {
    width: 100%;
  }
}
.container .category-area {
  display: flex;
  gap: 20px 10px;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 970px) {
  .container .category-area {
    width: 90%;
    margin: 0 auto;
    gap: 20px 5px;
    justify-content: space-between;
  }
}
.container .category-area li {
  width: 100px;
  font-size: 10px;
}
@media screen and (max-width: 970px) {
  .container .category-area li {
    width: 29%;
  }
}
.container .category-area li p {
  padding-top: 7px;
  line-height: 1.2;
  font-size: 1em;
  letter-spacing: normal;
}

/* ---------------------------------------------------
 BOX
--------------------------------------------------- */
h2 {
  text-align: left;
}
@media screen and (min-width: 970px) {
  h2 {
    font-size: 35px;
    line-height: 40px;
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 970px) {
  h2 {
    font-size: 25px;
    margin-bottom: 20px;
    line-height: 27px;
  }
}

.kana {
  font-size: 11px;
  width: 80%;
  margin: 0 auto;
}

.brand {
  color: #723030;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media screen and (min-width: 970px) {
  .brand {
    width: 80%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 970px) {
  .box {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 970px) {
  #box10 .box {
    margin-bottom: 0;
  }
}

.img_two_flex {
  width: 100%;
}
@media screen and (min-width: 970px) {
  .img_two_flex {
    display: flex;
  }
}
@media screen and (max-width: 970px) {
  .img_two_flex {
    background-color: #D2C6BA;
  }
}
.img_two_flex .num {
  position: absolute;
  transform: rotate(90deg);
}
@media screen and (min-width: 970px) {
  .img_two_flex .num {
    top: 12%;
    left: -4%;
  }
}
@media screen and (max-width: 970px) {
  .img_two_flex .num {
    top: 13%;
    left: -8%;
  }
}
.img_two_flex .num span {
  padding-left: 5px;
  font-weight: bold;
  font-size: 11px;
}
@media screen and (min-width: 970px) {
  .img_two_flex .num span {
    font-size: 15px;
  }
}
.img_two_flex .line {
  height: 1px;
  background-color: #000;
}
@media screen and (min-width: 970px) {
  .img_two_flex .line {
    position: absolute;
    width: 70px;
    right: -5%;
    top: 50%;
    z-index: 100;
  }
}
@media screen and (max-width: 970px) {
  .img_two_flex .line {
    transform: rotate(90deg);
    width: 30px;
    margin: 5px auto 0;
    position: relative;
    z-index: 100;
  }
}
@media screen and (min-width: 970px) {
  .img_two_flex .lineL {
    position: absolute;
    width: 70px;
    left: -5%;
    top: 50%;
  }
}
.img_two_flex .img_1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  position: relative;
}
@media screen and (min-width: 970px) {
  .img_two_flex .img_1 {
    width: 50%;
  }
}
@media screen and (max-width: 970px) {
  .img_two_flex .img_1 {
    width: 100%;
  }
}
.img_two_flex .img_1 .img_odd {
  width: 100%;
  margin: 0 auto;
}
.img_two_flex .img_2 {
  background-color: #D2C6BA;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 970px) {
  .img_two_flex .img_2 {
    width: 50%;
  }
}
@media screen and (max-width: 970px) {
  .img_two_flex .img_2 {
    width: 85%;
    padding-top: 50px;
    margin: 0 auto;
  }
}
.img_two_flex h3 {
  text-align: center;
  margin: 30px auto;
  font-family: ryo-display-plusn, serif;
}
@media screen and (min-width: 970px) {
  .img_two_flex h3 {
    width: 80%;
  }
}
.img_two_flex h3 p {
  text-align: justify;
  display: inline-block;
}
@media screen and (min-width: 970px) {
  .img_two_flex h3 p {
    line-height: 25px;
  }
}
@media screen and (max-width: 970px) {
  .img_two_flex h3 p {
    line-height: 20px;
  }
}
.img_two_flex .border_s {
  border-bottom: solid 1px #000;
  display: block;
  width: 180px;
  margin: 60px auto;
}
.img_two_flex .brandtop {
  font-size: 11px;
}
@media screen and (min-width: 970px) {
  .img_two_flex .brandtop {
    text-align: left;
    width: 80%;
    margin: 50px auto 0;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 970px) {
  .img_two_flex .brandtop {
    text-align: right;
    margin: 50px auto 0;
    padding-bottom: 50px;
  }
}
.img_two_flex .brandtop a {
  border: 0.5px solid #000;
  padding: 7px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}
.img_two_flex .brandtop a:hover {
  border: 0.5px solid #723030;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0);
}

.flex_in {
  display: flex;
}
.flex_in div:nth-child(2) {
  margin: 0 15px;
}
@media screen and (max-width: 970px) {
  .flex_in {
    margin: 20px auto 70px;
  }
}

.flex_even {
  flex-direction: row-reverse;
}

.credit::-webkit-scrollbar {
  width: 3px;
}

.credit::-webkit-scrollbar-thumb {
  background-color: #000;
  border-radius: 50px;
}

.credit::-webkit-scrollbar-track {
  background-color: #999;
  border-radius: 50px;
  overflow: auto;
}

.credit {
  margin: 0 auto;
}
@media screen and (min-width: 970px) {
  .credit {
    width: 80%;
    height: 40%;
    max-height: 570px;
    overflow: auto;
    overflow-x: hidden;
  }
}
@media screen and (min-width: 970px) {
  .credit li {
    line-height: 20px;
  }
}
.credit .flex {
  padding-top: 10px;
  align-items: flex-start;
  justify-content: space-between;
  display: flex;
}
.credit .flex .itemin_img {
  width: 8%;
}
@media screen and (max-width: 970px) {
  .credit .flex .itemin_img {
    width: 17%;
  }
}
.credit .flex .itemin_detail {
  font-size: 11px;
  width: 90%;
}
@media screen and (max-width: 970px) {
  .credit .flex .itemin_detail {
    width: 79%;
  }
}
.credit .flex .itemin_detail .price {
  position: relative;
  font-weight: bold;
  margin-top: 10px;
}
@media screen and (max-width: 970px) {
  .credit .flex .itemin_detail .price {
    margin-top: 2px;
  }
}
.credit .flex .itemin_detail .price .buy {
  position: absolute;
  right: 45%;
  background-color: #723030;
  color: #fff;
  padding: 0 12px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 970px) {
  .credit .flex .itemin_detail .price .buy {
    right: 0;
  }
}
.credit .flex .itemin_detail .price .buy:hover {
  color: #ccc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0);
}
.credit .flex .itemin_detail .price .coming {
  position: absolute;
  right: 45%;
  background-color: #A29A9A;
  color: #fff;
  padding: 0 12px;
}
@media screen and (max-width: 970px) {
  .credit .flex .itemin_detail .price .coming {
    right: 0;
  }
}
.credit .sanko {
  font-size: 10px;
  padding: 5px 0;
  display: block;
}

/* ---------------------------------------------------
 Footer
--------------------------------------------------- */
footer {
  background: #F5F5F5;
}
@media screen and (min-width: 970px) {
  footer {
    padding: 205px 0 20px;
  }
}
@media screen and (max-width: 970px) {
  footer {
    padding: 100px 0 10px;
  }
}
footer div.inner {
  margin: 0 auto;
}
@media screen and (min-width: 970px) {
  footer div.inner {
    width: 842px;
  }
}
@media screen and (max-width: 970px) {
  footer div.inner {
    width: 94.5%;
  }
}
footer div.inner h6 {
  text-align: center;
  font-family: garamond-premier-pro, serif;
  letter-spacing: 0.1em;
  font-style: normal;
  font-weight: 400;
}
@media screen and (max-width: 970px) {
  footer div.inner h6 {
    font-size: 18px;
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 970px) {
  footer div.inner h6 {
    font-size: 23px;
    margin-bottom: 90px;
  }
}
@media screen and (max-width: 970px) {
  footer div.inner h6 span {
    font-size: 15px;
  }
}
@media screen and (min-width: 970px) {
  footer div.inner h6 span {
    font-size: 20px;
  }
}
footer div.inner div.banner_outer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (min-width: 970px) {
  footer div.inner div.banner_outer {
    margin-bottom: 136px;
  }
}
@media screen and (max-width: 970px) {
  footer div.inner div.banner_outer {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 970px) {
  footer div.inner div.banner_outer div.banner_wrap {
    width: 48.2%;
    margin-bottom: 32px;
  }
}
@media screen and (min-width: 970px) {
  footer div.inner div.banner_outer div.banner_wrap {
    width: 389px;
    margin-bottom: 45px;
  }
}
footer div.inner div.banner_outer div.banner_wrap a {
  color: #000;
  text-decoration: none;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-style: normal;
  font-weight: 400;
}
footer div.inner div.banner_outer div.banner_wrap img {
  display: block;
  width: 100%;
}
footer div.inner div.banner_outer div.banner_wrap p.text_wrap {
  line-height: 1;
}
@media screen and (min-width: 970px) {
  footer div.inner div.banner_outer div.banner_wrap p.text_wrap {
    margin-top: 20px;
  }
}
@media screen and (max-width: 970px) {
  footer div.inner div.banner_outer div.banner_wrap p.text_wrap {
    margin-top: 17px;
  }
}
footer div.inner div.banner_outer div.banner_wrap p.text_wrap span.date {
  font-size: 10px;
  color: #707070;
  display: block;
  margin-bottom: 8px;
}
footer div.inner div.banner_outer div.banner_wrap p.text_wrap span.f_title {
  font-size: 12px;
  line-height: 1.62;
}
@media screen and (max-width: 970px) {
  footer div.inner ul.btnArea {
    width: 86.7418899859%;
    margin: 0 auto 75px;
  }
}
@media screen and (min-width: 970px) {
  footer div.inner ul.btnArea {
    width: 528px;
    margin: 0 auto 120px;
  }
}
@media screen and (max-width: 970px) {
  footer div.inner ul.btnArea li {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 970px) {
  footer div.inner ul.btnArea li {
    margin-bottom: 24px;
  }
}
footer div.inner ul.btnArea li a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #707070;
  text-decoration: none;
  color: #000;
  font-family: garamond-premier-pro, serif;
  font-style: normal;
  letter-spacing: 0.1em;
  font-weight: 400;
}
@media screen and (min-width: 970px) {
  footer div.inner ul.btnArea li a {
    height: 54px;
    font-size: 16px;
  }
}
@media screen and (max-width: 970px) {
  footer div.inner ul.btnArea li a {
    font-size: 13px;
    height: 54px;
  }
}
footer div.inner p.copy {
  font-family: garamond-premier-pro, serif;
  letter-spacing: 0.1em;
  font-style: normal;
  font-weight: 400;
  font-size: 9px;
  text-align: center;
}
@media screen and (min-width: 970px) {
  footer div.inner p.copy {
    font-size: 11px;
  }
}/*# sourceMappingURL=style.css.map */