/* sp.css */
@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap');

@media screen and (max-width : 480px){
	html,
	body {
		overflow-x: hidden;
		overflow-y: scroll;
	}
}
/* ブラウザデフォルト*/

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
header,
hgroup,
section,
article,
aside,
hgroup,
footer,
figure,
figcaption,
nav {
  margin: 0;
  padding: 0;
  font-size: 100%;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: none;
}

article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary {
  display: block;
}

img {
  border: 0;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
}

ul,
ol {
  list-style: none;
}

table {
  border-spacing: 0;
  empty-cells: show;
}


/* 最大幅を設定 */
body {
  max-width: 480px;
  /* 480pxが一般的な上限値 */
  margin: 0 auto;
  /* 水平方向の中央寄せ */
  font-family: 'Noto Sans JP', sans-serif;
}

/* コンテンツのコンテナ */
.container {
  width: 100%;
  margin: 0 auto;
  /* 中央寄せ */
  padding: 0;
  /* 左右の余白を追加 */
}

.header {
  width: 100%;
  height: 80px;
  /* 高さを120pxに変更 */
  background-color: #fff;
  margin: 0 auto;
  /* 中央寄せ */
  padding: 0;
  /* 左右の余白を追加 */
}

.header-container {
  display: flex;
  flex-direction: row;
  /* 要素を横に配置 */
  justify-content: center;
  /* 要素を中央に配置 */
  align-items: center;
  /* 要素を中央に配置 */
}

.logo {
  margin-right: 20px;
  /* ロゴとタイトルの間に横方向の余白を追加 */
}

.button-container {
  margin-left: 20px;
  /* ボタンとタイトルの間に横方向の余白を追加 */
}

.subtitle {
  margin: 0;
  font-size: 0.8em;
  color: #000;
  padding: 20px 0 0 0;
  text-align: center;
}

.title {
  font-size: 1.1em;
  margin: 0;
  padding: 10px;
  text-align: center;
}

.apply-button {
  padding: 10px 4px;
  background-color: #FAF458;
  /* 背景色を#FAF458に変更 */
  color: #333;
  /* 文字色を#333に変更 */
  border: 1px solid #000;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9em;
  font-weight: bold;
}


.issue {
  color: #000;
  /* テキストカラーを黒に設定 */
  margin-top: 40px;
  text-align: center;
  background: #ffffff;
}

.issue h2 {
  font-size: 1.4em;
  font-weight: bold;
}

.top50 {
  margin-top: 20px;
  width: 98%;
  margin-left: auto;
  /* 左右を自動マージンで中央に配置 */
  margin-right: auto;
  /* 左右を自動マージンで中央に配置 */
}

/* 仮想通貨ウォレットサポート事例 */

.box-menu {
  display: flex;
  flex-direction: column;
  /* 要素を縦に配置 */
}

.box-purple {
  margin: 0px 20px 20px 20px;
  /* 上下に余白を追加 */
  background: #EDD4F3;
  border-radius: 10px;
  /* 角丸 */
}

.list-box h2 {
  font-size: 1.6em;
  padding: 40px 20px 40px 0;
  text-align: right;
  line-height: 1.6em;
}

.icon {
  /* 女の子のイラスト */
  margin-top: -90px;
}

.box-purple dl {
  padding: 10px;
}

.box-purple dt {
  font-size: 1.4em;
  line-height: 1.2em;
  text-align: center;
  padding: 10px 0 30px 0;
  font-weight: bold;
}

.box-purple dd {
  font-size: 0.7em;
  font-weight: bold;
  line-height: 1.8em;
  text-align: left;
  margin-left: 10px;
  /* 左のスペースをなくす */

}

.slash {
  /* スラッシュ */
  font-size: 40px;
  vertical-align: middle;
}

.red {
  /* スラッシュ */
  color: #c0086B;
}


.purple {
  color: #C370D6;
}

.center{
  text-align: center;
}


/* 私たちのサポートと実績 */

.history {
  margin: 40px 20px;
  margin-bottom: 40px;
}

.history h2 {
  font-size: 1.6em;
  text-align: center;
  margin-bottom: 20px;
}


/* 横スクロールさせたいテキストを囲む要素に適用 */

    /* テキストを強制的に1行にしたい場合 */
    .single-line-scroll-container {
      overflow-x: auto;
      /* 横方向のスクロールを自動で有効にする */
      white-space: nowrap;
      /* テキストを強制的に1行に保持し、自動改行を防ぐ */
      -webkit-overflow-scrolling: touch;
      /* iOSでのスムーズなスクロールを実現 */
      padding-bottom: 8px;
      /* スクロールバーのためのスペース */
      border: 2px solid #000000;
      border-radius: 8px;
      padding: 12px;
      background-color: #ffffff;
      margin-top: 0px;
      font-size: 0.8em;
    }

    .single-line-scroll-container span {
      display: inline-block;
      /* white-space: nowrap; が効くように */
      min-width: 100%;
      /* コンテンツが短い場合でもスクロール可能にするため */
      color: #333;
      line-height: 1.6em;
    }

    .single-line-scroll-container  th {
  border-right: #000 solid 1px;
  padding-right: 12px;
  width: 20%;
}

.single-line-scroll-container  td {
  padding: 10px 0px 10px 15px;
  font-weight: 700;
  line-height: 1.2em;
}

.support {
  color: #000;
  /* テキストカラーを黒に設定 */
  padding-top: 20px;
  text-align: center;
  background: #C370D6;
  width: 100%;
  min-height: 100%;
  border-bottom: 3px solid #000;
}

.support h2 {
  color: #000;
  /* テキストカラーを黒に設定 */
  padding: 30px 0px 0px 40px;
  text-align: left;
  font-size: 1.6em;

}

.support h3 {
  color: #000;
  /* テキストカラーを黒に設定 */
  padding: 40px 40px 0px 40px;
  text-align: left;
  font-size: 1.0em;
  letter-spacing: 0.02em;
}

.big-y {
  color: #fff;
  /* テキストカラーを黒に設定 */
  font-size: 1.4em;

}




.support p {
  color: #000;
  /* テキストカラーを黒に設定 */
  padding: 14px 0px 0px 40px;
  text-align: left;
  font-size: 1.45em;
  letter-spacing: 0.1em;
  font-weight: bold;
}

/* youtube */

.form {
  font-size: 1.6em;
  padding: 50px 0px;
  text-align: center;
  margin: 50px;
}

.flow-box {
  display: flex;
  flex-direction: column;
  /* 要素を縦に配置 */
  align-items: center;
  /* 要素を中央に配置 */
  margin: 0px 30px 0px 30px;
  border: #C370D6 1px solid;
}

.title-img h3 {
  font-size: 1.2em;
  padding: 20px 10px;
  /* 角丸 */
  background: #C370D6;
  color: #fff;
  text-align: center;
  margin: 60px 30px 0px 30px;
}

.youtube {
  width: 90%;
  /* YouTubeビデオを横幅いっぱいに広げる */
  text-align: center;
  margin: 20px 0px;
}

.attention {
  text-align: center;
  /* テキストを中央に配置 */
}

/* ３つのお約束*/

.promiss h2 {
  font-size: 1.8em;
  padding: 60px 0px 10px 0px;
  text-align: center;
}

.position {
  text-align: right;
  margin-top: -300px;
}

.flex-container {
  display: flex;
  flex-direction: column;
  background-color: #ECECEC;
  padding: 12px;
  margin-top: 30px;

}

.item {
  display: flex;
  align-items: center;
  /* アイテムを中央揃え */
  padding: 20px 20px 20px 0px;
}

.item img {
  margin-right: 20px;
  /* 画像とテキストの間隔 */
}

.item h3 {
  margin-bottom: 16px;
  font-size: 1.0em;
}

.item p {
  font-size: 0.8em;
  line-height: 1.5em;
}

.small {
  font-size: 0.6em;
}

/* お申し込みの流れ*/


.form-box {
  background-color:  #EDD4F3;
  padding: 20px;
  margin: 20px;
  text-align: center;
  border-radius: 10px;
 }

 .form-box img {
  margin-top: -100px;
}
 
 .form-box h3 {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 1.6em;
 }
 
 .form-box p {
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.6em;
 }
 
 .btns {
  display: flex;
  flex-direction: column;
  align-items: center;
 }
 
 .btns a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  color: #000;
  border-radius: 20px;
  margin-bottom: 10px;
  width: 200px;
  font-weight: bold;
  font-size: 1.2rem;
 }
 
 .yellow-btn a {
  background-color: #FAF458;
 }
 
 .purple-btn a {
  background-color: #C370D6;
 }


.flows {
  display: flex;
  align-items: center;
  background: #EDD4F3;
  margin: 20px;
  border-radius: 10px;
}


.zoom-circle {
  display: inline-block;
  width: 70px;
  height: 70px;
  background-color: yellow;
  border-radius: 50%;
  text-align: center;
  line-height: 70px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin: 20px;
 }

.text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-container p {
  margin: 10px 0px;
  line-height: 1.6em;
  font-size: 1.0em;
}

.estimate-box {
  background-color:#ECECEC;
  padding: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px;
  border-radius: 10px;
}

.estimate-text {
  margin: 0;
  font-size: 1.0em;
  line-height: 1.6em;
  text-align: center;
}


.arrow1{
  width: 30px;
  height: 30px;
  border: 5px solid;
  border-color:  transparent transparent #565656 #565656;
  transform: rotate(-45deg);
}

/* よくある質問 */

.support-qa {
  background-color: #ECECEC;
}

.bg-gray {
  background-color: #ECECEC;
  display: grid;
  place-items: center;
  padding: 0px 30px;
}

.bg-gray h2 {
  font-size: 1.8em;
  padding: 60px 0px 40px 0px;
}

.purple {
  color: #C370D6;
}

.question {
  width: 100%;
  margin-bottom: 30px;
}

.question-text h3 {
  margin-left: 14px;
  font-size: 0.9em;
  font-weight: normal;
}

.faq-item {
  display: flex;
  align-items: center;
  margin-top: 0px;
  background-color: #E0C7E5;
  padding: 10px 20px;
}

.faq-ans {
  display: flex;
  align-items: center;
  margin-top: 0px;
  background-color: #ffffff;
  padding: 10px 20px;
}

.answer {
  padding: 20px 20px 30px 20px;
  background-color: #ffffff;
  text-align: left;
  font-size: 0.9em;
  line-height: 1.6em;
}


/* よくある質問ウォレット別 */
.wallet-bg {
  background: #EDD4F3 url(img/wallets-bg.png) no-repeat center;
  padding: 20px 20px;
}

.wallet-bg h2 {
  font-size: 1.8em;
  padding: 20px 0px;
  line-height: 1.4em;
  text-align: center;
}

.wallet-bg p {
  font-size: 16px;
  padding: 10px 10px;
  text-align: left;
}

.wallet-question .button {
  display: inline-block;
  margin: 10px;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
 }
 
 .wallet-question .button a {
  display: block;
  padding: 8px 8px;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  border-radius: 10px;
  transition: background-color 0.3s ease;
  border: #000 1px solid;
 }
 
 .wallet-question .button a:hover {
  background-color: #FAF458;
 }


.solution h2 {
  font-size: 1.2em;
  padding: 20px 0 20px 0px;
  line-height: 1.5em;
}

.triangle {
  position: relative;
  background: #ffffff;
  height: 1vh;
}

.triangle::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 30px 0 30px;
  border-color: #ffffff transparent transparent transparent;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
}

.support-date {
  background-color: #C370D6;
}

.about {
  display: flex;
  width: 90%;
  /* 最大幅を90%に */
  height: auto;
  /* 高さを自動調整 */
  margin: 0 auto;
  padding: 0;
  flex-wrap: wrap;
  /* 横幅が狭い場合は折り返して表示 */
}

.about p {
  line-height: 1.5em;
  padding-bottom: 10px;
}

.face {
  width: 100%;
  /* 横幅を50%に近い値に */
  background-color: white;
  border: 1px solid black;
  border-radius: 10px;
  margin: 140px 20px 80px 20px;
  /* 上下20px、左右は自動 */
}

.zoom {
  width: 100%;
  background-color: white;
  border: 1px solid black;
  border-radius: 10px;
  margin: 60px 20px 60px 20px;
  /* 上下20px、左右は自動 */
}

.face p{
  padding: 10px 20px;
  line-height: 1.6em;
  font-size: 0.9em;
}

.zoom p{
  padding: 10px 20px;
  line-height: 1.6em;
  font-size: 0.9em;
}

.face img,
.zoom img {
  margin-top: -110px;
  max-width: 100%;
  /* 画像の最大幅を100%に */
  height: auto;
  /* 高さを自動調整 */
}

.bold-bottom {
  text-align: center;
  font-size: 1.4em;
  border-bottom: 2px solid black;
  font-weight: bold;
  padding: 10px;
  margin: 0px 40px;
}

.bold {
  text-align: center;
  font-size: 1.4em;
  font-weight: bold;
  padding: 10px;
}


/* Fabbit */

.fabbit {
  width: 100%;
  background-color: #F0F0F0;
}

.fabbit img{
  max-width: 100%;
}

.box-a {
  padding: 20px 40px 20px 40px;
  box-sizing: border-box;
  text-align: center;
}

.box-a h3{
  text-align: center;
  font-size: 1.4em;
  padding: 20px 0px;
}

.box-a h4{
  text-align: center;
  border-top: #000 1px solid;
  padding-top: 20px;
  font-size: 0.8em;
}

.row {
  display: flex;
  margin-bottom: 20px;
}

.address-box {
  flex: 1;
  text-align: left;
}

.address-box span {
  height: 45px;
  line-height: 45px;
  margin-left: 20px;
}

.box-a p {
  text-align: right;
  padding-top: 20px;
}

.address-box p {
  text-align: left;
  /* Align text to the left */
  font-size: 15px;
  line-height: 18px;
  padding: 0px 0 0 20px;
  margin: 3px;
}


/* コンテンツのコンテナ */
.container {
  width: 100%;
  /* PCでは最大幅を1000pxに設定 */
  margin: 0 auto;
  /* 中央寄せ */
  padding: 0;
  /* 左右の余白を追加 */
}


/* 料金表のところ */
.price-list {
  display: flex;
  flex-direction: column;
  /* 要素を縦に配置 */
}

.pricing h2 {
  font-size: 2.0em;
  padding: 60px 0px 30px 0px;
  text-align: center;
}

.pricing h3 {
  font-size: 1.2em;
  padding: 20px 10px;
  border-radius: 8px;
  /* 角丸 */
  background: #C370D6;
  color: #fff;
  text-align: center;
  margin: 20px 20px;
}

.center {
  max-width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.image-container{
  width:90%;
  display: flex;
  justify-content: center;
  padding: 0px 20px;
}

.image-container {
  text-align: center;
}

.image-container img {
  max-width: 100%;
  height: auto;
}

.price-list {
  display: flex;
  justify-content: center;
  padding: 0px 20px;
 }
 
 .price-box {
  border: 1px solid #000;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  margin: 10px 0px;
 }
 
 .price-box h4 {
  text-align: center;
  margin-top: 0;
  font-size: 1.0em;
 }
 
 .price-box p {
  text-align: left;
 }
 
 .price-box dl {
  margin: 0;
  padding: 0;

 }
 
 .price-box dt {
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
 }
 
 .price-box dd {
  margin-left: 20px;
  text-align: left;
  line-height: 1.4em;
 }
 
 .price-box img {
  max-width: 100%;
  height: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
 }

 .price-rap {
  display: flex;
  align-items: center;
  padding: 10px 0px;
  background-color: #ECECEC;
  margin: 20px 0px;
  border-radius: 6px;
  /* 角丸 */
}

.price-rap p {
  font-size: 1.0rem;
  font-weight: bold;
}

.price-left {
  padding: 20px 0px 20px 0px;
  border-bottom: 1px solid #000000;
  text-align: center;
  /* テキストを中央に配置 */
}

.price-right {
  padding: 20px 0px 20px 0px;
  border-left: 0px;
  text-align: center;
  /* テキストを中央に配置 */
}

.gray-box {
  background-color: #f2f2f2;
  border-radius: 10px;
  padding: 10px 20px 20px 20px;
  text-align: center;
  position: relative;
  margin: 0 auto; /* 中央揃え */
}

.gray-box p {
  margin: 0;
  line-height: 1.5;
  padding: 10px 0px;
  font-weight: bold;
  font-size: 1.1rem;
}

.gray-box hr{
 border: #000 1px solid;
 margin: 10px 10px;
}





.gray-bg {
  background-color: #f2f2f2;
  border-radius: 10px;
  padding: 20px 0px 20px 0px;
  text-align: center;
  position: relative;
  margin: 0 auto; /* 中央揃え */
  font-weight: bold;
  font-size: 1.1rem;

}


/* 料金 */

.payment {
  flex-direction: column;
  /* 縦並びに変更 */
  margin: 0px 40px;
  max-width: none;
  /* 最大幅を制限しない */
  height: auto;
  /* 高さを自動調整 */
  background-color: #fff;
  padding: 20px;
  margin: 30px;
  background: #ffffff;
  border-radius: 10px;
  text-align: center;
}

.payment-btm {

  padding: 0px 0px 30px 0px;
}

.payment-btm p {
  text-align: left;
  font-size: 0.8em;
  line-height: 1.4em;
  padding: 0px 40px;
}

.payment img {
  max-width: 100%;
  height: auto;
}

/* 提携企業 */
.partner {
  margin: 40px 0 0 0;
  background: #ECECEC url(img/andgo-bg.png) no-repeat;
  padding: 40px 20px;
}

.partner h2 {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  padding: 40px 0px 0 0;
  margin: 10px;
}

.bg-white {
  margin: 0px 20px;
}

.bg-white {
  background-color: #ffffff;
  border-radius: 10px;
  /* 角丸 */
  margin: 0 auto;
  /* 中央寄せ */
  padding: 0;
  /* 左右の余白を追加 */
}

.bg-white h2{
  font-size: 1.8em;
}

.andgo {
  flex-direction: column;
  /* 縦並びに変更 */
  margin-left: 0;
  width: 90%;
  padding: 10px 20px;
  text-align: center;
}

.andgo p {
  padding: 20px;
  text-align: left;
  line-height: 1.8em;
}

.solution {
  color: #000;
  /* テキストカラーを黒に設定 */
  padding-top: 50px;
  text-align: center;
  background: #ffffff;
  font-size: 1.4em;
}

.triangle {
  position: relative;
  height: 1vh;
}

.triangle::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 30px 0 30px;
  border-color: #ffffff transparent transparent transparent;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
}



.card {
  background: #E0C7E5;
  margin: 0 auto;
  /* 中央寄せ */
  padding: 0;
  /* 左右の余白を追加 */
}

.card h3 {
  text-align: center;
  font-size: 1.6em;
  line-height: 1.5em;
  padding-top: 40px;
}



/* サポートスタッフ */
.stuff {
  margin: 30px 0px 0 0;
  background: #FFFFFF;
  padding: 40px 20px;
}


.box-wrapper {
      position: relative;
      margin: 30px auto;
      text-align: center;
    }

.box-wrapper h2 {
  text-align: left;
  font-size: 22px;
  font-weight: normal;
  padding: 20px 0px 10px 16px;
  margin-top: 0px;
  font-weight: bold;
}

    .circle-icon {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      position: absolute;
      top: -70px; /* 半分突き出す */
      left: 77%;
      transform: translateX(-50%);
      z-index: 2;
    }

    .square-box {
      background-color: #ffffff;
      border: 2px solid #EDD4F3;
      padding: 40px 0px;
      border-radius: 8px;
      position: relative;
      z-index: 1;
    }

    .square-box p {
      text-align: left;
  line-height: 1.6em;
  padding: 20px 16px 0px 16px;
}


/* 会社概要テーブル */
.company-info {
  margin-top: 20px;
  background-color: #fff;
}

.company-info h2 {
  padding: 40px 0px 40px 0;
  font-size: 2.4em;
  text-align: center;
}


.company-info-content {
  /* PCでは最大幅を800pxに設定 */
  margin: 0 auto;
  /* 水平方向に中央寄せ */
  padding: 0 20px;
  /* 左右の余白を追加 */
  font-size: 14px;
}


.table_design05 {
  border-collapse: collapse;
  width: 98%;

}

.table_design05 th,
.table_design05 td {
  padding: 10px 14px 10px 14px;
  font-size: 1.0em;
}

.table_design05 th {
  color: #C370D6;
  font-weight: bold;
  text-align: left;
  width: 24%;
  min-width: 6em;
  position: relative;

}

.table_design05 th::after {
  content: '';
  background-color: #C370D6;
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  width: 4px;
  height: 60%;
}

/* 黄色ボタン大 */


#app {
  /* 黄色いボタンのレスポンシブサイズ化 */
  width: 80%;
  margin: 80px auto;
  padding: 28px;
  line-height: 1.5em;
  border-radius: 5px;
  background-color: transparent;
}

.shiny-btn {
  position: relative;
  display: block;
  width: 100%;
  height: 80px;
  line-height: 80px;
  text-align: center;
  text-decoration: none;
  color: #000;
  background-color: #FAF458;
  cursor: pointer;
  overflow: hidden;
  font-size: 1.2em;
  border: #000 2px solid;
  border-radius: 40px;
  /* 角丸 */
  font-weight: bold;
}

.shiny-btn::after {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 50px;
  height: 50px;
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 1) 100%, rgba(255, 255, 255, 0) 0%);
  animation-name: shiny;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

/* フッター */
footer {
  background-color: #C370D6;
  /* 背景色を指定 */
  color: #fff;
  text-align: center;
  width: 100%;
  /* 横幅を100%に設定 */
  padding: 40px 0 20px 0;
  margin-top: 50px;
}

.footer {
  display: flex;
  justify-content: center;
  /* 横方向のセンタリング */
  align-items: center;
  /* 縦方向のセンタリング */
  padding: 20px;
  /* フッターの余白 */
}

.social-icons {
  display: flex;
}

.social-icons i {
  text-align: center;
  margin: 10px;
  height: 50px;
  line-height: 50px;
}


.footer-links p {
  font-size: 0.7em;
  line-height: 1.2em;
  color: #fff;
  padding: 4px 0px;
}

.footer-links a {
  color: #fff;
}

footer p {
  font-size: 12px;
  line-height: 1.5em;
  padding-top: 20px;
}