@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;
} */
/*		基本設定
-----------------------------------------------------*/
*, *:before, *:after {
  font-feature-settings: "palt";
}

html {
  scroll-behavior: auto;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .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: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
figure {
  /*safariのoverflow不具合対策*/
  will-change: transform;
}

.tac {
  text-align: center;
}

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

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

/*		ヘッダー
-----------------------------------------------------*/
/*		グローバルナビゲーション
-----------------------------------------------------*/
/*		メニューボタン
-----------------------------------------------------*/
/*		ページタイトル
-----------------------------------------------------*/
#page-title {
  margin-top: 10px;
  padding: 60px 0 0;
  box-sizing: border-box;
}
#page-title > section h2 {
  font-size: 8rem;
  font-weight: normal;
  color: var(--color-font-base);
}

/*  END #page-title  */
@media screen and (max-width: 768px) {
  #page-title {
    padding: 30px 10px;
  }
  #page-title > section h2 {
    font-size: 4rem;
  }
  /*  END #page-title  */
}
/*  END Break Point  */
/*		ページトップ
-----------------------------------------------------*/
#page_top {
  position: fixed;
  bottom: 2%;
  right: 3%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  /*  END & > a  */
}
#page_top > a {
  background: #000;
  width: auto;
  height: auto;
  padding: 12px 20px;
  color: var(--color-theme-base);
  font-weight: bold;
}
@media (hover: hover) {
  #page_top > a:hover {
    text-decoration: none;
  }
}

/*  END #page_top  */
/*		フッター
-----------------------------------------------------*/
#footer {
  text-align: center;
}
#footer .l-container {
  width: var(--w-liquid);
}
#footer .l-footer_company {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #CCC;
  text-align: center;
}
#footer .l-footer_company_title {
  position: relative;
  margin-bottom: 50px;
  font-size: clamp(1.6rem, 2.6041666667vw, 2rem);
  font-weight: bold;
}
#footer .l-footer_company_title:before {
  display: block;
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 30px;
  background: #CCCCCC;
}
#footer .l-footer_company_logo {
  width: 223px;
  margin-bottom: 15px;
}
#footer .l-footer_company_text {
  margin-bottom: 30px;
}
#footer .l-footer_company_mail {
  margin-bottom: 20px;
}
#footer .l-footer_inner {
  padding: 60px 2.5%;
  background-color: #F8F8F8;
}
@media screen and (max-width: 413px) {
  #footer .l-footer_inner {
    padding: 40px 2.5%;
  }
}
#footer .l-footer_logo {
  margin-bottom: 40px;
}
@media screen and (max-width: 413px) {
  #footer .l-footer_logo {
    margin-bottom: 20px;
  }
}
#footer .l-footer_text p {
  line-height: 2.5;
}
#footer .c-copyright {
  display: block;
  padding: 10px;
  font-size: 1.4rem;
  letter-spacing: 0.01em;
}

/*  END #footer  */
