@charset "utf-8";

:root {
  --color-text: #282828;
  --color-text-sub: #333333;
  --color-white: #FFFFFF;
  --color-accent-red: #C62C2C;
  --color-accent-green: #799F75;
  --color-accent-blue: #6F89B9;
  --color-accent-yellow: #F6FF00;
  --color-background-light: #EAE7E1;
  --color-background-white: #F5F5F5;
}

/***********************************************************
////////////////////////////////////////////////////////////

@ DESKTOP SIZE

////////////////////////////////////////////////////////////
***********************************************************/

/****************************
  00 base
****************************/

html,
body {
  position: relative;
  width: 100%;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  background-color: var(--color-background-white);
}

#container {
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}

.inner {
  max-width: 1216px; /* 1152px + 32px*2 padding */
  margin: 0 auto;
  padding: 0 32px;
}

.content {
  container-type: inline-size;
}

.pc {
  display: block;
}
.sp {
  display: none;
}

img,
svg {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: var(--color-accent-blue);
  text-decoration: underline;
  transition: color 0.3s ease;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
}

a img {
  transition: opacity 0.3s ease;
  cursor: pointer;
}
a:hover img {
  opacity: 0.6;
}

button,
input[type="submit"] {
  transition: opacity 0.3s ease;
}
button:not(:disabled):hover,
input[type="submit"]:not(:disabled):hover {
  opacity: 0.6;
}

* {
  text-underline-offset: 0.3em;
}

.center {
  text-align: center !important;
}


/******* index *******/

.index .content h2 {
  font-family: iroha-26tubaki-stdn, serif;
  font-size: 46px;
  font-weight: normal;
  text-align: center;
  text-decoration: underline 3px dotted;
}


/****************************
  01 header
****************************/

#header {
  padding: 120px 0;
}

#header .logo {
  width: 280px;
  margin: 0 auto;
}


/****************************
  02 main
****************************/

/******* index *******/

.index #main section {
  /* border-bottom: #6666 1px solid; */
}


/*** #hero ***/
.index #hero {
  padding: 150px 0;
}

.index #hero .content {
  position: relative;
}

.index #hero .content .text {
  
}

.index #hero .content .text .logo {
  width: 616px;
  max-width: 100%;
  margin-bottom: 15cqw;
}

.index #hero .content .text h1 {
  font-family: iroha-26tubaki-stdn, serif;
  font-weight: normal;
  font-size: 24px;
  line-height: 1.625;
  margin-bottom: 40px;
}

.index #hero .content .text .cta {
  display: inline-block;
  width: 290px;
}

.index #hero .content .image {
  position: absolute;
  left: -3%;
  top: 240px;
  width: 106%;
  pointer-events: none;
}

/*** #problems ***/
.index #problems {
  background-color: var(--color-background-light);
  padding: 120px 0;
}

.index #problems h2 {
  margin-bottom: 60px;
}

.index #problems .problem-cards {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 80px;
}

.index #problems .card {
  background-color: var(--color-white);
  border-radius: 10px;
  padding: 32px;
  width: 100%;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}

.index #problems .card h3 {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
  text-decoration: underline 2px;
}

.index #problems .card ul {
  list-style: none;
}

.index #problems .card ul li {
  font-family: iroha-26tubaki-stdn, serif;
  font-size: 16px;
  line-height: 1.8125;
  padding-left: 1.5em;
  position: relative;
}

.index #problems .card ul li:not(:last-child) {
  margin-bottom: 12px;
}

.index #problems .card ul li::before {
  content: '●';
  color: var(--color-accent-green);
  position: absolute;
  left: 0;
}

.index #problems .solution {
  text-align: center;
}

.index #problems .solution .banner {
  width: 100%;
  max-width: 680px;
  padding-left: 30px;
  margin: 0 auto 40px;
}

/*** #reason ***/
.index #reason {
  padding: 120px 0;
}

.index #reason h2 {
  margin-bottom: 40px;
  color: var(--color-text-sub);
}

.index #reason .description {
  font-family: iroha-26tubaki-stdn, serif;
  font-size: 20px;
  line-height: 1.65;
  text-align: center;
  margin-bottom: 70px;
  color: var(--color-text-sub);
}

.index #reason .reason-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.index #reason .card {
  padding: 24px 20px;
  text-align: center;
}

.index #reason .card:not(:last-child) {
  border-right: #000 2px solid;
}

.index #reason .card .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 12px;
}

.index #reason .card .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.index #reason .card h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
}

.index #reason .card p {
  font-family: iroha-26tubaki-stdn, serif;
  font-size: 16px;
  line-height: 1.8125;
  text-align: left;
}

/*** #demo ***/
.index #demo {
  background-color: var(--color-accent-blue);
  color: var(--color-white);
  padding: 120px 0;
  text-align: center;
}

.index #demo h2 {
  font-size: 46px;
  margin-bottom: 40px;
}

.index #demo .description {
  font-family: iroha-26tubaki-stdn, serif;
  font-size: 20px;
  line-height: 1.65;
  margin-bottom: 10px;
}

.index #demo .qa {
  color: var(--color-text);
  padding: 20px;
  width: 416px;
  margin: 0 auto 20px;
}

.index #demo .qa p {
  font-family: iroha-26tubaki-stdn, serif;
  font-size: 22.857px;
  letter-spacing: 0.686px;
}
.index #demo .qa p:not(:last-child) {
  margin-bottom: 12px;
}

.index #demo .qa p span {
  display: inline-block;
  padding: 0 0.2em;
  background-color: var(--color-accent-yellow);
}

.index #demo .caption {
  font-family: iroha-26tubaki-stdn, serif;
  font-size: 20px;
  line-height: 1.65;
  margin-bottom: 60px;
}

.index #demo .movie-container {
  position: relative;
  width: 864px;
  margin: 0 auto 40px;
  cursor: pointer;
}

.index #demo .movie-container .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 94px;
  height: 94px;
}

.index #demo .movie-container .play-button img {
  
}

.index #demo .movie-container .video-wrapper {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  position: relative;
}

.index #demo .movie-container .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.index #demo .cta-area p {
  font-family: iroha-26tubaki-stdn, serif;
  font-size: 27px;
  line-height: 1.22;
  margin-bottom: 20px;
  text-decoration: underline 1px;
}

.index #demo .cta-area .arrow {
  width: 96px;
  margin: 0 auto 20px;
}

.index #demo .cta-area .cta {
  display: block;
  width: 280px;
  margin: 0 auto;
}

/*** #comparison ***/
.index #comparison {
  padding: 120px 0;
  background-color: var(--color-white);
}

.index #comparison h2 {
  margin-bottom: 40px;
}

.index #comparison .description {
  font-family: iroha-26tubaki-stdn, serif;
  font-size: 20px;
  line-height: 1.65;
  text-align: center;
  margin-bottom: 60px;
}

.index #comparison .comparison-table {
  margin-bottom: 60px;
}

.index #comparison table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border: 2px solid var(--color-accent-green);
}

.index #comparison th,
.index #comparison td {
  border: 2px solid var(--color-accent-green);
  padding: 10px;
  font-family: iroha-26tubaki-stdn, serif;
  font-size: 20px;
  line-height: 1.65;
  text-align: center;
  width: 50%;
}

.index #comparison thead th,
.index #comparison thead td {
  padding: 16px;
}

.index #comparison thead th {
  background-color: var(--color-accent-green);
  color: var(--color-white);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
}

.index #comparison thead th:first-child {
  width: 40%;
}
.index #comparison thead th:not(:last-child) {
  border-right: 2px solid var(--color-white);
}

.index #comparison .message-box {
  background-color: #F3F1EE;
  border-radius: 8px;
  padding: 32px;
}

.index #comparison .message-box h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-accent-green);
  margin-bottom: 16px;
}

.index #comparison .message-box h3 img {
  width: 25px;
  height: 25px;
}

.index #comparison .message-box p,
.index #comparison .message-box li {
  font-family: iroha-26tubaki-stdn, serif;
  font-size: 16px;
  line-height: 1.8125;
}

.index #comparison .message-box li span {
  font-weight: bold;
}

.index #comparison .message-box li span i {
  font-style: normal;
  color: var(--color-accent-green);
}

.index #comparison .message-box ul {
  list-style: none;
  margin: 16px 0;
}

/*** #effects ***/
.index #effects {
  background-color: var(--color-accent-green);
  color: var(--color-white);
  padding: 100px 0;
  text-align: center;
}

.index #effects h2 {
  margin-bottom: 60px;
}

.index #effects .effect-cards {
  display: flex;
  justify-content: space-between;
  gap: 23px;
}

.index #effects .card {
  width: 372px;
}

.index #effects .card .number {
  font-family: 'Roboto Mono', monospace;
  font-size: 96px;
  font-weight: 700;
  line-height: 1;
}

.index #effects .card .number .unit {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 400;
  margin-left: 0.1em;
}

.index #effects .card .title {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 10px;
}

.index #effects .card .description {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}

/*** #cost-performance ***/
.index #cost-performance {
  background-color: var(--color-background-light);
  padding: 120px 0;
}

.index #cost-performance h2 {
  margin-bottom: 60px;
  color: var(--color-text-sub);
}

.index #cost-performance .features {
  list-style: none;
  margin-bottom: 70px;
}

.index #cost-performance .features li {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.65;
}

.index #cost-performance .features li:not(:last-child) {
  margin-bottom: 10px;
}

.index #cost-performance .features li img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

.index #cost-performance .cost-table table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  background-color: var(--color-white);
}

.index #cost-performance .cost-table th,
.index #cost-performance .cost-table td {
  border: 2px solid var(--color-accent-blue);
  padding: 16px 3px;
  text-align: center;
  vertical-align: middle;
  font-size: 16px;
  line-height: 1.8;
}

.index #cost-performance .cost-table th {
  font-weight: 700;
}

.index #cost-performance .cost-table thead th,
.index #cost-performance .cost-table thead td {
  padding: 12px;
}

.index #cost-performance .cost-table thead th:first-child {
  width: 13%;
}

.index #cost-performance .cost-table thead th.highlight {
  width: 22%;
}

.index #cost-performance .cost-table thead th {
  background-color: var(--color-accent-blue);
  color: var(--color-white);
}

.index #cost-performance .cost-table thead th:not(:last-child) {
  border-right: 2px solid var(--color-white);
}

.index #cost-performance .cost-table thead .highlight {
  background-color: var(--color-accent-green);
  border-top: 2px solid var(--color-accent-green);
  border-bottom: 2px solid var(--color-accent-green);
}

.index #cost-performance .cost-table tbody .highlight {
  background-color: #E3EEE2;
}

/*** #plans ***/
.index #plans {
  padding: 120px 0;
}

.index #plans .campaign {
  width: 450px;
  margin: 0 auto 60px;
  list-style: none;
}

.index #plans .campaign li {
  text-align: center;
}

.index #plans .campaign li:not(:last-child) {
  margin-bottom: 10px;

}

.index #plans .campaign li p {
  display: inline-block;
  font-family: iroha-26tubaki-stdn, serif;
  font-size: 22.857px;
  line-height: 1.0;
  letter-spacing: 0.686px;
  text-align: center;

  padding: 0.4em 0.4em 0.2em;
  background-color: var(--color-accent-yellow);
}

.index #plans .campaign li p .xl {
  font-size: 160%;
  font-weight: 700;
}

.index #plans h2 {
  margin-bottom: 60px;
}

.index #plans .plan-cards {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.index #plans .card {
  position: relative;
  width: 50%;
  background-color: var(--color-white);
  border-radius: 5px;
  box-shadow: 0px 0px 12.9px 0px rgba(146, 162, 193, 0.5);
}

.index #plans .card .header {
  color: var(--color-white);
  padding: 20px;
  text-align: center;
  border-radius: 5px 5px 0 0;
}

.index #plans .card .header.blue {
  background-color: var(--color-accent-blue);
}

.index #plans .card .header.green {
  background-color: var(--color-accent-green);
}

.index #plans .card .header .sub-title {
  font-family: iroha-26tubaki-stdn, serif;
  font-size: 18px;
  text-decoration: underline 2px dotted;
  margin-bottom: 16px;
}

.index #plans .card .header .main-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 0.9;
}

.index #plans .card .header .en-title {
  font-family: 'Roboto Mono', monospace;
  font-size: 12px;
  line-height: 2.75;
}

.index #plans .card .header .price {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

.index #plans .card .header .initial {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.index #plans .card .header .initial span {
  font-size: 120%;
  font-weight: 700;
  color: var(--color-accent-yellow);

}

.index #plans .card .body {
  padding: 40px 40px 160px;
}

.index #plans .card .body > div {
  margin-bottom: 30px;
}

.index #plans .card .body h4 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  padding-bottom: 3px;
  margin-bottom: 12px;
  border-bottom: 1px dashed #000;
}

.index #plans .card .body ul {
  list-style: none;
}

.index #plans .card .body li {
  display: flex;
  gap: 8px;
  font-size: 15.5px;
  line-height: 1.25;
}

.index #plans .card .body li:not(:last-child) {
  margin-bottom: 8px;
}

.index #plans .card .body li img {
  width: 18px;
  height: 18px;
}

.index #plans .card .foot {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.index #plans .card .foot .cta {
  padding: 40px 0;
}

.index #plans .card .foot .cta a {
  display: block;
  width: 320px;
  margin: 0 auto;
}

/*** #flow ***/
.index #flow {
  padding: 120px 0;
  background-color: var(--color-white);
}

.index #flow h2 {
  margin-bottom: 60px;
}

.index #flow .flow-list {
  list-style: none;
  width: 800px;
  margin: 0 auto;
}

.index #flow .flow-list li {
  display: flex;
  align-items: center;
  gap: 20px;
}

.index #flow .flow-list li:not(:last-child) {
  margin-bottom: 32px;
}

.index #flow .flow-list .icon {
  width: 50px;
  flex-shrink: 0;
}

.index #flow .flow-list .text h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.65;
  color: var(--color-text-sub);
}

.index #flow .flow-list .text p {
  font-family: iroha-26tubaki-stdn, serif;
  font-size: 20px;
  line-height: 1.65;
  color: var(--color-text-sub);
}

/*** #faq ***/
.index #faq {
  padding: 120px 0;
}

.index #faq h2 {
  margin-bottom: 60px;
}

.index #faq .faq-list {
  width: 1152px;
  margin: 0 auto;
}

.index #faq details {
  
}

.index #faq details:not(:last-child) {
  margin-bottom: 30px;
}

.index #faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 17px;
  cursor: pointer;
  font-family: iroha-26tubaki-stdn, serif;
  font-size: 20px;
  line-height: 1.65;
  color: var(--color-text-sub);
  border-bottom: 1px dashed #282828;
}

.index #faq details[open] summary {
  color: var(--color-accent-blue);
}

.index #faq summary::-webkit-details-marker {
  display: none;
}

.index #faq summary img {
  width: 14px;
  height: 14px;
  transition: transform 0.6s ease;
}

.index #faq details[open] summary img {
  transform: rotateX(180deg);
}

.index #faq .answer {
  position: relative;
  padding: 15px 0 30px;
  font-family: iroha-26tubaki-stdn, serif;
  font-size: 16px;
  line-height: 1.8125;
}

.index #faq .answer span {
  position: absolute;
}

.index #faq .answer p {
  padding-left: 2.4em;
}

.index #faq .answer p:not(:last-child) {
  margin-bottom: 16px;

}

/*** #partner ***/
.index #partner {
  background-color: var(--color-accent-blue);
  color: var(--color-white);
  padding: 100px 0;
  text-align: center;
}

.index #partner h2 {
  margin-bottom: 40px;
}

.index #partner p {
  font-family: iroha-26tubaki-stdn, serif;
  font-size: 20px;
  line-height: 1.65;
  margin-bottom: 40px;
}

.index #partner .cta {
  display: block;
  width: 320px;
  margin: 0 auto;
}

/*** #contact ***/
.index #contact {
  padding: 100px 0;
}

.index #contact h2 {
  margin-bottom: 80px;
}

.index #contact form {
  width: 864px;
  margin: 0 auto;
}

.index #contact .form-group {
  border-top: 1px solid #282828;
  padding: 26px 0;
}

.index #contact dl {
  border-bottom: 1px solid #282828;
}

.index #contact dt {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
}

.index #contact dt span {
  color: var(--color-accent-red);

}

.index #contact dd input[type="text"],
.index #contact dd input[type="email"],
.index #contact dd input[type="tel"],
.index #contact dd textarea,
.index #contact dd select {
  width: 97.5%;
  padding: 10px;
  border: 1px solid #9F9F9F;
  border-radius: 5px;
  font-size: 16px;
}
.index #contact dd select {
  width: 100%;
}

.index #contact dd textarea {
  height: 150px;
}

.index #contact .select-wrapper {
  position: relative;
}

.index #contact .select-wrapper select {
  /* -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; */
}

.index #contact dd input[type="text"]:has(+ .error),
.index #contact dd input[type="email"]:has(+ .error),
.index #contact dd input[type="tel"]:has(+ .error),
.index #contact dd textarea:has(+ .error),
.index #contact dd select:has(+ .error) {
  border-color: var(--color-accent-red);
}

.index #contact .select-wrapper img {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  pointer-events: none;
}

.index #contact .note {
  font-size: 13px;
  margin-top: 9px;
  color: var(--color-accent-blue);
}

.index #contact .privacy-policy {
  text-align: center;
  margin: 60px 0;
}

.index #contact .privacy-policy label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.index #contact .privacy-policy input[type="checkbox"] {
  /* display: none; */
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.index #contact .privacy-policy img {
  width: 18px;
  height: 18px;
}

.index #contact .privacy-policy a {
  color: var(--color-accent-red);
}

.index #contact .submit-button {
  text-align: center;
}

.index #contact .submit-button button,
.index #contact .submit-button input[type="submit"] {
  background-color: var(--color-accent-red);
  color: var(--color-white);
  border: none;
  padding: 22px 98px;
  font-size: 22px;
  font-family: 'Poppins', sans-serif;
  border-radius: 5px;
  cursor: pointer;
}

.index #contact .submit-button button:disabled,
.index #contact .submit-button input[type="submit"]:disabled {
  background-color: #9F9F9F;
  cursor: not-allowed;
}


/******* lower *******/

.lower .section {
  padding: 0 0 60px;
}

.lower #main-header {
  padding: 0 0 60px;
}

.lower #main-header h1.title {
  font-family: iroha-26tubaki-stdn, serif;
  font-size: 26px;
  text-align: center;
  text-decoration: underline 2px;
}

.lower #main-footer {
  padding: 0 0 60px;
  text-align: center;
}

.lower #main-footer a.back {
  color: var(--color-accent-red);
  font-size: 12px;
  font-weight: bold;
}

/* article style */
/* .lower .section .content .article {
  font-size: 16px;
  word-wrap: break-word;
}
.lower .section .content .article .wp-block-heading {
  margin-bottom: 1.0em;
}
.lower .section .content .article h1 {
  font-size: 180%;
}
.lower .section .content .article h2 {
  font-size: 160%;
}
.lower .section .content .article h3 {
  font-size: 140%;
}
.lower .section .content .article h4 {
  font-size: 120%;
}
.lower .section .content .article p:not(:last-child) {
  margin-bottom: 1.5em;
} */

/* form style */
.lower .section .content .article .mw_wp_form_confirm {
  max-width: 864px;
  margin: 0 auto;
  border-top: 1px solid #282828;
}
.lower .section .content .article .mw_wp_form_confirm .form-group {
  display: flex;
}
.lower .section .content .article .mw_wp_form_confirm .form-group dt,
.lower .section .content .article .mw_wp_form_confirm .form-group dd {
  padding: 2.0em 1.0em;
  border-bottom: 1px solid #282828;
}
.lower .section .content .article .mw_wp_form_confirm .form-group dt {
  width: 20em;
  font-weight: bold;
}
.lower .section .content .article .mw_wp_form_confirm .form-group dt span {
  display: none;
}
.lower .section .content .article .mw_wp_form_confirm .form-group dd {
  flex: 1;
}
.lower .section .content .article .mw_wp_form_confirm .form-group dd .note {
  display: none;
}
.lower .section .content .article .mw_wp_form_confirm .submit-button {
  display: flex;
  justify-content: center;
  margin-top: 8.0em;
  gap: 1.0em;
}
.lower .section .content .article .mw_wp_form_confirm .submit-button input[type="submit"],
.lower .section .content .article .mw_wp_form_confirm .submit-button button[type="submit"] {
  color: var(--color-white);
  border: none;
  padding: 22px 98px;
  font-size: 22px;
  font-family: 'Poppins', sans-serif;
  border-radius: 5px;
  cursor: pointer;
}
.lower .section .content .article .mw_wp_form_confirm .submit-button input[type="submit"] {
  background-color: var(--color-accent-green);
}
.lower .section .content .article .mw_wp_form_confirm .submit-button button[type="submit"] {
  background-color: var(--color-accent-red);
}
.lower .section .content .article .mw_wp_form_confirm .privacy-policy {
  display: none;
}


/****************************
  03 footer
****************************/
#footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 30px;
}

#footer .logo {
  
}

#footer .info {
  text-align: right;
}

#footer .info nav {
  margin-bottom: 16px;
}

#footer .info nav a {
  font-size: 12px;
  color: var(--color-text);
}

#footer .info nav a:not(:last-child) {
  margin-right: 24px;
}

#footer .info .copyright {
  font-size: 10px;
}

/****************************
  99 cta-float
****************************/
#cta-float {
  position: fixed;
  bottom: 50vh;
  right: -100px;
  width: 46px;
  z-index: 1000;
  transform: translate(0, 50%);
  transition: all 0.6s ease;
}
#cta-float a {
  display: inline-block;
}
.ready #cta-float {
  right: -1.5px;
}




/***********************************************************
////////////////////////////////////////////////////////////

@ MOBILE SIZE

////////////////////////////////////////////////////////////
***********************************************************/
@media only screen and (max-width: 900px) {

  /****************************
    00 base
  ****************************/
  
  .inner {
    max-width: 600px;
    padding: 0 20px;
  }
  
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }

  /******* index *******/

  .index .content h2 {
    font-size: 9cqw;
  }


  /****************************
    01 header
  ****************************/

  #header {
    padding: 20vw 0;
  }

  #header .logo {
    width: 62cqw;
  }

  
  /****************************
    02 main
  ****************************/
  
  /******* index *******/

  /*** #hero ***/
  .index #hero {
    padding: 15vw 0;
  }

  .index #hero .content {
    flex-direction: column;
  }

  .index #hero .content .text {
    width: 100%;
    text-align: center;
  }

  .index #hero .content .text .logo {
    width: 80cqw;
    margin: 0 auto 24cqw;
  }

  .index #hero .content .text h1 {
    font-size: 5cqw;
  }

  .index #hero .content .text .cta {
    width: 60cqw;
  }

  .index #hero .content .image {
    left: 11cqw;
    top: 30cqw;
    width: 100cqw;
  }

  /*** #problems ***/
  .index #problems {
    padding: 20vw 0;
  }

  .index #problems h2 {
    margin-bottom: 12cqw;
  }

  .index #problems .problem-cards {
    flex-direction: column;
    gap: 6cqw;
    margin-bottom: 12cqw;
  }

  .index #problems .card {
    width: auto;
    padding: 6cqw;
  }

  .index #problems .card h3 {
    font-size: 5cqw;
    margin-bottom: 6cqw;
  }

  .index #problems .card ul li {
    font-size: 4cqw;
    line-height: 1.5;
  }

  .index #problems .card ul li:not(:last-child) {
    margin-bottom: 4cqw;
  }

  .index #problems .solution .banner {
    padding-left: 2cqw;
    margin: 0 auto;
  }
  

  /*** #reason ***/
  .index #reason {
    padding: 20vw 0;
  }

  .index #reason h2 {
    margin-bottom: 12cqw;
  }

  .index #reason .description {
    font-size: 5cqw;
    margin-bottom: 12cqw;
  }

  .index #reason .reason-cards {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .index #reason .card:not(:last-child) {
    border-right: none;
    border-bottom: #000 2px solid;
  }

  .index #reason .card .icon {
    width: 18cqw;
    height: 18cqw;
    margin: 0 auto 6cqw;
  }

  .index #reason .card h3 {
    font-size: 6cqw;
    margin-bottom: 4cqw;
  }

  .index #reason .card p {
    font-size: 4cqw;
  }

  /*** #demo ***/
  .index #demo {
    padding: 20vw 0;
  }

  .index #demo h2 {
    font-size: 9cqw;
    margin-bottom: 12cqw;
  }

  .index #demo .description {
    font-size: 5cqw;
    margin-bottom: 6cqw;
  }

  .index #demo .movie-container {
    width: 100%;
    margin-bottom: 6cqw;
  }

  .index #demo .movie-container .play-button {
    width: 70px;
    height: 70px;
  }

  .index #demo .movie-container .play-button img {
    
  }

  .index #demo .qa {
    width: 100%;
    padding: 0;
    margin-bottom: 6cqw;
  }

  .index #demo .qa p {
    font-size: 5cqw;
  }

  .index #demo .caption {
    font-size: 5cqw;
    margin-bottom: 12cqw;
  }

  .index #demo .cta-area p {
    font-size: 7cqw;
    line-height: 1.5;
    margin-bottom: 4cqw;
  }

  .index #demo .cta-area .arrow {
    width: 20cqw;
    margin-bottom: 4cqw;
  }

  .index #demo .cta-area .cta {
    width: 74cqw;
  }

  /*** #comparison ***/
  .index #comparison {
    padding: 20vw 0;
  }

  .index #comparison h2 {
    margin-bottom: 12cqw;
  }

  .index #comparison .description {
    font-size: 5cqw;
    margin-bottom: 12cqw;
  }

  .index #comparison .comparison-table {
    margin-bottom: 12cqw;
    overflow-x: auto;
  }

  .index #comparison table {
    width: 260cqw;
  }

  .index #comparison th,
  .index #comparison td {
    font-size: 4cqw;
    padding: 4cqw;
  }

  .index #comparison thead th {
    font-size: 5cqw;
  }

  .index #comparison .message-box {
    padding: 6cqw;
  }

  .index #comparison .message-box h3 {
    flex-direction: column;
    gap: 3cqw;
    font-size: 6cqw;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 6cqw;
  }

  .index #comparison .message-box h3 img {
    width: 8cqw;
    height: 8cqw;
  }

  .index #comparison .message-box p,
  .index #comparison .message-box li {
    font-size: 4cqw;
  }

  .index #comparison .message-box ul {
    margin: 4cqw 0;
  }

  /*** #effects ***/
  .index #effects {
    padding: 20vw 0;
  }

  .index #effects h2 {
    margin-bottom: 12cqw;
  }

  .index #effects .effect-cards {
    flex-direction: column;
    gap: 12cqw;
  }

  .index #effects .card {
    width: 100%;
  }

  .index #effects .card .number {
    font-size: 22cqw;
  }

  .index #effects .card .number .unit {
    font-size: 5cqw;
  }

  .index #effects .card .title,
  .index #effects .card .description {
    font-size: 4cqw;
  }

  /*** #cost-performance ***/
  .index #cost-performance {
    padding: 20vw 0;
  }

  .index #cost-performance h2 {
    font-size: 8cqw;
    margin-bottom: 12cqw;
  }

  .index #cost-performance .features {
    margin-bottom: 12cqw;
  }

  .index #cost-performance .features li {
    flex-direction: column;
    font-size: 4.6cqw;
    justify-content: flex-start;
    text-align: center;
  }

  .index #cost-performance .features li img {
    width: 5cqw;
    height: 5cqw;
    margin-right: 3cqw;
  }

  .index #cost-performance .features li:not(:last-child) {
    margin-bottom: 5cqw;
  }

  .index #cost-performance .cost-table {
    overflow-x: auto;
  }

  .index #cost-performance .cost-table table {
    width: 280cqw;
  }

  .index #cost-performance .cost-table th,
  .index #cost-performance .cost-table td {
    font-size: 4cqw;
    padding: 3cqw;
  }

  /*** #plans ***/
  .index #plans {
    padding: 20vw 0;
  }

  .index #plans h2 {
    margin-bottom: 12cqw;
  }

  .index #plans .campaign {
    width: 100%;
    margin-bottom: 12cqw;
  }

  .index #plans .campaign li p {
    font-size: 5.5cqw;
  }

  .index #plans .plan-cards {
    flex-direction: column;
    gap: 40px;
  }

  .index #plans .card {
    width: 100%;
  }

  .index #plans .card .header {
    padding: 5cqw;
  }

  .index #plans .card .header .sub-title {
    font-size: 4cqw;
    margin-bottom: 4cqw;
  }

  .index #plans .card .header .main-title {
    font-size: 9cqw;
  }

  .index #plans .card .header .en-title {
    font-size: 3cqw;
  }

  .index #plans .card .header .price {
    font-size: 5cqw;
  }
  .index #plans .card .header .initial {
    font-size: 3.5cqw;
  }

  .index #plans .card .body {
    padding: 8cqw 5cqw 30cqw;
  }

  .index #plans .card .body h4 {
    font-size: 5cqw;
    margin-bottom: 5cqw;
  }

  .index #plans .card .body li {
    font-size: 4cqw;
    gap: 3cqw;
  }

  .index #plans .card .body li img {
    width: 4cqw;
    height: 4cqw;
  }

  .index #plans .card .body li:not(:last-child) {
    margin-bottom: 5cqw;
  }

  .index #plans .card .body > div {
    margin-bottom: 6cqw;
  }

  .index #plans .card .foot {
    
  }

  .index #plans .card .foot .cta {
    padding: 10cqw 0;
  }

  .index #plans .card .foot .cta a {
    width: 64cqw;
  }

  /*** #flow ***/
  .index #flow {
    padding: 20vw 0;
  }

  .index #flow h2 {
    margin-bottom: 12cqw;
  }

  .index #flow .flow-list {
    width: 100%;
  }

  .index #flow .flow-list li {
    flex-direction: column;
    gap: 5cqw;
  }

  .index #flow .flow-list .icon {
    width: 10cqw;
  }

  .index #flow .flow-list .text {
    text-align: center;
  }

  .index #flow .flow-list .text h3 {
    font-size: 6cqw;
  }

  .index #flow .flow-list .text p {
    font-size: 5cqw;
  }

  /*** #faq ***/
  .index #faq {
    padding: 20vw 0;
  }

  .index #faq h2 {
    margin-bottom: 12cqw;
  }

  .index #faq .faq-list {
    width: 100%;
  }

  .index #faq details:not(:last-child) {
    margin-bottom: 5cqw;
  }

  .index #faq summary {
    font-size: 5cqw;
  }

  .index #faq .answer {
    font-size: 4.5cqw;
  }

  .index #faq .answer p {
    padding-left: 2em;
    margin-bottom: 6cqw;
  }

  .index #faq .answer p:not(:last-child) {
    margin-bottom: 4cqw;
  }

  /*** #partner ***/
  .index #partner {
    padding: 20vw 0;
  }

  .index #partner h2 {
    font-size: 8cqw;
    margin-bottom: 12cqw;
  }

  .index #partner p {
    font-size: 5.4cqw;
    margin-bottom: 12cqw;
  }

  .index #partner .cta {
    width: 74cqw;
  }

  /*** #contact ***/
  .index #contact {
    padding: 20vw 0;
  }

  .index #contact h2 {
    margin-bottom: 16cqw;
  }

  .index #contact form {
    width: 100%;
  }

  .index #contact dt {
    font-size: 5cqw;
  }

  .index #contact dd input[type="text"],
  .index #contact dd input[type="email"],
  .index #contact dd input[type="tel"],
  .index #contact dd textarea,
  .index #contact dd select {
    font-size: 4cqw;
  }
  
  .index #contact dd input[type="text"],
  .index #contact dd input[type="email"],
  .index #contact dd input[type="tel"],
  .index #contact dd textarea {
    width: 94%;
  }

  .index #contact .note {
    font-size: 3cqw;
  }

  .index #contact .privacy-policy {
    font-size: 4cqw;
    margin: 12cqw 0;
  }

  .index #contact .submit-button button,
  .index #contact .submit-button input[type="submit"] {
    width: 100%;
    font-size: 5cqw;
    padding: 3cqw;
  }


  /******* lower *******/

  .lower .section {
    padding: 0 0 20vw;
  }

  .lower #main-header {
    padding: 0 0 10cqw;
  }

  .lower #main-header h1.title {
    font-size: 7.6cqw;
  }

  .lower #main-footer {
    padding: 0 0 10cqw;
  }

  .lower #main-footer a.back {
    font-size: 4cqw;
  }

  /* article style */
  /* .lower .section .content .article {
    font-size: 4.6cqw;
  } */

  /* form style */
  .lower .section .content .article .mw_wp_form_confirm .form-group {
    flex-direction: column;
  }
  .lower .section .content .article .mw_wp_form_confirm .form-group dt {
    padding: 1.0em 1.0em 0;
    border-bottom: none;
  }
  .lower .section .content .article .mw_wp_form_confirm .form-group dd {
    padding: 0 1.0em 1.0em;
  }
  .lower .section .content .article .mw_wp_form_confirm .submit-button {
    flex-direction: column-reverse;
    align-items: center;
    margin-top: 15cqw;
    gap: 0;
  }

  .lower .section .content .article .mw_wp_form_confirm .submit-button input[type="submit"],
  .lower .section .content .article .mw_wp_form_confirm .submit-button button[type="submit"] {
    width: 100%;
    font-size: 5cqw;
    padding: 3cqw;
  }

  
  /****************************
    03 footer
  ****************************/
  #footer {
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
  }

  #footer .logo {
    width: 60cqw;
  }

  #footer .info {
    text-align: center;
  }

  #footer .info nav {
    margin-bottom: 32px;
  }

  #footer .info nav a {
    display: block;
    margin-bottom: 8px;
  }

  #footer .info nav a:not(:last-child) {
    margin-right: 0;
  }

  #footer .info .copyright {
    
  }
  

  /****************************
    99 cta-float
  ****************************/
  #cta-float {
    bottom: -100px;
    right: 0;
    width: 100%;
    transform: none;
  }
  #cta-float a {
    display: block;
    height: 60px;
    width: auto;
    background-color: var(--color-accent-yellow);
    border-top: 2px solid #000;
  }
  #cta-float a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .ready #cta-float {
    right: 0;
    bottom: -1.5px;
  }

}
