/*! HTML5 Boilerplate v9.0.1 | MIT License | https://html5boilerplate.com/ */

/* main.css 3.0.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
:root {
  --grade01:linear-gradient(90deg, rgba(254, 144, 240, 1), rgba(241, 186, 255, 1) 45%, rgba(104, 210, 255, 1));
  --pink:rgba(254, 144, 240, 1);
  --pink02:#FF5CEA;
  --blue: rgba(104, 210, 255, 1);
}

html {
  color: #222;
  line-height: 1.7;
  scroll-behavior: smooth;
  font-size: 62.5%;
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

body {
  font-size: 1.5rem;
  line-height: 1.8;
  font-family:
     "Murecho",sans-serif;
  height: 100vh;
  margin: 0;
  transition: background-color 0.5s;
  color: #6d6d6d; 
  text-wrap: wrap;
  /* background-image: url(../img/bg.svg);
  background-repeat: repeat;
  background-position: left;
  background-size: 500px;
  background-attachment: fixed; */
  animation: bg-gradient 4s ease infinite;
  background:linear-gradient(0deg, rgba(254, 144, 240, 0.2), rgba(241, 186, 255, 0.2) 45%, rgba(104, 210, 255, 0.2)) 0/ 200% 200%;
  background-attachment: fixed; 
}

@keyframes bg-gradient {
    0%{background-position:50% 0%}
    50%{background-position:50% 100%}
    100%{background-position:50% 0%}
}


h2 {
  color: #6d6d6d;
}
h3 {
  font-size: 2.0rem;
    color: var(--pink02);
}

h4 {
  text-wrap: wrap;
}


ul, ol {
   padding-inline-start: 0px;
}

ol {
  padding-left: 1.5rem;
}

.headLogo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #fff;
  padding: 0.3em;
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  height: 40px;
}

.headLogo img{
  width: 180px;
}

.under-line {
  text-decoration: underline;
}

/* #heroimg {
  margin-top: 40px;
} */

.container {
  margin: 0 auto;
  padding: 0 20px 80px;
  width: 90vw;
  max-width: 1280px;
  background-color: rgba(255, 255, 255, 0.8);
  border-left: 8px solid #fff;
  border-right: 8px solid #fff;
}

/* .polka {
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.6) 8px, transparent 8px),
    radial-gradient(rgba(255, 255, 255, 0.6) 8px, transparent 8px);
  background-size: 55px 55px;
  background-position: 0 0, 27.5px 27.5px;
  background-repeat: repeat;
} */


.container img {
  margin: 0 auto;
  max-width: 980px;
  width: 100%;
}

.container .p_list img {
  max-width: 980px;
}

.w30p {
  width: 30%;
  margin: 0 auto;
}

.w60p {
  width: 60%;
  margin: 0 auto;
}

.w80p {
  width: 80%;
  margin: 0 auto;
}

.mt2{
  margin-top: 2.0rem;
}

.mt5{
  margin-top: 5.0rem;
}

.txtc {
  text-align: center;
}

.txtp{
  color: var(--pink);
}

a:not([class]):hover{
  opacity: 0.6;
}

nav {
  display: grid; 
  padding: 1.0rem;
}

nav ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 16px;
  row-gap: 16px;
  width: 100%;
  margin: 0;
  padding: 0;
  padding-top: 32px;
}


.button {
  font-size: 1.5rem;
  font-family: inherit;
  font-weight: 700;
  border-radius: 16px;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  background-image: var(--grade01);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  position: relative;
  color: #fff;
  padding: 0.8em 1.5em 0.8em 1.2em;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: 0.1em;
}

.button::after {
  position: absolute;
  content: "";
  mask-image: url(../img/ico_02.svg);
  width: 24px;
  height: 24px;
  background: #fff;
  mask-position: center;
  mask-size: cover;
  mask-repeat: no-repeat;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.button:hover {
  opacity: 0.8;
}
.button:visited {
  text-decoration: none;
  color: #fff;
}

footer {
  padding: 2em 0 3em;
  font-size: 1.5rem;
  font-weight: 700;
  background-color: #fff;
  border-top: solid 4px var(--pink);
}


.ttl_frame {
  position: relative;
  margin: 120px auto 80px;
  text-align: center;
  padding: 0.8em 0;
  border-top: 1px solid ;
  border-bottom: 1px solid ;
  border-image: var(--grade01);
  border-image-slice: 1;
} 

#stamp_list .ttl_frame,
#infomation .ttl_frame {
  margin:80px auto 80px;
}

.ttl_frame::before,
.ttl_frame::after { 
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
background-image: var(--grade01);
}

.ttl_frame::before {
  top: -4px;   /* border-top より上にもう1本 */
}

.ttl_frame::after {
  bottom: -4px; /* border-bottom より下にもう1本 */
}


.ttl_text {
  z-index: 1;
  font-weight: 800;
  font-style: normal;
  font-size: 3.0rem;
  text-align: center;
  letter-spacing: 0.2em;
}



.box {
  padding: 3rem;
    background-color: #fff;
}

* + h3 {
  margin-top: 1.5em;
}

h3:first-child {
  margin-top: 0;
}

.about-txt {
  font-family: "Kaisei Decol", serif;
  font-size: 2.2rem;
  padding: 40px 0;
  text-align: center;
}

.info-txt {
  font-family: "Kaisei Decol", serif;
  font-size: 2.2rem;
  padding: 0 0 40px 0;
  text-align: center;
}

.comment_note{
  font-size: 1.6rem;
}
.mail_note{
  font-size: 1.2rem;
}


.popup_wrap {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.grade_box {
  position: relative;
  background: var(--grade01);
  border-radius: 16px;
  padding: 6px;
}

.grade_content {
  background: #fff;
  border-radius: 12px;
  padding: 2.5em 2em;

}
.popup_box:before {
     position: absolute;
    font-size: 12rem;
    color: #93dfff;
    left: 20px;
    top: -84px;
    font-weight: bold;
    text-shadow: 4px 4px 2px rgba(255, 255, 255, 1);
}


.popup_box:nth-child(1):before {
    content: "1";
}

.popup_box:nth-child(2):before {
    content: "2";
}

.popup_box:nth-child(3):before {
    content: "3";
}


.popup_box h3 {
  text-align: center;
  padding: 0.5em;
  border-bottom: 4px solid;
  border-image: var(--grade01);
  border-image-slice: 1;
  color: #fff;
  font-size: 2.0rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.popup_box h3 span {
  font-size: 2.8rem;
}

.informationgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  row-gap: 24px;
  padding: 2em;
  font-weight: 500;
  background-color: #fff;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

/* .informationgrid .box {
  position:relative;
} */

.informationgrid .box {
  padding: 1em;
  display: flex;
  gap: 8px;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.informationgrid .box h4 {
  margin-top: 0;
  color: var(--pink02);
}

.informationgrid .box p {
  margin-top: 10px;
}

.place {
  height: 40%;
}

.place p {
  font-size: 1.8rem;
  font-weight: 800;
}

.schedule,
time {
  height: calc((60% -16px) / 2);
}

.ProductGrid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  padding: 0 2em;
}

.disc_btn {
  display: inline-block;
  margin-top: 1.5em;
  padding: 0.5em 3.5em;
  background: #0fbfda;
  color: #fff;
  text-decoration: none;
  border-radius: 200px;
  transition: background-color 0.3s;
  font-weight: 600;
  position: relative;
}

.disc_btn::after {
   position: absolute;
  content: "";
  mask-image: url(../img/ico_02.svg);
  width: 24px;
  height: 24px;
  background: #fff;
  mask-position: center;
  mask-size: cover;
  mask-repeat: no-repeat;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.disc_btn:hover {
  opacity: 0.8;
  
}
/* comingsoon関連 */

.disc_btn_cs {
  display: inline-block;
  margin-top: 1.5em;
  padding: 0.5em 3.5em;
  background: #fff;
  color: #e75296;
  border: 2px solid #e75296;
  text-decoration: none;
  border-radius: 30px;
  opacity: 0.8;
}

.Card {
  text-align: center;
  background: white;
  border-radius: 10px;
  box-shadow: 0px 12px 28px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.Card p span {
  font-size: 0.8rem;
}

.CardDescription {
  padding: 18px;
}

.CardDescription h3 {
  margin: 0;
}

.Card {
  /* border: 3px solid #000; */
  border-radius: 20px;
  /* box-shadow: 8px 8px 0 0 rgba(224, 38, 30, 1); */
  background-color: #fff;
}

.Card:nth-child(2n) {
  /* border: 3px solid #000; */
  border-radius: 20px;
  /* box-shadow: 8px 8px 0 0 #05449c; */
  background-color: #fff;
}

.ProdctImg {
  width: 100%;
}

.descriptiontxt {
  line-height: 2rem;
}

.descriptiontxt span {
  font-size: 0.8rem;
}

.descriptionList li{
  list-style: decimal;
}

.descriptionList li::marker{
  font-weight: bold;
}

.descriptionList li span{
  font-weight: bold;
  margin-top: 1.2em;
  display: block;
}

.cautions li {
  list-style: none; 
  padding-left: 1.2em;
  text-indent: -1.2em; 
}

.cautions li::before {
  content: "・";
  margin-right: 0.5em;
}

#stamp_list .box {
  background: none;
} 

.complite_img-wrap {
  margin-top: 24px;
}

/* .tab-1 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0px;
}

.tab-1 > label {
    flex: 1 1;
    order: -1;
    min-width: 70px;
    padding: .7em 1em .5em;
    border-bottom: 1px solid #f0f0f0;
    border-radius: 0;
    background-color: #e9f0f6;
    color: #7a7a7a;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    letter-spacing: 0.05em;
    border-left: #fff 0.5px solid;
    border-right: #fff 0.5px solid;
}

.tab-1 > label span {
    font-size: 1.4rem;
}

.tab-1 > label:hover {
    opacity: .8;
}

.tab-1 p {
  margin-top: 10px;
}

.tab-1 input {
    display: none;
}

.tab-1 > div {
    display: none;
    width: 100%;
    padding: .5em 2em 1.5em 3em;
    background-color: #fff;
}

.tab-1 label:has(:checked) {
    background-image: var(--grade01);
    border-style: solid;
    border-radius: 5px 5px 0 0 ;
    color: #fff;
}

.tab-1 label:has(:checked) + div {
    display: block;
    border: 6px solid #e9f0f6;
    border-top: none;
    border-radius: 0 0 16px 16px;
}

.stamp_store {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.stamp_store h4 {
  position: relative;
}

.stamp_store h4::before {
  content: "";
  mask-image:  url(../img/ico_01.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
  background:var(--grade01);
  width: 16px;
  aspect-ratio: 157/150;
  position: absolute;
  left:-24px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}

.map {
  position: relative;
  display: inline-block;
  text-decoration: underline;
  color: var(--pink);
}

.map::after{
  content: "";
  background-color: var(--blue);
  width: 16px;
  height: 16px;
  mask-image: url(../img/map.svg);
  mask-size: cover;
  position: absolute;
  right: -24px;
  top:50%;
  transform: translateY(-50%);
} */


.btn_frame {
  background-color: #000000;
  color: #fff;
  margin-top: 2.0em;
  padding: 10px 20px;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.btn_frame:hover {
  background-color: #363636;
}

.container img.comingsoon {
  max-width: 400px;
  transform: rotate(-10deg);
  margin: 30px auto;
}

.sp-only {
  display: none;
}

.copyright {
    font-size: 11px;
    text-align: center;
    margin-top: 0;
}

.customer {
  margin-top:2.0em;
}

#productlist h3,
#benefit h3 {
  font-size: 2.8rem;
}


@media only screen and (min-width: 768px) and (max-width: 960px) {
  nav ul {
    grid-template-columns: repeat(3, 1fr);
  }
  .ProductGrid {
    grid-template-columns: repeat(3, 1fr);
  }
    .informationgrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  #heroimg picture img{
    width: 100%;
  }

  .container {
    width: 96vw;
    padding: 0 20px 80px;
    border-left: 4px solid #fff;
    border-right: 4px solid #fff;
  }

  .w30p, .w60p, .w80p {
    width: 100%;
  }
  nav {
    padding: 0;
  }

  .about-txt {
  font-size: 1.0rem;
}

  .informationgrid .box {
    padding: 2em;
  }

  nav ul {
    grid-template-columns: repeat(1, 1fr);
    padding-top: 40px;
    row-gap: 8px;
  }
  
  nav ul li {
    margin: 5px 0;
    font-size: 0.8rem;
  }

  .ProductGrid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
    gap: 24px;
  }

  .informationgrid {
    grid-template-columns: repeat(1, 1fr);
    gap: 0px;
    padding: 0.5em;    
  }

  .ttl_frame {
    width: 100%;
    margin: 80px auto;
  }

  .sp-only {
    display: block;
  }
.button {
  font-size: 1.4rem;
}

.informationgrid .box:before {
    right: 16px;
    top: -108px;
}

.popup_box h3 {
  font-size: 1.6rem;
}
.popup_box h3 span {
  font-size: 2.6rem;
}
.popup_box:before {
    left: -14px;
}

#stamp_list .box {
  padding: 0;
} 
 }

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden,
[hidden] {
  display: none !important;
}

/*
 * Clearfix: contain floats
 *
 * The use of `table` rather than `block` is only necessary if using
 * `::before` to contain the top-margins of child elements.
 */

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print,
  (-webkit-min-device-pixel-ratio: 1.25),
  (min-resolution: 1.25dppx),
  (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}


.mv-one-wrapper {
  width: 90vw;
  max-width: 1280px;
  margin: 0 auto;
  /* border-left: 8px solid #fff;
  border-right: 8px solid #fff; */
}

@media (max-width:767px) {
  .mv-one-wrapper {
    width: 96vw;
    /* border-left: 4px solid #fff;
    border-right: 4px solid #fff; */
  }
}