@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@600&display=swap');

/* MediaQuery = PC => Tablet(max-width: 1023px) => SP (max-width: 599px)*/

/* =========================
  root設定
========================= */
:root {
  font-size: 62.5%;

  /* カラー変数 */
  --color_main: hsl(0, 0%, 100%);
  --color_base: hsl(0, 0%, 95%);
  /* --color_baseRGB:        255, 255, 255; */
  --color_baseHalf: hsl(0, 0%, 97%);
  /* --color_baseHalfRGB:    194, 26, 0; */
  --color_baseDark: hsl(0, 0%, 87%);
  /* --color_baseDarkRGB:    163, 22, 0; */
  --color_accent: hsl(25, 97%, 50%);
  --color_accentRGB: 255, 106, 0;
  --color_accentDark: hsl(25, 90%, 50%);
  --color_accentDarkRGB: 153, 101, 21;
  --color_titleGreen: hsl(146, 100%, 40%);
  --color_titleBlue: hsl(194, 86%, 46%);
  --color_LOYAL: hsl(212, 60%, 51%);
  --color_links: currentColor;
  --color_text: hsl(0, 0%, 0%);
  --linearGradient: linear-gradient(-30deg, var(--color_titleGreen) 0%, var(--color_titleBlue) 80%);

  /* フォントファミリー変数 */
  --font_family_ENG: "Inter", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", sans-serif;
  --font_weight_ENG: 700;

  /* border-radius変数 */
  --radius_xs: 3px;
  --radius_sm: 6px;
  --radius_md: 8px;
  --radius_lg: 12px;
  --radius_xl: 24px;

  /* line-height変数 */
  --line_height_sm: 1.3;
  --line_height_md: 1.5;
  --line_height_lg: 1.7;
  --line_height_xl: 2.0;
  --line_height_2xl: 2.2;

  /* サイズ変数 */
  --header_height: 50px;
  --contents__maxWidth: 100%;

  /* フォントサイズ変数 */
  --font_size_xs: 1.3vw;
  --font_size_sm: 1.4vw;
  --font_size_md: 1.6vw;
  --font_size_lg: 2.0vw;
  --font_size_xl: 2.4vw;
  --font_size_2xl: 3.0vw;
  --font_size_3xl: 3.8vw;
  --font_size_4xl: 5.2vw;
}

/* タブレット変数 */
@media (min-width: 600px) {
  :root {
    /* font-size: 72.5%; */

    /* サイズ変数 */
    --header_height: 50px;
  }
}

/* PC変数 */
@media (min-width: 1024px) {
  :root {
    /* font-size: 72.5%; */

    /* サイズ変数 */
    --header_height: 70px;
    --contents__maxWidth: 600px;
  }
}


/* =========================
  デバイス判定
========================= */
@media (max-width: 599px) {
  .pc {
    display: none !important;
  }

  .tablet:not(.sp) {
    display: none !important;
  }
}

@media (min-width: 600px) and (max-width: 1023px) {
  .tablet~.pc:not(.tablet) {
    display: none !important;
  }

  .sp:not(.tablet) {
    display: none !important;
  }
}

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

  .tablet:not(.pc) {
    display: none !important;
  }
}

/* デバイスが縦長の向き */
@media (orientation: portrait) {
  .landscape {
    display: none !important;
  }
}

/* デバイスが横長の向き */
@media (orientation: landscape) {
  .portrait {
    display: none !important;
  }
}


/* =========================
  html body
========================= */
html {
  touch-action: manipulation;
  background-color: var(--color_main);
  overscroll-behavior: none;
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", sans-serif;
  /* font-size: 1vw; */
  font-weight: normal;
  line-height: var(--line_height_md);
  background: var(--color_main);
  color: var(--color_text);
  text-align: left;
  font-feature-settings: "palt";
  background-color: var(--color_main);

  /* footer下寄せの指定 */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100svh;
}

@media (min-width: 600px) {
  body {
    /* font-size: calc(1vw * 0.8); */
  }
}

@media (min-width: 1024px) {
  body {
    /* font-size: calc(var(--contents__maxWidth) * 0.01); */
    /* font-size: calc(var(--contents__maxWidth) * 0.008); */
  }
}

body * {
  letter-spacing: 0.1em;
}


/* =========================
  common
========================= */
*:focus {
  outline: none;
}

img {
  display: block;
  /* Microsoft Edgeで画像検索無効に */
  pointer-events: none;
  user-select: none;
}

span.br {
  display: inline-block;
}

::selection {
  background-color: yellow;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: 0.1em;
  line-height: var(--line_height_sm);
}

/* links
------------------------- */
a {
  transition: opacity 0.15s, scale 0.15s;
}

@media (any-hover: hover) {
  a:hover {
    opacity: 0.5;
    transition: opacity 0.1s, scale 0.1s;
  }
}

a:active {
  opacity: 0.5;
  transition: opacity 0.1s, scale 0.1s;
}

p>a[href^="http"] {
  color: var(--color_links);
}

p>a[href^="http"][target="_blank"] {
  position: relative;
  /* margin-left:  0.2em; */
  /* margin-right: 0.2em; */
}

p>a[href^="http"][target="_blank"]::after,
.icon__externalLink {
  content: "";
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 0.1em;
  aspect-ratio: 1 / 1;
  transform: translate(0, 15%);
  -webkit-mask: url(../img/icon__externaLlink.svg) center / contain no-repeat;
  mask: url(../img/icon__externaLlink.svg) center / contain no-repeat;
  background-color: var(--color_links);
}

/* layout parts
------------------------- */
section {
  position: relative;
  flex: 1;
}

section:not(.hero):after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translate(-50%,100%);
  width: 40px;
  height: 20px;
  z-index: 1;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
section.benefit::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translate(-50%,0%);
  width: 40px;
  height: 20px;
  z-index: 1;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: var(--color_main);
}

.section__inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  padding-left: 80px;
  padding-right: 80px;
  padding-top: 100px;
  padding-bottom: 130px;
  margin: auto;
}

@media (max-width: 1024px) {
  .section__inner {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 100px;
    padding-bottom: 130px;
  }
}

.section__inner.aos-init {
  opacity: 0;
  transition: opacity 0.5s;
}

.section__inner.aos-init.aos-animate {
  opacity: 1;
}

.section__title {
  position: relative;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.section__title h2 {
  font-size: 4.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}
h2.size40 {font-size: 4.0rem;}
h2.size36 {font-size: 3.6rem;}
h2.size32 {font-size: 3.2rem;}
h2.size28 {font-size: 2.8rem;}
h2.size24 {font-size: 2.4rem;}
h2.size20 {font-size: 2.0rem;}

.section__title p {
  font-size: 2.0rem;
  font-weight: bold;
}

.section__title small {
  font-size: 1.4rem;
  font-weight: normal;
  opacity: 0.5;
}

.columns__two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: center;
}

.columns__two .section__title:nth-child(odd) {
  padding-right: 15px;
}

.columns__two .section__title:nth-child(even) {
  padding-left: 15px;
}

.columns__two .section__title h2 {
  font-size: 3.6rem;
  line-height: var(--line_height_md);
  font-weight: bold;
  margin-bottom: 10px;
}

.section__inner.aos-init .columns__two {
  scale: 0.97;
  transition: scale 0.5s;
}

.section__inner.aos-init.aos-animate .columns__two {
  scale: 1;
}

.textGradation {
  background: var(--linearGradient);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  width: fit-content;
  display: block;
  margin-left: auto;
  margin-right: auto;
}


/* =========================
  index.html
========================= */

/* -------------------------
  ローディング中の画面
------------------------- */
.loading__mask {
  z-index: 1001;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  user-select: none;
  text-align: center;
  background: var(--color_base);
  clip-path: polygon(0% 0%, 0% 100%, 0 100%, 0 50%, 100% 50%, 100% 50%, 0 50%, 0 100%, 100% 100%, 100% 0%);
  transition: clip-path 0.75s, opacity 0s 0.75s;
  will-change: clip-path;
}

body.loaded .loading__mask {
  clip-path: polygon(0% 0%, 0% 100%, 0 100%, 0 0, 100% 0%, 100% 100%, 0 100%, 0 100%, 100% 100%, 100% 0%);
  opacity: 0;
}

.loading__progress {
  --progress_percent: 0%;
  --bar_height: 4px;
  color: var(--color_text);
  position: absolute;
  top: 0;
  left: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: auto;
  max-width: 300px;
  pointer-events: none;
}

.loading__progressText {
  position: absolute;
  top: -1.3em;
  left: 0;
  width: 100%;
  font-size: 12px;
  height: 1em;
  line-height: 1;
}

.loading__progressText::before,
.loading__progressText::after {
  content: '';
  color: currentColor;
  font-family: system-ui;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

.loading__progressText::before {
  content: 'LOADING...';
  text-align: left;
  position: absolute;
  top: 0;
  left: 0;
  animation: loadingText 0.75s infinite linear;
}

@keyframes loadingText {
  0% {
    content: 'LOADING   ';
  }

  25% {
    content: 'LOADING.  ';
  }

  50% {
    content: 'LOADING.. ';
  }

  75% {
    content: 'LOADING...';
  }

  100% {
    content: 'LOADING   ';
  }
}

.loading__progressText::after {
  content: attr(data-progress);
  text-align: right;
  position: absolute;
  top: 0;
  right: 0;
}

.loading__progressBar {
  width: 100%;
  height: var(--bar_height);
  background-color: hsla(0, 0%, 0%, 0.1);
  border-radius: var(--bar_height);
  overflow: hidden;
}

.loading__progressBarFill {
  border-radius: var(--bar_height);
  height: 100%;
  width: var(--progress_percent);
  background-color: hsla(0, 0%, 0%, 1);
  transition: width 0.2s ease-in-out;
}


/* -------------------------
  scrolldown
------------------------- */
.scrolldown {
  position: absolute;
  bottom: 11.34em;
  right: 8%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.34em;
  opacity: 0.3;
}

.scrolldown__text {
  font-size: 2.67em;
  writing-mode: vertical-rl;
  line-height: 1;
  font-family: var(--font_family_ENG);
  font-weight: 600;
}

.scrolldown__line {
  --scrolldown_line_height: 20em;
  width: 1px;
  height: var(--scrolldown_line_height);
  display: block;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 50%);
  background-position: 0 calc(var(--scrolldown_line_height) * -1);
  background-size: 100% 200%;
  animation: scrolldown 2.2s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
}

@keyframes scrolldown {
  0% {
    background-position: 0 calc(var(--scrolldown_line_height) * -1);
  }

  75% {
    background-position: 0 0;
  }

  100% {
    background-position: 0 var(--scrolldown_line_height);
  }
}


/* -------------------------
  header
------------------------- */
header {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: auto;
  user-select: none;
}

.header__inner {
  width: 100%;
  height: 90px;
  padding: 20px 5vw;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
@media (max-width: 1366px) {
  .header__inner {
    padding: 20px 3vw;
  }
}
.header__inner * {
  pointer-events: all;
}

.header__logo {
  display: block;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.header__logo img {}

@media (any-hover: hover) {
  .header__logo:hover {
    opacity: 1;
  }
  .header__logo::after {
    content: "▲ PAGE TOPへ戻る";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    padding: 0.25em 1em;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: bold;
    /* font-family: var(--font_family_ENG); */
    color: hsl(0, 0%, 0%);
    /* background-color: hsla(0, 0%, 100%, 0.5); */
    /* border-radius: 100px; */
    width: 100%;
    height: 100%;
    margin: auto;
    text-align: center;
    white-space: nowrap;
    pointer-events: none;
    transition: 0.3s;
    opacity: 0;
    translate: 0 100%;
  }
  .header__logo:hover::after {
    opacity: 1;    
    translate: 0 0;
  }
  .header__logo img {
    transition: 0.3s;
    transform-origin: center top;
  }
  .header__logo:hover img {
    opacity: 1;
    translate: 0 -100%;
  }
  .header__logo.aos-init:not(.aos-animate),
  .header__logo.aos-init:not(.aos-animate) * {
    pointer-events: none !important;
  }
}

.header__nav {
  width: fit-content;
  height: 100%;
  position: relative;
  display: flex;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 0 1.5em;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  background: hsla(0, 0%, 100%, 0.5);
  margin: 0 10px;
}

@media (max-width: 1023px) {
  .header__nav {
    display: none;
  }
}

.header__list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

.header__list li {
  height: 100%;
}

.header__list li a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 1em;
}
.header__list li a:hover {
  color: var(--color_accent);
  opacity: 1;
}

.header__list li.aos-init a {
  transition: 0.15s;
}

.header__list li.aos-init.aos-animate:has(+ li:not(.aos-animate)) a,
.header__list li.aos-init.aos-animate:last-of-type a {
  color: var(--color_accent);
}

.header__contact {
  height: 100%;
}

.btn__contact {
  height: 100%;
  position: relative;
  overflow: hidden;
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  padding: 0 2em;
  border-radius: 4em;
  letter-spacing: 0.2em;
  background-color: var(--color_accent);
  background: url(../img/btn__bg.png) center center / 100% 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}

.btn__contact.aos-init.aos-animate::before {
  opacity: 0.3;
}

.btn__contact p {
  position: relative;
  z-index: 2;
}

/* -------------------------
  main
------------------------- */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}


/* -------------------------
  main
------------------------- */
@media (max-width: 1024px) {
  .fixedBtn__wrap {
    display: none;
  } 
}

.fixedBtn__Contact {
  position: fixed;
  bottom: 40px;
  right: 5vw;
  width:  160px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: hsla(0, 0%, 0%, 0.5);
  z-index: 10;
  pointer-events: none;
  backdrop-filter: blur(10px);
}
@media (max-width: 1366px) {
  .fixedBtn__Contact {
    right: 3vw;
  }
}
.fixedBtn__Contact.aos-init {
  opacity: 0;
  transform: translateY(16px);
  transition: 0.25s;
}
.fixedBtn__Contact.aos-init.aos-animate:has(+ .fixedBtn__Contact.aos-init:not(.aos-animate)) {
  opacity: 1;
  transform: translateY(0);
  transition: 
    opacity          0.5s 1.0s, 
    transform        0.5s 1.0s, 
    scale            0.3s 0.0s, 
    background-color 0.3s 0.0s;
  pointer-events: all;
}
.fixedBtn__Contact.aos-init.aos-animate:has(+ .fixedBtn__Contact.aos-init:not(.aos-animate)):hover {
  scale: 1.05;
  background-color: hsla(0, 0%, 0%, 0.8);
}
.fixedBtn__Contact.aos-init.aos-animate:has(+ .fixedBtn__Contact.aos-init:not(.aos-animate)):hover a {
  opacity: 1;
}
.aos-animate+.fixedBtn__Contact.aos-init.aos-animate,
.fixedBtn__Contact.aos-init.aos-animate:first-child {
  transform: translateY(-8px);
}

.fixedBtn__Contact::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 112.5%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: hsla(0, 0%, 0%, 0.1);
  opacity: 1;
  animation: blinking 2s infinite;
  transform-origin: top left;
}
@keyframes blinking {
  0%{
    opacity: 0;
    scale: 1;
  }
  44%{
    opacity: 1;
    scale: 1;
  }
  66%{
    opacity: 1;
    scale: 1;
  }
  100%{
    opacity: 0;
    scale: 1.2;
  }
}
.fixedBtn__Contact a {
  position: relative;
  width: 100%;
  height: 100%;
  clip-path: circle(50% at 50% 50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.fixedBtn__Contact p {
  position: relative;
  width: 100%;
  padding: 10px;
  color: #fff;
  font-size: 17px;
  font-weight: bold;
  text-align: center;
}

.icon__triangle {
  position: relative;
  display: block;
  width: 15px;
  height: 10px;
  margin-top: 5px;
  background: #fff;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  opacity: 0.5;
}


/* -------------------------
  hero
------------------------- */
.hero {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
}

section.hero::after {
  display: none;
}

.hero__bg {
  position: relative;
  width: 100%;
  height: auto;
}

.hero__title {
  position: absolute;
  top:  0;
  left: 0;
  width: 40.2%;
  height: 100%;
  padding-top:  9.5vw;
  padding-left: 5.2vw;
  background-color: #fff;
}

.hero__title h1 {
  font-size: 3.6vw;
  font-weight: bold;
  line-height: 1.35;
}
.hero__title h1 * {
  letter-spacing: 0.08em;
}
.hero__title h1 .textGradation {
  margin: 0;
}
.hero__title h1 span:nth-of-type(1) {
  font-size: 3.0vw;
  margin-bottom: 0.05em;
}
.hero__title h1 span:nth-of-type(2) {
  font-size: 3.5vw;
  letter-spacing: 0.04em;
}
.hero__title h1 span:nth-of-type(3) {
  font-size: 3.5vw;
  letter-spacing: 0.04em;
}
.hero__title h1 span rt {
  font-size: 70%;
  margin-bottom: -0.5em;
}
.hero__title h1 small {
  font-size: 85%;
  margin: 0 0.1em;
}

.hero__title>p {
  margin-top: 2.0vw;
  margin-left: 0.5em;
  font-size: 1.32vw;
  font-weight: bold;
  line-height: 1.85;
  letter-spacing: 0.1em;
  color: hsla(0, 0%, 0%, 0.85);
}

.hero__btnWrap {
  margin-top: 2.5vw;
  gap: 2vw;
  width: 29.8vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__title .submitBtn {
  width: 100%;
  font-size: 1.66vw;
  display: inline-block;
  padding: 0.6em;
  display: flex;
  gap: 0.3em;
  justify-content: center;
  text-align: center;
  filter: drop-shadow(0.4vw 0.8vw 0.8vw hsla(0, 0%, 0%, 0.1));
  overflow: hidden;
  background-color: var(--color_accent);
  background: url(../img/btn__bg.png) center center / 100% 100%;
}
.hero__title .submitBtn>img {
  height: 1.5em;
  height: 1lh;
  z-index: 1;
}
.hero__title .submitBtn>p {
  letter-spacing: 0.15em;
  z-index: 1;
}
.hero__title .benefitBtn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: fit-content;
  gap: 0.2vw;
}
.hero__title .benefitBtn>p {
  color: var(--color_accent);
  font-size: 1.2vw;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.hero__title .benefitBtn .icon__benefitBtn {
  width:  20px;
  height: 20px;
  -webkit-mask: url(../img/icon__arrowDown.svg) center / contain no-repeat;
  mask: url(../img/icon__arrowDown.svg) center / contain no-repeat;
  background-color: var(--color_accent);
}


/* -------------------------
  slider
------------------------- */
.slider__wrap {
  width: 100%;
  /* overflow: hidden; */
}

@media (any-hover: none) {
  .slider__wrap {
    /* タッチデバイスでリンク無効化 */
    pointer-events: none;
  }
}

.slider {
  overflow: hidden;
  width: 100%;
  height: auto;
  padding: 6vw 0;
}

section.slider::after {
  display: none;
}

.splide {
  filter: drop-shadow(0.5vw 1vw 1vw rgba(0, 0, 0, 0.15));
}

.splide .splide__track {}

.splide .splide__track .splide__list {}

.splide .splide__track .splide__list .splide__slide {
  display: flex;
  align-self: center;
  justify-content: center;
}

.splide .splide__track .splide__list .splide__slide img {
  max-height: 15vw;
  max-width: 20vw;
  /* object-fit: contain; */
}

.splide__imgWrap {
  width:  fit-content;
  height: fit-content;
}
.splide__imgWrap:has(.sample__paper)::after,
.photoswipeItem__imgWrap:has(.sample__paper)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/sample__paper.png) center / cover no-repeat;
}
.sample__web {
  border-radius: 8px;
  overflow: hidden;
}
.splide .sample__web {
  border-radius: 0.4vw;
}
.sample__paper {
  filter: contrast(95%) saturate(80%);
}

/* customCursor（ホバーカスタムカーソル）
------------------------- */
.customCursor {
  position: fixed;
  pointer-events: none;
  user-select: none;
  opacity: 0;
  transition: opacity 0.15s;
  z-index: 100;
}

.customCursor>span {
  scale: 0;
  position: relative;
  transition: scale 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: bold;
  color: #fff;
  width: auto;
  height: auto;
  background-color: hsla(0, 0%, 0%, 0.5);
  /* background: var(--linearGradient); */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  aspect-ratio: 1/1;
  border-radius: 50%;
  padding: 0.75em 1.5em;
  will-change: transform;
  backdrop-filter: blur(8px);
}

.customCursor>span::after {
  content: "";
  position: absolute;
  bottom: 0.75em;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 8px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: #fff;
  opacity: 0.5;
}

.customCursor__hoverTarget:hover {
  cursor: none;
  /* 通常のカーソルを隠す */
}


/* -------------------------
  benefit
------------------------- */
.benefit {
  font-size: 2.0rem;
  background-color: var(--color_base);
}

section.benefit::after {
  background-color: var(--color_base);
}

.benefit__head {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto;
  margin-bottom: 60px;
}

.benefit__head h2 {
  font-size: 4.4rem;
  font-weight: bold;
  width: fit-content;
  margin: auto 0;
  margin-left:  30px;
  margin-right: 15px;
  line-height: var(--line_height_md);
}

.benefit__head h2 span:not([class]):nth-child(1) {
  /* font-size: 3.2rem; */
}

.benefit__head h2 span:not([class]):nth-child(2) {}

.benefit__head h2 span:not([class]):nth-child(3) {}

span.marker {
  position: relative;
  z-index: 0;
}

span.marker::before {
  content: "";
  position: absolute;
  bottom: 5%;
  left: 0;
  width: 100%;
  height: 20%;
  background: yellow;
  z-index: -1;
}

.benefit__nav {
  min-width: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1;
}

.benefit__nav li {}

.benefit__nav li a {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  text-align: center;
  font-weight: bold;
  padding: 15px 30px;
  gap: 5px;
  border-radius: 8px;
  font-size: 1.8rem;
}

.benefit__nav li a span {
  font-size: 1.0rem;
  font-family: var(--font_family_ENG);
  font-weight: bold;
  opacity: 0.2;
  line-height: 1;
}

.benefit__nav li a::after {
  content: "";
  width: 12px;
  height: 8px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: #000;
  opacity: 0.2;
  margin: auto;
}

.benefit__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.benefit__listItem {
  position: relative;
  margin-top: -100px;
  padding-top: 100px;
}

.benefit__listItem.aos-init {
  opacity: 0.3;
  scale: 0.97;
  filter: grayscale(1);
  transition: 0.3s ease-out;
}

.benefit__listItem.aos-init.aos-animate {
  opacity: 1;
  scale: 1;
  filter: grayscale(0);
  transform: translate(0, 0);
}

.benefit__listItemNo {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  height: 100%;
  text-align: center;
  font-family: var(--font_family_ENG);
  font-size: 1.2rem;
  font-weight: bold;
  opacity: 0.2;
}

.benefit__listItemInner {
  position: relative;
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: row;
  overflow: hidden;
}

.benefit__listItem:nth-child(even) .benefit__listItemInner {
  flex-direction: row-reverse;
}

.benefit__listItemText {
  flex: 1 1 50%;
  padding: 35px 0;
  padding-left: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.benefit__listItem:nth-child(even) .benefit__listItemText {
  padding-left: 0;
  padding-right: 80px;
}

.benefit__listItemText h3 {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: var(--line_height_md);
  margin-left: 0;
  white-space: nowrap;
}

.benefit__listItemText p {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: var(--line_height_xl);
  text-align: justify;
}

.benefit__listItemImg {
  position: relative;
  flex: 1 1 50%;
  width: 100%;
  height: auto;
}
.benefit__listItemImg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--linearGradient);
  mix-blend-mode: overlay;
  opacity: 0.1;
}

.benefit__listItemImg img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  object-position: center center;
  opacity: 0.4;
}
.benefit__listItem:nth-of-type(1) .benefit__listItemImg img {
  padding-right: 3%;
}
.benefit__listItem:nth-of-type(2) .benefit__listItemImg img {
  padding-left: 3%;
}
.benefit__listItem:nth-of-type(3) .benefit__listItemImg img {
  padding-right: 3%;
  object-fit: cover;
}

.benefit__foot {
  margin-top: 80px;
  text-align: center;
  gap: 20px;
  display: flex;
  flex-direction: column;
}

.benefit__foot h2 {
  /* font-size: 3.2rem; */
  font-weight: bold;
  line-height: var(--line_height_md);
}

.benefit__foot small {
  font-size: 1.4rem;
  line-height: var(--line_height_md);
  opacity: 0.5;
}

/* benefit__case
------------------------- */
.benefit__case {
  margin-top: 150px;
  margin-bottom: 100px;
}
.benefit__case .section__title h2 {
  font-size: 4.0rem;
  margin-bottom: 60px;
}
.case__wrapp {

}
.case__title {
  position: relative;
  margin-bottom: 20px;
  display: grid;
  align-items: center;
  justify-content: center;
  grid-template-columns: 1fr 1fr;
}
.case__title::before {
  content: "";
  width: calc(50% - 160px - 40px);
  height: 3px;
  border-radius: 3px;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background-color: hsl(0, 0%, 80%);
}
.case__title::after {
  content: '';
  width:  10px;
  height: 10px;
  border: 0;
  border-top:   solid 3px hsl(0, 0%, 80%);
  border-right: solid 3px hsl(0, 0%, 80%);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: calc(75% - 80px - 20px - 10px);
  bottom: 0;
  margin: auto;
}
.case__titleBefore,
.case__titleAfter {
  position: relative;
  width: 160px;
  margin: auto;
  padding: 6px 18px;
  border-radius: 160px;
  color: #fff;
  text-align: center;
  font-family: var(--font_family_ENG);
  font-weight: bold;
  font-size: 20px;
}
.case__titleBefore {
  background-color: hsl(0, 0%, 30%);
}
.case__titleAfter {
  background-color: var(--color_accent);
  background: url(../img/btn__bg.png) center center / 100% 100%;
}
.case__item {
  margin-top: 15px;
  position: relative;
  display: grid;
  align-items: center;
  justify-content: center;
  grid-template-columns: 1fr 1fr;
  background-color: var(--color_baseHalf);
  border-radius: 8px;
  overflow: hidden;
}
.case__itemBefore,
.case__itemAfter {
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: var(--line_height_lg);
  padding: 35px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.case__itemBefore {
  background-color: hsl(0, 0%, 92%);
  color: hsla(0, 0%, 0%, 0.5);
}
.case__itemAfter {
  color: hsla(0, 0%, 0%, 0.8);
}
.case__itemBefore::before,
.case__itemBefore::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 100%;
  z-index: 10;
}
.case__itemBefore::before {
  background-color: var(--color_baseHalf);
}
.case__itemBefore::after {
  background-color: hsl(0, 0%, 92%);
  clip-path: polygon(100% 50%, 0 0, 0 100%);
}

.benefit__case.aos-init {
  opacity: 0;
}
.benefit__case.aos-init.aos-animate {
  opacity: 1;  
  transition: 0.5s ease;
}
.benefit__case.aos-init .case__wrapp > *.case__title {
  opacity: 0.3;
  filter: grayscale(0.5);
}
.benefit__case.aos-init .case__wrapp > *.case__item {
  opacity: 0.3;
  scale: 0.98;
  filter: grayscale(0.5);
}
.benefit__case.aos-init.aos-animate .case__wrapp > * {
  opacity: 1;  
  scale: 1;
  filter: grayscale(0);
  transition: 0.5s ease-out;
}
.benefit__case.aos-init.aos-animate .case__wrapp > *:nth-child(1) {
  transition-delay: 0.0s;
}
.benefit__case.aos-init.aos-animate .case__wrapp > *:nth-child(2) {
  transition-delay: 0.15s;
}
.benefit__case.aos-init.aos-animate .case__wrapp > *:nth-child(3) {
  transition-delay: 0.3s;
}
.benefit__case.aos-init.aos-animate .case__wrapp > *:nth-child(4) {
  transition-delay: 0.45s;
}

/* benefit__table
------------------------- */
.benefit__table {
  margin: auto;
  margin-top:    130px;
  margin-bottom: 100px;
  max-width: 960px;
}
.benefit__table.aos-init {
  opacity: 0.0;
  scale: 0.99;
  filter: grayscale(0.5);
}
.benefit__table.aos-init.aos-animate {
  opacity: 1;  
  scale: 1;
  filter: grayscale(0);
  transition: 0.5s ease;
}
.benefit__table h2 {
 font-size: 4.0rem;
 margin-bottom: 40px;
}
.benefit__table table {
  position: relative;
  width: 100%;
}
.benefit__table table tr>*:nth-child(1) {
  width: 24%;
}
.benefit__table table tr>*:nth-child(n+2) {
  width: 19%;
}
.benefit__table table tr>*:nth-child(n+3) {
  border-left: solid 2px var(--color_base);
}
.benefit__table table tr>* {
  background-color: hsla(0, 0%, 0%, 0.03);
}
.benefit__table table tr>*:nth-child(4) {
  background-color: var(--color_baseHalf);
  background-color: hsl(25, 50%, 92%);
}
.benefit__table table thead tr>*:nth-child(4)::before,
.benefit__table table thead tr>*:nth-child(4)::after {
  content: "";
  position: absolute;
  width: 19%;
  height: 100%; 
  top: 0;
  right: 19%;
  pointer-events: none;
  user-select: none;
}
.benefit__table table thead tr>*:nth-child(4)::before {
  /* background-color: hsla(0, 100%, 50%, 0.05); */
  border-radius: 8px;
  z-index: 0;
}
.benefit__table table thead tr>*:nth-child(4)::after {
  outline: 4px solid var(--color_accent);
  outline-offset: -1px;
  border-radius: 4px;
  z-index: 1;
}
.benefit__table table thead tr>*:nth-child(n+2) {
  background-color: hsl(0, 0%, 50%);
  color: #fff;
}
.benefit__table table thead tr>*:nth-child(4) {
  background-color: var(--color_accent);
  background: url(../img/btn__bg.png) center center / 100% 100%;
}
.benefit__table table th {
  padding: 20px 10px;
  font-weight: bold;
  font-size: 1.6rem;
  vertical-align: middle;
}
.benefit__table table th p {
  width: fit-content;
  margin: auto;
  text-align: center;
}
.benefit__table thead {
  /* border-bottom: 1px solid hsla(0, 0%, 0%, 0.2); */
}
.benefit__table thead tr {
  
}
.benefit__table thead tr th {
  padding: 15px 10px;
  font-size: 1.8rem;
}
.benefit__table thead th:first-child {
  background-color: transparent;
}
.benefit__table thead th:nth-child(2) {
  border-radius: 6px 0 0 0;
}
.benefit__table thead th:last-child {
  border-radius: 0 6px 0 0;
}
.benefit__table tbody {
  border-radius: 6px 0 6px 6px;
}
.benefit__table tbody tr:not(:last-of-type) {
  border-bottom: 1px solid hsla(0, 0%, 0%, 0.2);
}
.benefit__table tbody tr th {
  background-color: var(--color_baseHalf);
}
.benefit__table tbody tr:first-of-type th {
  border-radius: 6px 0 0 0;
}
.benefit__table tbody tr:last-of-type th {
  border-radius: 0 0 0 6px ;
}
.benefit__table tbody tr td {
  padding: 20px 15px;
  vertical-align: middle;
}
.benefit__table tbody tr td div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.benefit__table tbody tr td .table__evaluation {
  display: block;
  text-align: center;
  font-weight: bold;
  font-size: 2.8rem;
  width:  40px;
  height: 40px;
  margin: auto;
}
.benefit__table tbody tr td:not(:nth-child(4)) .table__evaluation {
  filter: grayscale(20%);
  opacity: 0.6;
}
.benefit__table tbody tr td:nth-child(4) .table__evaluation {
  /* scale: 1.222; */
}
.benefit__table tbody tr td .table__evaluation[data-evaluation="◎"] {
  -webkit-mask: url(../img/icon__nijumaru.svg) center / contain no-repeat;
  mask: url(../img/icon__nijumaru.svg) center / contain no-repeat;
  background-color: hsl(0, 95%, 55%);
}
.benefit__table tbody tr td .table__evaluation[data-evaluation="○"] {
  -webkit-mask: url(../img/icon__maru.svg) center / contain no-repeat;
  mask: url(../img/icon__maru.svg) center / contain no-repeat;
  background-color: var(--color_accent);
}
.benefit__table tbody tr td .table__evaluation[data-evaluation="△"] {
  -webkit-mask: url(../img/icon__sankaku.svg) center / contain no-repeat;
  mask: url(../img/icon__sankaku.svg) center / contain no-repeat;
  /* background-color: var(--color_titleBlue); */
  background-color: hsl(0, 0%, 40%);
}
.benefit__table tbody tr td .table__evaluation[data-evaluation="×"] {
  -webkit-mask: url(../img/icon__batsu.svg) center / contain no-repeat;
  mask: url(../img/icon__batsu.svg) center / contain no-repeat;
  background-color: var(--color_LOYAL);
}
.benefit__table tbody tr td .table__evaluation[data-evaluation="-"] {
  -webkit-mask: url(../img/icon__hyphen.svg) center / contain no-repeat;
  mask: url(../img/icon__hyphen.svg) center / contain no-repeat;
  background-color: hsl(0, 0%, 70%);
}
.benefit__table tbody tr td p {
  margin: 0 auto;
  width: fit-content;
  text-align: left;
  color: hsl(0, 0%, 50%);
  line-height: var(--line_height_sm);
  font-size: 1.2rem;
  margin-bottom: -5px;
}


/* -------------------------
  designSample
------------------------- */
.designSample {
  background-color: var(--color_main);
}


section.designSample::after {
  background-color: var(--color_main);
}

.designSample__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px 80px;
  padding: 80px 0 40px;
}

.designSample__item {
}

.designSample__item:first-of-type {
  border-top: none;
}

.designSample__item.aos-init {
  opacity: 0;
  transform: translateX(-30px);
  transition: 0.5s;
}

.designSample__item.aos-init.aos-animate {
  opacity: 1;
  transform: translateX(0);
}

.designSample__item a {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.designSample__item a p {
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.designSample__item a .photoswipeItem__imgWrap {
  position: relative;
  width: fit-content;
  height: fit-content;
  max-width: 100%;
  max-height: 400px;
  margin: auto;
  filter: drop-shadow(0.5vw 1vw 1vw rgba(0, 0, 0, 0.15));
}

.designSample__item a .photoswipeItem__imgWrap::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 36px;
  height: 36px;
  transform: translate(50%, 50%);
  background: url(../img/icon__zoom.png) center / contain no-repeat;
  z-index: 1;
}

.designSample__item a img {
  /* width: 100%; */
  /* height: 100%; */
  /* object-fit: contain; */
  max-width: 100%;
  max-height: 400px;
  /* aspect-ratio: 6/4; */
}

@media (any-hover: hover) {
  .designSample__item a {
    transition: scale 0.3s;
  }
  .designSample__item a:hover {
    opacity: 1;
    scale: 1.04;
    transition: scale 0.2s;
  }
  .designSample__item a .photoswipeItem__imgWrap {
    transition: filter 0.3s;
  }
  .designSample__item a:hover .photoswipeItem__imgWrap {
    filter: drop-shadow(0.5vw 1vw 1vw rgba(0, 0, 0, 0.25));
    transition: filter 0.2s;
  }
  .designSample__item a img {
    transition: filter 0.4s;
  }
  .designSample__item a:hover img {
    filter: brightness(105%) contrast(105%);
    transition: filter 0.4s;
  }
}



/* -------------------------
  production
------------------------- */
.production {
  background: var(--color_base);
}

section.production::after {
  background: var(--color_base);
}

.production .production__function {
  margin-top: 60px;
  margin-bottom: 130px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.production .production__functionCategory {
  font-size: 2.4rem;
  font-weight: bold;
  margin-left: 20px;
}
.production .production__functionCategory:not(:first-child) {
  margin-top: 1.5em;
}

.production .production__function ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px,1fr));
  gap: 25px 20px;
}

.production .production__function ul li {
  position: relative;
  min-height: 100px;
}

/* .production .production__function ul li .icon__summary {
  position: absolute;
  right:  8px;
  bottom: 8px;
  background-color: #E6E6E6;
  color: #000;
  width:  20px;
  height: 20px;
  margin: 0;
  pointer-events: none;
} */
.production .production__function ul li .icon__summary {
  position: absolute;
  bottom: 8px;
  right:  10px;
  width:  36px;
  height: 36px;
  transform: translate(50%, 50%);
  background: url(../img/icon__zoom.png) center / contain no-repeat;
  pointer-events: none;
}
.production .production__function ul li .icon__summary::before,
.production .production__function ul li .icon__summary::after {
  content: none;
}

.production .production__function ul li a {
  width: 100%;
  height: 100%;
  display: block;
  background-color: #fff;
  text-align: center;
  padding: 15px 15px;
  border-radius: 6px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  gap: 15px;
  text-align: left;
  justify-content: flex-end;
  /* pointer-events: none; */
  cursor: pointer;
  user-select: none;
}

.production .production__function ul li a::after {
  content: "";
  position: absolute;
  top:  50%;
  transform: translateY(-50%);
  left: 15px;
  width: 48px;
  height: 48px;
  background: var(--linearGradient);
  mix-blend-mode: overlay;
  opacity: 1;
}

.production .production__function ul li a:not(:hover) {
  transition: 0.2s;
  transition-delay: 0s;
}
.production .production__function ul li a:hover {
  transition: 0.15s;
  transition-delay: 0s;
  opacity: 1;
  scale: 1.05;
  filter: drop-shadow(3px 6px 6px hsla(0, 0%, 0%, 0.05)) contrast(130%);
}

.production .function__title {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: var(--line_height_md);
}

.production .function__icon {
  width: 48px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  opacity: 0.5;
}

.production .function__iconWrap {
  gap: 0;
  display: flex;
  flex-direction: column;
  width: auto;
}

.production .production__category {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px 30px;
  margin-top: 40px;
}

.production .production__list {
  background-color: #fff;
  border-radius: 8px;
  padding: 30px 45px 40px;
  display: flex;
  flex-direction: column;
  gap: 25px 30px;
}

.production .production__category.aos-init .production__list {
  opacity: 0;
  transition: 0.5s;
}

.production .production__category.aos-init .production__web {
  transform: translateX(-30px);
}

.production .production__category.aos-init .production__print {
  transform: translateY(-40px);
}

.production .production__category.aos-init .production__other {
  transform: translateX(30px);
}

.production .production__category.aos-init.aos-animate .production__list {
  opacity: 1;
  transform: translate(0, 0);
}

.production .production__list h3 {
  font-size: 2.8rem;
  font-weight: bold;
  text-align: left;
  align-content: center;
  margin-right: auto;
  margin-left: 16px;
  width: 100%;
  flex: 1;
}
.production .production__list h3 small {
  font-size: 70%;
}

.production .production__list ul {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(6, auto);
  width: fit-content;
  gap: 10px 40px;
}

.production .production__list ul li {
  position: relative;
  font-size: 1.6rem;
  font-weight: bold;
  width: fit-content;
  padding-left: 1em;
}

.production .production__list ul li::before {
  content: "・";
  width: 1em;
  height: 1em;
  position: absolute;
  top:  0;
  left: 0;
  text-align: center;
  opacity: 0.3;
}

.production .production__web {
  background: url(../img/production__web.png) right 40px bottom 30px no-repeat, #fff;
}

.production .production__print {
  background: url(../img/production__print.png) right 40px bottom 30px no-repeat, #fff;
}

.production .production__other {
  grid-column: span 2;
  flex-direction: row;
  display: grid;
  grid-template-columns: 140px 1fr;
  padding-bottom: 30px;
}

.production .production__other h3 {
  /* background: url(../img/production__other.png) center / contain no-repeat; */
  /* margin: 0; */
  width: fit-content;
}

.production .production__web ul {
  grid-template-rows: repeat(6, auto);
}

.production .production__print ul {
  grid-template-rows: repeat(6, auto);
}

.production .production__other ul {
  grid-template-rows: repeat(2, auto);
  padding: 10px 0;
}

.production .production__function.aos-init .production__functionCategory {
  opacity: 0;
  scale: 0.9;
  transition: 0.5s;
  transform-origin: top left;
}
.production .production__function.aos-init.aos-animate .production__functionCategory {
  opacity: 1;
  scale: 1;
}

.production .production__function.aos-init ul li {
  opacity: 0;
  scale: 0.9;
  transition: 0.5s;
  transform-origin: top left;
}
.production .production__function.aos-init.aos-animate ul li {
  opacity: 1;
  scale: 1;
}
.production .production__function.aos-init.aos-animate ul li:nth-child(01) {transition-delay: 0.025s;}
.production .production__function.aos-init.aos-animate ul li:nth-child(02) {transition-delay: 0.050s;}
.production .production__function.aos-init.aos-animate ul li:nth-child(03) {transition-delay: 0.075s;}
.production .production__function.aos-init.aos-animate ul li:nth-child(04) {transition-delay: 0.100s;}
.production .production__function.aos-init.aos-animate ul li:nth-child(05) {transition-delay: 0.125s;}
.production .production__function.aos-init.aos-animate ul li:nth-child(06) {transition-delay: 0.150s;}
.production .production__function.aos-init.aos-animate ul li:nth-child(07) {transition-delay: 0.175s;}
.production .production__function.aos-init.aos-animate ul li:nth-child(08) {transition-delay: 0.200s;}
.production .production__function.aos-init.aos-animate ul li:nth-child(09) {transition-delay: 0.225s;}
.production .production__function.aos-init.aos-animate ul li:nth-child(10) {transition-delay: 0.250s;}
.production .production__function.aos-init.aos-animate ul li:nth-child(11) {transition-delay: 0.275s;}
.production .production__function.aos-init.aos-animate ul li:nth-child(12) {transition-delay: 0.300s;}
.production .production__function.aos-init.aos-animate ul li:nth-child(13) {transition-delay: 0.325s;}
.production .production__function.aos-init.aos-animate ul li:nth-child(14) {transition-delay: 0.350s;}
.production .production__function.aos-init.aos-animate ul li:nth-child(15) {transition-delay: 0.375s;}
.production .production__function.aos-init.aos-animate ul li:nth-child(16) {transition-delay: 0.400s;}
.production .production__function.aos-init.aos-animate ul li:nth-child(17) {transition-delay: 0.425s;}
.production .production__function.aos-init.aos-animate ul li:nth-child(18) {transition-delay: 0.450s;}
.production .production__function.aos-init.aos-animate ul li:nth-child(19) {transition-delay: 0.475s;}
.production .production__function.aos-init.aos-animate ul li:nth-child(20) {transition-delay: 0.500s;}



/* -------------------------
  function__modal
------------------------- */
.function__modal {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: hsla(0, 0%, 0%, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}
.function__modal[aria-hidden="true"] {
  opacity: 0;
  pointer-events: none;
  transition: 0.1s;
}
.function__modal[aria-hidden="false"] {
  transition: 0.15s;
}
.function__modal [aria-label="Close modal"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.function__modalContents {
  position: relative;
  background-color: #fff;
  width: 90%;
  max-width: 840px;
  height: auto;
  max-height: 90%;
  margin: auto;
  padding: 50px 60px;
  padding-left: 50px;
  border-radius: 8px;
  display: flex;
  gap: 40px;
}
.function__modalContents::after {
  content: "× 閉じる";
  position: absolute;
  font-size: 1.4rem;
  font-weight: bold;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  pointer-events: none;
}
.function__modalIconWrap {
  width:  200px;
  aspect-ratio: 1 / 1;
  margin: auto;
  position: relative;
}
.function__modalIconWrap .function__icon {
  transform: translateY(10px);
  opacity: 0;
}
.function__modal.is-open .function__modalIconWrap .function__icon {
  transition: 0.5s 0.1s;
  transform: translateY(0);
  opacity: 0.5;
}
.function__modalIconWrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width:  100%;
  height: 100%;
  background: var(--linearGradient);
  mix-blend-mode: overlay;
  opacity: 1;
}
.function__modalIconWrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width:  100%;
  height: 100%;
  background: hsla(0, 0%, 100%, 0.7);
  z-index: 2;
}
.function__modalContents .function__icon {
  width:  100%;
  height: 100%;
  object-fit: contain;
}
.function__modalContentsInner {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 1;
}
.function__modal .function__title {
  font-size: 3.2rem;
  letter-spacing: 0.15em;
}
.function__modalText {
  font-size: 1.6rem;
  font-weight: bold;
  color: hsla(0, 0%, 0%, 0.7);
  line-height: var(--line_height_xl);
  letter-spacing: 0.15em;
}
.function__modalIndustry {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.function__modalIndustryTitle {
  font-size: 1.3rem;
  font-weight: bold;
  color: hsla(0, 0%, 0%, 0.4);
  letter-spacing: 0.1em;
}
.function__modalIndustryIcon {
  font-size: 1.3rem;
  font-weight: bold;
  color: hsla(0, 0%, 0%, 0.4);
}
.function__modalIndustryIcon span {
  color: #000;
  position: relative;
  font-size: 1.5rem;
  margin-right: 1.25em;
  margin-bottom: 0.75em;
  display: inline-block;
  font-weight: bold;
  line-height: var(--line_height_sm);
  letter-spacing: 0.15em;
}
.function__modalIndustryIcon span::before {
  content: "";
  position: relative;
  display: inline-block;
  top: -0.15em;
  right: 0;
  margin-right: 0.5em;
  width:  0.4em;
  height: 0.4em;
  border-radius: 100%;
  background-color: hsla(0, 0%, 0%, 0.3);
}



/* -------------------------
  pamphlet
------------------------- */
.pamphlet {
  background-color: var(--color_baseDark);
  z-index: 2;
}

section.pamphlet::after {
  background-color: var(--color_baseDark);
}

.pamphlet .section__inner {
  padding-top:    80px;
  padding-bottom: 80px;
}

.pamphlet .columns__two .section__title h2 {
  font-size: 2.2rem;
}

.pamphlet__btnWrapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.pamphlet__btnWrapp a {
  min-width: 208px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  color: hsla(0, 0%, 0%, 0.6);
  background-color: var(--color_base);
  border-radius: 300px;
  padding: 1em 1.5em;
}

.pamphlet__image {
  display: block;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.pamphlet__image img {
  width: 100%;
}



/* -------------------------
  flow
------------------------- */
.flow {
  background-color: var(--color_main);
}

section.flow::after {
  background-color: var(--color_main);
}

.flow__image {
  width: 100%;
  margin-top: 40px;
}

.flow .benefit__foot {
  margin-top: 40px;
}

.flow .benefit__foot h2 {
  font-size: 2.0rem;
  line-height: var(--line_height_lg);   
}



/* -------------------------
  area
------------------------- */
.area {
  background: var(--color_base);
  z-index: 2;
}

section.area::after {
  background: var(--color_base);
}

.area .section__inner {
  padding-top:    80px;
  padding-bottom: 80px;
}

.area__map {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

/* .area__map::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--linearGradient);
  mix-blend-mode: overlay;
  opacity: 0.1;
} */

.area__map img {
  width: 100%;
}

/* -------------------------
  QandA
------------------------- */
.QandA {
  background: var(--color_baseDark);
}

section.QandA::after {
  display: none;
}

.QandA h2 {
  font-size: 4.0rem;
}

.QandA__list {
  margin-top: 50px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.QandA__item {
  width: 100%;
}

.QandA__itemInner {
  display: block;
  width: 100%;
  padding: 30px 40px;
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  background-color: var(--color_baseHalf);
  border-radius: 8px;
  transition: background-color 0.1s;
}

.isActive.QandA__itemInner {
  background-color: #fff;
}

.QandA__q {
  font-family: var(--font_family_ENG);
  font-weight: bold;
  font-size: 3.2rem;
  line-height: 1;
  opacity: 0.2;
}

.QandA__detail {
  flex: 1;
}

.QandA__question {
  width: 100%;
  font-size: 2.0rem;
  font-weight: bold;
  line-height: var(--line_height_md);
}

.QandA__open {
  height: 0;
  will-change: height;
}

.QandA__answer {
  width: 100%;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: justify;
  line-height: var(--line_height_xl);
  opacity: 0;
  transition: opacity 0.1s;
  padding-top: 20px;
  pointer-events: none;
  color: hsla(0, 0%, 0%, 0.85);
}

.isActive .QandA__answer {
  transition: opacity 0.3s 0.15s;
  opacity: 1;
  pointer-events: all;
}

.icon__summary {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
  margin: 4px 0;
  border-radius: 12px;
  background-color: #000;
  color: #fff;
  transition: all 0.15s;
}

.icon__summary:before, .icon__summary:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  line-height: 1;
  width: 50%;
  height: 2px;
  background: currentColor;
  transition: all 0.15s;
}

.icon__summary:after {
  rotate: -90deg;
  transform-origin: top left;
}

.isActive .icon__summary {
  opacity: 0.3;
}

.isActive .icon__summary:after {
  opacity: 0;
  scale: 0 1;
}

@media (any-hover: hover) {
  .QandA__q,h3 {
    transition: color 0.1s, opacity 0.1s;
  }

  .icon__summary {
    transition: background-color 0.1s;
  }

  .QandA__itemInner:hover .QandA__q {
    color: var(--color_accent);
    opacity: 0.3;
  }

  .QandA__itemInner:hover h3 {
    color: var(--color_accent);
  }

  .QandA__itemInner:hover .icon__summary {
    background-color: var(--color_accent);
  }
}


/* -------------------------
  contact
------------------------- */
.contact {}

section.contact::after {
  display: none;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact__summary {
  padding-right: 15%;
}

.contact__production {}

.contact .section__title {
  text-align: left;
}

.contact .section__title h2 {
  font-size: 4.0rem;
}

.contact .section__title p {
  font-size: 1.6rem;
  line-height: var(--line_height_lg);
  margin-bottom: 5px;
}

.contact__production hr {
  margin-top: 50px;
  margin-bottom: 30px;
  opacity: 0.15;
}

.contact__production h3 {
  font-size: 2.0rem;
  font-weight: bold;
  margin-bottom: 25px;
}

/* production（クローン要素）
------------------------- */
.contact .production__category {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;
  gap: 30px 50px;
}

.contact .production__list {
  display: flex;
  flex-direction: column;
  width: fit-content;
}

.contact .production__list h3 {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: left;
  width: 100%;
  margin-bottom: 10px;
  color: hsla(0, 0%, 0%, 0.6);

  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: currentColor;
  text-fill-color: currentColor;
}
.contact .production__list h3 p {
  color: hsla(0, 0%, 0%, 0.6);
  margin: 0;
  background: none;
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: currentColor;
  text-fill-color: currentColor;
}

.contact .production__list ul {
  display: grid;
  grid-auto-flow: row;
  width: fit-content;
  gap: 5px 20px;
}

.contact .production__list ul li {
  font-size: 1.2rem;
  font-weight: bold;
  width: fit-content;
  color: hsla(0, 0%, 0%, 0.4);
}

.contact .production__web {}

.contact .production__print {}

.contact .production__other {
  grid-row: span 2;
}

.contact .production__other h3 {}

.contact .production__web ul {}

.contact .production__print ul {}

.contact .production__other ul {}

/* form
------------------------- */
.contact__form {}

.contact__form form {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form__row {}

.form__row p {
  font-size: 1.6rem;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.form__row p:not(:last-child) {
  margin-bottom: 8px;
}

.form__row .icon__any,
.form__row .icon__required {
  font-size: 1.0rem;
  font-weight: bold;
  line-height: 1;
  background-color: var(--color_titleBlue);
  color: #fff;
  padding: 0.4em 0.8em;
  border-radius: 2em;
  margin-left: 0.6em;
}

.form__row .icon__required {
  background-color: red;
}

.form__row .icon__any::after {
  content: "任意";
}

.form__row .icon__required::after {
  content: "必須";
}

.form__row input:not([type="checkbox"]),
.form__row textarea {
  width: 100%;
  font-size: 1.6rem;
  padding: 0.75em 1.0em;
  background-color: var(--color_base);
  border-radius: 8px;
}

.form__row input:not([type="checkbox"])::placeholder,
.form__row textarea::placeholder {
  font-size: 1.5rem;
  font-weight: bold;
  color: hsla(0, 0%, 0%, 0.2);
}

input:not([type="checkbox"]):not(:placeholder-shown),
textarea:not(:placeholder-shown) {
  outline: none !important;
  background-color: var(--color_base) !important;
}

input:not([type="checkbox"]):not(:placeholder-shown)+.error-message,
textarea:not(:placeholder-shown)+.error-message,
label:has(input[type="checkbox"]:checked)+.error-message {
  display: none !important;
}

.form__row textarea {
  max-width: 100%;
  min-width: 100%;
  min-height: calc(0.75em + 5lh + 0.75em);
  max-height: calc(0.75em + 20lh + 0.75em);
}

.privacy__check {
  margin-top: 15px;
}

.privacy__check label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: fit-content;
  margin: 0 auto;
  cursor: pointer;
}

.form__row input[type="checkbox"] {
  position: relative;
  width: 20px;
  height: 20px;
  cursor: pointer;
  background-color: var(--color_baseDark);
  border-radius: 3px;
}

.form__row input[type="checkbox"]:checked {
  background-color: var(--color_accent);
  outline: none !important;
}

.form__row input[type="checkbox"]::after {
  content: '';
  position: absolute;
  top: calc(50% - 2px);
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 14px;
  height: 8px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

.form__row .checkbox__text {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
}

.form__row .checkbox__text a {
  border-bottom: 2px solid currentColor;
  padding-bottom: 1px;
  cursor: pointer;
  margin: 0.5em;
}

.form__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
}

.submitBtn {
  font-size: 1.6rem;
  font-weight: bold;
  padding: 1em 3em;
  border-radius: 2em;
  background-color: var(--color_accent);
  background: url(../img/btn__bg.png) center center / 100% 100%;
  color: #fff;
  user-select: none;
}

.submitBtn.backBtn {
  background: none;
  background-color: var(--color_baseDark);
  color: #000;
}

@media (any-hover: hover) {
  .submitBtn:hover {
    opacity: 0.8;
  }
}

@media (any-hover: none) {
  .submitBtn:active {
    opacity: 0.8;
  }
}

/* privacy__modal
------------------------- */
.modal {
  position: fixed;
  opacity: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  user-select: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
  transition: opacity 0.1s;
  z-index: 1000;
}

body.isModalOpen *:not(.modal.isActive, .modal.isActive *) {
  user-select: none;
}

.isModalOpen .modal.isActive {
  opacity: 1;
  pointer-events: all;
  user-select: all;
  transition: opacity 0.3s;
}

.modal__background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsla(0, 0%, 0%, 0.8);
  z-index: -1;
}

.modal__body {
  width: 100%;
  height: 100%;
  max-width: 720px;
  max-height: fit-content;
  padding: 40px;
  background-color: #fff;
  border-radius: 8px;
  /* overflow-y: auto; */
}

.modal__body h3 {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.modal__detail {}

.modal__detail .icon__pms {
  margin: 0 auto;
  width: fit-content;
  margin-bottom: 20px;
  user-select: none;
}

.modal__detail .icon__pms img {
  width: 100%;
  height: auto;
  max-height: 120px;
  object-fit: contain;
}

.modal__detail p {
  font-size: 1.4rem;
  margin-bottom: 20px;
  text-align: justify;
}

.modal__detail ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: auto;
  padding-left: 2.5em;
}

.modal__detail ol li {
  font-size: 1.3rem;
  line-height: var(--line_height_lg);
  text-align: justify;
}

.modal__detail ol li strong {
  display: block;
}

.modal__close {
  text-align: center;
  color: #fff;
  margin-top: 20px;
  font-size: 1.4rem;
  font-weight: bold;
  user-select: none;
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 0.5em;
}

.icon__close {
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
  color: #fff;
}

.icon__close:before, .icon__close:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  line-height: 1;
  width: 120%;
  height: 2px;
  background: currentColor;
  rotate: 45deg;
  transform-origin: top left;
}

.icon__close:after {
  rotate: -45deg;
  transform-origin: top left;
}

.privacy__agreeBtn {
  display: block;
  text-align: center;
  margin: 30px auto 0;
  padding: 0.5em 2em;
  font-size: 1.6rem;
  font-weight: bold;
  background-color: var(--color_accent);
  color: #fff;
  border-radius: 30px;
  user-select: none;
}


/* -------------------------
  footer
------------------------- */
footer {
  margin-top: auto;
  width: 100%;
  position: relative;
  background-color: var(--color_base);
}

footer .section__inner {
  padding-top: 0px;
  padding-bottom: 0px;
}

.footer__contents {
  padding: 40px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
}

.footer__logo {
  margin-right: auto;
  display: flex;
  align-items: center;
}

.footer__logo img {}

.footer__logo span {
  margin-left: 15px;
  font-size: 1.6rem;
  font-weight: bold;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.footer__nav li {}

.footer__nav li a {
  font-size: 1.4rem;
  font-weight: bold;
  border-bottom: 2px solid currentColor;
  padding-bottom: 3px;
}

.footer__address {
  font-size: 1.2rem;
  color: hsl(0, 0%, 50%);
  width: 100%;
  display: block;
}

.footer__copyright {
  display: block;
  font-size: 1.0rem;
  color: hsl(0, 0%, 50%);
  text-align: center;
  padding: 20px 0;
  width: calc(100% - 10vw);
  margin: 0 auto;
}

.footer__copyright:not(:first-child) {
  border-top: 1px solid hsla(0, 0%, 0%, 0.1);
}


/* =========================
  subPage
========================= */
.subPage {}

/* subPage header
------------------------- */
.subPage header {
  position: relative;
  height: 0;
}

.subPage .header__inner {}

.subPage .header__logo {}

/* statusBar
------------------------- */
.statusBar__nav {
  width: 100%;
  position: relative;
  display: none;
}

.statusBar__nav .section__inner {
  padding-top: 0;
  padding-bottom: 0;
}

.statusBar__list {
  display: flex;
  justify-content: center;
}

.statusBar__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.statusBar__item.isCompleted {}

.statusBar__item.isActive {}

.statusBar__number {
  font-family: var(--font_family_ENG);
  font-weight: bold;
}

.statusBar__text {
  font-weight: bold;
}


/* -------------------------
  checkPage
------------------------- */
.checkPage {
  background-color: var(--color_baseHalf);
}

/* confirm
------------------------- */
.contact__confirm {
  font-weight: normal !important;
  color: hsl(0, 0%, 30%);
  white-space: pre-wrap;
  padding: 0.75em 1.0em;
  background: #ffffff;
  border-radius: 8px;
}

.checkPage .icon__any,
.checkPage .icon__required {
  display: none;
}


/* -------------------------
  thanksPage
------------------------- */
.thanksPage {}

.thanks__section {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.thanks__section .section__inner {
  padding-top: 130px;
  padding-bottom: 100px;
}

.thanks__section h1 {
  margin-bottom: 40px;
  font-size: 3.2rem;
  font-weight: bold;
}

.thanks__section h2 {
  margin-bottom: 15px;
  font-size: 2.0rem;
  font-weight: bold;
}

.thanks__section p {
  margin-bottom: 40px;
  font-size: 1.6rem;
  line-height: var(--line_height_xl);
}

@media (max-width: 599px) {
  .thanks__section p {
    text-align: justify;
  }

  .thanks__section p br {
    display: none;
  }
}


/* =========================
  OverlayScrollbars カスタム
========================= */
.os-scrollbar {
  --os-handle-min-size: 33px; /* default 33px */
  --os-handle-max-size: none; /* default none */
  --os-handle-perpendicular-size: 100%; /* default 100% */
  --os-handle-perpendicular-size-hover:  100%; /* default 100% */
  --os-handle-perpendicular-size-active: 100%; /* default 100% */
  --os-handle-interactive-area-offset: 0; /* default 0 */
}
.os-scrollbar:has(.os-scrollbar-handle:hover) {
  --os-handle-perpendicular-size-hover:  calc(100% + 1px); /* default 100% */
  --os-handle-perpendicular-size-active: calc(100% + 1px); /* default 100% */
}
.os-theme-dark, .os-theme-light {
  --os-size: 16px;
  --os-padding-perpendicular: 5px;
  --os-padding-axis: 6px;
  --os-track-border-radius: 8px;
  --os-handle-interactive-area-offset: 4p;
  --os-handle-border-radius: 10px;
  box-sizing: border-box;
}
.os-theme-dark {
  --os-handle-bg: rgba(0, 0, 0, .2);
  --os-handle-bg-hover: rgba(0, 0, 0, .35);
  --os-handle-bg-active: rgba(0, 0, 0, .5);
}


