:root {
      --main-color: #182987;
      --pale-color:#DAE7F3;
      --white-color: #FFFFFF; 
      --yellow-color:#EDED0C;
      --black-color:#1c1c1c;
      --sub-sky-color:#72aacb;
      --red-color:#ea6c53;
      --campaign-blue:#182987;
      --page-bg-color:#fbe378;
    }

::-webkit-scrollbar {
  display: none;
}

html{
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 600;
    font-style: normal;
    color: var(--white-color);
    scroll-behavior: smooth;
    background-color: var(--page-bg-color);
    /*background-color: #f9e3e3;*/
}

.sp{
    display: none;
}

.hp{
  display: block;
}

.d-flex{
  display: flex;
  align-items: center;
}

.between{
  justify-content: space-between;
}

.marker-red{
  color: var(--red-color);
  font-weight: 700;
  text-decoration: none;
}

.marker-white{
  background-color: var(--white-color);
  color: var(--main-color);
  border-radius: 30px;
  padding: 10px 30px;
  text-decoration: none;
}

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

.container{
    max-width: 1000px;
    margin: 0 auto;
}

.full-bleed{
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

header img {
    width: 70px;
}

header{
    height: 10px;
    width: auto;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.text{
  line-height: 30px;
  margin: 0 50px;
}

.center{
  text-align: center;
}

.quick-nav{
  position: fixed;
  top: 3%;
  right: 3%;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.quick-nav__link{
  background-color: var(--yellow-color);
  color: var(--campaign-blue);
  border-radius: 30px;
  text-decoration: none;
  text-align: center;
  padding: 14px 32px;
  border: 2px solid var(--campaign-blue);
  white-space: nowrap;
}

.quick-nav__link--image{
  background: none;
  border: none;
  padding: 0;
  transition: transform .2s ease;
}

.quick-nav__link--image:hover{
  transform: scale(1.08);
}

.quick-nav__link--image img{
  display: block;
  width: 130px;
  height: auto;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, .4));
}

.oh_banner img{
  position: fixed;
  bottom: 3%;
  right: 3%;
  width: 10%;
  z-index: 999;
}

.item-top{
  background-color: var(--white-color);
  color: var(--black-color);
  padding-bottom: 100px;
}

#shop.item-top{
  padding-bottom: 40px;
}

footer.item-top{
  padding-top: 24px;
  padding-bottom: 40px;
}

footer.item-top p{
  font-size: .85rem;
}

footer.item-top p + p{
  margin-top: 10px;
  font-size: .75rem;
  color: #666;
}

.item-top h1{
  color: var(--main-color);
  text-align: center;
  padding-top: 80px;
}

.overview-section{
  padding-top: 60px;
  padding-bottom: 60px;
}

.overview-cards{
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.overview-tab-nav{
  display: flex;
  gap: 12px;
}

.overview-tab-label{
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white-color);
  color: var(--main-color);
  border: 2px solid var(--main-color);
  border-radius: 999px;
  padding: 6px 22px 6px 6px;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
  cursor: pointer;
  transition: background-color .2s, color .2s;
}

.overview-tab-num{
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--main-color);
  color: var(--white-color);
  font-size: .85rem;
  transition: background-color .2s, color .2s;
}

.overview-tab-label.is-active{
  background: var(--main-color);
  color: var(--white-color);
}

.overview-tab-label.is-active .overview-tab-num{
  background: var(--white-color);
  color: var(--main-color);
}

.overview-tab-panel{
  display: none;
}

.overview-tab-panel.is-active{
  display: block;
}

.overview-tab-label[data-tab-target="onecoin"]{
  --main-color: #1a9c4b;
}

.overview-tab-label[data-tab-target="shitadori"]{
  --main-color: #e60012;
}

.overview-card__banner{
  min-height: 140px;
  margin-bottom: 24px;
}

.overview-card__banner img{
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.overview-card__info{
  background: #faf7f2;
  border-radius: 12px;
  padding: 28px 40px;
  margin: 24px 0;
  text-align: center;
}

.overview-card__info .overview-card__ttl{
  font-size: 1.3rem;
}

.overview-card__info .overview-card__text:last-child{
  margin-bottom: 0;
}

.overview-card{
  box-sizing: border-box;
  width: 100%;
  background: var(--white-color);
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
  text-align: center;
  position: relative;
}

.overview-card.overview-card--flat{
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.overview-card--flat .overview-card__ttl{
  border-bottom-color: var(--white-color);
}

.overview-card .overview-card__item-ttl{
  margin-top: 0;
}

.overview-card--highlight{
  border: 3px solid var(--main-color);
  box-shadow: 0 10px 28px rgba(251, 227, 120, .6);
}

#onecoin{
  --main-color: #1a9c4b;
}

#shitadori{
  --main-color: #e60012;
}

.overview-card__head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.overview-card__head .overview-card__item-ttl{
  flex: 1;
  min-width: 220px;
  margin-bottom: 0;
  text-align: center;
  border-left: none;
  padding-left: 0;
}

.overview-card__offer{
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--main-color);
  color: var(--white-color);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.1;
}

.overview-card__offer small{
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .03em;
}

.overview-card__ttl{
  display: inline-block;
  color: var(--main-color);
  font-size: 1.6rem;
  border-bottom: 4px solid var(--yellow-color);
  padding-bottom: 8px;
  margin-bottom: 24px;
}

.overview-card__text{
  color: var(--black-color);
  font-weight: 400;
  line-height: 1.9;
  margin-bottom: 24px;
  text-align: left;
}

.overview-card__period{
  display: inline-block;
  background: var(--main-color);
  color: var(--white-color);
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 40px;
}

.overview-card__subttl{
  color: var(--white-color);
  background: var(--main-color);
  font-size: 1.2rem;
  padding: 10px 0;
  border-radius: 8px;
  margin-top: 48px;
  margin-bottom: 24px;
}

.overview-card__item-ttl{
  display: inline-block;
  color: var(--main-color);
  font-size: 1.1rem;
  border-left: 6px solid var(--yellow-color);
  padding-left: 12px;
  margin-top: 32px;
  margin-bottom: 16px;
}

.overview-table-wrap{
  overflow-x: auto;
}

.overview-table{
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  color: var(--black-color);
  font-size: .95rem;
}

.overview-table th,
.overview-table td{
  border: 1px solid #e5ddd2;
  padding: 12px 10px;
  text-align: center;
}

.overview-table thead th{
  background: #faf7f2;
  color: var(--black-color);
}

.overview-table thead th.is-campaign{
  background: var(--main-color);
  color: var(--white-color);
}

.overview-table td.is-campaign{
  background: #fdf0ee;
  color: var(--main-color);
  font-weight: 700;
}

.price-before{
  display: inline-block;
  color: #999;
  font-weight: 400;
  font-size: .85em;
  text-decoration: line-through;
  margin-right: 8px;
}

.price-after{
  font-size: 1.15em;
  font-weight: 700;
}

.price-after::before{
  content: "▶";
  font-size: .7em;
  margin-right: 4px;
  color: var(--main-color);
}

.overview-card__notes{
  text-align: left;
  color: var(--black-color);
  line-height: 1.8;
  margin-top: 24px;
  padding-left: 1.4em;
}

.overview-card__notes li{
  margin-bottom: 8px;
}

.overview-card__quote{
  color: var(--main-color);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 16px;
}

.overview-card__note{
  color: #666;
  font-size: .85rem;
  line-height: 1.7;
  text-align: left;
}

.overview-card__stores-label{
  text-align: left;
  color: var(--main-color);
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.store-chip-list{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.store-chip{
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.3;
  padding: 8px 16px;
  border: 2px solid var(--main-color);
  border-radius: 999px;
  background: var(--white-color);
  color: var(--main-color);
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color .2s, color .2s;
}

.store-chip span{
  font-size: .65rem;
  font-weight: 400;
}

.store-chip:hover{
  background: var(--main-color);
  color: var(--white-color);
}

.main-text{
  padding-top: 30px;
  padding-bottom: 40px;
  line-height: 30px;
}

.item-section{
  padding-bottom: 150px;
}

/*タブ切り替え全体のスタイル*/
.tabs {
  margin-top: 50px;
  padding-bottom: 40px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 1000px;
  color: var(--main-color);
  margin: 0 auto;}
  

/*タブのスタイル*/
.tab_item {
  width: calc(100%/5);
  height: 50px;
  border-bottom: 3px solid var(--main-color);
  background-color: #d9d9d9;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
}
.tab_item:hover {
  opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding: 40px 40px 0;
  clear: both;
  overflow: hidden;
}


/*選択されているタブのコンテンツのみを表示*/
#bcd:checked ~ #bcd_content,
#regu:checked ~ #regu_content,
#oct:checked ~ #oct_content,
#gauge:checked ~ #gauge_content,
#divecom:checked ~ #divecom_content
 {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: var(--main-color);
  color: #fff;
}

.c-txtsp{
    flex-wrap: wrap;
    justify-self:normal;
    justify-content: space-between;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 50px;
}

.sub-text{
  color: var(--black-color);
  padding: 20px;
  line-height: 30px;
  text-align: center;
}

.brand{
  color: var(--black-color);
  font-size: 0.8rem;
  margin: 0;
}

.nomal-price{
  background-color: var(--sub-sky-color);
  color: var(--white-color) !important;
  padding:10px 20px;
  border-radius: 30px;
  font-weight: 300;
  display: inline-flex;
  align-items: center;
  height: fit-content;
  margin: 0px;
}

.nomal-price-money{
  font-size: 1.5rem;
  color: var(--black-color) !important;
  padding-left: 20px;
  display: inline-flex;
  align-items: center;
  margin: 0px;
}

.shitadori-price{
  background-color: var(--red-color);
  color: var(--white-color) !important;
  padding:10px 20px;
  border-radius: 30px;
  font-weight: 300;
  display: inline-flex;
  align-items: center;
  text-align: center;
  height: fit-content;
}

.shitadori-price-money{
  font-size: 1.5rem;
  color: var(--red-color) !important;
  padding-left: 20px;
  display: inline-flex;
  align-items: center;
}

.flow-cards{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
}

.flow-card{
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 1 220px;
  max-width: 300px;
  background-color: var(--white-color);
  color: var(--main-color);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
  text-align: center;
}

.flow-card__num{
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--main-color);
  color: var(--white-color);
  font-size: 1.3rem;
  font-weight: 700;
  border: 3px solid var(--white-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
  z-index: 1;
}

.flow-card__img{
  width: 100%;
}

.flow-card__img img{
  width: 100%;
  display: block;
  border-radius: 20px 20px 0 0;
}

.flow-card__body{
  padding: 28px 24px 32px;
}

.flow-card h2{
  font-size: 1.1rem;
  margin-bottom: 12px;
  text-align: center;
}

.flow-card p{
  text-align: left;
  line-height: 1.8;
  font-size: .9rem;
}

.caution-section{
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  padding-bottom: 60px;
  line-height: 1.9;
}

.caution-section h1{
  font-size: .9rem;
  font-weight: 700;
  color: rgba(0, 0, 0, .6);
  letter-spacing: .05em;
  line-height: 1.6;
  margin-bottom: 16px;
}

.caution-section p{
  font-size: .75rem;
  color: rgba(0, 0, 0, .55);
  line-height: 1.9;
  text-align: left;
}

.caution{
  padding-bottom: 80px;
}

.form a{
background-color: var(--main-color);
    color: var(--white-color);
    padding: 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 700;
    width: 60%;
    justify-content: center;
    display: block;
    margin: 0 auto;
    display: inline-flex;
    align-items: center;
    border: 3px solid var(--white-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
    transition: background-color .2s, color .2s;
}

.form a:hover{
    background-color: var(--white-color);
    color: var(--main-color);
}

.form-oh a{
  background-color: var(--red-color);
  color: var(--white-color);
}
.material-symbols-outlined{
  font-size: 56px;
}
.form{
    margin-top: 80px;
}

th,td {
    border: solid 1px var(--main-color);  
    padding: 10px;            /* 枠線指定 */
}

table {
    border-collapse:  collapse;     /* セルの線を重ねる */
    width: 100%;
    text-align: justify;
}

.t-main{
  background-color: var(--pale-color);
}

.oh img{
  display: flex;
  justify-content: center;
  padding-top: 80px;
}

.oh p{
  line-height: 30px;
  padding-top: 30px;
  padding-bottom: 50px;
}

.shop-contents{
    justify-content: space-between;
}

.shop-insta{
    display: inline-flex;
    align-items: center;
    color: var(--black-color);
    font-size: 0.8rem;
    text-decoration: none;
}

.shop-insta span{
    font-size: 18px;
}

.shop-detail{
    display: block;
    background-color: var(--main-color);
    color: var(--white-color);
    border-radius: 30px;
    width: auto;
    padding: 10px;
    text-align: center;
    margin-bottom: 50px;
    text-decoration: none;
}

.shop{
    flex-wrap: wrap;
    justify-self:normal;
    justify-content: space-between;
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.shop img{
    width: -webkit-fill-available;
}

.shop-main h1{
  margin-top: 130px;
}

.kisarazu{   
  padding-top: 100px;
}


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

.hp{
  display: none;
}
  .container{
    max-width: 90%;
  }

  .overview-section{
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .overview-card{
    padding: 32px 20px;
  }

  .overview-cards{
    gap: 16px;
  }

  .overview-card__banner{
    min-height: 90px;
    margin-bottom: 16px;
  }

  .overview-card__info{
    padding: 20px 24px;
    margin: 16px 0;
  }

  .overview-card__info .overview-card__ttl{
    font-size: 1.1rem;
  }

  .overview-card__ttl{
    font-size: 1.3rem;
  }

  .overview-card__head{
    justify-content: center;
    text-align: center;
  }

  .overview-card__head .overview-card__item-ttl{
    text-align: center;
    min-width: 100%;
  }

  .overview-card__offer{
    width: 76px;
    height: 76px;
    font-size: 1.25rem;
  }

  .overview-card__period{
    font-size: .85rem;
    padding: 8px 16px;
  }

  .overview-tab-nav{
    flex-wrap: wrap;
  }

  .overview-tab-label{
    min-width: calc(50% - 6px);
    font-size: .8rem;
    padding: 5px 14px 5px 5px;
  }

  .overview-tab-num{
    width: 28px;
    height: 28px;
    font-size: .75rem;
  }

  .overview-card__subttl{
    font-size: 1.05rem;
    margin-top: 36px;
  }

  .overview-card__item-ttl{
    font-size: 1rem;
  }

  .overview-table th,
  .overview-table td{
    white-space: nowrap;
    padding: 10px 8px;
    font-size: .85rem;
  }

  .tabs{
    width: 90%;
  }

  .form a{
    width: 90%;
    font-size: 1.15rem;
    white-space: nowrap;
    padding: 16px;
  }

  .tab_item{
    width: calc(100% / 3);
  }

  .tab_content{
    padding: 20px 40px;
  }

  .c-txtsp{
    display: flex;
    flex-wrap: nowrap;
    overflow: scroll;
  }

  .nomal-price{
    padding: 10px;
    font-size: 0.8rem;
  }

  .nomal-price-money{
    font-size: 1.2rem;
  }

  .shitadori-price{
    font-size: 0.8rem;
    padding: 10px;
  }

    .shitadori-price-money{
    font-size: 1.2rem;
  }

  .sp-block{
    display: block;
  }

  .c-txtsp img{
    width: 200px;
  }

  .flow-cards{
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .flow-card h2{
    font-size: 1rem;
  }

  .flow-card p{
    text-align: left;
    line-height: 1.6;
    font-size: 0.85rem;
  }

  .oh_banner img{
    width: 25%;
  }

  .oh img{
  margin-top: 80px;
  display: flex;
  justify-content: center;
  padding-top: 80px;
}

.shop{
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}

.kisarazu{   
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.shop-contents h3{ 
  font-size: 0.9rem;
}

.marker-white{
  display: block;
  text-align: center;
}

.quick-nav{
  display: none;
}

} /* end @media screen and (max-width: 1000px) */