@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  font-size: 62.5%;
}

* {
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #000;
  background-color: #000;
}

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  text-decoration: none;
}

img,
svg {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) {
  .is-pc {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .is-sp {
    display: block;
  }
}

.notoSansJp {
  font-family: "Noto Sans JP", sans-serif;
}

.boldonse {
  line-height: 1.8;
  font-family: "Boldonse", system-ui;
  font-weight: 400;
}

.anton {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.host-grotesk {
  font-family: "Host Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.l-wrap {
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .l-wrap {
    min-width: 1200px;
  }
}
.l-wrap__footerWrap {
  background-image: url("../images/pc/bg_gray_01.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-wrap__footerWrap {
    background-size: cover;
  }
}
.l-wrap__footerWrap .js-parallax-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/pc/bg_gray_01.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .l-wrap__footerWrap .js-parallax-background {
    background-size: cover;
  }
}
@media screen and (max-width: 767px) {
  .l-wrap__serviceWrap {
    background-image: url("../images/pc/bg_gray_03.png");
    background-size: cover;
  }
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  opacity: 1;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
}
@media screen and (min-width: 768px) {
  .is-home .l-header {
    opacity: 0;
  }
}
.l-header.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.l-header__inner {
  position: relative;
  display: flex;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    padding: 16px 20px 16px 4px;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 768px) {
  .l-header__inner {
    padding: 16px 38px;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .l-header__nav--pc {
    display: none;
  }
}
.l-header__navList {
  display: flex;
  gap: 26px;
}
.l-header__navItem {
  font-size: 18px;
}
.l-header__navLink {
  color: #000;
  transition: color 0.6s ease-out;
}
.l-header__logo {
  width: 300px;
  z-index: 999;
  order: 2;
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 160px;
  }
}
.l-header__logoLink {
  display: block;
  width: 100%;
  height: auto;
}
.l-header__logoLink svg {
  width: 100%;
  height: auto;
}
.l-header__logoLink svg path {
  fill: #000;
  transition: fill 1s ease-out;
}
.l-header__hamburger {
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  padding: 8px !important;
  width: 40px !important;
  height: 32px !important;
  position: relative !important;
  z-index: 99999 !important;
  order: 1 !important;
  pointer-events: auto !important;
  display: none !important;
}
@media screen and (max-width: 767px) {
  .l-header__hamburger {
    display: block !important;
  }
}
@media screen and (min-width: 768px) {
  .l-header__hamburger {
    display: none !important;
  }
}
.l-header__hamburger, .l-header__hamburger.white, .l-header__hamburger.black {
  background: none !important;
  pointer-events: auto !important;
  z-index: 99999 !important;
}
.l-header__hamburger::before {
  content: "" !important;
  position: absolute !important;
  top: -10px !important;
  left: -10px !important;
  right: -10px !important;
  bottom: -10px !important;
  background: transparent !important;
  z-index: -1 !important;
  pointer-events: none !important;
}
.l-header__hamburgerLine {
  position: absolute;
  left: 50%;
  width: 24px;
  height: 2px;
  background-color: #000;
  transform: translateX(-50%);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
  pointer-events: none;
}
.l-header__hamburgerLine:nth-child(1) {
  top: 14px;
}
.l-header__hamburgerLine:nth-child(2) {
  top: 21px;
}
.l-header__hamburgerLine:nth-child(3) {
  top: 28px;
}
.l-header__hamburger.is-open .l-header__hamburgerLine:nth-child(1) {
  top: 21px !important;
  transform: translateX(-50%) rotate(45deg) !important;
}
.l-header__hamburger.is-open .l-header__hamburgerLine:nth-child(2) {
  opacity: 0 !important;
}
.l-header__hamburger.is-open .l-header__hamburgerLine:nth-child(3) {
  top: 21px !important;
  transform: translateX(-50%) rotate(-45deg) !important;
}
.l-header.is-open .l-header__hamburgerLine {
  background-color: #fff !important;
}
.l-header.is-open .l-header__hamburgerLine:nth-child(1) {
  top: 21px !important;
  transform: translateX(-50%) rotate(45deg) !important;
}
.l-header.is-open .l-header__hamburgerLine:nth-child(2) {
  opacity: 0 !important;
}
.l-header.is-open .l-header__hamburgerLine:nth-child(3) {
  top: 21px !important;
  transform: translateX(-50%) rotate(-45deg) !important;
}
@media screen and (max-width: 767px) {
  .l-header.is-open .l-header__logo {
    opacity: 0.3;
  }
}
.l-header__slideMenu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  background-color: #fff;
  transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
}
@media screen and (min-width: 768px) {
  .l-header__slideMenu {
    display: none;
  }
}
.l-header__slideMenu.is-open {
  left: 0;
}
.l-header__slideNav {
  padding-top: 120px;
  padding-left: 40px;
  padding-right: 40px;
}
.l-header__slideNavList {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.l-header__slideNavItem {
  font-size: 28px;
  font-weight: bold;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 16px;
}
.l-header__slideNavLink {
  color: #000;
  text-decoration: none;
  display: block;
  transition: opacity 0.3s ease;
}
.l-header__slideNavLink:hover {
  opacity: 0.7;
}

.white .l-header__navLink {
  color: #fff !important;
}
.white .l-header__hamburgerLine {
  background-color: #fff !important;
}
.white .l-header__logoLink svg path {
  fill: #fff !important;
}

.black .l-header__navLink {
  color: #000 !important;
}
.black .l-header__hamburgerLine {
  background-color: #000 !important;
}
.black .l-header__logoLink svg path {
  fill: #000 !important;
}

.l-header.white .l-header__navLink {
  color: #fff !important;
}
.l-header.white .l-header__hamburgerLine {
  background-color: #fff !important;
}
.l-header.white .l-header__logoLink svg path {
  fill: #fff !important;
}

.l-header.black .l-header__navLink {
  color: #000 !important;
}
.l-header.black .l-header__hamburgerLine {
  background-color: #000 !important;
}
.l-header.black .l-header__logoLink svg path {
  fill: #000 !important;
}

.page-home .l-header__navLink[href*="index.html"] {
  color: #e075aa !important;
}

.page-company .l-header__navLink[href*="company.html"] {
  color: #a4cdfd !important;
}

.page-service .l-header__navLink[href*="service.html"] {
  color: #9cecb9 !important;
}

.page-news .l-header__navLink[href*="news.html"],
.page-news-detail .l-header__navLink[href*="news.html"] {
  color: #e9be27 !important;
}

.page-contact .l-header__navLink[href*="contact.html"] {
  color: #fb6c19 !important;
}

.l-footer {
  border-top: 1px solid #fff;
}
.l-footer--black {
  background-image: url("../images/pc/bg_black_01.png");
  background-size: 100% auto;
  border: none;
}
@media screen and (max-width: 767px) {
  .l-footer__container {
    padding: 16px;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__container {
    padding: 50px 56px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.l-footer__logo {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    padding: 0 8px;
  }
}
.l-footer__contents {
  color: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .l-footer__contents {
    margin-top: 14px;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__contents {
    flex-shrink: 0;
    margin-left: 60px;
    padding-bottom: 12px;
  }
}
.l-footer__location {
  font-size: 12px;
  line-height: 1.5;
  font-family: "Host Grotesk", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.l-footer__nav {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .l-footer__nav {
    margin-top: 18px;
  }
}
.l-footer__navItem {
  font-size: 20px;
  color: #f5f5f5;
  line-height: 1.5;
}
.l-footer__navItem a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.l-footer__navItem a:hover, .l-footer__navItem a:active {
  text-decoration: none;
}
.l-footer__copy {
  font-size: 12px;
  font-weight: 400;
  margin-top: 18px;
}

.l-footer__navItem a[href*="index.html"]:hover, .l-footer__navItem a[href*="index.html"]:active {
  color: #e075aa !important;
}

.l-footer__navItem a[href*="company.html"]:hover, .l-footer__navItem a[href*="company.html"]:active {
  color: #a4cdfd !important;
}

.l-footer__navItem a[href*="service.html"]:hover, .l-footer__navItem a[href*="service.html"]:active {
  color: #9cecb9 !important;
}

.l-footer__navItem a[href*="news.html"]:hover, .l-footer__navItem a[href*="news.html"]:active {
  color: #e9be27 !important;
}

.l-footer__navItem a[href*="contact.html"]:hover, .l-footer__navItem a[href*="contact.html"]:active {
  color: #fb6c19 !important;
}

/**
 * Component: Article Head
 *
 * 記事やニュースのヘッダー情報コンポーネント
 * ラベル（カテゴリ）とメタ情報（日付など）を表示
 */
.c-articleHead {
  display: flex;
  align-items: center;
  gap: 12px;
}
.c-articleHead__label {
  height: 25px;
  padding: 0 8px;
  font-size: 12px;
  color: #f5f5f5;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  letter-spacing: 0.1em;
  font-weight: bold;
}
.c-articleHead__meta {
  font-size: 14px;
  color: #858585;
}
@media screen and (max-width: 767px) {
  .c-articleHead__meta {
    font-size: 13px;
  }
}

/**
 * Component: Button
 *
 * ボタンコンポーネント
 */
.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 2px solid #000;
  border-radius: 0;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 300px;
  height: 68px;
}
.c-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.c-button--primary {
  background-color: #000;
  color: #f5f5f5;
  border: 2px solid #000;
}
.c-button--primary:hover:not(:disabled), .c-button--primary:active:not(:disabled) {
  background-color: #f5f5f5;
  color: #000;
  border: 2px solid #000;
}
.c-button--primary:disabled {
  background-color: #ccc;
  color: #999;
  border: 2px solid #ccc;
  cursor: not-allowed;
  opacity: 1;
}
.c-button--primary:disabled:hover {
  transform: none;
  box-shadow: none;
}
.c-button--orange {
  background-color: #000;
  color: #f5f5f5;
  border: 2px solid #000;
}
.c-button--orange:hover:not(:disabled), .c-button--orange:active:not(:disabled) {
  background-color: #fb6c1a;
  color: #fff;
  border: 2px solid #fb6c1a;
}
.c-button--orange:disabled {
  background-color: #ccc;
  color: #999;
  border: 2px solid #ccc;
  cursor: not-allowed;
  opacity: 1;
}
.c-button--orange:disabled:hover {
  transform: none;
  box-shadow: none;
}
.c-button--secondary {
  background-color: transparent;
  color: #e46bb3;
  border: 2px solid #e46bb3;
}
.c-button--secondary:hover:not(:disabled), .c-button--secondary:active:not(:disabled) {
  background-color: #e46bb3;
  color: #fff;
  border: 2px solid #e46bb3;
}

/**
 * Component: Checkbox
 *
 * カスタムチェックボックスコンポーネント
 */
.c-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.c-checkbox__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.c-checkbox__input:checked + .c-checkbox__label::before {
  background-color: #fb6c1a;
  border-color: #fb6c1a;
}
.c-checkbox__input:checked + .c-checkbox__label::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}
.c-checkbox__input:focus + .c-checkbox__label::before {
  box-shadow: 0 0 0 3px rgba(228, 107, 179, 0.1);
}
.c-checkbox__label {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 2px;
  font-size: 12px;
  line-height: 1.5;
  color: #333;
  cursor: pointer;
  padding-left: 32px;
}
.c-checkbox__label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border: 2px solid #000;
}
.c-checkbox__label::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  opacity: 0;
  transform: rotate(45deg) scale(1);
  transition: all 0.2s ease;
}
@media screen and (max-width: 767px) {
  .c-checkbox__label {
    font-size: 12px;
  }
  .c-checkbox__label::before {
    width: 16px;
    height: 16px;
  }
  .c-checkbox__label::after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 8px;
  }
}
.c-checkbox__link {
  color: #fb6c1a;
  text-decoration: underline;
}
.c-checkbox__link:hover {
  text-decoration: none;
}

.js-paint-scroll-fadeIn {
  opacity: 0;
  transform: scale(2);
  transition: 0.3s ease-out;
}
.js-paint-scroll-fadeIn.is-show {
  opacity: 1;
  transform: scale(1);
}
.js-paint-scroll-fadeIn--delay-1 {
  transition-delay: 0.3s;
}
.js-paint-scroll-fadeIn--delay-2 {
  transition-delay: 0.6s;
}
.js-paint-scroll-fadeIn--delay-3 {
  transition-delay: 0.9s;
}
.js-paint-scroll-fadeIn--delay-4 {
  transition-delay: 1.2s;
}
.js-paint-scroll-fadeIn--delay-5 {
  transition-delay: 1.5s;
}
.js-paint-scroll-fadeIn--delay-6 {
  transition-delay: 1.8s;
}

.js-paint-scroll-fadeIn--immediate {
  opacity: 0;
  transform: scale(5);
  transition: 0.3s ease-out;
}
.js-paint-scroll-fadeIn--immediate.is-show {
  opacity: 1;
  transform: scale(1);
}
.js-paint-scroll-fadeIn--immediate--delay-1 {
  transition-delay: 0.3s;
}
.js-paint-scroll-fadeIn--immediate--delay-2 {
  transition-delay: 0.6s;
}
.js-paint-scroll-fadeIn--immediate--delay-3 {
  transition-delay: 0.9s;
}
.js-paint-scroll-fadeIn--immediate--delay-4 {
  transition-delay: 1.2s;
}
.js-paint-scroll-fadeIn--immediate--delay-5 {
  transition-delay: 1.5s;
}
.js-paint-scroll-fadeIn--immediate--delay-6 {
  transition-delay: 1.8s;
}
.js-paint-scroll-fadeIn--immediate--delay-7 {
  transition-delay: 2.1s;
}
.js-paint-scroll-fadeIn--immediate--delay-8 {
  transition-delay: 2.4s;
}
.js-paint-scroll-fadeIn--immediate--delay-9 {
  transition-delay: 2.7s;
}
.js-paint-scroll-fadeIn--immediate--delay-10 {
  transition-delay: 3s;
}

.js-content-scroll-fadeIn {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-in-out, transform 1s ease-in-out;
}
.js-content-scroll-fadeIn.is-show {
  opacity: 1;
  transform: translateY(0);
}
.js-content-scroll-fadeIn--delay-1 {
  transition-delay: 0.1s;
}
.js-content-scroll-fadeIn--delay-2 {
  transition-delay: 0.2s;
}
.js-content-scroll-fadeIn--delay-3 {
  transition-delay: 0.3s;
}
.js-content-scroll-fadeIn--delay-4 {
  transition-delay: 0.4s;
}
.js-content-scroll-fadeIn--delay-5 {
  transition-delay: 0.5s;
}
.js-content-scroll-fadeIn--delay-6 {
  transition-delay: 0.6s;
}
.js-content-scroll-fadeIn--delay-7 {
  transition-delay: 0.7s;
}
.js-content-scroll-fadeIn--delay-8 {
  transition-delay: 0.8s;
}
.js-content-scroll-fadeIn--delay-9 {
  transition-delay: 0.9s;
}
.js-content-scroll-fadeIn--delay-10 {
  transition-delay: 1s;
}

@media screen and (max-width: 767px) {
  .c-form__inner {
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 768px) {
  .c-form__inner {
    padding-bottom: 64px;
  }
}
.c-form__group {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .c-form__group:first-child {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .c-form__row {
    display: flex;
    gap: 20px;
    margin-top: 24px;
  }
}
@media screen and (min-width: 768px) {
  .c-form__row:first-child {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .c-form__row .c-form__group {
    width: 48%;
    margin-top: 0;
  }
}
.c-form__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.4;
}
.c-form__required {
  color: #fb6c1a;
  font-size: 14px;
  font-weight: 700;
  margin-left: 2px;
}
.c-form__input, .c-form__textarea {
  width: 100%;
  padding: 20px 16px;
  border: 1px solid #7e7e7e;
  border-radius: 0;
  font-size: 16px;
  font-family: inherit;
  line-height: 1.4;
  background-color: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.c-form__input:focus, .c-form__textarea:focus {
  outline: none;
  border-color: #fb6c1a;
  box-shadow: 0 0 0 3px rgba(228, 107, 179, 0.1);
}
.c-form__input::placeholder, .c-form__textarea::placeholder {
  color: #999;
}
.c-form__selectWrapper {
  position: relative;
}
.c-form__select {
  width: 100%;
  padding: 20px 16px;
  border: 1px solid #7e7e7e;
  border-radius: 0;
  font-size: 14px;
  font-family: inherit;
  line-height: 1.4;
  background-color: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  appearance: none;
  color: #333;
}
.c-form__select:focus {
  outline: none;
  border-color: #fb6c1a;
  box-shadow: 0 0 0 3px rgba(228, 107, 179, 0.1);
}
.c-form__select::-ms-expand {
  display: none;
}
.c-form__select option[value=""] {
  color: #999;
}
.c-form__select:invalid {
  color: #999;
}
.c-form__textarea {
  min-height: 120px;
  resize: vertical;
}
@media screen and (max-width: 767px) {
  .c-form__textarea {
    min-height: 180px;
  }
}
.c-form__submit {
  margin-top: 24px;
}

.c-heading {
  display: inline-block;
}
.c-heading__title {
  line-height: 1;
}
.c-heading__title--size1 {
  font-size: 70px;
}
@media screen and (max-width: 767px) {
  .c-heading__title--size1 {
    font-size: 24px;
    line-height: 1.8;
  }
}
.c-heading__title--size2 {
  font-size: 78px;
}
@media screen and (max-width: 767px) {
  .c-heading__title--size2 {
    font-size: 28px;
  }
}
.c-heading__title--size3 {
  font-size: 90px;
}
@media screen and (max-width: 767px) {
  .c-heading__title--size3 {
    font-size: 32px;
  }
}
.c-heading__title--size4 {
  font-size: 94px;
}
@media screen and (max-width: 767px) {
  .c-heading__title--size4 {
    font-size: 46px;
  }
}
.c-heading__title--size5 {
  font-size: 36px;
}
@media screen and (max-width: 767px) {
  .c-heading__title--size5 {
    font-size: 22px;
  }
}
.c-heading__title--colorBlue {
  color: #9fcbff;
}
.c-heading__title--colorGreen {
  color: #9cecb9;
}
.c-heading__title--colorBlack {
  color: #000;
}
.c-heading__title--colorWhite {
  color: #fff;
}
.c-heading__text {
  margin-top: 12px;
  font-weight: 900;
  font-size: 26px;
  color: #000;
}
.c-heading__text--size1 {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .c-heading__text--size1 {
    font-size: 14px;
    margin-top: 0;
  }
}
.c-heading__text--size2 {
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .c-heading__text--size2 {
    font-size: 15px;
  }
}
.c-heading__text--size3 {
  font-size: 25px;
}
@media screen and (max-width: 767px) {
  .c-heading__text--size3 {
    font-size: 18px;
  }
}
.c-heading__text--size4 {
  font-size: 26px;
}
@media screen and (max-width: 767px) {
  .c-heading__text--size4 {
    font-size: 18px;
  }
}
.c-heading__text--size5 {
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .c-heading__text--size5 {
    font-size: 20px;
  }
}
.c-heading__text--colorBlue {
  color: #9fcbff;
}
.c-heading__text--colorGreen {
  color: #9cecb9;
}
.c-heading__text--colorBlack {
  color: #000;
}
.c-heading__text--colorWhite {
  color: #fff;
}

/**
 * Component: Paint
 */
.c-paint {
  position: absolute;
  pointer-events: none;
  display: block;
  z-index: -1;
}
.c-paint--logo {
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .c-paint--logo {
    top: 40%;
  }
}
.c-paint--logo img {
  opacity: 0;
  transform: translateX(100%) translateY(-100%);
  transition: opacity 0.5s ease-out, transform 0.2s;
}
.c-paint--logo img.is-show {
  opacity: 1;
  transform: translateX(0) translateY(0);
}
.c-paint--statement {
  width: 68%;
  top: 45%;
  left: 50%;
  margin-left: -34%;
  margin-top: -24%;
}
@media screen and (max-width: 767px) {
  .c-paint--statement {
    max-width: 400px;
    top: 220px;
  }
}
.c-paint--joinus01 {
  width: 46%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .c-paint--joinus01 {
    top: 22%;
    left: 55%;
    width: 64%;
  }
}
.c-paint--joinus02 {
  width: 30%;
  top: 68%;
  left: 74%;
}
@media screen and (max-width: 767px) {
  .c-paint--joinus02 {
    top: 48%;
    left: 67%;
  }
}
.c-paint--mission {
  width: 44%;
  top: -12%;
  left: 48%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .c-paint--mission {
    width: 76%;
    top: 16%;
    left: 53%;
  }
}
.c-paint--foundation {
  width: 420px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .c-paint--foundation {
    width: 100%;
    top: 45%;
    opacity: 0.4;
    z-index: 1;
  }
}
.c-paint--foundation--development {
  left: 40%;
}
@media screen and (max-width: 767px) {
  .c-paint--foundation--development {
    left: 62%;
  }
}
.c-paint--foundation--comminuty {
  left: 64%;
}
@media screen and (max-width: 767px) {
  .c-paint--foundation--comminuty {
    left: 90%;
  }
}
.c-paint--strengths {
  width: 440px;
}
@media screen and (max-width: 767px) {
  .c-paint--strengths {
    width: 80%;
    opacity: 0.7;
  }
}
.c-paint--strengths--01 {
  top: -140px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .c-paint--strengths--01 {
    top: -34%;
  }
}
.c-paint--strengths--02 {
  bottom: -140px;
  left: -140px;
}
@media screen and (max-width: 767px) {
  .c-paint--strengths--02 {
    bottom: -32%;
    left: -24%;
  }
}
.c-paint--strengths--03 {
  bottom: -140px;
  right: -140px;
}
@media screen and (max-width: 767px) {
  .c-paint--strengths--03 {
    bottom: -32%;
    right: -24%;
  }
}
.c-paint--bi {
  width: 400px;
  top: -150px;
  right: 16%;
  left: auto;
}
@media screen and (max-width: 767px) {
  .c-paint--bi {
    width: 54%;
    top: -2%;
    right: 11%;
  }
}
.c-paint--page {
  width: 500px;
  top: 50%;
  right: -200px;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .c-paint--page {
    width: 150px;
    right: 5%;
  }
}

.sp-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 2000;
  visibility: hidden;
  transition: visibility 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media screen and (min-width: 768px) {
  .sp-menu {
    display: none;
  }
}
.sp-menu.is-open {
  visibility: visible;
}
.sp-menu__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.sp-menu.is-open .sp-menu__overlay {
  opacity: 1;
}
.sp-menu__content {
  position: relative;
  width: 60%;
  height: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: 100px 20px 40px 20px;
  overflow-y: auto;
  margin-left: auto;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-image: url(../images/pc/bg_gray_02.png);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.sp-menu.is-open .sp-menu__content {
  transform: translateX(0);
}
.sp-menu__header {
  margin-bottom: 60px;
  padding-top: 20px;
}
.sp-menu__logo {
  width: 200px;
}
.sp-menu__logoLink {
  display: block;
  width: 100%;
  height: auto;
}
.sp-menu__logoLink svg {
  width: 100%;
  height: auto;
}
.sp-menu__logoLink svg path {
  fill: #fff;
  transition: fill 0.3s ease;
}
.sp-menu__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.sp-menu__navList {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sp-menu__navItem {
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.sp-menu.is-open .sp-menu__navItem {
  transform: translateY(0);
  opacity: 1;
}
.sp-menu.is-open .sp-menu__navItem:nth-child(1) {
  transition-delay: 0.1s;
}
.sp-menu.is-open .sp-menu__navItem:nth-child(2) {
  transition-delay: 0.2s;
}
.sp-menu.is-open .sp-menu__navItem:nth-child(3) {
  transition-delay: 0.3s;
}
.sp-menu.is-open .sp-menu__navItem:nth-child(4) {
  transition-delay: 0.4s;
}
.sp-menu.is-open .sp-menu__navItem:nth-child(5) {
  transition-delay: 0.5s;
}
.sp-menu__navLink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  font-weight: bold;
  transition: opacity 0.3s ease;
}
.sp-menu__navLink:hover {
  opacity: 0.7;
}
.sp-menu__navLink:active {
  opacity: 0.5;
}
.sp-menu__navLink svg {
  width: 18px;
}
.sp-menu__navLink svg path {
  fill: #fff;
  transition: fill 0.3s ease;
}
.sp-menu__navText {
  flex: 1;
}
.sp-menu__navArrow {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}
.sp-menu__navLink:hover .sp-menu__navArrow {
  transform: translateX(4px);
}

.sp-hamburger {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2001;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: block;
}
@media screen and (min-width: 768px) {
  .sp-hamburger {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .sp-hamburger {
    display: block !important;
  }
}
.sp-hamburger.is-open {
  background-color: rgba(0, 0, 0, 0.9);
}
.sp-hamburger.is-open .sp-hamburger__line {
  background-color: #fff;
}
.sp-hamburger:hover {
  background-color: rgb(255, 255, 255);
  transform: scale(1.05);
}
.sp-hamburger.is-open:hover {
  background-color: rgb(0, 0, 0);
}
.sp-hamburger::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: transparent;
}

.sp-hamburger__line {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  background-color: #000;
  transform: translateX(-50%);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.sp-hamburger__line:nth-child(1) {
  top: 16px;
}
.sp-hamburger__line:nth-child(2) {
  top: 23px;
}
.sp-hamburger__line:nth-child(3) {
  top: 30px;
}

.sp-hamburger.is-open .sp-hamburger__line:nth-child(1) {
  top: 23px;
  transform: translateX(-50%) rotate(45deg);
}
.sp-hamburger.is-open .sp-hamburger__line:nth-child(2) {
  opacity: 0;
  transform: translateX(-50%) scale(0);
}
.sp-hamburger.is-open .sp-hamburger__line:nth-child(3) {
  top: 23px;
  transform: translateX(-50%) rotate(-45deg);
}

.page-home .sp-menu__navLink[href*="index.html"] {
  color: #e075aa;
}
.page-home .sp-menu__navLink[href*="index.html"] svg path {
  fill: #e075aa;
}

.page-company .sp-menu__navLink[href*="company.html"] {
  color: #a4cdfd;
}
.page-company .sp-menu__navLink[href*="company.html"] svg path {
  fill: #a4cdfd;
}

.page-service .sp-menu__navLink[href*="service.html"] {
  color: #9cecb9;
}
.page-service .sp-menu__navLink[href*="service.html"] svg path {
  fill: #9cecb9;
}

.page-news .sp-menu__navLink[href*="news.html"],
.page-news-detail .sp-menu__navLink[href*="news.html"] {
  color: #e9be27;
}
.page-news .sp-menu__navLink[href*="news.html"] svg path,
.page-news-detail .sp-menu__navLink[href*="news.html"] svg path {
  fill: #e9be27;
}

.page-contact .sp-menu__navLink[href*="contact.html"] {
  color: #fb6c19;
}
.page-contact .sp-menu__navLink[href*="contact.html"] svg path {
  fill: #fb6c19;
}

.p-bi {
  background-image: url("../images/pc/bg_01.png");
  background-size: 100% auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-bi {
    padding-bottom: 280px;
  }
}
@media screen and (max-width: 767px) {
  .p-bi {
    background-image: url("../images/sp/bg_01.png");
  }
}
@media screen and (max-width: 767px) {
  .p-bi__container {
    padding: 40px 16px 110px 16px;
  }
}
@media screen and (min-width: 768px) {
  .p-bi__container {
    max-width: 1200px;
    margin: 0 auto;
  }
}
.p-bi_section {
  padding-top: 280px;
}
@media screen and (max-width: 767px) {
  .p-bi_section {
    padding-top: 110px;
  }
}
.p-bi__content {
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .p-bi__content {
    margin-top: 16px;
  }
}
.p-bi__contenttitle {
  font-weight: 900;
  font-size: 40px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-bi__contenttitle {
    font-size: 24px;
  }
}
.p-bi__contentText {
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-bi__contentText {
    font-size: 17px;
    margin-top: 16px;
  }
}
@media screen and (min-width: 768px) {
  .p-bi__contentText {
    margin-top: 26px;
    max-width: 45%;
    font-size: 16px;
  }
}
.p-bi__approach {
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .p-bi__approach {
    margin-top: 40px;
  }
}
.p-bi__approachLabel {
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .p-bi__approachLabel {
    font-size: 18px;
  }
}
.p-bi__approachLabel--pink {
  color: #e56da9;
}
.p-bi__approachLabel--green {
  color: #9cecb9;
}
.p-bi__approachLabel--blue {
  color: #9fcbff;
}
.p-bi__approachTitle {
  font-weight: 900;
  font-size: 40px;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .p-bi__approachTitle {
    margin-top: 16px;
    font-size: 24px;
    line-height: 1.5;
  }
}
.p-bi__cardContainer {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-bi__cardContainer {
    margin-top: 32px;
  }
}
@media screen and (max-width: 767px) {
  .p-bi__cardList {
    padding: 0 32px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    background-color: #fff;
  }
}
@media screen and (min-width: 768px) {
  .p-bi__cardList {
    display: flex;
    gap: 36px;
    justify-content: space-between;
  }
}
.p-bi__cardList li {
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-bi__cardList li {
    padding: 32px 0;
  }
  .p-bi__cardList li:not(:first-child) {
    border-top: 1px solid #aaaaaa;
  }
}
@media screen and (min-width: 768px) {
  .p-bi__cardList li {
    border-radius: 10px;
    padding: 40px 44px;
    flex: 1 1 0;
    min-width: 260px;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    min-height: 240px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  }
}
.p-bi__cardLabel {
  font-size: 12px;
}
.p-bi__cardLabel span {
  font-size: 14px;
  font-weight: 700;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .p-bi__cardLabel span {
    font-size: 15px;
  }
}
.p-bi__cardTitle {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .p-bi__cardTitle {
    margin-top: 16px;
  }
}
.p-bi__cardText {
  font-size: 14px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-bi__cardText {
    margin-top: 20px;
  }
}
.p-bi .js-parallax-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/pc/bg_01.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-bi .js-parallax-background {
    background-image: url("../images/sp/bg_01.png");
  }
}

.p-caseStudy {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-caseStudy {
    margin-top: 32px;
  }
}
.p-caseStudy__container {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 767px) {
  .p-caseStudy__container {
    padding: 24px;
    border-radius: 8px;
  }
}
@media screen and (min-width: 768px) {
  .p-caseStudy__container {
    padding: 46px 58px;
    display: flex;
    justify-content: space-between;
    border-radius: 10px;
  }
}
@media screen and (min-width: 768px) {
  .p-caseStudy__content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-right: 40px;
    max-width: 50%;
  }
}
.p-caseStudy__desc {
  margin-top: 26px;
}
@media screen and (max-width: 767px) {
  .p-caseStudy__desc {
    margin-top: 16px;
  }
}
.p-caseStudy__desc dt {
  font-weight: 900;
  font-size: 20px;
  line-height: 1.5;
}
.p-caseStudy__desc dd {
  margin-top: 26px;
  font-size: 14px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-caseStudy__desc dd {
    margin-top: 16px;
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  .p-caseStudy__imageWrap {
    margin-top: 32px;
  }
}
@media screen and (min-width: 768px) {
  .p-caseStudy__imageWrap {
    flex: 0 0 40%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.p-caseStudy__imageWrap img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.p-caseStudy__head {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-caseStudy__head {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (min-width: 768px) {
  .p-caseStudy__head {
    align-items: center;
    gap: 16px;
  }
}

.p-companyProfile {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-image: url("../images/pc/bg_gray_02.png");
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-companyProfile__container {
    padding: 100px 16px 100px 16px;
  }
}
@media screen and (min-width: 768px) {
  .p-companyProfile__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 270px 0 268px;
  }
}
@media screen and (max-width: 767px) {
  .p-companyProfile__contents {
    margin-top: 32px;
  }
}
@media screen and (min-width: 768px) {
  .p-companyProfile__contents {
    margin-top: 64px;
  }
}
.p-companyProfile__item {
  color: #f5f5f5;
}
.p-companyProfile__item:not(:first-child) {
  border-top: 1px solid #acacac;
}
@media screen and (max-width: 767px) {
  .p-companyProfile__item {
    padding: 24px 0;
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .p-companyProfile__item {
    display: flex;
    padding: 36px 0;
    gap: 24px;
  }
}
.p-companyProfile__term {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-companyProfile__term {
    gap: 12px;
    margin-bottom: 12px;
  }
}
@media screen and (min-width: 768px) {
  .p-companyProfile__term {
    gap: 24px;
    flex: 0 0 300px;
  }
}
@media screen and (max-width: 767px) {
  .p-companyProfile__label {
    font-size: 18px;
    display: block;
    margin-bottom: 4px;
  }
}
@media screen and (min-width: 768px) {
  .p-companyProfile__label {
    font-size: 26px;
  }
}
.p-companyProfile__desc {
  color: #f5f5f5;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-companyProfile__desc {
    font-size: 14px;
    line-height: 1.6;
    margin-left: 8px;
  }
}
@media screen and (min-width: 768px) {
  .p-companyProfile__desc {
    font-size: 20px;
    line-height: 1.4;
    flex: 1;
  }
}
.p-companyProfile__desc div > p:not(:first-child) {
  margin-top: 8px;
}
.p-companyProfile .js-parallax-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-image: url("../images/pc/bg_gray_02.png");
  z-index: -1;
}

/**
 * Project: Contact
 *
 * お問い合わせページコンポーネント
 */
.p-contact {
  padding-top: 240px;
  padding-bottom: 200px;
  background-image: url("../images/pc/bg_01.png");
  background-size: 100% auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding-top: 120px;
    padding-bottom: 40px;
    background-image: url("../images/sp/bg_01.png");
  }
}
@media screen and (max-width: 767px) {
  .p-contact__container {
    padding: 0 16px 0 16px;
  }
}
@media screen and (min-width: 768px) {
  .p-contact__container {
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .p-contact__content {
    margin: 40px auto 0;
    max-width: 860px;
  }
}
.p-contact__desc {
  padding: 40px 0;
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-contact__desc {
    padding: 40px 0 20px;
    font-size: 14px;
  }
}
.p-contact .js-parallax-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/pc/bg_01.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  z-index: -1;
}

.p-foundation {
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-foundation {
    background-image: url("../images/pc/bg_gray_03.png");
    background-size: 100% auto;
  }
}
@media screen and (max-width: 767px) {
  .p-foundation__container {
    padding: 160px 16px 120px 16px;
  }
}
@media screen and (min-width: 768px) {
  .p-foundation__container {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 240px;
    padding-bottom: 240px;
  }
}
.p-foundation__titleList {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-foundation__titleList {
    gap: 50px;
  }
}
@media screen and (min-width: 768px) {
  .p-foundation__titleList {
    gap: 100px;
  }
}
@media screen and (min-width: 768px) {
  .p-foundation__titleList li:nth-child(2) {
    transform: translateX(8%);
  }
  .p-foundation__titleList li:nth-child(3) {
    transform: translateX(16%);
  }
}
.p-foundation__titleItem > div {
  display: inline-block;
}
.p-foundation .js-parallax-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  background-image: url("../images/pc/bg_gray_03.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  z-index: -1;
}

.p-homeNews {
  padding-bottom: #dadada 1px solid;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-homeNews__container {
    padding: 76px 16px 76px 16px;
  }
}
@media screen and (min-width: 768px) {
  .p-homeNews__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 0;
  }
}
.p-homeNews__title {
  font-size: 94px;
  color: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .p-homeNews__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .p-homeNews__list {
    margin-top: 52px;
    display: grid;
    gap: 12px;
  }
}
@media screen and (min-width: 768px) {
  .p-homeNews__list {
    display: flex;
    justify-content: space-between;
    margin-top: 90px;
  }
}
.p-homeNews__listItem {
  width: 100%;
  background-color: #161616;
  border-radius: 8px;
  overflow: hidden;
  transition: border 0.3s ease-out;
  border: 1px solid #161616;
}
@media screen and (min-width: 768px) {
  .p-homeNews__listItem {
    width: 23.8095238095%;
  }
}
.p-homeNews__listItem:hover {
  border: 1px solid #ffb900;
}
.p-homeNews__listItem:active {
  border: 1px solid #ffb900;
}
.p-homeNews__listLink {
  background-color: #161616;
  display: block;
  padding: 28px 22px;
  width: 100%;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-homeNews__listLink {
    padding: 22px 25px;
  }
}
.p-homeNews__listCategory {
  display: inline-block;
  height: 25px;
  font-size: 12px;
  line-height: 25px;
  padding: 0 8px;
  background-color: #f5f5f5;
  border-radius: 14px;
}
.p-homeNews__listMeta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-homeNews__moreIcon {
  width: 18px;
}
.p-homeNews__listText {
  color: #f5f5f5;
  font-size: 16px;
  line-height: 1.4;
}
.p-homeNews__listDate {
  color: #a0a0a0;
  font-size: 14px;
}
.p-homeNews__naviWrap {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-homeNews__naviWrap {
    justify-content: space-between;
  }
}
.p-homeNews__navi {
  margin-top: 120px;
  display: flex;
  flex-direction: column;
  gap: 120px;
}
@media screen and (max-width: 767px) {
  .p-homeNews__navi {
    width: 100%;
    margin-top: 52px;
    gap: 56px;
  }
}
.p-homeNews__naviLink {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 28px;
}
@media screen and (max-width: 767px) {
  .p-homeNews__naviLink {
    padding-right: 16px;
    justify-content: space-between;
  }
}
.p-homeNews__naviLink .p-homeNews__naviTitle,
.p-homeNews__naviLink .p-homeNews__naviDesc {
  transition: color 0.3s ease-out;
}
.p-homeNews__naviLink svg > path {
  transition: fill 0.3s ease-out;
}
.p-homeNews__naviLink--blue:hover .p-homeNews__naviTitle {
  color: #9fcbff;
}
.p-homeNews__naviLink--blue:hover svg > path {
  fill: #9fcbff;
}
.p-homeNews__naviLink--blue:hover .p-homeNews__naviDesc {
  color: #9fcbff;
}
.p-homeNews__naviLink--blue:active .p-homeNews__naviTitle {
  color: #9fcbff;
}
.p-homeNews__naviLink--blue:active svg > path {
  fill: #9fcbff;
}
.p-homeNews__naviLink--blue:active .p-homeNews__naviDesc {
  color: #9fcbff;
}
.p-homeNews__naviLink--green:hover .p-homeNews__naviTitle {
  color: #9cecb9;
}
.p-homeNews__naviLink--green:hover svg > path {
  fill: #9cecb9;
}
.p-homeNews__naviLink--green:hover .p-homeNews__naviDesc {
  color: #9cecb9;
}
.p-homeNews__naviLink--green:active .p-homeNews__naviTitle {
  color: #9cecb9;
}
.p-homeNews__naviLink--green:active svg > path {
  fill: #9cecb9;
}
.p-homeNews__naviLink--green:active .p-homeNews__naviDesc {
  color: #9cecb9;
}
.p-homeNews__naviContent {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.p-homeNews__naviItem {
  color: #f5f5f5;
}
.p-homeNews__naviTitle {
  color: #f5f5f5;
  font-size: 80px;
}
@media screen and (max-width: 767px) {
  .p-homeNews__naviTitle {
    font-size: 24px;
  }
}
.p-homeNews__naviMoreIcon {
  width: 98px;
  margin-left: 22px;
}
@media screen and (max-width: 767px) {
  .p-homeNews__naviMoreIcon {
    width: 32px;
    margin-left: 8px;
    transform: translateY(10px);
  }
}
.p-homeNews__naviDesc {
  margin-top: 2px;
  color: #f5f5f5;
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .p-homeNews__naviDesc {
    margin-top: 8px;
    font-size: 16px;
  }
}

.p-joinus {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-joinus__container {
    margin-top: 40px;
    padding: 0 16px 0 16px;
  }
}
@media screen and (min-width: 768px) {
  .p-joinus__container {
    width: 70%;
    padding-top: 8%;
  }
}
.p-joinus__title {
  margin: 0 auto;
  padding: 0 4%;
}
.p-joinus__text {
  margin-top: 68px;
  color: #f5f5f5;
  font-size: 24px;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-joinus__text {
    margin-top: 64px;
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .p-joinus__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.p-joinus__buttonWrap {
  width: 75%;
  margin: 0 auto;
}
.p-joinus__button {
  max-width: 210px;
  font-size: 15px;
  margin-top: 50px;
  display: block;
  text-align: left;
  height: 46px;
  border: 1px solid #fff;
  padding: 0 80px 0px 28px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: left;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  color: #fff;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  margin-left: auto;
}
.p-joinus__button svg {
  position: absolute;
  right: 16px;
  width: 14px;
  height: 14px;
  transition: all 0.3s;
}
.p-joinus__button:hover {
  background: #fff;
  color: #000;
  border-color: #000;
}
.p-joinus__button:hover svg path {
  fill: #000 !important;
}

.js-fixed-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  background-image: url("../images/pc/bg_black_01.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center top;
  z-index: -5;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .js-fixed-background {
    background-size: cover;
    background-position: center center;
  }
}

@keyframes kvScaleUp {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.p-kv {
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-kv {
    padding: 100px 0;
    background: #000;
    background-image: url(../images/pc/bg_black_01.png);
    background-size: 100% auto;
    background-attachment: fixed;
  }
}
@media screen and (min-width: 768px) {
  .p-kv {
    min-height: 500px;
    height: 100dvh;
  }
}
.p-kv__videoWrap {
  width: 100%;
  position: relative;
  opacity: 0;
  transform: scale(1.4);
  animation: kvScaleUp 1.2s ease-out 0.3s forwards;
}
@media screen and (max-width: 767px) {
  .p-kv__videoWrap {
    padding: 0 12px;
  }
}
.p-kv__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-kv__video {
    border-radius: 8px;
    overflow: hidden;
  }
}
.p-kv__video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-kv__video--pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .p-kv__video--sp {
    display: none;
  }
}
.p-kv__fallbackImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: none;
}
@media screen and (max-width: 767px) {
  .p-kv__fallbackImage {
    border-radius: 8px;
    overflow: hidden;
  }
}
@media screen and (max-width: 767px) {
  .p-kv__fallbackImage--pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .p-kv__fallbackImage--sp {
    display: none !important;
  }
}

.p-market {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-market {
    background-color: #000;
  }
}
@media screen and (max-width: 767px) {
  .p-market__container {
    padding: 80px 16px 40px 16px;
  }
}
.p-market__headingWrap {
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-market__headingWrap {
    display: flex;
    text-align: right;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: flex-end;
  }
}
.p-market__heading {
  color: #f5f5f5;
}
@media screen and (min-width: 768px) {
  .p-market__heading {
    max-width: 33%;
  }
}
.p-market__headingTitle {
  text-align: left;
  font-size: 50px;
}
@media screen and (max-width: 767px) {
  .p-market__headingTitle {
    font-size: 23px;
  }
}
.p-market__headingText {
  line-height: 2;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-market__headingText {
    margin-top: 24px;
    font-size: 17px;
  }
}
@media screen and (max-width: 767px) {
  .p-market__imageWrap {
    margin-top: 24px;
    transition-delay: 0.6s;
  }
}
@media screen and (min-width: 768px) {
  .p-market__imageWrap {
    max-width: 80%;
  }
}
.p-market .js-parallax-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .p-missionVision {
    background-image: url("../images/sp/bg_01.png");
  }
}
@media screen and (min-width: 768px) {
  .p-missionVision {
    background-image: url("../images/pc/bg_01.png");
    background-size: 100% auto;
    position: relative;
  }
}
.p-missionVision__container {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-missionVision__container {
    padding: 120px 16px 100px 16px;
    gap: 80px;
  }
}
@media screen and (min-width: 768px) {
  .p-missionVision__container {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 240px;
    padding-bottom: 240px;
    gap: 200px;
  }
}
.p-missionVision__missionText {
  padding-bottom: 108px;
  font-size: 140px;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .p-missionVision__missionText {
    padding-top: 32px;
    padding-bottom: 24px;
    font-size: 43px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 768px) {
  .p-missionVision__missionText p:nth-child(2) {
    transform: translateX(40%);
  }
  .p-missionVision__missionText--vision p:nth-child(2) {
    transform: translateX(32%);
  }
}
@media screen and (min-width: 768px) {
  .p-missionVision__content {
    max-width: 65%;
  }
}
@media screen and (max-width: 767px) {
  .p-missionVision__subtitle {
    font-size: 18px;
    line-height: 1.8;
  }
}
@media screen and (min-width: 768px) {
  .p-missionVision__subtitle {
    margin-top: 28px;
  }
}
.p-missionVision__text {
  margin-top: 8px;
  font-size: 17px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-missionVision__text {
    font-size: 16px;
  }
}
.p-missionVision .js-parallax-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/pc/bg_01.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-missionVision .js-parallax-background {
    background-image: url("../images/sp/bg_01.png");
  }
}

.p-newsDetail {
  background-image: url("../images/pc/bg_01.png");
  background-size: 100% auto;
}
@media screen and (max-width: 767px) {
  .p-newsDetail {
    background-image: url("../images/sp/bg_01.png");
  }
}
@media screen and (min-width: 768px) {
  .p-newsDetail {
    padding-top: 188px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .p-newsDetail__container {
    padding: 0 20px;
    padding: 120px 16px 40px 16px;
  }
}
@media screen and (min-width: 768px) {
  .p-newsDetail__container {
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 8%;
  }
}
.p-newsDetail__content {
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .p-newsDetail__content {
    padding: 24px 16px;
    border-radius: 8px;
  }
}
@media screen and (min-width: 768px) {
  .p-newsDetail__content {
    padding: 80px;
    border-radius: 10px;
    min-height: 70vh;
  }
}
@media screen and (max-width: 767px) {
  .p-newsDetail__content #content {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}
@media screen and (min-width: 768px) {
  .p-newsDetail__content #content {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }
}
.p-newsDetail__backLink {
  font-size: 14px;
  display: inline-block;
  color: #b0b0b0;
  background-image: url("../images/common/arrow_left_white.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 24px 24px;
  margin-bottom: 40px;
  padding-left: 30px;
}
.p-newsDetail__title {
  margin-top: 24px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-newsDetail__title {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  .p-newsDetail__title {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  .p-newsDetail__imageWrap {
    margin-top: 24px;
  }
}
@media screen and (min-width: 768px) {
  .p-newsDetail__imageWrap {
    width: 67%;
    margin: 48px auto 0;
  }
}
.p-newsDetail__text {
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-newsDetail__text {
    margin-top: 24px;
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) {
  .p-newsDetail__text {
    margin-top: 48px;
    font-size: 16px;
  }
}

.p-news {
  background-image: url("../images/pc/bg_01.png");
  background-size: 100% auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-news {
    padding-top: 120px;
    background-image: url("../images/sp/bg_01.png");
  }
}
@media screen and (min-width: 768px) {
  .p-news {
    padding-top: 240px;
    padding-bottom: 200px;
  }
}
@media screen and (max-width: 767px) {
  .p-news__container {
    padding: 0px 16px 40px 16px;
  }
}
@media screen and (min-width: 768px) {
  .p-news__container {
    max-width: 1200px;
    margin: 0 auto;
  }
}
.p-news__content {
  background-color: #f5f5f5;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .p-news__content {
    margin-top: 36px;
    border-radius: 8px;
    padding: 0 16px 56px;
  }
}
@media screen and (min-width: 768px) {
  .p-news__content {
    border-radius: 10px;
    padding: 48px;
    margin-top: 80px;
  }
}
.p-news__list li {
  border-bottom: 1px solid #5d5d5d;
}
.p-news__list li:last-child {
  border-bottom: 1px solid #5d5d5d;
}
.p-news__itemLink {
  display: block;
  padding: 40px 50px 40px 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-news__itemLink {
    padding: 24px 54px 24px 8px;
  }
}
.p-news__itemLink::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url("../images/common/arrow_right_black.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}
.p-news__title {
  font-size: 16px;
  margin-top: 32px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-news__title {
    margin-top: 16px;
  }
}
.p-news .js-parallax-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/pc/bg_01.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-news .js-parallax-background {
    background-image: url("../images/sp/bg_01.png");
  }
}

.p-privacyPolicy {
  padding: 240px 0 100px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-privacyPolicy {
    padding: 40px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-privacyPolicy__container {
    padding: 100px 16px 20px 16px;
  }
}
@media screen and (min-width: 768px) {
  .p-privacyPolicy__container {
    padding: 0 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
}
.p-privacyPolicy__content {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-privacyPolicy__content {
    margin-top: 40px;
  }
}
.p-privacyPolicy__intro {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-privacyPolicy__intro {
    margin-top: 14px;
    font-size: 14px;
  }
}
.p-privacyPolicy__section {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-privacyPolicy__section {
    margin-top: 30px;
  }
}
.p-privacyPolicy__sectionTitle {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .p-privacyPolicy__sectionTitle {
    font-size: 16px;
    margin-top: 12px;
  }
}
.p-privacyPolicy__sectionText {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: #000;
  margin-top: 14px;
}
@media screen and (max-width: 767px) {
  .p-privacyPolicy__sectionText {
    font-size: 14px;
  }
}
.p-privacyPolicy__updated {
  margin-top: 60px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-privacyPolicy__updated {
    margin-top: 40px;
  }
}
.p-privacyPolicy__updatedText {
  font-size: 14px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-privacyPolicy__updatedText {
    font-size: 13px;
  }
}

.p-statement {
  background-image: url("../images/pc/bg_01.png");
  background-size: 100% auto;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-statement {
    padding-top: 2cap;
    background-image: url("../images/sp/bg_01.png");
  }
}
@media screen and (min-width: 768px) {
  .p-statement {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .p-statement__container {
    padding: 40px 16px 76px 16px;
  }
}
@media screen and (min-width: 768px) {
  .p-statement__container {
    padding: 400px 0 225px;
  }
}
@media screen and (max-width: 767px) {
  .p-statement__enTitle {
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) {
  .p-statement__enTitle {
    font-size: 117px;
  }
}
.p-statement__jaTitle {
  font-weight: 900;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-statement__jaTitle {
    margin-top: 22px;
    font-size: 42px;
  }
}
@media screen and (min-width: 768px) {
  .p-statement__jaTitle {
    font-size: 120px;
    padding: 130px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-statement__desc {
    margin-top: 54px;
  }
}
@media screen and (min-width: 768px) {
  .p-statement__desc {
    gap: 24px;
  }
}
.p-statement__catch {
  font-size: 36px;
}
@media screen and (max-width: 767px) {
  .p-statement__catch {
    font-size: 22px;
    line-height: 1.8;
    letter-spacing: -0.2px;
  }
}
@media screen and (max-width: 767px) {
  .p-statement__textWrap {
    margin-top: 12px;
  }
}
@media screen and (min-width: 768px) {
  .p-statement__textWrap {
    max-width: 60%;
    margin: 24px auto 0;
  }
}
.p-statement__text {
  text-align: left;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-statement__text {
    font-size: 20px;
    padding: 0 52px;
  }
}
@media screen and (max-width: 767px) {
  .p-statement__text {
    font-size: 17px;
  }
}
.p-statement__buttonWrap {
  display: flex;
  justify-content: right;
}
@media screen and (min-width: 768px) {
  .p-statement__buttonWrap {
    padding-right: 52px;
  }
}
.p-statement__button {
  font-size: 15px;
  margin-top: 50px;
  display: block;
  text-align: left;
  height: 46px;
  border: 1px solid #000;
  padding: 0 80px 0px 28px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: left;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  color: #000;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.p-statement__button svg {
  position: absolute;
  right: 16px;
  width: 14px;
  height: 14px;
  transition: all 0.3s;
}
.p-statement__button:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}
.p-statement__button:hover svg path {
  fill: #fff !important;
}
.p-statement .js-parallax-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/pc/bg_01.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-statement .js-parallax-background {
    background-image: url("../images/sp/bg_01.png");
  }
}

@media screen and (max-width: 767px) {
  .p-strengths {
    padding-top: 64px;
  }
}
@media screen and (min-width: 768px) {
  .p-strengths {
    padding-top: 180px;
  }
}
.p-strengths__heading {
  color: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .p-strengths__heading {
    font-size: 23px;
  }
}
@media screen and (min-width: 768px) {
  .p-strengths__heading {
    font-size: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-strengths__imageWrap {
    margin-top: 32px;
  }
}
@media screen and (min-width: 768px) {
  .p-strengths__imageWrap {
    width: 67%;
    margin: 74px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .p-strengths__conent {
    margin-top: 84px;
  }
}
@media screen and (min-width: 768px) {
  .p-strengths__conent {
    margin-top: 224px;
  }
}
.p-strengths__conent dt {
  color: #f5f5f5;
  font-size: 42px;
  line-height: 1.5;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .p-strengths__conent dt {
    font-size: 24px;
  }
}
.p-strengths__conent dd {
  margin-top: 46px;
  color: #f5f5f5;
  font-size: 20px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-strengths__conent dd {
    margin-top: 24px;
    font-size: 17px;
  }
}

/**
 * Project: Thanks
 *
 * お問い合わせ完了ページ
 */
.p-thanks {
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-thanks__container {
    padding: 120px 16px 120px 16px;
  }
}
@media screen and (min-width: 768px) {
  .p-thanks__container {
    padding: 240px 0;
    max-width: 1200px;
    margin: 0 auto;
  }
}
.p-thanks__content {
  margin-top: 120px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-thanks__content {
    margin-top: 80px;
  }
}
.p-thanks__message {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-thanks__message {
    text-align: left;
    font-size: 16px;
    margin-bottom: 40px;
  }
}
.p-thanks__button {
  display: flex;
  justify-content: center;
}