html{
  scroll-behavior: smooth;
}

@media screen and (min-width:992px){
	.sp{
		display: none !important;
	}
  a,
  img{
    transition: opacity .4s;
  }
  a:hover,
  a:hover img{
    opacity: .7;
  }
}

@media screen and (max-width:991px){
	.pc{
		display: none !important;
	}
}

/* googleフォント（Noto） */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;500&display=swap');

h1{
  font-weight: 500;
  font-size:24px;
}

h2{
  font-weight: 400;
  font-size:20px;
}

* + h2{
  margin-top: 16px;
}

h3{
  font-weight: 400;
  font-size:18px;
}

html,
body {
  position: relative;
  height: 100%;
  color: #202020;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.1em;
  -webkit-text-size-adjust: 100%;
  background-color: #fafafa;
}

a{
  text-decoration: none;
  color:rgb(5,5,5);
}

/* ヘッダー */

header{
  width: 100vw;
  height: 56px;
  position: fixed;
  top:0;
  left:0;
  z-index: 3;
  filter: drop-shadow(0 0 4px rgb(68,68,68));
  background-color: #F7EE4D;
}

header ul.mainmenu{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100vw;
  height: 56px;
  margin: 0;
  padding: 0 56px 0 0;
  list-style: none;
}
@media screen and (min-width:992px){
  header ul.mainmenu{
    justify-content: space-between;
    padding: 0 0 0 56px;
  }
}

header ul.mainmenu li{
  position: relative;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color .4s;
  width:calc((100vw - 56px) / 4);
}
@media screen and (min-width:992px){
  header ul.mainmenu li:after{
    content: '';
    height:56px;
    width: 1px;
    background-color: rgb(250,250,250);
    position: absolute;
    top:0;
    right:0;
  }
  header ul.mainmenu li:nth-child(5):after{
    display: none;
  }
}

header ul.mainmenu li:hover{
  background-color: #D84190;
}
header ul.mainmenu li:hover a{
  color: #fff;
}

header ul.mainmenu li.sp{
  position: fixed;
  right: 0;
  top: 0;
  width: 56px;
  height: 56px;
}

header ul.mainmenu li.pc,
header ul.mainmenu li.pc a,
header ul.mainmenu li.pc a img{
  position: fixed;
  left: 0;
  top: 0;
  width: 56px;
  height: 56px;
  background-color: rgb(250,250,250);
}

header ul.mainmenu li a{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height:100%;
  font-size: 12px;
}
@media screen and (min-width:992px){
  header ul.mainmenu li a{
    flex-direction: row;
    font-size: 16px;
  }
}

header ul.mainmenu li a::before{
  display: block;
  content:'';
  width:32px;
  height:32px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width:992px){
  header ul.mainmenu li a::before{
    width:40px;
    height:40px;
    margin-right:16px;
  }
}

header ul.mainmenu li:nth-child(2) a::before{
  background-image: url(../img/icon-list-black.svg);
}

header ul.mainmenu li:nth-child(3) a::before{
  background-image: url(../img/icon-overview-black.svg);
}

header ul.mainmenu li:nth-child(4) a::before{
  background-image: url(../img/icon-present-black.svg);
  height: 30px;
}
@media screen and (min-width:992px){
  header ul.mainmenu li:nth-child(4) a::before{
    height: 34px;
  }
}
header ul.mainmenu li a.active_tab{
  color: #fff;
}
header ul.mainmenu li:nth-child(2) a.active_tab::before{
  background-image: url(../img/icon-list-white.svg);
}

header ul.mainmenu li:nth-child(3) a.active_tab::before{
  background-image: url(../img/icon-overview-white.svg);
}

header ul.mainmenu li:nth-child(4) a.active_tab::before{
  background-image: url(../img/icon-present-white.svg);
  height: 30px;
}
header ul.mainmenu li:nth-child(2):hover a::before{
  background-image: url(../img/icon-list-white.svg);
}

header ul.mainmenu li:nth-child(3):hover a::before{
  background-image: url(../img/icon-overview-white.svg);
}

header ul.mainmenu li:nth-child(4):hover a::before{
  background-image: url(../img/icon-present-white.svg);
}
header ul.mainmenu li:nth-child(5):hover a::before{
  background-image: url(../img/icon-apply-white.svg);
}
header ul.mainmenu li:nth-child(5) a::before{
  background-image: url(../img/icon-apply-black.svg);
}
header ul.mainmenu li:nth-child(5) a.active_tab::before{
  background-image: url(../img/icon-apply-white.svg);
}

/* ヘッダー分のずれ調整 */

main{
  position: relative;
  top:56px;
}

/* ハンバーガーメニュー */

header #menu-btn-check {
  display: none;
}

header .menu-btn {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  height: 56px;
  width: 56px;
  justify-content: center;
  align-items: center;
  z-index: 90;
}

/* ハンバーガーボタン */
header .menu-btn span {
  content: '';
  display: block;
  height: 2px;
  width: 32px;
  border-radius: 3px;
  background-color: rgb(5,5,5);
  position: absolute;
}
header .menu-btn span:nth-child(1) {
  top:14px;
}
header .menu-btn span:nth-child(2) {
  top:27px;
}
header .menu-btn span:nth-child(3) {
  top: 40px;
}
header #menu-btn-check:checked ~ .menu-btn {
  width:100vw;
  top:calc(100vh - 56px - 10vh);
  left:0;
}
header #menu-btn-check:checked ~ .menu-btn span:nth-child(1){
background: none;
}
header #menu-btn-check:checked ~ .menu-btn span:nth-child(2){
  background: none;
  width: 80px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  color: rgb(250,250,250);
  text-align: center;
}
header #menu-btn-check:checked ~ .menu-btn span:nth-child(2):before{
  content: '閉じる ×';
}
header #menu-btn-check:checked ~ .menu-btn span:nth-child(3){
background: none;
}

/* 展開するメニュー */
header .menu-content {
  width: 100vw;
  height: 90vh;
  position: fixed;
  top: -100vh;
  left: 0;
  z-index: 5;
  background-color: rgb(68,68,68,.8);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  transition: top 0.5s;
  display: none;
}
header #menu-btn-check:checked ~ .menu-content {
  top:0;
  display: block;
}
header .menu-content ul.sidemenu{
  width: 100vw;
  height: 90vh;
  margin: 0;
  padding: 24px;
  transition: opacity .4s;
  list-style: none;
  opacity: 0;
}
header #menu-btn-check:checked ~ .menu-content ul.sidemenu{
  opacity: 1;
}
header .menu-content ul.sidemenu li.sidemenu-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1;
}
header .menu-content ul.sidemenu li.sidemenu-top:after{
  display: none;
}
header .menu-content ul.sidemenu li.sidemenu-top a{
  width: calc(100% / 3);
  height: 120px;
  font-size: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
header .menu-content ul.sidemenu li.sidemenu-top a img{
  width: 56px;
  height: 48px;
  object-fit: contain;
  object-position: center;
  margin-bottom: 16px;
}
header .menu-content ul.sidemenu li{
  line-height: 4;
  border-bottom: solid 1px rgb(250,250,250);
  position: relative;
  font-size: 18px;
  letter-spacing: 2px;
}
header .menu-content ul.sidemenu li:after{
  content:'';
  width:16px;
  height:16px;
  background-image: url(../img/icon-tryangle-down-white.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
header .menu-content ul.sidemenu li a{
  display: block;
  width: 100%;
  height: 100%;
  color: rgb(250,250,250);
}

/* メインビジュアル */


#mainvisual{
  height:calc(100vh - 56px);
  background-image: url(../img/mv_pickup_slide/mainvisual-bg-sp.jpg);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  position: relative;
  padding-bottom: 90%;
}
@media screen and (min-width:992px){
  #mainvisual{
    background-image: url(../img/mv_pickup_slide/mainvisual-bg-pc.jpg);
    padding-bottom: 0;
  }
}

#mainvisual>div.sp{
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
#mainvisual div.sp img{
  position: absolute;
  width: 80%;
  height: auto;
  margin: 0 auto;
}
#mainvisual>div.pc{
  width: auto;
  max-width: 400px;
  height: auto;
  max-width: 100vw;
  max-height: calc(100vh - 350px);
  margin: 0 auto;
}
#mainvisual img{
  position: absolute;
  display: block;
  width:100%;
  max-width: 400px;
  height:auto;
  z-index: 1;
}
#mainvisual img.mv_bk{
  position: absolute;
  width:100%;
  max-width: 400px;
  height:auto;
  z-index: 0;
  mix-blend-mode: overlay;
}
@media screen and (min-width:992px){
  #mainvisual>div.pc{
    max-width: 800px;
    max-height:calc(100vh - 500px);
    min-height: 170px;
    top:32px;
  }
  #mainvisual>img{
    width: auto;
    max-width: 400px;
    height: auto;
    max-width: 100vw;
    max-height: calc(100vh - 350px);
    margin: 0 auto;
  }
  #mainvisual img{
    max-width: 800px;
  }
  #mainvisual img.mv_bk{
    max-width: 800px;
  }
}

/* フッター */

footer{
  background-color: rgb(68,68,68);
  padding:16px 0 40px 0;
}

footer img{
  display: block;
  width: 24px;
  height:24px;
  margin:0 auto;
}

/* 画面右下に固定 */

.follow-button{
  width:75px;
  height:75px;
  position: fixed;
  right:16px;
  background-color: rgb(5,5,5);
  border:solid 2px rgb(250,250,250);
  border-radius: 100px;
  filter: drop-shadow(0 6px 1px rgba(68,68,68,.5));
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.follow-button.appmember,
.follow-button.appmember + p{
  top:80px;
}

.follow-button.cart,
.follow-button.cart + p{
  top: 175px;
}

.follow-button img{
  display: block;
  width: 50px;
  height:50px;
}

.follow-button + p{
  display: none;
}
@media screen and (min-width:992px){
  .follow-button + p{
    width:auto;
    height:56px;
    position: fixed;
    right:16px;
    background-color: rgb(250,250,250);
    border:solid 2px rgb(5,5,5);
    border-radius: 100px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all .4s;
    opacity: 0;
    font-size: 14px;
    text-align: center;
    font-weight: 400;
  }
}

@media screen and (min-width:992px){
  .follow-button:hover + p{
    width:auto;
    padding-right:56px;
    padding-left:24px;
    opacity: 1;
  }
}

.follow-button:hover + p span{
  color: rgb(250,5,5);
}

/* チャットボット調整 */

@media screen and (min-width: 992px){
  .obotai-chatbot-controller{
  position:fixed;
  width: 75px !important;
  height: 75px !important;
  right: 16px !important;
  top: 272px;
  filter: drop-shadow(0 6px 1px rgba(68,68,68,.5));

  /* 以下9/16〜不要 */
  background-image: url(../img/icon-chat_2.svg) !important;
  /* 以上9/16〜不要 */
}
}
@media screen and (max-width:992px){
  .obotai-chatbot-controller{
    width: 75px !important;
    height: 75px !important;
    right: 16px !important;
    bottom: 20px !important;
    filter: drop-shadow(0 6px 1px rgba(68,68,68,.5));
  
    /* 以下9/16〜不要 */
    background-image: url(../img/icon-chat_2.svg) !important;
    /* 以上9/16〜不要 */
  }
  }
.obotai-chatbot-controller:hover{
  opacity: .7;
  transition: .4s;
  
}

p#chatnote{
  display: none;
}

@media screen and (min-width:992px){
  p#chatnote.none{
    display: block;
    opacity: 0;
    width: auto;
    height: 56px;
    line-height: 52px;
    position: fixed;
    right: 16px;
    bottom: 16px;
    background-color: rgb(250,250,250);
    border: solid 2px rgb(5,5,5);
    border-radius: 100px;
    z-index: 2;
    transition: all .4s;
    font-size: 14px;
    text-align: center;
    font-weight: 400;
    padding: 0 56px 0 16px;
    transition: all .4s;
  }
  p#chatnote.block{
    width:auto;
    padding-right:56px;
    padding-left:24px;
    opacity: 1;
  }
}

/* Obot */
/* モーダルのスタイル */
#obot_modal{
  position: fixed;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  top: 272px;
  right: 15px;
  z-index: 998;
  width: 75px;
  height: 75px;
  background-image: url(../img/icon-chat_2.svg);
  filter: drop-shadow(0 6px 1px rgba(68,68,68,.5));
}
#option1{
  color: #000;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  background-color:#F7EE4D;
  height: 60px;
  border-radius: 30px;
  border: 2px solid #fff;
  box-shadow: #ddd 3px 3px 0;
  font-weight: bold;
}
#option2{
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  background-color:#D84190;
  color: #fff;
  height: 60px;
  border-radius: 30px;
  border: 2px solid #fff;
  box-shadow: #ddd 3px 3px 0;
  font-weight: bold;
}
#myModal{
  position: fixed;
  top: 0;
  left: 0;
}
.modal {
  display: none; /* デフォルトでは非表示 */
  position: fixed;
  z-index: 1000;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
}
#iframeContainer{
  display: none;
  position: fixed;
  bottom: 5px;
  right: 10px;
  height: 80%;
  max-height: 650px;
  width: 50%;
  max-width: 450px;
  z-index:999;
}
#displayFrame{
  display: block;
  border-radius: 5px;
}
.modal-content {
  display: grid;
  grid-template-columns: 1fr;
  background-color: #fefefe;
  margin: 15% auto;
  padding: 10px 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 600px;
  border-radius: 5px;
}
@media screen and (max-width:992px){
  #obot_modal{
    top: auto;
    bottom: 20px;
  }
  #iframeContainer{
    bottom: 0;
  right: 0;
    height: 100%;
    max-height: none;
    width: 100%;
    max-width: none;
    z-index:999;
  }
  .modal-content {
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
  }
  .modal-content ul{
    display: block;
    list-style-type: disc;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0;
  }
  .modal-content .options li{
    font-size: 14px;
  }
}
.modal-content .options{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}
.modal-content .options ul{
  padding-top: 20px;
  padding-left: 20px;
  border-radius: 5px;
}
.modal-content .options .mk{
  background-color: #ffffcf;
}
.modal-content .options .cf{
  background-color: #ffdaf1;
}
.modal-content .options li{
  list-style: none;
  line-height: 1.5;
  padding-bottom: 10px;
  padding-right: 10px;
}
.modal-content .close {
  color: #aaa;
  float: right;
  font-size: 28px;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 10px;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

#closeIframe{
  display: block;
  width: 20px;
  height: 20px;
  position: relative;
  margin-top: 15px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}
#closeIframe::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px; /* 棒の幅（太さ） */
  height: 30px; /* 棒の高さ */
  background: #fff;
  transform: translate(-50%,-50%) rotate(45deg);
}
#closeIframe::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px; /* 棒の幅（太さ） */
  height: 30px; /* 棒の高さ */
  background: #fff;
  transform: translate(-50%,-50%) rotate(-45deg);
}
#maximizeIframe{
  display: block;
  width: 20px;
  height: 20px;
  position: relative;
  margin-top: 15px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}
#maximizeIframe::after{
  position: absolute;
  content: url(../img/maxbutton.svg);
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
}

.store_name{
  list-style:none;
  padding-inline-start:0;
}
.store_name li{
  list-style: none;
  padding-left: 10px;
  line-height: 30px;
  border-bottom: solid 1px #fff;
}
.store_name details ul{
  padding-inline-start:24px;
}
.store_name details > summary {
  cursor: pointer;
  list-style: none;
  background-color: #ddd;
  padding-left: 10px;
  list-style: none;
}
.store_name details > summary:before {
  content: "▼ ";

}
details > summary::-webkit-details-marker {
  display: none;
  list-style:none;
}
.store_name details > summary:before {
  content: "▼ ";

}
summary::-webkit-details-marker {
  display:none;
}