@charset “utf-8”;

*{
    box-sizing: border-box;
    font-family: "Noto Sans SC", sans-serif;
    padding: 0;
    scroll-behavior: smooth;
    margin: 0;
}
img{
    max-width: 100%;
    height: auto;
}
ul {
    list-style: none;
}
body {
    animation: fadein 2s forwards;
    color: #333;
    font-size: 18px;
    width: 100%;
}
@keyframes fadein {
    0% {opacity: 0}
    100% {opacity: 1}
  }
.container {
    max-width: 1200px;
    margin: 0 auto 30px;
}

.flex {
    align-items: center;
    display: flex;
    justify-content: center;
}

.lang-btn {
    height: 60px;
    width: 60px;
    position: fixed;
    right: 10px;
    bottom: 30px;
    background: #2EA364;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999999;
}
.lang-btn-up {
    right: 10px;
    bottom: 100px;
    transition: all 1s;
}
.lang-content {
    background-color: #6ACAA7;
    border-radius: 99999px;
    display: none;
    width: 60px;
    padding-bottom: 60px;
    position: fixed;
    z-index: 9999999;
    right: 10px;
    bottom: 30px;
}
.lang-content-up {
    bottom: 100px;
    transition: all 1s;
}
.lang-content li a {
    background-color: #fff;
    border-radius: 50%;
    color: #2EA364;
    font-weight: bold;
    font-size: 1.2rem;
    display: block;
    height: 50px;
    padding-top: 12px;
    margin: 5px auto;
    text-align: center;
    width: 50px;
}
.lang:hover .lang-content {
    display: block;
    transition: all .5s;
}
.lang img{
    width: 80%;
    filter: brightness(0) invert(1);
}
#lang:checked ~ .lang-content {
    display: block;
    transition: all .5s;
}
.lang-check {
    display: none;
}
.pagetop {
    height: 60px;
    width: 60px;
    position: fixed;
    right: 10px;
    bottom: 30px;
    background: #2EA364;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999999;
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #ffffff;
    border-right: 3px solid #ffffff;
    transform: translateY(20%) rotate(-45deg);
}
.js-fadein {
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    transition: opacity 1s,visibility 1s, transform 1s;
}
.scroll {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

/*navigation menu*/
header{
    /*画像など入れる*/
    width: 100%;
}
.header-mv {
    background: url(../img/header_pic.webp) center / cover;
    height: 0;
    margin: 0 auto;
    width: 100%;
    padding-top: 25%; /*height 0にするかわりにpadding-topで高さを出す*/
}

/*sns*/
.sns {
    display: flex; 
    padding: 2rem 0 0 2rem;
    column-gap: 10px;
    width: 100%;
    flex-wrap: nowrap;

}


/*General Heading*/
h3 {
    border-bottom: solid 5px #2EA364;
    font-size: 1.5em;
    padding: 100px 20px 10px;
}
.subheading-decoration::before, .decoration::before {
    background-image:linear-gradient(#2EA364 50%, #6ACAA7 50%);
    background-repeat: no-repeat;
    background-size: 5px 100%;
    content: "";
    padding: 0.4em 0.7em;
}
.anchor {
    scroll-margin: 20px; /*メニューとかぶらないようにする　スマホ対応も忘れずに*/
}

h4 {
    font-size: 1.3em;
    margin: 3rem 20px 0;
}
@media screen and (max-width: 780px){
    h4 {
        font-size: 1.3em;
        margin: 2em 3px 0;
    }
}
section {
    width: 100%; 
}
section>div {
    margin-top: 30px;
}
.paragraph {
    width: 80%;
    margin: 5rem auto 0;
}
@media screen and (max-width: 780px){
    .paragraph {
        width: 80%;
        margin: 0 auto;
    }
}
.paragraph p {
    margin-bottom: 2rem;
}
.paragraph p:last-child {
    margin-bottom: 0.5rem;
}
.paragraph span {
    font-size: 0.8em;
}
.here {
    font-weight: bold;
    color: #2EA364;
    transition: all .4s;
}
.here:hover {
    opacity: .6;
}
/*Store List*/
.store-lists {
    text-align: center;
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
    width: 80%;
    margin: 30px auto;
}
.store-list {
    font-size: 1.3rem;
    border-radius: 5px;
    border: solid 1px #aeaeae;
    padding: 1rem;
    text-align: center;
    margin: 10px;
    transition: all .4s;
}
.store-list:hover{
    opacity: .6;
}
.store-list:first-child {
    color: #6899c9;
}
.store-list:nth-child(2){
    color: #58B9CE;
}
.store-list:nth-child(3){
    color: #BFC656;
}
.store-list:nth-child(4){
    color: #BFC656;
}
.store-list:nth-child(5){
    color: #EEB94D;
}
.store-list:nth-child(6){
    color: #F38E4C;
}
.store-list:nth-child(7){
    color: #EFA398;
}
.store-list:last-child{
    color: #E47C74;
}


/*Storesここまで*/
.closed{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 75%;
}
.closed_text{
    border: 1px solid #aeaeae;
    width: 40%;
    color: red;
    text-align: center;
    margin-inline:auto;
    display: flex;
}
.closed_text p{
    padding: 0;
}
@media screen and (max-width: 780px){
    .closed{
        display: block;
        width: 75%;
    }
    .closed_text{
        border: 1px solid #aeaeae;
        margin-inline: auto;
        width: 90%;
        text-align: center;
        color: red;
        margin-inline:auto;
        display: flex;
    }
    .closed_text p{
        padding: 0;
    }
    
}
@media screen and (max-width: 480px){
    .closed{
        display: block;
        width: 100%;
    }
}

h5 {
    width: 25%;
}
.area {
    width: 100%;
    margin: 0 auto;
}
.area li {
    border-bottom: 1px dashed #6ACAA7;
    display: flex;
    flex-wrap: nowrap;
    list-style: none;
    padding: 10px 0 10px 5%;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.area img {
    width: 100%;
    flex-grow: 1;
    transition: all .4s;
}
.area img:hover {
    opacity: .6;
}
.area p {
    flex-grow:1;
    padding-left: 2%;
    /* width: 75%; */
}
@media screen and (max-width: 780px){
    .area p {
        flex-grow:1;
        padding-left: 2%;
        width: 75%;
    }
}
.store label {
    align-items: center;
    cursor: pointer;
    display: flex;
    padding: 10px;
    position: relative;
}

.small {
    font-size: 13px;
}
.store input[type="radio"] {
    display: none;
}
.store .accordion__content{
    display: none;
}

.store .area {
    line-height: 26px;
    /* max-height: 0;
    /* overflow: hidden; */
    padding: 0 10px;
    /* transition: max-height 0.5s, padding 0.5s; */
}
.store input[type="radio"]:checked ~ .area {
    /* max-height: 5000px; */
    /* padding: 10px 10px 20px; */
}
/* .store input[type="radio"]:checked ~ label h4::after {
    color: #6ACAA7;
    content: '';
    font-size: 3rem;
}
label h4::after {
    color: #6ACAA7;
    content: '';
    font-size: 2rem;
    position: absolute;
    right: 5px;
} */
/*storeここまで*/


/*FAQ*/
.accordion {
    width: 100%;
}
.accordion li {
    list-style: none;
    margin: 20px 0px;
    padding: 10px;
    width: 100%;
    border-bottom: 1px dashed #6ACAA7;
}
.accordion li label {
    align-items: center;
    cursor: pointer;
    display: flex;
    padding: 10px;
    position: relative;
}

/* .accordion li label::after {
    color: #6ACAA7;
    content: '+';
    font-size: 1.4rem;
    position: absolute;
    right: 5px;
} */

.Q {
    color: #6ACAA7;
    padding-right: 5px;
}
.A {
    color: #2EA364;
    display: inline-block;
    padding-right: 5px;
    vertical-align: top;
}
.small {
    font-size: 13px;
}

.p-gap {
    padding-top: 16px;
}
.accordion li input[type="radio"] {
    display: none;
}
.accordion .answer {
    align-items: flex-start;
    justify-content: flex-start;
    /* line-height: 26px; */
    /* max-height: 0; */
    /* overflow: hidden; */
    padding: 10px 20px 20px;
    /* transition: max-height 0.5s, padding 0.5s; */
}
.answer{
    display: none;
}

/*FAQここまで*/


/*アコーディオンメニュー全般*/

.accordion__title::before,
.accordion__title::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: 15px;
  width: 15px;
  height: 3px;
  margin: auto 0;
  background-color: #6ACAA7;
  transition: all 0.3s;
}

.accordion__title.active::before,
.accordion__title.active::after{
  background: #6ACAA7;
}

.accordion__title::after {
  transform: rotate(90deg);
}

.accordion__title.open::before {
  transform: rotate(180deg);
}

.accordion__title.open::after {
  transform: rotate(180deg);
  opacity: 0;
}
/*アコーディオンメニュー　Tablet*/
@media screen and (max-width: 780px){
  .accordion__title::before, .accordion__title::after {
      position: absolute;
      content: "";
      bottom: 26%;
      right: 4px;
      width: 15px;
      height: 3px;
      margin: auto 0;
      background-color: #6ACAA7;
      transition: all 0.3s;
  }
  .store .accordion__title::before, .store .accordion__title::after {
      position: absolute;
          content: "";
          right: 9px;
          width: 15px;
          height: 3px;
          margin: auto 0;
          background-color: #6ACAA7;
          transition: all 0.3s;
          top: 65%;
  }
  
  .accordion li label {
      align-items: center;
      cursor: pointer;
      display: flex;
      padding: 10px 5px;
      position: relative;
  }
  
  .accordion li {
      list-style: none;
      margin: 20px 0px;
      padding: 10px 0px;
      width: 100%;
      border-bottom: 1px dashed #6ACAA7;
  }
}

/*アコーディオンメニューFAQ*/

.accordion__title_faq::before,
.accordion__title_faq::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: 15px;
  width: 15px;
  height: 3px;
  margin: auto 0;
  background-color: #6ACAA7;
  transition: all 0.3s;
}

.accordion__title_faq.active::before,
.accordion__title_faq.active::after{
  background: #6ACAA7;
}

.accordion__title_faq::after {
  transform: rotate(90deg);
}

.accordion__title_faq.open::before {
  transform: rotate(180deg);
}

.accordion__title_faq.open::after {
  transform: rotate(180deg);
  opacity: 0;
}
/*アコーディオンメニューFAQ　Tablet*/
@media screen and (max-width: 780px){
  .accordion__title_faq::before, .accordion__title_faq::after {
      position: absolute;
      content: "";
      bottom: 26%;
      right: 4px;
      width: 15px;
      height: 3px;
      margin: auto 0;
      background-color: #6ACAA7;
      transition: all 0.3s;
  }
  
}


/*howto*/

.howto-div {
    padding-top: 2rem;
    text-align: center;
}
.howto-p {
    font-size: 1.5rem;
    padding: 2rem 0 0 1rem;
}
.howto-p a {
    color: #2ea364;
    font-weight: bold;
}
.howto-p a:hover {
    color: #6ACAA7;
}
.howto-div img {
    max-width: 80%;
}
/*howtoここまで*/

/*iframe*/
iframe {
    display: block;
    margin: 0 auto;
    padding-top: 1rem;
    width: 90%;

}
.pc-iframe {
    height: clamp(19.2rem, 29vw, 21rem);
}
.sp-iframe {
    display: none;
}
/*iframe　ここまで*/

.pickup {
    height: 410px;
}
.pickup-main {
    text-align: center;
}
.pickup-more-btn {
    background: #2EA364;
    border: none;
    border-radius: 20px;
    color: #fff;
    padding: 10px 20px;
    margin-top: 10px;
}

.tax {
    margin-top: 30px;
}
.tax div{
    display: flex;
    align-items: center;
    margin: 1rem 0 0 5%;
}
.tax img{
    width: 150px;
}
.tax div p {
    padding-left: 5%;
}
.sns-p {
    padding:0 0 2rem 1rem;
}
.social-icons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 0 auto;
}
.social-icons>a:hover {
    transform: scale(1.1, 1.1);
    transition: .4s;
}
.social-icons img {
    max-width: 190px;
}
.social {
    padding-bottom: 100px;
}
/*footer*/
/* フッター余白調整 */
footer.global_footer {
    margin-top: 0;
}

.f-u-nav {
    background-color: #153e44;
    padding: 30px 0;
}
.f-u-nav ul {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    text-align: center;
}
.f-u-nav li:first-child::before {
    content: "";
}
.f-u-nav li:before {
    content: "｜";
}
.f-u-nav li {
    margin-left: 4px;
    color: #6e7077;
    display: inline;
    white-space: nowrap;
}
.f-u-nav a {
    margin-left: 4px;
    color: #fff;
    font-size: 12px;
}
.copyright {
    color: #666;
    display: block;
    font-size: 10px;
    padding: 20px 0;
    text-align: center;
    width: 100%;
}

/*Tablet*/
/* 780px以下に適用されるCSS（タブレット用） */
@media screen and (max-width: 780px) {

    .container {
        max-width: 750px;
    }
    .header-mv {
        background: url(../img/banner.webp);
        height: 0;
        margin: 0 auto;
        max-width: 100%;
        background-size: 100%;
        background-repeat: no-repeat;
        padding-top: 53.797468354%; /*height 0にするかわりにpadding-topで高さを出して可変の高さにする*/
    }
    .anchor {
        scroll-margin: 15px; /*メニューとかぶらないようにする*/
    }
    .social-icons {
        display: flex;
        gap: 25px;
        justify-content: center;
        flex-wrap: wrap;
        margin: 0 auto;
    }
    .social-icons img {
        width: 190px;
    }
}

/*smartphone*/
/* 480px以下に適用されるCSS（スマホ用） */
@media screen and (max-width: 480px) {
    /*Shopping Guide pop-up window*/

    .store-lists {
        text-align: center;
        display: grid;
        gap: 0;
        grid-template-columns: 1fr;
        width: 80%;
        margin: 30px auto;
    }
    h5 {
        width: 95%;
    }
    .area li {
        display: block;
    }
    .area p {
        width: 100%;
        padding: 0.8rem 0;
    }
    .tax div {
        display: block;
        text-align: center;
    }
    .tax div p {
        text-align: left;
        padding: 1rem 0 1.2rem;
    }
    .sns {
        display: block;
        padding: 2rem 0 0 5px;
    }

}



