@charset "utf-8";

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --text-color: #142120;
  --primary-color: #235D57;
  --easing: cubic-bezier(0.33, 1, 0.68, 1);
  --gradient: linear-gradient(-45deg, #139688, #4DBBAE);
}

html {
  font-size: 0.0694444444444444vw;
}

body {
  margin: 0;
  padding: 0;
  background: url("/wp-content/themes/grain/assets/img/lp/lp01/bg_page.jpg") no-repeat center center fixed / cover;
  color: #fff;
  font-size: 16rem;
  font-weight: 400;
  line-height: 2;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.02em;
  -webkit-text-size-adjust: none;
}

@media (width < 768px) {
  html {
    font-size: 0.2666666666666667vw;
  }

  body {
    font-size: 15rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-size: 100%;
  font-weight: 500;
  line-height: 1.6;
}

p {
  margin: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

ol {
  margin: 0;
  padding: 0 0 0 24rem;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
  padding: 0;
}

a,
.a {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: .4s var(--easing);
}

a img {
  border: none;
}

img {
  width: 100%;
  height: auto;
  border: 0;
  vertical-align: middle;
}

sup {
  display: inline-block;
  font-size: 0.8em;
}

em {
  font-style: normal;
}

table {
  border-collapse: collapse;
}

main {
  display: block;
}

@media (width < 768px) {
  body {
    font-size: 15rem;
  }
}



/* ---------------- fix */
html {
  overflow-y: scroll;
}

body.-fix {
  position: fixed;
  width: 100%;
}


/* ---------------- layout */
#wrap::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: url("/wp-content/themes/grain/assets/img/lp/lp01/bg_page.jpg") no-repeat center / cover;
}

main section {
  position: relative;
  padding: 0 0 88rem;
  z-index: 1;
}

.l-container {
  max-width: 1120rem;
  margin: 0 auto;
}

@media (width < 768px) {
  main section {
    padding: 0 0 48rem;
  }

  .l-container {
    padding: 0 32rem
  }
}


/* ---------------- general */
/* hidden */
.-mobile {
  display: none;
}

@media (width < 768px) {
  .-pc {
    display: none;
  }

  .-mobile {
    display: block;
  }
}

/* text */
.-en {
  font-family: "Kumbh Sans", sans-serif;
}

.-txt-right {
  text-align: right;
}

.-url {
  word-break: break-all;
}

/* btn */
.-btn {
  display: block;
  padding: 0 16rem;
  border-radius: 40rem;
  background: #ccc;
  color: #fff;
  font-size: 15rem;
  font-weight: 700;
  line-height: 40rem;
}

.-btn.-download {
  background: #F0811A;
}

.-btn.-download:hover {
  background: #F05E1A;
}

.-btn.-inquiry {
  background: #1AC2F0;
}

.-btn.-inquiry:hover {
  background: #1A93F0;
}


/* ---------------- head */
.p-head-group {
  position: relative;
  margin-bottom: 32rem;
  padding-top: 80rem;
  text-align: center;
}

.p-head-group::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 4rem;
  height: 56rem;
  background: linear-gradient(#FFFFFF, #F0811A);
  translate: -50% 0;
}

.p-head-group h2 {
  font-size: 36rem;
  font-weight: 700;
  line-height: 1.6;
}

.p-head-group .lead {
  margin-top: 8rem;
  line-height: 1.6;
}

@media (width < 768px) {
  .p-head-group {
    padding-top: 40rem;
  }

  .p-head-group::before {
    width: 2rem;
    height: 28rem;
  }

  .p-head-group h2 {
    font-size: 20rem;
  }
}

/* color */
.p-head-group.-color {
  color: var(--primary-color);
}

/* action */
.p-head-group::before {
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  transition: .4s var(--easing);
}

.p-head-group.-actioned::before {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.p-head-group h2 {
  opacity: 0;
  translate: 0 64rem;
  transition: .4s var(--easing);
  transition-delay: .4s;
}

.p-head-group.-actioned h2 {
  opacity: 1;
  translate: 0 0;
}



/* ---------------- btn-top */
.p-btn-top {
  position: fixed;
  right: 64rem;
  bottom: 64rem;
  z-index: 10;
  transition: .2s var(--easing);
}

.p-btn-top .a {
  display: block;
  opacity: 0;
}

.p-btn-top .a::before {
  content: '';
  display: block;
  aspect-ratio: 98 / 163;
  width: 98rem;
  background: url("/wp-content/themes/grain/assets/img/lp/lp01/btn_top.svg") no-repeat center / contain;
  transition: .2s var(--easing);
}

.p-btn-top .a:hover::before {
  translate: 0 -32rem;
}

@media (width < 768px) {
  .p-btn-top {
    display: none;
  }
}

/* hidden */
.p-btn-top .a.-visible {
  opacity: 1;
}



/* ---------------- mobile-btns */
.p-mobile-btns {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: rgba(255 255 255 / 40%);
  backdrop-filter: blur(50rem);
}

.p-mobile-btns .btns {
  display: flex;
  justify-content: center;
  gap: 16rem;
  padding: 8rem 0 10rem;
}

@media (width < 768px) {
  .p-mobile-btns {
    display: block;
  }
}



/* ---------------- header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  background: rgba(19 150 136 / 60%);
  backdrop-filter: blur(50rem);
}

header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24rem;
  padding: 0 24rem;
}

header .logo img {
  width: 253rem;
}

header .btn-nav {
  display: none;
}

header nav {
  display: flex;
  align-items: center;
  gap: 16rem;
}

header .nav {
  display: flex;
  align-items: center;
  gap: 16rem;
}

header .nav .a {
  display: block;
  position: relative;
  overflow: hidden;
  color: #fff;
  font-size: 15rem;
  font-weight: 700;
  line-height: 68rem;
}

header .nav .a:hover {
  color: #F0811A;
}

header .nav .a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  aspect-ratio: 1 / 1;
  width: 8rem;
  border-radius: 50%;
  background: #F0811A;
  translate: -50% 50%;
}

header .btns {
  display: flex;
  align-items: center;
  gap: 16rem;
}

@media (width < 768px) {
  header .wrap {
    display: block;
  }

  header .logo {
    display: flex;
    align-items: center;
    height: 50rem;
    padding: 16rem 0;
  }

  header .logo img {
    width: 142rem;
  }

  header .btn-nav {
    display: block;
    position: absolute;
    top: 0;
    right: 24rem;
  }

  header .btn-nav .a {
    display: block;
    position: relative;
    aspect-ratio: 1 / 1;
    width: 46rem;
  }

  header .btn-nav .a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30rem;
    height: 2rem;
    box-shadow: 0 4rem #fff;
    background: #fff;
    translate: -50% -5rem;
  }

  header .btn-nav .a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30rem;
    height: 2rem;
    background: #fff;
    translate: -50% 3rem;
  }

  header .nav-group {
    height: 0;
    padding: 0 40rem;
    overflow: hidden;
    transition: .4s var(--easing);
  }

  header nav {
    display: block;
  }

  header .nav {
    display: block;
  }

  header .nav li+li {
    margin-top: 20rem;
  }

  header .nav .a {
    line-height: inherit;
  }

  header .nav .a::after {
    display: none;
  }

  header .btns {
    display: block;
    margin-top: 45rem;
  }

  header .btns li+li {
    margin-top: 24rem;
  }

  header .btns .-btn {
    line-height: 54rem;
    text-align: center;
  }

  /* active */
  header.-active .btn-nav .a::before {
    box-shadow: 0 4rem transparent;
    translate: -50% -50%;
    rotate: -38.39deg;
  }

  header.-active .btn-nav .a::after {
    translate: -50% -50%;
    rotate: -141.61deg;
  }

  header.-active .nav-group {
    height: calc(100vh - 46rem);
    padding: 36rem 40rem;
    overflow: auto;
  }
}

/* scroll */
header .nav .a::after {
  opacity: 0;
  transition: .2s var(--easing);
}

header .nav .a.-active::after {
  opacity: 1;
}



/* ---------------- modal */
.p-modal-image {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  transition: .4s var(--easing);
}

.p-modal-image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(19 150 136 / 80%);
  backdrop-filter: blur(50rem);
}

.p-modal-image .btn-close {
  position: absolute;
  top: 40rem;
  right: 40rem;
  z-index: 1;
}

.p-modal-image .btn-close .a {
  display: block;
  aspect-ratio: 1 / 1;
  width: 58rem;
  border-radius: 50%;
  background: #fff;
}

.p-modal-image .btn-close .a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20rem;
  height: 2rem;
  background: var(--primary-color);
  translate: -50% -50%;
  rotate: -38.39deg;
}

.p-modal-image .btn-close .a::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20rem;
  height: 2rem;
  background: var(--primary-color);
  translate: -50% -50%;
  rotate: -141.61deg;
}

.p-modal-image figure {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1063rem;
  max-width: 100%;
  overflow: auto;
  translate: -50% -50%;
}

@media (width < 768px) {
  .p-modal-image .btn-close {
    top: 24rem;
    right: 24rem;
  }

  .p-modal-image .btn-close .a {
    width: 40rem;
  }
}

/* active */
.p-modal-image.-active {
  visibility: visible;
  opacity: 1;
}



/* ---------------- hero */
.section-hero {
  padding-top: 131rem;
  padding-bottom: 0;
  background: url("/wp-content/themes/grain/assets/img/lp/lp01/bg_hero.jpg") no-repeat center / cover;

}

.section-hero .l-container {
  max-width: 1140rem;
}

@media (width < 768px) {
  .section-hero {
    padding-top: 70rem;
    background-image: url("/wp-content/themes/grain/assets/img/lp/lp01/bg_hero_mobile.jpg");
  }
}

/* p-hero */
.p-hero {
  position: relative;
}

.p-hero>* {
  position: relative;
  z-index: 1;
}

.p-hero h1 {
  font-size: 64rem;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
}

.p-hero .copy {
  margin-top: 20rem;
  font-size: 24rem;
  font-weight: 700;
  line-height: 46rem;
}

.p-hero .copy em {
  font-size: 28rem;
  font-style: normal;
}

.p-hero .copy .white {
  width: fit-content;
  padding: 0 16rem;
  background: #fff;
  color: #F0811A;
}

.p-hero .copy .orange {
  width: fit-content;
  padding: 0 16rem;
  background: #F0811A;
  color: #fff;
  translate: 50rem 0;
}

.p-hero .img {
  position: absolute;
  top: 91rem;
  right: 131rem;
  width: 541rem;
  z-index: 0;
}

.p-hero .body {
  width: 100%;
  max-width: 450rem;
  margin-top: 24rem;
  padding-left: 50rem;
  line-height: 1.75;
}

.p-hero .badge {
  position: absolute;
  top: 46rem;
  right: 0;
  width: 182rem;
}

.p-hero .feature {
  position: absolute;
  top: 269rem;
  right: 0;
  width: 160rem;
}

.p-hero .feature li+li {
  margin-top: 27rem;
}

.p-hero .feature li {
  position: relative;
  padding: 45rem 8rem 22rem;
  border-radius: 8rem;
  background: rgba(77 187 173 / 50%);
  font-size: 15rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  backdrop-filter: blur(20rem);
}

.p-hero .feature li::before {
  content: '';
  position: absolute;
  top: -19rem;
  left: 50%;
  aspect-ratio: 67 / 54;
  width: 67rem;
  background: url("/wp-content/themes/grain/assets/img/lp/lp01/hero_ico_01.svg") no-repeat center / contain;
  translate: -50% 0;
}

.p-hero .feature li.feature02::before {
  background-image: url("/wp-content/themes/grain/assets/img/lp/lp01/hero_ico_02.svg");
}

.p-hero .btn {
  width: 100%;
  max-width: 462rem;
  margin-top: 42rem;
}

.p-hero .btn img {
  transition: .2s var(--easing);
}

.p-hero .btn a:hover img {
  scale: 0.95;
}

@media (width < 768px) {
  .p-hero h1 {
    font-size: 22rem;
  }

  .p-hero .copy {
    margin-top: 16rem;
    font-size: 16rem;
    line-height: 34rem;
  }

  .p-hero .copy .orange {
    translate: 30rem 0;
  }

  .p-hero .copy em {
    font-size: 20rem;
  }

  .p-hero .img {
    top: 102rem;
    right: 60rem;
    width: 199rem;
  }

  .p-hero .body {
    margin-top: 151rem;
    padding-left: 0;
    font-size: 14rem;
    line-height: 1.6;
  }

  .p-hero .badge {
    top: 149rem;
    right: -28rem;
    width: 114rem;
  }

  .p-hero .feature {
    position: static;
    width: auto;
    margin-top: 10rem;
  }

  .p-hero .feature li+li {
    margin-top: 8rem;
  }

  .p-hero .feature li {
    display: grid;
    grid-template-columns: 37rem 1fr;
    align-items: center;
    gap: 8rem;
    padding: 10rem;
    font-size: 14rem;
  }

  .p-hero .feature li::before {
    position: static;
    width: 37rem;
    translate: 0;
  }

  .p-hero .btn {
    margin-top: 12rem;
  }
}


.section-hero .-scroll {
  overflow: hidden;
  pointer-events: none;
}

.section-hero .track {
  display: flex;
  width: max-content;
  animation: scroll-left 20s linear infinite;
}

.section-hero .-scroll span {
  color: rgba(60, 159, 148, 0.2);
  font-size: 80rem;
  font-weight: 700;
  line-height: 130rem;
  letter-spacing: 0.03rem;
  white-space: nowrap;
}

@media (width < 768px) {
  .section-hero .-scroll span {
    font-size: 30rem;
    font-weight: 700;
    line-height: 53rem;
    letter-spacing: 0.03rem;
    white-space: nowrap;
  }
}




/* load */
.p-hero h1 {
  clip-path: inset(0 100% 0 0);
  transition: .8s var(--easing);
}

.-load .p-hero h1 {
  clip-path: inset(0);
}

.p-hero .copy .white,
.p-hero .copy .orange {
  clip-path: inset(0 100% 0 0);
  transition: .4s var(--easing);
  transition-delay: .4s;
}

.-load .p-hero .copy .white,
.-load .p-hero .copy .orange {
  clip-path: inset(0);
}

.p-hero .body {
  opacity: 0;
  translate: 0 64rem;
  transition: .4s var(--easing);
  transition-delay: .6s;
}

.-load .p-hero .body {
  opacity: 1;
  translate: 0;
}

.p-hero .badge {
  opacity: 0;
  translate: 0 64rem;
  transition: .4s var(--easing);
  transition-delay: .6s;
}

.-load .p-hero .badge {
  opacity: 1;
  translate: 0;
}

.p-hero .feature {
  opacity: 0;
  translate: 0 64rem;
  transition: .4s var(--easing);
  transition-delay: .8s;
}

.-load .p-hero .feature {
  opacity: 1;
  translate: 0;
}

@media (width < 768px) {
  .-load .p-hero .copy .white {
    width: 265rem;
    padding: 0 10rem;
  }

  .-load .p-hero .copy .orange {
    width: 265rem;
    padding: 0 10rem;
  }
}



/* ---------------- reason */
.section-reason {
  background: linear-gradient(#235D57, #4DBBAD);
}

.section-reason .p-head-group {
  margin-bottom: 320rem;
}

@media (width < 768px) {
  .section-reason .p-head-group {
    margin-bottom: 32rem;
  }
}

/* p-reason */
.p-reason>.wrap {
  height: 4800rem;
  padding-bottom: 240rem;
}

.p-reason .items {
  position: sticky;
  top: 50%;
}

.p-reason .item {
  display: grid;
  grid-template-columns: 56rem 1fr;
  gap: 24rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  translate: 0 -50%;
  transition: .4s var(--easing);
}

.p-reason .number {
  position: relative;
  color: #EDF8F7;
  font-size: 90rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.p-reason .number::before,
.p-reason .number::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1rem;
  height: calc(100% - 144rem);
  background: #EDF8F7;
  translate: -2rem 0;
}

.p-reason .number::after {
  translate: 2rem 0;
}

.p-reason .body-group {
  display: grid;
  grid-template-columns: 1fr 451rem;
  gap: 30rem;
  align-items: start;
}

.p-reason .number span {
  opacity: .5;
}

.p-reason .body-group>.body>.head {
  width: fit-content;
  margin-bottom: 20rem;
  padding-top: 34rem;
  border-bottom: 4rem solid #94D6CE;
  font-size: 22rem;
  line-height: 1.6;
}

.p-reason .body-group>.body>p:not(.head)+p {
  margin-top: 16rem;
}

.p-reason .comment {
  position: relative;
}

.p-reason .comment>* {
  position: relative;
  z-index: 1;
}

.p-reason .comment::before {
  content: '';
  position: absolute;
  top: 0;
  left: 13rem;
  width: 45rem;
  z-index: 1;
  background: url("/wp-content/themes/grain/assets/img/lp/lp01/obj_doublequotes.svg") no-repeat center / contain;
  aspect-ratio: 45 / 40;
}

.p-reason .comment::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 26rem);
  z-index: 0;
  background: #EDF8F7;
}

.p-reason .comment .head {
  position: relative;
  margin: 6rem 36rem 0 99rem;
  background: #4DBBAD;
  line-height: 36rem;
  text-align: center;
}

.p-reason .comment .head::before {
  content: '';
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  position: absolute;
  top: 0;
  right: 100%;
  width: 36rem;
  background: #4DBBAD;
  aspect-ratio: 1 / 1;
}

.p-reason .comment .head::after {
  content: '';
  clip-path: polygon(0 0, 100% 0, 0 100%);
  position: absolute;
  top: 0;
  left: 100%;
  width: 36rem;
  background: #4DBBAD;
  aspect-ratio: 1 / 1;
}

.p-reason .comment .wrap {
  display: grid;
  grid-template-columns: 80rem 1fr;
  gap: 20rem;
  position: relative;
  padding: 20rem 24rem;
}

.p-reason .comment .wrap::after {
  content: '';
  clip-path: polygon(0 0, 100% 0, 0 100%);
  position: absolute;
  top: 100%;
  left: 50%;
  width: 18rem;
  background: #EDF8F7;
  aspect-ratio: 1 / 1;
  translate: -50% -1rem;
}

.p-reason .comment .avatar img {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
}

.p-reason .comment .body {
  color: var(--text-color);
}

.p-reason .comment .h {
  font-weight: 700;
}

.p-reason .photo {
  margin-top: 28rem;
}

.p-reason .photo img {
  aspect-ratio: 1056 / 280;
  object-fit: cover;
}

/* ex */
.p-reason .item.-ex {
  grid-template-columns: repeat(2, 1fr);
  gap: 16rem;
  min-height: 377rem;
}

.p-reason .item.-ex .group {
  display: grid;
  grid-template-columns: 56rem 1fr;
  gap: 24rem;
}

.p-reason .item.-ex .body-group {
  display: block;
}

@media (width < 768px) {
  .p-reason>.wrap {
    height: auto;
    padding-bottom: 0;
  }

  .p-reason .items {
    position: static;
  }

  .p-reason .item+.item {
    margin-top: 40rem;
  }

  .p-reason .item {
    grid-template-columns: 1fr;
    gap: 20rem;
    position: static;
    translate: 0;
  }

  .p-reason .number {
    font-size: 50rem;
    line-height: 1;
    text-align: left;
  }

  .p-reason .number span {
    display: block;
    width: 48rem;
  }

  .p-reason .number::before,
  .p-reason .number::after {
    right: 0;
    bottom: 8rem;
    left: auto;
    width: calc(100% - 48rem);
    height: 1rem;
    translate: 0;
  }

  .p-reason .number::after {
    translate: 0 -4rem;
  }

  .p-reason .body-group {
    grid-template-columns: 1fr;
  }

  .p-reason .body-group>.body>.head {
    padding-top: 0;
    border: none;
  }

  .p-reason .body-group>.body>.head span {
    background: linear-gradient(#94D6CE, #94D6CE);
    background-position: left bottom;
    background-size: 100% 4rem;
    background-repeat: no-repeat;
    font-size: 18rem;
  }

  .p-reason .body-group {
    gap: 24rem;
  }

  .p-reason .comment::before {
    top: 11rem;
    left: 3rem;
    width: 22rem;
  }

  .p-reason .comment::after {
    height: calc(100% - 20rem)
  }

  .p-reason .comment .head {
    margin: 0 10rem 0 41rem;
  }

  .p-reason .comment .head::before,
  .p-reason .comment .head::after {
    display: none;
  }

  .p-reason .comment .wrap {
    grid-template-columns: 40rem 1fr;
    gap: 16rem;
  }

  .p-reason .photo img {
    aspect-ratio: 311 / 200;
  }

  /* ex */
  .p-reason .item.-ex {
    grid-template-columns: 1fr;
    gap: 40rem;
    min-height: 0;
  }

  .p-reason .item.-ex .group {
    grid-template-columns: 1fr;
    gap: 20rem;
  }
}

/* active */
.p-reason .item {
  opacity: 0;
  top: 64rem;
}

.p-reason .item.-active {
  opacity: 1;
  top: 0;
}

@media (width < 768px) {
  .p-reason .item {
    opacity: 1;
    top: 0;
  }
}



/* ---------------- intro */
.section-intro {
  background: var(--primary-color);
}

/* p-intro */
.p-intro .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32rem;
  padding-bottom: 24rem;
  background: url("/wp-content/themes/grain/assets/img/lp/lp01/intro_obj.svg") no-repeat center bottom / 582rem;
}

.p-intro .item {
  width: 100%;
  max-width: 352rem;
  padding: 48rem 48rem 56rem;
  border: 1px solid #3C9F94;
  border-radius: 8rem;
  box-shadow: 0 4rem 9.9rem rgba(20 33 32 / 20%), inset 4rem 4rem 8rem rgba(255 255 255 / 20%);
  background: rgba(35 93 87 / 50%);
  backdrop-filter: blur(6rem);
}

.p-intro .item .body {
  min-height: 180rem;
}

.p-intro .item .head {
  margin-bottom: 16rem;
  font-size: 22rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.p-intro .item figure {
  margin-top: 8rem;
  text-align: center;
}

.p-intro .item figure img {
  width: 110rem;
}

.p-intro .emphasis {
  width: fit-content;
  margin: 8rem auto 0;
  font-size: 30rem;
  font-weight: 700;
  line-height: 1.6;
}

.p-intro .emphasis::after {
  content: '';
  display: block;
  height: 8rem;
  margin-top: 8rem;
  border-top: 1rem solid #fff;
  border-bottom: 1rem solid #fff;
}

@media (width < 768px) {
  .p-intro .items {
    display: block;
    padding-bottom: 210rem;
    background-size: 300rem;
  }

  .p-intro .item+.item {
    margin-top: 24rem;
  }

  .p-intro .item {
    padding: 40rem 32rem;
  }

  .p-intro .item .body {
    min-height: 0;
  }

  .p-intro .item .head {
    font-size: 18rem;
  }

  .p-intro .item figure {
    margin-top: 48rem;
  }

  .p-intro .emphasis {
    font-size: 20rem;
  }
}

/* action */
.p-intro .item {
  opacity: 0;
  translate: 0 64rem;
  transition: .4s var(--easing);
}

.p-intro .items.-actioned .item {
  opacity: 1;
  translate: 0;
}

.p-intro .item:nth-child(2) {
  transition-delay: .1s;
}

.p-intro .item:nth-child(3) {
  transition-delay: .2s;
}

.p-intro .item:nth-child(4) {
  transition-delay: .3s;
}

.p-intro .item:nth-child(5) {
  transition-delay: .4s;
}

.p-intro .emphasis::after {
  width: 0;
  transition: .4s var(--easing);
}

.p-intro .emphasis.-actioned::after {
  width: 100%;
}



/* ---------------- about */
.section-about {
  background: url("/wp-content/themes/grain/assets/img/lp/lp01/bg_about.jpg") no-repeat center / cover;
}

.section-about .l-container {
  max-width: none;
}

.section-about .p-head-group h2 {
  display: flex;
  justify-content: center;
  gap: 16rem;
}

.section-about .p-head-group h2 img {
  max-width: 316rem;
}

@media (width < 768px) {
  .section-about .p-head-group h2 img {
    width: 190rem;
  }
}

/* p-about */
.p-about .emphasis {
  max-width: 1120rem;
  margin: 0 auto 48rem;
  padding: 16rem;
  background: linear-gradient(-90deg, transparent 50%, var(--primary-color) 50%);
  background-position: 0 0;
  background-size: 208%;
  font-size: 30rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.p-about .wrap {
  display: grid;
  grid-template-columns: 678rem 1fr;
  gap: 40rem;
  align-items: start;
  padding: 0 40rem;
}

.p-about figure {
  position: relative;
}

.p-about figure::before {
  content: '';
  position: absolute;
  top: 24rem;
  left: -40rem;
  width: 601rem;
  height: 412rem;
  z-index: 0;
  background: #3C9F94;
}

.p-about figure img {
  position: relative;
  z-index: 1;
  border-radius: 8rem;
}

.p-about .body-group {
  font-weight: 700;
}

.p-about .body-group p+p {
  margin-top: 32rem;
}

.p-about .body-group .head {
  font-size: 22rem;
  font-weight: 700;
}

.p-about .body-group .head span {
  background: linear-gradient(#4DBBAD, #4DBBAD);
  background-position: left bottom;
  background-size: 100% 6rem;
  background-repeat: no-repeat;
  font-size: 18rem;
}

@media (width < 768px) {
  .p-about .emphasis {
    margin-bottom: 32rem;
    padding: 16rem 24rem;
    font-size: 20rem;
    text-align: left;
  }

  .p-about .wrap {
    grid-template-columns: 1fr;
    gap: 48rem;
    padding: 0;
  }

  .p-about figure::before {
    top: 40rem;
    left: -32rem;
    width: 320rem;
    height: 157rem;
  }

  .p-about .body-group .head {
    font-size: 16rem;
  }
}

/* action */
.p-about .emphasis {
  background-position: 100% 0;
  transition: .4s var(--easing);
}

.p-about .emphasis.-actioned {
  background-position: 0 0;
}

.p-about figure img {
  opacity: 0;
  translate: -40rem 40rem;
  transition: .4s var(--easing);
}

.p-about .wrap.-actioned figure img {
  opacity: 1;
  translate: 0;
}

.p-about .body-group .head span {
  background-size: 0 6rem;
  transition: .4s var(--easing);
}

.p-about .wrap.-actioned .body-group .head span {
  background-size: 100% 6rem;
}



/* ---------------- function */
.section-function {
  position: relative;
  overflow: hidden;
}

.section-function::before {
  content: '';
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 300rem;
  background: linear-gradient(#4DBBAD, transparent);
}

.section-function::after {
  content: '';
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 100%;
  z-index: 0;
  background: linear-gradient(rgba(77 187 173 / 40%), #94D6CE);
  aspect-ratio: 1 / 1;
}

.section-function>* {
  position: relative;
  z-index: 1;
}

@media (width < 768px) {
  .section-function::before {
    height: 150rem;
  }
}

/* p-function */
.p-function .wrap+.wrap {
  margin-top: 40rem;
}

.p-function .head-group {
  margin-bottom: 24rem;
}

.p-function .head-group .head {
  font-size: 22rem;
  line-height: 1.6;
}

.p-function .head-group p:not(.head) {
  margin-top: 4rem;
}

.p-function .items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30rem;
}

.p-function .item {
  width: 353rem;
  padding: 34rem 46rem 59rem;
  border: 1px solid #EDF8F7;
  border-radius: 8rem;
  background: rgba(237 248 247 / 30%);
  backdrop-filter: blur(6rem);
  line-height: 1.6;
}

.p-function .item::before {
  content: '';
  position: absolute;
  top: 14rem;
  left: 14rem;
  width: calc(100% - 28rem);
  height: calc(100% - 28rem);
  border-radius: 8rem;
  background: #3C9F94;
}

.p-function .item>* {
  position: relative;
  z-index: 1;
}

.p-function .item .ico {
  width: 40rem;
  margin: 0 auto 8rem;
}

.p-function .item:nth-child(1) .body,
.p-function .item:nth-child(2) .body,
.p-function .item:nth-child(3) .body {
  height: 207rem;
}

.p-function .item .title {
  margin-bottom: 8rem;
  font-size: 22rem;
  font-weight: 700;
  text-align: center;
}

.p-function .item .thumb {
  position: relative;
  margin-top: 24rem;
}

.p-function .item .thumb .a::after {
  content: '';
  position: absolute;
  right: -14rem;
  bottom: -23rem;
  aspect-ratio: 1 / 1;
  width: 47rem;
  background: url("/wp-content/themes/grain/assets/img/lp/lp01/ico_zoom.svg") no-repeat center / contain;
}

.p-function .item .thumb img {
  border-radius: 8rem;
}

/* option */
.p-function .items.-option {
  justify-content: start;
  gap: 24rem 30rem;
}

.p-function .items.-option .item {
  padding-bottom: 34rem;
}

.p-function .items.-option .title {
  text-align: left;
}

@media (width < 768px) {
  .p-function .head-group .head {
    font-size: 18rem;
  }

  .p-function .head-group p:not(.head) {
    margin-top: 10rem;
  }

  .p-function .items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24rem;
  }

  .p-function .items .item {
    width: auto;
    padding: 34rem 34rem 46rem;
  }

  .p-function .item .ico {
    width: 28rem;
  }

  .p-function .item:nth-child(1) .body,
  .p-function .item:nth-child(2) .body,
  .p-function .item:nth-child(3) .body {
    height: auto;
  }

  .p-function .item .title {
    font-size: 18rem;
  }
}

/* action */
.p-function .items .item {
  opacity: 0;
  translate: 0 64rem;
  transition: .4s var(--easing);
}

.p-function .items:not(.-option) .item:nth-child(2) {
  transition-delay: .1s;
}

.p-function .items:not(.-option) .item:nth-child(3) {
  transition-delay: .2s;
}

.p-function .items:not(.-option) .item:nth-child(4) {
  transition-delay: .3s;
}

.p-function .items:not(.-option) .item:nth-child(5) {
  transition-delay: .4s;
}

.p-function .items.-actioned .item {
  opacity: 1;
  translate: 0;
}



/* ---------------- case */
.section-case {
  position: relative;
  overflow: hidden;
  background: #C9EAE7;
}

.section-case .obj-dots {
  position: absolute;
  width: 800rem;
  z-index: 0;
  background: url("/wp-content/themes/grain/assets/img/lp/lp01/obj_dots.svg") no-repeat center / contain;
  aspect-ratio: 1 / 1;
}

.section-case .obj-circle {
  opacity: .5;
  position: absolute;
  width: 1000rem;
  z-index: 1;
  border-radius: 50%;
  background: #fff;
  aspect-ratio: 1 / 1;
  backdrop-filter: blur(10rem);
}

.section-case .obj01 {
  top: 280rem;
  left: 0;
  translate: -50% 0;
}

.section-case .obj02 {
  top: 2130rem;
  left: 100%;
  translate: -50% 0;
}

.section-case .obj03 {
  top: -395rem;
  left: 100%;
  translate: -50% 0;
}

.section-case .obj04 {
  top: 806rem;
  left: 0;
  translate: -50% 0;
}

.section-case .obj05 {
  top: 2492rem;
  left: 100%;
  translate: -50% 0;
}

.section-case .l-container {
  position: relative;
  z-index: 2;
}

@media (width < 768px) {

  .section-case .obj-dots,
  .section-case .obj-circle {
    display: none;
  }
}

/* p-case */
.p-case .items {
  max-width: 928rem;
  margin: 0 auto;
}

.p-case .items .item+.item {
  margin-top: 48rem;
}

.p-case .items .item {
  overflow: hidden;
  border: 1rem solid #94D6CE;
  border-radius: 8rem;
  background: #EDF8F7;
  color: var(--text-color);
}

.p-case .image-group {
  position: relative;
  overflow: hidden;
}

.p-case .image-group .img img {
  aspect-ratio: 926 / 172;
  object-fit: cover;
}

.p-case .image-group .area {
  position: absolute;
  top: 32rem;
  right: 32rem;
  width: 124rem;
}

.p-case .image-group .txt {
  position: absolute;
  bottom: -48rem;
  left: 0;
  color: #fff;
  font-size: 96rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.16em;
}

.p-case .body-group {
  position: relative;
}

.p-case .body-group .head {
  position: absolute;
  top: 0;
  left: 68rem;
  padding: 0 24rem;
  background: #4DBBAD;
  color: #fff;
  font-size: 22rem;
  font-weight: 700;
  line-height: 36rem;
  translate: 0 -50%;
}

.p-case .body-group .head::before {
  content: '';
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  position: absolute;
  top: 0;
  right: 100%;
  width: 36rem;
  background: #4DBBAD;
  aspect-ratio: 1 / 1;
}

.p-case .body-group .head::after {
  content: '';
  clip-path: polygon(0 0, 100% 0, 0 100%);
  position: absolute;
  top: 0;
  left: 100%;
  width: 36rem;
  background: #4DBBAD;
  aspect-ratio: 1 / 1;
}

.p-case .body {
  padding: 48rem 64rem 40rem;
}

.p-case .body dl {
  display: grid;
  grid-template-columns: 85rem 1fr;
  gap: 20rem 26rem;
}

.p-case .body dl dt {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8rem 0;
  border-radius: 8rem;
  background: #969D9E;
  color: #fff;
  font-size: 15rem;
}

.p-case .body dl dt span::before {
  content: '';
  display: block;
  aspect-ratio: 1 / 1;
  width: 32rem;
  margin: 0 auto;
  background: url("/wp-content/themes/grain/assets/img/lp/lp01/ico_issue.svg") no-repeat center / contain;
}

.p-case .body dl dt.result {
  background: #4DBBAD;
}

.p-case .body dl dt.result span::before {
  background-image: url("/wp-content/themes/grain/assets/img/lp/lp01/ico_result.svg");
}

.p-case .body dl dd {
  display: flex;
  align-items: center;
}

.p-case .body dl ul li {
  position: relative;
  padding-left: 16rem;
}

.p-case .body dl ul li::before {
  content: '';
  position: absolute;
  top: calc((1em * 2) / 2);
  left: 0;
  aspect-ratio: 1 / 1;
  width: 6rem;
  border-radius: 50%;
  background: #4DBBAD;
  translate: 0 -50%;
}

.p-case .body dl em {
  color: #3C9F94;
  font-weight: 700;
}

.p-case .emphasis {
  position: relative;
  margin-top: 40rem;
  padding: 16rem 32rem;
  border-radius: 8rem;
  background: #fff;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.p-case .emphasis::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  aspect-ratio: 36 / 32;
  width: 36rem;
  background: url("/wp-content/themes/grain/assets/img/lp/lp01/obj_doublequotes.svg") no-repeat center / contain;
  translate: 0 -50%;
}

.p-case .emphasis::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 36rem;
  background: url("/wp-content/themes/grain/assets/img/lp/lp01/obj_doublequotes.svg") no-repeat center / contain;
  aspect-ratio: 36 / 32;
  translate: 0 50%;
  rotate: 180deg;
}

.p-case .course {
  display: flex;
  justify-content: end;
  padding: 20rem 64rem;
  border-top: 1rem solid #94D6CE;
}

.p-case .course p {
  display: grid;
  grid-template-columns: 16rem auto;
  gap: 16rem;
  align-items: center;
  line-height: 1.6;
}

.p-case .course p::before {
  content: '';
  display: block;
  aspect-ratio: 16 / 22;
  width: 16rem;
  background: url("/wp-content/themes/grain/assets/img/lp/lp01/ico_marker.svg") no-repeat center / contain;
}

@media (width < 768px) {
  .p-case .image-group .img img {
    aspect-ratio: 309 / 154;
  }

  .p-case .image-group .area {
    top: 16rem;
    right: 16rem;
    width: 82rem;
  }

  .p-case .image-group .txt {
    bottom: -18rem;
    left: 50%;
    font-size: 40rem;
    translate: -50% 0;
  }

  .p-case .body-group .head {
    position: static;
    padding: 4rem 20rem;
    font-size: 18rem;
    line-height: 1.6;
    text-align: center;
    translate: 0;
  }

  .p-case .body-group .head::before,
  .p-case .body-group .head::after {
    display: none;
  }

  .p-case .body {
    padding: 16rem 20rem 24rem;
  }

  .p-case .body dl {
    display: block;
    line-height: 1.6;
  }

  .p-case .body dl dt {
    justify-content: start;
    margin-bottom: 10rem;
    padding: 8rem 16rem;
    font-size: 15rem;
  }

  .p-case .body dl dt span {
    display: grid;
    grid-template-columns: 20rem 1fr;
    gap: 10rem;
    align-items: center;
  }

  .p-case .body dl dt span::before {
    width: 20rem;
  }

  .p-case .body dl dd+dt {
    margin-top: 16rem;
  }

  .p-case .body dl ul li+li {
    margin-top: 8rem;
  }

  .p-case .emphasis {
    margin-top: 32rem;
    padding: 16rem;
    text-align: left;
  }

  .p-case .emphasis::before {
    left: 8rem;
    width: 22rem;
  }

  .p-case .emphasis::after {
    right: 8rem;
    width: 22rem;
  }

  .p-case .course {
    padding: 16rem 20rem;
  }
}

/* action */
.p-case .items .item {
  opacity: 0;
  translate: 0 64rem;
  transition: .4s var(--easing);
}

.p-case .items .item.-actioned {
  opacity: 1;
  translate: 0;
}



/* ---------------- flow */
.section-flow {
  position: relative;
  overflow: hidden;
  background: linear-gradient(#C9EAE7, #3C9F94);
}

.section-flow::before {
  content: '';
  position: absolute;
  top: 272rem;
  left: -94rem;
  aspect-ratio: 566 / 588;
  width: 566rem;
  background: url("/wp-content/themes/grain/assets/img/lp/lp01/obj_flow.svg") no-repeat center / contain;
}

@media (width < 768px) {
  .section-flow::before {
    top: 905rem;
    left: -148rem;
    width: 384rem;
  }
}

/* p-flow */
.p-flow .group+.group {
  margin-top: 72rem;
}

.p-flow .head-group {
  margin-bottom: 20rem;
}

.p-flow .head-group p {
  display: grid;
  grid-template-columns: 12rem auto;
  gap: 16rem;
  align-items: center;
  width: fit-content;
  height: 34rem;
  padding: 0 16rem;
  background: var(--primary-color);
  font-size: 22rem;
  font-weight: 700;
  line-height: 1.6;
  white-space: nowrap;
}

.p-flow .head-group p::before {
  content: '';
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: #C9EAE7;
}

.p-flow .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8rem;
  position: relative;
}

.p-flow .items::before {
  content: 'STEP';
  opacity: .5;
  position: absolute;
  top: -64rem;
  right: 0;
  z-index: 0;
  font-size: 96rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
}

.p-flow .items>* {
  position: relative;
  z-index: 1;
}

.p-flow .items.-step .item {
  background: #fff;
}

.p-flow .items.-step .step {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 94rem;
  background: #3C9F94;
  font-size: 16rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.16em;
}

.p-flow .items.-step .item+.item .step::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -4rem;
  aspect-ratio: 34 / 30;
  width: 34rem;
  background: url("/wp-content/themes/grain/assets/img/lp/lp01/step_arw.svg") no-repeat center / contain;
  translate: -50% -50%;
}

.p-flow .items.-step .body-group {
  position: relative;
}

.p-flow .items.-step .span {
  position: absolute;
  top: 0;
  left: 24rem;
  width: calc(100% - 48rem);
  border-radius: 32rem;
  background: var(--primary-color);
  font-size: 16rem;
  font-weight: 700;
  line-height: 36rem;
  text-align: center;
  translate: 0 -50%;
}

.p-flow .items.-step .body {
  padding: 32rem 40rem 40rem;
  color: var(--primary-color);
  line-height: 1.6;
}

.p-flow .items.-step .head {
  margin-bottom: 16rem;
  font-size: 20rem;
  font-weight: 700;
  text-align: center;
}

.p-flow .items.-support::before {
  content: 'SUPPORT';
}

.p-flow .items.-support .item {
  padding: 32rem 40rem 48rem;
  border: 1px solid #EDF8F7;
  border-radius: 8rem;
  box-shadow: 0 4rem 9.9rem #4DBBAD, inset 4rem 4rem 8rem rgba(255 255 255 / 20%);
  background: rgba(255 255 255 / 40%);
  backdrop-filter: blur(6rem);
}

.p-flow .items.-support figure {
  aspect-ratio: 1 / 1;
  width: 100rem;
  margin: 0 auto 20rem;
  border-radius: 50rem;
  background: #fff;
}

.p-flow .items.-support .body {
  color: var(--text-color);
}

.p-flow .items.-support .head {
  margin-bottom: 8rem;
  color: var(--primary-color);
  font-size: 20rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.p-flow .items.-support .head::after {
  content: '';
  display: block;
  width: 86rem;
  height: 8rem;
  margin: 8rem auto 0;
  border-top: 1rem solid #fff;
  border-bottom: 1rem solid #fff;
}

.p-flow .items.-support .time {
  margin-bottom: 8rem;
  text-align: center;
}

.p-flow .point {
  position: relative;
  padding: 0 56rem;
  font-size: 30rem;
  text-align: center;
}

.p-flow .point::before,
.p-flow .point::after {
  content: '';
  position: absolute;
  top: 50%;
  aspect-ratio: 44 / 238;
  width: 44rem;
  background: url("/wp-content/themes/grain/assets/img/lp/lp01/point_bracket.svg") no-repeat center / contain;
  translate: 0 -50%;
}

.p-flow .point::before {
  left: 0;
}

.p-flow .point::after {
  right: 0;
  scale: -1 1;
}

.p-flow .point .head {
  opacity: .5;
  margin-bottom: 4rem;
  font-size: 96rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
}

@media (width < 768px) {
  .p-flow .group+.group {
    margin-top: 32rem;
  }

  .p-flow .head-group p {
    font-size: 18rem;
  }

  .p-flow .items {
    grid-template-columns: 1fr;
  }

  .p-flow .items::before {
    display: none;
  }

  .p-flow .items.-step .item+.item .step::before {
    top: -4rem;
    left: 50%;
    rotate: 90deg;
  }

  .p-flow .items.-step .head {
    font-size: 16rem;
  }

  .p-flow .items.-step .body {
    padding: 32rem 24rem 48rem;
  }

  .p-flow .items.-support {
    gap: 20rem;
  }

  .p-flow .items.-support .item {
    padding: 24rem 24rem 40rem;
  }

  .p-flow .items.-support figure {
    width: 80rem;
  }

  .p-flow .items.-support .head {
    font-size: 16rem;
  }

  .p-flow .point {
    padding: 0 40rem;
    font-size: 18rem;
    line-height: 1.6;
  }

  .p-flow .point .head {
    font-size: 46rem;
    line-height: 1.6;
  }
}

/* action */
.p-flow .head-group {
  clip-path: inset(0 100% 0 0);
  width: fit-content;
  transition: .4s var(--easing);
}

.p-flow .head-group.-actioned {
  clip-path: inset(0 0 0 0);
}

.p-flow .items .item {
  opacity: 0;
  translate: 0 64rem;
  transition: .4s var(--easing);
}

.p-flow .items.-actioned .item {
  opacity: 1;
  translate: 0;
}

.p-flow .items .item:nth-child(2) {
  transition-delay: .1s;
}

.p-flow .items .item:nth-child(3) {
  transition-delay: .2s;
}

.p-flow .point::before,
.p-flow .point::after {
  opacity: 0;
  transition: .4s var(--easing);
}

.p-flow .point::before {
  translate: -64rem -50%;
}

.p-flow .point::after {
  translate: 64rem -50%;
}

.p-flow .point.-actioned::before {
  opacity: 1;
  translate: 0 -50%;
}

.p-flow .point.-actioned::after {
  opacity: 1;
  translate: 0 -50%;
}



/* ＝＝＝＝＝banner＝＝＝＝＝ */

.section-banner {
  padding-bottom: 0;
}

.p-banner {
  position: relative;
  width: 100%;
  background: #94D6CE;
  padding: 32rem 0;
}

.banner-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1120rem;
  margin: 0 auto;
}

.banner-img a {
  display: block;
}

.banner-img img {
  border-radius: 8rem;
  transition: 0.3s;
}

.banner-img a:hover img {
  transform: scale(0.97);
}

/* txt-scroll */
.txt-scroll {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 0;
  width: 100%;
  overflow: hidden;
  translate: 0 -50%
}

.track {
  display: flex;
  width: fit-content;
  animation: scroll-left 45s linear infinite;
}

.txt-scroll span {
  margin-right: 40rem;
  color: #4DBBAE;
  font-size: 180rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.03rem;
  white-space: nowrap;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (width < 768px) {
  .p-banner {
    padding: 24rem 0;
  }

  .track.-pc {
    display: none;
  }
}



/* ＝＝＝＝＝FAQ＝＝＝＝＝＝ */

.p-faq-head .title,
.p-faq-head .sub-title {
  display: block;
  width: fit-content;
  clip-path: inset(0 100% 0 0);
  white-space: nowrap;
  transition: 0.3s var(--easing);
}

.p-faq-head.-actioned .title,
.p-faq-head.-actioned .sub-title {
  clip-path: inset(0);
}

.section-faq {
  position: relative;
  overflow: hidden;
  background: linear-gradient(#3C9F94, #235D57);
}

.section-faq::before {
  content: '';
  position: absolute;
  top: 232rem;
  left: 0;
  width: 800rem;
  height: 800rem;
  background: url(/wp-content/themes/grain/assets/img/lp/lp01/bg_faq-01.png) no-repeat left top / 400rem auto;

}

.section-faq::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -56rem;
  width: 800rem;
  height: 100%;
  background: url(/wp-content/themes/grain/assets/img/lp/lp01/bg_faq-02.png) no-repeat right bottom / 400rem auto;
}

.section-faq .l-container {
  position: relative;
  z-index: 3;
}


.p-faq {
  display: flex;
  gap: 72rem;
  padding-top: 80rem
}

.p-faq-head {
  width: 215rem;
}

.p-faq-head .title {
  margin-bottom: 16rem;
  font-size: 96rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}

.p-faq-head .sub-title {
  font-size: 36rem;
  font-weight: 700;
  line-height: 1.6;
}

.p-faq .items {
  border-top: solid 1rem #FFFFFF
}

.p-faq .item {
  border-bottom: solid 1rem #FFFFFF
}

.faq-group {
  width: 834rem;
}

.q-block {
  position: relative;
  padding: 0;
  cursor: pointer;
}

.q-block span {
  display: block;
  width: 100%;
  padding: 32rem 64rem 32rem 96rem;
  color: #FFFFFF;
  font-size: 22rem;
  font-weight: 700;
  line-height: 1.6;
}


.q-block span::before {
  content: 'Q';
  position: absolute;
  top: calc(22rem * 1.6 / 2 + 31rem);
  left: 18rem;
  transform: translateY(-50%);
  font-size: 40rem;
  font-weight: 500;
  font-family: "Kumbh Sans";
}

.q-block span::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20rem;
  width: 36rem;
  height: auto;
  z-index: 1;
  transform: translateY(-50%);
  border-radius: 50rem;
  background-color: #fff;
  pointer-events: none;
  aspect-ratio: 1 / 1;
}

.q-block::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 38rem;
  width: 15rem;
  height: 2rem;
  z-index: 2;
  transform: translate(50%, -50%);
  background-color: #4DBBAE;
  pointer-events: none;
}

.a-block {
  padding-top: 17rem;
  color: #235D57;
  border-top: dashed 1rem #FFFFFF;
}

.a-block .box {
  position: relative;
  margin-bottom: 24rem;
  padding: 16rem 40rem 16rem 96rem;
  border-radius: 8rem;
  background-color: #C9EAE7;
}


.a-block p {
  font-size: 16rem;
  font-weight: 500;
}

.a-block p::before {
  content: 'A';
  position: absolute;
  top: 32rem;
  left: 23rem;
  transform: translateY(-50%);
  color: #3C9F94;
  font-size: 32rem;
  font-weight: 500;
  font-family: "Kumbh Sans";
}

/* open/close */

.faq-a {
  display: none;
}


.q-block::before {
  content: '';
  opacity: 1;
  position: absolute;
  top: 50%;
  right: 38rem;
  width: 2rem;
  height: 15rem;
  z-index: 3;
  translate: 50% -50%;
  background-color: #4DBBAE;
  transition: 0.3s;
  pointer-events: none;
}

.js-faq:has(.a.-on) .q-block::before {
  opacity: 0;
  rotate: 180deg;
}

@media (width < 768px) {

  .section-faq::before,
  .section-faq::after {
    display: none;
  }

  .p-faq {
    flex-direction: column;
    padding-top: 40rem;
    gap: 32rem;
  }

  .p-faq-head {
    width: 100%;
    text-align: center;
  }

  .p-faq-head .title {
    font-size: 30rem;
  }

  .p-faq-head .sub-title {
    font-size: 20rem;
  }

  .p-faq-head .title {
    margin: 0 auto 16rem;
  }
  .p-faq-head .sub-title {
    margin: 0 auto;
  }

  .faq-group {
    width: 100%;
  }

  .q-block span {
    padding-top: 20rem;
    padding-right: 47rem;
    padding-bottom: 24rem;
    padding-left: 35rem;
    font-size: 16rem;
  }

  .q-block span::before {
    content: 'Q';
    top: 33rem;
    left: 0rem;
    font-size: 24rem;
  }

  .q-block span::after {
    right: 0rem;
    width: 25rem;
  }

  .q-block::after {
    right: 12.5rem;
    width: 10rem;
  }

  .a-block {
    padding-top: 18rem;
  }

  .a-block .box {
    margin-bottom: 16rem;
    padding: 16rem 24rem 16rem 40rem;
  }

  .a-block p::before {
    position: absolute;
    top: 34rem;
    left: 12rem;
    font-size: 20rem;
  }

  /* open/close */

  .q-block::before {
    right: 12.5rem;
    height: 10rem;
  }
}



/* ＝＝＝＝＝summary＝＝＝＝＝ */

.section-summary {
  position: relative;
  z-index: 0;
  overflow: hidden;
  background: url(/wp-content/themes/grain/assets/img/lp/lp01/summary-bg.jpg)no-repeat center / cover;
}

.section-summary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(36, 95, 89, 1.0) 0%, rgba(35, 93, 87, 0.7) 100%);
  pointer-events: none;
}

.p-summary .-txt-scroll {
  position: absolute;
  top: 216rem;
  left: 0rem;
  z-index: 1;
  transform: translateY(-50%);
  overflow: hidden;
  pointer-events: none;
}

.-txt-scroll span {
  margin-right: 40rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 180rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03rem;
  white-space: nowrap;
}

.p-summary .-box,
.p-summary .-body,
.p-summary .-banner,
.p-head-group {
  position: relative;
  z-index: 5;
}

.p-summary .-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40rem;
  background-color: hsla(172, 45%, 52%, 0.5);
  text-align: center;
  backdrop-filter: blur(10rem);
}

.p-summary .-box p {
  padding: 10rem;
  font-size: 22rem;
  font-weight: 700;
}


.p-summary .-body {
  margin-top: 60rem;
  margin-bottom: 48rem;
  z-index: 4;
}

.p-summary .-body p {
  z-index: 4;
  font-size: 22rem;
  font-weight: 700;
  text-align: center;
}

.p-summary .-pc {
  display: flex;
  justify-content: center;
  gap: 31rem;
}

.p-summary .-banner a {
  display: block;
  width: calc(50% - 15.5rem);
  transition: 0.3s;
}

.-banner a img {
  width: 100%;
  height: auto;
  border-radius: 8rem;
}

.-banner a:hover {
  transform: scale(0.97);
}

@media (width < 768px) {

  .p-summary .-txt-scroll {
    position: absolute;
    top: 352rem;
  }

  .p-summary .-box p {
    padding: 10rem 16rem;
    font-size: 18rem;
  }

  .-txt-scroll span {
    color: rgba(255, 255, 255, 0.1);
    font-size: 30rem;
  }

  .p-summary .-body {
    margin-top: 56rem;
    margin-bottom: 40rem;
    z-index: 4;
  }

  .p-summary .-body p {
    font-size: 15rem;
  }

  .p-summary .-pc {
    display: none;
  }

  .p-summary .-mobile {
    display: flex;

    flex-flow: column;
    gap: 24rem;
  }

  .p-summary .-mobile a {
    display: block;
    width: 100%;
    transition: 0.3s;
  }

  .-banner a img {
    width: 100%;
    height: auto;
    transition: 0.3s;
  }
}



/* ======= footer ======= */

footer {
  position: relative;
  padding-top: 64rem;
  background-color: #142120;

}

.p-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 16rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.02em;
}

.p-footer .-left {
  display: flex;
  align-items: flex-start;
  gap: 64rem;
}

.p-footer .-logo {
  width: 125rem;
  height: 143rem;
  margin-top: 8rem;
}

.p-footer .-contact {
  display: flex;
  flex-direction: column;
}

.p-footer .-row {
  display: flex;
  align-items: stretch;
}

.p-footer .-title {
  display: flex;
  flex-shrink: 0;
  align-items: left;
  width: 64rem;
  padding-right: 16rem;
  white-space: nowrap;
}

.p-footer .-detail {
  flex: 1;
  padding-left: 16rem;
  line-height: 2;
  white-space: nowrap;
  word-break: break-all;
  border-left: solid 1.5rem #4DBBAE;
}

.p-footer .-detail span {
  display: block;
}

.copyright {
  margin-top: 40rem;
  padding-top: 8rem;
  padding-bottom: 8rem;
  text-align: center;
  border-top: 1rem solid #666A6B;
}

.p-footer a {
  transition: 0.3s;
}

.p-footer a:hover {
  color: #F0811A;
  transition: 0.3s;
}

@media (width < 768px) {

  footer {
    padding: 48rem 0 58rem;
  }

  .p-footer {
    flex-flow: column;
    font-size: 12rem;
    gap: 24rem;
  }

  .p-footer .-left {
    flex-flow: column;
    gap: 32rem;
    width: 100%;
  }

  .p-footer .-logo {
    align-self: center;
    width: 87rem;
    height: 100rem;
    margin-top: 0;
  }

  .p-footer .-address {
    padding: 0 3rem;
  }

  .p-footer .-title {
    width: 52rem;
  }

  .copyright {
    margin-top: 48rem;
  }
}