/*!
* A Modern CSS Reset Base
* 全ての要素にbox-sizing: border-box;.

/* Box sizing rules */
*,
:after,
:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

blockquote,
body,
dd,
dl,
figure,
h1,
h2,
h3,
h4,
ol[class],
p,
table,
td,
th,
tr,
ul {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
  overflow-x: hidden;
  scrollbar-width: none;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.0;
}

ol[class],
ul[class] {
  list-style: none;
}

a {
  text-decoration: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

img:not([alt]) {
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

@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;
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* color */
:root {
  --color-black: #000000;
  --color-gray: #86868B;
  --color-white: #FFFFFF;
  --color-light-yellow: #FEFAEE;
}

/* body */
body {
  background-color: #fff;
  font-size: 1.9rem;
  font-family: "Noto Sans", sans-serif;
  color: var(--color-gray);
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.center {
  text-align: center;
}

.mb-40 {
  margin-bottom: 40px;
}

.spBr {
  display: none;
}

.font_s {
  font-size: 1.2rem;
}

.font_ss {
  font-size: 1.0rem;
}

.t-bold {
  font-weight: bold;
}

.noto-sans {
  font-family: "Noto Sans", sans-serif;
  font-weight: 600;
  font-style: normal;
}

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

/* layout-top */
header {
  width: 100%;
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.header-menu {
  display: flex;
  padding: 15px 10%;
  text-align: center;
  justify-content: space-between;
  align-items: center;
}

.header-menu .logo img {
  width: 70px;
  height: auto;
}

.main-visual {
  width: 100%;
  height: auto;
  background-image: url(../img/mv_pc.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.mv-inner {
  text-align: center;
  padding: 10% 0;
}

.mv-inner .logo-img {
  height: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}
.area_name {
  font-size: 7rem;
  margin-bottom: 50px;
  color: white;
  font-weight: bold;
}

h1 {
  font-size: 5rem;
  color: var(--color-white);
  line-height: 1.8;
  margin-bottom: 20px;
}

h1>span {
  font-size: 1.9rem;
}

.top_pr {
  margin: 20px 50px;
  height:100%;
  padding: 2rem 2rem;
  box-sizing: border-box;
  background-color: #FFFFFF;
  opacity: 80%;
  border-radius: 3%;
}

.top_pr > p {
  color: black;
  font-family: "Noto Sans", sans-serif;
  font-weight: bold;
  margin-top: 1px;
}

.top_pr > img {
  margin-top: 15px;
}

.amazon_price {
  color: #C31D1D;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 42px;
  letter-spacing: 0.0005em;
  font-weight: 700;
}
.yenbun {
  writing-mode: vertical-rl;
  font-size: 14px;
  padding-left: 2px;
}

.present {
  display: inline-block;
  font-size: 25px;
  padding-left: 2px;
  vertical-align: 0.2em;
}
.top_pr > .present_limited {
  font-size: 10px;
  margin-top: 10px;
  color: #C31D1D;
}

.entry-btn_mv {
    border-radius: 100px;
    color: var(--color-white);
    background-color: var(--color-black);
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 12px;
    padding: 10px 5px;
    display: block;
}
.entry-btn_mv > a {
  font-size: 16px;
  color: white;
}

@media screen and (min-width:481px) {
  
  .top_pr {
    display: inline-block;
    padding-left: 5%;
    padding-right: 5%;
  }

}


/* scroll */
.scroll-icon {
  width: 24px;
  height: 24px;
}

/* entry-btnのバリエーション */
.entry-btn a {
  border: 2px solid var(--color-white);
  border-radius: 100px;
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: bold;
  padding: 10px 23px;
  display: block;
}

.entry-btn a:hover {
  background-color: var(--color-white);
  color: var(--color-black);
  padding: 10px 23px;
}

.entry-btn.__mv {
  margin-bottom: 56px;
}

.entry-btn.__mv a {
  width: 242px;
  background-color: var(--color-white);
  color: var(--color-black);
  font-size: 1.8rem;
  margin: 0 auto;
  position: relative;
}

.entry-btn.__mv a::after {
  bottom: 0;
  content: "";
  height: 10px;
  margin: auto;
  position: absolute;
  right: 30px;
  top: 0;
  transform: rotate(45deg);
  width: 10px;
}

.entry-btn.__mv a:hover {
  background-color: transparent;
  color: var(--color-white);
  margin: 0 auto;
  position: relative;
}

.entry-btn.__contents a {
  width: 242px;
  background-color: var(--color-black);
  color: var(--color-white);
  font-size: 1.8rem;
  margin: 0 auto;
  position: relative;
}

.entry-btn.__contents a::after {
  bottom: 0;
  content: "";
  height: 10px;
  margin: auto;
  position: absolute;
  right: 30px;
  top: 0;
  transform: rotate(45deg);
  width: 10px;
}

.entry-btn.__contents a:hover {
  background-color: transparent;
  color: var(--color-black);
  border: 2px solid var(--color-black);
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width:480px) {
  .header-menu {
    padding: 15px;
  }

  .mv-inner {
    padding: 25% 0 15%;
  }

  .main-visual {
    background-image: url(../img/mv_sp.jpg);
  }

  .area_name {
    font-size: 40px;
    margin-bottom: 50px;
    color: white;
    font-weight: bold;
  }
 
  h1 {
    font-size: 3.0rem;
    margin-bottom: 20px;
  }

  h1 > span {
    font-size: 1.5rem;
    margin-bottom: 50px;
  }
}

/* layout-section */
.container {
  max-width: 950px;
  text-align: center;
  margin: 0 auto;
  padding: 100px 20px;
}

/* about */
section.about {
  margin-top: 0;
  height: 100%;
  background: linear-gradient(180deg, var(--color-light-yellow) 0%, var(--color-light-yellow) 80%, var(--color-white) 80%, var(--color-white) 100%);
  text-align: center;
}

section.about .container {
  padding: 100px 0 0;
  height: 100%;
  background: linear-gradient(180deg, var(--color-light-yellow) 0%, var(--color-light-yellow) 80%, var(--color-white) 80%, var(--color-white) 100%);
}

@media screen and (max-width:480px) {
  .container {
    padding: 50px 30px 80px;
  }

  section.about {
    background: linear-gradient(180deg, var(--color-light-yellow) 0%, var(--color-light-yellow) 90%, var(--color-white) 90%, var(--color-white) 100%);
  }

  section.about .container {
    padding: 50px 30px 0;
  }

  .pic-m {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
}

h2 {
  font-size: 3.2rem;
}

h2.headline_01 {
  margin-bottom: 40px;
  color: var(--color-black);
  text-align: center;
}

.storage_title {
  font-size: 50px;
  font-family: Abhaya Libre ExtraBold;
}

.description {
  color: var(--color-gray);
  margin-bottom: 10px;
  font-weight: bold;
}

.storage_diff {
  margin: 10px 0px 40px 0px;
  background: linear-gradient(180deg, var(--color-light-yellow) 0%, var(--color-light-yellow) 80%, var(--color-white) 80%, var(--color-white) 100%);
}


.str_point {
  background-color: white;
  box-shadow: 3px 3px 5px grey;
  padding: 5% 8% 8%;
  margin: 20px 0px;
  border-radius: 3%;
  text-align: center;
  display: block;
}



.str_point > h3 {
  font-size: 28px;
  color: black;
  font-family: "ヒラギノ明朝 ProN";
  font-weight: bolder;
  font-style: italic;

}

.str_point > h4 {
  font-size: 18px;
  text-align: center;
  margin-bottom: 15px;
}

.str_point > .pointlist {
  display: inline-block;
  font-family: "Noto Sans", "sans-serif";
  font-size: 14px;
  font-weight: 100;
  color: black;
  margin-bottom: 15px;
  text-align: left;
}

@media screen and (min-width:841px) {
.str_point > p {
  font-size: 15px;
  font-weight: 100;
  color: black;
  margin-bottom: 15px;
  text-align: center;
}
}

.str_point > img {
  width: 100%;
  height:100%;
}
@media screen and (min-width:841px) {

.str_point > img {
  width: 60%;
  height:100%;
}
}

.t-black {
  color: var(--color-black);
}

.note {
  font-size: 1.2rem;
  color: black;
  font-weight: bold;
}

.scroll .scroll_text {
  color: var(--color-white);
  font-family: "Roboto", serif;
  font-size: 1.2rem;
}

@media screen and (max-width:480px) {

  .description,
  .note {
    text-align: left;
  }

}

/* point */
h2.headline_02 {
  margin-bottom: 40px;
}

h2.headline_02 span.sub-title {
  margin-bottom: 8px;
  font-size: 1.9rem;
}
.menu-area h3 span {
  font-size: 3rem;
  text-decoration: underline 1px;
  text-underline-offset: 0.5em;
}

.point-wrapper {
  margin-bottom: 40px;
}

.point-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.point-inner .point-img {
  width: 48%;
}

.point-inner .point-img img {
  border-radius: 10px;
}

.point-inner .point-text {
  width: 46%;
  text-align: left;
  font-weight: bold;
}

.point-inner .point-text .point-head {
  font-size: 1.2rem;
  color: var(--color-white);
  border: 1px solid var(--color-black);
  background-color: var(--color-black);
  border-radius: 100px;
  padding: 2px 18px;
  display: inline-block;
  margin-bottom: 15px;
}

.point-inner .point-text .point-note {
  color: var(--color-black);
  font-size: 1.2rem;
}

@media screen and (max-width:480px) {
  h2 {
    text-align: left;
  }

  .point-inner {
    flex-direction: column-reverse;
  }

  .point-inner .point-img {
    width: 100%;
  }

  .point-inner .point-text {
    width: 100%;
  }

  .point-inner .point-text {
    margin-bottom: 23px;
  }
}

/* menu */
section.menu {
  background-color: var(--color-light-yellow);
}

.menu-area {
  background-color: var(--color-white);
  border-radius: 20px;
  box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.1);
  padding: 50px 50px 60px;
}

h3 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.price-link {
  margin-bottom: 12px;
  text-align: center;
}

.avg-price {
  color: var(--color-black);
}

.avg-price .vertical {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 1.5rem;
  margin-bottom: -3px;
  margin-right: -5px;
  font-weight: bold;
}

.avg-price .price-l {
  font-size: 5.0rem;
  font-weight: 700;
}

.avg-price .yen {
  font-size: 1.5rem;
}

.menu-list a {
  font-weight: bold;
  font-size: 1.2rem;
  position: relative;
}

.menu-list a::after {
  border-right: 2px solid var(--color-black);
  border-top: 2px solid var(--color-black);
  bottom: 0;
  content: "";
  height: 10px;
  margin: auto;
  position: absolute;
  right: -16px;
  top: 0;
  transform: rotate(45deg);
  width: 10px;
}

.menu-description {
  font-size: 1.6rem;
  margin-bottom: 45px;
}

.menu-list-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-weight: bold;
}

.menu-list-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 11px;
}

.menu-list-inner .list-img {
  width: 33%;
}

.menu-list-inner .list-text {
  width: 66%;
  text-align: left;
}

.menu-list-inner:last-child {
  margin-bottom: 14px;
}

.menu-list-inner .list-text .kinds {
  font-size: 1.2rem;
  border-radius: 100px;
  background-color: var(--color-black);
  padding: 2px 10px;
  display: inline-block;
  color: var(--color-white);
  margin-bottom: 6px;
}

.menu-list-inner .list-text .price {
  font-size: 1.6rem;
  color: var(--color-black);
}

.menu-list-inner .list-text .price span {
  font-size: 3.0rem;
}

.menu-area .note {
  font-weight: normal;
}

.separator {
  width: 18px;
  height: 2px;
  margin: 20px auto;
}
.reward_title .t-black {
  text-decoration: none;
}
.limited_publish {
  text-decoration: none ;
  margin-top: 80px;
}

.limited_publish_description {
  margin-top: 20px;
  font-size: 15px;
}
.reward-area img {
  margin-top: 20px;
  text-align: center;
}

.receipt {
  text-align: center;
}

h4 {
  color: var(--color-black);
  margin-bottom: 24px;
}

h4 span {
  color: var(--color-gray);
  font-weight: normal;
  vertical-align: text-top;
}

.reward-area {
  font-size: 1.6rem;
  margin-bottom: 45px;
}

.reward-area .reward-description {
  margin-top: 20px;
  margin-bottom: 24px;
}

.reward-area .r-example {
  font-size: 1.9rem;
  margin-bottom: 24px;
}


@media screen and (max-width:480px) {
  .menu-area {
    padding: 50px 25px 50px;
  }

  .price-link {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .menu-description {
    text-align: left;
    margin-bottom: 30px;
  }

  .menu-list-wrapper {
    flex-direction: column;
  }

  .menu-list-inner .list-img img {
    width: 75%;
  }

  .separator {
    margin: 30px auto;
  }

  h4 {
    text-align: left;
  }

  .reward-area {
    text-align: left;
  }
}

/* member */
section.member {
  background-color: var(--color-light-yellow);
}

.intro-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 70px;
}

.intro-area .intro-img {
  width: 45%;
}

.intro-area .intro-img img {
  border-radius: 8%;
}

.intro-area .intro-text {
  width: 50%;
  text-align: left;
  color: var(--color-black);
}

.intro-area .intro-text .m-title {
  font-weight: bold;
  margin-bottom: 15px;
}

.intro-area .intro-text .m-name {
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.intro-area .intro-text .m-description {
  font-size: 1.6rem;
}

.intro-area:last-child {
  margin-bottom: 0;
}

@media screen and (max-width:480px) {
  .intro-area {
    flex-direction: column;
  }

  .intro-area .intro-img {
    width: 100%;
    object-fit: cover;
  }

  .intro-area .intro-img img {
    border-radius: 4%;
  }

  .intro-area .intro-text {
    width: 100%;
  }

  .intro-text {
    position: relative;
  }

  .intro-text-inner {
    position: absolute;
    top: -90px;
    bottom: 0;
    right: 0;
    left: 15px;
    color: var(--color-black);
    text-shadow: 3px 2px 2px white;
  }

  .intro-area .intro-text .m-title {
    margin-bottom: 0;
  }

  .intro-area .intro-text .m-description {
    margin-top: 15px;
  }
}

/* faq*/
section.faq {
  background-color: var(--color-light-yellow);
}

section.faq .container {
  padding: 0 20px 100px;
}

.faq-list-inner {
  font-size: 1.6rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: bold;
}

.separator-line {
  border-top: 1px solid var(--color-black);
  margin: 17px 0 14px;
}

@media screen and (max-width:480px) {
  section.faq .container {
    padding: 0 30px 80px;
  }
}

/* access*/
.access-inner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.access .description {
  color: var(--color-black);
  font-weight: 600;
  font-family: "inter";
  border-bottom: 1px solid #86868B;
  padding-bottom: 5px;
  margin-top: 40px;
}

.opennewi {
  font-size: 12px;
}

.access .note {
  color: var(--color-black);
  font-family: "inter";
  font-weight: 100;
}

.access-img {
  width: 48%;
}

.access-map {
  position: relative;
  width: 50%;
}

.access-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


.access-img img,
.access-map iframe {
  border-radius: 4%;
}

.access .entry-btn.__contents {
  margin-top: 40px;
}

.map-text {
  font-weight: bold;
  text-align: right;
  margin-bottom: 45px;
}

.map-text a {
  color: var(--color-black);
  text-decoration: none;
  position: relative;
  padding-right: 30px;
}

.map-text a::after {
  border-right: 2px solid var(--color-black);
  border-top: 2px solid var(--color-black);
  bottom: 0;
  content: "";
  height: 10px;
  margin: auto;
  position: absolute;
  right: 10px;
  top: 0;
  transform: rotate(45deg);
  width: 10px;
}

@media screen and (max-width:480px) {
  .access-inner {
    flex-direction: column;
  }

  .access .note {
    color: var(--color-black);
    font-family: "inter";
    font-weight: 100;
    margin-bottom: 20px;
  }

  .access-img {
    width: 100%;
    margin-bottom: 20px;
  }

  .access-map {
    width: 100%;
    height: 250px;
  }

  .access-map iframe {
    width: 100%;
    height: 100%;
  }
}

/* footer */
footer {
  background-color: var(--color-black);
  color: var(--color-white);
  padding-bottom: 25px;
}

footer .container {
  padding: 0 20px;
}

footer .info {
  padding: 30px 0;
  margin: 0 auto;
  text-align: left;
}

.company-name {
  margin: 8px 0;
}

@media screen and (max-width:480px) {
  footer .container {
    padding: 0;
  }

  footer .info {
    padding: 30px 25px;
  }
}