@charset "utf-8";
/*===== ALL =====*//*#region*/
/* layout */
div.content {
  max-width: 1024px;
  padding: 30px;
  margin-inline: auto;
}
div.content > *:not(:last-child){
  margin-bottom: 50px;
}

/* font */
:root {
  --font-main: normal 700 1em "Noto Sans JP", sans-serif;
  --font-alphanumeric: normal 600 1em "Barlow Condensed", sans-serif;
}
body {
  font: var(--font-main);
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: center;
  --font-size-0: 13px;
  --font-size-1: 16px;
  --font-size-2: calc(var(--font-size-1) * 1.414);
  --font-size-3: calc(var(--font-size-1) * 2);
  --font-size-4: calc(var(--font-size-3) * 1.414);
  --font-size-5: calc(var(--font-size-3) * 2);
  font-size: var(--font-size-1);
}

/* color-palette */
:root {
  --yellow: #FFEE00;
  --blue: #00A9FF;
  --white: #FFFFFF;
  --gray: #EEEEEE;
  --darkgray: #AAAAAA;
  --black: #000000;
}

/* boundary-wave */
article {
  --wave-height: 10dvw;
  position: relative;
  background: var(--theme-color);
  padding-bottom: var(--wave-height);
}
.boundary-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--wave-height);
  transform: translateY(calc(-1 * var(--wave-height)));
  overflow: hidden;
  line-height: 0;
  z-index: 2;
}
.boundary-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}
.boundary-wave svg path {
  fill: var(--theme-color);
}

/* templete */
h2 .main-heading {
  display: block;
  font: var(--font-alphanumeric);
  color: var(--blue);
  font-size: var(--font-size-5);
  letter-spacing: 0em;
}
h2.inview .main-heading span {
  display: inline-block;
}
h2 .sub-heading{
  display: block;
  font-size: var(--font-size-1);
}
/* button */
a[role="button"] {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: var(--button-color);
  width: 500px;
  height: 50px;
  border: 1px var(--black) solid;
  border-radius: 9999px;
  text-align: center;
  line-height: 1em;
  z-index: 1;
}
a[role="button"] span.label {
  display: block;
  flex-grow: 1;
  text-align: center;
  font-size: var(--font-size-1);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%); /* 完全中央 */
  color: var(--black);
  font-weight: bold;
  width: 100%;
  padding: 0 50px;
}
a[role="button"] div {
  background: var(--black);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 10px;
}
a[role="button"] div img {
  width: 80%;
}
a[role="button"] div img.arrow-right {
  transform: rotate(-90deg);
}
section a[role="button"] {
  margin-block: 20px;
  margin-inline: auto;
}
/*===== /ALL =====*//*#endregion*/

/*===== #MAIN-VISUAL =====*//*#region*/
/* motif */
figure.motif {
  --motif-bridge-width: calc(var(--header-height) * 9);
  --motif-stroke-width: 6px;
}
figure#motif-curtain {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100dvh;
  background: var(--yellow);
  z-index: 103;
}
figure#motif-curtain img  {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25%;
  opacity: 0;
}
/* motif-bridge */
figure#motif-bridge {
  position: fixed;
  top: -10px;
  left: -10px;
  overflow: hidden;
  width: var(--motif-bridge-width);
  z-index: 106;

  pointer-events: none;
}
figure#motif-bridge path {
  fill: var(--yellow);
  stroke: var(--black);
  stroke-width: var(--motif-stroke-width);
  vector-effect: non-scaling-stroke;
  pointer-events: visiblePainted;
}

/* motif-post */
figure#motif-post {
  position: fixed;
  left: -10px;
  top: -10px;
  overflow: hidden;
  z-index: 102;
  width: calc(2 * var(--motif-bridge-width));
  height: 100dvh;
}
figure#motif-post svg {
  width: 100%;
  height: 100%;
}
figure#motif-post path {
  stroke: var(--black);
  stroke-width: var(--motif-stroke-width);
  vector-effect: non-scaling-stroke;
}
/* motif-wave */
figure#motif-wave {
  display: none;
  position: sticky;
  overflow: hidden;
  height: 220px;
  bottom: 0;
  margin-top: -220px;
  z-index: 104;
  transform: translateY(100px);
}
figure#motif-wave svg {
  width: 120%;
  position: absolute;
  left: -10%;
  top: 10px;
}
figure#motif-wave path {
  fill: var(--blue);
  stroke: var(--black);
  stroke-width: var(--motif-stroke-width);
  vector-effect: non-scaling-stroke;
}
/* motif-background */
figure#motif-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: var(--white);
  z-index: 101;
  pointer-events: none;
}
/*===== /MAIN-VISUAL =====*//*#endregion*/

/*===== #HEADER =====*//*#region*/
:root {
  --header-height: 50px;
  --header-gap: 20px;
  --header-gap-side: calc(var(--header-gap) * 1.5);
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: 200;
  pointer-events: none;
}
header > * {
  margin: var(--header-gap);
}
/* header-logo */
header figure#header-logo {
  position: absolute;
  left: 0;
  top: 0;
  margin-left: var(--header-gap-side);
  opacity: 1;
  pointer-events: auto;
}
header figure#header-logo img {
  width: auto;
  height: var(--header-height);
}
/* conversion */
header a[role="button"]#conversion {
  --button-color: var(--yellow);
  position: absolute;
  top: 0;
  right: calc(var(--header-gap-side) + var(--header-height));
  width: 300px;
  pointer-events: auto;
}
/* navigation-menu */
header button#navigation-menu {
  position: absolute;
  top: 0;
  right: 0;
  margin-right: var(--header-gap-side);
  pointer-events: auto;  
}
header button#navigation-menu img {
  height: var(--header-height);
}
header button#navigation-menu p {
  font-size: var(--font-size-1);
}
/* internal-link */
header nav#internal-link {
  position: absolute;
  top: calc(var(--header-gap) + var(--header-height));
  left: 0;
  margin-left: var(--header-gap-side);
  text-align: left;
  font-size: var(--font-size-2);
}
header nav#internal-link ul{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
header nav#internal-link li {
  width: max-content;
  height: max-content;
}
header nav#internal-link li a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5em;
}
header nav#internal-link li img {
  width: var(--header-height);
  height: 1em;
  object-fit: contain;
  object-position: center;
  transform: scale(0);
}
/* external-link */
header nav#external-link {
  position: absolute;
  top: 0;
  left: calc(var(--header-height) * 5);
  text-align: left;
  font-size: var(--font-size-2);
}
header nav#external-link ul {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
header nav#external-link li {
  position: relative;
  width: var(--header-height);
  height: var(--header-height);
}
header nav#external-link img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform : translate(-50%,-50%);
  width: 60%;
}
/*===== /HEADER =====*//*#endregion*/

/*===== #FIRSTVIEW =====*//*#region*/
section#firstview {
  height: 99vh;
  min-height: 700px;
  position: relative;
}
section#firstview figure {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 50px;
  align-items: center; 
  width: 100%;
  max-width: 1024px;
  padding: 30px;
}
section#firstview figure img {
  width: 30%;
}
section#firstview figure figcaption {
  text-align: left;
}
section#firstview figure figcaption p {
  color: var(--black);
}
section#firstview figure figcaption .main-copy {
  font-size: var(--font-size-3);
  margin-bottom: 20px;
}
section#firstview figure figcaption .main-copy .mark{
  background: linear-gradient(transparent 0%, var(--yellow) 0%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
}
section#firstview ul.anchor {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1024px;
  padding: 30px;
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
}
section#firstview ul.anchor li {
  width: 30%;
}
section#firstview a[role="button"] {
  --button-color: var(--white);
  width: 100%;
}
/*===== /FIRSTVIEW =====*//*#endregion*/

/*===== #INTRODUCTION =====*//*#region*/
article#introduction-1 {
  --theme-color: var(--gray);
  padding-bottom:  calc(var(--wave-height) / 6);
}
article#introduction-1 p.overview {
  font-size: var(--font-size-2);
}
article#introduction-1 img {
  max-width: 700px;
}
article#introduction-2 {
  --theme-color: var(--yellow);
}
article#introduction-2 p {
  font-size: var(--font-size-2);
  word-break: keep-all;
  overflow-wrap: anywhere;
}
article#introduction-2 p .accentuation {
  font-size: var(--font-size-3);
}
article#introduction-2 p img {
  width: 15em;
  display: inline-block;
  margin: 1em;
}
article#introduction-2 p img {
  width: 15em;
  display: inline-block;
  margin: 1em;
}
/*===== /INTRODUCTION =====*//*#endregion*/

/*===== #ABOUT =====*//*#region*/
article#about-1 {
  --theme-color: var(--white);
}
article#about-1 p.overview {
  font-size: var(--font-size-2);
}
article#about-1 ol li {
  list-style-type: none;
  counter-increment: cnt;
  position: relative;
  width:100%;
  margin-bottom: 30px;
  font-size: var(--font-size-2);
}
article#about-1 ol li::before {
  content: "";
  position: absolute;
  top: 1.5em;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--darkgray);
}
article#about-1 div.ribbon {
  --ribbonborder: 2px;
  --ribbon-shape:
    0% 0%,
    100% 0%,
    calc(100% - 1em) 50%,
    100% 100%,
    0% 100%,
    1em 50%;
  --ribbonborder-shape:
    calc(var(--ribbonborder) + (1.4 * var(--ribbonborder))) var(--ribbonborder),
    calc(100% - (var(--ribbonborder) + (1.4 * var(--ribbonborder)))) var(--ribbonborder),
    calc(100% - (1em + (1.4 * var(--ribbonborder)))) 50%,
    calc(100% - (var(--ribbonborder) + (1.4 * var(--ribbonborder)))) calc(100% - var(--ribbonborder)),
    calc(var(--ribbonborder) + (1.4 * var(--ribbonborder))) calc(100% - var(--ribbonborder)),
    calc(1em + (1.4 * var(--ribbonborder))) 50%;
  position: relative;
  width: 400px;
  margin-inline: auto;
  padding: 0.5em;
  background: var(--black);
  color: var(--black);
  clip-path: polygon(var(--ribbon-shape));
}
article#about-1 div.ribbon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--white);
  z-index: -1;
  clip-path: polygon(var(--ribbonborder-shape));
}
article#about-1 div.ribbon .accentuation {
  color: var(--blue);
}
article#about-1 figure {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
article#about-1 ol li:nth-of-type(odd) figure {
  flex-direction: row;
}
article#about-1 ol li:nth-of-type(even) figure {
  flex-direction: row-reverse;
}
article#about-1 figure img {
  width: 30%;
}
article#about-1 figure figcaption {
  width: 65%;
  text-align: left;
}
article#about-1 figure figcaption h3::before {
  content: counter(cnt, decimal-leading-zero);
  color: var(--blue);
  font: var(--font-alphanumeric);
  margin-right: 0.5em;
}
article#about-1 figure figcaption h3 {
  font-size: var(--font-size-3);
  margin: 30px 0;
  color: var(--black);
}
article#about-1 figure figcaption p {
  font-size: var(--font-size-1);
  font-weight: 500;
}
article#about-2 {
  --theme-color: var(--gray);
}
article#about-2 div.content {
  max-width: none;
  overflow-x: hidden;
}
article#about-2 ul.case {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  width: max-content;

  --case-visible-count: 6.5;
  --case-gap: 1dvw;

  margin-left: 0;
}
article#about-2 ul.case li {
  width: calc(100dvw / var(--case-visible-count) - var(--case-gap));
  overflow: hidden;
  border-radius: 50%;
  margin-right: var(--case-gap);
}
article#about-2 p {
  font-size: var(--font-size-0);
  font-weight: 500;
  margin: 1em 0;
}
section#about a[role="button"] {
  --button-color: var(--yellow);
}
/*===== /ABOUT =====*//*#endregion*/

/*===== #PRICE =====*//*#region*/
article#price-1 {
  --theme-color: var(--white);
}
article#price-1 div.campaign {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  font-size: var(--font-size-3);
  line-height: 1.5em;
}
article#price-1 div.campaign .campaign-text_1 {
  display: block;
}
article#price-1 div.campaign .campaign-text_2 {
  font-size: var(--font-size-1);
  line-height: 0.5em;
}
article#price-1 div.campaign .campaign-text_2 .discount {
  font: var(--font-alphanumeric);
  font-size: var(--font-size-3);
  color: var(--blue);
}
article#price-1 div.campaign .campaign-text_2 .discount .unit {
  font-size: var(--font-size-1);
}
article#price-1 div.campaign img {
  width: 60px;
}
article#price-1 div.campaign img:last-of-type {
  transform: scaleX(-1);
  transform-origin: center;
}
article#price-1 div.price-breakdown {
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  position: relative;
}
article#price-1 div.price-breakdown::before {  
  content: "+";
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 30px;
  font-weight: bold
}
article#price-1 div.price-breakdown div.basic-fee {
  grid-area: 1 / 1 / 3 / 2;
}
article#price-1 div.price-breakdown div.success-fee {
  grid-area: 1 / 2 / 2 / 3;
}
article#price-1 div.price-breakdown div.attention {
  grid-area: 2 / 2 / 3 / 3;
}
article#price-1 div.price-breakdown div.fee {
  border-radius: 20px;
  border: var(--black) solid 3px;
  overflow: hidden;
}
article#price-1 div.price-breakdown div.fee h3 {
  padding: 0.5em;
  border-bottom: var(--black) solid 3px;
  background: var(--gray);
  font-size:var(--font-size-2);
}
article#price-1 div.price-breakdown div.fee .fee-detail {
  padding: 1em 2em;
}
article#price-1 div.price-breakdown div.fee .value {
  font: var(--font-alphanumeric);
  font-size: var(--font-size-5);
}
article#price-1 div.price-breakdown div.fee .value .unit {
  font-size: var(--font-size-2);
}
article#price-1 div.price-breakdown div.fee .value .original {
  font-size: 50%;
  text-decoration: line-through;
}
article#price-1 div.price-breakdown div.fee p {
  font-weight: 500;
  font-size: var(--font-size-1);
}
article#price-1 div.price-breakdown div.fee h5 {
  font-weight: 500;
  font-size: var(--font-size-1);
  margin: 1em 0;
  padding:  0.5em 0;;
  border-top: var(--darkgray) solid 1px;
  border-bottom: var(--darkgray) solid 1px;
}
article#price-1 div.price-breakdown div.fee ul {
  font-weight: 500;
  font-size: var(--font-size-1);
  text-align: left;
  line-height: 1.5em;
}
article#price-1 div.price-breakdown div.fee ul li::marker {
 color: var(--darkgray);
}
article#price-1 div.price-breakdown div.attention ul {
  font-weight: 500;
  font-size: var(--font-size-0);
  text-align: left;
  line-height: 1.5em;
}
/*===== /PRICE =====*//*#endregion*/

/*===== #STEP =====*//*#region*/
article#step-1 {
  --theme-color: var(--yellow);
}
article#step-1 ol li {
  width: 100%;
  height: 100px;
  border-radius: 9999px;
  background: var(--white);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  padding-right: 50px;
  margin-bottom: 50px;
}
article#step-1 ol li div.numbering {
  width: 70px;
  height: 70px;
  border-radius: 9999px;
  background: var(--blue);
  color: var(--white);
  font: var(--font-alphanumeric);
  font-size: var(--font-size-3);
}
article#step-1 ol li div.numbering::before {
  content: "Step";
  display: block;
  transform: translateY(40%);
  font-size: var(--font-size-1);
}
article#step-1 ol li h3 {
  width: calc(50% - 150px);
  font-size: var(--font-size-2);
  color: var(--blue);
  text-align: left;
}
article#step-1 ol li p {
  width: 50%;
  text-align: left;
  font-weight: 500;
  line-height: 1.5em;
  letter-spacing: 0;
}
/*===== /STEP =====*//*#endregion*/

/*===== #FAQ =====*//*#region*/
article#faq-1 {
  --theme-color: var(--white);
}
article#faq-1 dt,
article#faq-1 dd {
  font-size: var(--font-size-1);
  width: 100%;
  height: calc(4em + 20px);
  border-radius: 9999px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 50px 10px calc(3em + 50px);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  line-height: 1.5em;
}
article#faq-1 dl dt {
  background: var(--gray);
}
article#faq-1 dl dd {
  background: var(--yellow);
}
article#faq-1 dl dt::before,
article#faq-1 dl dd::before {
  position: absolute;  
  font: var(--font-alphanumeric);
  font-size: var(--font-size-2);
  left: calc(2 * var(--font-size-1) + 10px - 1em);
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  height: 2em;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}
article#faq-1 dl dt::before {
  content: "Q";
  background-color: var(--blue);
  color: var(--white);
}
article#faq-1 dl dd::before {
  content: "A";
  background-color: var(--white);
  color: var(--black);
}
article#faq-1 a[role="button"] {
  --button-color: var(--white);
}
/*===== /FAQ =====*//*#endregion*/

/*===== #BLOG =====*//*#region*/
article#blog-1 {
  --theme-color: var(--gray);
}
article#blog-1 .blog-article {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: 30px;
}
article#blog-1 .blog-article_new ,
article#blog-1 .blog-article_popular {
  width: 100%;
}
article#blog-1 .blog-article h3 {
  font-size: var(--font-size-2);
  margin-bottom: 20px;
}
article#blog-1 .blog-article .e-card {
  display: flex;
  flex-direction: row;
  background-color: var(--white);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
  font-weight: 500;
  aspect-ratio: calc(16 / 9 / 0.4);
}
article#blog-1 .blog-article .card-thumb {
  width: 40%;
}
article#blog-1 .blog-article .card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
article#blog-1 .blog-article .card-content {
  flex: 1;
  padding: 0.5em 1em 0.2em;
}
article#blog-1 .blog-article .card-title {
  position: relative;
  height: 100%;
  text-align: left;
  font-size: var(--font-size-0);
  line-height: 1.5em;
  word-break: normal;
  overflow: hidden;
}
article#blog-1 .blog-article .card-title::after {
  content: "";
  position: absolute;
  height: 1em;
  width: 100%;
  left: 0;
  bottom: 0;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0), rgb(255, 255, 255) 100%);
}
article#blog-1 .blog-article .card-meta {
  display: none;
}
article#blog-1 a[role="button"] {
  --button-color: var(--white);
}
/*===== /BLOG =====*//*#endregion*/

/*===== #FOOTER =====*//*#region*/
footer {
  display: none;
  position: relative;
  background: var(--blue);
  color: var(--white);
  padding: 30px;
  z-index: 105;
}
footer ul.logo {
  display: flex;
  flex-direction: row;
  gap: 50px;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
footer ul.logo li {
  height: 50px;
}
footer ul.logo li img {
  width: auto;
  height: 100%;
}
footer ul.external-link {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-block: 20px;
}
footer ul.external-link img {
  width: 30px;
  height: auto;
}
footer ul.relation-link {
  display: flex;
  flex-direction: row;
  gap: 50px;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-0);
}
footer p.copyright {
  font-size: 10px;
  font-weight: 500;;
}
/*===== /FOOTER =====*//*#endregion*/