@charset "UTF-8";
/*
====>> サイトの共通パーツに関するデフォルトスタイリング <<====

・このファイルはベースのスタイルに加え、サイト(案件)毎にスタイルを記述していく
・ヘッダー、ナビゲーション、フッター、パンくずなどの各ページに対して1つのパーツをスタイルするファイル

*/
/*		独自追加
-----------------------------------------------------*/
/* @font-face {
  font-family: "MPLUSRounded-bold-subset";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/MPLUSRounded-bold-subset.woff2") format("woff2"), url("../fonts/MPLUSRounded-bold-subset.woff") format("woff"), url("../fonts/MPLUSRounded-bold-subset.ttf") format("truetype");
} */
/* .font-mplus {
  font-family: var(--mplus-font);
  transform: var(--Jaggy-clear);
  font-weight: bold;
} */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.c-btn_01 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32.8rem;
  min-height: 6.2rem;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-align: center;
  color: #fff;
  background-image: linear-gradient(90deg, #eb673f, #f9a463);
  border-radius: 100px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-btn_01 {
    min-width: unset;
    width: 100%;
  }
}
@media (hover: hover) {
  .c-btn_01:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
}
.c-btn_01::before {
  content: "";
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  position: absolute;
  top: 7px;
  left: 7px;
  border: 1px solid #fff;
  border-radius: 100px;
  box-sizing: border-box;
}

.c-title_l {
  font-size: 5.7rem;
  font-size: clamp(2.8rem, 4.75vw, 5.7rem);
  font-weight: 700;
  letter-spacing: 0.08;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .c-title_l {
    font-size: 2.8rem;
    margin-bottom: 1rem;
  }
}

.c-title_m {
  font-size: 3.5rem;
  font-size: clamp(2.4rem, 2.9166666667vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-title_m {
    font-size: 2.4rem;
    margin-bottom: 1rem;
  }
}

.c-title_s {
  font-size: 2.7rem;
  font-size: clamp(1.8rem, 2.25vw, 2.7rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .c-title_s {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
}

.c-lead_text {
  font-weight: 500;
  letter-spacing: 0.06em;
}
.c-lead_text strong,
.c-lead_text b {
  font-size: 1.5em;
}
@media screen and (max-width: 767px) {
  .c-lead_text strong,
  .c-lead_text b {
    font-size: 1.7rem;
  }
}

.c-emphasis-dots {
  position: relative;
}
.c-emphasis-dots::after {
  content: "";
  width: 6px;
  height: 6px;
  background-color: currentColor;
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  border-radius: 50%;
}

.totop {
  display: none !important;
}

/*		基本設定
-----------------------------------------------------*/
*,
*:before,
*:after {
  font-feature-settings: "palt";
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--base-sans-serif);
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 2;
  letter-spacing: 0.05em;
  word-break: break-all;
  color: #000;
  color: var(--color-black);
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

html[lang=en] body {
  word-break: break-word;
  overflow-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s linear;
}
a[target=_blank].is-external::after {
  content: "";
  background: url("../img/common/icon_external.svg") no-repeat center center/contain;
  display: inline-block;
  height: 1.2rem;
  width: 1.2rem;
  vertical-align: middle;
  margin-left: 0.3em;
}

@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) {
  .is-tb {
    display: none !important;
  }
}
input {
  font-size: 1.6rem;
}

textarea {
  font-size: 1.6rem;
  resize: vertical;
}

/* フォーカスが当たった時の青枠を表示しない */
*:focus {
  outline: none;
}

::-moz-selection {
  /*ハイライトカラー指定*/
  color: #fff;
  background: cyan;
  background: var(--color-base);
}

::selection {
  /*ハイライトカラー指定*/
  color: #fff;
  background: cyan;
  background: var(--color-base);
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
figure {
  /*safariのoverflow不具合対策*/
  will-change: transform;
}

/* Padding Classes */
.p-0 {
  padding: 0;
}

.p-10 {
  padding: 10px;
}

.p-15 {
  padding: 15px;
}

.p-20 {
  padding: 20px;
}

.p-30 {
  padding: 30px;
}

.p-40 {
  padding: 40px;
}

.p-50 {
  padding: 50px;
}

.p-80 {
  padding: 80px;
}

.p-100 {
  padding: 100px;
}

.pt-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-100 {
  padding-bottom: 100px;
}

/* Margin Classes */
.m-0 {
  margin: 0;
}

.m-10 {
  margin: 10px;
}

.m-15 {
  margin: 15px;
}

.m-20 {
  margin: 20px;
}

.m-30 {
  margin: 30px;
}

.m-40 {
  margin: 40px;
}

.m-50 {
  margin: 50px;
}

.m-80 {
  margin: 80px;
}

.m-100 {
  margin: 100px;
}

.mt-0 {
  margin-top: 0;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-100 {
  margin-bottom: 100px;
}

/*==========フェードイン==========*/
.js-scroll-up {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: all 1s;
}

.js-scroll-up.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/*		メニューボタン
-----------------------------------------------------*/
@media screen and (min-width: 768px) {
  .l-header_toggle {
    display: none !important;
  }
}
/*  END Break Point  */
@media screen and (max-width: 767px) {
  .l-header_toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    color: #707070;
    text-align: center;
    position: absolute;
    top: 50%;
    right: 2.5rem;
    transform: translateY(-50%);
    z-index: 999;
    box-sizing: border-box;
    transition: all 0.2s linear;
    cursor: pointer;
  }
  .l-header_toggle > span {
    display: block;
    position: relative;
    width: 24px;
    height: 2px;
    padding: 0;
    line-height: 1;
    margin: 10px auto;
    background-color: #707070;
    border-radius: 100px;
    transition: all 0.3s linear;
  }
  .l-header_toggle > span::before, .l-header_toggle > span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 2px;
    background-color: #707070;
    border-radius: 100px;
    transition: all 0.3s ease;
    transform-origin: center center;
  }
  .l-header_toggle > span::before {
    transform: translate(-50%, -50%) translateY(-8px);
  }
  .l-header_toggle > span::after {
    transform: translate(-50%, -50%) translateY(8px);
  }
  .l-header_toggle > p {
    display: block;
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
  }
  .l-header_toggle.is-active > span {
    background-color: transparent;
  }
  .l-header_toggle.is-active > span::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .l-header_toggle.is-active > span::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}
/*		グローバルナビゲーション
-----------------------------------------------------*/
@media screen and (min-width: 768px) {
  .l-nav {
    display: none !important;
  }
}
/*  END Break Point  */
@media screen and (max-width: 767px) {
  .l-nav {
    flex-flow: column nowrap;
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 900;
    width: 100%;
    width: 100%;
    width: 100dvw;
    height: 100vh;
    height: 100dvh;
    padding: 20px 0 50px;
    opacity: 0;
    background-color: #fff;
    overflow-y: auto;
    transition: all 0.1s linear;
  }
  .l-nav.is-show {
    left: 0;
    opacity: 1;
  }
  .l-nav_logo {
    text-align: center;
    margin-bottom: 2.5rem;
  }
  .l-nav_logo a {
    margin-inline: auto;
  }
  .l-nav ul {
    width: 100%;
    margin: auto;
    flex-direction: column;
    gap: 0;
  }
  .l-nav ul li {
    text-align: left;
    width: 100%;
    padding: 2.5rem 0;
    border-top: 1px solid #333;
  }
  .l-nav ul li a {
    display: block;
    position: relative;
    color: #333;
    letter-spacing: 0.08em;
    padding: 0 20px;
    transition: all 0.2s linear;
  }
  .l-nav ul li a::after {
    content: "";
    display: inline-block;
    width: 0.8rem;
    height: 1.2rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 3%;
    background: url(../../img/devecon/global-nav_arrow.svg) no-repeat center center/100% auto;
    transition: all 0.2s linear;
  }
  .l-nav_contact {
    color: #fff;
    padding-top: 2.5rem;
    background-color: #2EA171;
  }
  .l-nav_contact p {
    width: 90%;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.55;
    color: #F0FC62;
    margin: 0 auto 1.5rem;
  }
  .l-nav_contact ul li {
    border-color: #fff;
  }
  .l-nav_contact ul li a {
    font-size: 2rem;
    color: #fff;
    letter-spacing: 0.1em;
    font-weight: 700;
  }
  .l-nav_contact ul li a::before, .l-nav_contact ul li a::after {
    content: "";
    width: 0.9rem;
    height: 0.2rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 3%;
    background: #fff;
  }
  .l-nav_contact ul li a::after {
    right: 3%;
    transform: translateY(-50%) rotate(90deg);
  }
}
/*  END Break Point  */