@charset "UTF-8";

/*
========================================
common
========================================
*/
:root {
  --black: #333333;
  --white: #ffffff;
  --bgBeige: #FFEFD6;
  --red: #EC0606;
  --navy: #002896;
  --btnRed: #BF0000;
  --txWLine: 2px 2px 0 #FFF, -2px -2px 0 #FFF, -2px 2px 0 #FFF, 2px -2px 0 #FFF, 0px 2px 0 #FFF, 0 -2px 0 #FFF, -2px 0 0 #FFF, 2px 0 0 #FFF;
  --txWLineSh: 2px 2px 0 #FFF, -2px -2px 0 #FFF, -2px 2px 0 #FFF, 2px -2px 0 #FFF, 0px 2px 0 #FFF, 0 -2px 0 #FFF, -2px 0 0 #FFF, 2px 0 0 #FFF,2px 2px 3px rgba(0, 0, 0, 0.5);
}

body {
  opacity: 0;
}
body.done {
  opacity: 1;
}
img[loading="lazy"] {
  opacity: 1;
  transition: opacity .5s ease-in-out;
  will-change: opacity;
}
img[loading="lazy"].lazyfade {
  opacity: 0;
}

main a,
.note a {
  text-decoration: underline;
  color: #0783C2;
}

/* SP */
.mx374br {
    display: none;
}
/* SP Max370px */
@media (max-width: 374px) {
  .mx374br {
    display: block;
  }
}

/*
========================================
rakuma.css orver ride
========================================
*/
.rkm-headline {
  position: relative;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  margin: 0 4vw;
  padding: 0px;
}
.rkm-headline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -7px;
  width: 80px;
  height: 2px;
  background-color: #333;
}
/* PC */
@media (min-width: 768px) {
  .rkm-headline {
    font-size: 24px;
  }
  .rkm-headline {
    display: block;
  }
}

/*
========================================
header
========================================
*/
/* SP */
.header {
  background-color: var(--white);
  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
========================================
/* SP */

/* PC */
@media (min-width: 768px) {
  .mv__inner {
    margin: 0 auto;
  }
  .mv__picture {
    display: flex;
    justify-content: center;
  }
  .mv__image {
    width: auto;
    max-width: inherit;
  }
}

/*
========================================
lead
========================================
/* SP */
.lead__inner {
  width: calc(343 / 375* 100%);
  margin: 24px auto 0;
}
.lead__text {
  font-size: 15px;
  line-height: calc(22.5/15);
  letter-spacing: 0.002em;
}
.lead__notice {
  display: block;
  padding: 16px 0;
  font-size: 12px;
}
.lead__date {
  font-size: 14px;
}
/* PC */
@media (min-width: 768px) {
  .lead__inner {
    max-width: 842px;
    margin: 40px auto 48px;
  }
  .lead__inner::after {
    content: "";
    display: block;
    clear: both;
  }
  .lead__text {
    font-size: 14px;
    line-height: calc(21/14);
    letter-spacing: 0.03em;
  }
  .lead__notice {
    float: left;
    padding: 8px 0 0;
  }
  .lead__date {
    float: right;
    padding: 8px 0 0;
  }
}


/*
========================================
nav
========================================
*/
.mainNav__inner {
  margin-top: 24px;
  background-color: #002896;
}

.mainNav__list {
  display: flex;
  justify-content: space-between;
  column-gap: 4px;
  margin: 0 auto;
}
.mainNav__listItem {
  width: 100%;
  position: relative;
}
.mainNav__listItem::after {
  content: "";
  display: block;
  background-image: url(../img/nav-arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  bottom: 15px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.mainNav__listItem + .mainNav__listItem::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  height: 55%;
  margin: auto;
  border-left: 1px solid var(--white);
}
.mainNav__tabs {
  display: block;
  text-align: center;
  font-size: 14px;
  color: var(--white);
  line-height: calc(18/14);
  padding: 15px 0 30px;
  font-weight: 700;
  text-decoration: none;
}


/* PC */
@media (min-width: 768px) {
  .mainNav__inner {
    max-width: 842px;
    margin: 0 auto;
  }
  .mainNav__tabs {
    font-size: 16px;
    line-height: calc(18/16);
    padding: 20px 0 35px;
  }
}



/*
========================================
floatingNavi > nav
========================================
*/
.floatingNavi {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  padding-bottom: 0px;
  background-color: #ffffff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  transform: translateY(-100px);
  pointer-events: none;
}
.floatingNavi.slide_in{
  pointer-events: auto;
}
.floatingNavi .mainNav__inner{
  margin-top: 0px;
}

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

}

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

/*
========================================
content common
========================================
*/
/* SP */
.secTitle {
  font-weight: 700;
  font-size: 20px;
  line-height: calc(40/20);
  color: var(--navy);
  text-shadow: var(--txWLineSh);
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
.secTitle::after {
  content: "";
  display: block;
  left: 0;
  right: 0;
  bottom: -4px;
  margin: auto;
  width: 54px;
  height: 4px;
  background-image: url(../img/title_deco_sp.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.secTitle.--noDeco::after {
  content: none;
}

.btn {
  background-color: var(--red);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  line-height: calc(28/14);
  padding: 8px 0;
  border-radius: 30px;
  width: 100%;
  display: block;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.01em;
  max-width: 360px;
  margin: 0 auto;
}
/* PC */
@media (min-width: 768px) {
  .secTitle {
    font-size: 30px;
    line-height: calc(60/30);
  }
  .secTitle::after {
    bottom: -12px;
    width: 72px;
    height: 4px;
    background-image: url(../img/title_deco_pc.svg);
  }
  .btn {
    max-width: 460px;
    font-size: 20px;
  }
}

/*
========================================
problem
========================================
*/
/* SP */
.problem {
  background-color: var(--bgBeige);
}
.problem__inner {
  width: calc(343 / 375* 100%);
  margin: 0 auto;
  padding: 40px 0;
}
.problem__title {
  text-align: center;
  color: var(--navy);
  font-weight: 700;
  font-size: 20px;
  line-height: calc(40/20);
  text-shadow: var(--txWLineSh);
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
.problem__title::before {
  content: "";
  display: block;
  height: 36px;
  width: 3px;
  background-color: var(--white);
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: -16px;
  transform: rotate(-30deg);
}
.problem__title::after {
  content: "";
  display: block;
  height: 36px;
  width: 3px;
  background-color: var(--white);
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: -16px;
  transform: rotate(30deg);
}
.problem__title--em {
  color: var(--red);
}
.problem__wrapper {
  border: 2px solid #C9D7FF;
  background-color: var(--white);
  border-radius: 8px;
  margin-top: 24px;
  box-shadow: 4px 4px 0px 0px rgba(201, 215, 255, 1);
}
.problem__list {
  padding: 24px 18px;
  position: relative;
}
.problem__list::after {
  content: "";
  padding: 24px 18px;
  position: absolute;
  bottom: -34px;
  left: 0;
  right: 0;
  margin: auto;
  width: 50px;
  height: 40px;
  background-image: url(../img/sec-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.problem__listItem {
  font-size: 14px;
  line-height: calc(23/14);
  color: var(--navy);
  font-weight: 700;
  position: relative;
  padding-left: 50px;
  letter-spacing: 0.006em;
}
.problem__listItem::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 38px;
  height: 38px;
  background-image: url(../img/problem-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.problem__listItem + .problem__listItem {
  margin-top: 16px;
}
.problem__imgBox {
  margin-top: 36px;
  position: relative;
}
.problem__imgTitle {
  position: absolute;
  top: 0px;
  text-align: center;
  width: 100%;
  font-size: 28px;
  line-height: calc(36/28);
  letter-spacing: 0.01em;
  font-weight: 700;
  color: var(--red);
  text-shadow: var(--txWLine);
}
.problem__notice {
  font-size: 14px;
  line-height: calc(23/14);
  letter-spacing: 0.01em;
  margin-top: 10px;
}
/* PC */
@media (min-width: 768px) {
  .problem__inner {
    max-width: 546px;
  }
  .problem__title {
    font-size: 22px;
    line-height: calc(44/22);
  }
  .problem__title::before {
    left: -32px;
  }
  .problem__title::after {
    right: -32px;
  }
  .problem__wrapper {
    max-width: 428px;
    margin: 15px auto 0;
  }
  .problem__list {
    padding: 24px 20px;
  }
  .problem__list::after {
    width: 59px;
    height: 45px;
  }
  .problem__listItem {
    line-height: calc(20/14);
    padding-left: 44px;
  }
  .problem__listItem::before {
    width: 34px;
    height: 34px;
  }
  .problem__listItem + .problem__listItem {
    margin-top: 16px;
  }
  .problem__imgBox {
    max-width: 478px;
    margin: 48px auto 0;
  }
  .problem__imgTitle {
    font-size: 34px;
    line-height: calc(43/34);
  }
}

/*
========================================
priceList
========================================
*/
/* SP */
.priceList {}
.priceList__inner {
  width: calc(343 / 375* 100%);
  margin: 0 auto;
  padding: 40px 0;
}
.priceList__notice {
  font-size: 12px;
  line-height: calc(16.5/12);
  margin-top: 16px;
}
.priceList__notice.--center {
  text-align: center;
}
.priceList__notice--date {
  display: block;
}
.priceList__wrapper {
  position: relative;
  margin-top: 16px;
}
.priceList__scrollWrap {
  position: relative;
  top: 0px;
  left: 0px;
  overflow-x: auto;
  overflow-y: hidden;
  width: calc(100% + 16px);
  white-space: nowrap;
}
.priceList__scrollItem {
  width: calc(472 / 359* 100%);
  max-width: none;
}
.priceList__tableWrap{
  padding-right: 16px;
  padding-bottom: 4px;
  width: fit-content;
  margin: 16px auto 0;
}
.priceList__table {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.006em;
  border-spacing: 0;
  position: relative;
  margin-top: 30px;
}
.priceList__tableCaption {
  color: var(--red);
  font-size: 15px;
  line-height: 1em;
  padding-bottom: 8px;
  position: absolute;
  top: -24px;
  left: 42%;
}
.priceList__tbody {
  border: 1px solid #EBEBEB;
}
.priceList__tbody th,
.priceList__tbody td {
  padding: 10px;
  vertical-align: middle;
}
.priceList__thead .--menu{
  padding: 6px 5px 6px 15px;
}
.priceList__thead .--menu p{
  background-color: var(--navy);
  color: var(--white);
  border-radius: 20px;
  font-size: 14px;
  line-height: calc(23/14);
  text-align: center;
  padding: 5px 0;
}
.priceList__thead .--rakuma{
  background-color: var(--red);
  color: var(--white);
  border-radius: 20px 20px 0px 0px;
  font-size: 20px;
  line-height: calc(23/20);
  text-align: center;
  padding: 5px 0;
  vertical-align: middle;
}
.priceList__thead .--other{
  background-color: #C9D7FF;
  border-radius: 20px 20px 0px 0px;
  font-size: 14px;
  line-height: calc(23/14);
  text-align: center;
  padding: 5px 0;
  vertical-align: middle;
}

.priceList__tbody th{
  background-color: #EBEBEB;
}
.priceList__tbody .priceList__tbody--top th{
  border-top: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
}
.priceList__tbody .priceList__tbody--top td{
  border-top: 1px solid #EBEBEB;
}

.priceList__tbody .priceList__tbody--bottom th{
  border-bottom: 1px solid var(--white);
}
.priceList__tbody .priceList__tbody--bottom td{
  border-bottom: 1px solid #EBEBEB;
}
.priceList__tbody td.--rakuma{
  /* border-right: 2px solid var(--red);
  border-left: 2px solid var(--red); */
  color: var(--red);
  font-size: 20px;
  text-align: center;
  padding: 8px 15px;
  position: relative;
  z-index: 1;
}
.priceList__tbody td.--rakuma::after{
  content: "";
  display: block;
  border-right: 2px solid var(--red);
  border-left: 2px solid var(--red);
  width: 100%;
  height: calc(100% + 2px);
  position: absolute;
  top: -1px;
  left: 0px;
}
.priceList__tbody td.--rakuma small{
  font-size: 50%;
}
.priceList__tbody td.--other{
  font-size: 14px;
  text-align: center;
  padding: 8px 12px;
}
.priceList__tbody tr:last-child .--rakuma {
  border-bottom: 2px solid var(--red);
}

/* scroll-hint.min.js" */
.scroll-hint-icon-wrap  {
  z-index: 1;
}
.scroll-hint-text {
  letter-spacing: 0.001em;
}

/* PC */
@media (min-width: 768px) {
  .priceList__inner {
    max-width: 500px;
    margin: 0 auto;
  }
  .priceList__notice--date {
    display: inline;
    padding-left: 12px;
  }
  .priceList__scrollWrap {
    overflow-x: hidden;
    width: 100%;
    padding-right: 1px;
  }
  .priceList__tableWrap{
    padding-right: 0px;
    padding-bottom: 0px;
    width: 100%;
  }
  .priceList__tableCaption {
    left: 48%;
    width: 100%;
  }
  .priceList__table {
    width: 100%;
  }
  .priceList__tbody th{
    text-align: center;
  }
  .priceList__tbody th,
  .priceList__tbody td {
    padding: 18px 10px;
  }
  .priceList__tbody td.--rakuma small{
    font-size: 70%;
  }
}

/*
========================================
revision
========================================
*/
/* SP */
.revision {
  background-color: var(--bgBeige);
}
.revision__inner {
  width: calc(343 / 375* 100%);
  margin: 0 auto;
  padding: 40px 0;
}
.revision__wrapper {
  border: 2px solid #EBEBEB;
  border-radius: 8px;
  background-color: var(--white);
  margin-top: 16px;
  padding: 16px;
}
.revision__date {
  font-weight: 700;
  font-size: 17px;
  line-height: calc(34/17);
  color: var(--navy);
  text-align: center;
  letter-spacing: 0.03em;
}
.revision__text {
  font-size: 14px;
  line-height: calc(28/14);
  text-align: center;
  letter-spacing: 0.03em;
}

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


/*
========================================
detail
========================================
*/
/* SP */
.detail {
}
.detail__inner {
  width: calc(343 / 375* 100%);
  margin: 0 auto;
  padding: 40px 0;
}
.detail__notice {
  font-size: 12px;
  line-height: calc(16.5/12);
  margin-top: 16px;
}
.detail__list {
  margin-top: 32px;
}
.detail__listItem + .detail__listItem {
  margin-top: 32px;
}
.detail__listCaption {
  text-align: center;
  font-size: 16px;
  line-height: calc(23/16);
  font-weight: 700;
  margin-bottom: 16px;
}
.detail__noticeList {
  margin-top: 32px;
}
.detail__noticeItem {
  font-size: 12px;
  line-height: calc(16.5/12);
  letter-spacing: 0.01em;
  text-indent: -14px;
  padding-left: 14px;
  letter-spacing: 0.03em;
}
.detail__noticeItem + .detail__noticeItem {
  margin-top: 4px;
}
.detail__text {
  margin-top: 32px;
  font-size: 14px;
  line-height: calc(23/14);
  letter-spacing: 0.01em;

}
.detail__table {
  font-size: 12px;
  width: 100%;
}


.detail__thead .--menu{
  padding: 6px 10px 6px 10px;
}
.detail__thead .--menu p{
  background-color: var(--navy);
  color: var(--white);
  border-radius: 20px;
  font-size: 14px;
  line-height: calc(23/14);
  text-align: center;
  padding: 5px 0;
}
.detail__thead .--before{
  background-color: #C9D7FF;
  color: var(--navy);
  font-size: 14px;
  line-height: calc(17/14);
  text-align: center;
  vertical-align: middle;
  font-weight: 700;
  border-radius: 8px 8px 0 0;
}
.detail__thead .--after{
  background-color: var(--red);
  color: var(--white);
  font-size: 14px;
  line-height: calc(17/14);
  text-align: center;
  vertical-align: middle;
  font-weight: 700;
  border-radius: 8px 8px 0 0;
  letter-spacing: 0.001em;
}
.detail__tbody {
  border-bottom: 1px solid #EBEBEB;
}
.detail__tbody th,
.detail__tbody td {
  padding: 10px;
  vertical-align: middle;
  font-weight: 700;
  letter-spacing: 0.003em;
}
.detail__tbody th {
  background-color: #EBEBEB;
}
.detail__tbody th.--size {
  text-align: center;
  width: 20%;
  border-top: 1px solid var(--white);
}
.detail__tbody.--post th.--size {
  width: 43%;
  padding: 10px 0px;
  letter-spacing: 0.001em;
}
.detail__tbody td {
  text-align: center;
}
.detail__tbody td:not([class]) {
  width: 23%;
}
.detail__tbody td.--before {
  font-size: 14px;
  padding: 10px 16px;
  border-left: 1px solid #EBEBEB;
  position: relative;
}
.detail__tbody td.--before::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: -10px;
  margin: auto;
  background: var(--red);
  height: calc(tan(60deg) * 14px / 2);
  width: 18px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  transform: rotate(90deg);
  z-index: 1;
}
.detail__tbody td.--bb {
  border-bottom: 1px solid #EBEBEB;
}
.detail__tbody td.--after {
  font-size: 20px;
  background-color: #FFE8E8;
  padding: 4px 24px 10px;
}
.detail__tbody td.--after .--diff {
  font-size: 12px;
  background-color: var(--red);
  color: var(--white);
  line-height: 1em;
  padding: 2px 10px;
  width: fit-content;
  border-radius: 10px;
  margin: 0 auto;
  position: relative;
}
.detail__tbody td.--after .--diff::before {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  margin: auto;
  background: var(--red);
  height: calc(tan(60deg) * 10px / 2);
  width: 14px;
  transform: rotate(180deg);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.detail__tbody td.--after .--diff.--w {
  background-color: var(--white);
  color: var(--black);
}
.detail__tbody td.--after .--diff.--w::before {
  background: var(--white);
}
.detail__tbody td.--after > small{
  font-size: 60%;
}
/* PC */
@media (min-width: 768px) {
  .detail__inner {
    max-width: 500px;
    margin: 0 auto;
  }
  .detail__list {
    width: 458px;
    margin: 32px auto 0;
  }
  .detail__thead .--menu{
    padding: 6px 5px 6px 15px;
  }
  .detail__thead .--after{
    letter-spacing: 0.01em;
  }
  .detail__tbody th.--size {
    width: 16%;
  }
  .detail__tbody.--post th.--size {
    width: 33%;
  }
  .detail__tbody td:not([class]) {
    width: 17%;
  }
  .detail__tbody td.--before {
    padding: 10px 20px;
  }
  .detail__tbody td.--after {
    padding: 4px 20px 10px;
  }
}

/*
========================================
example
========================================
*/
/* SP */
.example {
  background-color: var(--bgBeige);
}
.example__inner {
  width: calc(343 / 375* 100%);
  margin: 0 auto;
  padding: 40px 0;
}
.example__subTitle {
  font-size: 16px;
  line-height: 1em;
}
.example__subTitle--lbColor {
  color: #C9D7FF;
}
.example__wrapper {
  margin-top: 24px;
}
.example__list {
  display: flex;
  column-gap: 16px;
}
.example__listItem {
  width: calc(100% - 16px / 2);
  background-color: var(--white);
  border: 2px solid #FFD3D3;
  box-shadow: 4px 4px 0px 0px rgba(255, 211, 211, 1);
  border-radius: 8px;
  padding: 16px 14px;
}
.example__listTitle {
  font-size: 14px;
  line-height: calc(21/14);
  font-weight: 700;
  text-align: center;
  margin-top: 8px;
  letter-spacing: 0.001em;
}
.example__price {
  margin-top: 8px;
}
.example__priceTitle {
  font-weight: 400;
  font-size: 13px;
  line-height: calc(19.5/13);
  text-indent: -13px;
  padding-left: 13px;
  margin-bottom: 8px;
}
.example__normalPrice {
  font-weight: 700;
  text-align: center;
  font-size: 24px;
  line-height: calc(27.5/24);
  position: relative;
  margin-bottom: 16px;
}
.example__normalPrice::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: auto;
  background-image: url(../img/ico-arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 23px;
  height: 17px;
}
.example__specialPrice {
  color: var(--red);
  font-weight: 700;
  text-align: center;
  font-size: 39px;
  line-height: calc(45/39);
  text-shadow: var(--txWLineSh);
}
.example__yen {
  font-size: 50%;
}
.example__differ {
  background-color: var(--red);
  color: var(--white);
  font-weight: 700;
  text-align: center;
  font-size: 14px;
  line-height: calc(22.5/14);
  border-radius: 12px;
  width: fit-content;
  padding: 0 10px;
  margin: 8px auto 0 ;
  position: relative;
}
.example__differ::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 0;
  right: 0;
  margin: auto;
  background: var(--red);
  height: calc(tan(60deg) * 10px / 2);
  width: 14px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

/* PC */
@media (min-width: 768px) {
  .example__inner {
    max-width: 422px;
    margin: 0 auto;
  }
  .example__subTitle {
    font-size: 24px;
  }
  .example__priceTitle {
    text-align: center;
    text-indent: 0px;
    padding-left: 0px;
  }
}


/*
========================================
shipping
========================================
*/
/* SP */
.shipping {
}
.shipping__inner {
  width: calc(343 / 375* 100%);
  margin: 0 auto;
  padding: 40px 0 0;
}
.shipping__title {
  text-align: center;
  color: var(--navy);
  font-weight: 700;
  font-size: 16px;
  line-height: calc(24/16);
  width: fit-content;
  margin: 0 auto;
  position: relative;
  letter-spacing: 0.01em;
}
.shipping__title::before {
  content: "";
  display: block;
  height: 36px;
  width: 3px;
  background-color: #C9D7FF;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: -16px;
  transform: rotate(-30deg);
}
.shipping__title::after {
  content: "";
  display: block;
  height: 36px;
  width: 3px;
  background-color: #C9D7FF;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: -16px;
  transform: rotate(30deg);
}
.shipping__btn {
  margin-top: 16px;
}
.shipping__method {
  margin-top: 48px;
  padding: 24px 18px;
  box-shadow: 0px 1px 4px 1px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
}
.shipping__methodTitle {
  font-size: 20px;
  font-weight: 700;
  line-height: calc(40/20);
  text-shadow: var(--txWLineSh);
  color: var(--navy);
  text-align: center;
}
.shipping__methodWrapper {
  margin-top: 40px;
}

.shipping__methodItem + .shipping__methodItem {
  margin-top: 40px;
}
.shipping__methodStep {
  display: flex;
  column-gap: 16px;
}
.shipping__methodStepTitle,
.shipping__methodImg {
  width: calc((100% - 16px) / 2);
}
.shipping__methodStepBadge {
  color: #F76B6B;
  font-weight: 700;
  font-size: 12px;
  line-height: 1em;
  border: 2px solid #F76B6B;
  width: fit-content;
  padding: 2px 10px;
  border-radius: 10px;
  letter-spacing: 0.001em;
  margin-bottom: 8px;
}
.shipping__methodStepText {
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  line-height: calc(24/14);
  letter-spacing: 0.03em;
}
.shipping__place {
  background: #DCF3FF;
  border-radius: 8px;
  padding: 16px;
  margin-top: 40px;
  position: relative;
}
.shipping__place::after {
  content: "";
  padding: 24px 18px;
  position: absolute;
  top: -34px;
  left: 0;
  right: 0;
  margin: auto;
  width: 50px;
  height: 40px;
  background-image: url(../img/sec-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.shipping__placeTitle {
  color: var(--navy);
  font-weight: 700;
  font-size: 16px;
  line-height: calc(22/16);
  text-align: center;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.shipping__placeIllust {
  width: 50%;
  margin: 0 auto;
}
.shipping__detail {
  margin-top: 48px;
}
.shipping__detailTitle {
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  line-height: calc(24/15);
  text-align: center;
  letter-spacing: 0.01em;
}
.shipping__detailTitle--lbColor {
  color: #AEE4FF;
}
/* PC */
@media (min-width: 768px) {
  .shipping__inner {
    max-width: 763px;
  }
  .shipping__method {
    padding: 24px 40px;
  }
  .shipping__methodStep {
    display: flex;
    flex-direction: column;
    column-gap: 0px;
    height: 100%;
    justify-content: space-between;
  }
  .shipping__methodWrapper {
    display: flex;
    column-gap: 32px;
  }
  .shipping__methodList {
    display: flex;
    justify-content: start;
    align-items: start;
    width: 72%;
    column-gap: 32px;
  }
  .shipping__methodItem {
    width: calc((100% - 64px) / 3);
    height: 100%;
    position: relative;
  }
  .shipping__methodItem::after {
    content: "";
    padding: 24px 18px;
    position: absolute;
    bottom: 45px;
    right: -32px;
    width: 36px;
    height: 27px;
    transform: rotate(-90deg) scale(-1, 1);
    background-image: url(../img/sec-arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }
  .shipping__methodItem + .shipping__methodItem {
    margin-top: 0px;
  }
  .shipping__methodStepTitle,
  .shipping__methodImg {
    width: 100%;
  }
  .shipping__place {
    width: 28%;
    margin-top: 0px;
    padding: 16px;
  }
  .shipping__place::after {
    content: none;
  }
  .shipping__placeTitle {
    font-size: 14px;
    line-height: calc(22/14);
    text-align: left;
    letter-spacing: 0.06em;
    margin-bottom: 18px;
  }
  .shipping__btn {
    margin: 16px auto 0;
  }
}



/*
========================================
application
========================================
*/
/* SP */
.application {
  margin: 40px 0;
}

.application__box {
  width: 91.4666666667%;
  max-width: 550px;
  margin: 0 auto;
  padding: 32px 0;
  background-color: #ffffff;
  border-radius: 6px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
}

.rkm-app__title {
  margin: 0 auto;
  width: calc(311 / 343 * 100%);
  font-size: 16px;
  text-align: center;
  font-weight: bold;
}

.rkm-app__container {
  display: flex;
  justify-content: center;
  width: calc(270 / 343 * 100%);
  max-width: 410px;
  margin: 20px auto 0;
}
.rkm-app__container.-pc {
  display: none;
}

.rkm-app__iconBox {
  width: 42%;
  margin-right: 24px;
}

.rkm-app__linkBox {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: calc(58% - 12px);
}

.rkm-app__image {
  margin: 0 auto;
}

@media (max-width: 374px) {
  .rkm-app__title {
    font-size: 15px;
  }
}
/* PC */
@media (min-width: 768px) {
  .application {
    margin-top: 80px;
  }
  .application__box {
    max-width: 844px;
    padding: 32px 48px;
  }
  .rkm-app__title {
    font-size: 18px;
    width: 100%;
  }
  .rkm-app__container.-pc {
    display: block;
  }
  .rkm-app__container.-sp {
    display: none;
  }
  .rkm-app__iconBox {
    display: flex;
    justify-content: center;
    width: auto;
    height: 100px;
    margin: 0 auto;
  }
  .rkm-app__iconBox .rkm-app__image {
    max-width: 100px;
    height: 100%;
  }
  .rkm-app__image {
    margin: 0;
  }
}

/*
========================================
note
========================================
*/
/* SP */
.note {
  margin-top: 50px;
  padding: 36px 0;
  background: #f8f8f8;
}

.note__headline03 {
  font-weight: 700;
  font-size: 20px;
  position: relative;
  width: 91.4666666667%;
  margin: 36px auto 0;
}

.note__list {
  margin: 24px 4vw 0;
}

.note__listItem {
  position: relative;
  padding: 0 0 0 24px;
  margin: 0 0 20px;
}
.note__listItem::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: #aaaaaa;
  border-radius: 100px;
}

.note__listItem01 {
  position: relative;
  padding-left: 10px;
  padding-top: 8px;
}
.note__listItem01::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  width: 4px;
  height: 2px;
  background: #777;
}

.note__noteList {
  margin-top: 4px;
}

.note__noteListItem {
  position: relative;
  padding-left: 16px;
  font-size: 11px;
  color: #999999;
}
.note__noteListItem:nth-child(n+2) {
  margin-top: 6px;
}
.note__noteListItem::before {
  position: absolute;
  top: 1px;
  left: 0;
  content: "※";
}

/* PC */
@media (min-width: 768px) {
  .note {
    padding: 48px 0;
  }
  .note__inner {
    max-width: 960px;
    margin: 0 auto;
  }
  .note__headline03 {
    font-size: 26px;
  }
}
/*
========================================
faq
========================================
*/
/* SP */
.faq {
  padding: 35px 0 40px;
  background-color: #DCF3FF;
}

.faq__headline {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #002896;
}
.faq__headline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -7px;
  width: 80px;
  height: 2px;
  background-color: #002896;
}

.faq__list {
  width: 91.4666666667%;
  max-width: 550px;
  margin: 23px auto 0;
}

.faq__listItem {
  position: relative;
  min-height: 48px;
  font-size: 16px;
  font-weight: bold;
  background-color: #fff;
  box-shadow: 2px 2px 6px 1px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  z-index: 1;
}
.faq__listItem::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 13px;
  transform: translateY(-50%);
  width: 14px;
  height: 15px;
  background-image: url(../img/faq_icon.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.faq__listItem::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url(../img/faq_arrow.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 0;
}
.faq__listItem + .faq__listItem {
  margin-top: 12px;
}

.faq__link {
  position: relative;
  display: grid;
  align-items: center;
  width: 100%;
  min-height: 48px;
  padding: 10px 32px 10px 40px;
  color: #333;
  text-decoration: none;
  z-index: 1;
}

@media (max-width: 374px) {
  .faq__listItem {
    font-size: 15px;
  }
}
/* PC */
@media (min-width: 768px) {
  .faq {
    padding: 48px 0;
  }
  .faq__headline {
    font-size: 32px;
  }
  .faq__headline::before {
    bottom: -7px;
    width: 124px;
  }
  .faq__list {
    max-width: 631px;
    margin: 31px auto 0;
  }
  .faq__listItem {
    min-height: 62px;
    font-size: 18px;
  }
  .faq__listItem::before {
    left: 23px;
    width: 22px;
    height: 23px;
  }
  .faq__listItem::after {
    right: 23px;
    width: 20px;
    height: 20px;
  }
  .faq__listItem + .faq__listItem {
    margin-top: 16px;
  }
  .faq__link {
    min-height: 62px;
    padding: 10px 67px 10px 60px;
  }
}

/*
========================================
footer
========================================
*/
/* SP */
.footer {
  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) {

}





/*
========================================
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;
  padding: 7px;
  font-size: 14px;
  color: #fff;
  text-align: center;
  border-radius: 35px;
  background-color: #000;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}
.rkm-button::after {
  position: absolute;
  content: "";
  right: 16px;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #fff;
  border-right: 0;
  transform: translateY(-50%);
  z-index: 2;
}
.rkm-button.is-long::after {
  right: 26px;
}
.rkm-button.--red {
  background-color: #ec0606;
}
.rkm-button.--red::after {
  content: none;
}

@media screen and (min-width: 768px) {
  .rkm-button {
    display: grid;
    place-items: center;
    font-size: 20px;
    padding: 12px;
    max-width: 460px;
    height: 60px;
  }
  .rkm-button.is-long::after {
    right: 26px;
  }
}
@media screen and (max-width: 374px) {
  .rkm-button {
    font-size: 11px;
  }
}







