@charset "UTF-8";
@import url("base.css");
/* 全体レイアウト */
.fnb__contener {
  display: flex;
  justify-content: center;
}
.fnb__side-container {
  flex: 1;
  position: relative;
}
.fnb__side-contant {
  position: sticky;
  top: 5%;
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin: 0 auto;
  width: 50%;
  height: 90vh;
  overflow-y: auto;
}
.fnb__side-contant-logo {
  width: 60%;
  margin: 0 auto;
}
.fnb__side-contant ul {
  display: flex;
  flex-direction: column;
}
.fnb__side-contant ul a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .2em;
  padding: .8em 0;
  border-bottom: 1px solid rgba(255,255,255,.5);
  color: var(--white);
  font-size: .8em;
}
.fnb__side-contant ul img {
  width: auto;
  height: 1em;
  filter: brightness(0) invert(1);
}
.fnb__side-contant .fnb__button {
  height: 4em;
  font-size: 1em;
}
.fnb {
  background-image: url(../images/bg.png);
  background-position: top center;
  background-repeat: repeat-y;
  background-size: 100% auto;
}
@media (max-width: 1380px) {
  .fnb__side-container.right {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    z-index: 90;
    transition: right 0.3s ease-in-out;
  }
  .fnb__side-container.right.open {
    right: 0;
  }
  .fnb__side-container.left {
    display: none;
  }
  .fnb__side-container.right .fnb__side-contant {
    z-index: 900;
    padding: 2vw 8vw;
    width: 100%;
    height: 100vh;
    background-color: var(--green-maccha, #333);
  }
  /* 3. 背景の黒い幕（マスク） */
  #mask {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 900;
  }
  .fnb__side-container.right.open #mask {
    display: block;
  }
}
.fnb__main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 470px;
  max-width: 100%;
  background-color: #fff;
}
.fnb__section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5em;
  padding: 5vw 1.5vw;
}
main {
  overflow: hidden;
  width: 100%;
}
.fnb__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5em;
  width: 100%;
  background-color: var(--white);
  border-radius: 2em;
  padding: 1.4em;
}
.fnb__box_use{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-color: var(--white);
  border-radius: 2em;
}
@media (max-width: 469px) {
  .fnb__main-container {
    overflow: hidden;
  }
  .fnb__section {
    padding: 10vw 5vw;
  }
}
/* fnb__hero */
.fnb__hero {
  position: relative;
  padding: 2em 2em 0 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4em;
  width: 100%;
  background-image: url(../images/hero_bg.jpg);
  background-size: cover;
}
.fnb__hero_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2em;
  width: 100%;
}
.fnb__hero_logo {
  width: 340px;
  max-width: 100%;
}
.fnb__hero_h1 {
  display: flex;
  align-items: center;
  gap: 1em;
  width: 100%;
}
.fnb__hero_h1_percent {
  position: relative;
  width: 60%;
}
.fnb__hero_h1_percent span {
  position: absolute;
  left: 28%;
  bottom: 23%;
  width: 30%;
}
.fnb__hero_h1_point {
  flex: 1;
}
.fnb__hero_illustration {
  width: 100%;
}
.fnb__hero .c-alist {
  color: var(--white);
}
@media screen and (max-width: 469px) {
  .fnb__hero {
  padding: 1em 5vw 0 5vw;
  }
  .fnb__hero_logo {
    width: 210px;
  }
}
/* fnb__lineup */
.fnb__tab-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1em;
  width: 100%;
}
.fnb__lineup .fnb__tab-menu {
  display: flex;
  gap: 2vw;
}
.fnb__lineup .c-tabList {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: .5em;
  padding: 1.5em 0;
  border-radius: 1em;
  background-color: var(--green-maccha);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.30);
  opacity: .6;
  color: var(--white);
  font-size: .7em;
  text-align: center;
}
.fnb__lineup .c-tabList img {
  width: 4em;
}
.fnb__lineup .c-tabList span {
  font-size: 1.3em;
}
.fnb__lineup .c-tabList.is-active {
  position: relative;
  background-color: var(--green-maccha);
  color: var(--white);
  opacity: 1;
}
.fnb__lineup .c-tabList.is-active::after {
  position: absolute;
  left: 50%;
  bottom: -9px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--green-maccha);
  content: "";
}
.fnb__lineup .fnb__tab-content {
  padding: 1em;
  border-radius: 2em;
  background-color: var(--green-maccha);
}
.fnb__lineup_title {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5em;
  padding: .5em 0 1.5em 0;
  font-weight: 600;
  color: var(--white);
  font-size: 14px;
}
.fnb__lineup_title img {
  width: 6em;
}
.fnb__lineup_title span {
  font-size: 1.5em;
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .fnb__lineup_title span {
    font-size: 1.3em;
  }
}
.fnb__lineup_title .vpoint,
.fnb__lineup_title .lavel,
.fnb__lineup_title .vpoint_2 {
  position: absolute;
  display: block;
}
.fnb__lineup_title .vpoint img,
.fnb__lineup_title .lavel img,
.fnb__lineup_title .vpoint_2 img {
  width: 100%;
}
.fnb__lineup_title .vpoint {
  left: 30px;
  top: -4px;
  width: 45px;
}
.fnb__lineup_title .vpoint_2 {
  right: 70px;
  top: 40px;
  width: 48px;
}
.fnb__lineup_title .lavel {
  right: -14px;
  top: -24px;
  width: 80px;
}
@media (max-width: 469px) {
  .fnb__lineup_title .vpoint {
    left: 0;
    top: 6px;
    width: 40px;
  }
  .fnb__lineup_title .vpoint_2 {
    right: 35px;
    top: 43px;
    width: 40px;
  }
  .fnb__lineup_title .lavel {
    right: -30px;
    top: -27px;
    width: 70px;
  }
}
@media (max-width: 374px) {
  .fnb__lineup_title,
  .fnb__lineup_title p{
    font-size: 12px;
    }
    .fnb__lineup_title .lavel {
      right: -30px;
      top: -23px;
      width: 65px;
    }
    .fnb__lineup_title .vpoint {
      left: 5px;
      top: 9px;
      width: 30px;
    }
    .fnb__lineup_title .vpoint_2 {
      right: 50px;
      top: 39px;
      width: 30px;
    }
}

.fnb__lineup_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2em;
  padding: 1.25em;
  background-color: var(--white);
  border-radius: 2em;
}
.fnb__lineup_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
}
.fnb__lineup_card img {
  width: 240px;
  max-width: 100%;
}
.fnb__lineup_card_catch {
  font-weight: 600;
}
.fnb__lineup_card_text {
  font-size: .8em;
  line-height: 1.5;
}
.fnb__lineup_item ul {
  width: 100%;
}
/* fnb__start */
.fnb__start {
  padding-right: 1.5em;
  padding-left: 1.5em;
  padding-top: 0;
}
.fnb__start_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2em;
  padding: 2.5em;
  width: 100%;
  border-radius: 2em;
  background-image: url(../images/start_bg.jpg);
  background-size: cover;
}
.fnb__start .fnb__hero_h1 {
  flex-direction: column;
  gap: 3em;
}
.fnb__start .fnb__hero_h1 > div {
  width: 100%;
}
.fnb__start_inner .fnb__headline2 {
  position: relative;
}
.fnb__headline2 .vpoint2 {
  position: absolute;
  display: block;
  right: -60px;
  top: -10px;
}
.fnb__headline2 .vpoint2 img {
  width: 100%;
  height: auto;
}
/* fnb__campaign */
.fnb__campaign {
  background-image: url(../images/campaign_bg.jpg);
  background-repeat: repeat-y;
  background-size: 100% auto;
}
.fnb__campaign_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 1.5em;
  background-color: var(--white);
  border-radius: 2em;
}
.fnb__term {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-bottom: 1em;
  border-bottom: 1px solid var(--black);
}
.fnb__term_date {
  font-size: .8em
}
.fnb__term_date span {
  font-size: 2em
}
.fnb__campaig_present {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5em;
}
.fnb__campaig__copy {
  font-weight: 600;
}
.fnb__campaig__entory {
  position: absolute;
  right: -1px;
  top: -17px;
  font-size: .7em;
}
.fnb__campaig__copy span {
  font-size: .8em;
}
.fnb__campaig_price {
  display: flex;
  align-items: flex-end;
  gap: .3vw;
}
.fnb__campaig__saidai {
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.1;
}
.fnb__campaig_no {
  flex: 1;
  display: flex;
  align-items: flex-end;
}
.fnb__campaig_no span {
  flex: 2.5;
}
.fnb__campaig_no span.comma {
  flex: 1;
}
.fnb__campaig_no span img {
  margin-left: -.3vw;
  width: 120%;
}
.fnb__campaig_text {
  display: flex;
  flex-direction: column;
}
.fnb__campaig_text span {
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.1;
}
.fnb__campaign_more {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-color: var(--white);
  border-radius: 2em;
}
.fnb__more_button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80px;
  font-size: 1em;
  font-weight: 600;
}
.fnb__more_button::before,
.fnb__more_button::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--black);
  content: "";
}
.fnb__more_button::before {
  right: 16px;
  width: 16px;
  height: 2px;
}
.fnb__more_button::after {
  right: 23px;
  width: 2px;
  height: 16px;
}
.fnb__more_item {
  display: none;
  overflow: hidden;
}
.fnb__campaign_more.active .fnb__more_item {
  display: block;
  padding: 1.4em;
}
.fnb__campaign_more.active .fnb__more_button::after {
  display: none;
}
.fnb__campaign_more .fnb__more_item ol {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5em;
}
.fnb__campaign_more .fnb__more_item > ol li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5em;
  background-color: var(--brown-light);
  border-radius: 2em;
  padding: 1.5em;
}
.fnb__campaign_more .fnb__more_item > ol li:first-child::after,
.fnb__campaign_more .fnb__more_item > ol li:nth-child(2)::after {
  position: absolute;
  left: 50%;
  bottom: -13%;
  transform: translateX(-50%);
  width: 1.5em;
  height: 1.5em;
  background-image: url(../images/plus.svg);
  background-size: 100% auto;
  content: "";
}
.fnb__campaign_more .fnb__more_item img {
  max-width: 300px;
}
.fnb__campaign_other_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
}
.fnb__campaign_other_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5em;
  font-size: 1em;
  font-weight: 600;
}
.fnb__campaign_other_title span {
  font-size: .9em
}
.fnb__campaign_text {
  line-height: 1.5;
  font-size: 12px;
}
.fnb__campaign_headline3 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 38px;
  background-image: url(../images/campaign-title-bg.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  font-size: .8em;
  font-weight: 700;
  text-align: center;
  color: var(--white);
}
.fnb__campaign_headline3 img {
  width: auto;
  height: 1.5em;
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(105%) contrast(105%);
}
.fnb__campaign_headline4 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -60px;
  width: 100px;
  height: 38px;
  background-image: url(../images/campaign-title-bg.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
.fnb__campaign_more_sbi_title {
  font-size: 1.25em;
  font-weight: 700;
}
.fnb__campaign_more_sbi_text {
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}
.fnb__campaign_more_sbi_note {
  font-size: 15px;
  line-height: 1.5;
  margin-top: 20px;
}
.fnb__campaign_more_sbi_text_list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 12px;
  line-height: 1.5;
  margin-top: 24px;
}
.fnb__campaign_more_sbi_text_list .c-linkIcon02 {
  display: inline !important;
}
@media (max-width: 469px){
  .fnb__campaig_text {
    margin-left: .2em;
  }
  .fnb__campaign_more_sbi_title {
    font-size: 16px;
  }
  .fnb__campaign_more .fnb__more_item > ol li:first-child::after,
  .fnb__campaign_more .fnb__more_item > ol li:nth-child(2)::after {
    bottom: -14%;
  }
  .fnb__campaign_other_title {
    font-size: 13.9px;
  }
}
/* fnb__convenience */
.fnb__convenience {
  background: linear-gradient(0deg, rgba(140, 176, 69, 0.20) 0%, rgba(140, 176, 69, 0.20) 100%), #FFF;
}
.fnb__convenience .fnb__headline2 img {
  height: 3.5em;
}
.fnb__convenience_subtitle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5em;
  font-size: 1em;
}
.fnb__convenience_subtitle span {
  display: flex;
  align-items: flex-end;
  filter: brightness(0);
  font-size: 1.25em;
  font-weight: 600;
  line-height: 1.2;
}
.fnb__convenience_subtitle img {
  width: auto;
  height: 56px;
}
.fnb__convenience_subtitle img.percent {
  margin-right: .2em;
  height: 28px;
}
/* fnb__u25 */
.fnb__u25 {
  background-color: var(--brown-light);
}
.fnb__u25 .paypay {
  width: 8em;
}
.fnb__u25_title {
  font-size: 1em;
  text-align: center;
  font-weight: 600;
}
.fnb__u25 .c-linkIcon02 {
  width: 100%;
}
.fnb__u25_kome {
  display: flex;
  flex-direction: column;
  gap: .5em;
}
/* fnb__use */
.fnb__use {
  background-image: url(../images/use_bg.jpg);
  background-repeat: repeat-y;
  background-size: 100% auto;
}
.fnb__use_item {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5em;
}
.fnb__use_more .fnb__use_item{
  padding: 1.4em;
}
.fnb__use_item li {
  width: calc((100% - 1.5em) /2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  padding: 1.5em;
  border-radius: 2em;
  background: rgba(131, 115, 104, 0.90);
}
.fnb__use_title {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1em;
}
.fnb__use_title img {
  width: auto;
  height: 1em;
}
.fnb__use_title p {
  padding: 0 .5em;
  border-top: .5px solid var(--white);
  border-bottom: .5px solid var(--white);
  color: var(--white);
  font-size: .9em;
  text-align: center;
}
.fnb__use .icon {
  margin-top: auto;
  width: auto;
  height: 3.2em;
}
.fnb__use_more .fnb__use_item {
  display: none;
}
.fnb__use_more.active .fnb__use_item {
  display: flex;
}
.fnb__use_more.active .fnb__more_button::after {
  display: none;
}
.fnb__use_more .fnb__use_item li {
  position: relative;
  width: 100%;
}
.fnb__use_more .title {
  width: 5.5em;
}
.fnb__use_more .icon {
  position: absolute;
  right: 1em;
  top: 1em;
}
.fnb__use_more p {
  color: var(--white);
}
@media (max-width: 469px){
  .fnb__use_item {
    gap: 5vw;
  }
  .fnb__use_more .icon {
    right: .5em;
    top: .5em;
    height: 2em;
  }
}
/* fnb__topics */
.fnb__topics .swiper-container,
.fnb__topics .swiper-container div {
  width: 100% !important;
  max-width: 300px !important;
}
/* fnb__step */
.fnb__step {
  background-color: var(--green-light);
}
.fnb__step h2 {
  color: var(--white);
}
.fnb__step_item,
.fnb__step_content,
.fnb__step_content ol {
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2.5em;
  width: 100%;
}
.fnb__step_content,
.fnb__step_content ol {
  gap: 1.5em;
}
.fnb__step_content ol li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1em;
  padding: 1.25em;
  border-radius: 1em;
  background-color: var(--white);
  font-size: .9em;
}
#p-flowTab1 ol li:nth-child(2),
#p-flowTab1 ol li:nth-child(4) {
  border: 4px solid var(--yellow);
}
.fnb__step_content .no {
  width: auto;
  height: 2.5em;
}
.fnb__step_content .lavel {
  position: absolute;
  right: 0;
  top: -1em;
  width: 4em;
}
.fnb__step_catch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  color: var(--white);
  text-align: center;
  line-height: 1.5;
}
.fnb__step_catch span {
  font-size: 1.2em;
  font-weight: 600;
}
.fnb__step .c-alist {
  color: var(--white);
}
.p-flowTabMenu__list {
  width: 100%;
  display: flex;
  gap: 1.5em;
}
.c-tabList {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5em 0;
  border-radius: 1em;
  background-color: rgba(255,255,255,.3);
  border-radius: 1em;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .3);
  font-weight: 700;
  color: var(--white);
}
.c-tabList.is-active {
  opacity: 1;
  background-color: var(--white);
  color: var(--green-light);
}
.c-tabList.is-active::after {
  position: absolute;
  left: 50%;
  bottom: -.7em;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: .7em solid transparent;
  border-right: .7em solid transparent;
  border-top: .7em solid var(--white);
  content: "";
}
.c-tabContent.is-active {
  display: flex;
  flex-direction: column;
}
.p-flow-infoTabMenu__list {
  display: flex;
  gap: 1.5em;
  width: 100%;
}
.p-flow-infoTabMenu__list-item {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5em 0;
  border-radius: 1em;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .3);
  font-weight: 700;
  font-size: .8em;
  color: var(--white);
}
.p-flow-infoTabMenu__list-item--NL {
  background-color: var(--green);
}
.p-flow-infoTabMenu__list-item--GOLD {
  background-color: var(--gold);
}
.p-flow-infoTabMenu__list-item.is-flowactive::after {
  position: absolute;
  left: 50%;
  bottom: -.7em;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: .7em solid transparent;
  border-right: .7em solid transparent;
  content: "";
}
.p-flow-infoTabMenu__list-item--NL.is-flowactive::after {
  border-top: .7em solid var(--green);
}
.p-flow-infoTabMenu__list-item--GOLD.is-flowactive::after {
  border-top: .7em solid var(--gold);
}
.c-flowTabContent.is-flowactive {
  display: block;
  border-radius: 2em;
}
.p-flow-infoTabMenu__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.p-flow-infoTabMenu__content-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 40px 16px;
  border-radius: 20px;
}
@media (max-width: 400px) {
  .p-flow-infoTabMenu__list-item {
    font-size: 11px;
  }
}
#infoTab1 {
  background: rgba(105, 136, 131, 0.20);
}
#infoTab2 {
  background: rgba(208, 178, 93, 0.20);
}
/* nb__info */
.p-flow-infoTabMenu__img {
  width: 280px;
}
.fnb__info__headline3 {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
.p-flow__informationTable {
  width: 100%;
}
.p-flow__informationTable tbody {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.p-flow__informationTable tr {
  display: flex;
  flex-direction: column;
  border-radius: 1em;
  overflow: hidden;
}
.p-flow__informationTable th,
.p-flow__informationTable td {
  display: block;
  padding:0.8em;
  width: 100%;
  font-size: .8em;
}
.p-flow__informationTable th {
  color: #fff;
}
.p-flow__informationTable--NL th {
  background: var(--green);
}
.p-flow__informationTable--GOLD th {
  background: var(--gold);
}
.p-flow__informationTable td {
  background-color: #fff;
}
.p-flow__informationTable .c-circle12 {
  font-size: 12px;
}
.p-flow-infoTabMenu__detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5em;
}
.p-nb__section-bottom {
  display: flex;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  margin-top: -20px;
}
@media (max-width: 469px) {
  .p-nb__section-bottom {
    display: grid;
  }
}
/* nb__cv */
.fnb__cv {
  width: 100%;
  padding: 80px 24px;
  background-color: var(--baige);
  gap: 24px
}
.fnb__cv__item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  width: 100%;
  border: 5px solid var(--red-dark);
  background-color: #fff;
  border-radius: 20px;
  color: #fff;
  font-size: 20px;
}
.fnb__cv_sokuhatsu {
  position: absolute;
  left: 50%;
  top: -52px;
  transform: translateX(-50%);
  width: 200px;
}
.fnb__cv_sokuhatsuAlign {
  font-size: 12px;
  position: absolute;
  z-index: 2;
  color: var(--black);
  font-weight: 700;
  top: 58px;
}
/* modal */
.c-modalTitle {
  font-size: 3.6666666667vw;
  font-weight: bold;
  display: flex;
  align-items: center;
  margin-top: 7.4666666667vw;
  margin-bottom: 3.2vw;
}
@media (min-width: 768px) {
  .c-modalTitle {
    font-size: 16px;
    margin-top: 37px;
    margin-bottom: 16px;
  }
}
.c-modalTitle::before {
  content: "";
  display: inline-block;
  width: 1.0666666667vw;
  height: 3.7333333333vw;
  background: #242527;
  margin-right: 16px;
}
@media (min-width: 768px) {
  .c-modalTitle::before {
    width: 5px;
    height: 21px;
  }
}
.p-modal__cardWrapNG {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-modal__areas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  text-align: center;
}
.p-modal__cardoverlay {
  z-index: 100;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.p-modal__cardbody,
.p-modal__cardbody02,
.p-modal__cardbody03,
.p-modal__cardbody04,
.p-modal__cardbody05,
.p-modal__cardbody06,
.p-modal__cardbodyNG,
.p-modal__cardbodyNG02,
.p-modal__cardbodyNG03,
.p-modal__cardbodySelect {
  max-height: calc(100vh - 120px);
  max-width: 100vw;
  width: 100%;
  z-index: 111;
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  border-radius: 12px;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  justify-content: center;
  padding: 24px 16px;
}
.p-modal__cardbody,
.p-modal__cardbody02,
.p-modal__cardbody04 {
  scrollbar-width: none;
}
.p-modal__cardbody::-webkit-scrollbar,
.p-modal__cardbody02::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .p-modal__cardbody,
  .p-modal__cardbody02,
  .p-modal__cardbody03,
  .p-modal__cardbody04,
  .p-modal__cardbody05,
  .p-modal__cardbody06,
  .p-modal__cardbodyNG,
  .p-modal__cardbodyNG02,
  .p-modal__cardbodyNG03,
  .p-modal__cardbodySelect {
    max-width: 1000px;
  }
}
@media (max-width: 1024px) {
  .p-modal__cardbody,
  .p-modal__cardbody02,
  .p-modal__cardbody03,
  .p-modal__cardbody04,
  .p-modal__cardbody05,
  .p-modal__cardbody06 {
    max-height: calc(100vh - 200px);
  }
}
.p-modal__cardcontent {
  padding: 8.5333333333vw 3.7333333333vw;
  padding-bottom: 50vw;
  height: fit-content;
}
@media (min-width: 768px) {
  .p-modal__cardcontent {
    padding: 43px 18px;
    padding-bottom: 213px;
  }
}
.p-modal__cardcloseBtn {
  z-index: 233;
  display: none;
  position: fixed;
  top: 6px;
  right: 14px;
  width: 56px;
  cursor: pointer;
}
.p-modal__application,
.p-modal__application02,
.p-modal__application03,
.p-modal__application04,
.p-modal__application05 {
  margin-top: 16px;
  display: none;
  gap: 8px;
  margin-bottom: 16px;
  justify-content: center;
  bottom: 0;
  font-size: 14px;
}
.p-modal__cardbodyNG,
.p-modal__cardbodyNG02,
.p-modal__cardbodyNG03 {
  margin-right: 4px;
  width: 16px;
}
.p-modal__cardFlex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto;
  width: 100%;
  max-width: 320px;
}
.p-modal__cardWrap {
  z-index: 222;
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 38.6666666667vw;
  padding: 0 16px;
  padding-bottom: 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
}
@media (min-width: 768px) {
  .p-modal__cardWrap {
    height: 193px;
  }
}
.p-modal__cardWrap--night02 {
  min-height: fit-content;
}
@media (min-width: 768px) {
  .p-modal__cardWrap--night02 {
    min-height: 240px;
  }
}
.p-modal__cardWrap02 {
  height: fit-content;
}
@media (min-width: 768px) {
  .p-modal__cardWrap02 {
    height: 135px;
  }
}
.p-modal__area--NL {
  max-width: none;
  width: 100%;
  margin-top: 12px;
}
.p-modal__area--GOLD {
  max-width: none;
  width: 100%;
  margin-top: 12px;
}
.p-modal__cardSoonUsuallyText p,
.p-modal__cardSoonText p {
  color: #5E5E5E;
}
@media (min-width: 768px) {
  .p-modal__cardSoonText p {
    font-size: 13px;
  }
}
.p-modalTitle__note {
  font-size: 4.2666666667vw;
  margin-top: 8.5333333333vw;
  font-weight: bold;
}
@media (min-width: 768px) {
  .p-modalTitle__note {
    font-size: 21px;
    margin-top: 43px;
  }
}
.p-modalTitle__Top {
  text-align: center;
  font-size: 5.3333333333vw;
  font-weight: bold;
  margin-top: 4px;
}
@media (min-width: 768px) {
  .p-modalTitle__Top {
    font-size: 26px;
  }
}
.p-modalTitle__TopText {
  margin-top: 24px;
  text-align: center;
  font-size: 3.2vw;
}
@media (min-width: 768px) {
  .p-modalTitle__TopText {
    font-size: 15px;
  }
}
.p-modal__bottomText {
  max-width: 100vw;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .p-modal__bottomText {
    max-width: 800px;
  }
}
@media (min-width: 768px) {
  .p-modal__cardbodyNG,
  .p-modal__cardbodyNG02,
  .p-modal__cardbodySelect {
    height: 436px;
  }
}
.p-modal__cardbodyNG03 {
  background: #fff;
  width: 90%;
  padding: 6.1282vw;
}
@media (min-width: 768px) {
  .p-modal__cardbodyNG03 {
    height: 312px;
    padding: 53px;
  }
}
@media (max-width: 469px) {
  .p-modal__cardbodyNG03 .fnb__button--outline.sp {
    display: flex !important;
    flex-direction: row !important;
    gap: 16px;
  }
  .p-modal__cardbodyNG03 .fnb__button--outline::after {
    display: none;
  }
}
.p-modal__title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 5.3333333333vw;
  font-weight: bold;
}
@media (min-width: 768px) {
  .p-modal__title {
    font-size: 26px;
  }
}
.p-modal__titleSub {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .p-modal__titleSub {
    font-size: 15px;
  }
}
.p-modal__cardWrapNG03Img {
  text-align: center;
  margin-top: 24px;
}
.p-modal__cardWrapNG03Img img {
  width: 100%;
  height: auto;
  max-width: 244px;
}
.p-modal__cardWrapNG03ImgText {
  text-align: center;
  margin-top: 20px;
}
.p-modal__cardWrapNG03Img02 p {
  background: linear-gradient(90deg, #BB9C3D 0%, #B08A0D 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 17px;
  font-weight: bold;
}
.p-modal__cardWrapNG03Img02 img {
  width: 24px;
}
@media (min-width: 768px) {
  .p-modal__cardWrapNG03Img02 img {
    max-width: 20px;
    margin-right: 66px;
    margin-left: 21px;
  }
}
/* l-foote */
.l-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  background-color: #A6A7A7;
  text-align: center;
  font-size: 2.6666666667vw;
  width: 100%;
  padding-bottom: 96px;
}
.l-footer-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.l-footer-copyrightInfo {
  line-height: 1;
}
/* 追従ボタン */
.p-cardBtnWrap {
  z-index: 30;
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  width: 100%;
  max-width: 426px;
}
@media (max-width: 469px) {
  .p-cardBtnWrap {
    max-width: 330px;
  }
}

.c-cardBtn02 {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 100%;
  height: 72px;
  border-radius: 10px;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}
.c-cardBtn02--NL {
  background-color: var(--green);
}
.c-cardBtn02--GOLD {
  background-color: var(--gold);
}
/*ハンバーガー*/
#gnav_open {
  z-index: 10;
  position: fixed;
  top: 0;
  right: 8px;
  width: 42px;
  cursor: pointer;
}
@media screen and (min-width:1381px) {
  #gnav_open {
    display: none;
  }
}
.navCloseBtn {
  z-index: 1000;
  display: none;
  position: fixed;
  top: 6px;
  right: 14px;
  width: 56px;
  cursor: pointer;
}
@media (max-width: 1380px) {
  .fnb__side-container.right.open #gnav_close {
      display: block;
    }
  }
@media screen and (max-width: 350px){
  .fnb__hero_img {
    margin-top: 21px;
  }
}
.mt-0 {
  margin-top: 0 !important;
}
.mt-24 {
  margin-top: 24px !important;
}
.c-tabContent {
  display: none;
}
.c-flowTabContent {
  display: none;
}
.p-flow__wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px 16px;
  background: #F6F6F6;
}
.p-flow__informationsTitle {
  font-weight: bold;
  color: #242527;
  margin-top: 21px;
}
.p-flow__informationTexts {
  font-size: 12px;
}
.p-flow__wrap .c-circle10,
.p-flow__wrap .u-fz10 {
  font-size: 12px;
}
.p-flow__wrap .u-mlg {
  padding-left: 1.3em;
}
/* Vポイントアイコン */
.c-linkIcon {
  font-size: 14px;
  display: flex;
  align-items: center;
  text-decoration: underline;
}
.c-linkIcon::after {
  content: "";
  width: 1em;
  height: 1em;
  background-image: url(../images/icon_link_blank_white.svg);
  background-size: contain;
  vertical-align: middle;
  margin-left: 4px;
}
.c-linkIcon02 {
  text-decoration: underline;
  display: block;
  align-items: center;
  font-size: 12px;
}
.c-linkIcon02::after {
  display: inline-block;
  content: "";
  width: 16px;
  height: 16px;
  background-image: url(../images/icon_link_blank_black.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-left: 5px;
}
.c-linkIcon02--gree {
  color: #5E5E5E;
}
.c-linkIcon03 {
  font-size: 12px;
  align-items: center;
  display: flex;
  text-decoration: underline;
}
.c-linkIconT {
  margin-left: 5px;
  position: relative;
}
.c-linkIconT img {
  position: absolute;
  top: 52%;
  left: 50%;
  width: auto;
  margin-left: 4px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.c-alis_wrapper {
  display: flex;
  flex-direction: column;
}
.c-alist {
  font-size: 12px;
  text-indent: -1.5em;
  padding-left: 1.5em;
  color: #5E5E5E;
  display: block;
}
.c-alist::before {
  content: "※";
  margin-right: 4px;
}
.c-alist1 {
  font-size: 12px;
  margin-top: 16px;
  text-indent: -1.6em;
  padding-left: 1.6em;
  color: #5E5E5E;
}
.c-alist1::before {
  content: "※1";
  margin-right: 4px;
}
.c-alist2 {
  font-size: 12px;
  margin-top: 16px;
  text-indent: -1.6em;
  padding-left: 1.6em;
  color: #5E5E5E;
}
.c-alist2::before {
  content: "※2";
  margin-right: 4px;
}
.c-alist3 {
  font-size: 12px;
  margin-top: 16px;
  text-indent: -1.6em;
  padding-left: 1.6em;
  color: #5E5E5E;
}
.c-alist3::before {
  content: "※3";
  margin-right: 4px;
}
.c-alist4 {
  font-size: 12px;
  margin-top: 16px;
  text-indent: -1.6em;
  padding-left: 1.6em;
  color: #5E5E5E;
}
.c-alist4::before {
  content: "※4";
  margin-right: 4px;
}
.c-alist5 {
  font-size: 12px;
  margin-top: 16px;
  text-indent: -1.6em;
  padding-left: 1.6em;
  color: #5E5E5E;
}
.c-alist5::before {
  content: "※5";
  margin-right: 4px;
}
.c-alist6 {
  font-size: 12px;
  margin-top: 16px;
  text-indent: -1.6em;
  padding-left: 1.6em;
  color: #5E5E5E;
}
.c-alist6::before {
  content: "※6";
  margin-right: 4px;
}
.c-color--black {
  color: #5E5E5E !important;
}
.c-arrow.ngn_index2::after {
  position: absolute;
  display: inline-block;
  content: "";
  width: 2.1333333333vw;
  height: 2.1333333333vw;
  background-size: contain;
  vertical-align: middle;
  right: 4%;
  top: 50%;
}
@media (min-width: 768px) {
  .c-arrow.ngn_index2::after {
    width: 11px;
    height: 11px;
  }
}
.c-arrow4::after {
  position: absolute;
  display: inline-block;
  content: "";
  width: 3.2vw;
  height: 3.2vw;
  background-image: url(../img/icon_link_btn_self3.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  right: 6%;
  top: 36%;
}
@media (min-width: 768px) {
  .c-arrow4::after {
    width: 16px;
    height: 16px;
  }
  .c-arrow4.ngn_index2::after {
    width: 16px;
    height: 16px;
  }
}
.c-arrow4-01::after {
  position: absolute;
  display: inline-block;
  content: "";
  width: 2.1333333333vw;
  height: 2.1333333333vw;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  right: 4%;
  top: 50%;
}
@media (min-width: 768px) {
  .c-arrow4-01::after {
    width: 11px;
    height: 11px;
  }
}
.c-arrow5-01::after {
  position: absolute;
  display: inline-block;
  content: "";
  width: 2.1333333333vw;
  height: 2.1333333333vw;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  right: 4%;
  top: 40%;
}
.c-arrow5-01.ngn_index2::after {
  position: absolute;
  display: inline-block;
  content: "";
  width: 2.1333333333vw;
  height: 2.1333333333vw;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  right: 4%;
  top: 50%;
}
@media (min-width: 768px) {
  .c-arrow5-01::after {
    width: 11px;
    height: 11px;
  }
  .c-arrow5-01.ngn_index2::after {
    width: 11px;
    height: 11px;
  }
}
.c-fixSizedInformationsTitle{
  font-size: 14px;
  font-weight: 700;
  margin-top: 21px;
  margin-bottom: 12px;
}
.c-fontbold {
  font-weight: bold;
}
.c-circle10 {
  font-size: 12px;
  text-indent: -1.3em;
  padding-left: 1em;
  color: #242527;
  display: block;
}
@media (min-width: 768px) {
  .c-circle10 {
    font-size: 13px;
  }
}
.c-circle10::before {
  content: "・";
  margin-right: 4px;
}
.c-circle12 {
  font-size: 3.2vw;
  text-indent: -0.8em;
  padding-left: 1em;
  color: #242527;
  display: block;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .c-circle12 {
    font-size: 16px;
  }
}
.c-circle12::before {
  content: "・";
  margin-right: 4px;
}
.c-circle13 {
  font-size: 12px;
  text-indent: -1em;
  padding-left: 1em;
  color: #242527;
  display: block;
  letter-spacing: -0.02em;
}
.c-circle13::before {
  content: "・";
  margin-right: 4px;
}
.c-circle14 {
  font-size: 12px;
  text-indent: -1.3em;
  padding-left: 1em;
  display: block;
  letter-spacing: -0.02em;
}
.c-circle14::before {
  content: "・";
  margin-right: 4px;
}
.p-store__shopText {
  font-size: 16px;
}
.indent {
  text-indent: -1.2rem;
}
.u-mlg {
  padding-left: 1.5em;
  display: block;
}
.u-soon {
  margin-left: 0.3em;
}
.u-ml20 {
  margin-left: 2.6666666667vw;
}
@media (min-width: 768px) {
  .u-ml20 {
    margin-left: 13px;
  }
}
.u-mt10 {
  margin-top: 10px;
}
.u-mt20 {
  margin-top: 5.3333333333vw;
}
@media (min-width: 768px) {
  .u-mt20 {
    margin-top: 27px;
  }
}
.u-mt0 {
  margin-top: 0px;
}
.u-mt4 {
  margin-top: 1.0666666667vw;
}
@media (min-width: 768px) {
  .u-mt4 {
    margin-top: 5px;
  }
}
.u-mt20 {
  margin-top: 5.3333333333vw;
}
@media (min-width: 768px) {
  .u-mt20 {
    margin-top: 27px;
  }
}
.u-mt24 {
  margin-top: 6.4vw;
}
@media (min-width: 768px) {
  .u-mt24 {
    margin-top: 24px;
  }
}
.u-ml8 {
  margin-left: 2.1333333333vw;
}
@media (min-width: 768px) {
  .u-ml8 {
    margin-left: 11px;
  }
}
@media (max-width: 370px) {
  .u-ml8 {
    margin-left: 0;
  }
}
.u-tleft {
  text-align: left;
}
.u-fz10 {
  font-size: 2.6666666667vw;
}
@media (min-width: 768px) {
  .u-fz10 {
    font-size: 13px;
  }
}
@media (max-width: 370px) {
  .u-fz10 {
    font-size: 8px;
  }
}
.u-fz12Fixed{
  font-size: 12px;
}
.u-fz12 {
  font-size: 3.2vw;
}
@media (min-width: 768px) {
  .u-fz12 {
    font-size: 16px;
  }
}
.u-fz13 {
  font-size: 13px;
}
@media (max-width: 767px) {
  .u-fz13 {
    font-size: 12px;
  }
}
.otherCampaignSlider {
  width: 300px;
}
@media screen and (min-width: 768px) {
  .otherCampaignSlider {
    width: 728px;
  }
}
.otherCampaignSlider-pagination {
  text-align: center;
}
.otherCampaignSlider-pagination .swiper-pagination-bullet {
  height: 3px;
  width: 20px;
  background-color: var(--green);
  margin: 0 5px;
  border-radius: 0;
  opacity: 0.3;
}
.otherCampaignSlider-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.swiper-slide img {
  vertical-align: bottom;
  max-width: 100%;
}
.swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.font-bold {
  font-weight: bold;
}
@media screen and (min-width: 469px) {
  .font-bold {
    font-size: 16px;
  }
}
.col_Black {
  color: #5E5E5E;
}
.slash {
  position: relative;
  display: inline-block;
  padding: 0 30px;
  margin-bottom: 10px;
  font-size: 16px;
  text-align: center;
}
.pc {
  width: 100%;
}
.img-300 {
  padding-top: 16px;
}
@media screen and (max-width: 767px) {
  .img-300 {
    max-width: 300px;
    margin-top: 0;
    display: block;
  }
}
.s-hidden {
  overflow-y: hidden !important;
  ;
}
.c-alist7 {
  font-size: 12px;
  margin-top: 16px;
  text-indent: -2.4em;
  padding-left: 2.4em;
  color: #5E5E5E;
}
.c-alist7::before {
  content: "※7";
  margin-right: 4px;
}
.c-alist8 {
  font-size: 12px;
  margin-top: 16px;
  text-indent: -2.4em;
  padding-left: 2.4em;
  color: #5E5E5E;
}
.c-alist8::before {
  content: "※8";
  margin-right: 4px;
}
.link_decor {
  text-decoration: underline;
}
.u-ml20 {
  margin-left: 20px;
}
.u-tInit {
  text-indent: initial;
}
.goldfree-link {
    position: absolute;
    left: 3px;
    top: 240px;
    width: 170px;
}
@media (max-width: 767px) {
  .goldfree-link{
    left: 18px;
    top: 250px;
    width: 150px;
  }
}
@media (max-width: 469px) {
  .goldfree-link {
    left: 5px;
    top: 236px;
    width: 37.5vw;
  }
}
.paypay_description{
  font-size: 16px;
}
.paypay_logo img {
    max-width: 180px;
    margin: auto;
    display: block;
}
.subscribption_image img,
.mobile_image img {
	height: 200px;
    width: 100%;
    object-fit: contain;
    background: #fff;
    display: block;
}
@media (max-width: 767px) {
  .fnb_cp {
  text-align: center;
  }
}
.fnb__campaign_other {
  display: grid;
  gap: 40px;
}
.fnb__button--nl {
  background: var(--green-gra, linear-gradient(90deg, #197A6E 0%, #8AA397 100%));
  box-shadow: 0 3px 0 0 #12584F;
}
.fnb__button--gold {
  background: var(--gold-gra, linear-gradient(90deg, #C8A901 0%, #FFECB2 100%));
  box-shadow: 0 3px 0 0 #726005;
}
.fnb__button--nl,
.fnb__button--gold {
    color:#fff;
    font-size: 1em;
}
@media (max-width: 768px) {
  .fnb__button--nl,
  .fnb__button--nl span,
  .fnb__button--gold,
  .fnb__button--gold span,
  .fnb__button--outline_nl,
  .fnb__button--outline_gold {
    font-size: 14px !important;
  }
}
.p-modal__cardbodySelect,
.p-modal__cardbodyNG,
.p-modal__cardbodyNG02,
.p-modal__cardbodyNG03 {
  background: #fff;
  width: 90%;
}
.p-modal__applicationSelect,
.p-modal__applicationNL,
.p-modal__applicationNG,
.p-modal__applicationNG02,
.p-modal__applicationNG03 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  height: 100%;
  width: 100%;
}
.fnb__sokuji_button{
  font-size: 14px;
  height: 56px;
}
.fnb__sokuji_button::after {
  border-left: 10px solid var(--white);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
.c-hover:hover {
  opacity: 0.5;
  cursor: pointer;
}