@charset "utf-8";
/*===== ALL =====*//*#region*/
/* layout */
div.content {
  max-width: 1024px;
  padding: 30px;
  margin: 0 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;
}

/* motif */
:root {
    --motif-bridge-width: 400px;
}

figure#motif-curtain {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: var(--yellow);
  z-index: 1000;
  animation: opening-curtain 1s linear 0.1s forwards;
}
@keyframes opening-curtain {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    display: none;
  }
}
figure#motif-bridge {
  position: fixed;
  left: -10px;
  top: -10px;
  overflow: hidden;
  z-index: 101;
  width: calc(2 * var(--motif-bridge-width));
  animation: opening-bridge 2s ease 0s forwards;
}
@keyframes opening-bridge {
  from {
    width: calc(2 * var(--motif-bridge-width));
  }
  to {
    width: var(--motif-bridge-width);
  }
}
figure#motif-bridge path {
  fill: var(--yellow);
  stroke: var(--black);
  stroke-width: 0.8px;
  animation: opening-bridge-path 2s ease 0s forwards;
}
@keyframes opening-bridge-path {
  from {
    stroke-width: 1px;
  }
  to {
    stroke-width: 2px;
  }
}
figure#motif-post {
  position: absolute;
  left: -10px;
  top: -10px;
  overflow: hidden;
  z-index: 11;
  width: calc(2 * var(--motif-bridge-width));
  height: 100vh;
  animation: opening-post 2s ease 0s forwards;
}
@keyframes opening-post {
  from {
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }
  to {
    -webkit-clip-path: inset(100% 0 0 0);
    clip-path: inset(100% 0 0 0);
  }
}
figure#motif-post svg {
  width: 100%;
  height: 100%;
}
figure#motif-post path {
  stroke: var(--black);
  stroke-width: 1px;
}
figure#motif-wave {
  position: sticky;
  overflow: hidden;
  z-index: 10;
  height: 220px;
  bottom: 0;
  z-index: 100;
  animation: opening-wave 2s ease 0s forwards;
}
figure#motif-wave svg {
  width: 120%;
  position: absolute;
  left: -10%;
  top: 10px;
}
@keyframes opening-wave {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(100px);
  }
}
figure#motif-wave path {
  fill: var(--blue);
  stroke: var(--black);
  stroke-width: 8px;
}

/* boundary-wave */
article {
  position: relative;
  background: var(--theme-color);
  padding-bottom: var(--wave-height);
  --wave-height: 10vw;
}
.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: 100;
}
.boundary-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}
.boundary-wave svg path {
  fill: var(--theme-color);
}

/* templete */
h2 .main-headline{
  display: block;
  font: var(--font-alphanumeric);
  color: var(--blue);
  font-size: var(--font-size-5);
  letter-spacing: 0em;
}
h2 .sub-headline{
  display: block;
  font-size: var(--font-size-1);
}
/* button */
a.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;
  margin: 20px auto;
  transition: filter 0.5s ease;
  transform: translateZ(0);
  z-index: 1;
}
a.button:hover {
  filter: drop-shadow(0px 0px 10px var(--darkgray));
  transform: translateZ(0);
}
a.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.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.button div img {
  width: 80%;
}
a.button div img.arrow-right {
  transform: rotate(-90deg);
}
/*===== /ALL =====*//*#endregion*/

/*===== #HEADER =====*//*#region*/
header {
  z-index: 102;
}
header img.logo {
  position: fixed;
  left: 0;
  top: 0;
  width: 150px;
  margin: 20px 50px;
  z-index: 102;
}
header a.button {
  --button-color: var(--yellow);
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  margin: 20px 50px;
  z-index: 102;
}
/*===== /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 {
  width: auto;
  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;
  animation: marker-draw 1s ease-out 1s forwards;
}
section#firstview figure figcaption .main-copy .mark:nth-of-type(2){
  animation-delay: 1.5s;
}
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.button {
  --button-color: var(--white);
  width: 100%;
}
@keyframes marker-draw {
  to {
    background-size: 100% 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;
}
/*===== /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: 0 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-duration: 5s;
  --case-gap: 1vw;

  margin-left: 0;
  animation: case-marquee calc(var(--case-duration) * var(--case-visible-count)) linear infinite;
}
article#about-2 ul.case li {
  width: calc(100vw / var(--case-visible-count) - var(--case-gap));
  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.button {
  --button-color: var(--yellow);
}
@keyframes case-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/*===== /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);
  padding-bottom: 0;
}
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.button {
  --button-color: var(--white);
}
/*===== /FAQ =====*//*#endregion*/

/*===== #TEST =====*//*#region*/
article#template-1 {
  --theme-color: var(--black);
}
/*===== /TEST =====*//*#endregion*/

/*===== #FOOTER =====*//*#region*/
footer {
  position: relative;
  background: var(--blue);
  color: var(--white);
  padding: 30px;
  z-index: 100;
}
footer ul.logo {
  display: flex;
  flex-direction: row;
  gap: 50px;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}
footer ul.logo li {
  height: 50px;
}
footer ul.logo li img {
  width: auto;
  height: 100%;
}
footer ul.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*/


/*===== #xxx =====*//*#region*/
/*===== /xxx =====*//*#endregion*/
