@charset "UTF-8";
/*
========================================
変数
========================================
*/
:root {
  --color-red: #ec0606;
  --color-blue: #0048d2;
  --color-white: #ffffff;
  --color-gray: #f1f0f0;
  --color-lightblue: #dcf3ff;
  --color-black: #333333;
}


/*
========================================
common
========================================
*/
.redTxt {
  color: var(--color-red);
}
.blueTxt {
  color: var(--color-blue);
}

.purchaseBtn {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  background-color: #bf0000;
  width: 100%;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 23px;
  color: var(--color-white);
}

.headerUnderline {
  padding: 0 2px;
  background: linear-gradient(transparent 70%, rgba(220, 243, 255, 1) 70%);
}
.redUnderline {
  padding: 0 2px;
  background: linear-gradient(transparent 60%, rgba(247, 107, 107, .2) 60%);
}
.blueUnderline {
  padding: 0 2px;
  background: linear-gradient(transparent 60%, rgba(102, 142, 252, .2) 60%);
}

.br350 {
  display: none;
}

.disableBtn {
  pointer-events: none;
  background-color: #ccc;
}

.notationTxt {
  font-size: 14px;
  text-align: center;
  margin-top: 5px;
}

/* 350以下 */
@media (max-width: 350px) {
  .br350 {
    display: block;
  }
  .none350 {
    display: none;
  }
}

/* PC */
@media (min-width: 768px) {
  body {
    line-height: 1.6;
  }
  .purchaseBtn {
    font-size: 28px;
    width: 100%;
    max-width: 686px;
    height: 90px;
    border-radius: 45px;
    margin: 0 auto;
  }
}


/*
========================================
header
========================================
*/
/* SP */
.header {
  background-color: #fff;
  border-bottom: #002896 2px solid;
}
.header__inner {
  position: relative;
  margin: 0 auto;
  width: calc(343 / 375 * 100%);
  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;
  }
}


/*
========================================
mainVisual
========================================
*/
/* SP */
.mainVisual__imageSP {
  width: 100%;
  height: auto;
}
.mainVisual{
  margin: 0 auto;
}
/* PC */
@media (min-width: 768px) {
  .mainVisual {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../img/mainVisual_bg_pc.gif);
    background-repeat: repeat-x;
    background-position: center center;
    background-size: contain;
    /* height: 315px; */
    position: relative;
  }
  .mainVisual__inner {
    height: 100%;
    z-index: 1;
  }
  .mainVisual__imagePC {
    width: 976px;
    margin: 0 auto;
  }
}

/*
========================================
descContent
========================================
*/
.descContent {
  background-color: var(--color-lightblue);
}
.descContent__inner {
  width: calc(343 / 375* 100%);
  margin: 0 auto;
  padding-bottom: 32px;
}
.descContent__header {
  text-align: center;
  font-size: 20px;
  padding-top: 30px;
  font-weight: 700;
}
.deesContent__wrapper {
  padding-top: 20px;
  width: calc(310 / 343* 100%);
  margin: 0 auto;
  font-size: 14px;
}
/* .deesContent__btn {
  margin-top: 32px;
} */
.deesContent__note {
  font-size: 12px;
  padding: 5px 0 0 0;
}

.deesContent__btn {
  margin-top: 24px;
  padding: 6px 0 18px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  background-color: var(--color-red);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 23px;
  color: var(--color-white);
  position: relative;
}
.deesContent__btn::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 10px;
  height: 10px;
  bottom: 9px;
  margin: auto;
  border-top: 2px solid var(--color-white);
  border-left: 2px solid var(--color-white);
  transform: rotate(225deg);
  z-index: 2;
}


/* PC */
@media (min-width: 768px) {
  .descContent__inner {
    /* width: 100%; */
    max-width: 960px;
    padding-bottom: 80px;
  }
  .descContent__header {
    font-size: 28px;
    padding-top: 60px;
    line-height: calc(36/28);
  }
  .deesContent__wrapper {
    width: fit-content;
    font-size: 16px;
    padding-top: 40px;
    letter-spacing: 0.01em;
  }
  .deesContent__note {
    font-size: 12px;
    padding: 15px 0 0;
    line-height: calc(32/22);
    margin: 0 auto;
  }

  .deesContent__btn {
    font-size: 16px;
    max-width: 460px;
    margin: 36px auto 0;
  }
  .deesContent__btn::after {
    right: 20px;
    width: 12px;
    height: 12px;
  }

}

/*
========================================
navigation
========================================
*/
.navigation {
  background-color: #134ff3;
}
.navigation__inner {
  /* width: calc(343 / 375* 100%); */
  margin: 0 auto;
  /* padding: 10px 0; */
  display: flex;
  flex-direction: column;
}
.navigation__row {
  display: flex;
  justify-content: space-around;
  padding: 5px 0;
}
.navigation__row:first-child {
  border-bottom: solid 1px var(--color-white);
  margin-bottom: 10px;
  padding-bottom: 10px;
}
.navigation__item {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.navigation__item > a {
  display: block;
  text-decoration: none;
  color: var(--color-white);
  font-size: 12px;
  line-height: 1.2em;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 0 10px 0;
  text-align: center;
  position: relative;
  /* height: 30px; */
  width: 100%;
  letter-spacing: 0.01em;
}
.navigation__item > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  margin: 0 auto;
  width: 4px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: calc(tan(60deg) * 4px) solid var(--color-white);
}
.navigation__item + .navigation__item {
  border-left: 1px solid var(--color-white);
}

/* PC */
@media (min-width: 768px) {
  .navigation__inner {
    width: 100%;
    max-width: 844px;
    margin: 0 auto;
    /* padding: 10px 0; */
    display: flex;
    flex-direction: column;
  }
  .navigation__item {
    margin: 10px 0;
  }
  .navigation__item > a {
    font-size: 18px;
    /* height: 50px; */
    padding: 5px 0 20px;
  }
  .navigation__item > a::after {
    content: "";
    bottom: 2px;
    width: 7px;
    padding: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: calc(tan(60deg) * 7px) solid var(--color-white);
  }
}

/*
========================================
exContent
========================================
*/
.exContent {}

.exContent__inner {
  width: calc(343 / 375* 100%);
  margin: 0 auto;
  padding: 40px 0 0;
}
.exContent__header {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}

.exContent__description {
  font-size: 14px;
  padding-top: 10px;
}
.exContent__tagBox {
  background-color: var(--color-lightblue);
  border-radius: 10px;
  margin-top: 25px;
}
.exContent__tagIllust {
  width: 66%;
  margin: 0 auto;
  display: block;
  padding-top: 20px;
}
.exContent__tagTxt {
  font-size: 12px;
  width: calc(283 / 343* 100%);
  margin: 18px auto 0;
}
.exContent__useIllust {
  padding: 16px;
}
.exContent__btn {
  margin-top: 24px;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  background-color: var(--color-red);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 23px;
  color: var(--color-white);
  position: relative;
}
.exContent__btn::after {
  content: "";
  position: absolute;
  right: 16px;
  width: 10px;
  height: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  border-top: 2px solid var(--color-white);
  border-left: 2px solid var(--color-white);
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  z-index: 2;
}
.exContent__note {
  font-size: 12px;
  padding-top: 10px;
  letter-spacing: 0.03em;
}

/* PC */
@media (min-width: 768px) {
  .exContent__inner {
    /* width: 100%; */
    max-width: 844px;
    padding: 80px 0 40px;
  }
  .exContent__header {
    font-size: 28px;
    line-height: 1;
  }
  .exContent__description {
    font-size: 16px;
    padding-top: 15px;
    line-height: calc(24/16);
    letter-spacing: 0.03em;
    /* padding: 0 40px; */
  }
  .exContent__tagIllust {
    width: 50%;
    padding-top: 56px;
  }
  .exContent__tagTxt {
    font-size: 16px;
    width: calc(740 / 844 * 100%);
    margin: 54px auto 0;
    letter-spacing: 0.02em;
    line-height: calc(24/16);
  }
  .exContent__useIllust {
    width: calc(740 / 844 * 100%);
    margin: 0 auto;
    padding: 24px 0 54px 0;
  }
  .exContent__btn {
    margin-top: 36px;
    font-size: 16px;
    max-width: 460px;
    margin: 36px auto 0;
  }
  .exContent__btn::after {
    right: 20px;
    width: 12px;
    height: 12px;
  }
  .exContent__note {
    font-size: 14px;
    padding-top: 12px;
  }
}
@media (min-width: 924px) {
  .exContent__description {
    padding: 0 0px;
  }

}

/*
========================================
useContent
========================================
*/
.useContent {}

.useContent__inner {
  width: calc(343 / 375* 100%);
  margin: 0 auto;
  padding: 40px 0 20px;
}
.useContent__header {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}
.useContent__wrapper {
  background-color: var(--color-gray);
  border-radius: 10px;
  margin-top: 20px;
  padding-bottom: 20px;
}
.useContent__flowImage {
  padding: 20px 16px 0 16px;
}
.useContent__service {
  background-color: var(--color-white);
  border-radius: 5px;
  padding: 10px;
  margin: 5px 16px 0;
}
.useContent__serviceTitle {
  font-size: 18px;
  font-weight: 700;
}
.useContent__serviceTxt {
  font-size: 12px;
}
.useContent__note {
  font-size: 12px;
  padding: 5px 16px 0 16px;

}
.useContent__flowBtn {
  background-color: #bf0000;
  display: block;
  color: var(--color-white);
  text-decoration: none;
  margin: 20px 21px 0;
  border-radius: 40px;
  text-align: center;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 700;
  position: relative;
}
.useContent__flowBtn::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: 3px solid var(--color-white);
  border-right: 3px solid var(--color-white);
}
.useContent__btn {
  margin-top: 30px;
}

/* 350以下 */
@media (max-width: 350px) {
  .useContent__flowBtn::after {
    right: 12px;
  }
}

/* PC */
@media (min-width: 768px) {
  .useContent__inner {
    /* width: 100%; */
    max-width: 844px;
    margin: 0 auto;
    padding: 40px 0 60px;
  }
  .useContent__header {
    font-size: 28px;
    line-height: 1;
    margin-bottom: 0px;
  }
  .useContent__wrapper {
    background-color: var(--color-gray);
    margin-top: 36px;
    padding-bottom: 10px;
  }
  .useContent__flowImage {
    width: calc(740 / 844 * 100%);
    margin: 0 auto;
    padding: 55px 0 0 0;
  }
  .useContent__service {
    width: calc(740 / 844 * 100%);
    margin: 0 auto;
    padding: 25px;
  }
  .useContent__serviceTitle {
    font-size: 28px;
    line-height: 1;
  }
  .useContent__serviceTxt {
    font-size: 16px;
    margin-top: 12px;
    line-height: calc(24/16);
  }
  .useContent__note {
    font-size: 12px;
    padding: 12px 0 0;
    line-height: calc(18/12);
    width: calc(740 / 844 * 100%);
    margin: 0 auto;
  }
  .useContent__flowBtn {
    margin: 28px auto;
    padding: 18px 0;
    border-radius: 60px;
    font-size: 24px;
    line-height: calc(28/24);
    width: calc(606 / 844 * 100%);
  }
  .useContent__flowBtn::after {
    content: "";
    right: 40px;
    width: 15px;
    height: 15px;
    border-top: 5px solid var(--color-white);
    border-right: 5px solid var(--color-white);
  }
  .useContent__btn {
    margin-top: 60px;
  }
}

/*
========================================
pleaseContent > sellerContent + buyerContent
========================================
*/
.pleaseContent {}

.pleaseContent__inner {
  width: calc(343 / 375* 100%);
  margin: 0 auto;
  padding: 20px 0;
}
.pleaseContent__header {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}


.sellerContent {
  background-color: #ffe8e8;
}
.sellerContent__header {
  background-color: var(--color-red);
}

.sellerContent__tagLink {
  text-align: right;
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-top: 10px;
  padding-right: 10px;
  position: relative;
  letter-spacing: 0.01em;
}
.sellerContent__tagLink::after {
  content: "";
  width: 8px;
  height: 8px;
  top: 50%;
  right: 0px;
  transform: translateY(-50%) rotate(45deg);
  border-top: 3px solid var(--color-blue);
  border-right: 3px solid var(--color-blue);
  position: absolute;

}

.buyerContent {
  background-color: var(--color-lightblue);
  margin-top: 16px;
}
.buyerContent__header {
  background-color: var(--color-blue);
}


.sellerContent ,
.buyerContent {
  border-radius: 5px;
  padding: 20px 16px;
}
.sellerContent__header ,
.buyerContent__header {
  color: var(--color-white);
  font-size: 17px;
  font-weight: 700;
  width: 50%;
  margin: 0 auto;
  text-align: center;
  padding: 8px 0;
  border-radius: 5px;
}
.sellerContent__wrapper ,
.buyerContent__wrapper {
  margin-top: 15px;
  font-size: 12px;

}
.sellerContent__title ,
.buyerContent__title {
  font-size: 14px;
  padding-top: 10px
}

/* PC */
@media (min-width: 768px) {
  .pleaseContent__inner {
    padding: 40px 0 60px;
  }
  .pleaseContent__header {
    font-size: 28px;
    line-height: 1;
    margin-bottom: 36px;
  }

  .sellerContent ,
  .buyerContent {
    margin: 0 auto;
    width: 100%;
    max-width: 844px;4
    border-radius: 10px;
    padding: 40px;
  }
  .buyerContent {
    margin-top: 24px;
  }

  .sellerContent__header ,
  .buyerContent__header {
    font-size: 24px;
    width: calc(298 / 844 * 100%);
    padding: 15px 0;
    border-radius: 10px;
    line-height: 1;
  }
  .sellerContent__title ,
  .buyerContent__title {
    font-size: 24px;
    padding-top: 20px
  }
  .sellerContent__txt,
  .buyerContent__txt {
    font-size: 16px;
    line-height: calc(24/16);
  }
  .sellerContent__tagLink {
    font-size: 16px;
    padding-right: 20px;
  }
  .sellerContent__tagLink::after {
    content: "";
    width: 12px;
    height: 12px;
    transform: translateY(-50%) rotate(45deg);
    border-top: 3px solid var(--color-blue);
    border-right: 3px solid var(--color-blue);
  }

}



/*
========================================
methodContent
========================================
*/
.methodContent {}

.methodContent__inner {
  width: calc(343 / 375* 100%);
  margin: 0 auto;
  padding: 20px 0;
}
.methodContent__header {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}
.methodContent__logo {
  width: 64%;
  margin: 0px auto;
  padding-top: 10px;
}
.methodContent__item {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding-top: 24px;
}
.methodContent__itemImage {
  width: 50%;
}
.methodContent__itemTxt {
  width: 50%;
  text-align: center;
  font-size: 12px;
  line-height: 1.3;
}
.methodContent__itemTxt .emphasis {
  font-weight: 700;
}
.methodContent__btn {
  margin-top: 20px;
}

/* PC */
@media (min-width: 768px) {
  .methodContent__inner {
    width: 100%;
    max-width: 844px;
    padding: 40px 0 60px;
  }
  .methodContent__header {
    font-size: 28px;
    line-height: 1;
  }
  .methodContent__logo {
    width: calc(480 / 844 * 100%);
    margin: 0px auto;
    padding-top: 10px;
    padding-bottom: 30px;
  }
  .methodContent__item {
    /* display: flex;
    align-items: center;
    justify-content: center; */
    margin: auto;
    padding-top: 32px;
    width: 500px;
  }
  .methodContent__itemImage {
    width: 260px;
  }
  .methodContent__itemTxt {
    width: auto;
    text-align: center;
    font-size: 16px;
    line-height: 1.3;
  }
}

/*
========================================
tagItem
========================================
*/
.tagItem__title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  width: fit-content;
  margin: 0 auto;
}
.tagItem__text {
  font-size: 12px;
  line-height: 1.2em;
  padding-top: 24px;
}
.tagItem__image {
  max-width: 470px;
  margin: 24px auto;
  width:calc((300 / 343) * 100%);
}
.tagItem__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px 12px;
}
.tagItem__listItem {
  width: calc((100% - 12px) / 2);
}
.tagItem__listLink {
  display: block;
  text-decoration: none;
  position: relative;
  background-color: #ffffff;
  border: 1px solid var(--color-gray);
}
.tagItem__listLink::after {
  content: "";
  position: absolute;
  right: 5px;
  bottom: 0px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-left: 10px solid var(--color-blue);
  border-bottom: 10px solid transparent;
  transform: rotate(45deg);
  z-index: 2;
}
.tagItem__listItemName {
  text-align: center;
  color: var(--color-blue);
  line-height: 1em;
  padding-bottom: 12px;
  font-weight: 700;
}
.tagItem__tabList {
  display: flex;
  flex-direction: column;
  margin-top: 6px;
  row-gap: 6px;
}
.tagItem__tabListItem {
  width: 100%;
  padding: 2px 0;
  border-radius: 100vh;
  background-color: var(--color-gray);
  text-align: center;
  color: #333;
  font-size: 12px;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.tagItem__note {
  font-size: 12px;
  line-height: 1.2em;
  padding-top: 12px;
}

/* PC */
@media (min-width: 768px) {
  .tagItem__title {
    font-size: 24px;
  }
  .tagItem__text {
    font-size: 16px;
    padding-top: 32px;
    text-align: center;
    letter-spacing: 0.03em;
  }
  .tagItem__image {
    margin: 36px auto;
  }
  .tagItem__list {
    flex-wrap: nowrap;
    gap: 24px 12px;
  }
  .tagItem__listItem {
    width: calc((100% - 36px) / 4);
  }
  .tagItem__listLink::after {
    border-top: 14px solid transparent;
    border-left: 14px solid var(--color-blue);
    border-bottom: 14px solid transparent;
  }
  .tagItem__listItemName {
    padding-bottom: 14px;
  }
  .tagItem__tabListItem {
    width: 80%;
    margin: 0 auto;
    letter-spacing: 0.01em;
  }
  .tagItem__note {
    padding-top: 24px;
    text-indent: -12px;
    padding-left: 12px;
  }
}

/*
========================================
qaContent
========================================
*/
.qaContent {}

.qaContent__inner {
  width: calc(343 / 375* 100%);
  margin: 0 auto;
  padding: 20px 0 0px;
}
.qaContent__header {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}
.qaContent__wrapper {
  background-color: var(--color-gray);
  border-radius: 5px;
  padding: 0px 16px 16px 16px;
}
.qaContent__list {
  padding-top: 20px;
}
.qaContent__title {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  position: relative;
  width: fit-content;
  margin: 0 auto;
  padding: 0 5px;
}
.qaContent__title::after {
  content: "";
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -5px;
}
.qaContent__title--red::after {
  border-bottom: 3px solid var(--color-red);
}
.qaContent__title--blue::after {
  border-bottom: 3px solid var(--color-blue);
}
.qaContent__listItem {
  margin-top: 15px;
}
.qaContent__qItem {
  margin-top: 10px;
}
.qaContent__qItem,
.qaContent__aItem {
  font-size: 12px;
  padding-left: 26px;
  position: relative;
  padding-top: 5px;
}
.qaContent__qItem::before,
.qaContent__aItem::before {
  position: absolute;
  top: 5px;
  left: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 3px;
}
.qaContent__qItem::before {
  content: "Q";
  color: var(--color-white);
  background-color: var(--color-black);
}
.qaContent__aItem::before {
  content: "A";
  color: var(--color-black);
  background-color: var(--color-white);
}

/* PC */
@media (min-width: 768px) {
  .qaContent__inner {
    /* width: 100%; */
    max-width: 844px;
    margin: 0 auto;
    padding: 20px 0 0px;
  }

  .qaContent__header {
    font-size: 28px;
    line-height: 1;
    margin-bottom: 36px;
  }
  .qaContent__wrapper {
    border-radius: 10px;
    padding: 10px 40px 40px 40px;
  }
  .qaContent__list {
    padding-top: 40px;
  }
  .qaContent__title {
    font-size: 28px;
    padding: 0 10px;
  }
  .qaContent__title--red::after {
    border-bottom: 5px solid var(--color-red);
  }
  .qaContent__title--blue::after {
    border-bottom: 5px solid var(--color-blue);
  }
  .qaContent__qItem,
  .qaContent__aItem {
    font-size: 16px;
    padding-left: 50px;
    padding-top: 26px;
    line-height: calc(24/16);
  }
  .qaContent__qItem::before,
  .qaContent__aItem::before {
    top: 20px;
    left: 0px;
    font-size: 24px;
    width: 37px;
    height: 37px;
    border-radius: 5px;
  }

}


/*
========================================
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;
  }
}

/*
========================================
floatingnavigation
========================================
*/
/* SP */
.floatingNavigation {
  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(-9999px);
  pointer-events: none;
}
.floatingNavigation.slide_in{
  pointer-events: auto;
}
@media (min-width: 768px) {
  .floatingNavigation .navigation__row{
    padding: 10px 0;
  }
  .floatingNavigation .navigation__item {
    margin: 0px;
  }
  .floatingNavigation .navigation__item > a {
    font-size: 18px;
    /* height: 40px; */
    padding: 5px 0 20px;
  }
  .floatingNavigation .navigation__item > a::after {
    content: "";
    bottom: 0px;
  }
}

/*
========================================
loading
========================================
*/
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  transition: all 0.5s;
  background-color: var(--color-white);
  z-index: 9999;
}
#loading.loaded {
  opacity: 0;
  visibility: hidden;
}


/* 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(-500px);
    opacity: 0;
  }
}
.slide_out {
	animation: slide_out 0.8s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}
/* /animation */
