@charset "UTF-8";

/* ===============================================
reset
=============================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}
html {
  overflow-y: scroll;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.75;
  color: #f9ad32;
  background: #fff;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", YuGothic, "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ul,
ol {
  list-style: none;
}
em {
  font-style: normal;
}
a:link {
  color: #f9ad32;
  text-decoration: underline;
}
a:visited {
  color: #f9ad32;
  text-decoration: underline;
}
a:hover {
  color: #f9ad32;
  text-decoration: none;
}
a:active {
  color: #f9ad32;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media only screen and (max-width: 767px) {
  img {
    width: 100%;
  }
}
a img {
  border: none;
  text-decoration: none;
}
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.is_pc {
  display: block;
}
@media only screen and (max-width: 767px) {
  .is_pc {
    display: none;
  }
}
.is_sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  .is_sp {
    display: block;
  }
}

/* ===============================================
#wrapper
=============================================== */
#wrapper {
  position: relative;
}

/* ===============================================
header
=============================================== */
header {
  position: fixed;
  z-index: 9;
  top: 0;
  min-width: 980px;
  width: 100%;
  height: 80px;
  background: #fff;
  border-top: 3px solid #fcd896;
  border-bottom: 3px solid #fcd896;
}
@media only screen and (max-width: 767px) {
  header {
    z-index: 3;
    border: none;
    height: auto;
    background: #fcd896;
    min-width: inherit;
  }
  .nav_is_open header {
    z-index: 10;
  }
}
header .wrapper {
  display: flex;
  min-width: 980px;
  max-width: 1240px;
  height: 74px;
  margin: 0 auto;
  padding: 10px;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  header .wrapper {
    min-width: inherit;
    max-width: inherit;
    justify-content: space-between;
    height: auto;
    margin: 0;
    padding: 10px 4vw 10px;
  }
  .nav_is_open header .wrapper {
    display: block;
    padding: 0;
    background: transparent;
  }
}
header .site_id {
  margin-right: auto;
  margin-left: 20px;
  flex: auto;
}
@media only screen and (max-width: 767px) {
  header .site_id {
    margin-left: 0;
    margin-right: 0;
  }
  .nav_is_open header .site_id {
    padding: 15px 4vw 15px 4vw;
  }
}
header .site_id img {
  width: 55%;
}
@media only screen and (max-width: 767px) {
  header .site_id img {
    width: 42vw;
  }
}
header .header-nav_trigger {
  display: none;
}
@media only screen and (max-width: 767px) {
  header .header-nav_trigger {
    position: absolute;
    z-index: 9;
    right: 10px;
    top: 5px;
    display: block;
  }
  header .header-nav_trigger a {
    display: block;
    width: 10vw;
    max-width: 40px;
    height: 10vw;
    max-height: 40px;
    background: url("../img/common/icon_nav_bar.svg") no-repeat center center;
    background-size: cover;
  }
  header .header-nav_trigger.is_open a {
    background: url("../img/common/icon_nav_close.svg") no-repeat center center;
  }
}
.header-nav_wrapper {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .header-nav_wrapper {
    display: none;
  }
  .nav_is_open .header-nav_wrapper {
    display: block;
    padding: 50px 20px 40px;
    background: #fff;
    width: 100vw;
  }
}
header .header-nav_list {
  display: flex;
  justify-content: flex-end;
}
@media only screen and (max-width: 767px) {
  .nav_is_open header .header-nav_list {
    display: block;
    margin-bottom: 60px;
  }
}
header .header-nav_list li {
  border-left: 1px solid #3e3a3a;
}
@media only screen and (max-width: 767px) {
  header .header-nav_list li {
    border-left: none;
  }
}
header .header-nav_list li:last-child {
  border-right: 1px solid #3e3a3a;
}
@media only screen and (max-width: 767px) {
  header .header-nav_list li:last-child {
    border-right: none;
  }
}
header .header-nav_list li a {
  display: block;
  padding: 4px 14px;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1;
  white-space: nowrap;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  header .header-nav_list li a {
    padding: 15px 20px;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: left;
    border-bottom: 1px solid #f8ac32;
  }
}
header .header-nav_list li a:link,
header .header-nav_list li a:visited {
  color: #3e3a3a;
  text-decoration: none;
}
header .header-nav_list li a:hover,
header .header-nav_list li a:active {
  color: #3e3a3a;
  text-decoration: none;
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  header .header-nav_list li a:link,
  header .header-nav_list li a:visited,
  header .header-nav_list li a:hover,
  header .header-nav_list li a:active {
    color: #f8ac32;
    opacity: 1;
  }
}
header .header-sns_list {
  margin-left: 2vw;
  display: flex;
}
@media only screen and (max-width: 767px) {
  header .header-sns_list {
    margin-right: auto;
    margin-left: auto;
    justify-content: center;
    background: #fff;
    padding: 15px 0;
  }
}
header .header-sns_list li {
  margin-left: 5px;
  flex-basis: 44px;
  flex: 0 0 auto;
}
@media only screen and (max-width: 767px) {
  header .header-sns_list li {
    margin-left: 10px;
    flex-basis: 42px;
  }
}
header .header-sns_list li a {
  transition: 0.3s;
}
header .header-sns_list li a:hover {
  opacity: 0.7;
}
header .header-sns_list li img {
  max-width: 42px;
}
@media only screen and (max-width: 767px) {
  header .header-sns_list li img {
    max-width: 42px;
  }
}

/* ===============================================
main
=============================================== */
main {
  display: block;
  min-width: 980px;
  width: 100%;
  background: #fdf8e8;
  padding-top: 72px;
}
@media only screen and (max-width: 767px) {
  main {
    min-width: inherit;
    width: 100%;
    padding-top: 8vw;
  }
}
main .wrapper {
  width: 980px;
  margin: 0 auto;
  font-size: 1.8rem;
}
@media only screen and (max-width: 767px) {
  main .wrapper {
    width: 100%;
    padding: 10px 6vw;
    font-size: 1.4rem;
  }
}
main * small {
  font-size: 70%;
}

/* ===============================================
footer
=============================================== */
footer {
  padding: 40px 0 30px;
}
@media only screen and (max-width: 767px) {
  footer {
    padding: 30px 0 20px;
  }
}
footer .wrapper {
  display: flex;
  min-width: 980px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px 30px;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  footer .wrapper {
    display: block;
    min-width: inherit;
    max-width: inherit;
    margin: 0 auto;
    padding: 0 8vw;
    align-items: center;
    justify-content: space-between;
  }
}
footer .footer-logo {
  flex-basis: 206px;
}
footer .footer-logo img {
  width: 206px;
}
@media only screen and (max-width: 767px) {
  footer .footer-logo {
    display: block;
	  margin: 0 auto 30px;
	  padding-left: 2vw;
	  text-align: center;
  }
	footer .footer-logo img {
  width: 50%;
}
}

footer .footer-sns_list {
  display: none;
}
@media only screen and (max-width: 767px) {
  footer .footer-sns_list {
    display: flex;
    justify-content: center;
  }
  footer .footer-sns_list li {
    margin: 0 5px 30px;
  }
}
footer .footer-nav_list {
  display: flex;
}
@media only screen and (max-width: 767px) {
  footer .footer-nav_list {
    justify-content: center;
  }
}
footer .footer-nav_list li:not(:last-child) {
  border-right: 1px solid #3e3a3a;
}
footer .footer-nav_list li a {
  display: block;
  padding: 2px 10px;
  text-align: center;
  font-size: 1.4rem;
  line-height: 1;
  transition: 0.3s;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  footer .footer-nav_list li a {
    font-size: 1.4rem;
  }
}
footer .footer-nav_list li a:link,
footer .footer-nav_list li a:visited {
  color: #3e3a3a;
  text-decoration: none;
}
footer .footer-nav_list li a:hover,
footer .footer-nav_list li a:active {
  color: #3e3a3a;
  text-decoration: none;
  opacity: 0.7;
}
footer .footer-copyright {
  font-size: 1.3rem;
  line-height: 1;
  color: #3e3a3a;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  footer .footer-copyright {
    padding-top: 20px;
    text-align: center;
    line-height: 1.6;
  }
}

/* ===============================================
cookie
=============================================== */
.info-area__inner {
  color: #262626;
}

/* ===============================================
modal
=============================================== */
.modal_is_open {
  overflow-y: hidden;
}
.modal-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;
  padding: 60px 10px;
  text-align: center;
}
.modal-wrapper:not(:target) {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
}
.modal-wrapper:target {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.4s, visibility 0.4s;
}
.modal-wrapper::after {
  display: inline-block;
  margin-left: -0.05em;
  height: 100%;
  content: "";
  vertical-align: middle;
}
.modal-wrapper .modal-window {
  position: relative;
  z-index: 20;
  display: inline-block;
  box-sizing: border-box;
  padding: 15px 50px 15px 20px;
  width: 90%;
  max-width: 1100px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  vertical-align: middle;
}
.modal-wrapper .modal-window .modal-content {
  overflow-y: auto;
  max-height: 80vh;
}
@media only screen and (max-width: 767px) {
  .modal-wrapper .modal-window .modal-content {
    overflow: auto;
    height: 65vh;
  }
}
.modal-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  background: rgba(0, 0, 0, 0.8);
}
.modal-overlay:hover {
  opacity: 1 !important;
}
.modal-wrapper .modal-close {
  position: absolute;
  top: 17.5px;
  right: 12.5px;
  z-index: 20;
  width: 26px;
  height: 26px;
  color: #95979c !important;
}
.modal-wrapper .modal-close svg {
  transform: scale(2);
}
.modal-wrapper .modal-close:hover {
  color: #2b2e38 !important;
}
.modal-wrapper .modal-window .modal-content::-webkit-scrollbar {
  height: 12px;
  width: 12px;
}
.modal-wrapper .modal-window .modal-content::-webkit-scrollbar-thumb {
  background: #999;
}
.modal-wrapper .modal-window .modal-content::-webkit-scrollbar-track-piece {
  background: #efefef;
}

/* #purchase
----------------------- */
#purchase .modal-wrapper .modal-window {
  padding: 45px 20px 35px 20px;
  width: auto;
  max-width: inherit;
}
@media only screen and (max-width: 767px) {
  #purchase .modal-wrapper .modal-window {
    margin-top: 20vh;
    padding: 35px 10px 25px 10px;
    height: auto;
    max-width: inherit;
  }
}
_:-ms-fullscreen,
:root #purchase .modal-wrapper .modal-window .modal-content {
  overflow: hidden;
}
#purchase .modal-wrapper .modal-window .store_title {
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  #purchase .modal-wrapper .modal-window .store_title {
    margin-bottom: 20px;
    width: 80%;
  }
}
@media only screen and (max-width: 767px) {
  #purchase .modal-wrapper .modal-window .modal-content {
    height: auto;
    overflow: hidden;
  }
}
