@charset "UTF-8";

/*========================================
common
========================================*/
.bg-yellow {
  background-color: #FFE678;
}

.bg-light-yellow {
  background-color: #FFF9D5;
}

.br960PC {
  display: none;
}

@media screen and (min-width: 768px) and (max-width:960px) {
  .br960PC {
    display: block;
  }

}

.common-inner {
  padding: 0 15px;
}


/* ========================
header
======================== */
.header {
  background-color: #ffffff;
  border-bottom: #002896 2px solid;
}

.header__inner {
  position: relative;
  margin: 0 auto;
  width: 91.4666666667%;
  height: 58px;
}

.header__logo {
  position: absolute;
}

.header__logo:nth-child(1) {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.header__logo:nth-child(2) {
  top: 50%;
  left: 50%;
  transform: translate(-50%,
      -50%);
}

.header__logo:nth-child(1) .header__image {
  width: auto;
  height: 40px;
}

.header__logo:nth-child(2) .header__image {
  width: 148px;
  height: auto;
}

/* SP Max374px */
@media (max-width: 374px) {
  .header__logo:nth-child(1) .header__image {
    width: auto;
    height: 35px;
  }

  .header__logo:nth-child(2) .header__image {
    width: 128px;
    height: auto;
  }
}

/* PC */
@media (min-width: 768px) {
  .header__logo:nth-child(1) .header__image {
    width: auto;
    height: 24px;
  }

  .header__logo:nth-child(2) .header__image {
    width: 280px;
    height: auto;
  }
}

/* PC Min1024px */
@media (min-width: 1024px) {
  .header__logo:nth-child(1) .header__image {
    width: auto;
    height: 32px;
  }

  .header__logo:nth-child(2) .header__image {
    width: 374px;
    height: auto;
  }
}

/*
========================================
mv
========================================
*/

@media (min-width: 768px) {
  .mv {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: end;
    height: 315px;
    background-image: url(../img/mv/mv_bg_pc.png);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    overflow: hidden;
  }

  .mv__titleH1 {
    overflow: hidden;
  }

  .mv__picture {
    display: grid;
    max-width: 910px;
    height: 315px;
  }
}

/* ========================
intro
======================== */
.intro {
  padding: 40px 15px 0;
  text-align: center;
}

.intro_title {
  position: relative;
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  color: #BF0000;
}

.intro_title::before,
.intro_title::after {
  position: absolute;
  content: '';
  bottom: 5px;
  left: 24px;
  width: 15px;
  height: 54px;
  border-left: 3px solid #BF0000;
  transform: rotate(-20deg);

}

.intro_title::after {
  bottom: 1px;
  left: auto;
  right: 15px;
  transform: rotate(20deg);

}

.intro_text {
  font-size: 14px;
  text-align: center;


  &+.intro_text {
    margin-top: 16px;
  }
}

@media screen and (min-width: 768px) {
  .intro_title {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 28px;
  }

  .intro_title::before,
  .intro_title::after {
    left: -10px;
    height: 31px;
    border-left: 2px solid #BF0000;
  }

  .intro_title::after {
    left: auto;
    right: -26px;
  }

  .intro_text {
    font-size: 16px;
  }

}

@media screen and (max-width: 767px) {
  .intro_title {
    margin-inline: auto;
    max-width: 400px;
  }
}

/*
========================================
nav
========================================
*/
.nav {
  padding: 16px 15px 24px;
}

.nav__list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  margin: 0 auto;
  padding: 8px 0;
  max-width: 600px;
}

.nav__listItem {
  position: relative;
  display: grid;
  place-items: center;
  width: calc((100% - 16px) / 3);
  text-align: center;
  z-index: 1;
  background-color: #002896;
  border-radius: 5px;
  box-shadow: 2px 3px 0px 0px #001d6d;

}

.nav__listItem:nth-child(4),
.nav__listItem:nth-child(5) {
  width: calc((100% - 8px) / 2);
}

.nav__link {
  display: block;
  margin: 0;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  width: 100%;
  letter-spacing: 0.02em;
  line-height: 1.3;
  text-decoration: none;
}

.nav__link::after {
  position: absolute;
  content: "";
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 11px;
  height: 11px;
  background: url('data:image/svg+xml,<svg width="9" height="6" viewBox="0 0 9 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.5 0.500001L4.50026 4.5L8.5 0.5" stroke="white" stroke-linecap="round"/></svg>') no-repeat center/contain;
}

.nav__link:hover {
  text-decoration: none;
}

.nav__text {
  margin-top: 4px;
}

.nav__linkInner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 9px;
  padding-bottom: 21px;
  border-radius: 5px;
}

.is-show {
  display: block;
}

@media (max-width: 374px) {


  .nav__link {
    font-size: 11px;
    letter-spacing: 0.2px;
  }

  .nav__listItem::after {
    right: 11px;
  }
}

/* PC */
@media (min-width: 768px) {
  .nav {
    padding-top: 27px;
  }

  .nav__nav {
    max-width: 100%;
    margin: 0 auto;
  }

  .nav__list {
    padding: 6px 0 14px;
    max-width: 960px;
  }


  .nav__listItem {
    font-size: 14px;
  }

  .nav__listItem::after {
    bottom: 2px;
    width: 15px;
    height: 15px;
  }

  .nav__link {
    padding: 2px 6px 0;
    font-size: 16px;
  }

  .nav__linkInner {
    padding-bottom: 0;
    height: 56px;
  }

  .nav__listItem:nth-child(1) .nav__linkInner::after,
  .nav__listItem:nth-child(2) .nav__linkInner::after {
    content: none;
  }

  .nav__text {
    margin-top: -18px;
  }
}

/*
========================================
animation
========================================
*/
@keyframes slide_in {
  0% {
    transform: translateY(-1000px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.slide_in {
  animation: slide_in 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes slide_out {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(-1000px);
    opacity: 0;
  }
}

.slide_out {
  animation: slide_out 0.8s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

/* ========================
card
======================== */
.card {
  padding: 40px 15px;

  &+.card {
    border-top: 2px solid #BF0000;
  }
}

.card__inner {
  margin: 0 auto;
  max-width: 796px;
}

.card__title {
  position: relative;
  margin-bottom: 19px;
  padding: 12px 10px;
  font-size: 19px;
  font-weight: 600;
  color: #002896;
  text-align: center;
  background-color: #FFF9D5;
}

.card__title::before {
  position: absolute;
  content: '';
  bottom: -8px;
  left: 3px;
  width: 48px;
  height: 48px;
  background: url(../img/recommend/icon_cardTop01.png) center center / contain no-repeat;
}

.card__title::after {
  position: absolute;
  content: '';
  bottom: -5px;
  right: 3px;
  width: 42px;
  height: 37px;
  background: url(../img/recommend/icon_cardTop02.png) center center / contain no-repeat;
}

.card_contentHead {
  margin-inline: auto;
  width: 191px;
}

.card_contentHeadSub {
  position: relative;
  padding-top: 8px;
  margin-inline: auto;
  color: #002896;
  text-align: center;
  width: 163px;
  font-size: 16px;
  font-weight: 600;

  .big {
    font-size: 28px;
  }
}

.card_contentHeadSub::before {
  position: absolute;
  content: '';
  top: 40%;
  transform: translateY(-50%);
  left: -85px;
  width: 70px;
  height: 88px;
  background: url(../img/recommend/icon_food01.png) center center / contain no-repeat;
}

.card_contentHeadSub::after {
  position: absolute;
  content: '';
  top: 40%;
  transform: translateY(-50%);
  right: -85px;
  width: 70px;
  height: 88px;
  background: url(../img/recommend/icon_food02.png) center center / contain no-repeat;
}

#daily .card_contentHeadSub::before {
  left: -76px;
  width: 60px;
  height: 82px;
  background: url(../img/recommend/icon_daily01.png) center center / contain no-repeat;

}

#daily .card_contentHeadSub::after {
  right: -70px;
  width: 52px;
  height: 81px;
  background: url(../img/recommend/icon_daily02.png) center center / contain no-repeat;
}

#cosme .card_contentHeadSub::before {
  left: -57px;
  width: 49px;
  height: 82px;
  background: url(../img/recommend/icon_cosme01.png) center center / contain no-repeat;

}

#cosme .card_contentHeadSub::after {
  right: -64px;
  width: 56px;
  height: 81px;
  background: url(../img/recommend/icon_cosme02.png) center center / contain no-repeat;
}

.card_contentLead {
  margin-top: 8px;
  color: #002896;
  text-align: center;

}

.card__list {
  display: grid;
  grid-template-columns: repeat(3,
      1fr);
  gap: 12px;
  margin: 16px auto 24px;
}

.card__listItem {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid #ebebeb;
  font-size: 14px;
  line-height: 130%;
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: 2px 2px 0px 0px #002896;

}

.card__listLink {
  position: relative;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: 1/-1;
  padding: 8px 3px 10px 3px;
  width: 100%;
  height: 100%;
  text-decoration: none;
  transition: .3s ease;
}

.card__listLink:hover {
  opacity: 0.8;
  transition: .3s ease;
}

.card__listLink::after {
  position: absolute;
  content: "";
  right: 2px;
  bottom: 2px;
  width: 9px;
  height: 9px;
  background: url('data:image/svg+xml,<svg width="9" height="9" viewBox="0 0 9 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.88078 0.294996C7.51075 -0.334969 8.58789 0.1112 8.58789 1.0021V7.58789C8.58789 8.14018 8.14018 8.58789 7.58789 8.58789H1.0021C0.111199 8.58789 -0.334967 7.51075 0.294997 6.88078L6.88078 0.294996Z" fill="%23002896"/></svg>') no-repeat center center;

}

.card__image {
  grid-row: 1;
}

.card__text {
  display: grid;
  place-items: center;
  margin-top: 8px;
  font-size: 12px;
  color: #002896;
  font-weight: 600;
  text-align: center;
  grid-row: 2;
}

@media screen and (min-width: 768px) {
  .card {
    padding: 36px 0;
  }

  .card__title {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .card__title::before {
    bottom: -3px;
    left: 23%;
    width: 55px;
    height: 55px;
  }

  .card__title::after {
    bottom: 4px;
    right: 21%;
    width: 52px;
    height: 38px;
  }

  .card_contentHead {
    width: 242px;
  }

  .card_contentHeadSub {
    font-size: 18px;
    width: 220px;
  }

  .card_contentLead {
    font-size: 16px;
  }

  .card__list {
    margin-bottom: 36px;
    gap: 28px 24px;
  }

  .card__listItem {
    font-size: 16px;
    box-shadow: 4px 4px 0px 0px #002896;
    border-radius: 8px;

  }

  .card__listLink {
    padding: 12px 12px 20px 12px;

    img {
      max-width: 300px;
    }
  }

  .card__listLink::after {
    right: 7px;
    bottom: 7px;
    width: 15px;
    height: 15px;
    background-size: 15px 15px;
  }

  .card__text {
    margin-top: 14px;
    font-size: 18px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .card {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 360px) {
  .card__text {
    font-size: 11px;
  }
}

/* ========================
rkm-button
======================== */
.rkm-button {
  margin: 16px auto 0;
  width: calc(283 / 345 * 100%);
  max-width: 468px;
  background-color: #002896;
  border-radius: 100vh;
  font-weight: 600;
  font-size: 14px;
}

.tips .rkm-button {
  background-color: #BF0000;
}

.rkm-button__link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 17px 24px;
  width: 100%;
  height: 100%;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  transition: .3s ease;
}

.rkm-button__link:hover {
  text-decoration: none;
  opacity: .8;
  transition: .3s ease;
}

.rkm-button__link::after {
  position: absolute;
  content: '';
  top: 50%;
  transform: translateY(-50%);
  right: 13px;
  width: 10px;
  height: 10px;
  background: url('data:image/svg+xml,<svg width="6" height="10" viewBox="0 0 6 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.750001 8.75L4.75 4.74974L0.75 0.750001" stroke="white" stroke-width="1.5" stroke-linecap="round"/></svg>') center center / contain no-repeat;
}

@media (min-width: 768px) {
  .rkm-button {
    width: 516px;
    max-width: 516px;
    font-size: 18px;
  }

  .rkm-button__link {
    padding: 26px 36px;
  }

  .rkm-button__link::after {
    right: 19px;
    width: 15px;
    height: 15px;
  }
}


/* ========================
search
======================== */
.search {
  padding-top: 30px;
  padding-bottom: 10px;
}

.search__inner {
  padding: 0 16px;
}

.inputSearch {
  margin: 0 auto 18px;
}

.inputHead {
  margin-bottom: 16px;
  font-size: 20px;
  color: #002896;
  font-weight: 600;
  text-align: center;
}

.inputSearch__inner {
  margin-top: 10px;
  height: 100%;
  max-width: 960px;
  text-align: center;
}

.inputSearch__form {
  display: flex;
  margin: 0 auto;
  height: 48px;
  border: 1px solid #002896;
  background-color: #fff;
}

.inputSearch__input {
  width: 82%;
  height: 100%;
  padding: 0 12px 1px;
  padding: 8px;
  text-align: left;
}

.inputSearch__input:focus {
  outline: none;
}

.inputSearch__btn {
  position: relative;
  display: block;
  width: 48px;
  height: 100%;
  background-color: #002896;
}

.inputSearch__btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25px;
  height: 25px;
  transform: translate(-50%, -50%);
  background-image: url(../img/common/search_icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.inputSearch__errText {
  display: none;
  font-size: 16px;
  color: #ff0000;
  text-align: center;
  padding-top: 5px;
}

.search__recommend {
  margin: 0 auto 24px;
  -webkit-overflow-scrolling: touch;
}

.search__recommend::after {
  padding-right: 16px;
}

.search__recommendList {
  display: flex;
  gap: 8px;
  margin-right: -16px;
  padding: 0 0 8px 0;
  -webkit-overflow-scrolling: touch;
  /* overflow-x: auto; */
  height: 55px;
}

/* .search__recommendList::-webkit-scrollbar {
  height: 4px;
}

.search__recommendList::-webkit-scrollbar-track {
  background: #d1d1d1;
  border-radius: 4px;
}

.search__recommendList::-webkit-scrollbar-thumb {
  background: #053ace;
  border-radius: 4px;
} */


.search__recommendItemLink {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 12px;
  border: 1px solid #002896;
  font-size: 12px;
  border-radius: 10px;
  background: #fff;
  color: inherit;
  background-color: #F3F6FF;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
}

/* PC */
@media (min-width: 768px) {
  .search {
    padding-top: 42px;
  }

  .inputHead {
    font-size: 32px;
  }

  .inputSearch {
    margin-bottom: 24px;
  }

  .inputSearch__inner {
    max-width: 796px;
    margin: 22px auto 8px;
  }

  .inputSearch__form {
    margin: 0 auto;
    height: 55px;
  }

  .inputSearch__input {
    width: 93%;
    height: 100%;
    padding: 0 12px 1px;
  }

  .inputSearch__btn {
    width: 56px;
  }

  .inputSearch__errText {
    font-size: 20px;
  }

  .search__recommend {
    overflow: visible;
  }

  .search__recommendList {
    justify-content: center;
    overflow: visible;
  }

  .search__recommendItemLink {
    padding: 9px 12px;
    overflow: visible;
    font-size: 16px;
    border-radius: 4px;

  }
}

@media screen and (max-width: 375px) {

  /* .search__recommendList {
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  } */
  .search__recommendItemLink {
    padding: 10px;
  }
}

/* ========================
sp
======================== */
@media screen and (max-width: 767px) {
  .search__inner {
    margin-inline: auto;
    max-width: 600px;
  }

  .inputSearch__input {
    width: calc(100% - 48px);
  }
}

/* ========================
tips
======================== */
.tips {
  padding-top: 40px;
  padding-bottom: 48px;

  .note {
    margin-top: 12px;
    font-size: 12px;
    text-align: center;

  }
}

.tipsHead {
  margin-bottom: 12px;
  color: #BF0000;
  font-size: 24px;
  font-weight: 600;
  text-align: center;

  .small {
    display: inline-block;
    margin-bottom: 4px;
    font-size: 18px;
  }
}

.tips_listItem {
  &+.tips_listItem {
    position: relative;
    margin-top: 100px;
  }
}

.tips_listItem+.tips_listItem::before {
  position: absolute;
  content: '';
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 2px;
  background: #BF0000;
}

.tipsHead_sub {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.tips_text {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .tipsHead {
    font-size: 28px;
  }

  .tipsHead_sub {
    margin-bottom: 0;
    font-size: 24px;
  }

  .tips_text {
    font-size: 16px;
  }

}

@media screen and (max-width: 767px) {
  .tips_text {
    margin-inline: auto;
    max-width: 390px;
  }

  .tips_content {
    margin-inline: auto;
    max-width: 500px;
  }
}

@media screen and (max-width: 360px) {
  .tipsHead {
    font-size: 20px;
  }
}


/* ========================
toggle
======================== */
.toggle__list {
  margin: 24px auto 0;
  max-width: 796px;
}

.toggle__listItem {
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #BF0000;

}

.toggle__listItemTitle {
  position: relative;
  font-weight: 600;

}

.toggle__listItemTitleInner {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background-color: #fff;
  border-radius: 8px;


}

.toggle__listItemTitleText {
  margin-inline: auto;
  font-size: 18px;
  font-weight: 600;
  text-align: center;

  .lead {
    display: inline-block;
    margin-bottom: 8px;
    text-align: center;
    padding: 4px 13px 4px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 16px;
    color: #fff;
    background-color: #BF0000;
  }
}

.toggle__listItemText {
  position: relative;
  font-size: 14px;
}

.toggle__orderListItem {
  text-align: center;

  &+.toggle__orderListItem {
    margin-top: 12px;
  }
}

.toggle__orderListItem:last-child {
  margin-bottom: 24px;
}

.toggle__orderListItemHead {
  position: relative;
  display: inline-block;
  margin-top: 8px;
  margin-bottom: 12px;
  padding-left: 1rem;
  font-weight: 600;
  text-align: center;

  .number {
    position: absolute;
    top: 50%;
    left: -14px;
    transform: translateY(-50%);
    font-weight: 600;
    color: #fff;
    width: 24px;
    height: 24px;
    line-height: 1.8;
    background-color: #BF0000;
    border-radius: 100vh;

    +p {
      text-align: left;
    }
  }

}

.toggle__orderListItemImage {
  margin-inline: auto;
  max-width: 182px;
}

@media screen and (min-width: 768px) {
  .toggle__listItemTitleText {
    font-size: 20px;

    .lead {
      font-size: 15px;
    }
  }

  .toggle__orderListItemHead {
    display: grid;
    place-items: center;
    padding-left: 1rem;

    .number {
      left: -30px;
    }

    .wrapper {
      display: inline-block;
      position: relative;

    }
  }

  .toggle__orderList {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .toggle__orderList.--2col {
    grid-template-columns: repeat(2, 1fr);
    margin-inline: auto;
    max-width: 470px;
  }

  .toggle__orderListItemImage {
    max-width: 185px;
  }

  .toggle__orderListItem {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;

    +.toggle__orderListItem {
      margin-top: 0;
    }
  }

}

/* ========================
toggle
======================== */
.js-toggle {
  cursor: pointer;
}

.js-toggle-content {
  display: none;
}

.js-toggle-content.benefits__content {
  display: block;
}

.js-toggle-button {
  position: absolute;
  right: 20px;
  margin: 0 auto;
  padding: 0;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  background-color: #BF0000;
}

.benefits__headline02 .js-toggle-button {
  position: absolute;
  right: 20px;
}

.js-toggle-button::before {
  content: '';
  position: absolute;
  display: inline-block;
  right: 7px;
  top: 52%;
  transform: translateY(-50%);
  width: 17px;
  height: 10px;
  background: url('data:image/svg+xml,<svg width="19" height="11" viewBox="0 0 19 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M17.5345 1.62735L16.6219 0.708252L9.12029 8.20987L1.61868 0.708252L0.706055 1.62735L9.12029 10.0416L17.5345 1.62735Z" fill="white" stroke="white"/></svg>')center center / contain no-repeat;
  transition: 0.5s ease-in-out;
}

.js-toggle.open .js-toggle-button::before {
  transform: translateY(-50%) rotate(180deg);
  transition: 0.5s ease-in-out;
  top: 47%;

}

.js-toggle.open .toggle__listItemTitleInner {
  /* border-bottom: none;
  border-radius: 8px 8px 0 0;
  transition: 0.5s ease-in-out; */
}


/* PC */
@media (min-width: 768px) {
  .js-toggle-content {
    padding-left: calc(60 / 796*100%);
    padding-right: calc(60 / 796*100%);
  }

  .js-toggle-button {
    /* width: 25px;
    height: 25px; */
  }

  .js-toggle-button::before,
  .js-toggle-button::after {
    /* right: 5px;
    width: 15px;
    height: 3px;
    border-radius: 2px; */
  }
}

/*
========================================
banner
========================================
*/
.banner {
  padding: 40px 0;
}

.banner__headline {
  text-align: center;
  color: #002896;
  font-weight: 600;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.01em;
}

.banner__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  -moz-column-gap: 3.2%;
  column-gap: 3.2%;
  width: 91.4666666667%;
  max-width: 600px;
  margin: 33px auto 0;
}

.banner__listItem {
  width: 48.4%;
}

.banner__listItem:nth-child(n+3) {
  margin-top: 20px;
}

@media (min-width: 768px) {

  .banner__headline {
    font-size: 32px;
    line-height: 2em;
  }

  .banner__list {
    max-width: 872px;
    margin: 35px auto 0;
  }

  .banner__listItem {
    width: 31.193%;
  }

  .banner__listItem:nth-child(n+3) {
    margin-top: 0;
  }

  .banner__listItem:nth-child(n+4) {
    margin-top: 24px;
  }
}

/* ========================
application
======================== */
.application__box {
  max-width: 600px;
  margin: 0 auto;
  padding: 12px 0;
  background-color: #ffffff;
  border-radius: 10px;
  border: 2px solid #002896;
}

.applicationInner {
  margin: 0 auto;
  width: calc(360 / 390 * 100%);
}

.application__boxInner {
  display: grid;
  grid-template-columns: 56px 1fr;
  grid-template-rows: auto auto auto;
  grid-template-areas:
    "application__image-rakuma application__title"
    "application__linkBox application__linkBox";
  margin: 0 auto;
  column-gap: 12px;
  width: 240px;
}

.application__image-rakuma {
  grid-area: application__image-rakuma;
}

.application__title {
  grid-area: application__title;
}

.application__linkBox {
  grid-area: application__linkBox;
}

.application__title {
  text-align: center;
  color: #002896;
  font-weight: 600;
  font-size: 20px;
}

.application__linkBox {
  display: flex !important;
  margin-top: 12px;
  column-gap: 12px;
}

@media (min-width: 768px) {
  .application__box {
    max-width: 796px;
    margin: 0 auto;
    padding: 24px 0;
    background-color: #ffffff;
    border-radius: 6px;
    border: 2px solid #002896;
  }

  .applicationInner {
    margin: 36px auto;
  }

  .application__boxInner {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "application__title application__title"
      "application__image-rakuma application__image-qr"
      "rkm-button rkm-button";
    margin: 0 auto;
    column-gap: 24px;
    width: 632px;
  }

  .application__image-rakuma {
    grid-area: application__image-rakuma;
  }

  .application__title {
    grid-area: application__title;
  }

  .application__linkBox {
    grid-area: application__linkBox;
  }

  .application__image-qr {
    grid-area: application__image-qr;
  }

  .rkm-button {
    grid-area: rkm-button;
  }

  .application__title {
    font-size: 24px;
  }

  .application__image-rakuma {
    margin-top: 24px;
    margin-left: auto;
    width: 100px;
  }

  .application__image-qr {
    margin-top: 24px;
    width: 100px;
  }

  .application__linkBox {
    display: flex;
    margin-top: 16px;
    column-gap: 8px;
  }

  .application__linkBox.onlySP {
    display: none !important;
  }

  .application .rkm-button {
    font-size: 28px;
  }
}

.application .rkm-button {
  margin: 0 auto;
  width: 100%;
  max-width: 360px;
  height: 60px;
  background-color: #ec0606;
  border-radius: 100vh;
  font-weight: 600;
  font-size: 20px;
}

.application .rkm-button__link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 24px;
  width: 100%;
  height: 100%;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  transition: .3s ease;
}

.application .rkm-button__link:hover {
  text-decoration: none;
  opacity: .8;
  transition: .3s ease;
}

.application .rkm-button__link::after {
  content: none;
}

@media (min-width: 768px) {
  .application .rkm-button {
    margin-top: 24px;
    width: 468px;
    max-width: 632px;
    height: 80px;
    font-size: 28px;
  }

  .application.rkm-button__link {
    padding: 0 36px;
  }
}

/* ========================
sns
======================== */
.sns__inner {
  margin: 36px auto;
  text-align: center;
  width: calc(360 / 390 * 100%);
  max-width: 600px;
  padding: 12px 0;
  background-color: #ffffff;
  border-radius: 10px;
  border: 2px solid #002896;
}

.sns__head {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 600;
  color: #002896;
}

.sns__link {
  display: block;
  transition: 0.3s ease;
}

.sns__link:hover {
  opacity: 0.7;
  transition: 0.3s ease;
}

.sns__image {
  width: 56px;
}

.sns__imageWrapper {
  display: grid;
  grid-template-columns: repeat(2,
      1fr);
  gap: 32px;
  margin: 0 auto;
  max-width: 145px;
}

@media screen and (min-width: 768px) {
  .sns {
    margin-bottom: 45px;
  }

  .sns__inner {
    margin: 45px auto;
    padding: 24px 0;
    border-radius: 6px;
    max-width: 796px;
  }

  .sns__head {
    font-size: 24px;
  }

  .sns__image {
    width: 101px;
  }

  .sns__imageWrapper {
    max-width: 242px;
  }
}



/*
========================================
footer
========================================
*/
.footer {
  padding: 45px 0;
  text-align: center;

  html.app & {
    pointer-events: none;
  }
}

.footer__link {
  display: inline-block;
}

.footer__image {
  width: auto;
  height: 29px;
  margin: 0 auto;
}

.footer__copyright {
  color: #999999;
  font-size: 14px;
  text-align: center;
  margin-top: 8px;
}


/*
========================================
floatingNav
========================================
*/
.floatingNav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #002896;
  /* box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.4); */
  transform: translateY(-1000px);
  pointer-events: none;
  box-shadow: 0 4px 10px 1px rgba(0, 0, 0, 0.10);

}

.floatingNav.slide_in {
  pointer-events: auto;
}

.floatingNav__nav {
  max-width: 600px;
  margin: 0 auto;
}

.floatingNav__list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1px;
  background-color: #fff;
}

.floatingNav__listItem {
  position: relative;
  width: calc((100% - 2px) / 3);
  text-align: center;
  z-index: 1;
  background-color: #002896;
}

.floatingNav__listItem:nth-child(4),
.floatingNav__listItem:nth-child(5) {
  width: calc((100% - 1px) / 2);

}


.floatingNav__link {
  position: relative;
  display: block;
  margin: 0;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.3;
  text-decoration: none;
}

.floatingNav__link::after {
  position: absolute;
  content: "";
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: url('data:image/svg+xml,<svg width="9" height="6" viewBox="0 0 9 6" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.5 0.500001L4.50026 4.5L8.5 0.5" stroke="white" stroke-linecap="round"/></svg>') no-repeat center/contain;
}

.floatingNav__link:hover {
  text-decoration: none;
}

.floatingNav__linkInner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 55px;
}

.floatingNav__text {
  margin-top: -11px;
}

@media (max-width: 374px) {
  .floatingNav__link {
    font-size: 11px;
  }
}

@media (min-width: 768px) {
  .floatingNav {
    width: 100%;
  }

  .floatingNav__nav {
    max-width: 842px;
    margin: 0 auto;
  }

  .floatingNav__list {
    margin: 0 auto;
    max-width: 1600px;
    background-color: #002896;
  }

  .floatingNav__list::before {
    content: none;
  }

  .floatingNav__listItem {
    position: relative;
  }

  .floatingNav__listItem:not(:first-child)::before {
    position: absolute;
    content: '';
    top: 17px;
    left: -1px;
    width: 1px;
    height: 44px;
    background: #fff;
  }

  .floatingNav__listItem,
  .floatingNav__listItem:nth-child(4),
  .floatingNav__listItem:nth-child(5) {
    width: calc((100% - 4px) / 5)
  }

  .floatingNav__listItem::after {
    bottom: 8px;
    width: 8px;
    height: 8px;
  }

  .floatingNav__listItem::after {
    bottom: 12px;
    width: 14px;
    height: 14px;
  }

  .floatingNav__link {
    font-size: 16px;
  }

  .floatingNav__linkInner {
    padding-bottom: 10px;
    height: 78px;
  }

  .floatingNav__text {
    margin-top: -5px;
  }
}

/* animation */
@keyframes slide_in {
  0% {
    transform: translateY(-1000px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.slide_in {
  animation: slide_in 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes slide_out {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(-1000px);
    opacity: 0;
  }
}

.slide_out {
  animation: slide_out 0.8s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

/*
========================================
loading
========================================
*/
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  transition: all 0.5s;
  background-color: #fff;
  z-index: 9999;
}

#loading.loaded {
  opacity: 0;
  visibility: hidden;
}