@charset "UTF-8";
html {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

main {
  min-height: 1px;
}

footer {
  margin-top: auto;
}

body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
  font-size: 16px;
  color: #0A142A;
}
@media (min-width: 768px) {
  body {
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
  }
}
@media (max-width: 767px) {
  body::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: url(../img/bg.jpg) center center no-repeat;
    background-size: cover;
    z-index: -1;
  }
}

p {
  line-height: 1.6;
}

a {
  text-decoration: underline;
  color: #1a0dab;
}
a:hover {
  text-decoration: none;
  opacity: 0.8;
  color: #1a0dab;
}
a.btn {
  text-decoration: none;
}

:focus,
button:focus {
  outline: none;
}

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

iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  border: none;
}

.l-inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .l-inner {
    max-width: calc(100% - 15px);
  }
}

.text-center {
  margin: 0 auto 50px;
  font-family: kozuka-mincho-pr6n, serif;
  font-size: 1rem;
  text-align: center;
}

.text-detail {
  margin: 50px auto 0;
  font-family: kozuka-mincho-pr6n, serif;
  font-size: 1rem;
  text-align: center;
}
@media (max-width: 767px) {
  .text-detail {
    font-size: 14px;
  }
}
.text-detail .large {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .text-detail .large {
    font-size: 1.8rem;
  }
}

.textbox {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.text-medium {
  font-family: kozuka-mincho-pr6n, serif;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;
  margin: 30px 20px;
}
@media (max-width: 767px) {
  .text-medium {
    font-size: 12px;
  }
}

header {
  padding: 10px 20px;
  background: #c4c4c4;
}
@media (max-width: 575px) {
  header {
    padding: 8px;
  }
}
header .img-logo {
  width: 32vw;
  max-width: 160px;
}

main .mainvisual {
  width: 100%;
  border-bottom: 1px solid #c4c4c4;
}
main .box-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  main .box-img {
    max-width: 100%;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
main .box-img__item {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0 30px;
}
@media (max-width: 767px) {
  main .box-img__item {
    margin: 0 10px;
  }
}
main .box-img__item--haku {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: url(../img/haku.JPG) center center no-repeat;
  background-size: cover;
  position: relative;
}
main .box-img__item--haku::after {
  content: "";
  display: block;
  width: 170px;
  height: 1px;
  background: #c1ab05;
  position: absolute;
  top: 170px;
  right: -125px;
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
}
@media (max-width: 767px) {
  main .box-img__item--haku::after {
    width: 70px;
    top: 70px;
    right: -50px;
  }
}
@media (max-width: 767px) {
  main .box-img__item--haku {
    width: 120px;
    height: 120px;
  }
}
main .box-img__item--panel {
  width: 500px;
  background: url(../img/img-photo.JPG) center center no-repeat;
  background-size: cover;
}
@media (max-width: 767px) {
  main .box-img__item--panel {
    width: 200px;
  }
}
main .section_intro {
  background: #ffffff;
  padding: 50px 0;
}
main .list-menu {
  width: 100%;
  height: 160px;
  background: #0A142A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 0;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  main .list-menu {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 0;
    height: 280px;
  }
}
main .list-menu li {
  list-style-type: none;
  width: 25%;
  height: 100%;
  position: relative;
}
@media (min-width: 768px) {
  main .list-menu li {
    max-width: 300px;
    border-left: 1px solid #ffffff;
  }
  main .list-menu li:last-child {
    border-right: 1px solid #ffffff;
  }
}
@media (max-width: 767px) {
  main .list-menu li {
    width: 50%;
    height: 50%;
  }
  main .list-menu li:nth-child(2n) {
    border-left: 1px solid #ffffff;
  }
  main .list-menu li:nth-child(n+3) {
    border-top: 1px solid #ffffff;
  }
}
main .list-menu li a {
  width: 100%;
  height: 100%;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
  font-family: quincy-cf, serif;
  z-index: 5;
  padding: 20px 0 35px;
}
main .list-menu li a:hover {
  opacity: 1;
}
main .list-menu li a .list-menu__ttl {
  font-size: 2rem;
  width: 100%;
  margin-bottom: 0;
  line-height: 1;
}
@media (max-width: 767px) {
  main .list-menu li a .list-menu__ttl {
    font-size: 1.4rem;
  }
}
main .list-menu li a .list-menu__text {
  width: 100%;
  font-size: 16px;
  line-height: 1;
  position: relative;
}
@media (max-width: 767px) {
  main .list-menu li a .list-menu__text {
    font-size: 14px;
    line-height: 1.2;
    margin-top: 12px;
  }
}
main .list-menu li a .list-menu__text::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border: 2px solid;
  border-color: transparent transparent #565656 #565656;
  margin: 0 auto;
  position: absolute;
  top: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}
@media (min-width: 768px) {
  main .list-menu li:first-child:hover {
    background-size: 100px 100px;
    background-image: repeating-conic-gradient(from 0deg, rgba(255, 255, 255, 0) 0deg 45deg, #000 45deg 90deg);
    background-repeat: repeat;
  }
}
main .list-menu li:first-child a {
  color: #FF91B2;
}
main .list-menu li:first-child a .list-menu__text::after {
  border-color: transparent transparent #FF91B2 #FF91B2;
}
@media (min-width: 768px) {
  main .list-menu li:nth-child(2):hover {
    background-size: auto auto;
    background-color: rgb(0, 0, 0);
    background-image: repeating-linear-gradient(45deg, transparent, transparent 24px, rgb(10, 20, 42) 24px, rgb(10, 20, 42) 48px);
  }
}
main .list-menu li:nth-child(2) a {
  color: #FFC800;
}
main .list-menu li:nth-child(2) a .list-menu__text::after {
  border-color: transparent transparent #FFC800 #FFC800;
}
@media (min-width: 768px) {
  main .list-menu li:nth-child(3):hover {
    background-color: #0a142a;
    background-image: radial-gradient(#000000 30%, transparent 33%), radial-gradient(#000000 30%, transparent 33%);
    background-position: 0 0, 36px 36px;
    background-size: 72px 72px;
  }
}
main .list-menu li:nth-child(3) a {
  color: #FF9B63;
}
main .list-menu li:nth-child(3) a .list-menu__text::after {
  border-color: transparent transparent #FF9B63 #FF9B63;
}
@media (min-width: 768px) {
  main .list-menu li:nth-child(4):hover {
    background: url(../img/patter.jpg) center center no-repeat;
    background-size: cover;
  }
}
main .list-menu li:nth-child(4) a {
  color: #6AC1FF;
}
main .list-menu li:nth-child(4) a .list-menu__text::after {
  border-color: transparent transparent #6AC1FF #6AC1FF;
}

footer {
  background-color: #0A142A;
  padding: 16px;
}
footer .link-pageup {
  width: 80px;
  height: 70px;
  position: fixed;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, #757575 0%, #9E9E9E 45%, #E8E8E8 70%, #9E9E9E 85%, #757575 90% 100%);
  opacity: 0.8;
}
@media (max-width: 767px) {
  footer .link-pageup {
    width: 70px;
    height: 60px;
  }
}
footer .link-pageup a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
footer .link-pageup a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f106";
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -42px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
@media (max-width: 767px) {
  footer .link-pageup a::before {
    width: 25px;
    font-size: 20px;
    top: -30px;
  }
}
footer .link-pageup a::after {
  content: "PAGE TOP";
  font-size: 13px;
  color: #fff;
  position: absolute;
  top: 35px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
  font-family: kozuka-mincho-pr6n, serif;
}
@media (max-width: 767px) {
  footer .link-pageup a::after {
    font-size: 10px;
    top: 30px;
  }
}
footer .link-pageup a:hover {
  color: #666666;
}
footer .copyright {
  display: block;
  text-align: center;
  color: #ffffff;
  font-family: kozuka-mincho-pr6n, serif;
}

.goods {
  margin-top: 130px;
}
@media (max-width: 767px) {
  .goods {
    margin-top: 100px;
  }
}
.goods-ttl {
  font-size: 4rem;
  text-align: center;
  margin-bottom: 30px;
  font-family: quincy-cf, serif;
}
@media (max-width: 767px) {
  .goods-ttl {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
}
.goods.spring .goods-ttl {
  color: #FF91B2;
}
.goods.summer .goods-ttl {
  color: #FFC800;
}
.goods.autumn .goods-ttl {
  color: #FF9B63;
}
.goods.winter .goods-ttl {
  color: #6AC1FF;
}
.goods-subtext {
  font-family: quincy-cf, serif;
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 40px;
}
.goods-mv {
  width: 100%;
}
.goods-mv img {
  width: 100%;
}
.goods-list {
  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;
  margin-top: 100px;
  padding-left: 0;
}
.goods-list__item {
  width: 28%;
  list-style-type: none;
}
@media (min-width: 768px) {
  .goods-list__item:nth-child(n+4) {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .goods-list__item {
    width: 48%;
  }
  .goods-list__item:nth-child(n+3) {
    margin-top: 40px;
  }
}
.goods-list__img img {
  border-radius: 10px;
  width: 100%;
}
.goods-list__name {
  text-align: center;
  font-family: kozuka-mincho-pr6n, serif;
  font-size: 1.2rem;
  margin-top: 5px;
}
@media (max-width: 767px) {
  .goods-list__name {
    font-size: 1rem;
  }
}
.goods-list__detail, .goods-list__cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 200px;
  height: 30px;
  background: #fff;
  border-radius: 40px;
  border: 1px solid #24407c;
  color: #24407c;
  text-decoration: none;
  margin: 5px auto;
  font-family: kozuka-mincho-pr6n, serif;
  font-size: 13px;
  line-height: 1;
  position: relative;
  -webkit-box-shadow: 1px 1px 2px #24407c;
          box-shadow: 1px 1px 2px #24407c;
  -webkit-transition: 0.1s ease;
  transition: 0.1s ease;
}
@media (max-width: 767px) {
  .goods-list__detail, .goods-list__cart {
    width: 90%;
    font-size: 12px;
  }
}
.goods-list__detail:hover, .goods-list__cart:hover {
  background: #0A142A;
  color: #ffffff;
}
.goods-list__detail:hover .fas, .goods-list__cart:hover .fas {
  color: #ffffff;
}
.goods-list__cart .fas {
  color: #24407c;
  margin-right: 5px;
}