@charset "utf-8";

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto',"Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", meiryo, Osaka, "ＭＳ Ｐゴシック", sans-serif;
    color: var(--text-black);
}


:root {
    --color-blue:rgb(20, 64, 143);
    --color-white:rgb(255, 255, 255);
    --color-black:rgb(35, 35, 35);
    --color-gray10:rgb(222, 222, 222);
    --color-gray50:rgb(129, 129, 129);

}
.bg {
    position: relative;
    z-index: 0;
}
.bg:before {
    content: "";
    display:block;
    position:fixed;
    top:0;
    left:0;
    z-index:-1;
    width:100%;
    height:100%;
    background-position:center;
    background-image:url(../images/app-guide/bg.jpg);
    background-size:cover;  
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

h1 {
    font-size: 22px;
    font-weight: bold;
    line-height: 36px;
}
h2 {
    font-size: 20px;
    line-height: 140%;
    font-weight: bold;
    letter-spacing: .03em;
}

h3 {
  font-size: 18px;
  font-weight: bold;
  line-height: 140%;
}
.hero {
    text-align: center;
    padding: 80px 0 64px;
}

@media screen and (min-width: 900px){
  .hero {
    padding: 80px 0 80px;
}
  }
  

/* 分岐 */
.branch {
    display: flex;
    flex-wrap: wrap;
    gap: 0 16px;
    min-width: 300px;
    margin: 0 auto;
}

.branch label:has(:checked) + div {
    display: block;
}

.branch > label {
    /* flex: 1 1; */
    order: -1;
    width: 35%;
    max-width: 216px;
    padding: 16px 14px;
    border-radius: 10px 10px 0 0;
    font-size: 18px;
    font-weight: bold;
    line-height: 18px;
    letter-spacing: .05em;
    text-align: center;
    cursor: pointer;
}

.get-label:hover,
.give-label:hover {
    background-color: #d0d0d0;
    transition: .3s;
}
.get-label,
.give-label {
    background-color: var(--color-gray10);
    color: var(--color-gray50);
}
.get-label.active,
.give-label.active {
    background-color: var(--color-black);
    color: var(--color-white);
}
.get-label{
    width: 45%;
    max-width: 245px;
    margin: 0 0 0 auto;
}
.give-label {
    max-width: 245px;
    margin: 0 auto 0 0;
}

.get,
.give {
    width: 100%;
}

.branch input {
    display: none;
}
.branch > div {
    display: none;
    width: 100%;
}

.container-back {
  background-color: rgb(243, 247, 251);
  background-color: rgb(229, 238, 248);

}
.container {
    max-width: 500px;
    margin: auto;
    padding: 0 24px 72px 24px;
    border-top: 3px solid var(--color-black);
}

.message {
    text-align: center;
    padding: 56px 0;
}
.message h2 {
    color: var(--color-black);
}

.sp-lighting {
  margin: 40px auto 0 auto;
}
.give .message img {
    margin-top: 0;
    width: 312px;
}
.give-ticket {
    width: 220px;
    height: 50px;
    margin: 40px auto 0 auto;
}
@media screen and (min-width: 900px){
  .message img {
    width: 216px;
  }
}

/* 流れの説明 */
.flow {
    /* background-color: rgb(234, 238, 244);
    background-color: rgb(227, 232, 242); */
    background-color: rgb(223, 228, 238);
    border-radius: 16px;
    padding: 48px 32px;
}
.flow h3 {
    padding-bottom: 40px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-black);
}

.step {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}
.step:last-child {
    margin-bottom: 0;
}
.step img {
    width: 72px;
    margin: 0;
    border: none;
    border-radius: 10px;
}
.flow-text {
    width: 168px;
    padding: 4px 0 0 16px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    color: var(--color-black);
}
.flow-head {
    font-size: 12px;
    font-weight: bold;
    letter-spacing: .05em;
}
.flow-contents {
    font-size: 14px;
    font-weight: bold;
}
.flow-jump {
    width: 112px;
    height: 16px;
    text-align: center;
    margin-left: auto;
    font-size: 12px;
    padding: 6px 0px 0px 6px;
    border: 1px solid var(--color-black);
    border-radius: 20px;
}
.flow-jump.pettern2 {
    width: 118px;
}
.flow-jump.pettern3 {
    width: 136px;
}

.flow-jump span::before {
    content: "";
    display: block;
    width: .4em;
    height: .4em;
    border-top: 1px solid var(--color-black);
    border-right: 1px solid var(--color-black);  
    transform: translate(1590%,-185%) rotate(135deg);  
}

.pettern2 span::before {
  transform: translate(1740%,-185%) rotate(135deg);  
}
  
.pettern3 span::before {
  transform: translate(2010%,-185%) rotate(135deg);  
}
  


  /* procedure */
  .procedure-wrap {
    position: relative;
    z-index: 0;
  }
  .procedure-wrap:before {
    content: "";
    display:block;
    position:fixed;
    top:0;
    left:0;
    z-index:-1;
    width:100%;
    height:100%;
    background-position:center;
    background-image:url(../images/give/bg.jpg);
    background-size:cover;  
  }
  .procedure {
    padding: 0 0 72px 0;
  }
  .procedure:last-child {
    padding-top: 0;
  }


  .main-contents {
    max-width: 500px;
    border-radius: 32px;
    box-shadow: 0 0 15px -5px rgba(0, 0, 0, 0.3);
    background-color: #fff;
    margin: auto;
    margin-top: 72px;
    padding: 32px 24px;
  }

  .procedure-title {
    display: flex;
    padding-bottom: 8px;
    margin-bottom: 32px;
    border-bottom: 2px solid rgb(129, 129, 129);
    align-items: center;
  }

  .mini-square {
    border-radius: 12px;
    padding: 10px 14px;
    margin-right: 12px;
    color: #fff;
    background-color: var(--color-blue);
    font-size: 14px;
    font-weight: bold;
  }

  .sub-title {
    font-size: 16px;
    line-height: 140%;
    margin: 0 0 20px;
  }


  /* ボタンのタブ */
  .tab-wrap {
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    position: relative;
    z-index: 100;
  }
  
  .tab-wrap:after {
    background: var(--color-orange);
    border-radius: 50px;
    top: 8px;
    content: '';
    display: block;
    height: 64px;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    width: 100%;
    z-index: -5;

  }
  .tab-label {
    color: rgb(129, 129, 129);
    background-color: var(--color-gray10);
    cursor: pointer;
    /* width: 50%; */
    flex-basis: 40%;
    font-weight: bold;
    order: -1;
    padding: 8px 12px;
    margin: auto;
    position: relative;
    text-align: center;
    transition: cubic-bezier(0.4, 0, 0.2, 1) .2s;
    user-select: none;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
    border-radius: 50px;
    z-index: 1;
    line-height: 125%;
    font-size: 14px;
  }

  .tab-label.l {
    margin-left: 0;
  }
  .tab-label.r {
    margin-right: 0;
  }
  
  .tab-label:hover {
    background: #d0d0d0;
    transition: .3s;
  }
  
  .tab-switch:checked + .tab-label {
    color: var(--color-white);
    background-color: var(--color-white);
  }
  
  .tab-label::after {
    background: var(--color-black);
    border-radius: 50px;
    bottom: 0px;
    content: '';
    display: block;
    height: 100%;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transform: translateX(100%);
    transition: cubic-bezier(0.4, 0, 0.2, 1) .2s 80ms;
    width: 100%;
    z-index: -1;
  }
  
  .tab-switch:checked ~ .tab-label::after {
    transform: translateX(-100%);
  }
  
  .tab-switch:checked + .tab-label::after {
    opacity: 1;
    transform: translateX(0);
  }
  
  .tab-content {
    height:0;
    opacity:0;
    pointer-events:none;
    transform: translateX(-30%);
    transition: transform .3s 80ms, opacity .3s 80ms;
    width: 100%;
  }
  
  .tab-switch:checked ~ .tab-content {
    transform: translateX(30%);
  }
  
  .tab-switch:checked + .tab-label + .tab-content {
    height: auto;
    opacity: 1;
    order: 1;
    pointer-events:auto;
    transform: translateX(0);
  }
  
  .tab-switch {
    display: none;
  }
  

  /* swiper名前未変更 */

  figure img {
    width: 152px;
  }

  figcaption {
    text-align: justify;
    margin-top: 32px;
  }
  figcaption p {
    font-size: 14px;
    line-height: 165%;
    margin-top: 8px;
  }
  .p2 {
    font-size: 14px;
    margin-top: 8px;
    color: rgb(232, 133, 101);
  }

  /* .line {
    text-decoration: underline;
    color: var(--color-blue);
  } */

.swiper-wrapper {
    width: 100%;
    height: 100%;
  }
  
  .swiper-slide {
    width: 100%;
    height: 100%;
    margin: 0 0 80px 0;   
    text-align: center;
  }
  .get .swiper-slide {
    margin-top: 24px;
  }
    
  .swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important;
    margin: 0 0 0 5px !important;
    background: #333 !important;
  }

  .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, 26px);
  }

  .swiper-pagination-bullet:first-child {
    margin: 0 !important;
  }

  .swiper-button-prev,
  .swiper-button-next {
    border: 1px solid var(--color-blue);
    border-radius: 50px;
    top: var(--swiper-navigation-top-offset, 94%);
    width: 100px;
    height: 48px;
    align-items: baseline;
    transition: .2s;
  }

  .swiper-button-prev {
    margin-left: -10px;
  }
  .swiper-button-next {
    margin-right: -10px;
  }
  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    background-color: #f5f5f5;
  }

  .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: '次へ　next';
    font-size: 16px;
    padding: 16px 16px;
    color: var(--color-blue);
  }
  .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: 'prev　戻る';
    font-size: 16px;
    padding: 16px 16px;
    color: var(--color-blue);
  }

  .app {
    display: flex;
    justify-content: center;
    margin: auto;
    align-items: center;
  }
  .app img {
    height: 45px;
    width: auto;
    margin: 24px 8px 0 0;
  }

  .link-give {
  max-width: 342px;
  border-radius: 32px;
  box-shadow: 0 0 15px -5px rgba(0, 0, 0, 0.3);
  background-color: #fff;
  margin: auto;
  margin-top: 72px;
  padding: 32px 24px;
  text-align: center;
  line-height: 140%;
  font-weight: bold;
  }

  .button {
    width: 208px;
    margin: auto;
    padding: 12px 0;
    border: 1px solid var(--color-black);
    border-radius: 50px;
    margin-top: 16px;
  }



    /* cancel */
    .cancel-wrap {
      background-color: #fff; 
      padding: 72px 0 0 0 ;
      position: relative;
    }
    .cancel {
      max-width: 500px;
      padding: 0 24px;
      margin: 0 auto;
    }
  
    .subtitle {
      width: 242px;
      border-radius: 50px;
      background: linear-gradient(90deg,#EFF3F7, #EDF3FF);
    }
    .subtitle p {
      font-size: 14px;
      padding: 16px;
    }
    .cancel-title {
      padding: 16px 0 10px 8px;
      margin-bottom: 40px;
      border-bottom: 2px solid #808080;
    }
  
    .got {
      position: relative;
    }
    .gotq {
      margin: 40px 0;
      padding: 24px 16px;
      background-color: #f2f2f2;
      border-radius: 16px;
      box-shadow: 0 0 10px rgba(0, 0, 0, .25);
    }
  
    .gotq-q {
      display: flex;
      align-items: center;
    }
  
    .gotq-q p {
      font-size: 16px;
      font-weight: bold;
      line-height: 20px;
      margin-left: 8px;
    }
    .gotq-q img {
      width: 32px;
      height: 32px;
    }
  
    .gotq-an-box {
      display: flex;
      justify-content: space-between;
      margin-top: 24px;
    }
    .gotq-an {
      width: 230px;
      padding: 16px auto;
      background-color: #fff;
      border: 1px solid #D8D8D8;
      border-radius: 8px;
      text-align: center;
      align-items: center;
    }
    .gotq-an:first-child {
      margin-right: 16px;    
    }
    .gotq-an:hover {
      background-color: #f5f5f5;
      transition: .3s;
    }
  
    .gotq-an p {
      font-size: 12px;
      margin: 16px 0;
      line-height: 22px;
      width: 100%;
    }
    .bold {
      font-size: 14px;
      font-weight: bold;
    }
    /* .underline {
      position: relative;
      background-position: 0 bottom;
      background-repeat: no-repeat;
      transition: 1s ease;
    } */
    .orangeline {
      position: relative;
      background-position: 0 bottom;
      background-repeat: no-repeat;
      transition: 1s ease;
      background: linear-gradient(transparent 60%, rgba(20, 64, 143, .4) 0%);
      background-size: 0 100%;
    }
    .blueline {
      position: relative;
      background-position: 0 bottom;
      background-repeat: no-repeat;
      transition: 1s ease;
      background: linear-gradient(transparent 60%, rgba(255,150,126,.5) 0%);
      background-size: 0 100%;
    }
    .gotq-an.show .orangeline,
    .gotq-an.show .blueline{
      background-size: 100% 100%;
    }
  
    .arrowbox {
      position: absolute;
      bottom:-40px;
      left: 25%;
      display: flex;
      justify-content: space-between;
      width: 50%;
      }
    .arrow {
      height: 64px;
      width: 2px;
      position: relative;
      background-color: var(--color-blue);
    }
    .arrowr {
      background-color: rgb(255,150,126);
    }
    .arrow::after {
      content:  '';
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 7px 5px 10px 5px;
      border-color: var(--color-blue) transparent transparent transparent ;
      position:  absolute;
      top: 64px;
      left: -200%;
    }
    .arrowr::after {
      border-color: rgb(255,150,126) transparent transparent transparent ;
    }
  
    /* 取り消し手順タブ変更 */
    .can-procedure {
      display: flex;
      flex-wrap: wrap;
      gap: 0 10px;
      min-width: 300px;
      max-width: 500px;
      margin-top: 55px;
  }
  
    .can-procedure1,
    .can-procedure2 {
      border: 2px solid var(--color-gray50);
      border-radius: 0 0 16px 16px;
    }
  
  .can-procedure > label {
      flex: 1 1;
      order: -1;
      width: 50%;
      padding: 16px 14px;
      border-radius: 10px 10px 0 0;
      background-color: var(--color-gray10);
      color: var(--color-gray50);
      font-size: 14px;
      font-weight: bold;
      line-height: 14px;
      text-align: center;
      cursor: pointer;
  }

  #not-received,
  #received {
    cursor: pointer;
  }
  
  .not-received2:hover,
  .received2:hover {
      background-color: #d0d0d0;
      transition: .3s;
  }
  
  .can-procedure input {
      display: none;
  }
  
  .can-procedure > div {
      display: none;
      width: 99.2%;
      background-color: #fff;
  }
  
  .not-received2,
  .received2 {
    transition-duration: .2s;
  }
  .not-received2.active,
  .received2.active {
    color: var(--color-white);
    background-color: var(--color-black);
  }

  .can-procedure label:has(:checked) + div {
      display: block;
  }
  
  .can-procedure .swiper {
    margin: 0 24px;
    height: 530px;
    padding: 24px 0;
  }
  .can-pro-title {
    height: 16px;
    color: var(--color-blue);
    background-color: #EBEEFB;
    padding: 24px;
    border-bottom: 1px solid var(--color-blue);
  }
  
  .can-pro-title img {
    width: 32px;
  }
  .can-procedure2 .can-pro-title {
    color: var(--color-orange);
    background-color: #FFF4F2;
    border-bottom: 1px solid var(--color-gray50);
  }
  
  .can-pro-title span {
    font-size: 16px;
    color: var(--text-black);
  }
  .can-procedure h3 {
    margin: 0;
    margin-left: 8px;
  }
  
  .can-procedure img {
    margin: 8px 0;
  }
  .can-procedure figcaption {
    margin-top: 24px;
  }
  
  .can-procedure .swiper-button-prev,
  .can-procedure .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 90%);
    width: 50px;
    height: 32px;
    align-items: baseline;
  }
  
  .can-procedure .swiper-button-next:after {
    content: 'next';
    font-size: 16px;
    padding: 8px 16px;
  }
  .can-procedure .swiper-button-prev:after {
    content: 'prev';
    font-size: 16px;
    padding: 8px 16px;
  }
  .can-procedure .swiper-horizontal>.can-procedure .swiper-pagination-bullets, .can-procedure .swiper-pagination-bullets.swiper-pagination-horizontal, .can-procedure .swiper-pagination-custom, .can-procedure .swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, 55px);
  }

  .can-procedure2 .swiper-button-prev,
  .can-procedure2 .swiper-button-next {
    border: 1px solid rgb(255, 150, 126);
  }
  .can-procedure2 .swiper-button-prev:after,
  .can-procedure2 .swiper-button-next:after{
    color: rgb(255, 150, 126);
  }
  


  /* よくある質問 */
.question-wrap {
  background-color: var(--color-white);
  width: 100%;
}
.question {
  max-width: 500px;
  margin: 0 auto;
  padding: 72px 24px;
}
.question .cancel-title {
  padding-bottom: 4px;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--color-gray50);
}

.question .bold {
  font-size: inherit;
  font-weight: 800;
}
.que-subt {
  font-size: 16px;
  font-weight: bold;
  margin: 40px 0 24px 0;
}
.op_accord .accordionList{
  border-radius: 10px;
  overflow: hidden;
  background: #FFF;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
  margin: 0 0 24px 0;
  transition: 0.3s ease;
  border: 2px solid #FFF;
}
.op_accord .accordionList.active{
  border: 2px solid var(--color-gray50);
}

.op_accord .accordionList .accordionTit{
  padding: 24px 56px 24px 20px;
  font-weight: 500;
  position: relative;
  cursor: pointer;
  transition: 0.5s ease;
}
.op_accord .accordionList .accordionTit span {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 8px;
  height: 8px;
  transform: rotate(180deg) translateY(50%);
  transition: 0.3s ease;
}
.op_accord .accordionList .accordionTit.open span {
  transform: translateY(-50%);
}
.op_accord .accordionList .accordionTit span:before {
  content: "";
  position: absolute;
  top: 25%;
  width: 100%;
  height: 100%;
  border-top: 2px solid var(--color-gray50);
  border-right: 2px solid var(--color-gray50);
  transform: rotate(-45deg);
}
.op_accord .accordionList .accordionTit .txt {
  font-size: 14px;
  line-height: 130%;
  font-weight: 500;
  text-align: justify;
  margin: 0;
  position: relative;
  padding: 0 0 0 40px;
  transition: 0.5s ease;
}

.op_accord .accordionList .accordionTit .txt:before{
  content: "Q";
  position: absolute;
  padding-left: 1px;
  left: 0;
  width: 24px;
  height: 24px;
  background: var(--color-black);
  color: var(--color-white);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  text-align: justify;
}
.op_accord .accordionList .accordionDetail{
  display: none;
}
.op_accord .accordionList .accordionDetail > *{
  margin-bottom: 20px;
}
.op_accord .accordionList .accordionDetail > *:last-child{
  margin-bottom: 0;
}

.op_accord .accordionList .accordionDetail .answer{
  position: relative;
  padding: 0 0 0 40px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7em;
}
.op_accord .accordionList .accordionDetail .answer:before{
  content: "A";
  position: absolute;
  padding-left: 1px;
  left: 0;
  width: 24px;
  height: 24px;
  color: var(--color-black);
  border: 1px solid var(--color-black);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.op_accord .accordionList .accordionDetail .answer + .answer:before{
  content:none;
}
.op_accord .accordionList .accordionDetail .thumb{
  width: 34%;
  display: block;
  margin: 0 auto 0;
}
.op_accord .accordionList .accordionDetail .cautionList{
  font-weight: 700;
}

.accordionList img {
  width: 34%;
  display: block;
  margin: 0 auto 0;

}
dd {
  margin: 0;
  padding: 20px;
}

.mainbtn a{
  display: block;
  border-radius: 100px;
  background: #FFF;
  width: 180px;
  font-size: 14px;
  color: var(--color-orange);
  font-weight: bold;
  text-decoration: none;
  border: 1px solid var(--color-gray50);
  text-align: center;
  padding: 12px;
  margin: 0 auto;
  transition: .2s;
}
.mainbtn a:hover {
  box-shadow: 0 0 8px 0 #E2D5D1;
}

/* 解決しない場合 */
.guide {
  text-align: center;
}
.guide p {
  font-size: 16px;
  font-weight: bold;
  line-height: 28px;
}
.guide .mainbtn {
  margin: 12px 0 48px 0;
}


@media screen and (min-width: 900px){
.bg:before {
    background-image:url(../images/app-guide/bgpc.jpg);
}

}



/* ページリロード時　fade up */
.fadeup {
  animation-name:fadeUpAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
  opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ページリロード時　じわっとappear */
.appear {
  animation-name:appearAnime;
  animation-duration:1.5s;
  animation-fill-mode:forwards;
  opacity: 0;
  animation-delay: .3s;
}

@keyframes appearAnime{
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* スクロール時　ふわっとfadeup */

.step,
.main-contents {
  opacity: 0;
  transform: translateY(30px);
  transition: 1s ease-in-out;
}
.step.show,
.main-contents.show {
  opacity: 1;
  transform: translateY(0);
}

u {
  color: var(--color-blue);
}
