@charset "UTF-8";
/*
Theme Name: ADD+
Description: 
Author: Metaphor Team
Version: 1.0.0
Text Domain: ADD+
Domain Path: /languages
Tags: corporate, business, responsive, modern, slider
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/
:root {
  --color-primary: #231815;
  --color-secondary: #ff7700;
  --color-accent: #ff0000;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-gray-50: #fafafa;
  --color-gray-100: #f8f9fa;
  --color-gray-200: #f0f0f0;
  --color-gray-300: #e0e0e0;
  --color-gray-400: #cccccc;
  --color-gray-500: #c8c8c8;
  --color-gray-600: #aeaeae;
  --color-gray-700: #333333;
  --color-gray-800: #1a1a1a;
  --color-gray-900: #2d2d2d;
  --color-dark-bg: #252525;
  --color-card-bg: #323232;
  --color-overlay: rgba(0, 0, 0, 0.5);
  --font-family-base: "itc-avant-garde-gothic-pro", "ryo-gothic-plusn",
    "Helvetica Neue", Arial, sans-serif;
  --font-size-xs: 1rem;
  --font-size-sm: 1.1rem;
  --font-size-base: 1.4rem;
  --font-size-md: 1.6rem;
  --font-size-lg: 1.8rem;
  --font-size-xl: 2rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 2.5rem;
  --font-size-4xl: 3.5rem;
  --font-size-5xl: 5rem;
  --font-size-6xl: 10rem;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --line-height-tight: 1.2;
  --line-height-normal: 1.4;
  --line-height-relaxed: 1.5;
  --line-height-loose: 1.6;
  --spacing-xs: 0.4rem;
  --spacing-sm: 0.8rem;
  --spacing-md: 1.2rem;
  --spacing-lg: 1.6rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 2.4rem;
  --spacing-3xl: 3.2rem;
  --spacing-4xl: 4rem;
  --spacing-5xl: 4.8rem;
  --spacing-6xl: 6rem;
  --spacing-8xl: 8rem;
  --spacing-10xl: 12rem;
  --radius-sm: 0.4rem;
  --radius-md: 0.8rem;
  --radius-lg: 1.2rem;
  --radius-xl: 1.6rem;
  --radius-full: 50%;
  --shadow-sm: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.05);
  --shadow-md: 0 0.4rem 0.6rem rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 1rem 1.5rem rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 2rem 2.5rem rgba(0, 0, 0, 0.25);
  --shadow-card: 0 0.4rem 2rem rgba(0, 0, 0, 0.08);
  --shadow-card-hover: 0 0.8rem 3rem rgba(0, 0, 0, 0.12);
  --shadow-button: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
  --shadow-button-hover: 0 0.4rem 1.5rem rgba(0, 0, 0, 0.15);
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
  --breakpoint-sm: 480px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1280px;
  --container-max-width: 120rem;
  --container-padding: 2rem;
  --header-height: 8rem;
  --header-height-mobile: 6rem;
  --section-padding: var(--spacing-10xl);
  --section-padding-mobile: var(--spacing-8xl);
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

@media (max-width: 959px) {
  html {
    scroll-padding-top: 60px;
  }
}
body {
  font-family: var(--font-family-base);
  line-height: var(--line-height-loose);
  color: var(--color-primary);
  background-color: var(--color-white);
  font-optical-sizing: auto;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 1.6rem;
}

.sp-only {
  display: none !important;
}
@media (max-width: 959px) {
  .sp-only {
    display: block !important;
  }
}

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

br.sp-only {
  display: none !important;
}
@media (max-width: 959px) {
  br.sp-only {
    display: inline !important;
  }
}

img.sp-only {
  display: none !important;
}
@media (max-width: 959px) {
  img.sp-only {
    display: block !important;
  }
}

img.pc-only {
  display: block;
}
@media (max-width: 959px) {
  img.pc-only {
    display: none !important;
  }
}

.l-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
@media (max-width: 768px) {
  .l-container {
    padding: 0 var(--spacing-lg);
  }
}

.l-header {
  position: fixed;
  width: 100vw;
  height: 80px;
  margin: auto;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  z-index: var(--z-fixed);
  border-bottom: solid 1px #2a2a2a;
  background-color: #fff;
}
@media (max-width: 959px) {
  .l-header {
    height: 60px;
    padding: 0 8px;
  }
}
.l-header__inner {
  width: 90vw;
  margin: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 959px) {
  .l-header__inner {
    width: 100%;
  }
}
.l-header__logo {
  position: relative;
  z-index: 1000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.l-header__logo a img {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto;
  width: auto;
}
@media (max-width: 959px) {
  .l-header__logo a img {
    height: 3rem;
  }
}
.l-header__logo a:nth-child(1) {
  border-right: solid 1px #2a2a2a;
  padding-right: 12px;
  margin-right: 12px;
}
@media (max-width: 959px) {
  .l-header__logo a:nth-child(1) {
    padding-right: 8px;
    margin-right: 8px;
  }
}
.l-header__menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1000;
}
@media (max-width: 959px) {
  .l-header__menu {
    gap: 8px;
  }
}
.l-header #langcheck {
  display: none;
}
.l-header__lang {
  position: relative;
}
@media (max-width: 959px) {
  .l-header__lang {
    display: none;
  }
}
.l-header__lang__toggle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 8px 0;
}
.l-header__lang__icon {
  width: 20px;
  height: 20px;
}
.l-header__lang__current {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #2a2a2a;
}
.l-header__lang__arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #2a2a2a;
  border-bottom: 1.5px solid #2a2a2a;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-top: -4px;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.l-header__lang__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 120px;
  background: var(--color-white);
  border: 1px solid #2a2a2a;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.l-header__lang__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.l-header__lang__item a {
  display: block;
  padding: 12px 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #2a2a2a;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.l-header__lang__item a:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.l-header__lang__item.is-active a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-header__lang__item.is-active a::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 4px;
  border-left: 2px solid #2a2a2a;
  border-bottom: 2px solid #2a2a2a;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-right: 8px;
}
.l-header #langcheck:checked + .l-header__lang__toggle .l-header__lang__arrow {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  margin-top: 2px;
}
.l-header #langcheck:checked + .l-header__lang__toggle + .l-header__lang__dropdown {
  opacity: 1;
  visibility: visible;
}
.l-header #spnavcheck {
  display: none;
}
.l-header__hamburger {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80px;
  height: 60px;
  border: 1px solid #2a2a2a;
  border-radius: 30px;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
@media (max-width: 959px) {
  .l-header__hamburger {
    width: 60px;
    height: 44px;
    border-radius: 22px;
  }
}
.l-header__hamburger:hover {
  background-color: rgba(0, 0, 0, 0.03);
}
.l-header__hamburger__lines {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  margin-bottom: 4px;
}
@media (max-width: 959px) {
  .l-header__hamburger__lines {
    gap: 3px;
    margin-bottom: 2px;
  }
}
.l-header__hamburger__lines span {
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: #2a2a2a;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease;
}
@media (max-width: 959px) {
  .l-header__hamburger__lines span {
    width: 18px;
  }
}
.l-header__hamburger__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #2a2a2a;
}
@media (max-width: 959px) {
  .l-header__hamburger__text {
    font-size: 8px;
  }
}
.l-header #spnavcheck:checked + .l-header__hamburger .l-header__hamburger__lines span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(4px, 4px);
          transform: rotate(45deg) translate(4px, 4px);
}
.l-header #spnavcheck:checked + .l-header__hamburger .l-header__hamburger__lines span:nth-child(2) {
  opacity: 0;
}
.l-header #spnavcheck:checked + .l-header__hamburger .l-header__hamburger__lines span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(4px, -4px);
          transform: rotate(-45deg) translate(4px, -4px);
}
.l-header__nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 100svh;
  width: 100vw;
  background: rgba(36, 110, 73, 0.95);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  z-index: 999;
}
.l-header__nav__close {
  position: absolute;
  top: 10px;
  right: 5vw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80px;
  height: 60px;
  background-color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
@media (max-width: 959px) {
  .l-header__nav__close {
    top: 8px;
    right: 8px;
    width: 60px;
    height: 44px;
    border-radius: 22px;
  }
}
.l-header__nav__close:hover {
  opacity: 0.9;
}
.l-header__nav__close__icon {
  position: relative;
  width: 20px;
  height: 20px;
  margin-bottom: 2px;
}
@media (max-width: 959px) {
  .l-header__nav__close__icon {
    width: 16px;
    height: 16px;
  }
}
.l-header__nav__close__icon span {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: #246e49;
}
.l-header__nav__close__icon span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.l-header__nav__close__icon span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.l-header__nav__close__text {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #246e49;
}
@media (max-width: 959px) {
  .l-header__nav__close__text {
    font-size: 8px;
  }
}
.l-header__nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 600px;
  margin-bottom: 84px;
}
@media (max-width: 959px) {
  .l-header__nav__list {
    max-width: 280px;
    margin-bottom: 48px;
  }
}
.l-header__nav__item {
  margin-bottom: 48px;
}
@media (max-width: 959px) {
  .l-header__nav__item {
    margin-bottom: 32px;
  }
}
.l-header__nav__item:last-child {
  margin-bottom: 0;
}
.l-header__nav__item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.2em;
  color: #fff;
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
@media (max-width: 959px) {
  .l-header__nav__item a {
    font-size: 20px;
  }
}
.l-header__nav__item a:hover {
  opacity: 0.7;
}
.l-header__nav__item__arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media (max-width: 959px) {
  .l-header__nav__item__arrow {
    width: 8px;
    height: 8px;
  }
}
.l-header__nav__lang {
  width: 100%;
  max-width: 600px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 959px) {
  .l-header__nav__lang {
    max-width: 280px;
  }
}
.l-header__nav__lang__label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 400;
}
@media (max-width: 959px) {
  .l-header__nav__lang__label {
    font-size: 14px;
  }
}
.l-header__nav__lang__icon {
  width: 20px;
  height: 20px;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
@media (max-width: 959px) {
  .l-header__nav__lang__icon {
    width: 16px;
    height: 16px;
  }
}
.l-header__nav__lang__options {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.l-header__nav__lang__option {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  opacity: 0.6;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
@media (max-width: 959px) {
  .l-header__nav__lang__option {
    font-size: 14px;
  }
}
.l-header__nav__lang__option:hover {
  opacity: 1;
}
.l-header__nav__lang__option.is-active {
  opacity: 1;
}
.l-header__nav__lang__option.is-active::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-right: 6px;
}
.l-header__nav__lang__separator {
  color: #fff;
  opacity: 0.6;
}
.l-header #spnavcheck:checked + .l-header__hamburger + .l-header__nav {
  visibility: visible;
  opacity: 1;
}

.l-footer {
  background: var(--color-white);
  color: #2a2a2a;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  padding: 40px 0;
}
@media (max-width: 959px) {
  .l-footer {
    padding: 32px 0;
    font-size: 11px;
  }
}
.l-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 959px) {
  .l-footer__inner {
    padding: 0 16px;
  }
}
.l-footer__logo {
  display: block;
  width: 240px;
  height: auto;
  margin: 0 auto 32px;
}
@media (max-width: 959px) {
  .l-footer__logo {
    width: 160px;
    margin-bottom: 24px;
  }
}
.l-footer__organizations {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 24px;
  padding: 0;
  text-align: center;
}
@media (max-width: 959px) {
  .l-footer__organizations {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 20px;
    gap: 6px;
  }
}
.l-footer__organizations__row {
  display: contents;
}
@media (max-width: 959px) {
  .l-footer__organizations__row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.l-footer__organizations__link {
  color: #2a2a2a;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.l-footer__organizations__link:hover {
  opacity: 0.7;
}
.l-footer__organizations__separator {
  display: inline-block;
  width: 1px;
  height: 12px;
  background-color: #2a2a2a;
  margin: 0 16px;
}
@media (max-width: 959px) {
  .l-footer__organizations__separator {
    margin: 0 8px;
    height: 10px;
  }
}
@media (max-width: 959px) {
  .l-footer__organizations__separator--pc-only {
    display: none;
  }
}
.l-footer__bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media (max-width: 959px) {
  .l-footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
}
.l-footer__policy {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 24px;
}
@media (max-width: 959px) {
  .l-footer__policy {
    gap: 8px 16px;
  }
}
@media (max-width: 959px) {
  .l-footer__policy--row1, .l-footer__policy--row2 {
    width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 959px) {
  .l-footer__policy--row3 {
    width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 16px;
  }
}
.l-footer__policy__item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #2a2a2a;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.l-footer__policy__item a::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #2a2a2a;
  margin-right: 6px;
}
@media (max-width: 959px) {
  .l-footer__policy__item a::before {
    border-width: 4px 0 4px 6px;
    margin-right: 4px;
  }
}
.l-footer__policy__item a:hover {
  opacity: 0.7;
}
.l-footer__copyright {
  margin: 0;
  white-space: nowrap;
}
@media (max-width: 959px) {
  .l-footer__copyright {
    margin-top: 8px;
    font-size: 9px;
  }
}

.c-nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  gap: 2.5rem;
}
@media (max-width: 959px) {
  .c-nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.c-nav-link {
  color: var(--color-primary);
  text-decoration: none;
  cursor: pointer;
  font-size: var(--font-size-4xl);
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: calc(var(--font-size-4xl) * 0.001 * 0);
}

@media (min-width: 960px) {
  .c-nav-sublist {
    display: none !important;
  }
}

.c-card {
  position: relative;
  color: var(--color-primary);
  text-decoration: none;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: 1px solid var(--color-primary);
}
.c-card:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.c-card-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-card-screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  pointer-events: none;
  z-index: 100;
}

@media (min-width: 960px) {
  .c-card:hover .c-card-screen {
    opacity: 1;
    background-color: attr(data-hover-color);
  }
}

@media (max-width: 959px) {
  .c-card:active .c-card-screen {
    opacity: 1;
    background-color: attr(data-hover-color);
  }
}

.c-card-title {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: var(--font-size-3xl);
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: calc(var(--font-size-3xl) * 0.001 * 0);
  text-decoration: underline;
}
@media (max-width: 959px) {
  .c-card-title {
    top: 0.5rem;
    left: 0.5rem;
  }
}

.c-card-category {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  text-align: right;
  font-size: var(--font-size-xl);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  letter-spacing: calc(var(--font-size-xl) * 0.001 * 0);
}
@media (max-width: 959px) {
  .c-card-category {
    bottom: 1rem;
    right: 1rem;
    font-size: var(--font-size-sm);
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    letter-spacing: calc(var(--font-size-sm) * 0.001 * 0);
  }
}

.c-card-image {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.c-card-image img {
  -o-object-fit: contain;
     object-fit: contain;
  width: calc(100% - 15rem);
  height: calc(100% - 15rem);
}
@media (max-width: 959px) {
  .c-card-image img {
    width: calc(100% - 5rem);
    height: calc(100% - 5rem);
  }
}

@media (min-width: 960px) {
  .c-grid:hover .c-card {
    outline: 1px solid var(--color-gray-300);
  }
  .c-grid:hover .c-card-image {
    -webkit-filter: grayscale(1);
            filter: grayscale(1);
  }
}

@media (max-width: 959px) {
  .c-grid:active .c-card {
    outline: 1px solid var(--color-gray-300);
  }
  .c-grid:active .c-card-image {
    -webkit-filter: grayscale(1);
            filter: grayscale(1);
  }
}

@media (min-width: 960px) {
  .c-grid:hover .c-card:hover {
    outline: 1px solid var(--color-primary);
    position: relative;
    z-index: 1000;
  }
  .c-grid:hover .c-card:hover .c-card-image {
    -webkit-filter: grayscale(0);
            filter: grayscale(0);
  }
}

@media (max-width: 959px) {
  .c-grid:active .c-card:active {
    outline: 1px solid var(--color-primary);
    position: relative;
    z-index: 1000;
  }
  .c-grid:active .c-card:active .c-card-image {
    -webkit-filter: grayscale(0);
            filter: grayscale(0);
  }
}

.c-grid {
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
}
@media (max-width: 959px) {
  .c-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.c-category-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 4.5rem;
}
@media (max-width: 959px) {
  .c-category-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2rem 0;
  }
}

.c-category-item {
  list-style: none;
}
.c-category-item:not(:last-child)::after {
  content: "+";
  margin: 0 1rem;
}
@media (max-width: 959px) {
  .c-category-item:not(:last-child)::after {
    content: none;
  }
  .c-category-item::before {
    content: "+";
    margin: 0 1rem;
  }
}

.c-category-link {
  font-size: var(--font-size-3xl);
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: calc(var(--font-size-3xl) * 0.001 * 0);
  color: var(--color-primary);
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
@media (max-width: 959px) {
  .c-category-link {
    font-size: var(--font-size-lg);
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: calc(var(--font-size-lg) * 0.001 * 0);
  }
}
.c-category-link:hover {
  color: var(--color-gray-300);
}

/* スライドの動き等速 */
.c-swiper {
  margin-bottom: 0.5rem;
}
@media (max-width: 959px) {
  .c-swiper {
    height: 20rem;
  }
}

.c-swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}

/* variablewidthを有効にするためのスタイル */
.swiper-slide {
  width: auto !important;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media (max-width: 959px) {
  .swiper-slide {
    height: 20rem;
  }
}
@media (max-width: 959px) {
  .swiper-slide img {
    height: 20rem !important;
  }
}

/* 画像のサイズ調整 */
.swiper-slide img {
  height: auto;
  width: auto;
  max-width: none;
  display: block;
}

.c-swiper-single {
  width: 100%;
  overflow-x: hidden;
}

.c-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.c-loading.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.c-loading__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.c-loading__logo {
  width: 200px;
  height: auto;
  -webkit-animation: loadingPulse 1.5s ease-in-out infinite;
          animation: loadingPulse 1.5s ease-in-out infinite;
}
.c-loading__text {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.2em;
  color: #246e49;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-loading__dots {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-left: 2px;
}
.c-loading__dots span {
  -webkit-animation: loadingDots 1.4s infinite;
          animation: loadingDots 1.4s infinite;
  opacity: 0;
}
.c-loading__dots span:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.c-loading__dots span:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.c-loading__dots span:nth-child(3) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

@-webkit-keyframes loadingPulse {
  0%, 100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 0.7;
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
  }
}

@keyframes loadingPulse {
  0%, 100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 0.7;
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
  }
}
@-webkit-keyframes loadingDots {
  0%, 20% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes loadingDots {
  0%, 20% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.js-fade-in {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.js-fade-in.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.js-float.is-visible {
  -webkit-animation: float 3s ease-in-out infinite;
          animation: float 3s ease-in-out infinite;
}

.js-float-slow.is-visible {
  -webkit-animation: floatSlow 4s ease-in-out infinite;
          animation: floatSlow 4s ease-in-out infinite;
}

.js-sway.is-visible {
  -webkit-animation: sway 3.5s ease-in-out infinite;
          animation: sway 3.5s ease-in-out infinite;
}

.js-sway-slow.is-visible {
  -webkit-animation: swaySlow 5s ease-in-out infinite;
          animation: swaySlow 5s ease-in-out infinite;
}

@-webkit-keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}

@keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}
@-webkit-keyframes floatSlow {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
@keyframes floatSlow {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
@-webkit-keyframes sway {
  0%, 100% {
    -webkit-transform: translateX(0) rotate(0deg);
            transform: translateX(0) rotate(0deg);
  }
  25% {
    -webkit-transform: translateX(8px) rotate(2deg);
            transform: translateX(8px) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-8px) rotate(-2deg);
            transform: translateX(-8px) rotate(-2deg);
  }
}
@keyframes sway {
  0%, 100% {
    -webkit-transform: translateX(0) rotate(0deg);
            transform: translateX(0) rotate(0deg);
  }
  25% {
    -webkit-transform: translateX(8px) rotate(2deg);
            transform: translateX(8px) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-8px) rotate(-2deg);
            transform: translateX(-8px) rotate(-2deg);
  }
}
@-webkit-keyframes swaySlow {
  0%, 100% {
    -webkit-transform: translateX(0) rotate(0deg);
            transform: translateX(0) rotate(0deg);
  }
  25% {
    -webkit-transform: translateX(5px) rotate(1deg);
            transform: translateX(5px) rotate(1deg);
  }
  75% {
    -webkit-transform: translateX(-5px) rotate(-1deg);
            transform: translateX(-5px) rotate(-1deg);
  }
}
@keyframes swaySlow {
  0%, 100% {
    -webkit-transform: translateX(0) rotate(0deg);
            transform: translateX(0) rotate(0deg);
  }
  25% {
    -webkit-transform: translateX(5px) rotate(1deg);
            transform: translateX(5px) rotate(1deg);
  }
  75% {
    -webkit-transform: translateX(-5px) rotate(-1deg);
            transform: translateX(-5px) rotate(-1deg);
  }
}
a {
  -webkit-transition: opacity 0.3s ease, color 0.3s ease;
  transition: opacity 0.3s ease, color 0.3s ease;
}
a:hover {
  opacity: 0.7;
}

.l-header__nav__item a,
.l-footer__organizations__item a,
.l-footer__policy__item a {
  -webkit-transition: color 0.3s ease, opacity 0.3s ease;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.l-header__nav__item a:hover,
.l-footer__organizations__item a:hover,
.l-footer__policy__item a:hover {
  opacity: 0.7;
}

.p-sns__item a {
  display: block;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.p-sns__item a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 0.8;
}

.c-pagetop {
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.c-pagetop:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  opacity: 0.9;
}

.l-header__hamburger,
.l-header__lang__toggle {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.l-header__hamburger:hover,
.l-header__lang__toggle:hover {
  opacity: 0.7;
}

.p-top {
  width: 100vw;
}
@media (max-width: 959px) {
  .p-top {
    padding-top: 60px;
  }
}
@media (min-width: 960px) {
  .p-top__content {
    height: 100vh;
  }
}
.p-top__content h1 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 100%;
}
@media (min-width: 960px) {
  .p-top__content h1 {
    top: 70px;
  }
}
@media (max-width: 959px) {
  .p-top__content h1 {
    top: 0px;
    margin-top: 20px;
  }
}
body.is-en .p-top__content h1 {
  max-width: none;
}
@media (max-width: 959px) {
  body.is-en .p-top__content h1 {
    margin-top: 0;
  }
}
.p-top__content h1 img {
  width: 50vw;
  margin: auto;
  display: block;
}
@media (max-width: 959px) {
  .p-top__content h1 img {
    width: 100%;
  }
}
.p-top__content__text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  right: 125px;
  bottom: -60px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 10;
}
@media (max-width: 959px) {
  .p-top__content__text {
    right: 0;
    left: 0;
    bottom: 25px;
    margin: auto;
  }
}
.p-top__content__text__inner {
  font-family: "a1-gothic-neu", sans-serif;
  font-weight: 700;
  font-size: 10px;
  line-height: 1.75;
  letter-spacing: 0.08em;
  color: #2a2a2a;
  margin: 0;
}
@media (max-width: 959px) {
  .p-top__content__text__inner {
    font-size: 8px;
    text-align: center;
  }
}
.p-top__fv {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 960px) {
  .p-top__fv {
    height: calc(100vh - 80px);
  }
}
.p-top__fv__mv {
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 960px) {
  .p-top__fv__mv {
    height: 100vh;
  }
}
.p-top__fv__mv img {
  width: 100%;
}
.p-top__fv__img {
  position: absolute;
  pointer-events: none;
}
.p-top__fv__img--01 {
  width: 47.29%;
  left: 26.21%;
  top: 0;
  z-index: 10;
}
@media (max-width: 959px) {
  .p-top__fv__img--01 {
    width: 72%;
    left: 16.8%;
    top: 23.1%;
  }
}
.p-top__fv__img--02 {
  width: 23.87%;
  left: 5.78%;
  top: 6.92%;
  z-index: 5;
}
@media (max-width: 959px) {
  .p-top__fv__img--02 {
    width: 41.7%;
    left: 6.4%;
    top: 3.1%;
  }
}
.p-top__fv__img--03 {
  width: 6.44%;
  left: 17.72%;
  top: 73.65%;
  z-index: 8;
}
@media (max-width: 959px) {
  .p-top__fv__img--03 {
    width: 13%;
    left: 28.7%;
    top: 78.5%;
  }
}
.p-top__fv__img--04 {
  width: 20.72%;
  left: 70.94%;
  top: 5.38%;
  z-index: 5;
}
@media (max-width: 959px) {
  .p-top__fv__img--04 {
    width: 39.3%;
    left: 53.6%;
    top: 4.4%;
  }
}
.p-top__fv__img--06 {
  width: 15.67%;
  left: 4.83%;
  top: 65.96%;
  z-index: 5;
}
@media (max-width: 959px) {
  .p-top__fv__img--06 {
    width: 30.8%;
    left: 5.2%;
    top: 66.6%;
  }
}
.p-top__fv__img--07 {
  width: 28.55%;
  left: 65.67%;
  top: 52.12%;
  z-index: 5;
}
@media (max-width: 959px) {
  .p-top__fv__img--07 {
    width: 52%;
    left: 43.9%;
    top: 63.8%;
  }
}
.p-top__fv__img--08 {
  width: 3.37%;
  left: 75.99%;
  top: 24.23%;
  z-index: 8;
}
@media (max-width: 959px) {
  .p-top__fv__img--08 {
    width: 8.6%;
    left: 6.7%;
    top: 34.6%;
    -webkit-transform: rotate(12.31deg);
            transform: rotate(12.31deg);
  }
}
.p-top__fv__img--09 {
  width: 6.52%;
  left: 81.26%;
  top: 2.69%;
  z-index: 8;
}
@media (max-width: 959px) {
  .p-top__fv__img--09 {
    display: block;
    width: 12.5%;
    left: 80.3%;
    top: 14%;
  }
}
.p-top__fv__img--10 {
  width: 3%;
  left: 85.43%;
  top: 37.69%;
  z-index: 8;
  -webkit-transform: rotate(-24deg);
          transform: rotate(-24deg);
}
@media (max-width: 959px) {
  .p-top__fv__img--10 {
    width: 8.6%;
    left: 85.6%;
    top: 53.1%;
    -webkit-transform: rotate(-13.2deg);
            transform: rotate(-13.2deg);
  }
}
.p-top__fv__img--11 {
  width: 2.93%;
  left: 88.29%;
  top: 40.58%;
  z-index: 8;
  -webkit-transform: rotate(-13deg);
          transform: rotate(-13deg);
}
@media (max-width: 959px) {
  .p-top__fv__img--11 {
    width: 6.4%;
    left: 71.7%;
    top: 14.2%;
    -webkit-transform: rotate(4.98deg);
            transform: rotate(4.98deg);
  }
}
.p-top__intro {
  background-color: #246e49;
  padding: 30px 0;
}
@media (max-width: 959px) {
  .p-top__intro {
    padding: 40px 0;
  }
}
.p-top__intro__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
body.is-en .p-top__intro__inner {
  max-width: none;
}
@media (max-width: 959px) {
  .p-top__intro__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    padding: 0 16px;
  }
}
.p-top__intro__main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media (max-width: 959px) {
  .p-top__intro__main {
    gap: 20px;
  }
}
.p-top__intro__image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 959px) {
  .p-top__intro__image {
    max-width: 100%;
    border-width: 4px;
  }
}
.p-top__intro__illust {
  width: 240px;
  height: auto;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.p-top__intro__illust--left {
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
}
.p-top__intro__illust--right {
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
}
.p-top__intro__illust--sp {
  width: 100%;
  max-width: 280px;
  height: auto;
}
.p-top__intro__text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.75;
  letter-spacing: 0.08em;
  color: #fff;
  text-align: center;
  margin: 0;
}
@media (max-width: 959px) {
  .p-top__intro__text {
    font-size: 16px;
    line-height: 1.75;
  }
}

.p-concept {
  padding: 80px 0 60px;
  background-color: #fff;
}
@media (max-width: 959px) {
  .p-concept {
    padding: 40px 0 40px;
  }
}
.p-concept__inner {
  width: 90vw;
  max-width: 1452px;
  margin: 0 auto;
}
body.is-en .p-concept__inner {
  margin-bottom: 120px;
}
@media (max-width: 959px) {
  body.is-en .p-concept__inner {
    margin-bottom: 60px;
  }
}
@media (max-width: 959px) {
  .p-concept__inner {
    width: 100%;
    padding: 0 16px;
  }
}
.p-concept__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto 80px;
}
body.is-en .p-concept__header {
  max-width: none;
}
@media (max-width: 959px) {
  .p-concept__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 24px;
    margin-bottom: 32px;
  }
}
.p-concept__images-top {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.p-concept__images-top__img {
  width: clamp(220px, 30vw, 500px);
  height: auto;
}
@media (max-width: 959px) {
  .p-concept__images-top__img {
    display: block;
    margin: auto;
  }
}
.p-concept__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media (max-width: 959px) {
  .p-concept__title {
    width: 100%;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: left;
  }
}
.p-concept__title__en {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.4;
  letter-spacing: 0.2em;
  color: #2a2a2a;
  white-space: nowrap;
}
@media (max-width: 959px) {
  .p-concept__title__en {
    font-size: 24px;
  }
}
.p-concept__title__small {
  font-family: "Noto-sans-JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.2em;
  color: #2a2a2a;
  white-space: nowrap;
}
@media (max-width: 959px) {
  .p-concept__title__small {
    font-size: 16px;
  }
}
.p-concept__title__ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: clamp(24px, 3vw, 42px);
  line-height: normal;
  letter-spacing: 0.08em;
  color: #246e49;
  white-space: nowrap;
}
@media (max-width: 959px) {
  .p-concept__title__ja {
    font-size: 23px;
    white-space: normal;
  }
}
.p-concept__content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  max-width: 1152px;
  margin: 0 auto 60px;
}
body.is-en .p-concept__content {
  max-width: 1252px;
  display: block;
}
@media (max-width: 959px) {
  .p-concept__content {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
  }
}
.p-concept__content__image {
  width: 480px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.p-concept__content__image img {
  width: 100%;
  height: auto;
}
@media (max-width: 959px) {
  .p-concept__content__image {
    width: clamp(220px, 80vw, 500px);
    margin: 0 auto;
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
  }
}
.p-concept__content__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.08em;
  color: #2a2a2a;
}
.p-concept__content__text .comingsoon {
  height: 100%;
}
@media (max-width: 959px) {
  .p-concept__content__text {
    font-size: 12px;
    line-height: 1.8;
  }
}
.p-concept__content__text p {
  margin: 0;
}
.p-concept__content__text--spacer {
  height: 1em;
}
@media (max-width: 959px) {
  .p-concept__content__text--spacer {
    height: 0.5em;
  }
}
.p-concept__catchcopy {
  text-align: center;
  margin-bottom: 80px;
}
.p-concept__catchcopy .comingsoon {
  width: 100%;
  max-width: 100%;
}
@media (max-width: 959px) {
  .p-concept__catchcopy {
    margin-bottom: 40px;
  }
}
.p-concept__catchcopy p {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.8;
  letter-spacing: 0.2em;
  color: #2a2a2a;
  margin: 0;
}
@media (max-width: 959px) {
  .p-concept__catchcopy p {
    font-size: 16px;
    letter-spacing: 0.1em;
  }
}
.p-concept__underline {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: 1px;
}
.p-concept__underline__line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #2a2a2a;
}
.p-concept__underline__img {
  position: absolute;
  left: 25%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  width: 200px;
  height: auto;
}
@media (max-width: 959px) {
  .p-concept__underline__img {
    width: 120px;
    left: 16px;
  }
}

.p-map {
  padding-top: 80px;
  background-color: #fff;
}
@media (max-width: 959px) {
  .p-map {
    padding-top: 0px;
  }
}
.p-map__inner {
  width: 90vw;
  max-width: 952px;
  margin: 0 auto;
}
@media (max-width: 959px) {
  .p-map__inner {
    width: 100%;
    padding: 0 16px;
  }
}
.p-map__header {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 959px) {
  .p-map__header {
    margin-bottom: 24px;
  }
}
.p-map__header__illust {
  position: absolute;
  right: 0;
  top: -40px;
  width: 250px;
  height: auto;
}
@media (max-width: 959px) {
  .p-map__header__illust {
    display: none;
  }
}
.p-map__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.p-map__title__en {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.4;
  letter-spacing: 0.2em;
  color: #2a2a2a;
}
@media (max-width: 959px) {
  .p-map__title__en {
    font-size: 28px;
  }
}
.p-map__title__ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #2a2a2a;
}
@media (max-width: 959px) {
  .p-map__title__ja {
    font-size: 12px;
  }
}
.p-map__image {
  margin-bottom: 80px;
}
@media (max-width: 959px) {
  .p-map__image {
    margin-bottom: 40px;
  }
}
.p-map__image img {
  width: 100%;
  height: auto;
}
.p-map__underline {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: 1px;
}
.p-map__underline__line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #2a2a2a;
}

.p-access {
  background-color: #f8f3e6;
  padding: 100px 0;
  position: relative;
}
@media (max-width: 959px) {
  .p-access {
    padding: 40px 0;
  }
}
.p-access__inner {
  width: 90vw;
  max-width: 1352px;
  margin: 0 auto;
  gap: 60px;
  position: relative;
}
@media (max-width: 959px) {
  .p-access__inner {
    width: 100%;
    padding: 0 16px;
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.p-access__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin-bottom: 30px;
}
@media (max-width: 959px) {
  .p-access__title {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-access__title__en {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.4;
  letter-spacing: 0.2em;
  color: #246e49;
}
@media (max-width: 959px) {
  .p-access__title__en {
    font-size: 28px;
  }
}
.p-access__title__ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #246e49;
}
@media (max-width: 959px) {
  .p-access__title__ja {
    font-size: 12px;
  }
}
.p-access__chart img {
  width: 100%;
  height: auto;
}

.p-marquee {
  background-color: #246e49;
  padding: 16px 0;
  overflow: hidden;
  width: 100%;
}
.p-marquee__track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-animation: marquee 60s linear infinite;
          animation: marquee 60s linear infinite;
}
.p-marquee__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.p-marquee__text {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 5px;
  color: #fff;
  white-space: nowrap;
  padding: 0 24px;
}
.p-marquee__icon {
  width: 24px;
  height: auto;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.p-sns {
  background-color: #fff;
  padding-top: 80px;
  padding-bottom: 60px;
  text-align: center;
}
@media (max-width: 959px) {
  .p-sns {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.p-sns__inner {
  width: 90vw;
  max-width: 1352px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 959px) {
  .p-sns__inner {
    width: 100%;
    padding: 0 16px;
  }
}
.p-sns__banner {
  display: block;
  width: 100%;
  max-width: 640px;
  background-color: #246e49;
  border-radius: 16px;
  padding: 20px 40px;
  margin-bottom: 80px;
  text-decoration: none;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media (max-width: 959px) {
  .p-sns__banner {
    max-width: 100%;
    padding: 24px 20px;
    margin-bottom: 40px;
    border-radius: 12px;
  }
}
.p-sns__banner:hover {
  background-color: #2d8a5a;
}
.p-sns__banner:hover .p-sns__banner__arrow {
  -webkit-transform: translateX(8px);
          transform: translateX(8px);
  opacity: 0.7;
}
.p-sns__banner__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-sns__banner__text {
  text-align: left;
}
.p-sns__banner__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #fff;
  margin: 0 0 16px;
}
@media (max-width: 959px) {
  .p-sns__banner__title {
    font-size: 18px;
    margin-bottom: 12px;
  }
}
.p-sns__banner__subtitle {
  font-family: "a1-gothic-neu", sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.08em;
}
@media (max-width: 959px) {
  .p-sns__banner__subtitle {
    font-size: 18px;
  }
}
.p-sns__banner__link {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.75;
  letter-spacing: 0.08em;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
}
@media (max-width: 959px) {
  .p-sns__banner__link {
    font-size: 14px;
  }
}
.p-sns__banner__small-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.75;
  letter-spacing: 0.08em;
  padding-right: 20px;
  color: #fff;
  text-align: end;
  margin: 0;
}
@media (max-width: 959px) {
  .p-sns__banner__small-text {
    font-size: 14px;
  }
}
.p-sns__banner__arrow {
  background: url("./img/common/arrow_right.svg") no-repeat center center;
  width: 20px;
  height: 20px;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-left: 20px;
}
.p-sns__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.4;
  letter-spacing: 0.2em;
  color: #2a2a2a;
  margin-bottom: 24px;
}
@media (max-width: 959px) {
  .p-sns__title {
    font-size: 20px;
    margin-bottom: 16px;
  }
}
.p-sns__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 959px) {
  .p-sns__list {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 16px;
  }
}
.p-sns__item a {
  display: block;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.p-sns__item a:hover {
  opacity: 0.7;
}
.p-sns__item a img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 959px) {
  .p-sns__item a img {
    width: 35px;
    height: 35px;
  }
}

.c-pagetop {
  position: fixed;
  bottom: 35px;
  right: 30px;
  z-index: 100;
  text-decoration: none;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
@media (max-width: 959px) {
  .c-pagetop {
    bottom: 16px;
    right: 16px;
  }
}
.c-pagetop:hover {
  opacity: 0.8;
}
.c-pagetop__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80px;
  height: 60px;
  border: 1px solid #2a2a2a;
  background-color: #246e49;
  border-radius: 50%;
}
@media (max-width: 959px) {
  .c-pagetop__inner {
    width: 70px;
    height: 60px;
  }
}
.c-pagetop__arrow {
  display: block;
  background: url("./img/common/arrow_top.svg") no-repeat center center;
  width: 20px;
  height: 20px;
  margin-bottom: 10px;
}
@media (max-width: 959px) {
  .c-pagetop__arrow {
    width: 16px;
    height: 16px;
  }
}
.c-pagetop__text {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.05em;
  color: #fff;
}
@media (max-width: 959px) {
  .c-pagetop__text {
    font-size: 8px;
  }
}

.comingsoon {
  display: block;
  background-color: gray;
  height: 400px;
  width: 100%;
  margin-bottom: 60px;
  max-width: 100%;
  position: relative;
}
@media (max-width: 959px) {
  .comingsoon {
    width: 100%;
    max-width: 100%;
  }
}
.comingsoon::after {
  content: "Comming soon";
  position: absolute;
  inset: 0;
  font-size: 16px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  color: #ffffff;
  font-weight: 400;
  margin: 0;
}

.p-article-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding: 0 1rem;
  gap: 1px;
}
@media (max-width: 959px) {
  .p-article-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    border-top: 1px solid var(--color-primary);
    border-bottom: 1px solid var(--color-primary);
    margin-top: 2rem;
    padding: 0;
  }
}
.p-article-header__image {
  outline: 1px solid var(--color-primary);
  width: 50vw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5rem;
}
@media (max-width: 959px) {
  .p-article-header__image {
    outline: none;
    width: 100vw;
    padding: 3rem;
    border-bottom: 1px solid var(--color-primary);
  }
}
.p-article-header__image img {
  width: 100%;
  display: block;
  margin: auto;
}
.p-article-header__text {
  outline: 1px solid var(--color-primary);
  width: 50vw;
  padding: 8rem;
}
@media (max-width: 959px) {
  .p-article-header__text {
    padding: 0;
    width: 100vw;
    outline: none;
    padding: 3rem;
  }
}
.p-article-header__text h1 {
  font-size: var(--font-size-5xl);
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: calc(var(--font-size-5xl) * 0.001 * 0);
  margin-bottom: 2rem;
}
@media (max-width: 959px) {
  .p-article-header__text h1 {
    font-size: var(--font-size-4xl);
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: calc(var(--font-size-4xl) * 0.001 * 0);
  }
}
.p-article-header__text table {
  margin-bottom: 7.5rem;
}
@media (max-width: 959px) {
  .p-article-header__text table {
    margin-bottom: 3.5rem;
  }
}
.p-article-header__text table th,
.p-article-header__text table td {
  font-size: var(--font-size-xl);
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: calc(var(--font-size-xl) * 0.001 * 0);
}
@media (max-width: 959px) {
  .p-article-header__text table th,
  .p-article-header__text table td {
    font-size: var(--font-size-md);
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: calc(var(--font-size-md) * 0.001 * 0);
  }
}
.p-article-header__text table th {
  text-align: left;
  width: 8rem;
}
.p-article-header__text section p {
  font-size: var(--font-size-lg);
  font-weight: 400;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: calc(var(--font-size-lg) * 0.001 * 0);
  text-align: justify;
}
@media (max-width: 959px) {
  .p-article-header__text section p {
    font-size: var(--font-size-md);
    font-weight: 400;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: calc(var(--font-size-md) * 0.001 * 0);
  }
}
.p-article-header__text section p:not(:last-child) {
  margin-bottom: 2rem;
}

.p-article-wrap {
  width: calc(100% - 2rem);
  outline: 1px solid var(--color-primary);
  margin: 1px auto 0;
}
@media (max-width: 959px) {
  .p-article-wrap {
    width: 100%;
    margin: 2rem auto;
    outline: none;
    border-bottom: 1px solid var(--color-primary);
  }
}

.p-article-body {
  max-width: 71.2rem;
  margin: auto;
  padding: 7.5rem 0;
}
@media (max-width: 959px) {
  .p-article-body {
    padding: 3.25rem 3rem;
  }
}
.p-article-body img {
  display: block;
  margin: 7.5rem auto;
}
@media (max-width: 959px) {
  .p-article-body img {
    margin: 3.25rem auto;
    max-width: 100%;
  }
}
.p-article-body p {
  font-size: var(--font-size-md);
  font-weight: 400;
  font-style: normal;
  line-height: 1.85;
  letter-spacing: calc(var(--font-size-md) * 0.001 * 50);
}
@media (max-width: 959px) {
  .p-article-body p {
    font-size: var(--font-size-base);
    font-weight: 400;
    font-style: normal;
    line-height: 1.85;
    letter-spacing: calc(var(--font-size-base) * 0.001 * 50);
  }
}

.p-article-credit {
  width: 71.2rem;
  margin: 0 auto 15rem;
  padding: 7.5rem 0;
}
@media (max-width: 959px) {
  .p-article-credit {
    padding: 3.25rem 3rem;
    width: 100%;
    margin: 0 auto 5rem;
  }
}
.p-article-credit h2 {
  font-size: var(--font-size-lg);
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: calc(var(--font-size-lg) * 0.001 * 50);
  margin-bottom: 2rem;
}
.p-article-credit p {
  font-size: var(--font-size-sm);
  font-weight: 400;
  font-style: normal;
  line-height: 2;
  letter-spacing: calc(var(--font-size-sm) * 0.001 * 50);
}
@media (max-width: 959px) {
  .p-article-credit p {
    font-size: var(--font-size-xs);
    font-weight: 400;
    font-style: normal;
    line-height: 2;
    letter-spacing: calc(var(--font-size-xs) * 0.001 * 50);
  }
}

.p-article-other {
  margin-bottom: 10rem;
  position: relative;
}
@media (max-width: 959px) {
  .p-article-other {
    border-bottom: 1px solid var(--color-primary);
    padding-bottom: 5rem;
    margin: 0;
  }
}
.p-article-other h3 {
  margin-left: 1rem;
  margin-bottom: 2rem;
  font-size: var(--font-size-3xl);
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: calc(var(--font-size-3xl) * 0.001 * 50);
}
.p-article-other .swiper-slide {
  display: block;
  height: 100%;
}
.p-article-other .swiper-slide-item {
  height: 100%;
}
.p-article-other .swiper-button-prev:after,
.p-article-other .swiper-button-next:after {
  content: none;
}
.p-article-other .swiper-button-next {
  right: 2rem;
  top: 2rem;
}
.p-article-other .swiper-button-prev {
  right: 6rem;
  left: inherit;
  top: 2rem;
}

.p-about-capability {
  width: 1220px;
  margin: 15rem auto;
}
@media (max-width: 959px) {
  .p-about-capability {
    width: 100vw;
    margin: 2rem auto;
    padding: 3rem;
    overflow-x: hidden;
  }
}
.p-about-capability h3 {
  font-size: var(--font-size-3xl);
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: calc(var(--font-size-3xl) * 0.001 * 50);
  margin-bottom: 5rem;
}
.p-about-capability__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
}
@media (max-width: 959px) {
  .p-about-capability__row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    grid-template-columns: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-about-capability__col {
  outline: 1px solid var(--color-primary);
  padding: 1.5rem 1.5rem 3rem;
}
@media (max-width: 959px) {
  .p-about-capability__col {
    padding: 2rem;
  }
}
.p-about-capability__col h4 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: calc(var(--font-size-lg) * 0.001 * 50);
  margin-bottom: 3rem;
}
@media (max-width: 959px) {
  .p-about-capability__col h4 {
    font-size: var(--font-size-md);
    font-weight: 600;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: calc(var(--font-size-md) * 0.001 * 50);
    margin-bottom: 1.5rem;
  }
}
.p-about-capability__col h4 small {
  font-size: var(--font-size-sm);
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: calc(var(--font-size-sm) * 0.001 * 50);
}
@media (max-width: 959px) {
  .p-about-capability__col h4 small {
    font-size: var(--font-size-xs);
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: calc(var(--font-size-xs) * 0.001 * 50);
  }
}
.p-about-capability__col li {
  font-size: var(--font-size-lg);
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: calc(var(--font-size-lg) * 0.001 * 50);
  list-style: none;
}
@media (max-width: 959px) {
  .p-about-capability__col li {
    font-size: var(--font-size-md);
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: calc(var(--font-size-md) * 0.001 * 50);
  }
}

.p-about-client {
  width: 1220px;
  margin: 15rem auto;
}
@media (max-width: 959px) {
  .p-about-client {
    width: 100vw;
    margin: 5rem auto;
    padding: 0 3rem;
    overflow-x: hidden;
  }
}
.p-about-client h3 {
  font-size: var(--font-size-3xl);
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: calc(var(--font-size-3xl) * 0.001 * 50);
  margin-bottom: 5rem;
}
.p-about-client img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 959px) {
  .p-about-client__image--sp {
    display: inherit;
  }
}
@media (min-width: 960px) {
  .p-about-client__image--sp {
    display: none !important;
  }
}
@media (max-width: 959px) {
  .p-about-client__image--pc {
    display: none !important;
  }
}
@media (min-width: 960px) {
  .p-about-client__image--pc {
    display: inherit;
  }
}

.p-about-header {
  width: 1220px;
  margin: 0 auto;
  padding-top: 33rem;
}
@media (max-width: 959px) {
  .p-about-header {
    width: 100vw;
    padding-top: 18rem;
    overflow-x: hidden;
  }
}
.p-about-header h1 {
  text-align: center;
  margin-bottom: 3.5rem;
  font-size: var(--font-size-6xl);
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: calc(var(--font-size-6xl) * 0.001 * 50);
}
@media (max-width: 959px) {
  .p-about-header h1 {
    font-size: var(--font-size-4xl);
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: calc(var(--font-size-4xl) * 0.001 * 50);
  }
}
.p-about-header h1 + p {
  text-align: center;
  margin-bottom: 15rem;
  font-size: var(--font-size-4xl);
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: calc(var(--font-size-4xl) * 0.001 * 50);
}
@media (max-width: 959px) {
  .p-about-header h1 + p {
    font-size: var(--font-size-2xl);
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: calc(var(--font-size-2xl) * 0.001 * 50);
  }
}

.p-about-slider {
  width: 100vw;
  overflow: hidden;
}

.p-about-whatwedo {
  width: 1220px;
  margin: auto;
}
@media (max-width: 959px) {
  .p-about-whatwedo {
    width: 100vw;
    overflow-x: hidden;
  }
}
.p-about-whatwedo__header {
  margin-top: 10rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 959px) {
  .p-about-whatwedo__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 3rem;
    margin-top: 0;
  }
}
.p-about-whatwedo__header__title {
  width: 48.6rem;
}
@media (max-width: 959px) {
  .p-about-whatwedo__header__title {
    width: 100vw;
  }
}
.p-about-whatwedo__header__title p {
  font-size: var(--font-size-3xl);
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: calc(var(--font-size-3xl) * 0.001 * 50);
  margin-bottom: 3.5rem;
}
@media (max-width: 959px) {
  .p-about-whatwedo__header__title p {
    font-size: var(--font-size-xl);
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: calc(var(--font-size-xl) * 0.001 * 50);
  }
}
.p-about-whatwedo__header__title h2 {
  font-size: var(--font-size-4xl);
  font-weight: 400;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: calc(var(--font-size-4xl) * 0.001 * 50);
}
@media (max-width: 959px) {
  .p-about-whatwedo__header__title h2 {
    font-size: var(--font-size-xl);
    font-weight: 400;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: calc(var(--font-size-xl) * 0.001 * 50);
  }
}
.p-about-whatwedo__header__body {
  padding-top: 7.5rem;
  margin-left: 14rem;
  width: 50rem;
}
@media (max-width: 959px) {
  .p-about-whatwedo__header__body {
    padding-top: 3.25rem;
    margin-left: 0;
    width: 100%;
  }
}
.p-about-whatwedo__header__body p {
  font-size: var(--font-size-lg);
  font-weight: 400;
  font-style: normal;
  line-height: 1.75;
  letter-spacing: calc(var(--font-size-lg) * 0.001 * 50);
  margin-bottom: 3rem;
}
@media (max-width: 959px) {
  .p-about-whatwedo__header__body p {
    font-size: var(--font-size-md);
    font-weight: 400;
    font-style: normal;
    line-height: 1.75;
    letter-spacing: calc(var(--font-size-md) * 0.001 * 50);
    margin-bottom: 3rem;
  }
}
.p-about-whatwedo__image {
  margin-top: 10rem;
  position: relative;
}
@media (max-width: 959px) {
  .p-about-whatwedo__image {
    margin-top: 0;
  }
}
.p-about-whatwedo__image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #679eff;
  mix-blend-mode: soft-light;
}
@media (max-width: 959px) {
  .p-about-whatwedo__image img {
    width: 100vw;
  }
}
@media (max-width: 959px) {
  .p-about-whatwedo__image--sp {
    display: inherit;
  }
}
@media (min-width: 960px) {
  .p-about-whatwedo__image--sp {
    display: none !important;
  }
}
@media (max-width: 959px) {
  .p-about-whatwedo__image--pc {
    display: none !important;
  }
}
@media (min-width: 960px) {
  .p-about-whatwedo__image--pc {
    display: inherit;
  }
}

@media (max-width: var(--breakpoint-md)) {
  .u-show-pc {
    display: none !important;
  }
}

@media (min-width: calc(var(--breakpoint-md) + 1px)) {
  .u-show-sp {
    display: none !important;
  }
}

@media (min-width: calc(var(--breakpoint-md) + 1px)) {
  .u-hide-pc {
    display: none !important;
  }
}

@media (max-width: var(--breakpoint-md)) {
  .u-hide-sp {
    display: none !important;
  }
}

.u-text-center {
  text-align: center !important;
}

.u-text-left {
  text-align: left !important;
}

.u-text-right {
  text-align: right !important;
}

.u-mt-0 {
  margin-top: 0 !important;
}

.u-mt-1 {
  margin-top: var(--spacing-sm) !important;
}

.u-mt-2 {
  margin-top: var(--spacing-md) !important;
}

.u-mt-3 {
  margin-top: var(--spacing-lg) !important;
}

.u-mt-4 {
  margin-top: var(--spacing-xl) !important;
}

.u-mt-5 {
  margin-top: var(--spacing-2xl) !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-mb-1 {
  margin-bottom: var(--spacing-sm) !important;
}

.u-mb-2 {
  margin-bottom: var(--spacing-md) !important;
}

.u-mb-3 {
  margin-bottom: var(--spacing-lg) !important;
}

.u-mb-4 {
  margin-bottom: var(--spacing-xl) !important;
}

.u-mb-5 {
  margin-bottom: var(--spacing-2xl) !important;
}

.u-pt-0 {
  padding-top: 0 !important;
}

.u-pt-1 {
  padding-top: var(--spacing-sm) !important;
}

.u-pt-2 {
  padding-top: var(--spacing-md) !important;
}

.u-pt-3 {
  padding-top: var(--spacing-lg) !important;
}

.u-pt-4 {
  padding-top: var(--spacing-xl) !important;
}

.u-pt-5 {
  padding-top: var(--spacing-2xl) !important;
}

.u-pb-0 {
  padding-bottom: 0 !important;
}

.u-pb-1 {
  padding-bottom: var(--spacing-sm) !important;
}

.u-pb-2 {
  padding-bottom: var(--spacing-md) !important;
}

.u-pb-3 {
  padding-bottom: var(--spacing-lg) !important;
}

.u-pb-4 {
  padding-bottom: var(--spacing-xl) !important;
}

.u-pb-5 {
  padding-bottom: var(--spacing-2xl) !important;
}

.u-block {
  display: block !important;
}

.u-inline {
  display: inline !important;
}

.u-inline-block {
  display: inline-block !important;
}

.u-flex {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.u-grid {
  display: grid !important;
}

.u-hidden {
  display: none !important;
}

.u-w-full {
  width: 100% !important;
}

.u-w-auto {
  width: auto !important;
}

.u-h-full {
  height: 100% !important;
}

.u-h-auto {
  height: auto !important;
}