@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: smooth;
}

body {
  font-family: var(--base-serif);
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 2;
  word-break: break-all;
  -webkit-text-size-adjust: 100%;
  color: #000;
  color: var(--color-black);
  line-height: 1.75;
  letter-spacing: 0.05em;
  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 (max-width: 767px) {
  .l-wrapper {
    padding-bottom: clamp(10rem, 18.2291666667vw, 15rem);
  }
}

/*		ヘッダー
-----------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  z-index: 999;
  padding: 25px 0 15px;
  /* END &.l-header */
}
@media screen and (max-width: 600px) {
  #header {
    position: absolute;
  }
}
#header.l-header {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 5px 25px;
}
#header.l-header .l-container,
#header.l-header .l-container_wide {
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
}
#header.l-header .l-header_logo {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-right: auto;
}
#header.l-header .l-header_logo img {
  width: 93px;
}
#header.l-header .l-header_logo a {
  display: block;
}
#header.l-header .l-header_logo h1 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
}
#header.l-header .l-header_logo h1 span {
  display: block;
  color: var(--color-white);
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
}
#header.l-header .l-header_logo h1 span + span {
  font-size: 1rem;
}
#header.l-header .l-header_btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px 3%;
}
#header.l-header .l-header_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #000;
  background-color: var(--color-base);
  padding: 8px 30px;
  border: 3px solid transparent;
  border-radius: 100px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
@media (hover: hover) {
  #header.l-header .l-header_btn a:hover {
    color: #000;
    color: var(--color-base);
    background-color: #fff;
    border-color: currentColor;
  }
}

/* END #header */
@media screen and (max-width: 1023px) {
  #header.l-header {
    top: 0;
    left: 0;
    z-index: 999;
    padding: 5px 0;
    display: flex;
    align-items: center;
    min-height: 60px;
    /* END #header */
  }
  #header.l-header .l-container,
  #header.l-header .l-container_wide {
    gap: 10px;
    padding: 0 10px;
  }
  #header.l-header .l-header_logo {
    max-width: 100%;
    flex-shrink: 0;
    font-size: 5vw;
  }
  #header.l-header .l-header_logo * {
    font-size: 3vw;
  }
}
/*		グローバルナビゲーション
-----------------------------------------------------*/
#global-nav.l-nav {
  overflow-y: auto;
  gap: 30px;
  /* END & ul */
}
#global-nav.l-nav .l-nav_logo {
  display: none;
  color: var(--color-black);
}
#global-nav.l-nav ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  gap: 43px;
}
@media screen and (max-width: 1023px) {
  #global-nav.l-nav ul {
    gap: 10px;
  }
}
#global-nav.l-nav ul li {
  width: 200px;
  border: 1px solid var(--color-white);
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  #global-nav.l-nav ul li {
    width: 160px;
  }
}
#global-nav.l-nav ul li:last-child {
  border: 1px solid var(--color-base);
  background-color: var(--color-white);
}
#global-nav.l-nav ul li:last-child a {
  position: relative;
  color: var(--color-base);
}
#global-nav.l-nav ul li:last-child a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 13px;
  height: 13px;
  background-image: url(../img/common/icon_link.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (hover: hover) {
  #global-nav.l-nav ul li:last-child a:hover {
    background-color: var(--color-base);
    color: var(--color-white);
  }
  #global-nav.l-nav ul li:last-child a:hover::after {
    background-image: url(../img/common/icon_link_white.svg);
  }
}
#global-nav.l-nav ul li span {
  display: block;
}
#global-nav.l-nav ul li a {
  display: block;
  padding: 10px 20px;
  color: var(--color-white);
  line-height: 1.3;
  font-weight: 500;
}
@media (hover: hover) {
  #global-nav.l-nav ul li a:hover {
    color: var(--color-base);
    background-color: var(--color-white);
  }
}
#global-nav.l-nav .l-header_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  color: #fff;
  background-color: #333;
  background-color: var(--color-base);
  border: 2px solid transparent;
  border-radius: 100px;
  transition: all 0.2s ease-in-out;
}
@media (hover: hover) {
  #global-nav.l-nav .l-header_btn:hover {
    color: #333;
    color: var(--color-base);
    border-color: currentColor;
    background-color: #fff;
  }
  #global-nav.l-nav .l-header_btn:hover::after {
    transform: translateY(3px);
  }
}

/* END .l-nav */
.is-pcnone {
  display: none;
}
@media screen and (max-width: 767px) {
  .is-pcnone {
    display: block;
  }
}

.is-spnone {
  display: contents !important;
}
@media screen and (max-width: 767px) {
  .is-spnone {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  #global-nav.l-nav {
    flex-flow: column nowrap;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 900;
    width: 100%;
  }
  #global-nav.l-nav.is-flex {
    flex-direction: column;
  }
  #global-nav.l-nav.is-flex ul {
    width: 100%;
    margin: auto;
    border-top: 1px solid var(--color-base);
    border-bottom: 1px solid var(--color-base);
    gap: 0;
    align-items: stretch;
  }
  #global-nav.l-nav.is-flex ul li {
    width: 33.3333333333%;
    border: none;
    border-right: 1px solid var(--color-base);
  }
  #global-nav.l-nav.is-flex ul li:last-child {
    border-right: none;
  }
  #global-nav.l-nav.is-flex ul li:last-child a {
    background-color: var(--color-base);
    color: var(--color-white);
    flex-direction: column;
    gap: 5px;
  }
  #global-nav.l-nav.is-flex ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
    color: var(--color-base);
    font-size: clamp(1.8rem, 2.2222222222vw, 2.8rem);
    letter-spacing: 0.08em;
    height: 100%;
    padding: 30px 20px;
    transition: all 0.2s linear;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  #global-nav.l-nav.is-flex ul li a {
    font-size: clamp(1.6rem, 3.6458333333vw, 2.8rem);
  }
}
@media screen and (max-width: 767px) and (hover: hover) {
  #global-nav.l-nav.is-flex ul li a:hover {
    color: var(--color-gold);
  }
  #global-nav.l-nav.is-flex ul li a:hover::after {
    right: 2%;
  }
}
@media screen and (max-width: 767px) {
  #global-nav.l-nav.is-flex ul li span {
    display: inline-block;
  }
  #global-nav.l-nav.is-flex .l-header_btn {
    width: 100%;
    max-width: 245px;
    margin: 20px 0;
    color: var(--color-black);
    background-color: #fff;
  }
}
/*  END Break Point  */
/*		メニューボタン
-----------------------------------------------------*/
.l-header_toggle {
  display: flex;
  align-items: center;
  justify-content: center;
}

/*  END Break Point  */
/*		ページタイトル
-----------------------------------------------------*/
#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: 767px) {
  #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 .l-footer_list {
  margin-bottom: clamp(3rem, 4.7619047619vw, 6rem);
}
#footer .l-footer_list ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px 20px;
  width: clamp(0rem, 78.1746031746vw, 98.5rem);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #footer .l-footer_list ul {
    width: 90%;
  }
}
@media screen and (max-width: 600px) {
  #footer .l-footer_list ul {
    flex-direction: column;
    gap: 0;
  }
}
#footer .l-footer_list ul li a {
  position: relative;
  display: block;
  padding: 10px 40px 10px 20px;
  border-bottom: 1px solid #CCCCCC;
  font-size: clamp(1.4rem, 1.5873015873vw, 2rem);
}
#footer .l-footer_list ul li a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-image: url(../img/common/icon_arrow_footer.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#footer .l-footer_link {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(5rem, 8.7301587302vw, 11rem);
}
#footer .l-footer_link ul {
  display: flex;
  justify-content: center;
  gap: 30px 20px;
  width: clamp(0rem, 78.1746031746vw, 98.5rem);
}
@media screen and (max-width: 767px) {
  #footer .l-footer_link ul {
    flex-wrap: wrap;
  }
}
#footer .l-footer_link ul li a img {
  height: 55px;
}
#footer .c-copyright {
  padding: 10px;
  background-color: #B3AA6B;
  color: #FFF;
  text-align: center;
}
/*  END #footer  */
