@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=M+PLUS+Rounded+1c");
html {
  font-size: 100%; /*ユーザー設定の文字サイズを正しく反映*/
}
* {
  box-sizing: border-box; /*余白や線を幅や高さに含める*/
}
img {
  max-width: 100%; /*画像が親要素からはみ出すのを防ぐ*/
  height: auto;
}
body {
  background-color: #fff;
  margin: 0;
  padding: 0;
  /* font-family: 'M PLUS Rounded 1c', sans-serif; */
}
h2 {
  position: relative;
  padding: 1.5rem;
  text-align: center;
  font-size: 45px;
  font-weight: bold;
}
h2:before {
  position: absolute;
  bottom: -10px;
  left: calc(50% - 30px);
  width: 60px;
  height: 5px;
  content: "";
  border-radius: 3px;
  background-color: #27acd9;
  margin-bottom: 10px;
}
.section {
  margin: 100px;
}
.success p {
  text-align: center;
  margin-top: 50px;
}
.content {
  margin: 50px 10px;
}
.content-text {
  margin: 100px 50px;
}
.content-text h4 {
  margin-bottom: 50px;
}
.footer_fixed {
  min-height: 100vh; /* コンテンツの高さの最小値＝ブラウザの高さに指定 */
  position: relative; /* 相対位置 */
  padding-bottom: 100px; /* フッターの高さを指定 */
  box-sizing: border-box; /* ヘッダーやフッターを含むすべての要素の高さ＝min-height:100vhになるように指定 */
}
.right {
  text-align: right;
}
.btn i {
  vertical-align: middle;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.red {
  color: red;
}
.bold {
  font-weight: bold;
}
.grecaptcha-badge {
  visibility: hidden;
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #333;
  color: #fff;
  padding: 10px;
  text-align: center;
  z-index: 999;
}
#accept-cookies {
  background: #fff;
  color: #333;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 15px;
}  

/* header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e5e7eb;
  position: sticky; /* ヘッダーを固定する */
  top: 0; /* 上部から配置の基準位置を決める */
  left: 0; /* 左から配置の基準位置を決める */
  width: 100%; /* ヘッダーの横幅を指定する */
  height: 80px; /* ヘッダーの高さを指定する */
  padding: 10px; /* ヘッダーの余白を指定する(上下左右) */
  background-color: #fff; /* ヘッダーの背景色を指定する */
  z-index: 999; /* 画面の最前面に表示させる */
}
.nav_menu {
  list-style: none;
  font-size: 0;
  margin: 0;
}
.nav_menu li {
  width: 140px;
  text-align: center;
  background-color: #fff;
  display: inline-block;
  font-size: 16px;
}
.nav_menu li a {
  text-decoration: none;
  color: #333;
}
.nav_menu li a:hover {
  color: #999;
}
.logo img {
  width: 35%;
  height: 35%;
}

/* main */
.main {
  height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center; /*inner-boxを上下中央*/
  justify-content: center; /*inner-boxを左右中央*/
  /* background-color: #eef0f4; */
  background-color: #7acbe1;
}
.main_flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.main img {
  width: 450px;
  height: 450px;
}
.main_contents {
  width: 600px;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.main_contents p {
  color: #fff;
  text-align: center;
  max-width: 500px;
  font-size: 20px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: bold;
}
.release {
  font-size: 60px;
  color: #fff;
  font-weight: bold;
}
h1 {
  font-size: 80px;
  text-align: center;
  color: #fff;
  font-weight: bold;
}
.powered-by {
  font-weight: bold;
  font-size: 30px;
}
.main h6 {
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  opacity: 0;
  align-items: center;
  justify-content: center;
  display: flex;
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
h6 {
  width: 60%;
  margin: auto;
  padding: 1rem 3rem;
  -webkit-transform: skew(-15deg);
  transform: skew(-15deg);
  color: #fff;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#209cff),
    to(#68e0cf)
  );
  background-image: -webkit-linear-gradient(left, #209cff 0%, #68e0cf 100%);
  background-image: linear-gradient(to right, #209cff 0%, #68e0cf 100%);
}

/* news */
.news {
  display: flex;
  border-bottom: 1px solid #e5e7eb;
  padding: 20px;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.news h3 {
  display: flex;
  margin: 10px;
  gap: 10px;
  color: #999;
}
.news-box {
  display: flex;
  flex-direction: column;
  justify-content: center;

}
.news-title {
  display: flex;
  margin: 5px;
  gap: 30px;
  color: #333232;
}
.news-title a {
  text-decoration: none;
  color: #333232;
}
.news-title a:hover {
  color: #999;
}
.news-date {
  min-width: 100px;
}
.news-date-en {
  min-width: 150px;
}

/* explanation */
.explanation p {
  text-align: center;
  margin-bottom: 16px;
}
.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vh;
}
video {
  max-width: 100%;
  max-height: 100%;
}

/* introduction */
.content_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 20px;
  margin: 0 auto;
  margin-top: 50px;
}
.item {
  flex: 1;
  min-width: calc(50% - 10px);
  max-width: calc(50% - 10px);
  padding: 20px;
  box-sizing: border-box;
  background-color: #f6f6f6;
  border-radius: 10px;
}
.column {
  display: flex;
  /* flex-direction: column */
}
.elem {
  margin-bottom: 10px;
}
.warn {
  font-size: 10px;
}
.introduction p {
  margin: 20px;
  font-size: large;
}
.introduction img {
  width: 150px;
  height: 150px;
  margin: 20px;
}
.introduction h3 {
  border-bottom: 3px solid #000;
  font-weight: bold;
}
.number {
  font-family: "Roboto", sans-serif;
  font-size: 60px;
  line-height: 1.8;
  bottom: -1.6rem;
  left: 0;
}
.marker {
  background: linear-gradient(transparent 75%, #fff100 75%);
}

/* scenario */
.scenario-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 30%;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
  position: relative;
}
.scenario-container:hover {
  transform: translateY(-5px);
}
.scenario h4 {
  text-align: center;
  font-weight: bold;
  height: 80px;
  display: flex;
  align-items: center;
}
.scenario-img {
  height: 150px;
  margin: 10px;
}
.scenario p {
  margin: 15px;
}
.top-img {
  position: absolute;
  height: 60px;
  top: 0;
  left: 0;
}
.bottom-img {
  position: absolute;
  height: 60px;
  bottom: 0;
  right: 0;
}

/* price */
.plan-table {
  display: flex;
  justify-content: center;
  margin: 32px 0 5px 0;
  gap: 20px;
}
.plan-table table {
  width: 50%;
  table-layout: fixed;
  margin-bottom: 15px;
  overflow-y: hidden;
  overflow-x: scroll;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  border: 1px solid #ddd;
  -webkit-overflow-scrolling: touch;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.plan-table th,
td {
  padding: 15px;
  text-align: center;
  vertical-align: top;
  border-top: 1px solid #ddd;
}
.plan-table tr:nth-child(even) > td,
.plan-table tr:nth-child(even) > th {
  background-color: #efefef;
}
.plan-title {
  font-size: 2rem;
  padding-top: 15px;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.subtitle {
  font-size: 1.2rem;
}
.plan-price {
  border-top: 5px dotted #efefef;
  font-size: 2.5rem;
  padding-top: 15px;
}
.plan-price span {
  font-size: 1rem;
}
.list-box {
  height: 240px;
}
.list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-block;
}
.list li {
  margin-left: 20px;
  text-indent: -20px;
  text-align: left;
}
.lists::before {
  content: "";
  display: inline-block;
  height: 15px;
  width: 15px;
  background-image: url(/img/check.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
  margin-right: 5px;
}
.plan-table .right {
  text-align: right;
}
.price p {
  text-align: center;
}
.btn-copy {
  position: relative;
  margin-top: 32px;
}
.btn-copy:before {
  margin-right: 1rem;
  content: "＼";
}
.btn-copy:after {
  margin-left: 1rem;
  content: "／";
}
.buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 20px;
}
.buttons p {
  font-size: 20px;
  margin: 10px 0px;
}
.btn--basic {
  text-decoration: none;
  margin: auto;
  padding: 1rem 2rem;
  font-weight: bold;
  border: 2px solid #27acd9;
  color: #27acd9;
  border-radius: 100vh;
  transition: 0.5s;
  max-width: 280px;
}
.btn--basic:hover {
  color: #fff;
  background: #27acd9;
}
.btn--blue {
  text-decoration: none;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 2rem;
  font-weight: bold;
  background-image: linear-gradient(to right, #209cff 0%, #68e0cf 100%);
  border-radius: 100vh;
  color: #fff;
  border: 2px solid #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
  width: 280px;
  height: 80px;
}
.btn--blue:hover {
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.btn--radius {
  border-radius: 100vh;
}

/* document */
.document p {
  text-align: center;
}

/* contact */
.contactbox {
  margin-top: 50px;
  margin-bottom: 30px;
}
.contact p {
  text-align: center;
}
.mb-3 {
  width: 800px;
  margin: auto;
}
.contact label {
  display: block;
}
.section label.required:after {
  margin-left: 1em;
  padding: 0px 6px 0px 6px;
  border-radius: 4px;
  font-size: 0.6em;
  color: white;
  background-color: #c44;
  content: "必須";
}
.section label.required_en:after {
  margin-left: 1em;
  padding: 0px 6px 0px 6px;
  border-radius: 4px;
  font-size: 0.6em;
  color: white;
  background-color: #c44;
  content: "Required";
}

/* transaction,privacy,terms */
#transaction .content_block,
#privacy .content_block,
#terms .content_block {
  width: 80%;
  margin: 0 auto;
}

/* transaction */
#transaction table {
  margin: 50px auto;
  border: 1px solid #ddd;
}

#transaction th {
  background-color: #f6f6f6;
  border-bottom: 1px solid #ddd;
  padding: 15px;
}

#transaction td {
  text-align: left;
}

/* faq */
.support p,
.faq p {
  text-align: center;
}
.support h4,
.faq h4 {
  background-color: #f6f6f6;
  padding: 1rem 2rem;
  border-left: 6px solid #009bc6;
}
.button-block {
  /* display: flex; */
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 20px;
}
.button-block p {
  font-size: 16px;
  margin: 5px 0px;
}
.aligned-text {
  display: flex;
}
.icon-box {
  height: 30px;
  width: 30px;
  background-image: url(/img/answer.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
  margin-right: 10px;
}
.text-box {
  width: calc(100% - 50px);
}

/* support */
.support .content_block {
  padding: 10px;
}
.support img {
  display: block;
  margin: 20px auto;
}

.breadcrumb {
  padding: 10px;
  margin: 50px 50px 0px 50px;
  list-style: none;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: #6E777F;
  content: ">";
}
.breadcrumb a {
  color: #6E777F;
  text-decoration: none;
}
.breadcrumb a:hover {
  color: #aaaaaa;
}

.table-of-contents {
  margin: 30px 30px 0px 30px;
  padding: 30px 10px 10px 10px;
  position: relative;
  border: solid 3px #27acd9;
  border-radius: 8px;
}
.box-title {
  position: absolute;
  display: inline-block;
  top: -13px;
  left: 10px;
  padding: 0 9px;
  line-height: 1;
  font-size: 19px;
  background: #FFF;
  color: #27acd9;
  font-weight: bold;
}
.table-of-contents ul {
  list-style: none;
}
.table-of-contents li {
  margin: 5px 0;
}
.table-of-contents a {
  color: #6E777F;
  text-decoration: none;
}
.table-of-contents a:hover {
  color: #aaaaaa;
}
.demo-items li {
  display: inline-block;
  margin-right: 20px;
}
.style_item {
  padding-top: 20px;
  border-top: #cfcfcf solid 1px;
}

/* manual */
.guide_button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #a6a6a6;
  width: 120px;
  height: 120px;
  border-radius: 10px;
  margin: 5px;
  flex-direction: column;
}
.guide_button:hover {
  background-color: #c0c0c0;
  color: #fff;
}
.status {
  text-decoration: none;
  background-color: #f6f6f6;
  border-radius: 10px;
  flex-direction: column;
  padding: 20px;
  margin: 20px 0px;
}
.status_text {
  padding: 5px;
}
.status_button_orange {
  color: #ff776b;
  border: #ff776b solid 1px;
  border-radius: 5px;
  height: 100px;
  padding: 5px;
}
.status_button_blue {
  color: #8bb6d9;
  border: #8bb6d9 solid 1px;
  border-radius: 5px;
  height: 100px;
  padding: 5px;
}

/* footer */
footer {
  display: flex;
  justify-content: space-between;
  padding: 2rem;
  font-size: 15px;
  color: #999;
  background-color: #333232;
  width: 100%;
  position: absolute; /* 絶対位置 */
  bottom: 0;
}
footer a {
  color: #999;
  text-decoration: none;
}
footer ul {
  display: flex;
  list-style: none;
  padding: 0;
}
.footer-links li + li {
  margin-left: 16px;
}
.footer-links a:hover {
  color: #e5e7eb;
}
.copyright {
  font-size: 12px;
  color: #999;
  text-align: center;
  margin-top: 20px;
}

/* avatar */
.avatar_container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px;
}
.avatar_box {
  display: inline-block;
  width: 30%;
  text-align: center;
  margin: 0 2%;
}
.avatar_box img {
  height: 400px;
  margin: auto;
}
.avatar_comment {
  height: 150px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.avatar_comment p {
  margin: 10px;
  font-weight: bold;
}

/* レスポンシブ対応 */
@media screen and (max-width: 1200px) {
  .section {
    margin: 50px 50px 100px 50px;
  }
  .mb-3 {
    width: 90%;
  }
  .main img,
  .main_contents {
    width: 90%;
    height: 90%;
  }
  h1 {
    font-size: 60px;
  }
  .main h6 {
    font-size: 18px;
  }
  .item {
    min-width: calc(100% - 10px);
    max-width: calc(100% - 10px);
  }
  .introduction h3 span {
    font-size: 50px;
  }
}

@media screen and (max-width: 1100px) {
  /* plan */
  .plan-table {
    flex-direction: column;
    align-items: center;
  }
  .plan-table table {
    width: 100%;
  }
  .plan-title {
    height: auto;
    font-size: 20px;
  }
  .plan-price {
    font-size: 20px;
  }
  .list-box {
    height: auto;
  }
  .btn-copy {
    font-size: 10px;
    text-align: center;
  }
  .btn--basic {
    width: 90%;
  }

  /* scenario */
  .scenario-container {
    width: 80%;
  }

  /* avatar */
  .avatar_container {
    flex-direction: column;
    align-items: center;
  }
  .avatar_box {
    width: 80%;
    margin: 20px 0;
  }
}

@media screen and (max-width: 768px) {
  /* header */
  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* menu toggle button */
  #menu-toggle {
    position: relative;
    width: 30px;
    height: 22px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    margin-left: auto; /* 右寄せ */
  }
  #menu-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #333232;
    transition: all 0.3s;
  }
  #menu-toggle span:nth-child(1) {
    top: 0;
  }
  #menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  #menu-toggle span:nth-child(3) {
    bottom: 0;
  }

  /* nav menu */
  .nav_menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background-color: #fff;
    flex-direction: column;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  }
  .nav-menu-active {
    display: flex;
  }
  .nav_menu {
    width: 100%;
    text-align: center;
    padding: 0;
  }
  .nav_menu li {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
  }
  .nav_menu li:last-child {
    border-bottom: none;
  }

  /* main */
  .main {
    height: auto;
    padding: 50px 0;
  }
  .release {
    font-size: 20px;
  }
  .main_flex {
    flex-direction: column;
  }
  .main img {
    height: 200px;
    width: 200px;
    margin-left: 0px;
  }
  .main_logo {
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  h1 {
    font-size: 40px;
  }
  .main h6,
  .main_contents p {
    /* font-size: 14px; */
    white-space: normal;
  }
  .main_contents {
    width: 95%;
  }

  /* introduction */
  .item {
    min-width: calc(100% - 10px);
    max-width: calc(100% - 10px);
  }
  .introduction img {
    width: 120px;
    height: 120px;
    display: block;
    margin: auto;
  }
  .introduction h3 {
    padding: 0.5rem;
  }
  .number {
    font-size: 30px;
    bottom: 2rem;
  }
  .column {
    display: block;
  }

  .section {
    margin: 50px 20px 100px 20px;
  }

  /* footer */
  footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
  }
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
  }
  .footer-links li + li {
    margin-left: 0;
  }

  .mb-3 {
    width: 100%;
  }
  h2 {
    font-size: 30px;
  }

  /* transaction */
  #transaction table,
  #transaction th,
  #transaction td {
    display: block;
    width: 100%;
  }
  #transaction td {
    border-bottom: 1px solid #ddd;
  }

  /* faq */
  .accordion-button::before,
  .icon-box {
    height: 20px; /* スマホでは小さめのアイコンサイズに調整 */
    width: 20px;
  }

  /* news */
  .news {
    flex-direction: column;
    padding: 10px;
    gap: 5px;
  }
  .news h3 {
    margin: 5px;
    font-size: 16px;
  }
  .news-box {
    align-items: flex-start;
  }
  .news-title {
    font-size: 12px;
    gap: 10px;
  }
  .table-of-contents {
    margin: 5px;
    padding: 30px 20px 0px 0px;
    position: relative;
    border: solid 3px #27acd9;
    border-radius: 8px;
  }

  /* scenario */
  .scenario h4 {
    font-size: 20px;
  }

  /* avatar */
  .avatar_container {
    margin: 5px;
  }
  .avatar_box {
    min-height: 100px;
  }
  .avatar_comment {
    height: 200px;
  }
}

@media screen and (min-width: 769px) {
  #menu-toggle {
    display: none;
  }
}
