@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%);

  /* フォントファミリー変数 */
  --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;
}

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 {
  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__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: 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: 10px;
}

.section__title h2 {
  font-size: 4.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}

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

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

.textGradation {
  background: linear-gradient(-30deg, var(--color_titleGreen) 0%, var(--color_titleBlue) 80%);
  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;
}

.header__inner * {
  pointer-events: all;
}

.header__logo {
  display: block;
  margin-right: auto;
}

.header__logo img {}

.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 0.75em;
}
.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;
}


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

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

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

.hero__title h1 {
  font-size: 5vw;
  font-weight: bold;
  line-height: 1;
}
.hero__title h1 .textGradation {
  margin: 0;
  letter-spacing: 0;
}
.hero__title h1 span:nth-of-type(1) {
  letter-spacing: 0;
}
.hero__title h1 span:nth-of-type(2) {
  margin-top: 0.31em;
  letter-spacing: 0.12em;
}
.hero__title h1 span:nth-of-type(3) {
  display: inline-block;
  font-size: 2.8vw;
  letter-spacing: 0.05em;
  margin-top: 0.15em;
}
.hero__title h1 span:nth-of-type(3) * {
  letter-spacing: 0.05em;
}
  .hero__title h1 span:nth-of-type(3) rt {
  font-size: 70%;
  margin-bottom: -1em;
}

.hero__title>p {
  margin-top: 2.3vw;
  font-size: 1.45vw;
  font-weight: bold;
  line-height: 1.7;
}

.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.25vw;
  font-weight: bold;
}
.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;
}

.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: linear-gradient(-30deg, var(--color_titleGreen) 0%, var(--color_titleBlue) 80%); */
  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.5em;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  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);
}

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

.benefit__head h2 {
  font-size: 5.2rem;
  font-weight: bold;
  width: fit-content;
  margin: auto 0;
  margin-left: 30px;
}

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

.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 {
  width: 380px;
  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;
  gap: 5px;
  border-radius: 8px;
}

.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: 10px;
  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: 4.0rem;
  font-weight: bold;
  line-height: var(--line_height_md);
  margin-left: 0;
}

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

.benefit__listItemImg {
  flex: 1 1 50%;
  width: 100%;
  height: auto;
}

.benefit__listItemImg img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  object-position: center bottom;
}

.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);
}

/* benefit__table
------------------------- */
.benefit__table {
  margin: auto;
  margin-top:    130px;
  margin-bottom: 100px;
  max-width: 960px;
}
.benefit__table.aos-init {
  opacity: 0.3;
  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;
}
.benefit__table table tr>*:nth-child(1) {
  width: 25%;
}
.benefit__table table tr>*:nth-child(n+2) {
  width: 37.5%;
}
.benefit__table table tr>*:nth-child(2) {
  background-color: hsla(0, 0%, 0%, 0.03);
}
.benefit__table table tr>*:nth-child(3) {
  background-color: var(--color_baseHalf);
  background-color: hsl(25, 50%, 92%);
}
.benefit__table table thead tr>*:nth-child(3)::before {
  content: "";
  position: absolute;
  width: 37.5%;
  height: 100%; 
  top: 0;
  right: 0;
  /* background-color: hsla(0, 100%, 50%, 0.05); */
  border-radius: 8px;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.benefit__table table thead tr>*:nth-child(3)::after {
  content: "";
  position: absolute;
  width: 37.5%;
  height: 100%; 
  top: 0;
  right: 0;
  outline: 4px solid var(--color_accent);
  /* outline-offset: -2px; */
  border-radius: 6px;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}
.benefit__table table thead tr>*:nth-child(n+2) {
  background-color: hsl(0, 0%, 50%);
  color: #fff;
  border-radius: 6px 0 0 0;
}
.benefit__table table thead tr>*:nth-child(3) {
  background-color: var(--color_accent);
  border-radius: 0 6px 0 0;
}
.benefit__table table th {
  padding: 20px;
  font-weight: bold;
  font-size: 2.0rem;
  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 {
  text-align: center;
}
.benefit__table thead th:first-child {
  
}
.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 {
  font-size: 1.4rem;
  padding: 20px 30px;
  line-height: var(--line_height_lg);
  vertical-align: middle;
}
.benefit__table tbody tr td div {
  display: flex;
  gap: 20px;
}
.benefit__table tbody tr td .table__evaluation {
  display: block;
  text-align: center;
  font-weight: bold;
  font-size: 2.8rem;
  width:  48px;
  height: 48px;
  margin: auto;
}
.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: red;
}
.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: hsl(188, 100%, 42%); */
  background-color: var(--color_titleBlue);
}
.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: hsl(210, 100%, 42%); */
  background-color: var(--color_LOYAL);
}
.benefit__table tbody tr td p {
  display: block;
  text-align: justify;
  margin: 0 auto;
  /* margin-top: 15px; */
  /* width: fit-content; */
  width: 100%;
  color: hsl(0, 0%, 30%);
}


/* -------------------------
  designSample
------------------------- */
.designSample {}

.designSample__list {}

.designSample__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: solid 1px hsla(0, 0%, 0%, 0.1);
  padding: 80px 0;
}

.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; */
}


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

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

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

.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: 3.6rem;
  font-weight: bold;
  text-align: center;
  align-content: center;
  margin-right: auto;
  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: 15px 50px;
}

.production .production__list ul li {
  font-size: 2.0rem;
  font-weight: bold;
  width: fit-content;
}

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

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

.production .production__other {
  padding: 30px;
  grid-column: span 2;
  flex-direction: row;
}

.production .production__other h3 {
  background: url(../img/production__other.png) center / contain no-repeat;
}

.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(4, auto);
  padding: 20px 0;
}


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

.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 {}

.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);
}

.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.7);
  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);
}