@charset "UTF-8";

/*
========================================
common
========================================
*/
:root {
  --black: #000000;
  --white: #ffffff;
  --mainBg: #F4ECE7;
  --main-color: #FF6D00;
  --secondary-color: #FF9E6E;
  --main-shadow-color: #D88460;
  --sub-color: #FFDBBF;
  --main-textColor: #4C2723;
  --navy: #2736A3;
  --shadow: rgba(0, 0, 0, 0.1);
}

/* ========================
Timer
======================== */
.js-period-before,
.js-period-after,
.js-period-campaign10per,
.js-period-campaign7per {
  display: none;
}

body.js-before .js-period-before,
body.js-after .js-period-after,
body.js-campaign-campaign10per .js-period-campaign10per,
body.js-campaign-campaign7per .js-period-campaign7per {
  display: block;
}

/*
========================================
common (a Tag Animation)
========================================
*/
.mvHashtag a:active,
.campaign a:active,
.modal a:active,
.banner a:active,
.content a:active,
.floatingNav a:active {
  opacity: 0.7;
  transition: 0.3s;
}

/* PC */
@media (min-width: 768px) {

  .mvHashtag a:hover,
  .campaign a:hover,
  .modal a:hover,
  .banner a:hover,
  .content a:hover,
  .floatingNav a:hover {
    opacity: 0.7;
    transition: 0.3s;
  }
}

/*
========================================
JS | scroll top ※rakuma.css orverride
========================================
*/
/* SP */
/*
========================================
header
========================================
*/
/* SP */
.header {
  width: 100%;
  background-color: #fff;
  border-bottom: #002896 2px solid;
  margin: 0 auto;
}

.header__inner {
  width: 100%;
  height: 58px;
  padding: 9px 0;
  text-align: center;
}

.header__image {
  width: auto;
  height: 40px;
  margin: 0 auto;
}

/* PC */
@media (min-width: 768px) {
  .header__inner {
    padding: 13px;
  }

  .header__logo {
    display: block;
    max-width: 960px;
    margin: 0 auto;
    text-align: left;
  }

  .header__image {
    margin: 0;
    width: auto;
    height: 32px;
  }
}

/*
========================================
campaign
========================================
*/
.main {
  padding-bottom: 0px;
}

/* PC */
@media (min-width: 768px) {
  .main {
    padding-bottom: 0px;
  }
}

/*
========================================
mainVisual
========================================
*/
/* SP */
.mainVisual {
  margin: 0 auto;
}

/* PC */
@media (min-width: 768px) {
  .mainVisual__inner {
    display: flex;
    justify-content: center;
    background-color: var(--white);
  }

  .mainVisual__imagePC {
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    height: 315px;
    z-index: 1;
  }
}

@media screen and (max-width: 985px) {
  .mainVisual__imagePC {
    height: auto;
  }

  .mainVisual__inner {
    justify-content: flex-start;
  }
}

/*========================================
mvHashtag
========================================*/
.mvHashtag__box {
  background-color: var(--sub-color);
}

.mvHashtag__boxInner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 96.8%;
  margin: 0 auto;
  padding: 8px 0;
}

.mvHashtag__title {
  margin-right: 6px;
  width: 74px;
  color: var(--main-textColor);
  font-size: 12px;
  line-height: 1em;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.03em;
  position: relative;
}

.mvHashtag__title::after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: -6px;
  width: 17px;
  height: 16px;
  background-image: url(../img/mv/hashTitleDeco.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.mvHashtag__list {
  display: flex;
  -moz-column-gap: 6px;
  column-gap: 6px;
  position: relative;
  padding-right: 26px;
}

.mvHashtag__list::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0px;
  width: 24px;
  height: 24px;
  background-image: url(../img/mv/mv_icon_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.mvHashtag__listItem {
  background-color: var(--white);
  border-radius: 100vh;
  box-shadow: 0px 1px 0px var(--main-shadow-color);
}

.mvHashtag__link {
  display: block;
  padding: 6px 8px;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.02em;
  line-height: 1em;
  color: var(--main-textColor);
  white-space: nowrap;
}

.mvHashtag__link .text-large {
  font-size: 15px;
}

@media (max-width: 399px) {
  .mvHashtag__list.--noIcon {
    padding-right: 0px;
  }

  .mvHashtag__list.--noIcon::after {
    opacity: 0;
    pointer-events: none;
  }
}

@media (max-width: 374px) {
  .mvHashtag__list {
    -moz-column-gap: 4px;
    column-gap: 4px;
  }

  .mvHashtag__link {
    padding: 6px;
    font-size: 10px;
  }
}

@media (min-width: 768px) {
  .mvHashtag {
    position: relative;
    overflow: hidden;
  }

  .mvHashtag__boxInner {
    /* max-width: 720px; */
    padding: 12px 0;
    width: -moz-fit-content;
    width: fit-content;
  }

  .mvHashtag__boxInner::after {
    top: 11px;
    right: -56px;
    width: 34px;
    height: 34px;
  }

  .mvHashtag__title {
    width: auto;
    font-size: 18px;
    letter-spacing: 0.06em;
    margin-right: 24px;
  }

  .mvHashtag__title::after {
    top: -15px;
    left: -18px;
    width: 27px;
    height: 23px;
  }

  .mvHashtag__list {
    -moz-column-gap: 16px;
    column-gap: 16px;
    padding-right: 48px;
  }

  .mvHashtag__list::after {
    right: 0px;
    width: 36px;
    height: 36px;
  }

  .mvHashtag__link {
    padding: 8px 16px;
    font-size: 18px;
    line-height: 1em;
    letter-spacing: 0.01em;
  }

  .mvHashtag__link .text-large {
    font-size: 22px;
  }
}

/*
========================================
campaign
========================================
*/
.campaign {
  overflow: hidden;
}

.campaign__inner {
  padding: 36px 0 24px;
  margin: 0 auto;
  width: 91.4666666667%;
  text-align: center;
}

.campaign__headlineH2 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--black);
  text-align: left;
}

.campaign__headlineLink {
  display: block;
  position: relative;
}

.campaign__headlineLink::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-top: solid 1px var(--black);
  border-right: solid 1px var(--black);
  transform: rotate(45deg);
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.campaign__headlineLink::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid var(--black);
  border-radius: 22px;
  position: absolute;
  right: 0px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.campaign__box {
  position: relative;
  margin: 16px auto 0;
  margin-right: -10%;
  padding: 16px 16px 20px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0px 4px 10px 1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.swiperCampaign {
  padding-right: 2px;
}

.campaign .swiper-button-prev::after,
.campaign .swiper-button-next::after {
  content: "";
}

.campaing__btn {
  display: block;
  color: var(--white);
  font-size: 12px;
  line-height: 1.5em;
  text-align: center;
  margin: 20px auto 0;
  padding: 12px 0;
  width: 100%;
  font-size: 20px;
  font-weight: 600;
  border-radius: 33px;
  /* border: 1px solid var(--black); */
  background-color: var(--black);
  position: relative;
  font-weight: 600;
}

.campaing__btn::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-top: solid 2px var(--white);
  border-right: solid 2px var(--white);
  transform: rotate(45deg);
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
}

/* PC */
@media (min-width: 768px) {
  .campaign__inner {
    padding: 40px 0 32px;
    max-width: 900px;
  }

  .campaign__headlineH2 {
    font-size: 32px;
  }

  .campaign__box {
    max-width: 960px;
    margin: 31px auto 0;
    padding: 32px 16px 40px;
  }

  .swiperCampaign .swiper-slide-next+.swiper-slide+.swiper-slide::before {
    content: none;
  }

  .campaign .swiper-horizontal>.swiper-scrollbar {
    /* left: var(--swiper-scrollbar-sides-offset, 2%); */
    left: 16px;
    bottom: var(--swiper-scrollbar-bottom, 18px);
  }

  .campaign .swiper-scrollbar {
    margin-left: 0px;
    width: calc(100% - 32px);
  }

  .campaign .swiper-scrollbar.swiper-scrollbar-horizontal {
    /* left: var(--swiper-scrollbar-sides-offset, 2%); */
    left: 16px;
    bottom: var(--swiper-scrollbar-bottom, 18px);
  }

  .campaign__headlineLink::before {
    content: "";
    width: 14px;
    height: 14px;
    border-top: solid 2px var(--black);
    border-right: solid 2px var(--black);
    right: 18px;
  }

  .campaign__headlineLink::after {
    content: "";
    width: 44px;
    height: 44px;
    border: 2px solid var(--black);
    border-radius: 44px;
  }

  .campaing__btn {
    font-size: 28px;
    font-weight: 600;
    margin: 34px auto 0;
    padding: 19px 0;
    width: 468px;
    border-radius: 40px;
  }

  .campaing__btn::after {
    width: 10px;
    height: 10px;
    border-top: solid 2px var(--white);
    border-right: solid 2px var(--white);
    right: 24px;
  }
}

/*
========================================
nav
========================================
*/
.mainNav__inner {
  margin: 0 auto;
}

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

.mainNav__listItem {
  position: relative;
}

.mainNav__listItem:not(:nth-child(1))::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: #fff;
  z-index: 1;
}

.mainNav__link {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: var(--white);
  background-color: var(--main-textColor);
  position: relative;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 0 15px 0;
  min-height: 50.4px;
  text-align: center;
  box-shadow: 0px 4px 10px 1px var(--shadow);
  transition: 0.3s ease;
}

.mainNav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  margin: auto;
  width: 6px;
  height: 6px;
  box-sizing: border-box;
  border-bottom: 2px solid var(--white);
  border-right: 2px solid var(--white);
  transform: rotate(45deg);
  border-radius: 1px;
}

.mainNav__link:active {
  color: var(--main-textColor);
  background-color: var(--white);
  transition: 0.3s ease;
}

.mainNav__link:active::after {
  border-bottom: 1px solid var(--main-textColor);
  border-right: 1px solid var(--main-textColor);
}

/* PC */
@media (min-width: 768px) {
  .mainNav {
    margin: 0 auto;
    background: var(--main-textColor);
  }

  .mainNav__inner {
    margin-bottom: 0px;
    width: auto;
    max-width: 960px;
  }

  .mainNav__list {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: unset;
    gap: 1px;
    border-top: 1px solid var(--main-textColor);
    border-bottom: 1px solid var(--main-textColor);
    background: var(--white);
  }

  .mainNav__link {
    font-size: 14px;
    padding: 17px 0 33px;
    box-shadow: none;
    line-height: 130%;
    border: none;
    transition: 0.3s ease;
  }

  .mainNav__link::after {
    bottom: 18px;
    width: 8px;
    height: 8px;
    border-bottom: 1px solid var(--white);
    border-right: 1px solid var(--white);
  }

  .mainNav__link:hover {
    color: var(--main-textColor);
    background-color: var(--white);
    transition: 0.3s ease;
  }

  .mainNav__link:hover::after {
    border-bottom: 1px solid var(--main-textColor);
    border-right: 1px solid var(--main-textColor);
  }

  .mainNav__link--smallTxt {
    font-size: 14px;
    line-height: 1.2;
    padding-bottom: 4px;
  }
}

/*
========================================
floatingNav > nav
========================================
*/
.floatingNav {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  padding-bottom: 0px;
  color: var(--white);
  background-color: var(--white);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  transform: translateY(-200px);
  opacity: 0;
  pointer-events: none;
}

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

.floatingNav__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background-color: var(--white);
  gap: 1px;
}

.floatingNav__link {
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  padding: 8px 0 16px;
  height: 100%;
  position: relative;
  background-color: var(--main-textColor);
}

.floatingNav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  margin: auto;
  width: 8px;
  height: 8px;
  box-sizing: border-box;
  border-bottom: 1px solid var(--white);
  border-right: 1px solid var(--white);
  transform: rotate(45deg);
}

/* PC */
@media (min-width: 768px) {
  .floatingNav {
    margin: 0 auto;
    background: var(--main-textColor);
  }

  .floatingNav__inner {
    position: relative;
    background-color: var(--main-textColor);
    max-width: 960px;
    margin: 0 auto;
  }

  .floatingNav__list {
    width: 100%;
    margin: 0 auto;
    position: relative;
  }

  .floatingNav__link {
    font-size: 14px;
    padding: 20px 0 30px;
  }

  .floatingNav__link::after {
    bottom: 13px;
  }
}

/* animation */
@keyframes slide_in {
  0% {
    transform: translateY(-200px);
    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(-500px);
    opacity: 0;
  }
}

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

/* ========================
noteList
======================== */
.noteList {
  margin: 24px auto 0;
  max-width: 632px;
}

.noteList a {
  color: #0783C2;
}

.noteItem {
  position: relative;
  padding-left: 10px;
  text-align: left;
  color: #717171;
  font-size: 11px;
}

.noteItem::before {
  position: absolute;
  content: "※";
  top: 0;
  left: 0;
}

.noteItem:nth-of-type(n + 2) {
  margin-top: 4px;
}

@media (min-width: 768px) {
  .noteList {
    margin: 36px auto 0;
  }

  .noteItem {
    padding-left: 12px;
    font-size: 12px;
  }

  .noteItem:nth-of-type(n + 2) {
    margin-top: 6px;
  }
}

@media (max-width: 650px) {
  .noteList {
    padding: 0 15px;
  }
}

/*
========================================
content, common
========================================
*/
.content__inner {
  margin: 0 auto;
  padding: 0 10px;
}

.content__header {
  margin: 0 auto;
  position: relative;
}

.content__leadTxt {
  text-align: center;
  font-size: 14px;
  letter-spacing: -0.3px;
}

.content__leadTxt+.content__leadTxt {
  margin-top: 16px;
}

.common__headWrapper {
  margin-top: 40px;
  padding: 32px 15px;
  text-align: center;
  background: var(--sub-color);
}

.common__headWrapper.recommend {
  margin-top: 0;
  padding-bottom: 24px;
  background: var(--white);
}

.common__en {
  margin-bottom: 8px;
  font-size: 12px;
  color: var(--main-color);
}

.common__head {
  margin-bottom: 24px;
  font-size: 30px;
  font-weight: 600;
  color: var(--main-textColor);
}

.common__lead {
  font-size: 14px;
}

/* ========================
setItem
======================== */
.setItem__list {
  display: flex;
  gap: 24px 4px;
}

.setItem__list.center {
  justify-content: center;
}

.setItem__listWrapper {
  padding: 0 0 8px 8px;
  background: var(--white);
}

.setItem__list+.setItem__list {
  margin-top: 10px;
}

.setItem__listLink {
  display: block;
  width: 72px;
}

@media screen and (max-width: 767px) {
  .setItem__listWrapper {
    overflow-x: auto;
  }

  .setItem__listWrapper::-webkit-scrollbar {
    height: 4px;
  }

  .setItem__listWrapper::-webkit-scrollbar-track {
    background: #ebebeb;
    border-radius: 4px;
  }

  .setItem__listWrapper::-webkit-scrollbar-thumb {
    background: #b6b6b6;
    border-radius: 4px;
  }
}

/* PC */
@media (min-width: 768px) {
  .content__inner {
    max-width: 960px;
    width: 96.6666666667%;
  }

  .content__header::after {
    height: 32px;
  }

  .content__leadTxt {
    font-size: 14px;
  }

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

  .common__headWrapper {
    margin-top: 50px;
    padding-top: 40px;
  }

  .setItem__list {
    justify-content: center;
    gap: 8px;
  }

  .sizeWrap .setItem__list {
    gap: 24px;
  }

  .setItem__listWrapper {
    padding: 0;
  }
}

/*
========================================
content > color,size
========================================
*/
.item__content.color>.colorWrap,
.item__content.material>.materialWrap,
.item__content.size>.sizeWrap {
  display: block;
}

.item__content>.colorWrap,
.item__content>.materialWrap,
.item__content>.sizeWrap {
  display: none;
}

@supports (content-visibility: hidden) {

  .item__content.color>.colorWrap,
  .item__content.material>.materialWrap,
  .item__content.size>.sizeWrap {
    content-visibility: visible;
  }

  .item__content>.colorWrap,
  .item__content>.materialWrap,
  .item__content>.sizeWrap {
    content-visibility: hidden;
    display: block;
  }
}

/*
========================================
toggle
========================================
*/
.item__content {
  position: relative;
}

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

.item__toggle {
  position: relative;
  margin: 12px auto;
  background-color: #EBEBEB;
  border-radius: 26px;
  overflow: hidden;
}

.setItem__listItem {
  width: 72px;
}

.setItem__image {
  margin: 0 auto;
  width: 55px;
}

.sizeWrap .setItem__image {
  width: 65px;
}

.setItem__imageText {
  margin-top: 8px;
  font-size: 12px;
  text-align: center;
  letter-spacing: -0.8px;
}

.item__contentInner {
  padding: 8px 0 8px 8px;
  background: var(--white);
  border: 1px solid #ebebeb;
}

.switch-button {
  width: 100%;
  text-align: center;
  will-change: transform;
  z-index: 10 !important;
  cursor: pointer;
  transition: 0.3s ease all;
}

.switch-button-case {
  background: none;
  padding: 13px 0;
  height: 100%;
  color: #B6B6B6;
  position: relative;
  border: none;
  transition: 0.3s ease all;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.switch-button-case:hover {
  cursor: pointer;
}

.switch-button-case:focus {
  outline: none;
}

.switch-button .active {
  color: var(--main-textColor);
  background-color: var(--main-textColor);
  position: absolute;
  left: 0;
  top: 0;
  width: 33.3333333333%;
  height: 100%;
  z-index: -1;
  transition: 0.3s ease-in-out all;
  border-radius: 26px;
}

.switch-button .active.right {
  left: 32%;
}

.switch-button .active-case {
  color: var(--white);
}

/* PC */
@media (min-width: 768px) {
  .item__contentInner {
    padding: 12px 8px;
  }

  .switch-button-case {
    padding: 13px 0;
  }

  .switch-button a {
    text-decoration: none;
  }

  .switch-button .active {
    border-radius: 38px;
  }
}

/* トランジションの基本設定 */
.item__content .active {
  transition: transform 0.3s ease-out;
}

.item__content .active.move-center {
  transform: translateX(100%);
}

.item__content .active.move-right {
  transform: translateX(200%);
}

.item__content .active.no-transition {
  transform: translateX(0);
}

/* ========================
sp
======================== */
@media screen and (max-width: 767px) {
  .setItem__listItem:last-child {
    padding-right: 85px;
  }
}

/* ========================
bag
======================== */
.bag__number {
  position: absolute;
  margin-top: 12px;
  left: 13%;
  color: var(--main-color);
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  z-index: 1;
}

.bag__number::before {
  position: absolute;
  content: "";
  top: -6px;
  left: -22px;
  width: 62px;
  height: 58px;
  background: url(../img/bag/bg_number_even.svg) center center/contain no-repeat;
  z-index: -1;
}

.bag__number .number {
  display: block;
  padding-right: 4px;
  font-size: 20px;
  line-height: 1;
}

.bag__listItem {
  position: relative;
  z-index: 0;
}

.bag__listItem:first-child {
  padding-top: 32px;
}

.bag__listItem:first-child .bag__listItemInner {
  padding-top: 32px;
}

.bag__listItem:first-child .bag__number {
  top: 0;
}

.bag__listItem::after {
  position: absolute;
  content: "";
  top: 15px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--main-color);
  z-index: -1;
}

.bag__listItemContent {
  margin: 0 auto;
  max-width: 700px;
}

.bag__listItemTitle {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  color: var(--main-color);
}

.bag__listItemTitleSub {
  margin-bottom: 24px;
  font-size: 12px;
  font-weight: 600;
  color: var(--main-textColor);
  text-align: center;
}

.bag__listItemImage {
  margin-bottom: 20px;
}

.bag__listItemText {
  margin-bottom: 24px;
}

.bag__listItem:nth-child(1),
.bag__listItem:nth-child(3),
.bag__listItem:nth-child(5) {
  background-color: var(--sub-color);
}

.bag__listItem:nth-child(1) .bag__number::before,
.bag__listItem:nth-child(3) .bag__number::before,
.bag__listItem:nth-child(5) .bag__number::before {
  background: url(../img/bag/bg_number_odd.svg) center center/contain no-repeat;
}

.bag__listItemInner {
  padding: 65px 15px 32px;
}

@media screen and (min-width: 768px) {
  .bag__number {
    margin-top: 22px;
    font-size: 14px;
    left: clamp(4.063rem, -10.497rem + 30.33vw, 13.75rem);
  }

  .bag__number .number {
    font-size: 24px;
  }

  .bag__number::before {
    top: -10px;
    left: -33px;
    width: 84px;
    height: 73px;
  }

  .bag__lead {
    font-size: 14px;
  }

  .bag__listItemInner {
    padding-bottom: 36px;
  }

  .bag__listItem::after {
    top: 22px;
  }

  .bag__listItemTitleSub {
    margin-top: 7px;
  }

  .bag__listItemContent {
    display: grid;
    grid-template-columns: 257px auto;
    grid-template-rows: auto auto;
    gap: 0 34px;
  }

  .bag__listItemHeader {
    margin-top: 22px;
    grid-column: 1/2;
    grid-row: 1/2;
  }

  .bag__listItemText {
    font-size: 14px;
    grid-column: 1/2;
    grid-row: 2/3;
  }

  .bag__listItemImage {
    grid-column: 2/3;
    grid-row: 1/3;
    width: 411px;
  }

  .item__content {
    grid-column: 1/3;
    grid-row: 3/4;
  }
}

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

@media screen and (min-width: 1280px) and (max-width: 1920px) {
  .bag__number {
    left: clamp(13.75rem, -27.125rem + 51.09vw, 34.188rem);
  }
}

@media screen and (min-width: 1921px) {
  .bag__number {
    left: 30%;
  }
}

/* ========================
other
======================== */
.other {
  background: var(--sub-color);
  padding-bottom: 40px;
}

.other__inner {
  padding: 0 16px;
}

.other__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 30px auto;
}

.other__listItem {
  background: var(--white);
  box-shadow: 0 2px 7px 1px rgba(0, 0, 0, 0.15);
}

.other__listLink {
  display: grid;
  place-items: center;
  padding: 11px 8px;
  grid-template-columns: 49.6598639456% auto;
  gap: 8px;
  background: var(--white);
  font-weight: 600;
  font-size: 12px;
}

.other__listImage {
  max-width: 70px;
}

@media screen and (min-width: 768px) {
  .other__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 630px;
  }

  .other__listItem {
    width: 199px;
    box-shadow: 0 4px 10px 1px rgba(0, 0, 0, 0.1);
  }

  .other__listItemText {
    text-align: center;
  }

  .other__listLink {
    padding: 8px;
    font-size: 16px;
    grid-template-columns: auto auto;
  }
}

@media screen and (max-width: 767px) {
  .other {
    padding-top: 20px;
  }
}

/* ========================
recommend
======================== */
.recommend__subTitle {
  position: relative;
  display: inline-block;
  margin-top: 18px;
  padding: 5px;
  font-size: 18px;
  font-weight: 600;
  color: var(--main-color);
  text-align: center;
}

.recommend__subTitle::before,
.recommend__subTitle::after {
  position: absolute;
  content: "";
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  background: url(../img/recommend/bg_title01.svg) center center/contain no-repeat;
}

.recommend__subTitle::after {
  left: auto;
  right: -40px;
  background: url(../img/recommend/bg_title01.svg) center center/contain no-repeat;
  transform: translateY(-50%) rotate(180deg);
}

.recommend__subTitleWrapper {
  text-align: center;
}

.recommend__note {
  position: relative;
  margin-top: -4px;
  margin-bottom: 24px;
  padding-left: 2rem;
  font-size: 12px;
}

.recommend__note::before {
  position: absolute;
  content: "※";
  top: 0;
  left: 0;
  text-indent: 1rem;
}

.recommend__content {
  padding: 12px 8px;
  margin-top: 22px;
  background: var(--sub-color);
}

.recommend__contentList {
  margin-top: 24px;
}

.recommend__contentHead {
  position: relative;
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--main-shadow-color);
}

.recommend__contentHead::before {
  position: absolute;
  content: "";
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 40px;
  background: url(../img/recommend/bg_subtitle_sp.svg) center center/contain no-repeat;
}

.recommend__contentHeadWrapper {
  text-align: center;
}

.recommend__contentHeadSub {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.recommend__contentImage {
  margin-bottom: 12px;
}

.recommend__contentTextWrapper {
  font-size: 12px;
}

.recommend__contentTextWrapper.center {
  text-align: center;
}

.recommend__contentTextWrapper+.recommend__contentTextWrapper {
  margin-top: 12px;
}

.recommend__contentSearch {
  text-align: center;
}

.recommend__contentSearchHead {
  position: relative;
  display: inline-block;
  margin-top: 24px;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--main-shadow-color);
}

.recommend__contentSearchHead::before,
.recommend__contentSearchHead::after {
  position: absolute;
  content: "";
  top: 50%;
  left: -28px;
  transform: translateY(-50%);
  width: 19px;
  height: 1px;
  background: var(--main-shadow-color);
}

.recommend__contentSearchHead::after {
  left: auto;
  right: -28px;
}

.recommend__contentPriceList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  margin: 24px auto 0;
  max-width: 630px;
}

.recommend__contentPriceListItemLink {
  display: block;
  padding: 11px 2px;
  font-weight: 600;
  text-align: center;
  color: var(--white);
  background: var(--main-shadow-color);
}

.recommend__contentList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px auto;
  width: 100%;
}

.recommend__button.rkm-button {
  margin-top: 12px;
  font-size: 12px;
  height: 30px;
}

.recommend__button.rkm-button::after {
  right: 12px;
}

.recommend__contentSearchListItem {
  position: relative;
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  background: var(--main-shadow-color);
  border-radius: 33px;
  box-shadow: 0 2px 2px 0 rgba(76, 39, 35, 0.2);
}

.recommend__contentSearchListItem+.recommend__contentSearchListItem {
  margin-top: 8px;
}

.recommend__contentSearchListItem::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  width: 16px;
  height: 20px;
  background: url(../img/recommend/icon_search.svg) center center/contain no-repeat;
}

.recommend__contentSearchLink {
  display: block;
  padding: 7px 12px 7px 27px;
}

.recommend__buttonSearch.rkm-button {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--main-textColor);
  background: var(--white);
  border: 1px solid var(--main-textColor);
  height: 42px;
}

.recommend__buttonSearch.rkm-button::after {
  right: 12px;
  border-top: solid 1px var(--main-textColor);
  border-right: solid 1px var(--main-textColor);
}

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

  .other .recommend__subTitle {
    margin-top: 36px;
  }

  .recommend__content {
    padding: 16px;
  }

  .recommend__contentHead {
    font-size: 16px;
  }

  .recommend__contentHead::before {
    top: -14px;
    width: 180px;
    height: 59px;
    background: url(../img/recommend/bg_subtitle_pc.svg) center center/contain no-repeat;
  }

  .recommend__contentHeadSub {
    font-size: 20px;
  }

  .recommend__contentList {
    margin: 24px auto;
    max-width: 560px;
  }

  .recommend__contentTextWrapper.center {
    display: flex;
    justify-content: center;
  }

  .recommend__contentText+.recommend__contentText {
    padding-left: 10px;
  }

  .recommend__contentSearchHead {
    margin-bottom: 3px;
    font-size: 16px;
  }

  .recommend__button.rkm-button,
  .recommend__buttonSearch.rkm-button {
    /* padding-top: 10px; */
    font-size: 14px;
    height: 40px;
  }

  .recommend__contentImage {
    margin: 0 auto 12px;
    max-width: 205px;
  }

  .recommend__contentSearchLink {
    padding: 12px 10px 12px 25px;
  }

  .recommend__noteWrapper {
    margin: -9px auto 0;
    text-align: center;
  }

  .recommend__note {
    display: inline-block;
  }

  .recommend__contentPriceListItemLink {
    font-size: 18px;
    padding-top: 18px;
    padding-bottom: 18px;
  }
}

@media screen and (max-width: 375px) {
  .recommend__contentList {
    gap: 12px;
  }

  .recommend__contentPriceList {
    gap: 16px;
  }

  .recommend__buttonSearch.rkm-button {
    letter-spacing: -0.5px;
  }
}

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

  .recommend__contentList,
  .recommend__contentPriceList {
    padding: 0 16px;
  }
}

/* ========================
ranking
======================== */
.ranking {
  background: var(--sub-color);
}

.ranking__inner {
  padding: 0 16px;
}

.ranking__text {
  margin-top: 4px;
  font-size: 16px;
  font-weight: 600;
}

.ranking__list {
  margin: 24px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 424px;
}

.ranking__listItem {
  position: relative;
  counter-increment: incRanking;
  background: var(--white);
  box-shadow: 0 3px 6px 1px rgba(0, 0, 0, 0.2);
}

.ranking__listItem::before {
  content: counter(incRanking);
  position: absolute;
  top: 7px;
  left: 10px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  z-index: 1;
}

.ranking__listItem::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 26px;
  height: 32px;
  background: #A78F5B;
}

.ranking__listItemLink {
  position: relative;
  display: block;
  padding: 10px 15px 12px 15px;
  background: var(--white);
}

.ranking__listItemLink::after {
  position: absolute;
  content: "";
  bottom: 8px;
  right: 8px;
  width: 15px;
  height: 15px;
  background: url('data:image/svg+xml,<svg width="15" height="16" viewBox="0 0 15 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M15 15.1523V0.152344L0 15.1523H15Z" fill="%23D88460"/></svg>') center center/contain no-repeat;
  z-index: 1;
}

.ranking__listItem:nth-child(2)::after {
  background: #7A839B;
}

.ranking__listItem:nth-child(3)::after {
  background: #AA6939;
}

.ranking__listItem:nth-child(4)::after,
.ranking__listItem:nth-child(5)::after {
  background: #B6B6B6;
}

.ranking__listItem:first-child {
  width: 100%;
}

.ranking__listItem:first-child .ranking__listItemLink {
  display: flex;
  align-items: center;
  gap: 24px;
}

.ranking__listItem:first-child .ranking__listImage {
  order: 2;
}

.ranking__listItem:first-child .ranking__text {
  order: 1;
  width: 30%;
}

.ranking__listItem:not(:first-child) {
  width: calc((100% - 16px) / 2);
}

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

  .ranking__list {
    padding-bottom: 26px;
  }

  .ranking__listItem::before {
    left: 12px;
    font-size: 16px;
  }

  .ranking__listItem::after {
    width: 33px;
    height: 33px;
  }

  .ranking__listItemLink {
    padding: 16px 30px 17px 30px;
  }
}

/* ========================
appraisement
======================== */
.appraisement__inner {
  margin: 0 auto;
  padding: 20px 16px 24px;
  text-align: center;
}

.appraisement__bannerWrapper {
  padding: 24px 0 16px;
}

.appraisement__bannerLead {
  font-size: 16px;
  font-weight: 600;
  color: var(--main-textColor);
}

.appraisement__bannerTitle {
  font-weight: 600;
  font-size: 24px;
  text-align: center;
  margin-top: 16px;
  color: var(--main-textColor);
}

.appraisement__bannerTitle--underline {
  background: linear-gradient(transparent 75%, var(--sub-color) 0%);
}

.appraisement__bannerCaption {
  font-size: 14px;
  text-align: center;
  margin-top: 16px;
  margin-bottom: 16px;
}

.appraisement__bannerNote {
  font-size: 12px;
  line-height: 1.3;
  margin-top: 8px;
  text-indent: -16px;
  padding-left: 16px;
  letter-spacing: 0.01em;
}

.appraisement__bannerNote a {
  text-decoration: underline;
  color: #0783c2;
}

.appraisement__container {
  padding-top: 10px;
}

.appraisement__button {
  margin: 8px auto 32px;
  height: 44px;
  max-width: 388px;
}

@media screen and (min-width: 768px) {
  .appraisement__inner {
    max-width: 796px;
    margin: 0 auto;
    padding: 0;
  }

  .appraisement__title {
    margin-top: 24px;
    font-size: 26px;
    line-height: 1.3;
  }

  .appraisement__bannerWrapper {
    max-width: 514px;
    margin: 0 auto;
    padding: 40px 0 0;
  }

  .appraisement__bannerTitle {
    font-size: 28px;
    line-height: 1.4464285714;
  }

  .appraisement__bannerTitle--underline {
    padding-bottom: 3px;
    font-size: 32px;
    background: linear-gradient(transparent 75%, var(--sub-color) 0%);
  }

  .appraisement__bannerCaption {
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 24px;
  }

  .appraisement__bannerNote {
    margin-top: 16px;
  }

  .appraisement__buttonLink {
    font-size: 20px;
  }

  .appraisement__detailNotice {
    font-size: 12px;
  }
}

@media screen and (max-width: 767px) {
  .appraisement__title {
    font-size: 19px;
  }

  .appraisement__bannerTitle--underline {
    padding: 0 10px 3px 10px;
  }

  .appraisement__bannerWrapper img {
    margin: 0 auto;
    max-width: 468px;
  }
}

/*
========================================
whatis
========================================
*/
.whatis {
  padding: 20px 16px 16px;
  background-color: #fff;
}

.whatis__text02 {
  position: relative;
  margin: 0 auto;
  text-align: center;
  font-size: 12px;
  line-height: 1;
}

.whatis__text02::before {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 1px;
  background-color: #333;
}

.whatis__headlineH2Wrapper {
  text-align: center;
}

.whatis__headlineH2 {
  display: inline-block;
  padding: 0 4px;
  font-size: 24px;
  text-align: center;
  color: var(--main-textColor);
  font-weight: 600;
  line-height: 1.2;
  background: linear-gradient(transparent 75%, var(--sub-color) 0%);
}

.whatis__lead {
  margin-top: 18px;
  margin-bottom: 24px;
}

.whatis__headlineH3 {
  margin-top: 20px;
  font-size: 15px;
  text-align: center;
  line-height: 1.45;
}

.whatis__list {
  width: 94%;
  margin: 24px auto 0;
}

.whatis__listItem {
  padding: 16px 22px 17px;
  text-align: center;
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.15);
}

.whatis__listItem+.whatis__listItem {
  margin-top: 16px;
}

.whatis__listItem.--01,
.whatis__listItem.--02,
.whatis__listItem.--03,
.whatis__listItem.--04 {
  position: relative;
}

.whatis__listItem.--01::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 20px;
  width: 50px;
  height: 59px;
  background-image: url(../img/whatis/point_01.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.whatis__listItem.--02::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 20px;
  width: 50px;
  height: 60px;
  background-image: url(../img/whatis/point_02.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.whatis__listItem.--03::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 20px;
  width: 50px;
  height: 60px;
  background-image: url(../img/whatis/point_03.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.whatis__listItem.--04::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 20px;
  width: 50px;
  height: 60px;
  background-image: url(../img/whatis/point_04.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.whatis__imageArea {
  width: 62px;
  margin: 0 auto;
}

.whatis__title {
  margin-top: 7px;
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

.whatis__text {
  margin-top: 5px;
  font-size: 12px;
}

@media (min-width: 768px) and (max-width: 880px) {
  .whatis__title {
    font-size: 20px;
  }
}

@media screen and (min-width: 768px) {
  .whatis {
    padding-top: 63px;
  }

  .whatis__headlineH2 {
    font-size: 32px;
    font-weight: 600;
    background: linear-gradient(transparent 75%, var(--sub-color) 0%);
  }

  .whatis__lead {
    margin-top: 16px;
    margin-bottom: 32px;
    font-size: 14px;
  }

  .whatis__list {
    margin-top: 32px;
    width: 100%;
    max-width: 630px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 24px;
  }

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

  .whatis__title {
    margin-top: 12px;
  }

  .whatis__text {
    margin-top: 8px;
  }
}

/*
========================================
reason
========================================
*/
.reason_inner {
  padding: 40px 16px;
  text-align: center;
}

.reason_head {
  font-size: 18px;
  font-weight: 600;
  color: var(--main-color);
}

.reason_headSub {
  font-size: 18px;
  font-weight: 600;
  color: var(--main-textColor);
}

.reason_list {
  margin-top: 24px;
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 8px;
}

.reason_listItem {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  border-radius: 0 0 8px 8px;
  text-align: center;
  background: var(--FFFFFF, #FFF);
  box-shadow: 0 0 14.95px 0 rgba(0, 0, 0, 0.08);
}

.reason_itemHead {
  position: relative;
  grid-row: 1;
  padding: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: var(--main-color);
  border-radius: 8px 8px 0 0;
}

.reason_itemHead .small {
  position: absolute;
  font-size: 8px;
  font-weight: 400;
  top: 11px;
  right: 12px;
}

.reason_listItemTextBox {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  padding: 12px 8px;
  font-size: 12px;
}

.reason_text {
  display: grid;
  place-items: center;
  grid-row: 1
}

.reason_image {
  grid-row: 2;
}

.reason_imageBox {
  border-radius: 8px;
  box-shadow: 0 0 14.95px 0 rgba(0, 0, 0, 0.08);
}

.reason {
  .noteList {
    margin: 24px auto;
    padding: 0;
    max-width: 632px;
  }

  .noteList a {
    color: #0783C2;
  }

  .noteItem {
    padding-left: 1rem;
    text-align: left;
    color: #9EA3AD;
    font-size: 11px;
    text-indent: -18px;
  }

  .noteItem::before {
    content: none;
  }

  .noteItem.--red {
    color: #BF0000;
  }

}

.reason .rkm-button {
  background-color: #000;
}

.noteItem:nth-of-type(n + 2) {
  margin-top: 4px;
}

@media (min-width: 768px) {
  .reason_inner {
    margin-inline: auto;
    max-width: 640px;
    padding-left: 0;
    padding-right: 0;
  }

  .reason_head,
  .reason_headSub {
    font-size: 24px;
  }

  .reason_itemHead {
    font-size: 16px;
    border-radius: 14px 14px 0 0;
  }

  .reason_list {
    gap: 0 15px;
    margin-inline: auto;
    max-width: 625px;
  }

  .reason_listItem {
    border-radius: 0 0 12px 12px;
  }

  .reason_listItemTextBox {
    padding: 16px;
  }

  .reason_itemHead .small {
    font-size: 10px;
    top: 12px;
    right: 50px;
  }

  .reason_imageBox {
    margin-inline: auto;
    max-width: 625px;
    border-radius: 14px;
  }

  .reason_image {
    display: grid;
    align-items: end;
    margin-top: 4px;
  }

  .reason {
    .noteList {
      margin: 36px auto;
      padding-left: 4px;
      max-width: 640px;
    }

    .noteItem {
      padding-left: 12px;
      font-size: 12px;
      text-indent: -20px;
    }

    .noteItem:nth-of-type(n + 2) {
      margin-top: 6px;
    }
  }

}

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

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

.banner__headline {
  text-align: center;
  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 {
    padding: 75px 0 60px;
  }

  .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 {
  padding: 0 16px;
  margin: 24px auto 36px;
}

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

.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;
  -moz-column-gap: 12px;
  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__title .--en {
  font-size: 16px;
}

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

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

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

  .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;
    -moz-column-gap: 24px;
    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__title .--en {
    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;
    -moz-column-gap: 8px;
    column-gap: 8px;
  }

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

/* ========================
sns
======================== */
.sns__inner {
  margin: 24px auto 36px;
  text-align: center;
  max-width: 600px;
  padding: 12px 0;
  background-color: var(--white);
  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 {
    padding: 24px 0;
    border-radius: 6px;
    max-width: 796px;
  }

  .sns__head {
    font-size: 24px;
  }

  .sns__image {
    width: 101px;
  }

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

@media screen and (max-width: 840px) {
  .sns {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/*
========================================
footer
========================================
*/
/* SP */
.footer {
  margin-top: 40px;
  padding: 32px 0;
  background-color: #f5f5f5;
}

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

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

/* PC */
@media (min-width: 768px) {
  .footer {
    margin-top: 80px;
  }
}

/*
========================================
modal
========================================
*/
/* モーダル表示中にスクロールを無効にする */
body.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  z-index: 200;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s, visibility 0.5s;
  pointer-events: none;
}

.modal.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* content-visibilityがサポートされている場合 */
@supports (content-visibility: hidden) {
  .modal {
    content-visibility: hidden;
  }

  .modal.show {
    content-visibility: visible;
  }
}

/* content-visibilityがサポートされていない場合 */
@supports not (content-visibility: hidden) {
  .modal {
    display: none;
  }

  .modal.show {
    display: block;
  }
}

.modal__content {
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 32px 16px 0px 16px;
  border: 1px solid #888;
  width: 91.4666666667%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  max-height: 80%;
}

.modal__close {
  position: absolute;
  top: -46px;
  right: 0px;
  width: 38px;
  height: 38px;
  background-color: #d9d9d9;
  color: var(--black);
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  font-size: 30px;
  letter-spacing: normal;
  cursor: pointer;
  transition: background-color 0.3s;
}

.modal__close:hover,
.modal__close:focus {
  background-color: #a9a9a9;
  text-decoration: none;
}

.modal__closeText {
  font-size: 14px;
  text-align: center;
  text-decoration: underline;
  display: block;
  padding: 10px 25%;
  width: -moz-fit-content;
  width: fit-content;
  margin: 10px auto 26px;
}

.modal__bannerList {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  overflow: auto;
}

.modal__bannerListItem {
  width: calc((100% - 16px) / 3);
}

/* PC */
@media (min-width: 768px) {
  .modal__content {
    max-width: 925px;
    max-height: 92%;
    padding: 46px 100px 0px 100px;
    border-radius: 20px;
    max-height: 92%;
  }

  .modal__close {
    top: -28px;
    right: -28px;
    width: 56px;
    height: 56px;
    line-height: 56px;
    font-size: 50px;
    font-weight: 600;
    transition: background-color 0.8s;
  }

  .modal__closeText {
    font-size: 26px;
    font-weight: 600;
    padding: 10px 10%;
    margin: 20px auto 35px;
    text-decoration: none;
  }

  .modal__bannerList {
    gap: 33px;
  }

  .modal__bannerListItem {
    width: calc((100% - 66px) / 3);
  }
}

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

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

/*
========================================
Button
========================================
*/
.rkm-button {
  position: relative;
  display: grid;
  place-items: center;
  margin: 24px auto 0;
  font-size: 20px;
  height: 60px;
  color: #fff;
  text-align: center;
  border-radius: 40px;
  background-color: var(--main-textColor);
  max-width: 468px;
}

.rkm-button__link {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.rkm-button::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-top: solid 2px var(--white);
  border-right: solid 2px var(--white);
  transform: rotate(45deg);
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.rkm-button.is-long::after {
  right: 26px;
}

.rkm-button.--red {
  background-color: #ec0606;
}

.rkm-button.--red::after {
  content: none;
}

.rkm-buttonWrapper {
  background-color: var(--white);
  border-radius: 40px;
}

.content__buttonWrapper {
  margin: 0 auto;
  background-color: var(--white);
  border-radius: 50px;
  max-width: 468px;
}

@media screen and (min-width: 768px) {
  .rkm-button {
    display: grid;
    place-items: center;
    font-size: 20px;
    height: 60px;
  }

  .rkm-button.--red {
    font-size: 28px;
    height: 80px;
  }

  .rkm-button.is-long::after {
    right: 26px;
  }
}

@media screen and (max-width: 374px) {
  .rkm-button {
    font-size: 18px;
  }
}

.content__button.black.rkm-button {
  margin-top: 0;
  background: #000;
}

@media screen and (min-width: 768px) {
  .content__button.rkm-button {
    font-size: 28px;
    height: 80px;
    border-radius: 50px;
  }

  .content__button.rkm-button::after {
    width: 10px;
    height: 10px;
  }

  .content__button.black.rkm-button {
    margin-top: 24px;
  }
}

/*
========================================
floatingContent(CV)
========================================
*/
/* SP */
.floatingContent {
  position: fixed;
  display: none;
  bottom: 45px;
  right: 5px;
  width: 100%;
  padding: 12px 0;
  z-index: 150;
}

.floatingContent.--default {
  width: 100px;
}

.floatingContent.--top,
.floatingContent.--middle {
  width: 192px;
}

.floatingContent.--top {
  bottom: 235px;
}

.floatingContent.--middle {
  bottom: 170px;
}

.floatingContent.slide_content_in {
  display: block;
}

.floatingContent__closeButtonWrapper {
  z-index: 200;
  position: absolute;
  top: 0;
  right: 0;
  width: 27px;
  height: 27px;
}

.floatingContent.--top,
.floatingContent.--middle {
  .floatingContent__closeButtonWrapper {
    right: -4px;
  }
}

.floatingContent__closeButtonWrapper.--mv {
  top: -9px;
  right: 0;
}

.floatingContent__closeButtonWrapper.--mv a {
  display: block;
}

.floatingContent__imageBox {
  position: relative;
}

.floatingContent__closeButton {
  display: inline-block;
  position: absolute;
  top: 10px;
  right: 2px;
  width: 26px;
  height: 26px;
  filter: drop-shadow(5px 5px 4px rgba(64, 59, 17, 0.15));
}

.floatingContent__closeButton.--mv {
  position: absolute;
  top: -4px;
  right: 0;
}

.floatingContent__link {
  display: grid;
  place-items: center;
  width: 100%;
  transition: 0.3s ease;
}

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

.floatingContent__linkText {
  font-size: 16px;
  font-weight: bold;
}

/* PC */
@media (min-width: 768px) {
  .floatingContent {
    padding: 18px 0;
    right: 20px;
  }

  .floatingContent.--default {
    width: 130px;
    bottom: 65px;
  }

  .floatingContent.--top,
  .floatingContent.--middle {
    width: 230px;
  }

  .floatingContent__closeButtonWrapper {
    top: 11px;
    right: 0;
    width: 26px;
    height: 26px;
  }

  .floatingContent.--top,
  .floatingContent.--middle {
    .floatingContent__closeButtonWrapper {
      top: 7px;
      right: -8px;
    }
  }

  .floatingContent.--top {
    bottom: 300px;
  }

  .floatingContent.--middle {
    bottom: 220px;
  }

  .floatingContent__image {
    margin: 0 auto;
    max-width: 720px;
  }

  .floatingContent__closeButton {
    top: 16px;
    right: 45px;
    width: 30px;
    filter: drop-shadow(5px 5px 4px rgba(64, 59, 17, 0.15));
  }

  .floatingContent__link::after {
    right: 74px;
    width: 10px;
    height: 10px;
    border-right: 3px solid #ffffff;
    border-bottom: 3px solid #ffffff;
  }
}

/* animation */
@keyframes slide_content_in {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }

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

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

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

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

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