@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500&display=swap");
/*
  * Reset CSS
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* list Remove default style */
ul,
ol {
  padding: 0;
  list-style: none;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  text-rendering: optimizespeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  -webkit-text-decoration-skip: ink;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* フォームリセット */
input,
button,
textarea,
select {
  font: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
}

/* stylelint-disable */
textarea {
  resize: vertical;
}

/* stylelint-enable */
input[type="radio"] {
  visibility: hidden;
}

input[type="submit"],
input[type="button"],
label,
button,
select {
  cursor: pointer;
}

/* =====================
 * Baseスタイル
===================== */
:root,
:root[theme="Default"] {
  --pc-max-width: 960px;
  --pc-l-max-width: 1200px;
  --f-family-main: "Noto Sans JP", sans-serif;
  --f-family-en: "Plus Jakarta Sans", sans-serif;
  --f-font-size: 16px;
  --f-2-font-size: 18px;
  --f-3-font-size: 20px;
  --f-4-font-size: 24px;
  --f-nav-font-size: 15px;
  --f-h2-font-size: 40px;
  --f-2-line-height: 2;
  --f-b-line-height: 1.5;
  --f-1-line-height: 1;
  --f-3-line-height: 1.75;
  --f-padding: 100px;
  --f2-padding: 110px;
  --f-radius: 15px;
  --f-h2-marginbottom: 60px;
  --f-letter-spacing: 0.06em;
  --f-weight-regular: 400;
  --f-weight-bold: 700;
  --c-base-black: #2e2e2e;
  --c-base-black2: #707070;
  --c-base-white: #fff;
  --c-base-gray: #f6f6f6;
  --c-base-red: #ff2b2b;
}
@media (max-width: 768px) {
  :root,
  :root[theme="Default"] {
    --f-font-size: 14px;
    --f-nav-font-size: 4vh;
    --f-fontmin-size: 10px;
    --f-h2-font-size: 24px;
    --f-4-font-size: 20px;
    --f-expe-font-size: 24px;
    --f-nav-font-size: 12px;
    --f-padding: 50px;
    --f2-padding: 55px;
    --f-h2-marginbottom: 40px;
    --f-radius: 7.5px;
  }
}

html {
  /* ----------------------------
  * リキッドレイアウト rootのfont-sizeを可変にして、単位をremで指定することでレイアウトを可変にする
    // 計算式参考サイト：https://lpeg.info/html/css_calc_font.html
    // font-size: calc([最小値px] + ([最大値] - [最小値]) * ((100vw - [最小画面幅px]) / ([最大画面幅] - [最小画面幅])));
    // clampと併用して上限下限を設定すること。しないと無限に変化し続ける
  * ---------------------------- */
  font-size: 16px;
  color: var(--c-base-black);
}
@media (max-width: 1140px) {
  html {
    font-size: clamp(12px, 12px + 4 * (100vw - 768px) / 372, 16px);
  }
}
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: clamp(12px, 4.2666666667vw, 16px);
  }
}

body {
  font-family: var(--f-family-main);
  font-size: var(--f-font-size);
  line-height: var(--f-b-line-height);
  overflow-wrap: break-word;
  word-break: break-all;
}

img {
  height: auto;
  vertical-align: top;
}

a {
  display: inline-block;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s;
}

button {
  transition: 0.3s;
}
button:hover,
button:focus {
  opacity: 0.7;
}

main {
  background-color: rgb(255, 255, 255);
}
main.l-no2 {
  padding-top: 4.5625rem;
}

section {
  width: 100%;
  position: relative;
}
section div.section__container {
  padding: var(--f-padding) 0;
  max-width: var(--pc-max-width);
  margin: 0 auto;
}
@media (max-width: 1200px) {
  section div.section__container {
    padding: var(--f-padding) 1.25rem;
  }
}
section h2 {
  font-family: "franklin-gothic-atf", sans-serif;
  font-weight: 500;
  font-style: normal;
  transform-origin: bottom left;
  transform: scale(0.85, 1);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: var(--f-h2-font-size);
  line-height: var(--f-1-line-height);
  margin-bottom: var(--f-h2-marginbottom);
  display: block;
}

.l-footer:not(.l-topfooter) {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 23.6vw;
  background-color: #fff;
}
@media (max-width: 768px) {
  .l-footer:not(.l-topfooter) {
    margin-top: 65vw;
  }
}
.l-footer:not(.l-topfooter):before {
  content: "";
  display: block;
  width: 100%;
  height: 65vw;
  bottom: 0;
  left: 0;
  background: #000 url(../images/common/bg-before.jpg) no-repeat top
    center/cover;
  position: fixed;
  z-index: -1;
}
@media (max-width: 768px) {
  .l-footer:not(.l-topfooter):before {
    height: 100vh;
  }
}

.c-pagetop {
  width: 100%;
  position: relative;
  background-color: #fff;
}
.c-pagetop a {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.08);
  height: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-pagetop a:hover {
  background-color: #bcbbbb;
  transition: all 0.8s;
}
@media (max-width: 768px) {
  .c-pagetop a {
    height: 3.75rem;
  }
}
.c-pagetop a svg {
  transform: scale(0.65);
}
@media (max-width: 768px) {
  .c-pagetop a svg {
    transform: scale(0.6);
  }
}

.l-footer__contact {
  font-size: var(--f-4-font-size);
  width: 100%;
}
.l-footer__contact p {
  display: flex;
  justify-content: center;
  font-weight: 500;
  align-items: center;
  padding: 5.625rem 0 0;
  font-size: var(--f-3-font-size);
}
@media (max-width: 768px) {
  .l-footer__contact p {
    flex-direction: column;
    padding: 2.8125rem 0 0;
  }
}
.l-footer__contact p a {
  font-size: var(--f-2-font-size);
  font-family: "franklin-gothic-atf", sans-serif;
  font-weight: 500;
  font-style: normal;
  transform-origin: bottom left;
  transform: scale(0.85, 1);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform-origin: center center;
  width: 23.75rem;
  height: 3.875rem;
  border: 1px solid var(--c-base-black2);
  border-radius: 0.3125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1.5%;
  overflow: hidden;
}
.l-footer__contact p a:before {
  content: "";
  display: block;
  width: 0rem;
  height: 100%;
  position: absolute;
  background-color: var(--c-base-black);
  top: 0;
  left: 0;
  transition: all 0.3s;
}
.l-footer__contact p a:hover {
  color: #fff;
  transition: all 0.2s;
  transform: scale(1.05);
}
.l-footer__contact p a:hover:before {
  width: 100%;
  transition: all 0.4s;
  z-index: -1;
}
@media (max-width: 768px) {
  .l-footer__contact p a {
    margin-left: 0;
    margin-top: 1.25rem;
  }
}

.l-footer__container {
  padding: 4.375rem 0 0;
  width: 100%;
  max-width: var(--pc-l-max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}
@media (max-width: 768px) {
  .l-footer__container {
    width: 100%;
    flex-direction: column;
    padding: 2.1875rem 0 0;
  }
}
.l-footer__container .l-footer__left {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .l-footer__container .l-footer__left {
    width: 100%;
    flex-direction: column;
  }
}
.l-footer__container .l-footer__left .l-footer__logo {
  width: 5.625rem;
  margin-right: 1.875rem;
}
@media (max-width: 768px) {
  .l-footer__container .l-footer__left .l-footer__logo {
    margin-right: 0;
  }
}
.l-footer__container .l-footer__left .l-footer__item h2 {
  margin-bottom: 1.5rem;
  font-size: var(--f-2-font-size);
}
@media (max-width: 768px) {
  .l-footer__container .l-footer__left .l-footer__item h2 {
    margin-top: 0.75rem;
    text-align: center;
  }
}
@media (max-width: 1200px) {
  .l-footer__container .l-footer__left .l-footer__item p {
    font-size: 12px;
  }
}
.l-footer__container .l-footer__left .l-footer__item p:not(:last-of-type) {
  margin-bottom: 0.625rem;
}
.l-footer__container .l-footer__right {
  padding-top: 2.8125rem;
}
.l-footer__container .l-footer__right .footernav {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .l-footer__container .l-footer__right .footernav {
    align-items: center;
  }
}
.l-footer__container .l-footer__right .footernav ul {
  display: flex;
  margin-bottom: 1.875rem;
}
@media (max-width: 768px) {
  .l-footer__container .l-footer__right .footernav ul {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin: 0 auto 1.875rem;
  }
}
.l-footer__container .l-footer__right .footernav ul:nth-of-type(1) li {
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .l-footer__container .l-footer__right .footernav ul:nth-of-type(1) li {
    margin: 0.4375rem 0.625rem;
  }
}
.l-footer__container
  .l-footer__right
  .footernav
  ul:nth-of-type(1)
  li:last-of-type {
  margin-right: 0;
}
.l-footer__container .l-footer__right .footernav ul:nth-of-type(1) li a {
  font-family: "franklin-gothic-atf", sans-serif;
  font-weight: 500;
  font-style: normal;
  transform-origin: bottom left;
  transform: scale(0.85, 1);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform-origin: center center;
}
.l-footer__container .l-footer__right .footernav ul:nth-of-type(1) li a:after {
  content: "";
  display: inline-block;
  height: 2px;
  width: 100%;
  margin: auto;
  position: absolute;
  bottom: -4px;
  left: -1.2px;
  right: 0;
  background-color: var(--c-base-white);
  transform: scale(0, 1);
  transform-origin: left bottom;
  transition: all 0.5s;
  background-color: var(--c-base-black);
}
@media (max-width: 768px) {
  .l-footer__container
    .l-footer__right
    .footernav
    ul:nth-of-type(1)
    li
    a:after {
    content: none;
  }
}
.l-footer__container
  .l-footer__right
  .footernav
  ul:nth-of-type(1)
  li
  a:hover:after {
  transform: scale(1, 1);
}
.l-footer__container .l-footer__right .footernav ul:nth-of-type(2) li {
  width: 3.375rem;
  height: 3.375rem;
  border-radius: 0.3125rem;
  border: 1px solid #858585;
  margin-right: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-footer__container .l-footer__right .footernav ul:nth-of-type(2) li:hover {
  opacity: 0.6;
}
.l-footer__container
  .l-footer__right
  .footernav
  ul:nth-of-type(2)
  li:last-of-type {
  border: none;
  width: auto;
}
.l-footer__container
  .l-footer__right
  .footernav
  ul:nth-of-type(2)
  li:last-of-type
  a {
  display: flex;
  align-items: center;
}
.l-footer__container
  .l-footer__right
  .footernav
  ul:nth-of-type(2)
  li:last-of-type
  a
  svg {
  margin: auto;
}
.l-footer__container
  .l-footer__right
  .footernav
  ul:nth-of-type(2)
  li:nth-of-type(2)
  img {
  height: 1.25rem;
}
.l-footer__container .l-footer__right .footernav ul:nth-of-type(2) li img {
  display: block;
  width: auto;
  height: 1.5625rem;
  margin: auto;
}

.l-footer__copy {
  font-size: max(14px, 0.875rem);
  text-align: center;
  padding: 3.125rem 0 1rem;
  width: 100%;
  color: var(--c-base-black);
}

.l-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  transition: 0.3s;
  height: 7.6875rem;
  padding: 0 2.5rem;
  z-index: 4;
}
@media (max-width: 1200px) {
  .l-header {
    top: 0;
    width: 100%;
    padding: 1.5625rem;
  }
}

.l-header__container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-header__container .l-header__logo {
  position: relative;
  z-index: 101;
  display: flex;
  align-self: flex-start;
  height: 100%;
  width: 5.875rem;
}
@media (max-width: 768px) {
  .l-header__container .l-header__logo {
    width: 3.75rem;
    height: auto;
  }
}
.l-header__container .l-header__logo a {
  padding: 0;
  display: flex;
  align-items: center;
}
.l-header__container .l-header__logo a img:first-of-type {
  margin: auto;
  display: inline;
}
.l-header__container .l-header__logo a img:last-of-type {
  display: none;
}
@media (max-width: 768px) {
  .l-header__container .globalnav {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-base-white);
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    opacity: hidden;
  }
}
.l-header__container .globalnav > ul {
  display: flex;
  height: 100%;
  align-items: center;
}
@media (max-width: 768px) {
  .l-header__container .globalnav > ul {
    flex-direction: column;
    justify-content: center;
  }
}
.l-header__container .globalnav > ul li {
  line-height: var(--f3-line-height);
  margin-right: 2.5rem;
}
@media (max-width: 768px) {
  .l-header__container .globalnav > ul li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 1.25rem;
    text-align: center;
  }
}
.l-header__container .globalnav > ul li:last-of-type {
  margin-right: 0;
  margin-bottom: 0;
}
.l-header__container .globalnav > ul li a {
  width: 100%;
  position: relative;
  color: var(--c-base-white);
  font-family: "franklin-gothic-atf", sans-serif;
  font-weight: 500;
  font-style: normal;
  transform-origin: bottom left;
  transform: scale(0.85, 1);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 101;
}
@media (max-width: 768px) {
  .l-header__container .globalnav > ul li a {
    padding: 0.625rem;
    margin: 0;
    font-family: "franklin-gothic-atf", sans-serif;
    font-weight: 500;
    font-style: normal;
    transform-origin: bottom left;
    transform: scale(0.85, 1);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transform-origin: center center;
    font-size: 7.5vw;
  }
}
.l-header__container .globalnav > ul li a:after {
  content: "";
  display: inline-block;
  height: 2px;
  width: 100%;
  margin: auto;
  position: absolute;
  bottom: -4px;
  left: -1.2px;
  right: 0;
  background-color: var(--c-base-white);
  transform: scale(0, 1);
  transform-origin: left bottom;
  transition: all 0.5s;
}
@media (max-width: 768px) {
  .l-header__container .globalnav > ul li a:after {
    content: none;
  }
}
.l-header__container .globalnav > ul li a:hover:after {
  transform: scale(1, 1);
}
.l-header__container .humburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.5s, transform 0.55s;
  cursor: pointer;
  border-radius: 50%;
  z-index: 1000;
  width: 40px;
  height: 40px;
}
@media (max-width: 768px) {
  .l-header__container .humburger {
    display: flex;
    transform: scale(0.8);
  }
}
.l-header__container .humburger span {
  background-color: var(--c-base-black);
  width: 100%;
  height: 2px;
  display: block;
  margin-bottom: 10px;
  transition: all 0.5s;
}
@media (max-width: 768px) {
  .l-header__container .humburger span {
    background-color: var(--c-base-white);
  }
}
.l-header__container .humburger span:last-of-type {
  margin-bottom: 0;
}

.is-scroll .humburger:before {
  content: "";
  width: 3.75rem;
  height: 3.75rem;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0;
  display: block;
  position: absolute;
  z-index: -1;
}
.is-scroll .humburger span {
  background-color: var(--c-base-black);
}
.is-scroll .globalnav a {
  color: var(--c-base-black) !important;
}
.is-scroll .globalnav a:after {
  background-color: var(--c-base-black) !important;
}
.is-scroll .l-header__logo a img:first-of-type {
  display: none;
}
.is-scroll .l-header__logo a img:last-of-type {
  margin: auto;
  display: inline;
}
.is-scroll.l-header {
  background-color: rgba(255, 255, 255, 0.8);
  height: 6.25rem;
}
@media (max-width: 768px) {
  .is-scroll.l-header {
    background-color: transparent;
  }
}
.is-scroll.l-header .c-sitelogo img {
  position: relative;
  bottom: 0.21875rem;
}

body.nav-open .l-header {
  z-index: 105;
}
body.nav-open .l-header .globalnav {
  opacity: 1;
  visibility: visible;
}
body.nav-open .l-header .l-header__logo > a img:first-of-type {
  margin: auto;
  display: inline;
}
body.nav-open .l-header .l-header__logo > a img:last-of-type {
  display: none;
}

body.nav-open .humburger:before {
  content: none;
}
body.nav-open .humburger span {
  background-color: var(--c-base-white) !important;
}
body.nav-open .humburger span:nth-of-type(1) {
  transform: translate(0, 5px) rotate(32deg);
}
body.nav-open .humburger span:nth-of-type(2) {
  display: none;
}
body.nav-open .humburger span:nth-of-type(3) {
  transform: translateY(-6px) rotate(-32deg);
}

body.nav-open .globalnav > ul {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s, transform 0.55s;
  border-radius: 0 0 10px 10px;
  z-index: 100;
}
body.nav-open .globalnav > ul li a {
  color: var(--c-base-white) !important;
}

.l-header.l-no2-header .l-header__logo a img:first-of-type {
  display: none;
}
.l-header.l-no2-header .l-header__logo a img:last-of-type {
  margin: auto;
  display: inline;
}
.l-header.l-no2-header .humburger span {
  background-color: var(--c-base-black);
}
.l-header.l-no2-header .globalnav a {
  color: var(--c-base-black);
}
.l-header.l-no2-header .globalnav a:after {
  background-color: var(--c-base-black);
}

.c-more__link a {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  margin: 4.375rem auto 2.5rem;
  transition: all 0.8s;
}
.c-more__link a:after {
  content: "■";
  color: var(--c-base-red);
  display: block;
  position: absolute;
  right: 7.5rem;
  top: 0;
  bottom: 0;
  margin: auto;
}
.c-more__link a:hover {
  color: var(--c-base-red);
  transition: all 0.8s;
}
.c-more__link a:hover span:first-of-type {
  background-color: var(--c-base-white);
}
.c-more__link a:hover span:first-of-type:before {
  transform: scale(1, 1);
  transform-origin: top left;
  transition: all 0.8s;
  height: 0.0625rem;
  background-color: var(--c-base-red);
}
.c-more__link a:hover:after {
  opacity: 0.7;
}
.c-more__link a span:first-of-type {
  display: flex;
  width: calc(100% - 11.125rem);
  margin-right: 3.75rem;
  height: 0.0625rem;
  background-color: var(--c-base-black);
  transform: scale(1, 1);
  position: relative;
}
@media (max-width: 768px) {
  .c-more__link a span:first-of-type {
    width: calc(100% - 10.5rem);
  }
}
.c-more__link a span:first-of-type:before {
  content: "";
  width: 100%;
  height: 0.0625rem;
  position: absolute;
  background-color: var(--c-base-black);
  transform: scale(0, 1);
  transform-origin: top left;
  display: block;
  z-index: 2;
}
.c-more__link a span:last-of-type {
  font-size: var(--f-2-font-size);
  font-family: "franklin-gothic-atf", sans-serif;
  font-weight: 500;
  font-style: normal;
  transform-origin: bottom left;
  transform: scale(0.85, 1);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform-origin: center right;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-align: right;
}
@media (max-width: 768px) {
  .c-more__link a span:last-of-type {
    font-size: 14px;
  }
}

.c-txt-center {
  text-align: center;
}

.c-txt-left {
  text-align: left !important;
}

.pager {
  padding: 2.5rem 0 0;
  margin-top: 2.5rem;
  border-top: 1px solid var(--c-base-black);
}
.pager ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pager ul li {
  width: 1.875rem;
  height: 1.875rem;
  margin: 0 0.625rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pager ul li a {
  background-color: transparent;
  color: var(--c-base-black);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.pager ul li a.page-numbers.next,
.pager ul li a.page-numbers.prev {
  background: url(../images/common/icon-next.svg) no-repeat center center/30%;
}
.pager ul li a.page-numbers.prev {
  background: url(../images/common/icon-next.svg) no-repeat center center/30%;
  transform: rotate(180deg);
}
.pager ul li a:hover,
.pager ul li .current {
  background-color: var(--c-base-black);
  color: var(--c-base-white);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 0.3125rem;
}

main.l-main {
  position: relative;
}
main.l-main a {
  position: relative;
  z-index: 1;
}

.js-animation {
  position: relative !important;
  top: 30px !important;
  opacity: 0 !important;
}

.js-animation.is-active {
  top: 0 !important;
  transition: all 0.3s 0.1s;
  opacity: 1 !important;
}

.js-animation.js-animation-delay1.is-active {
  transition: all 0.3s 0.3s;
}

.js-animation.js-animation-delay2.is-active {
  transition: all 0.3s 0.5s;
}

.js-animation.js-animation-delay3.is-active {
  transition: all 0.3s 0.7s;
}

#splash {
  /*fixedで全面に固定*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: #0a0a0a;
  text-align: center;
  color: #535353;
  font-family: var(--f-family-en);
  top: 0;
  left: 0;
  z-index: 3000;
}
#splash.c-in {
  color: #535353;
  transition: all 0.6s 0.02s ease-out;
  opacity: 0;
}
#splash.c-in1 {
  position: absolute;
  width: 0;
  height: 100vh;
  top: 0;
  right: 0;
  opacity: 1;
  display: block;
  background-color: rgb(254, 254, 254);
  z-index: 5000;
  transition: all 0.6s 0.02s ease-out;
}

.l-top section.p-fv {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 98vh;
  background-color: rgba(0, 0, 0, 0.7);
}
.l-top section.p-fv .p-bg-fv {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
@media (max-width: 992px) {
  .l-top section.p-fv .p-bg-fv {
    align-items: flex-start;
  }
}
.l-top section.p-fv .p-bg-fv h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--c-base-white);
  text-align: center;
  position: relative;
  z-index: 3;
}
@media (max-width: 992px) {
  .l-top section.p-fv .p-bg-fv h1 {
    transform: scale(0.7, 0.7);
    margin-top: 10%;
  }
}
@media (max-width: 768px) {
  .l-top section.p-fv .p-bg-fv h1 {
    margin-top: 6vh;
    transform: scale(0.6);
  }
}
@media (max-width: 320px) {
  .l-top section.p-fv .p-bg-fv h1 {
    transform: scale(0.5);
  }
}
.l-top section.p-fv .p-bg-fv h1 sub {
  font-size: 42px;
  font-weight: 300;
}
@media (max-width: 992px) {
  .l-top section.p-fv .p-bg-fv h1 sub {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  .l-top section.p-fv .p-bg-fv h1 sub {
    transform: scale(0.9);
  }
}
.l-top section.p-fv .p-bg-fv h1 sub strong {
  font-weight: 700;
}
.l-top section.p-fv .p-bg-fv h1 > span:first-of-type {
  position: absolute;
  right: 8.125rem;
  top: -1.25rem;
  width: auto;
  overflow: hidden;
  height: 30px;
}
.l-top section.p-fv .p-bg-fv h1 > span:first-of-type img {
  width: 55px;
  height: auto;
  transform: translateY(50px) rotate(10deg);
  opacity: 0;
}
.l-top section.p-fv .p-bg-fv h1 > span:last-of-type {
  font-family: "franklin-gothic-atf", sans-serif;
  font-weight: 600;
  font-style: normal;
  transform-origin: bottom left;
  transform: scale(0.85, 1);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform-origin: center center;
  letter-spacing: 0.15em;
  font-size: 45px;
}
@media (max-width: 992px) {
  .l-top section.p-fv .p-bg-fv h1 > span:last-of-type {
    font-size: 42px;
    white-space: nowrap;
  }
}
.l-top section.p-fv .p-bg-fv h3 {
  margin: auto;
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  width: 240px;
  height: 240px;
}
@media (max-width: 768px) {
  .l-top section.p-fv .p-bg-fv h3 {
    width: 40vw;
    height: 40vw;
    top: unset;
    bottom: 11vh;
  }
}
.l-top section.p-fv .p-bg-fv h3 a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.l-top section.p-fv .p-bg-fv h3 svg {
  margin: 0.5rem auto;
  position: absolute;
}
.l-top section.p-fv .p-bg-fv h3:first-of-type {
  left: 10%;
}
@media (max-width: 1200px) {
  .l-top section.p-fv .p-bg-fv h3:first-of-type {
    left: 4%;
  }
}
@media (max-width: 992px) {
  .l-top section.p-fv .p-bg-fv h3:first-of-type {
    left: 8%;
  }
}
.l-top section.p-fv .p-bg-fv h3:first-of-type svg:first-of-type {
  top: 4.375rem;
  width: 143px;
  height: 64px;
}
@media (max-width: 1200px) {
  .l-top section.p-fv .p-bg-fv h3:first-of-type svg:first-of-type {
    transform: scale(0.7);
  }
}
@media (max-width: 768px) {
  .l-top section.p-fv .p-bg-fv h3:first-of-type svg:first-of-type {
    top: 5vw;
    transform: scale(0.6);
  }
}
.l-top section.p-fv .p-bg-fv h3:first-of-type svg:nth-of-type(2) {
  width: 125px;
  bottom: 3.4375rem;
}
@media (max-width: 768px) {
  .l-top section.p-fv .p-bg-fv h3:first-of-type svg:nth-of-type(2) {
    bottom: 6vh;
  }
}
.l-top section.p-fv .p-bg-fv h3:last-of-type {
  right: 10%;
}
@media (max-width: 1200px) {
  .l-top section.p-fv .p-bg-fv h3:last-of-type {
    right: 4%;
  }
}
@media (max-width: 992px) {
  .l-top section.p-fv .p-bg-fv h3:last-of-type {
    right: 8%;
  }
}
.l-top section.p-fv .p-bg-fv h3:last-of-type svg:first-of-type {
  width: 161px;
  top: 5.3125rem;
}
@media (max-width: 1200px) {
  .l-top section.p-fv .p-bg-fv h3:last-of-type svg:first-of-type {
    transform: scale(0.7);
    transform-origin: center;
    top: 4.0625rem;
  }
}
@media (max-width: 768px) {
  .l-top section.p-fv .p-bg-fv h3:last-of-type svg:first-of-type {
    top: 7vw;
    transform: scale(0.6);
  }
}
@media (max-width: 450px) {
  .l-top section.p-fv .p-bg-fv h3:last-of-type svg:first-of-type {
    top: 11vw;
    transform: scale(0.6);
  }
}
.l-top section.p-fv .p-bg-fv h3:last-of-type svg:nth-of-type(2) {
  width: 125px;
  bottom: 3.4375rem;
}
@media (max-width: 768px) {
  .l-top section.p-fv .p-bg-fv h3:last-of-type svg:nth-of-type(2) {
    bottom: 6vh;
  }
}
.l-top section.p-fv .p-bg-fv h3 svg:nth-of-type(3) {
  margin: 0;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.l-top section.p-fv .p-bg-fv h3 svg:nth-of-type(3) .circle-animation,
.l-top section.p-fv .p-bg-fv h3 svg:nth-of-type(3) #circle-animation1,
.l-top section.p-fv .p-bg-fv h3 svg:nth-of-type(3) #circle-animation2 {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  transform-origin: 50% 50%;
  fill: transparent;
}

.l-top section.p-fv h1 svg {
  margin: 3.125rem auto 1.25rem;
}
@media (max-width: 768px) {
  .l-top section.p-fv h1 svg {
    margin: 1.25rem auto 0.625rem;
    transform: scale(0.8);
  }
}
.l-top section.p-fv h1 svg path {
  fill-opacity: 0; /*最初は透過0で見えない状態*/
  transition: fill-opacity 2.5s; /*カラーがつく際のアニメーション0.5秒で変化*/
  fill: none; /*塗りがない状態*/
  stroke: var(--c-base-white); /*線の色*/
}
.l-top section.p-fv h1 svg.done path {
  fill: var(--c-base-white); /*塗りの色*/
  fill-opacity: 1; /*透過1で見える状態*/
  stroke: none; /*線の色なし*/
}
.l-top section.p-fv h1 > span {
  height: 60px;
  width: 100%;
  overflow: hidden;
}
.l-top section.p-fv h1 > span span {
  opacity: 0;
  transform: translateY(200px);
  display: block;
}
.l-top section.p-fv h1 > sub span {
  opacity: 0;
  transition: all 1s 1s;
  transform: translateY(50px);
  display: block;
}
.l-top section.p-fv h3.c-link-fvh3-1 {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s 3s;
}
.l-top section.p-fv h3.c-link-fvh3-2 {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s 3s;
}
.l-top section.p-fv .p-kv-slide {
  position: absolute;
  top: 0;
  left: -10%;
  z-index: 2;
  width: 120%;
  display: flex;
  background-color: var(--c-base-black);
}
.l-top section.p-fv .p-kv-slide:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
  opacity: 0.7;
  top: 0;
  left: 0;
  background-color: #000;
}
.l-top section.p-fv .p-kv-slide .p-kv-slide__item {
  display: flex;
  flex-direction: column;
  width: 25%;
}
@media (max-width: 768px) {
  .l-top section.p-fv .p-kv-slide .p-kv-slide__item {
    width: 33.33%;
  }
}
.l-top section.p-fv .p-kv-slide .p-kv-slide__item ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 0;
}
.l-top section.p-fv .p-kv-slide .p-kv-slide__item ul:first-child {
  animation: slide1 60s -30s linear infinite;
}
.l-top section.p-fv .p-kv-slide .p-kv-slide__item ul:last-child {
  animation: slide2 60s linear infinite;
}
.l-top section.p-fv .p-kv-slide .p-kv-slide__item ul li {
  padding: 0.2vw;
}

body.c-start .l-top section.p-fv h1 > span span {
  opacity: 1;
  transform: translateY(0);
  transition: all 1s 2s;
}
@media (max-width: 768px) {
  body.c-start .l-top section.p-fv h1 > span span {
    transform: scale(0.88) translateY(-10px);
  }
}
body.c-start .l-top section.p-fv h1 > span:first-of-type img {
  transition: all 1s 3s;
  opacity: 0.8;
  transform: translateY(0) rotate(10deg);
}
body.c-start .l-top section.p-fv h1 > sub span {
  opacity: 1;
  transform: translateY(0);
  transition: all 1s 2s;
}
body.c-start .l-top section.p-fv h3.c-link-fvh3-1,
body.c-start .l-top section.p-fv h3.c-link-fvh3-2 {
  opacity: 1;
  transform: translateY(0);
}
body.c-start
  .l-top
  section.p-fv
  h3.c-link-fvh3-1
  a:hover
  svg:nth-of-type(3)
  .circle-animation-hover,
body.c-start
  .l-top
  section.p-fv
  h3.c-link-fvh3-2
  a:hover
  svg:nth-of-type(3)
  .circle-animation-hover {
  animation: dash 1s ease-in-out forwards;
}

@keyframes dash {
  0% {
    stroke-dasharray: 748;
    stroke-dashoffset: 748;
  }
  to {
    stroke-dashoffset: 0;
    stroke-dasharray: 748;
  }
}
@keyframes slide1 {
  0% {
    transform: translateY(100%);
  }
  to {
    transform: translateY(-100%);
  }
}
@keyframes slide2 {
  0% {
    transform: translateY(0);
  }
  to {
    transform: translateY(-200%);
  }
}
.l-no2 section.p-fv {
  padding-top: 7.5rem;
  height: 16.2465vw;
  margin-bottom: 7.5rem;
  background-color: rgb(255, 255, 255);
}
@media (max-width: 1400px) {
  .l-no2 section.p-fv {
    height: 28vw;
  }
}
@media (max-width: 768px) {
  .l-no2 section.p-fv {
    padding-top: 5rem;
    height: 50vw;
    margin-bottom: 1.25rem;
  }
}
.l-no2 section.p-fv .p-bg-fv {
  height: 100%;
  max-width: var(--pc-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1200px) {
  .l-no2 section.p-fv .p-bg-fv {
    padding: var(--f-padding) 1.25rem;
  }
}
@media (max-width: 768px) {
  .l-no2 section.p-fv .p-bg-fv {
    margin-left: 15%;
    justify-content: flex-start;
  }
}
.l-no2 section.p-fv .p-bg-fv .p-title {
  margin: auto 0;
  position: relative;
  min-width: 36.75rem;
}
@media (max-width: 768px) {
  .l-no2 section.p-fv .p-bg-fv .p-title {
    position: static;
    min-width: unset;
  }
}
.l-no2 section.p-fv .p-bg-fv .p-title > span {
  overflow: hidden;
  height: 120px;
  display: block;
}
@media (max-width: 768px) {
  .l-no2 section.p-fv .p-bg-fv .p-title > span {
    height: 40px;
    margin-top: -5rem;
  }
}
.l-no2 section.p-fv .p-bg-fv .p-title > span span {
  font-family: "franklin-gothic-atf", sans-serif;
  font-weight: 600;
  font-style: normal;
  transform-origin: bottom left;
  transform: scale(0.85, 1);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 64px;
  font-stretch: 50%;
  display: block;
  transform: translateY(100px) scale(0.85, 1);
  opacity: 0;
}
@media (max-width: 1200px) {
  .l-no2 section.p-fv .p-bg-fv .p-title > span span {
    font-size: 40px;
    margin-left: 10%;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .l-no2 section.p-fv .p-bg-fv .p-title > span span {
    font-size: 28px;
    margin-left: 0;
    width: 108%;
  }
}
.l-no2 section.p-fv .p-bg-fv .p-title > span span.is-active {
  transform: translateY(0) scale(0.85, 1);
  transition: all 0.75s;
  opacity: 1;
}
.l-no2 section.p-fv .p-bg-fv .p-title:before {
  content: "";
  margin: auto;
  position: absolute;
  top: -4.375rem;
  bottom: 0;
  left: -10rem;
  display: block;
  opacity: 0.05;
  width: 880px;
  height: 400px;
  transform: scale(1.2, 1);
  background: url(../images/common/logo-header-bk2.svg) no-repeat left
    top/contain;
}
@media (max-width: 1400px) {
  .l-no2 section.p-fv .p-bg-fv .p-title:before {
    left: -140px;
    width: 35vw;
    height: 26vw;
  }
}
@media (max-width: 768px) {
  .l-no2 section.p-fv .p-bg-fv .p-title:before {
    left: 8vw;
    width: 80vw;
    height: 46vw;
  }
}
.l-no2 .op_wrap {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}
.l-no2 .op_logo {
  width: 27.8125rem;
  opacity: 0.6;
  position: absolute;
  top: 90%;
  left: 75%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1200px) {
  .l-no2 .op_logo {
    top: 70%;
  }
}
@media (max-width: 768px) {
  .l-no2 .op_logo {
    width: 70vw;
    left: 60vw;
    top: 60%;
  }
}
.l-no2 .op_logo svg,
.l-no2 .op_logo image {
  display: block;
  width: 100%;
  height: auto;
}
.l-no2 .cls-1,
.l-no2 .cls-2 {
  fill: none;
}
.l-no2 .cls-1 {
  fill: #000;
}
.l-no2 .cls-2 {
  fill: none;
}
.l-no2 .cls-1 {
  stroke: #ffffff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 9px;
}

section.p-news div.section__container ul.p-news__list {
  margin-bottom: 5.9375rem;
}
@media (max-width: 768px) {
  section.p-news div.section__container ul.p-news__list {
    margin-bottom: 2.8125rem;
  }
}
section.p-news div.section__container ul.p-news__list li a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  padding: 1.5625rem 2.5rem;
  margin-top: 1.25rem;
  line-height: var(--f2-line-height);
  background-color: var(--c-base-gray);
  border-radius: 0.625rem;
  overflow: hidden;
  z-index: 0;
  transition: all 0.2s;
}
section.p-news div.section__container ul.p-news__list li a:hover {
  transform: scale(1.04);
  background-color: #e0e0e0;
  transition: all 0.2s;
}
@media (max-width: 768px) {
  section.p-news div.section__container ul.p-news__list li a {
    padding: 1.5625rem 1.25rem;
    border-radius: 0.3125rem;
  }
}
section.p-news div.section__container ul.p-news__list li a .c-newstitle {
  overflow: hidden;
}
section.p-news .c-date {
  color: var(--c-base-black);
  font-weight: bold;
}
section.p-news .c-category {
  display: block;
  padding: 0.5rem 0.3125rem 0.625rem;
  width: 10rem;
  margin: auto 2.5rem auto 2.5rem;
  background-color: var(--c-base-black);
  color: var(--c-base-white);
  text-align: center;
  font-weight: bold;
  border-radius: 0.3125rem;
  font-size: var(--f-nav-font-size);
  overflow: hidden;
  line-height: 1;
}
@media (max-width: 768px) {
  section.p-news .c-category {
    width: auto;
    margin: auto 0.625rem;
    padding: 0.3125rem 0.3125rem 0.375rem;
  }
}

.l-no2 .p-news {
  margin-top: -6.25rem;
}

.p-news.p-news-detail .news-header__container h1 {
  font-size: var(--f-4-font-size);
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 3.125rem;
  border-bottom: 1px solid var(--c-base-black);
  margin-bottom: 3.125rem;
}
@media (max-width: 768px) {
  .p-news.p-news-detail .news-header__container h1 {
    padding-bottom: 1.875rem;
    margin-bottom: 1.875rem;
  }
}
.p-news.p-news-detail .news-header__container h1 strong {
  display: block;
}
.p-news.p-news-detail .p-news-item__container a {
  opacity: 0.5;
  text-decoration: underline;
}
.p-news.p-news-detail .p-news-item__container a:hover {
  text-decoration: none;
  opacity: 1;
  color: var(--c-base-red);
}
.p-news.p-news-detail .p-news-item__container p {
  margin: 1.25rem 0;
}
.p-news.p-news-detail .p-news-item__container h2 {
  font-size: var(--f-4-font-size);
  margin: 2.5rem 0 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--c-base-black);
  font-weight: bold;
  width: 100%;
  transform: scale(1);
  font-family: var(--f-family-main);
}
.p-news.p-news-detail .p-news-item__container h3 {
  font-size: var(--f-3-font-size);
  margin: 2.5rem 0;
}

.p-totop__container {
  padding-bottom: 6.25rem;
}
@media (max-width: 768px) {
  .p-totop__container {
    padding-bottom: 3.125rem;
  }
}
.p-totop__container a.c-learn-more {
  display: block;
  width: 320px;
  height: 58px;
  border-radius: 5px;
  background-color: var(--c-base-black);
  color: var(--c-base-white);
  font-size: var(--f-nav-font-size);
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 80px auto 100px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-totop__container a.c-learn-more {
    width: 90%;
    height: 60px;
    border-radius: 5px;
    margin: 40px auto 50px;
    font-size: 14px;
    margin: 0 auto;
  }
}

section.p-about {
  position: relative;
  overflow: hidden;
  padding-top: 5vw;
}
section.p-about div.section__container {
  padding: 3.75rem 0 1.25rem;
}
@media (max-width: 768px) {
  section.p-about div.section__container {
    padding: 1.25rem 0 0;
  }
}
section.p-about div.section__container:before {
  content: "";
  display: block;
  width: 120vw;
  height: 120vw;
  background-color: var(--c-base-gray);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: -10vw;
  z-index: 0;
}
section.p-about div.section__container:after {
  content: "";
  display: block;
  background-color: var(--c-base-gray);
  width: 100vw;
  height: 100vw;
  position: absolute;
  top: 50vw;
  left: 0;
  z-index: 0;
}
section.p-about div.section__container h2 {
  text-align: center;
  transform: scale(1, 1);
  line-height: 1.12;
  position: relative;
  z-index: 3;
}
section.p-about div.section__container h2 img {
  width: 15.125rem;
  margin: auto;
}
@media (max-width: 1200px) {
  section.p-about div.section__container h2 img {
    width: 30vw;
  }
}
section.p-about div.section__container .about__container {
  background-color: var(--c-base-gray);
  display: grid;
	grid-template-columns: 1fr;
}
section.p-about div.section__container .about__container:before {
  content: "";
  display: block;
  width: 110vw;
  height: 50%;
  background-color: var(--c-base-gray);
  position: absolute;
  bottom: 0;
  left: -5.1vw;
  z-index: -1;
}
@media (max-width: 1000px) {
  section.p-about div.section__container .about__container {
    grid-template-columns: repeat(1, 1fr);
  }
	section.p-about div.section__container .about__container .about__item:last-child{
/* 		grid-column: span 2; */
	}
}
@media (max-width: 1200px) {
  section.p-about div.section__container .about__container {
    padding: 0 0.625rem;
  }
}
section.p-about div.section__container .about__container .about__item {
/*   width: 50%; */
	flex: 1;
	min-width: 0;
  text-align: center;
/*   position: relative; */
  padding-bottom: 5rem;
  z-index: 3;
}
@media (max-width: 1200px) {
  section.p-about div.section__container .about__container .about__item {
    padding: 2.5rem 0.4375rem 2.5rem;
  }
}
section.p-about
  div.section__container
  .about__container
  .about__item:first-of-type {
  right: -5%;
}
@media (max-width: 1200px) {
  section.p-about
    div.section__container
    .about__container
    .about__item:first-of-type {
    left: 0;
  }
}
section.p-about
  div.section__container
  .about__container
  .about__item:last-of-type {
  left: -5%;
}
@media (max-width: 1200px) {
  section.p-about
    div.section__container
    .about__container
    .about__item:last-of-type {
    left: 0;
  }
}
section.p-about div.section__container .about__container .about__item h3 {
  font-size: 36px;
  margin-bottom: 1.25rem;
  font-family: "franklin-gothic-atf", sans-serif;
  font-weight: 600;
  font-style: normal;
  transform-origin: bottom left;
  transform: scale(0.85, 1);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform-origin: center center;
}
@media (max-width: 1200px) {
  section.p-about div.section__container .about__container .about__item h3 {
/*     font-size: 5.5vw; */
  }
}
section.p-about div.section__container .about__container .about__item p {
  line-height: var(--f-2-line-height);
  font-size: var(--f-2-font-size);
}
@media (max-width: 1200px) {
  section.p-about div.section__container .about__container .about__item p {
/*     font-size: 2vw; */
  }
}
@media (max-width: 768px) {
  section.p-about div.section__container .about__container .about__item p {
/*     font-size: 2.5vw; */
  }
}
@media (max-width: 450px) {
  section.p-about div.section__container .about__container .about__item p {
    font-size: 3vw;
  }
}

.l-no2 .p-about h2 span {
  display: block;
  font-family: "franklin-gothic-atf", sans-serif;
  font-weight: 600;
  font-style: normal;
  transform-origin: bottom left;
  transform: scale(0.85, 1);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform-origin: center center;
  font-size: 42px;
  margin: 1.5rem auto 0.125rem;
}
@media (max-width: 768px) {
  .l-no2 .p-about h2 span {
    font-size: 24px;
    margin: 0.75rem auto 0.125rem;
  }
}
.l-no2 .p-about h2 strong {
  font-family: var(--f-family-main);
  font-size: 22px;
}
@media (max-width: 768px) {
  .l-no2 .p-about h2 strong {
    font-size: 14px;
  }
}

.l-top section.p-nowfuture .nowfuture__container {
  display: grid;
/*   grid-template-columns: 1fr 1fr; */
}
@media (max-width: 768px) {
  .l-top section.p-nowfuture .nowfuture__container {
    grid-template-columns: 1fr;
  }
}
.l-top section.p-nowfuture .nowfuture__container .nowfuture__item {
  display: flex;
/*   border-bottom: 1px solid var(--c-base-black); */
  padding: 2.5rem 0;
}
@media (max-width: 768px) {
  .l-top section.p-nowfuture .nowfuture__container .nowfuture__item {
    padding: 1.875rem 0;
  }
}
.l-top
  section.p-nowfuture
  .nowfuture__container
  .nowfuture__item.nowfuture__item_02
  .nowfuture__item_left
  h3 {
  font-family: var(--f-family-main);
  letter-spacing: 0em;
}
.l-top
  section.p-nowfuture
  .nowfuture__container
  .nowfuture__item:nth-of-type(3),
.l-top
  section.p-nowfuture
  .nowfuture__container
  .nowfuture__item:nth-of-type(4) {
  border: none;
}
@media (max-width: 768px) {
  .l-top
    section.p-nowfuture
    .nowfuture__container
    .nowfuture__item:nth-of-type(3) {
    border-bottom: 1px solid var(--c-base-black);
  }
}
.l-top
  section.p-nowfuture
  .nowfuture__container
  .nowfuture__item:nth-of-type(3)
  h3 {
  padding-left: 1.25rem;
}
.l-top section.p-nowfuture .nowfuture__container .nowfuture__item > a {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.l-top
  section.p-nowfuture
  .nowfuture__container
  .nowfuture__item
  > a:hover
  + div,
.l-top
  section.p-nowfuture
  .nowfuture__container
  .nowfuture__item
  > a:hover
  + div
  + p {
  opacity: 0.9;
}
.l-top
  section.p-nowfuture
  .nowfuture__container
  .nowfuture__item
  > a:hover
  + div
  h3,
.l-top
  section.p-nowfuture
  .nowfuture__container
  .nowfuture__item
  > a:hover
  + div
  + p
  h3 {
  opacity: 0.9;
}
.l-top
  section.p-nowfuture
  .nowfuture__container
  .nowfuture__item
  .nowfuture__item_left {
  display: inline;
  min-width: 11.25rem;
  position: relative;
}
@media (max-width: 768px) {
  .l-top
    section.p-nowfuture
    .nowfuture__container
    .nowfuture__item
    .nowfuture__item_left {
    min-width: 34vw;
  }
}
.l-top
  section.p-nowfuture
  .nowfuture__container
  .nowfuture__item
  .nowfuture__item_left
  h3 {
  font-size: 36px;
  font-family: "franklin-gothic-atf", sans-serif;
  font-weight: 600;
  font-style: normal;
  transform-origin: bottom left;
  transform: scale(0.85, 1);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  width: auto;
  line-height: var(--f-1-line-height);
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .l-top
    section.p-nowfuture
    .nowfuture__container
    .nowfuture__item
    .nowfuture__item_left
    h3 {
    font-size: 22px;
    padding-top: 0.1875rem;
  }
}
.l-top
  section.p-nowfuture
  .nowfuture__container
  .nowfuture__item
  .nowfuture__item_left
  p {
  z-index: 5;
  position: relative;
}
.l-top
  section.p-nowfuture
  .nowfuture__container
  .nowfuture__item
  .nowfuture__item_left
  p
  a {
  display: inline-block;
  padding: 0.1875rem 0.75rem 0.3125rem;
  line-height: var(--f-1-line-height);
  text-align: center;
  background-color: var(--c-base-black);
  border-radius: 0.3125rem;
  color: var(--c-base-white);
  width: auto;
  letter-spacing: 0.1em;
  z-index: 5;
  position: relative;
}
@media (max-width: 768px) {
  .l-top
    section.p-nowfuture
    .nowfuture__container
    .nowfuture__item
    .nowfuture__item_left
    p
    a {
    letter-spacing: 0;
    padding: 0.25rem 0.5rem 0.3125rem;
    font-size: 12px;
  }
}
.l-top section.p-nowfuture .nowfuture__container .nowfuture__item > p {
  font-size: var(--f-font-size);
  line-height: var(--f-3-line-height);
  margin-left: 0;
  margin-right: 1.25rem;
}
@media (max-width: 768px) {
  .l-top section.p-nowfuture .nowfuture__container .nowfuture__item > p {
    margin-right: 0;
  }
}

.l-nowandfuture section:not(.p-about, .p-fv, .p-project) {
  background-color: var(--c-base-gray);
}
.l-nowandfuture section:not(.p-about, .p-fv, .p-project) > div {
  border-top: 1px solid #8e8e8e;
  text-align: center;
}
.l-nowandfuture section:not(.p-about, .p-fv, .p-project) > div a {
  display: block;
  width: 320px;
  height: 58px;
  border-radius: 5px;
  background-color: var(--c-base-black);
  color: var(--c-base-white);
  font-size: var(--f-nav-font-size);
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 80px auto 100px;
  transition: all 0.1s;
}
@media (max-width: 768px) {
  .l-nowandfuture section:not(.p-about, .p-fv, .p-project) > div a {
    width: 90%;
    height: 60px;
    border-radius: 5px;
    margin: 40px auto 50px;
    font-size: 14px;
  }
}
.l-nowandfuture section:not(.p-about, .p-fv, .p-project) > div a:before {
  content: "";
  display: block;
  width: 0rem;
  height: 100%;
  position: absolute;
  background-color: var(--c-base-black);
  top: 0;
  left: 0;
  transition: all 0.3s;
}
.l-nowandfuture section:not(.p-about, .p-fv, .p-project) > div a:hover {
  transition: all 0.2s;
  transform: scale(1.05);
  color: var(--c-base-black2);
  border: 1px solid var(--c-base-black2);
}
.l-nowandfuture section:not(.p-about, .p-fv, .p-project) > div a:hover:before {
  width: 100%;
  transition: all 0.4s;
  z-index: -1;
}
.l-nowandfuture section:not(.p-about, .p-fv, .p-project) > div a:hover:before {
  background-color: var(--c-base-white);
  color: var(--c-base-black2);
  border-radius: 5px;
}
.l-nowandfuture section:not(.p-about, .p-fv, .p-project) > div a.link-bottom-0 {
  margin-bottom: 0;
}
.l-nowandfuture section:not(.p-about, .p-fv, .p-project) .c-reihan-img img {
  max-height: 28.75rem;
  width: auto;
}
@media (max-width: 768px) {
  .l-nowandfuture section:not(.p-about, .p-fv, .p-project) .c-reihan-img img {
    max-height: 18.75rem;
  }
}
.l-nowandfuture section:not(.p-about, .p-fv, .p-project) h2,
.l-nowandfuture section:not(.p-about, .p-fv, .p-project) h3,
.l-nowandfuture section:not(.p-about, .p-fv, .p-project) h4,
.l-nowandfuture section:not(.p-about, .p-fv, .p-project) p {
  text-align: center;
  margin: auto;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .l-nowandfuture section:not(.p-about, .p-fv, .p-project) h2,
  .l-nowandfuture section:not(.p-about, .p-fv, .p-project) h3,
  .l-nowandfuture section:not(.p-about, .p-fv, .p-project) h4,
  .l-nowandfuture section:not(.p-about, .p-fv, .p-project) p {
    margin-bottom: 1.25rem;
  }
}
.l-nowandfuture section:not(.p-about, .p-fv, .p-project) h2 {
  width: 100%;
  max-width: 28.75rem;
  transform-origin: center center;
  font-family: var(--f-family-main);
  transform: scale(1, 1);
  letter-spacing: 0;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .l-nowandfuture section:not(.p-about, .p-fv, .p-project) h2 {
    font-size: 22px;
  }
}
.l-nowandfuture section:not(.p-about, .p-fv, .p-project) h2 img {
  max-height: 6.25rem;
  width: auto;
  margin-right: 1.25rem;
}
@media (max-width: 768px) {
  .l-nowandfuture section:not(.p-about, .p-fv, .p-project) h2 img {
    max-width: 3.75rem;
    margin: 0 1.25rem 0 0;
  }
}
.l-nowandfuture section:not(.p-about, .p-fv, .p-project) h4 {
  border-bottom: 1px solid var(--c-base-black);
  display: inline-block;
  font-size: 24px;
  margin: 1.25rem auto 1.875rem;
}
@media (max-width: 768px) {
  .l-nowandfuture section:not(.p-about, .p-fv, .p-project) h4 {
    font-size: 20px;
  }
}
.l-nowandfuture section:not(.p-about, .p-fv, .p-project) p {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .l-nowandfuture section:not(.p-about, .p-fv, .p-project) p {
    flex-direction: column;
  }
}
.l-nowandfuture section:not(.p-about, .p-fv, .p-project) p img {
  max-width: 40rem;
  width: auto;
  height: auto;
  max-height: 34.375rem;
  margin: auto 0.625rem;
}
@media (max-width: 768px) {
  .l-nowandfuture section:not(.p-about, .p-fv, .p-project) p img {
    width: auto;
    height: auto;
    max-width: unset;
    max-height: unset;
    width: 85%;
    height: auto;
    margin: 0.625rem auto;
  }
}
.l-nowandfuture section:not(.p-about, .p-fv, .p-project) p.c-flex img {
  width: 45%;
}
@media (max-width: 768px) {
  .l-nowandfuture section:not(.p-about, .p-fv, .p-project) p.c-flex img {
    width: 85%;
  }
}
.l-nowandfuture section:not(.p-about, .p-fv, .p-project) p.c-capnf {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.l-nowandfuture section:not(.p-about, .p-fv, .p-project) p.c-capnf span {
  width: 50%;
}
@media (max-width: 768px) {
  .l-nowandfuture section:not(.p-about, .p-fv, .p-project) p.c-capnf span {
    width: 100%;
  }
}
.l-nowandfuture section.p-project {
  background-color: var(--c-base-gray);
}
.l-nowandfuture section.p-project > div {
  padding-top: 0;
}
.l-nowandfuture section.p-project h2 {
  width: 100%;
  transform-origin: center center;
  font-family: var(--f-family-main);
  font-size: 32px;
  transform: scale(1, 1);
  letter-spacing: 0;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .l-nowandfuture section.p-project h2 {
    font-size: 20px;
  }
}
.l-nowandfuture section.p-project ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-nowandfuture section.p-project ul li {
  width: 12.6875rem;
  height: 12.6875rem;
  border-radius: 50%;
  margin: 0.625rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .l-nowandfuture section.p-project ul li {
    width: 29vw;
    height: 29vw;
    margin: 0 0.3125rem;
  }
}
.l-nowandfuture section.p-project ul li:first-of-type a span {
  font-size: 130%;
}
.l-nowandfuture section.p-project ul li a {
  width: 100%;
  height: 100%;
  background-color: var(--c-base-white);
  color: var(--c-base-black);
  font-size: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  transition: all 0.1s;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .l-nowandfuture section.p-project ul li a {
    font-size: 12px;
  }
}
.l-nowandfuture section.p-project ul li a:hover {
  background-color: var(--c-base-black);
  color: var(--c-base-white);
  transform: scale(0.95);
  transition: all 0.5s;
  border-radius: 50%;
}
.l-nowandfuture section.p-project ul li a span {
  font-family: "franklin-gothic-atf", sans-serif;
  font-weight: 600;
  font-style: normal;
  transform-origin: bottom left;
  transform: scale(0.85, 1);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform-origin: center center;
  font-size: 75%;
}

section.p-company {
  background: url(../images/top/bg-company.jpg) no-repeat center center/cover;
  position: relative;
}
@media (max-width: 768px) {
  section.p-company {
    background: url(../images/top/bg-company-sp.jpg) no-repeat center
      center/cover;
  }
}
section.p-company div.section__container h2 {
  color: var(--c-base-white);
  text-align: center;
  font-family: "franklin-gothic-atf", sans-serif;
  font-weight: 500;
  font-style: normal;
  transform-origin: bottom left;
  transform: scale(0.85, 1);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform-origin: center center;
}
@media (max-width: 768px) {
  section.p-company div.section__container h2 {
    padding: 0;
  }
}
section.p-company div.section__container h2 span {
  display: block;
  font-size: var(--f-font-size);
  margin-top: 1rem;
}
section.p-company div.section__container .company__container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
section.p-company div.section__container .company__container p {
  width: 9.6875rem;
  height: 9.6875rem;
  margin: 0 0.625rem;
  padding: 0;
}
@media (max-width: 768px) {
  section.p-company div.section__container .company__container p {
    width: 22.5vw;
    height: 22.5vw;
    max-width: 9.6875rem;
    max-height: 9.6875rem;
    margin: 0 0.625rem 0.625rem;
  }
}
section.p-company div.section__container .company__container p a {
  width: 100%;
  height: 100%;
  font-size: var(--f-2-font-size);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--c-base-white);
  border-radius: 0.625rem;
  background-color: var(--c-base-black);
  z-index: 0;
}
@media (max-width: 768px) {
  section.p-company div.section__container .company__container p a {
    font-size: 13px;
  }
}
section.p-company div.section__container .company__container p a:hover {
  transform: scale(1.05);
  background-color: #1f1f1f;
}

.l-company section h2 {
  text-align: center;
  transform-origin: center center;
}
.l-company section.p-company-information.p-about {
  position: relative;
  z-index: 3;
}
.l-company section.p-company-information.p-about .section__container {
  color: var(--c-base-white);
  padding-top: 12.5rem;
}
.l-company section.p-company-information.p-about .section__container:before {
  background-color: var(--c-base-black);
}
.l-company section.p-company-information.p-about .section__container:after {
  content: "";
  position: absolute;
  display: block;
  top: 31.25rem;
  width: 100vw;
  height: 100%;
  left: 0;
  z-index: -1;
  background-color: var(--c-base-black);
}
@media (max-width: 768px) {
  .l-company section.p-company-information.p-about .section__container:after {
    top: 50vw;
  }
}
.l-company section.p-company-information.p-about .section__container dl {
  display: flex;
  border-bottom: 1px solid var(--c-base-white);
  padding: 2.5rem 0;
  font-size: var(--f-2-font-size);
}
@media (max-width: 1400px) {
  .l-company section.p-company-information.p-about .section__container dl {
    margin: 0 1.25rem;
  }
}
@media (max-width: 768px) {
  .l-company section.p-company-information.p-about .section__container dl {
    flex-direction: column;
  }
}
.l-company
  section.p-company-information.p-about
  .section__container
  dl:last-of-type {
  border: none;
}
.l-company section.p-company-information.p-about .section__container dl dt {
  width: 10%;
  font-weight: 500;
}
@media (max-width: 768px) {
  .l-company section.p-company-information.p-about .section__container dl dt {
    width: 100%;
    padding: 0.625rem;
  }
}
.l-company section.p-company-information.p-about .section__container dl dd {
  width: 90%;
}
@media (max-width: 768px) {
  .l-company section.p-company-information.p-about .section__container dl dd {
    width: 100%;
    padding: 0.625rem;
    font-weight: 400;
    font-size: 14px;
    line-height: var(--f-b-line-height);
  }
}
.l-company section.p-company-information.p-about .c-cap {
  display: flex;
  background-color: #ccc;
  color: #000;
  justify-content: space-between;
  padding: 0.1875rem;
}
.l-company .p-ceo {
  max-width: 37.5rem;
  margin: 0 auto;
}
.l-company .p-ceo dl {
  font-size: var(--f-2-font-size);
}
.l-company .p-ceo dl dt {
  font-weight: bold;
  margin-bottom: 1.25rem;
}
.l-company .p-ceo dl dd li {
  margin-bottom: 1.25rem;
}
@media (max-width: 768px) {
  .l-company .p-ceo dl dd li {
    font-size: 14px;
  }
}
.l-company .p-access .section__container {
  max-width: unset;
}
.l-company .p-access .section__container h2 span {
  display: block;
  font-size: var(--f-2-font-size);
  font-family: var(--f-family-main);
  margin-top: 1rem;
}

.l-history .history__wrapper {
  position: relative;
  background-color: var(--c-base-gray);
}
.l-history section:not(.p-about, .p-fv) {
  background-color: var(--c-base-gray);
}
.l-history section:not(.p-about, .p-fv).p-history {
  margin: -5rem auto 0;
  overflow: visible;
}
@media (max-width: 768px) {
  .l-history section:not(.p-about, .p-fv).p-history {
    margin-top: 0;
  }
}
.l-history
  section:not(.p-about, .p-fv).p-history.p-history-1-3
  .section__container {
  border-top: none;
}
.l-history section:not(.p-about, .p-fv).p-history .section__container {
  max-width: 75rem;
  border-top: 1px dashed #434343;
  overflow: visible;
  padding-top: 3.125rem;
}
.l-history section:not(.p-about, .p-fv).p-history .section__container > p {
  width: 60%;
  margin-bottom: reem(50);
}
@media (max-width: 768px) {
  .l-history section:not(.p-about, .p-fv).p-history .section__container > p {
    width: 100%;
  }
}
.l-history section:not(.p-about, .p-fv).p-history h3 {
  font-family: "franklin-gothic-atf", sans-serif;
  font-weight: 600;
  font-style: normal;
  transform-origin: bottom left;
  transform: scale(0.85, 1);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  font-size: 44px;
  margin-bottom: 1.875rem;
  text-transform: capitalize;
  overflow: visible;
  font-weight: 700;
}
@media (max-width: 768px) {
  .l-history section:not(.p-about, .p-fv).p-history h3 {
    font-size: 28px;
    margin-bottom: 1.25rem;
  }
}
.l-history section:not(.p-about, .p-fv).p-history .left-histroy {
  margin-bottom: 0;
  margin-top: 5.625rem;
}
.l-history section:not(.p-about, .p-fv).p-history .left-histroy:last-of-type {
  margin-bottom: -1.25rem;
}
@media (max-width: 768px) {
  .l-history section:not(.p-about, .p-fv).p-history .left-histroy:last-of-type {
    margin-bottom: -2.5rem;
  }
}
.l-history
  section:not(.p-about, .p-fv).p-history
  .left-histroy
  .left-histroy__item {
  margin-top: 2.5rem;
  width: 60%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  position: relative;
  text-align: left;
}
@media (max-width: 768px) {
  .l-history
    section:not(.p-about, .p-fv).p-history
    .left-histroy
    .left-histroy__item {
    width: 100%;
  }
}
.l-history
  section:not(.p-about, .p-fv).p-history
  .left-histroy
  .left-histroy__item
  h3.c-history-year {
  font-size: 30px;
  font-family: "franklin-gothic-atf", sans-serif;
  font-weight: 600;
  font-style: normal;
  transform-origin: bottom left;
  transform: scale(0.85, 1);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform-origin: center center;
  position: relative;
  font-weight: 700;
  letter-spacing: -0.04em;
  z-index: 2;
  width: 7.8125rem;
}
@media (max-width: 1200px) {
  .l-history
    section:not(.p-about, .p-fv).p-history
    .left-histroy
    .left-histroy__item
    h3.c-history-year {
    font-size: 24px;
  }
}
.l-history
  section:not(.p-about, .p-fv).p-history
  .left-histroy
  .left-histroy__item
  h3.c-history-year.is-active {
  top: -1.5625rem !important;
}
@media (max-width: 768px) {
  .l-history
    section:not(.p-about, .p-fv).p-history
    .left-histroy
    .left-histroy__item
    h3.c-history-year {
    font-size: 20px;
  }
  .l-history
    section:not(.p-about, .p-fv).p-history
    .left-histroy
    .left-histroy__item
    h3.c-history-year.is-active {
    top: -1.0625rem !important;
  }
}
.l-history
  section:not(.p-about, .p-fv).p-history
  .left-histroy
  .left-histroy__item
  img {
  width: 13.5rem;
  height: auto;
  position: relative;
  top: -3.125rem;
}
@media (max-width: 768px) {
  .l-history
    section:not(.p-about, .p-fv).p-history
    .left-histroy
    .left-histroy__item
    img {
    width: 6rem;
    top: -2.5rem;
  }
}
.l-history
  section:not(.p-about, .p-fv).p-history
  .left-histroy
  .left-histroy__item
  p:first-of-type {
  font-size: var(--f-font-size);
  width: calc(100% - 22.5rem);
  padding: 0.75rem;
  position: relative;
}
@media (max-width: 768px) {
  .l-history
    section:not(.p-about, .p-fv).p-history
    .left-histroy
    .left-histroy__item
    p:first-of-type {
    width: calc(100% - 6.25rem);
    padding: 0.375rem;
  }
}
.l-history
  section:not(.p-about, .p-fv).p-history
  .left-histroy
  .left-histroy__item
  p:first-of-type:before {
  content: "";
  display: block;
  width: 118%;
  left: -15%;
  position: absolute;
  top: 0;
  border-top: 1px solid #9a9a9a;
}
@media (max-width: 768px) {
  .l-history
    section:not(.p-about, .p-fv).p-history
    .left-histroy
    .left-histroy__item
    p:first-of-type:before {
    width: 110%;
  }
}
.l-history
  section:not(.p-about, .p-fv).p-history.p-history-4-6
  .left-histroy
  .left-histroy__item {
  flex-direction: row;
}
.l-history
  section:not(.p-about, .p-fv).p-history.p-history-4-6
  .left-histroy
  .left-histroy__item
  h3 {
  order: 3;
}
@media (max-width: 768px) {
  .l-history
    section:not(.p-about, .p-fv).p-history.p-history-4-6
    .left-histroy
    .left-histroy__item
    h3 {
    order: 4;
  }
}
.l-history
  section:not(.p-about, .p-fv).p-history.p-history-4-6
  .left-histroy
  .left-histroy__item
  p:first-of-type {
  order: 1;
}
@media (max-width: 768px) {
  .l-history
    section:not(.p-about, .p-fv).p-history.p-history-4-6
    .left-histroy
    .left-histroy__item
    p:first-of-type {
    order: 3;
  }
}
.l-history
  section:not(.p-about, .p-fv).p-history.p-history-4-6
  .left-histroy
  .left-histroy__item
  p:first-of-type:before {
  width: 165%;
  left: 0;
}
@media (max-width: 768px) {
  .l-history
    section:not(.p-about, .p-fv).p-history.p-history-4-6
    .left-histroy
    .left-histroy__item
    p:first-of-type:before {
    width: 100%;
  }
}
.l-history
  section:not(.p-about, .p-fv).p-history.p-history-4-6
  .left-histroy
  .left-histroy__item
  p:last-of-type {
  order: 2;
}
.l-history section:not(.p-about, .p-fv) .c-history-line {
  position: absolute;
  top: 1.5625rem;
  width: 3.75rem;
  writing-mode: vertical-rl;
  background-color: var(--c-base-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem;
  font-size: var(--f-2-font-size);
  font-weight: bold;
  letter-spacing: 0.8em;
}
@media (max-width: 1200px) {
  .l-history section:not(.p-about, .p-fv) .c-history-line {
    width: 3.125rem;
    padding: 0.3125rem;
    font-size: 16px;
    letter-spacing: 0.4em;
  }
}
@media (max-width: 768px) {
  .l-history section:not(.p-about, .p-fv) .c-history-line {
    display: none;
    font-size: var(--f-2-font-size);
    letter-spacing: 0.8em;
  }
}
.l-history section:not(.p-about, .p-fv) .c-history-line.c-history-line1 {
  height: 664%;
  right: -110%;
}
@media (max-width: 1200px) {
  .l-history section:not(.p-about, .p-fv) .c-history-line.c-history-line1 {
    height: 664%;
  }
}
.l-history section:not(.p-about, .p-fv) .c-history-line.c-history-line2 {
  height: 983%;
  right: -170%;
  top: -150%;
}
@media (max-width: 1200px) {
  .l-history section:not(.p-about, .p-fv) .c-history-line.c-history-line2 {
    height: 1030%;
  }
}
.l-history section:not(.p-about, .p-fv) .c-history-line.c-history-line3 {
  height: 820%;
  right: -230%;
}
@media (max-width: 1200px) {
  .l-history section:not(.p-about, .p-fv) .c-history-line.c-history-line3 {
    height: 867%;
  }
}
.l-history section:not(.p-about, .p-fv) .c-history-line.c-history-line4 {
  height: 683%;
  right: -300%;
}
@media (max-width: 1200px) {
  .l-history section:not(.p-about, .p-fv) .c-history-line.c-history-line4 {
    height: 730%;
  }
}
.l-history section:not(.p-about, .p-fv) .c-history-line.c-history-line5 {
  height: 126%;
  right: -370%;
  letter-spacing: 0;
  font-size: 17px;
}
@media (max-width: 1200px) {
  .l-history section:not(.p-about, .p-fv) .c-history-line.c-history-line5 {
    height: 126%;
  }
}
.l-history section:not(.p-about, .p-fv).p-history-right {
  display: none;
}
@media (max-width: 768px) {
  .l-history section:not(.p-about, .p-fv).p-history-right {
    display: block;
    right: 0;
    top: 0;
    width: 40%;
    background-color: rgb(241, 241, 241);
    width: 100%;
  }
}
.l-history section:not(.p-about, .p-fv).p-history-right ul {
  display: flex;
  position: relative;
}
@media (max-width: 768px) {
  .l-history section:not(.p-about, .p-fv).p-history-right ul {
    width: calc(98vw - 1.875rem);
  }
}
.l-history section:not(.p-about, .p-fv).p-history-right ul li {
  width: 13%;
  margin-right: 5%;
  writing-mode: vertical-rl;
  background-color: var(--c-base-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem;
  z-index: 2;
  font-family: var(--f-family-main);
  letter-spacing: 0.08em;
}
@media (max-width: 768px) {
  .l-history section:not(.p-about, .p-fv).p-history-right ul li {
    margin-right: 2.5%;
    font-size: 16px;
    padding: 0.3125rem;
    position: static !important;
  }
}
@media (max-width: 450px) {
  .l-history section:not(.p-about, .p-fv).p-history-right ul li {
    font-size: 15px;
  }
}
.l-history section:not(.p-about, .p-fv).p-history-right ul li:before,
.l-history section:not(.p-about, .p-fv).p-history-right ul li:after {
  content: "第一期";
  position: absolute;
  top: 0;
  right: 2%;
  width: 100%;
  text-align: right;
  writing-mode: horizontal-tb;
  border-bottom: 1px solid var(--c-base-white);
  font-size: 14px;
  font-family: var(--f-font-size);
}
.l-history section:not(.p-about, .p-fv).p-history-right ul li:nth-of-type(1) {
  height: 160.5vw;
  margin-top: 5vw;
}
.l-history
  section:not(.p-about, .p-fv).p-history-right
  ul
  li:nth-of-type(1):after {
  top: 32.5vw;
  content: "第二期";
}
.l-history section:not(.p-about, .p-fv).p-history-right ul li:nth-of-type(2) {
  margin-top: 70vw;
  height: 189vw;
}
.l-history
  section:not(.p-about, .p-fv).p-history-right
  ul
  li:nth-of-type(2):before {
  top: 65vw;
  content: "第三期";
}
.l-history section:not(.p-about, .p-fv).p-history-right ul li:nth-of-type(3) {
  margin-top: 102.5vw;
}
.l-history
  section:not(.p-about, .p-fv).p-history-right
  ul
  li:nth-of-type(3):before {
  top: 97.5vw;
  content: "第四期";
}
.l-history
  section:not(.p-about, .p-fv).p-history-right
  ul
  li:nth-of-type(3):after {
  top: 130vw;
  content: "第五期";
}
.l-history section:not(.p-about, .p-fv).p-history-right ul li:nth-of-type(4) {
  margin-top: 199.5vw;
}
.l-history
  section:not(.p-about, .p-fv).p-history-right
  ul
  li:nth-of-type(4):before {
  top: 162.5vw;
  content: "第六期";
}
.l-history
  section:not(.p-about, .p-fv).p-history-right
  ul
  li:nth-of-type(4):after {
  top: 195vw;
  content: "第七期";
}
.l-history section:not(.p-about, .p-fv).p-history-right ul li:nth-of-type(5) {
  margin-top: 229vw;
  height: 30vw;
  margin-right: 0;
}
.l-history
  section:not(.p-about, .p-fv).p-history-right
  ul
  li:nth-of-type(5):before {
  top: 223vw;
  content: "第八期";
}
.l-history section:not(.p-about, .p-fv) h3.c-history-line {
  display: none;
}

section.p-contact .section__container {
  padding: 0;
}
section.p-contact > div {
  padding: 0 0 var(--f-padding);
}
section.p-contact h3 {
  font-size: var(--f-2-font-size);
  font-weight: 400;
  margin: 1.25rem 0 0.3125rem;
  text-align: left;
}
section.p-contact .inquiry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  section.p-contact .inquiry {
    flex-direction: column;
  }
}
section.p-contact .inquiry .p-contact-left,
section.p-contact .inquiry .p-contact-right {
  width: calc(50% - 1.25rem);
}
@media (max-width: 768px) {
  section.p-contact .inquiry .p-contact-left,
  section.p-contact .inquiry .p-contact-right {
    width: calc(100% - 1.25rem);
  }
}
section.p-contact .inquiry input[type="text"],
section.p-contact .inquiry input[type="email"],
section.p-contact .inquiry textarea {
  border: 1px solid #b5b5b5;
  width: 100%;
  border-radius: 5px;
  font-size: 16px;
}
section.p-contact .inquiry .mwform-radio-field {
  margin-bottom: 0.625rem;
}
section.p-contact .inquiry .mwform-radio-field:first-of-type {
  margin-top: 1.25rem;
}
section.p-contact
  .inquiry
  .mwform-radio-field
  label
  input[type="radio"]:checked
  + span:after {
  content: "";
  display: block;
  background-color: var(--c-base-black);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 4px;
  margin: auto;
}
@media (max-width: 768px) {
  section.p-contact
    .inquiry
    .mwform-radio-field
    label
    input[type="radio"]:checked
    + span:after {
    top: 1.6vw;
    left: 1.1vw;
  }
}
section.p-contact
  .inquiry
  .mwform-radio-field
  label
  input[type="radio"]
  + span {
  display: flex;
  align-items: center;
  margin-top: -1.875rem;
  position: relative;
}
section.p-contact
  .inquiry
  .mwform-radio-field
  label
  input[type="radio"]
  + span:before {
  content: "";
  display: block;
  border: 1px solid #b5b5b5;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-right: 0.3125rem;
}
section.p-contact .p-privacy-container {
  height: 23.75rem;
  overflow: auto;
  padding: 1.25rem;
  border: #b5b5b5 solid 1px;
  border-right: none;
}
@media (max-width: 768px) {
  section.p-contact .p-privacy-container {
    width: calc(100% - 1.25rem);
    margin: auto;
  }
}
section.p-contact .p-privacy-container p {
  margin-bottom: 1.25rem;
}
section.p-contact .privacy-check {
  text-align: center;
  margin: 2.5rem auto;
}
@media (max-width: 768px) {
  section.p-contact .privacy-check {
    width: calc(100% - 1.25rem);
  }
}
section.p-contact .privacy-check label {
  display: flex;
  align-items: center;
  justify-content: center;
}
section.p-contact .privacy-check input[type="checkbox"]:before {
  content: "";
  width: 15px;
  height: 15px;
  display: block;
  border-radius: 2px;
  border: #b5b5b5 solid 1px;
  position: relative;
  bottom: -1px;
}
section.p-contact .privacy-check input[type="checkbox"]:checked:before {
  content: "";
  width: 15px;
  height: 15px;
  display: block;
  background: url(../images/contact/check-solid.svg) no-repeat center
    center/contain;
}

.submit-btn {
  text-align: center;
  width: 100%;
}
.submit-btn button {
  display: block;
  width: 320px;
  height: 58px;
  border-radius: 5px;
  background-color: var(--c-base-black);
  color: var(--c-base-white);
  font-size: var(--f-nav-font-size);
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 80px auto 100px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .submit-btn button {
    width: 90%;
    height: 60px;
    border-radius: 5px;
    margin: 40px auto 50px;
    font-size: 14px;
  }
}
.submit-btn button:before {
  content: "";
  display: block;
  width: 0rem;
  height: 100%;
  position: absolute;
  background-color: var(--c-base-black);
  top: 0;
  left: 0;
  transition: all 0.3s;
  background-color: var(--c-base-white);
  color: var(--c-base-black2);
  border-radius: 5px;
}
.submit-btn button:hover {
  transition: all 0.2s;
  transform: scale(1.05);
  color: var(--c-base-black2);
  border: 1px solid var(--c-base-black2);
}
.submit-btn button:hover:before {
  width: 100%;
  transition: all 0.4s;
  z-index: -1;
}

.mw_wp_form_confirm .p-privacy-container,
.mw_wp_form_confirm .p-privacy-container,
.mw_wp_form_confirm .privacy-check {
  display: none;
}
.mw_wp_form_confirm .th {
  padding-bottom: 1.25rem;
}
.mw_wp_form_confirm .th h3 {
  font-weight: bold;
  border-top: 1px solid #b5b5b5;
  padding: 1.25rem 0 0;
}
.mw_wp_form_confirm .inquiry {
  align-items: flex-start !important;
  max-width: var(--pc-max-width);
  margin: auto;
}
@media (max-width: 768px) {
  .mw_wp_form_confirm .inquiry {
    width: calc(100% - 1.25rem);
    margin: auto;
  }
}
.mw_wp_form_confirm .p-contact-right {
  height: 100;
}

.mw_wp_form_complete {
  max-width: var(--pc-max-width);
  margin: auto;
  margin-bottom: 6.25rem;
}
@media (max-width: 768px) {
  .mw_wp_form_complete {
    margin-bottom: 3.125rem;
    width: calc(100% - 1.25rem);
  }
}
.mw_wp_form_complete .p-privacy-container {
  display: none;
}

.l-main.l-thank-you {
  padding-bottom: 6.25rem;
}
@media (max-width: 768px) {
  .l-main.l-thank-you {
    padding-bottom: 3.125rem;
  }
}

.u-pc-hidden {
  display: none !important;
}
@media (max-width: 768px) {
  .u-pc-hidden {
    display: block !important;
  }
}

.u-sm-hidden {
  display: none;
}
@media (max-width: 450px) {
  .u-sm-hidden {
    display: initial;
  }
}

.u-xl-hidden {
  display: initial;
}
@media (max-width: 1200px) {
  .u-xl-hidden {
    display: none;
  }
}

.u-sp-hidden {
  display: initial;
}
@media (max-width: 768px) {
  .u-sp-hidden {
    display: none !important;
  }
}

.u-space-contact {
  margin-top: 7.5rem;
}
@media (max-width: 768px) {
  .u-space-contact {
    margin-top: 10rem;
  }
} /*# sourceMappingURL=style.css.map */

.f-info-label {
	display: inline-block;
	width: 120px;
}
@media (max-width: 1200px) {
	.f-info-label {
	width: 90px;
}
}
.cf-turnstile {
	text-align: center;
}
#mw_wp_form_mw-wp-form-5434 .submit-btn button {
	margin-top: 0;
}

.add-aboutitem-label {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	@media (min-width: 1000px) {
		justify-content: initial;
	}
}
.add-aboutitem-label_head {
	background: #58595B;
	line-height: 1;
	color: #fff;
	padding: 4px 8px 6px;
}
.add-aboutitem-label_body {
    font-size: 24px;
	font-weight: 700;
	line-height: 1;
	padding: 4px 8px 9px;
}
.add-aboutlist {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px 12px;
	width: fit-content;
	margin-inline: auto;
	@media (min-width: 1000px) {
		width: auto;
	}
}
.add-aboutlist_item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-inline: auto;
	width: 100%;
	@media (min-width: 1000px) {
		width: fit-content;
	}
}
@media (min-width: 1000px) {
    .add-aboutitem-label {
        flex-direction: column;
    }
    .add-aboutlist {
    grid-template-columns: repeat(3, 1fr);
}
	/* .about__container .about__item:nth-child(2) > p {
	transform: translatex(7%);
}
.about__container .about__item:nth-child(3) > p {
	transform: translatex(5%);
}
	.about__container .about__item:nth-child(3) > h3 {
	translate: -5%;
} */
}

.add-aboutitem-label_head {
    font-size: 16px;
}
.add-aboutitem-label_body {
    font-size: 20px;
}
.about__item h3 {
    font-size: 45px !important;
}

.about__item p {
    font-size: 13px !important;
}
@media(min-width: 768px) {
    .about__item p {
    font-size: 20px !important;
}
.add-aboutitem-label_head {
    font-size: 20px;
}
.add-aboutitem-label_body {
    font-size: 25px;
}
}


/* mvv css */
	section.p-about div.section__container:after {
		top: 10%;
		height: 80%;
		@media(min-width: 600px) {
			top: 20%;
		}
	}

.mvv-container-system {
  position: relative;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 20px 100px;
  background: transparent;
  overflow-x: hidden;
  overflow-y: visible;
  box-sizing: border-box;
}

.mvv-container-system * {
  box-sizing: border-box;
}

/* ========================================
   Section Layout
======================================== */
.mvv-section {
  position: relative;
  margin-bottom: 120px;
  width: 100%;
}

.mvv-section:last-child {
  margin-bottom: 0;
}

.mvv-section-wide {
  max-width: 100%;
}

.mvv-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}

@media (min-width: 768px) {
  .mvv-inner {
    gap: 50px;
  }
}

/* ========================================
   Header Area - Circle Animation Integration
======================================== */
.mvv-header-area {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 160px;
}

/* 背景の丸型装飾 */
.mvv-section-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: transparent;
  border: 4px double rgba(198, 0, 11, 0.5);
  z-index: 0;
  pointer-events: none;
  
  will-change: transform, opacity;
  transform-origin: center center;
  backface-visibility: hidden;
  
  opacity: 0;
  transform: translate(-50%, -50%) scale(1.6) translateZ(0);
}

/* 円のアニメーション：見出し開始から0.4秒後に開始 */
.mvv-section-circle.is-animating {
  animation: circleScaleDown 2.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.4s;
}

.add-about-animation-label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.add-about-animation-label_item {
  font-size: 80px;
  margin-bottom: 1.25rem;
  font-family: "franklin-gothic-atf", sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform-origin: center center;
  text-align: center;
  color: #111;
  margin: 0;
  position: relative;
  opacity: 0;
  
  will-change: transform, opacity, filter, letter-spacing;
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  
  animation: none;
}

/* 見出しアニメーション：最初に実行 */
.add-about-animation-label_item.is-animating {
  animation: cinematicReveal 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.add-about-animation-label_item::after {
  content: '';
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #111 0%, rgba(17, 17, 17, 0.3) 70%, transparent 100%);
}

/* ========================================
   Content Area Styles
======================================== */
.mvv-content-area {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 10px;
}

.border-animated-span {
  position: relative;
  display: inline-block;
  padding: 65px 85px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 
    0 35px 70px rgba(0, 0, 0, 0.08),
    0 15px 30px rgba(0, 0, 0, 0.05),
    0 5px 10px rgba(0, 0, 0, 0.03);
  
  background: 
    linear-gradient(rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.98)) padding-box,
    linear-gradient(to right, #111 100%, transparent 0) border-box no-repeat,
    linear-gradient(to bottom, #111 100%, transparent 0) border-box no-repeat,
    linear-gradient(to left, #111 100%, transparent 0) border-box no-repeat,
    linear-gradient(to top, #111 100%, transparent 0) border-box no-repeat;
    
  background-position: 
    0 0,
    top left, top right, bottom right, bottom left;
  
  background-size: 
    auto,
    0 2px, 2px 0, 0 2px, 2px 0;
  
  border: 1px solid transparent;
  max-width: 100%;
  box-sizing: border-box;
}

.mvv-value-container {
  width: 99%;
  max-width: 1200px;
  padding: 65px 50px;
  box-sizing: border-box;
}

/* ========================================
   順序制御用CSS - 1.4秒前倒し版
======================================== */
.mvv-text-content {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(25px);
  transition: none;
}

/* ボーダーアニメーション：円完了1.4秒前（1.1s）に開始 */
.border-animated-span.is-animated {
  animation: 
    borderTop 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards,      /* 変更: 1.5s → 1.1s */
    borderRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards,    /* 変更: 1.6s → 1.2s */
    borderBottom 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.3s forwards,   /* 変更: 1.7s → 1.3s */
    borderLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.4s forwards;     /* 変更: 1.8s → 1.4s */
}

/* テキストアニメーション：ボーダー開始と連動 */
.border-animated-span.is-animated .mvv-text-content {
  opacity: 1;
  transform: translateY(0);
  /* ボーダー開始（1.1s）+ 0.6s後にテキスト開始 = 1.7s */
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.7s,       /* 変更: 2.1s → 1.7s */
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.7s;     /* 変更: 2.1s → 1.7s */
}

/* 即座完了用の状態（途中リロード対応） */
.mvv-section.instant-complete .add-about-animation-label_item {
  opacity: 1;
  filter: blur(0);
  letter-spacing: 0.16em;
  transform: scale(0.85, 1) translateZ(0);
  animation: none;
}

.mvv-section.instant-complete .mvv-section-circle {
  opacity: 0.8;
  transform: translate(-50%, -50%) scale(1.0) translateZ(0);
  animation: none;
}

.mvv-section.instant-complete .border-animated-span {
  background-size: auto, 100% 2px, 2px 100%, 100% 2px, 2px 100%;
}

.mvv-section.instant-complete .mvv-text-content {
  opacity: 1;
  transform: translateY(0);
  transition: none;
}

.mvv-statement-text {
  font-size: 20px;
  font-weight: 500;
  color: #222;
  line-height: 2;
  letter-spacing: 0.06em;
  margin: 0;
  text-align: center;
  font-feature-settings: "palt";
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.mvv-statement-text + .mvv-statement-text {
  margin-top: 16px;
}

/* ========================================
   VALUE Grid System
======================================== */
.mvv-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  text-align: center;
  width: 100%;
}

.mvv-value-column {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
  min-width: 0;
}

.mvv-value-column:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -30px;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(0, 0, 0, 0.1);
}

.mvv-value-badge {
  display: inline-block;
  background: #333;
  color: #fff;
  font-family: "franklin-gothic-atf", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 9px 18px;
  margin-bottom: 24px;
  border-radius: 2px;
}

.mvv-value-heading {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.05em;
  margin: 0 0 28px 0;
  line-height: 1.5;
  word-wrap: break-word;
}

.mvv-value-description {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  justify-content: center;
}

.mvv-value-text {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  line-height: 1.9;
  letter-spacing: 0.05em;
  margin: 0;
  font-feature-settings: "palt";
  word-wrap: break-word;
}

/* ========================================
   Animation Keyframes - 80px最適化版
======================================== */
@keyframes cinematicReveal {
  0% {
    opacity: 0;
    filter: blur(22px);
    letter-spacing: 0.5em;
    transform: scale(0.935, 1.1) translateZ(0);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    letter-spacing: 0.16em;
    transform: scale(0.85, 1) translateZ(0);
  }
}

@keyframes circleScaleDown {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.6) translateZ(0);
  }
  100% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.0) translateZ(0);
  }
}

@keyframes borderTop {
  0% { background-size: auto, 0 2px, 2px 0, 0 2px, 2px 0; }
  100% { background-size: auto, 100% 2px, 2px 0, 0 2px, 2px 0; }
}

@keyframes borderRight {
  0% { background-size: auto, 100% 2px, 2px 0, 0 2px, 2px 0; }
  100% { background-size: auto, 100% 2px, 2px 100%, 0 2px, 2px 0; }
}

@keyframes borderBottom {
  0% { background-size: auto, 100% 2px, 2px 100%, 0 2px, 2px 0; }
  100% { background-size: auto, 100% 2px, 2px 100%, 100% 2px, 2px 0; }
}

@keyframes borderLeft {
  0% { background-size: auto, 100% 2px, 2px 100%, 100% 2px, 2px 0; }
  100% { background-size: auto, 100% 2px, 2px 100%, 100% 2px, 2px 100%; }
}

/* ========================================
   Responsive Design - 80px基準で調整
======================================== */
@media (max-width: 1200px) {
  .add-about-animation-label_item {
    font-size: 70px;
  }
  
  .mvv-section-circle {
    width: 120px;
    height: 120px;
  }
  
  .mvv-value-grid {
    gap: 50px;
  }
  
  .border-animated-span {
    padding: 60px 70px;
  }
}

@media (max-width: 1024px) {
  .mvv-container-system {
    padding: 70px 15px 80px;
  }
  
  .mvv-section {
    margin-bottom: 100px;
  }
  
  .add-about-animation-label_item {
    font-size: 60px;
  }
  
  .mvv-section-circle {
    width: 120px;
    height: 120px;
  }
  
  .border-animated-span {
    padding: 55px 50px;
  }
  
  .mvv-value-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px;
  }
  
  .mvv-value-column:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .mvv-container-system {
    padding: 60px 15px 70px;
    max-width: 100vw;
  }
  
  .mvv-section {
    margin-bottom: 80px;
  }
  
  .mvv-header-area {
    min-height: 130px;
  }
  
  .add-about-animation-label_item {
    font-size: 50px;
    max-width: 100%;
    word-wrap: break-word;
  }
  
  .mvv-section-circle {
    width: 120px;
    height: 120px;
  }
  
  .mvv-content-area {
    padding: 0 5px;
  }
  
  .border-animated-span {
    padding: 45px 30px;
    width: 100%;
    max-width: 100%;
  }
  
  .mvv-value-container {
    padding: 50px 25px;
  }
  
  .mvv-statement-text {
    font-size: 18px;
    line-height: 1.9;
  }
  
  .mvv-value-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  
  .mvv-value-column {
    padding: 0 10px;
  }
  
  .mvv-value-column::after {
    display: none;
  }
  
  .mvv-value-heading {
    font-size: 20px;
  }
  
  .mvv-value-text {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .mvv-container-system {
    padding: 50px 10px 60px;
    max-width: 100vw;
    overflow-x: hidden;
    overflow-y: visible;
  }
  
  .mvv-section {
    margin-bottom: 70px;
  }
  
  .mvv-header-area {
    min-height: 110px;
  }
  
  .add-about-animation-label_item {
    font-size: 40px;
    letter-spacing: 0.12em;
  }
  
  .add-about-animation-label_item::after {
    width: 80px;
    height: 3px;
    bottom: -18px;
  }
  
  .mvv-section-circle {
    width: 120px;
    height: 120px;
  }
  
  .mvv-content-area {
    padding: 0;
  }
  
  .border-animated-span {
    padding: 35px 20px;
    width: calc(100% - 10px);
    margin: 0 auto;
  }
  
  .mvv-value-container {
    padding: 40px 20px;
  }
  
  .mvv-statement-text {
    font-size: 16px;
  }
  
  .mvv-value-heading {
    font-size: 18px;
  }
  
  .mvv-value-text {
    font-size: 16px;
  }
}

@media (max-width: 375px) {
  .add-about-animation-label_item {
    font-size: 34px;
    letter-spacing: 0.1em;
  }
  
  .mvv-section-circle {
    width: 120px;
    height: 120px;
  }
  
  .border-animated-span {
    padding: 30px 15px;
  }
  
  .mvv-statement-text {
    font-size: 13px;
  }
  
  .mvv-value-text {
    font-size: 13px;
  }
}

/* ========================================
   Accessibility Support - 1.4秒前倒し対応版
======================================== */
@media (prefers-reduced-motion: reduce) {
  .add-about-animation-label_item.is-animating {
    animation: cinematicReducedMotion 0.3s ease-out forwards;
  }
  
  .mvv-section-circle.is-animating {
    animation: circleReducedMotion 0.3s ease-out forwards;
    animation-delay: 0.1s;
  }
  
  /* アクセシビリティモード：円完了(0.4s)の1.4秒前 → 即座開始 */
  .border-animated-span.is-animated {
    animation: 
      borderTop 0.3s ease-out 0s forwards,
      borderRight 0.3s ease-out 0.05s forwards,
      borderBottom 0.3s ease-out 0.1s forwards,
      borderLeft 0.3s ease-out 0.15s forwards;
  }
  
  .border-animated-span.is-animated .mvv-text-content {
    transition: opacity 0.2s ease-out 0.2s,
                transform 0.2s ease-out 0.2s;
  }
  
  @keyframes cinematicReducedMotion {
    0% {
      opacity: 0;
      transform: scale(0.85, 1) translateZ(0);
    }
    100% {
      opacity: 1;
      transform: scale(0.85, 1) translateZ(0);
    }
  }
  
  @keyframes circleReducedMotion {
    0% {
      opacity: 0;
      transform: translate(-50%, -50%) scale(1.0) translateZ(0);
    }
    100% {
      opacity: 0.8;
      transform: translate(-50%, -50%) scale(1.0) translateZ(0);
    }
  }
}

.mvv-inner {
	border: 0 !important;
}

/* #splash {
	display: none;
} */