@charset "UTF-8";

/* ----------------------------------------------------------
共通CSS
---------------------------------------------------------- */

@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP");
}

@font-face {
  font-family: "Local Noto Serif JP";
  src: local("Noto Serif JP");
}

:root{
  --spacing: 0.12em;
}

*{
  letter-spacing: var(--spacing);
}

html,body{
  width: 100%;
}

html {
  font-size: 62.5%;/* 16px x 0.625 = 10px(=1rem) */
}

body {
  font-size: 1.8rem;
  font-family: "Local Noto Sans JP", "Noto Sans JP", sans-serif;
  color: #140700;
  font-weight: 400;
  font-feature-settings: "palt";
  line-height: 1.5;
}
/*  @media screen and (max-width: 1023px) {
    body {
      font-size: 1.5rem;
    }
  }*/
  @media screen and (max-width: 767px) {
    body {
      font-size: 4vw;
    }
  }

body::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 0%;
  background-image: url(../img/bg_pc.webp);
  background-size: cover;
}
  @media screen and (max-width: 1199px) {
    body::before {
      background-image: url(../img/bg_sp.webp);
    }
  }

body.is-menu-open {
  overflow: hidden;
}

header, footer {
  width: 100%;
}

.wrapper {
  text-align: center;
  margin: 0 auto;
}


/*** 見出しH2 ***/

.heading-02 {
  font-size: 3.8rem;
  font-weight: 500;
  color: #009db7;
  letter-spacing: 0.08em;
  line-height: 1.5;
  display: inline-block;
  padding-bottom: 14px;
  background:
    linear-gradient(
      to right,
      #009db7 0 50%,
      #cccccc 50% 100%
    )
    center bottom / 140px 4px no-repeat;
  background-position: calc(50% - 2px) bottom;
}
  @media screen and (max-width: 1023px) {
    .heading-02 {
      font-size: 3.3rem;
    }
  }
  @media screen and (max-width: 767px) {
    .heading-02 {
      font-size: 6.4vw;
      padding-bottom: 3.2vw;
      background:
        linear-gradient(
          to right,
          #009db7 0 50%,
          #cccccc 50% 100%
        )
        center bottom / 22.4vw 0.8vw no-repeat;
      background-position: 50% bottom;
    }
  }


/*** 見出しH3 ***/

.heading-03 {
  font-size: 3.2rem;
  color: #140700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding-left: 25px;
  z-index: 1;
}
  @media screen and (max-width: 767px) {
    .heading-03 {
      font-size: 5.067vw;
      padding-left: 4.534vw;
    }
  }

.heading-03::before {
  content: "";
  position: absolute;
  left: 0;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #bfe6ed;
  top: calc(50% + 1px);
  z-index: -1;
}
  @media screen and (max-width: 767px) {
    .heading-03::before {
      width: 7.734vw;
      height: 7.734vw;
    }
  }


/*** 見出しH4 ***/

.heading-04 {
  --line-width: 100px;
  font-size: 2.4rem;
  color: #009db7;
  letter-spacing: 0.08em;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}
  @media screen and (max-width: 767px) {
    .heading-04 {
      --line-width: 16vw;
      font-size: 4.534vw;
      padding-bottom: 2.934vw;
    }
  }

.heading-04::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: var(--line-width);
  height: 3px;
  background: #009db7;
  transform: translateX(-50%);
}
  @media screen and (max-width: 767px) {
    .heading-04::before {
      height: 0.534vw;
    }
  }

.heading-04::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-right: 3px solid #009db7;
  border-bottom: 3px solid #009db7;
  transform: translateX(-50%) rotate(45deg);
}
  @media screen and (max-width: 767px) {
    .heading-04::after {
      bottom: -0.4vw;
      width: 2.134vw;
      height: 2.134vw;
      border-right: 0.534vw solid #009db7;
      border-bottom: 0.534vw solid #009db7;
    }
  }


/*** リンク・画像 ***/

a {
  display: inline-block;
  transition: opacity .3s ease;
}

a:hover {
  opacity: .7;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

a img {
  transition: opacity .3s ease;
}


/* 上付き文字 */

sup {
  font-size: 100%;
  position: relative;
  top: 0;
  margin-right: -0.6em;
  line-height: 1.0;
  display: inline-block;
  transform: scale(0.6);
  transform-origin: 0 0;
}

sup.sup-end {
  margin-left: -0.2em;
}


/* 下付き文字 */

sub {
  font-size: 100%;
  position: relative;
  bottom: 0;
  line-height: 1.0;
  display: inline-block;
  transform: scale(0.6);
  transform-origin: 0 100%;
}


/*** 注釈 ***/

ul.note {
  font-size: 1.2rem;
  text-align: left;
}
  @media screen and (max-width: 767px) {
    ul.note {
      font-size: 3.2vw;
    }
  }

ul.note li {
  text-indent: -2.3rem;
  padding-left: 2.3rem;
  margin-bottom: 6px;
}
  @media screen and (max-width: 767px) {
    ul.note li {
      text-indent: -6.134vw;
      padding-left: 6.134vw;
      margin-bottom: 1.6vw;
    }
  }


/*** ボタン共通 ***/

.button {
  color: #fff;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  max-width: 100%;
  border-radius: 100vh;
  padding: 16px 16px 18px;
  margin: 0 auto;
  background-color: #140700; /* デフォルトカラー */
  transition: opacity .3s ease;
  overflow-wrap: break-word;
}

.button > span {
  display: flex;
  align-items: center;
  max-width: 100%;
  gap: 10px;
  letter-spacing: 0.08em;
  transform: translateX(2px);
}

.button > span::before {
  content: "";
  flex: 0 0 auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 11px;
  border-color: transparent transparent transparent currentColor;
  transform: translateY(1px);
}

@media screen and (max-width: 767px) {
  .button {
    width: 68vw;
    padding: 3.2vw 3.2vw 3.467vw;
  }

  .button > span {
    gap: 1.733vw;
    transform: translateX(0.267vw);
  }

  .button > span::before {
    border-width: 5px 0 5px 8px;
    transform: translateY(0);
  }
}


/*** header ***/

header {
  color: #fff;
  background: linear-gradient(90deg, #006cb8 5%, #009db7 95%);
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 0 3%;
}
  @media screen and (max-width: 767px) {
    header {
      padding: 0;
    }
  }

header .wrapper {
  max-width: 1446px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 19px 0 22px;
}
  @media screen and (max-width: 767px) {
    header .wrapper {
      padding: 5.067vw 4vw 5.2vw;
      margin: 0;
    }
  }

header h1 {
  width: 115px;
  line-height: 1;
}
  @media screen and (max-width: 767px) {
    header h1 {
      max-width: 25.333vw;
    }
  }

header h1 a {
  width: 100%;
}


/*** menu ***/

p.header-menu {
  display: block;
  width: 33px;
  text-align: center;
  line-height: 1;
  position: relative;
  margin-top: 2px;
  z-index: 61;
}
  @media screen and (max-width: 767px) {
    p.header-menu {
      margin-top: 0.134vw;
    }
  }

p.header-menu .header-menu-trigger,
p.header-menu .header-menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}
p.header-menu .header-menu-trigger {
  position: relative;
  width: 33px;
  height: 21px;
}
p.header-menu .header-menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
p.header-menu .header-menu-trigger span:nth-of-type(1) {
  top: 0;
}
p.header-menu .header-menu-trigger span:nth-of-type(2) {
  top: 10px;
}
p.header-menu .header-menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
p.header-menu .header-menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}
p.header-menu .header-menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
p.header-menu .header-menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(45deg);
  transform: translateY(-9px) rotate(45deg);
}

#global-menu {
  background: linear-gradient(90deg, #006cb8 5%, #009db7 95%);
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
  align-items: center;
  justify-content: flex-start;
  flex-flow: column;
  gap: 50px;
  z-index: 60;
  display: none;
  box-sizing: border-box;
  padding: 60px 20px;
}

@media screen and (max-width: 767px) {
  #global-menu {
    gap: 8vw;
    padding: 12vw 6vw;
  }
}

#global-menu .menu {
  width: 600px;
  text-align: center;
  font-size: 3.0rem;
  align-items: center;
  margin-top: auto;
}
  @media only screen and (max-width: 767px) {
    #global-menu .menu {
      width: 88vw;
      font-size: 5.334vw;
    }
  }

#global-menu .menu li {
  line-height: 1.0;
  margin-bottom: 47px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.5);
}
  @media only screen and (max-width: 767px) {
    #global-menu .menu li {
      margin-bottom: 7.6vw;
      padding-bottom: 8vw;
    }
  }
#global-menu .menu li:last-child {
  margin-bottom: 0;
}

#global-menu .menu li a {
  letter-spacing: 0.08em;
}

#global-menu .menu-product {
  display: inline-block;
  font-size: 2.4rem;
  margin: 30px auto 0;
}
  @media only screen and (max-width: 767px) {
    #global-menu .menu-product {
      font-size: 4.8vw;
      margin: 6vw auto 0;
    }
  }

#global-menu .menu-product li {
  text-align: left;
  margin-bottom: 19px;
  padding: 0;
  border: none;
}
  @media only screen and (max-width: 767px) {
    #global-menu .menu-product li {
      margin-bottom: 4.8vw;
    }
  }

#global-menu .menu-product li .menu-product-link {
  position: relative;
  text-indent: 21px;
}
  @media only screen and (max-width: 767px) {
    #global-menu .menu-product li .menu-product-link {
      text-indent: 3.6vw;
    }
  }

#global-menu .menu-product li .menu-product-link::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
  @media only screen and (max-width: 767px) {
    #global-menu .menu-product li .menu-product-link::before {
      border-width: 5px 0 5px 8px;
      top: 0.267vw;
    }
  }

#global-menu .btn-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: auto;
}
  @media only screen and (max-width: 767px) {
    #global-menu .btn-block {
      gap: 4vw;
    }
  }

#global-menu .btn-wrap {
  display: flex;
  gap: 30px;
}
  @media only screen and (max-width: 767px) {
    #global-menu .btn-wrap {
      gap: 3.734vw;
    }
  }

#global-menu .button {
  width: 260px;
  padding: 15px 16px 17px;
  background-color: transparent;
  border: 1px solid #fff;
}
  @media only screen and (max-width: 767px) {
    #global-menu .button {
      width: 42.134vw;
      font-size: 3.467vw;
      padding: 3.2vw 3.2vw 3.467vw;
    }
    #global-menu .button > span {
        gap: 0.8vw;
        letter-spacing: 0.06em;
    }
  }


/*** フローティングバナー ***/

.floating-banner {
  position: fixed;
  z-index: 9;
  top: 50%;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translate(100%, -50%);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;
}

.floating-banner.is-show {
  opacity: 1;
  visibility: visible;
  transform: translate(0, -50%);
}

.floating-banner-item {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 52px;
  min-height: 193px;
  padding: 15px 10px;
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.floating-banner-sample {
  background: #68ba85;
}

.floating-banner-purchase {
  background: #4091ca;
}

.floating-banner-item > span {
  letter-spacing: 0.09em;
}

/* PCでは三角矢印を表示しない */
.floating-banner-item > span::before {
  content: none;
}

/* SP */
  @media screen and (max-width: 767px) {
    .floating-banner {
      top: auto;
      right: 0;
      bottom: 0;
      left: 0;
      flex-direction: row;
      gap: 1.6vw;
      width: 100%;
      transform: translateY(100%);
      padding-top: 1.6vw;
      background-color: #fff;
    }

    .floating-banner.is-show {
      transform: translateY(0);
    }

    .floating-banner-item {
      flex: 1;
      width: auto;
      min-height: 0;
      font-size: 4vw;
      line-height: 1;
      padding: 4.534vw 4.8vw 4.8vw;
      writing-mode: horizontal-tb;
      text-orientation: mixed;
    }

    .floating-banner-item > span {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1.6vw;
      letter-spacing: 0.08em;
    }

  /* SPのみ三角矢印を表示 */
    .floating-banner-item > span::before {
      content: "";
      flex: 0 0 auto;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 5px 0 5px 8px;
      border-color: transparent transparent transparent currentColor;
    }
  }


/*** お問い合わせ ***/

#contact .wrapper {
  width: 100%;
  background-color: #f2f8f9;
  background: url(../img/contact-bg_pc.webp) right center / cover no-repeat;
  padding: 132px 6vw 127px;
}
  @media screen and (max-width: 767px) {
    #contact .wrapper {
    background: url(../img/contact-bg_sp.webp) right center / cover no-repeat;
    padding: 14.667vw 6vw 15.2vw;
    }
  }

#contact .contact-area h2 {
  font-size: 3.0rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 42px;
  padding: 0;
}
  @media screen and (max-width: 767px) {
    #contact .contact-area h2 {
      font-size: 5.334vw;
       margin-bottom: 6.534vw;
    }
  }

#contact .contact-area h2 span {
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 6px;
}
  @media screen and (max-width: 767px) {
    #contact .contact-area h2 span {
      font-size: 4.267vw;
      margin-bottom: 0.1334vw;
    }
  }
  @media screen and (max-width: 767px) {
    #contact p {
      font-size: 3.734vw;
      letter-spacing: 0.08em;
    }
  }
#contact .contact-tel {
  width: 462px;
  margin: 0 auto 12px;
}
#contact .contact-tel a {
  width: 100%;
}
#contact .contact-tel img {
  width: 100%;
}
  @media screen and (min-width: 768px) {
    #contact .contact-tel a[href^="tel:"] {
      pointer-events: none;
      cursor: default;
    }
  }
  @media screen and (max-width: 767px) {
    #contact .contact-tel {
      width: 74vw;
      margin-bottom: 1.734vw;
    }
  }
#contact .contact-tel p {
  font-size: 1.4rem;
  text-align: right;
  line-height: 1.0;
  letter-spacing: 0.08em;
  margin-top: 9px;
  margin-right: -4px;
}
  @media screen and (max-width: 767px) {
    #contact .contact-tel p {
      font-size: 3.2vw;
      margin-top: 1.867vw;
      margin-right: -0.8vw;
    }
  }
#contact .contact-note {
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  margin-top: 42px;
}
  @media screen and (max-width: 767px) {
    #contact .contact-note {
      font-size: 3.2vw;
      letter-spacing: 0.08em;
      margin-top: 6.134vw;
    }
  }


/*** フッター***/

footer .wrapper {
  width: 100%;
  background-color: #fff;
  padding: 120px 6vw 92px;
}
  @media screen and (max-width: 767px) {
    footer .wrapper {
      padding: 16vw 4vw 7.734vw;
    }
  }

footer .footer-logo {
  width: 190px;
  margin: 0 auto 50px;
}
  @media screen and (max-width: 767px) {
    footer .footer-logo {
      width: 40.533vw;
      margin: 0 auto 5.734vw;
    }
  }

footer .footer-logo a {
  width: 100%;
}
footer .footer-logo img {
  width: 100%;
}
footer ul.footer-menu {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 101px;
}
  @media screen and (max-width: 767px) {
    footer ul.footer-menu {
      flex-flow: wrap;
      gap: 0;
      margin:0 4vw 9.2vw;
    }
  }

footer ul.footer-menu li {
  color: #009db7;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: 0.08em;
}
  @media screen and (max-width: 767px) {
    footer ul.footer-menu li {
      font-size: 3.733vw;
      line-height: 2.0;
      margin-right: 7.734vw;
    }
    footer ul.footer-menu li:nth-child(2),
    footer ul.footer-menu li:last-child {
      margin-right: 0;
    }
  }
footer ul.footer-menu li a {
  letter-spacing: 0.08em;
}


footer .footer-link-area {
  max-width: 1100px;
  display: flex;
  justify-content: center;
  text-align: left;
  gap: 138px;
  margin: 0 auto;
  padding: 96px 0 0;
  border-top: 1px solid #ccc;
}
  @media screen and (max-width: 1023px) {
    footer .footer-link-area {
      gap: 4vw;
    }
  }
  @media screen and (max-width: 767px) {
    footer .footer-link-area {
      display: block;
      padding: 9.467vw 0 0;
    }
  }
footer .footer-link-box {
  display: flex;
  gap: 138px;
}
  @media screen and (max-width: 1023px) {
    footer .footer-link-box {
      gap: 4vw;
    }
  }
  @media screen and (max-width: 767px) {
    footer .footer-link-box {
      justify-content: flex-start;
      gap: 22.4vw;
      padding: 0 2vw;
    }
    footer .footer-link-box:last-of-type {
      gap: 10.667vw;
      margin-top: 4.534vw;
    }
  }
footer ul.footer-link li {
  font-size: 1.6rem;
  margin-bottom: 4px;
}
  @media screen and (max-width: 767px) {
    footer ul.footer-link li {
      font-size: 3.467vw;
      margin-bottom: 1.734vw;
    }
  }
  @media screen and (max-width: 767px) {
    footer ul.footer-link li a {
      letter-spacing: 0.08em;
    }
  }

footer .cp-wrapper {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  background: linear-gradient(90deg, #006cb8 5%, #009db7 95%);
  padding: 26px 6vw 23px;
}
  @media screen and (max-width: 767px) {
    footer .cp-wrapper {
      text-align: left;
      padding: 5.2vw 6vw 5.067vw;
    }
  }

footer .copyright-area small {
  display: block;
  font-size: 1.2rem;
  color: #fff;
}
  @media screen and (max-width: 767px) {
    footer .copyright-area small {
      text-align: left;
      font-size: 3.2vw;
    }
  }

footer .copyright-area small.copyright {
  margin-top: 7px;
}
  @media screen and (max-width: 767px) {
    footer .copyright-area small.copyright {
      text-align: center;
      margin-top: 3.2vw;
    }
  }


/*** スクロールフェード ***/

.js-scroll-fade {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.js-scroll-fade.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* 動きを減らす設定を使用している場合 */
@media (prefers-reduced-motion: reduce) {
  .js-scroll-fade {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* =========================================
  Utility
========================================= */

/* Display */

/* PCのみ非表示 */
@media screen and (min-width: 1024px) {
  .pc-none {
    display: none !important;
  }
}

/* 1200px以上のみ非表示（～1199px表示） */
@media screen and (min-width: 1200px) {
  .pc1200-none {
    display: none !important;
  }
}

/* PC・タブレットのみ非表示 */
@media screen and (min-width: 768px) {
  .pc-none-tab {
    display: none !important;
  }
}

/* タブレットのみ非表示 */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .tab-none {
    display: none !important;
  }
}

/* タブレット・SPのみ非表示 */
@media screen and (max-width: 1023px) {
  .sp-none-tab {
    display: none !important;
  }
}

/* 1199px以下のみ非表示（1200px～表示） */
@media screen and (max-width: 1199px) {
  .sp1200-none {
    display: none !important;
  }
}

/* SPのみ非表示 */
@media screen and (max-width: 767px) {
  .sp-none {
    display: none !important;
  }
}

/* Accessibility */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* Text */
.ta-center{
  text-align: center !important;
}
.ta-left{
  text-align: left !important;
}
.ta-right{
  text-align: right !important;
}

.nowrap {
  white-space: nowrap;
}

/* Margin */

/* Flex */

/* Size */