@charset "utf-8";
/* CSS Document */

:root {
  --color-primary: #ff7900;
  --color-secondary: #ffefdf;
  --color-black: #333333;
  --color-white: #ffffff;
  --color-light-gray: #f7f7f7;
  --color-pale-gray: #c5c5c5;

  --fontSize-xlarge: 4.8rem;
  --fontSize-large: 3.2rem;
  --fontSize-medium: 2rem;
  --fontSize-normal: 1.6rem;
  --fontSize-small: 1.4rem;
}

/* =================================================================
 * 
 *  共通
 * 
 * ================================================================= */

html {
  font-size: 62.5%; /*16px × 62.5=10px*/
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--color-black);
  font-size: var(--fontSize-normal);
  font-weight: 400; /* regular-400 bold-600 black-700 */
  font-feature-settings: "palt";
  line-height: 1.8;
  background-color: var(--color-white);
}

p {
  margin-bottom: 0.5em;
}
p:last-child {
  margin-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

a {
  color: currentColor;
  text-decoration: none;
  transition: all 0.2s;
}

a:hover,
a:focus {
  opacity: 0.7;
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

/* デバイスごとの非表示
 * ====================== */

.sp {
  display: none;
}
.tb {
  display: none;
}
@media screen and (max-width: 1200px) {
  .sp {
    display: none;
  }
  .tb {
    display: block;
  }
  .pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
  .tb {
    display: none;
  }
  .pc {
    display: none;
  }
}

/* セクション
 * ====================== */

.section {
  padding: 120px 0;
}
@media screen and (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
}

.entry-section {
  padding: 120px 0 0 0;
}
@media screen and (max-width: 768px) {
  .entry-section {
    padding: 60px 0 0 0;
  }
}

.footer-section {
  padding: 30px 0 10px 0;
}

.section__inner {
  width: 94%;
  max-width: 1140px;
  margin-inline: auto;
}

/* 見出しと説明
 * ====================== */

/* 見出し（下線）*/
.h2 {
  position: relative;
  margin-bottom: 80px;
  border-radius: 2px;
  font-size: clamp(2rem, 1.22rem + 3.9vw, 4rem);
  text-align: center;
  line-height: 1.4;
}
.h2::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 5px;
  bottom: -20px;
  left: 50%;
  background-color: var(--color-primary);
  transform: translateX(-50%);
}

.h2-discription {
  width: fit-content;
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: 60px;
}

.h3 {
  position: relative;
  font-size: clamp(1.5rem, 1rem + 1.6vw, 2.6rem);
  line-height: 1.4;
  font-weight: 600;
}

/* リストスタイル
 * ====================== */

ul li {
  position: relative;
  padding-left: 1em;
  list-style-position: inside;
  list-style: none;
}

/* 黒丸 */
ul li.decimal::before {
  content: " ";
  display: inline-block;
  position: absolute;
  top: 1em;
  left: 0.3em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--color-black);
  transform: translateY(-50%);
}

/* 白丸 */
ul li.decimal-white::before {
  content: " ";
  display: inline-block;
  position: absolute;
  top: 1em;
  left: 0.3em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  border: solid 1px var(--color-black);
  background-color: var(--color-white);
  transform: translateY(-50%);
}

/* 背景
 * ====================== */

.bg-lightGray {
  background-color: var(--color-light-gray);
}

.bg-lightOrange {
  background-color: var(--color-secondary);
}

.bg-orange {
  background-color: var(--color-primary);
}

.bg-white {
  background-color: var(--color-white);
}

/* カード
 * ====================== */

.card {
  padding: 6rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px 0 #00000008;
  position: relative;
}
@media screen and (max-width: 768px) {
  .card {
    padding: 2rem;
  }
}

/* 文字 強調 強弱
 * ====================== */

.text-orange {
  color: var(--color-primary);
}

.text-lightOrange {
  color: var(--color-secondary);
}

.text-large {
  font-size: clamp(1.8rem, 1.566rem + 1.17vw, 2.4rem);
  font-weight: 600;
}

.text-small {
  font-size: var(--fontSize-small);
}

.bold {
  font-weight: 600;
}

.h-neue {
  vertical-align: baseline;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 1.509rem + 1.45vw, 2.6rem);
  line-height: 5rem;
  letter-spacing: 0;
}

/* ボタン
 * ====================== */

.btn {
  display: block;
  width: 100%;
  max-width: 22em;
  margin-inline: auto;
  padding: 0.5em 0.2em 0.5em;
  border: solid 2px transparent;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  font-size: clamp(1.5rem, 1.149rem + 1.76vw, 2.4rem);
  font-weight: 600;
  text-align: center;
}

.btn:has(+ p) {
  margin-bottom: 10px;
}

/* ボタン */

.btn-orange {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* =================================================================
 * 
 *  セクション
 * 
 * ================================================================= */

/* mv
 * ====================== */
.mv {
  background-color: var(--color-secondary);
  overflow: hidden;
}

.mv__box {
  display: flex;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 120px;
  margin-top: 120px;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .mv__box {
    flex-direction: column;
    margin-bottom: 60px;
    margin-top: 60px;
  }
}

.mv__left {
  width: calc(50% - 10px);
}
@media screen and (max-width: 768px) {
  .mv__left {
    width: 100%;
    margin-bottom: 30px;
  }
}

.mv__right {
  width: calc(50% - 10px);
}
@media screen and (max-width: 768px) {
  .mv__right {
    width: 100%;
  }
}

h1 {
  margin-bottom: 60px;
}

h1 img {
  display: block;
}

h1 img:first-of-type {
  margin-bottom: 10px;
}

/* このようなことでお困りではありませんか？
 * ====================== */

.voice__box {
  max-width: 900px;
  margin-inline: auto;
}
.voice__box img {
  width: 150px;
}

.voice__dialog {
  margin-bottom: 60px;
}

.voice__box .voice__item:nth-of-type(2n) img {
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .voice__box .voice__item:nth-of-type(2n) img {
    margin-right: 0;
  }
}

.voice__box .voice__item:nth-of-type(2n-1) img {
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .voice__box .voice__item:nth-of-type(2n-1) img {
    margin-left: 0;
  }
}

.voice__item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  font-size: clamp(1.6rem, 1.444rem + 0.78vw, 2rem);
  align-items: center;
}
@media screen and (max-width: 768px) {
  .voice__item {
    flex-direction: column-reverse;
  }
}

.voice__box .voice__dialog:last-of-type {
  margin-bottom: 0;
}

.voice__box .voice__dialog:last-of-type .voice__item:last-of-type {
  margin-bottom: 0;
}

.voice__item:nth-of-type(2n) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .voice__item:nth-of-type(2n) {
    flex-direction: column-reverse;
  }
}

.voice__text {
  width: 100%;
  background-color: var(--color-white);
  padding: 30px;
  border-radius: 1rem;
  position: relative;
  margin-bottom: 0;
}

.voice__text span {
  color: var(--color-primary);
  font-weight: 600;
}

.voice__dialog .voice__item:first-of-type .voice__text {
  background-color: var(--color-secondary);
}

.voice__dialog .voice__item:last-of-type .voice__text {
  background-color: var(--color-white);
  border: solid 1px var(--color-pale-gray);
}

.voice__dialog .voice__item:first-of-type .voice__text::before {
  content: "";
  border-right: 15px solid transparent;
  border-top: 15px solid var(--color-secondary);
  position: absolute;
  top: calc(40% + 1px);
  right: -14px;
}
@media screen and (max-width: 768px) {
  .voice__dialog .voice__item:first-of-type .voice__text::before {
    display: none;
  }
}

.voice__dialog .voice__item:last-of-type .voice__text::before {
  content: "";
  border-left: 16px solid transparent;
  border-top: 16px solid var(--color-pale-gray);
  position: absolute;
  top: 40%;
  left: -16px;
}
@media screen and (max-width: 768px) {
  .voice__dialog .voice__item:last-of-type .voice__text::before {
    display: none;
  }
}

.voice__dialog .voice__item:last-of-type .voice__text::after {
  content: "";
  border-left: 15px solid transparent;
  border-top: 15px solid var(--color-white);
  position: absolute;
  top: calc(40% + 1px);
  left: -14px;
}
@media screen and (max-width: 768px) {
  .voice__dialog .voice__item:last-of-type .voice__text::after {
    display: none;
  }
}

.voice__dialog .voice__item:first-of-type .voice__text p {
  width: fit-content;
  margin-inline: auto;
}

/* 中国人向けのオンライン決済
 * ====================== */

.app__online {
  display: flex;
  gap: 20px;
  max-width: 900px;
  margin-inline: auto;
  margin-bottom: 60px;
}

.app__online > div {
  width: 50%;
}

.app__online-box {
  padding: 20px 0;
  border: solid 1px var(--color-pale-gray);
  border-radius: 10px;
  text-align: center;
  margin-bottom: 30px;
  background-color: var(--color-white);
  width: 100%;
}

.app__online-box img {
  max-width: 300px;
  width: 90%;
}

.app h3 {
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
  font-size: var(--fontSize-medium);
  line-height: 1.5;
}

.app__list {
  margin-bottom: 60px;
}

.app .app__list:last-child {
  margin-bottom: 0;
}

.app__box {
  padding: 20px 0;
  border: solid 1px var(--color-pale-gray);
  border-radius: 10px;
  text-align: center;
  margin-bottom: 30px;
  background-color: var(--color-white);
}

.app__list .app__largeWrapper:last-of-type .app__box {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .app__list .app__largeWrapper:last-of-type .app__box {
    margin-bottom: 30px;
  }
  .app__list
    > div.app__largeWrapper:last-of-type
    > div:last-of-type
    > .app__box {
    margin-bottom: 0;
  }
}

.app__smallWrapper {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.app__mediumWrapper {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.app__mediumWrapper div {
  width: 100%;
}

.app__largeWrapper {
  max-width: 400px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .app__largeWrapper {
    max-width: 900px;
    display: flex;
    justify-content: center;
    gap: 20px;
  }
}

.app__largeWrapper > div {
  width: 100%;
}

.app__box li {
  padding-left: 0;
}

.app__box-title {
  width: fit-content;
  margin-inline: auto;
}

.app__box p {
  font-size: var(--fontSize-small);
  line-height: 1.3;
}

.app__box img {
  height: 80px;
}

/* ご利用方法
 * ====================== */
.howto__list {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1140px) {
  .howto__list {
    max-width: 400px;
    margin-inline: auto;
    flex-direction: column;
  }
}

.howto__list__inner {
  position: relative;
  border: solid 1px var(--color-pale-gray);
  border-radius: 10px;
  padding: 20px;
}

.howto__list__inner > div {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 1140px) {
  .howto__list__inner > div {
    flex-direction: column;
  }
}

.howto__list__inner:first-of-type:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -50px;
  margin-top: -15px;
  border: 10px solid transparent;
  border-left: 15px solid var(--color-primary);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1140px) {
  .howto__list__inner:first-of-type:before {
    top: inherit;
    bottom: -50px;
    right: 45%;
    border-top: 15px solid var(--color-primary);
    border-left: 10px solid var(--color-white);
  }
}

.howto__list__inner p {
  text-align: center;
  font-weight: 600;
  font-size: var(--fontSize-medium);
  margin-bottom: 20px;
}

.howto__item {
  position: relative;
  margin-top: 25px;
  padding-left: 0;
  background-color: var(--color-secondary);
  padding: 40px 10px 30px;
}
@media screen and (max-width: 768px) {
  .howto__item {
    width: 100%;
  }
}

.howto__item:last-of-type::before {
  display: none;
}
@media screen and (max-width: 1050px) {
  .howto__item:nth-of-type(2)::before {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .howto__item::before {
    display: none;
  }
}

.howto__item .howto__num {
  position: absolute;
  display: flex;
  top: 0;
  left: 50%;
  width: 50px;
  height: 50px;
  margin-bottom: 0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--color-black);
  color: var(--color-white);
  font-size: var(--fontSize-large);
  font-weight: 600;
  text-align: center;
  transform: translate(-50%, -50%);
}

.howto__item .howto__text {
  margin-bottom: 30px;
  color: var(--color-primary);
  font-size: var(--fontSize-medium);
  font-weight: 600;
  text-align: center;
}

.howto__case {
  display: flex;
  gap: 10%;
  margin-bottom: 60px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .howto__case {
    flex-direction: column;
    gap: 40px;
  }
}

.howto__case > div {
  background-color: var(--color-white);
  border-radius: 10px;
}

.howto__case h3 {
  font-size: var(--fontSize-medium);
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}

.howto__case-img {
  text-align: center;
}

.howto__case-img img {
  max-width: 250px;
  width: 100%;
}

.howto__case p {
  margin-bottom: 20px;
  text-align: center;
}

/* 導入事例
 * ====================== */

.example__item {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .example__item {
    max-width: 800px;
    margin-inline: auto;
  }
}

.example__item:last-of-type {
  margin-bottom: 0;
}

.example__item h3 {
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 10px 10px 0 0;
  padding: 0.5em 0.5em 0.5em 60px;
}
@media screen and (max-width: 768px) {
  .example__item h3 {
    padding: 0.5em 0.5em 0.5em 30px;
  }
}

.example__body {
  background-color: var(--color-white);
  border-radius: 0 0 10px 10px;
  padding: 30px 60px 60px;
}
@media screen and (max-width: 768px) {
  .example__body {
    padding: 30px;
  }
}

.example__summary {
  font-size: var(--fontSize-medium);
  font-weight: 600;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .example__summary {
    width: fit-content;
    margin-inline: auto;
  }
}

.example__text-wrapper {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .example__text-wrapper {
    flex-direction: column-reverse;
  }
}

.example__text {
  padding-right: 30px;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .example__text {
    padding-right: 0;
  }
}

.example__img {
  max-width: 25%;
  height: fit-content;
  min-width: 200px;
}
@media screen and (max-width: 768px) {
  .example__img {
    margin-bottom: 30px;
  }
}

/* 導入コスト
 * ====================== */

.cost__list {
  display: flex;
  justify-content: space-around;
  margin-bottom: 60px;
}

.cost__item {
  width: 30%;
  max-width: 250px;
}

.cost__note {
  position: relative;
  padding-left: 1.5em;
  width: fit-content;
  margin-inline: auto;
}

.cost__note::before {
  content: "※";
  position: absolute;
  width: 1em;
  height: 1em;
  top: 0;
  left: 0;
}

/* 申込～審査～利用開始までの流れ
 * ====================== */

.step h3 {
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}
.step3 {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 3rem;
  margin-bottom: 60px;
  padding-left: 30px;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .step3 {
    flex-direction: column;
    gap: 30px;
  }
}

.step3 p {
  text-align: center;
  font-weight: 600;
}

.step3::after {
  content: "";
  position: absolute;
  width: 94%;
  height: 0.2rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-white);
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .step3::after {
    width: 0.2rem;
    height: 94%;
  }
}

.step3__card {
  display: flex;
  align-items: center;
  width: 30%;
  position: relative;
  padding: 3rem;
  background-color: var(--color-white);
  justify-content: center;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .step3__card {
    width: 100%;
    max-width: 400px;
    min-width: 270px;
    margin-inline: auto;
  }
}

.step3-icon {
  position: absolute;
  width: 6rem;
  height: 6rem;
  top: 50%;
  left: -3rem;
  border-radius: 15rem;
  background: var(--color-primary);
  text-align: center;
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  line-height: 2;
  transform: translateY(-50%);
}

.step__note {
  border: solid 1px var(--color-pale-gray);
  margin-bottom: 60px;
  box-shadow: none;
}

.step__note h3 {
  text-align: left;
}

/* よくある質問
 * ====================== */
.faq .card {
  margin-bottom: 40px;
}

.faq .card:last-of-type {
  margin-bottom: 0px;
}

.faq .card-area {
  margin-bottom: 60px;
}

.faq .card-area:last-of-type {
  margin-bottom: 0;
}

span.num {
  font-size: clamp(3.5rem, 2.373rem + 5.64vw, 6.6rem);
  line-height: 1;
  padding-right: 1.3rem;
}

.faq .answer {
  position: relative;
  margin-top: 3rem;
  padding-left: 6rem;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .faq .answer {
    padding-left: 5.5rem;
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 500px) {
  .faq .answer {
    padding-left: 4.5rem;
  }
}

.faq .answer::before {
  content: "";
  position: absolute;
  width: 2.4rem;
  height: 2.4rem;
  top: 0.3rem;
  left: 1.3rem;
  background: url(../img/lp-arrow_right_line.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .faq .answer::before {
    left: 0.6rem;
  }
}

.faq ul {
  margin-bottom: 10px;
}

.question__title {
  display: flex;
  align-items: center;
}

.faq-note {
  position: relative;
  padding-left: 1.5em;
}

.faq-note::before {
  content: "※";
  position: absolute;
  width: 1em;
  height: 1em;
  top: 0;
  left: 0;
}

/*メールアドレス登録
 * ====================== */

/* footer
 * ====================== */

.footer {
  color: #fff;
}

.footer a {
  color: currentColor;
  text-decoration: none;
  transition: all 0.2s;
}

.footer__nav {
  width: fit-content;
  margin-inline: auto;
  text-align: center;
}

.footer__logo {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    display: block;
  }
}

.footer__logo img {
  width: 110px;
}

.footer__title {
  margin-left: 1.5rem;
  font-size: clamp(1.4rem, 1rem + 1vw, 2.4rem);
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .footer__title {
    margin-left: 0;
  }
}

/* pabe top
 * ====================== */

#page-top {
  position: fixed;
  z-index: 99;
  right: 20px;
  bottom: 40px;
  font-size: var(--fontSize-small);
  line-height: 1;
}
#page-top a {
  display: block;
  opacity: 0.9;
  width: 50px;
  border-radius: 90px;
  background: var(--color-black);
  padding: 18px 0;
  color: var(--color-white);
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
#page-top a:hover,
#page-top a:focus {
  text-decoration: none;
  opacity: 0.7;
}
