@charset "utf-8";

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --text-color: #142120;
  --primary-color: #F0811A;
  --easing: cubic-bezier(0.33, 1, 0.68, 1);
  --gradient: linear-gradient(-45deg, #139688, #4DBBAE);
}

body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: var(--text-color);
  letter-spacing: 0.05em;
  font-weight: 400;
  font-size: 16px;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  line-height: 1.75;

  -webkit-text-size-adjust: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 500;
  font-size: 100%;
  line-height: 1.5;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

ol {
  margin: 0;
  padding: 0 0 0 24px;
}

dl, dt, dd {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
  padding: 0;
}

a,
.a {
  color: var(--text-color);
  text-decoration: none;
  cursor: pointer;
  transition: .4s var(--easing);
}

a img {
  border: none;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: middle;

  object-fit: cover;
}

sup {
  display: inline-block;
  font-size: 0.8em;
}

em {
  font-style: normal;
}

table {
  border-collapse: collapse;
}

main {
  display: block;
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

/* ---------------- layout */
main section {
  padding: 120px 0 140px;
}

.l-container {
  margin: 0 auto;
  padding: 0 40px;
  max-width: calc(1280px + 80px);
}

@media (max-width: 767px) {
  main section {
    padding: 100px 0 120px;
  }

  .l-container {
    padding: 0 32px;
  }
}


/* ---------------- general */
.-en {
  font-family: "Kumbh Sans", sans-serif;
}

.-txt-right {
  text-align: right;
}

.-url {
  word-break: break-all;
}



/* ---------------- head */
.p-head-group {
  margin-bottom: 64px;
  color: #235D57;
  text-align: center;
}

.p-head-group .shoulder {
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
}


.p-head-group h2 {
  font-weight: 700;
  font-size: 48px;
}

@media (max-width: 767px) {
  .p-head-group {
    margin-bottom: 56px;
  }

  .p-head-group .shoulder {
    margin-bottom: 16px;
    font-size: 16px;
  }

  .p-head-group h2 {
    font-weight: 700;
    font-size: 22px;
  }
}

/* white */
.p-head-group.-white {
  color: #fff;
}



/* ---------------- header */
header {
  position: fixed;
  top: 24px;
  left: 20px;
  z-index: 100;
  padding: 12px 40px;
  width: calc(100% - 40px);
  border-radius: 80px;
  background: rgba(255 255 255 / 90%);
}

header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo img {
  width: 316px;
}

header nav {
  display: flex;
  align-items: center;

  gap: 40px;
}

header nav .nav {
  display: flex;
  align-items: center;

  gap: 24px;
}

header nav .a {
  font-weight: 700;
  font-size: 14px;
}

header nav .btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 60px;
  border-radius: 4px;
  background: var(--primary-color);
  color: #fff;
  font-weight: 700;
}

header nav .btn a:hover {
  background: #D46600;
}

header nav .nav .a:hover {
  color: #4DBBAE;
}


@media (max-width: 1023px) {
  header {
    top: 16px;
    padding: 0px 16px;
  }

  header .wrap {
    height: 56px;
  }

  header .logo {
    position: relative;
    z-index: 101;
  }

  header .logo a {
    position: relative;
    display: block;
  }

  header .logo a::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/wp-content/themes/grain/assets/img/lp/wp01/logo_type_white.svg) no-repeat center center / contain;
    content: '';
    opacity: 0;
    transition: .4s var(--easing);
  }

  header.is-open .logo a::after {
    opacity: 1;
  }

  header .logo img {
    width: 221px;
    transition: .4s var(--easing);
  }

  header.is-open .logo img {
    opacity: 0;
  }


  .nav-group {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    visibility: hidden;
    overflow: auto;
    padding-top: 64px;
    padding-bottom: 144px;
    width: 100%;
    height: 100vh;
    background-color: #1E8B7F;
    background-image: url(/wp-content/themes/grain/assets/img/lp/wp01/bg_nav.svg);
    background-position: bottom left;
    background-size: 100%;
    background-repeat: no-repeat;
    opacity: 0;
    transition: .4s var(--easing);
  }

  .btn-nav {
    position: absolute;
    top: 8px;
    right: 16px;
    z-index: 101;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #4DBBAE;
    cursor: pointer;
  }

  header nav {
    display: none;
  }

  .btn-nav::before,
  .btn-nav::after {
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: #fff;
    content: "";
    transition: 0.3s;
  }

  .btn-nav::before {
    transform: translateY(-3px);
  }

  .btn-nav::after {
    transform: translateY(3px);
  }

  .btn-nav.is-active::before {
    background-color: #4DBBAE;
    transform: translateY(0) rotate(45deg);
  }

  .btn-nav.is-active::after {
    background-color: #4DBBAE;
    transform: translateY(0) rotate(-45deg);
  }

  .btn-nav span {
    display: none;
  }

  .nav-group nav {
    display: flex;
    flex-direction: column;
    margin: auto;
    margin-top: 80px;
    padding: 80px 95px;
    width: 331px;
    border-radius: 80px;
    background-color: #fff;

    gap: 40px;
  }

  header nav .a {
    font-size: 16px;
  }

  .nav-group .nav {
    align-items: center;
    flex-direction: column;

    gap: 32px;
  }


  .nav-group.is-open {
    visibility: visible;
    opacity: 1;
  }

  .btn-nav.is-active {
    background-color: #fff;
  }
}



/* ---------------- hero */
.section-hero {
  position: relative;
  padding: 156px 0 200px;
  background-image: url(/wp-content/themes/grain/assets/img/lp/wp01/top_bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.section-hero::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: url(/wp-content/themes/grain/assets/img/lp/wp01/dot.png)repeat center center / 5px 5px;
  content: '';
}


.p-hero {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  height: auto;

  grid-template-columns: 730px 1fr;
  gap: 40px;
}

.p-hero .label {
  padding: 0 12px;
  max-width: 440px;
  height: 34px;
  background-color: #1E8B7F;
  color: #fff;
  font-size: 20px;

  clip-path: polygon(0% 0%, 100% 0%, calc(100% - 16px) 50%, 100% 100%, 0% 100%);
}

.p-hero .title {
  margin-top: 12px;
  color: #fff;
  letter-spacing: 0.1em;
  font-size: 48px;
  line-height: 1.5;
}

.p-hero .title em {
  color: #F6E73D;
}

.p-hero .title .big {
  font-size: 54px;
}

.p-hero .balloon {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin-top: 29px;
  max-width: 414px;
  height: 110px;
  border-radius: 53.5px;
  background-color: #fff;
  color: #000;
  text-align: center;
  font-size: 20px;
}

.p-hero .balloon em {
  background: linear-gradient(transparent 66%, #F6E73D 0%);
  background-position: center bottom;
  background-size: 91% 100%;
  background-repeat: no-repeat;
  font-weight: bold;
}

.p-hero .balloon::after {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 16px;
  height: 10px;
  background: #fff;
  content: '';

  clip-path: polygon(0 0, 100% 0, 50% 100%);
  translate: -50% -1px;
}

.p-hero .button {
  margin-top: 26px;
  max-width: 510px;
}

.p-hero .button a {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 40px;
  width: 100%;
  height: 90px;
  border-radius: 8px;
  background: #F6E73D;
  font-weight: bold;
  font-size: 28px;
  transition: .4s var(--easing);
}

.p-hero .button a:hover {
  background: #EB7D16;
  color: #fff;
}

.p-hero .button a::after {
  position: absolute;
  right: 40px;
  bottom: 36px;
  width: 40px;
  height: 87px;
  background: url(/wp-content/themes/grain/assets/img/lp/wp01/hero_01.svg) no-repeat center center / contain;
  content: '';
}

@media (max-width :1279px) {
  .p-hero {
    grid-template-columns: 560px 1fr;
  }

  .p-hero .title {
    font-size: 40px;
  }

  .p-hero .title .big {
    font-size: 40px;
  }
}

@media (max-width :1023px) {
  .p-hero {
    margin: 0 auto;
    max-width: 560px;

    grid-template-columns: 1fr;
  }

  .hero-img {
    text-align: center;
  }
}

@media (max-width: 767px) {

  .section-hero {
    padding: 104px 0 88px;
  }

  .p-hero .label {
    margin-right: auto;
    margin-left: auto;
    max-width: 300px;
    height: 28px;
    font-size: 14px;
    line-height: 28px;
  }

  .p-hero .title,
  .p-hero .title .big {
    text-align: center;
    letter-spacing: 0.05em;
    font-size: 24px;
  }

  .p-hero .balloon {
    margin-top: 32px;
    margin-right: auto;
    margin-left: auto;
    max-width: 282px;
    max-height: 64px;
    border-radius: 48px;
    background-color: #fff;
    color: #000;
    text-align: center;
    font-size: 14px;
  }

  .p-hero .button {
    margin-top: 27px;
    margin-right: auto;
    margin-left: auto;
    width: 311px;
  }

  .p-hero .button a::after {
    right: 24px;
    bottom: 22px;
    width: 35px;
    height: 57px;
    background-image: url(/wp-content/themes/grain/assets/img/lp/wp01/hero_01_sp.svg);
  }

  .p-hero .button a {
    padding-left: 24px;
    height: 60px;
    font-size: 16px;
  }

}


/* ---------------- intro */



.section-intro {
  position: relative;
  z-index: 2;
  background:
    url(/wp-content/themes/grain/assets/img/lp/wp01/intro_bg.svg) no-repeat center,
    linear-gradient(#1E8B7F, #235D57);

}

.section-intro .p-head-group {
  color: #fff;
}

.fade-in {
  opacity: 0;
  transition: opacity 1s ease-out, transform 0.5s ease-out;
  transform: translateY(80px);
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* p-intro */
.p-intro .items {
  display: grid;
  align-items: start;
  margin: 0 auto;
  max-width: 1060px;

  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.p-intro .items .item {
  position: relative;
  padding: 32px 16px 40px;
  border-radius: 240px;
  background: #fff;
  text-align: center;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
}

.p-intro .items .item:nth-child(1),
.p-intro .items .item:nth-child(3) {
  margin-top: 32px;
}


.p-intro .items .item::after {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 40px;
  height: 25px;
  background: #fff;
  content: '';

  clip-path: polygon(0 0, 100% 0, 50% 100%);
  translate: -50% -1px;
}

.p-intro .items .item:nth-child(3)::after {
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.p-intro .items .item:nth-child(1)::after {
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.p-intro .items figure {
  margin-bottom: 24px;
}

.p-intro .items em {
  margin-bottom: 24px;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 22px;
}

.section-intro .man {
  margin-top: 48px;
  text-align: center;
}

.line-r-g {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(-100%);
}

.line-r-g img {
  margin-top: -1px;
  width: 100%;
  height: 153px;

  object-fit: fill;
}

.line-r-w {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.line-r-w img {
  width: 100%;
  height: 153px;

  object-fit: fill;
}

@media (max-width: 1023px) {
  .section-intro {
    position: relative;
    background:
      url(/wp-content/themes/grain/assets/img/lp/wp01/intro_bg_sp.svg)no-repeat center,
      linear-gradient(#1E8B7F, #235D57);

  }

  .p-intro .items {
    display: grid;
    margin: 0 auto;
    max-width: 100%;

    grid-template-columns: 1fr;
    gap: 32px;
    justify-items: center;
  }

  .p-intro .items .item {
    padding-top: 24px;
    width: 330px;
    border-radius: 200px;
  }

  .p-intro .items .item:nth-child(1),
  .p-intro .items .item:nth-child(3) {
    margin-top: 0px;
  }

  .p-intro .items .item::after {
    content: none;
  }

}

@media (max-width: 767px) {
  .section-intro {
    padding-bottom: 36px;
  }

  .p-intro .items .item {
    padding-top: 24px;
    max-width: 311px;
    width: 100%;
    height: 204px;
    border-radius: 200px;
    font-size: 16px;
  }

  .p-intro .items figure {
    margin-bottom: 16px;
  }

  .p-intro .item img {
    width: 80px;
  }

  .p-intro .items em {
    font-weight: bold;
    font-size: 18px;
  }

  .section-intro .man {
    margin-top: 40px;
  }

  .section-intro .man img {
    width: 80px;
  }

  .line-r-g img,
  .line-r-w img {
    height: 40px;
  }

}

/* ---------------- report */

.section-report {
  padding-top: 60px;
  background-color: #fff;
}

.section-report h2 {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  padding: 0 32px;
}

.section-report h2::before,
.section-report h2::after {
  position: absolute;
  top: 50%;
  width: 89px;
  height: 73px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  transform: translateY(-50%);

  aspect-ratio: 1 / 1;

}

.section-report h2::before {
  left: -80px;
  background-image: url(/wp-content/themes/grain/assets/img/lp/wp01/report_l.svg);
}

.section-report h2::after {
  right: -80px;
  background-image: url(/wp-content/themes/grain/assets/img/lp/wp01/report_r.svg);
}


.p-report .wrap {
  display: flex;

  gap: 40px;
}

.p-report .wrap figure {
  max-width: 508px;
  width: 39.68%;
}

.p-report .wrap .body-group {
  flex: 1;
  max-width: 732px;
}

.p-report ul li {
  position: relative;
  padding: 20px 30px 20px 58px;
  border-radius: 120px;
  background-color: #235D57;
  color: #fff;
  font-size: 20px;
  line-height: 1.5;
}

.p-report ul li+li {
  margin-top: 32px;
}

.p-report ul li::before {
  position: absolute;
  top: 50%;
  left: 20px;
  width: 30px;
  background-image: url(/wp-content/themes/grain/assets/img/lp/wp01/check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  transform: translateY(-50%);

  aspect-ratio: 1 / 1;
}

.p-report li em {
  color: #F6E73D;
  font-weight: bold;
}

.p-report p {
  margin-top: 40px;
  padding-left: 23px;
  font-weight: bold;
}

.p-report p em {
  color: #FA7800;
}


@media (max-width: 1023px) {
  .p-report .wrap {
    align-items: center;
    flex-direction: column;
  }

  .p-report .wrap figure {
    width: auto;
  }
}

@media (max-width: 900px) {

  .section-report h2::before,
  .section-report h2::after {
    display: none;
  }

  .section-report h2 {
    padding: 0;
  }
}

@media(max-width: 767px) {
  .p-report ul li {
    font-size: 16px;
  }


  .section-report .shoulder {
    position: relative;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding: 0 32px;
    width: fit-content;
    text-align: center;
  }

  .section-report .shoulder::before,
  .section-report .shoulder::after {
    position: absolute;
    top: 50%;
    width: 32px;
    height: auto;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    content: "";
    transform: translateY(-50%);

    aspect-ratio: 1 / 1;

  }

  .section-report .shoulder::before {
    left: -8px;
    background-image: url(/wp-content/themes/grain/assets/img/lp/wp01/report_l_sp.svg);
  }

  .section-report .shoulder::after {
    right: -8px;
    background-image: url(/wp-content/themes/grain/assets/img/lp/wp01/report_r_sp.svg);
  }


}


/* ------------ summary */

.section-summary {
  position: relative;
  background-color: #C9EAE7;
  background-image: url(/wp-content/themes/grain/assets/img/lp/wp01/triangle.png);
  background-position: left bottom;
  background-size: min(90vw, 777px);
  background-repeat: no-repeat;
  text-align: center;
}

.section-summary::before {
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background: url(/wp-content/themes/grain/assets/img/lp/wp01/line-wave.svg)repeat-x center bottom;
  content: '';
}

.section-summary .lead {
  margin-bottom: 64px;
  font-size: 20px
}

.section-summary .copy {
  margin-bottom: 24px;
  font-size: 24px;
}

.section-summary .copy em {
  background: linear-gradient(transparent 66%, #F6E73D 0%);
  background-position: center bottom;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  font-weight: bold;
}

.section-summary .logo {
  margin-bottom: 12px;
}

.section-summary .wrap {
  margin: 48px auto 64px;
  max-width: 620px;
  border-top: 1px solid #235D57;
  border-bottom: 1px solid #235D57;
}

.section-summary .inner {
  margin: 7px auto;
  padding: 24px 0;
  border-top: 1px solid #235D57;
  border-bottom: 1px solid #235D57;
}

.section-summary .inner .em {
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 32px;
}

.section-summary .inner em {
  color: #FA7800;
}

.section-summary .btn {
  margin: 0 auto;
  max-width: 510px;
}

.section-summary .btn a {
  position: relative;
  display: block;
  padding: 19px 64px 19px 32px;
  border-radius: 5px;
  background-color: #fff;
  text-align: start;
  font-weight: bold;
  line-height: 1.5;
  transition: .4s var(--easing);
}

.section-summary .btn a:hover {
  background-color: #4DBBAE;
  color: #fff;
}


.section-summary .btn a::before,
.section-summary .btn a::after {
  position: absolute;
  top: 50%;
  right: 32px;
  width: 22px;
  height: 7px;
  background: url(/wp-content/themes/grain/assets/img/lp/wp01/arrow_black.svg) no-repeat center center / contain;
  content: '';
  transition: .4s var(--easing);
  transform: translateY(-50%);
}

.section-summary .btn a::after {
  background-image: url(/wp-content/themes/grain/assets/img/lp/wp01/arrow_white.svg);
  opacity: 0;
}

.section-summary .btn a:hover::before {
  opacity: 0;
}

.section-summary .btn a:hover::after {
  opacity: 1;
}

@media (max-width: 767px) {
  .section-summary .lead {
    font-size: 16px
  }

  .section-summary .copy {
    font-size: 20px;
  }

  .section-summary .inner .em {
    font-size: 24px;
  }

  .section-summary::before {
    top: -10px;
    height: 10px;
    background-size: 55px 10px;
  }
}



/* ---------- donwload */

.section-donwload {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, #C9EAE7 0%, #C9EAE7 50%, var(--text-color) 50%, var(--text-color) 100%);
}

.section-donwload::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -10;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background-image: url(/wp-content/themes/grain/assets/img/lp/wp01/download_bg.jpg);
  background-position: center;
  background-size: cover;
  content: "";
}

.section-donwload::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -20;
  width: 50%;
  height: 50%;
  background-color: #EDF8F7;
  content: "";
  opacity: 50%;
}

.p-donwload {
  margin: 0 auto;
  max-width: 1140px;
}



.p-donwload .p-head-group {
  padding-left: 40px;
  text-align: left;
}

.p-donwload .wrap {
  display: grid;

  grid-template-columns: 1fr 1fr;
}

.p-donwload .body-group {
  padding: 10px;
  width: 582px;
  height: auto;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.5);

  backdrop-filter: blur(5px);
}

.p-donwload .box {
  padding: 19px 30px;
  border-radius: 8px;
  background-color: #fff;
}

.p-donwload .inner {
  display: grid;
  align-items: center;

  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.p-donwload .body {
  font-size: 17px;
}

.p-donwload .btn {
  overflow: hidden;
  margin: 12px 0 8px;
  padding: 0;
  width: 318px;
  height: 60px;
  border-radius: 6px;
  background-color: #F6E73D;
  font-weight: bold;
  font-size: 22px;
  transition: .4s var(--easing);
}

.p-donwload .body-group:hover .btn {
  background-color: #EB7D16;
  color: #fff;
}

.p-donwload .btn span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.p-donwload .body em {
  background: linear-gradient(transparent 66%, #F6E73D 0%);
  background-position: center bottom;
  background-size: 91% 100%;
  background-repeat: no-repeat;
  font-weight: bold;
}

.p-donwload .body .note {
  font-weight: 500;
  font-size: 14px;
}

.p-donwload .body .note em {
  background: none;
  color: var(--primary-color);
  font-weight: normal;
}

@media(max-width:1023px) {
  .p-donwload .wrap {
    display: grid;
    margin: 0 auto;
    max-width: 100%;

    grid-template-columns: 1fr;
    justify-items: center;
  }

  .p-donwload .p-head-group {
    padding-left: 0;
    text-align: center;
  }

}

@media(max-width:767px) {
  .p-donwload .body-group {
    width: auto;
    height: auto;
  }

  .p-donwload .inner {
    display: grid;

    grid-template-columns: 1fr;
  }

  .p-donwload .body {
    font-size: 14px;
  }

  .p-donwload .body .btn {
    align-content: center;
    margin: 12px 0 8px;
    width: auto;
    border-radius: 6px;
    background-color: #F6E73D;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
  }

  .p-donwload .box {
    text-align: center;
  }
}


/* -------- txt-scroll */

.txt-scroll {
  position: absolute;
  bottom: -128px;
  left: 0;
  z-index: 20;
  overflow: hidden;
  width: 100%;
}

.txt-scroll .track {
  display: flex;
  width: fit-content;
  animation: scroll-left 30s linear infinite;
}

.txt-scroll span {
  margin-right: 64px;
  color: rgba(255, 255, 255, 0.2);
  white-space: nowrap;
  letter-spacing: 0.03em;
  font-weight: bold;
  font-size: 220px;
  line-height: 1;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-25%);
  }
}

@media(max-width:767px) {
  .txt-scroll {
    bottom: -64px;
  }

  .txt-scroll span {
    font-size: 110px;
  }
}


/* --------------------- footer */


footer {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 326px 0 96px;
  background-color: var(--text-color);
  color: #fff;
}

footer a {
  color: inherit;
}

footer a:hover {
  color: #4DBBAE;
}

footer .wrap {
  display: flex;
  justify-content: space-between;
}

footer .logo {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 24px;
}

footer .copyright {
  margin-top: 48px;
  padding: 40px 0 0;
  border-top: 1px solid color-mix(in srgb, #fff, transparent 40%);
  text-align: center;
}

@media(max-width:1023px) {

  footer .wrap {
    display: flex;
    flex-direction: column;
    margin: 0 auto;

    gap: 48px;
  }

  footer .logo {
    margin: 0 auto;
  }

  footer .info {
    margin: 0 auto;
  }
}

@media(max-width:767px) {
  footer {
    padding: 120px 0 40px;
  }

  footer .logo {
    gap: 8px;
  }

}

@media (min-width: 768px) {
  .-sp {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .-pc {
    display: none !important;
  }
}