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

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

*/

/*自動でベンダープレフィックスをつける*/
/*		独自追加
-----------------------------------------------------*/
body{
  color: var(--color-brown);
  background-color: var(--color-pale-pink);
  overflow-wrap: anywhere;
  word-break: break-word;
  line-break: strict;
}
.l-header_language{
  min-width: 170px;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 35px;
  background-color: #fff;
  border-radius: 100px;
  position: relative;
  z-index: 999;
  cursor: pointer;
  margin-left: auto;
  box-sizing: border-box;
 }
 @media (max-width: 600px){
  .l-header_language{
    min-width: 150px;
    max-width: calc(100% - 100px);
    min-height: 26px;
    padding: 5px 30px;
   } 
 }/*END SP以下 表示*/
 .l-header_language::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  display: inline-block;
  width: 18px;
  aspect-ratio: 1;
  background: url(../img/icon_web.svg) no-repeat center center / contain;
 }
 @media (max-width: 600px){
  .l-header_language::before{
    width: 13px;
  }
 }
 .l-header_language::after{
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  display: block;
  width: 11px;
  aspect-ratio: 2 / 1;  
  clip-path: polygon(0 1px, 0 0, 50% calc(100% - 1px), 100% 0, 100% 1px, 50% 100%);
  background-color: var(--color-brown);
  transition: all .3s ease-in-out;
 }
 @media (max-width: 600px){
  .l-header_language::after{
    width: 8px;
    right: 5px;
  }
 }
 .l-header_language.is-open::after{
  transform: translateY(-50%) rotate(180deg);
 }
 .l-header_language > span{
  display: block;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.12em;
 }
 @media (max-width: 600px){
  .l-header_language > span{
    font-size: 10px;
   } 
 }/*END SP以下 表示*/

.l-header_language ul{
  display: block;
  opacity: 0;
  height: 0;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border-radius: 26px;
  margin-top: 5px;
  transition: all .5s ease-in-out;
  overflow: hidden;
}
@media (max-width: 600px){
  .l-header_language ul{
    border-radius: 14px;
    margin-top: 3px;
  }
}
.l-header_language.is-open ul{
  opacity: 1;
  height: auto;/* calc-size()未対応のブラウザのためのフォールバック */
  height: calc-size(auto, size);
}
.l-header_language ul li a{
  display: block;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-align: center;
  padding: 5px 10px;
}
@media (max-width: 600px){
  .l-header_language ul li a{
    font-size: 10px;
  }
}/*END SP以下 表示*/
.l-header_language ul li a:hover{
  background-color: #f2f2f2;
}
/* END #header */
/*		基本設定
-----------------------------------------------------*/
/* html {
  scroll-behavior: smooth;
} */
body {
  font-family: var(--base-serif);
  color: var(--color-brown);
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin: 0 auto;
  padding: 0;
}

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: 12px;
  width: 12px;
  vertical-align: middle;
  margin-left: 0.3em;
}
@media (min-width: 601px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media (max-width: 600px) {
  .is-pc {
    display: none !important;
  }
}
@media (min-width: 601px) {
  .is-sp {
    display: none !important;
  }
}
input {
  font-size: 16px; /*iOSズームアップ対策サイズ*/
}

textarea {
  font-size: 16px; /*iOSズームアップ対策サイズ*/
  resize: vertical; /* 縦方向のリサイズを許可 */
}

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

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

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


figure {
  will-change: transform; /*safariのoverflow不具合対策*/
}

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

/*
.scroll-up + .scroll-up {
  transition-delay: 0.3s;
}
.scroll-up + .scroll-up + .scroll-up {
  transition-delay: 0.6s;
}
.scroll-up + .scroll-up + .scroll-up + .scroll-up {
  transition-delay: 0.9s;
}*/
.js-scroll-up.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/*		ヘッダー
-----------------------------------------------------*/

.l-header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  max-width: 100%;
  width: 100%;
  min-height: 128px;
  padding: 25px 0;
  margin: 0 auto;
  background-color: transparent;
  box-sizing: border-box;
  pointer-events: none;
}
@media (max-width: 600px) {
  .l-header {
    min-height: 100px;
    padding: 10px 0 25px;
  }
}
#header.l-header .l-container,
#header.l-header .l-container_wide {
  max-width: 1360px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 20px;
  pointer-events: none;

}
@media (max-width: 600px) {
  #header.l-header .l-container,
  #header.l-header .l-container_wide {
    gap: 16px;
  }  
}
#header.l-header .l-container *,
#header.l-header .l-container_wide *{
  pointer-events: auto;
}
/* END #header */
/*		グローバルナビゲーション
-----------------------------------------------------*/

#global-nav.l-nav {
  max-width: 820px;
  background-size: auto auto;
  background-color: rgba(254, 252, 253, 1);
  background-image: repeating-linear-gradient(90deg, #fdf5f9, #fdf5f9 50px, #fefcfd 50px, #fefcfd 100px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow-y: auto;
  gap: 30px;

  display: flex;
  flex-direction: column;

  position: absolute;
  top: 0;
  right: -100vw; 
  z-index: 900;
  width: 100%;
  width: 100%;
  width: 100dvw;
  height: 100%;
  height: 100dvh;
  padding: 100px 0 50px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s linear;
}
#global-nav.is-show {
  right: 0; 
  opacity: 1;
}
#global-nav .l-inner{
  max-width: 660px;
  width: 92%;
  background-color: rgba(255, 255, 255, 0.67);
  border-radius: 80px;
  padding: 60px 5% 90px; 
  margin: 0 auto;
  box-sizing: border-box;
}
@media (max-width: 600px){
  #global-nav .l-inner{
    padding: 40px;
  }
}
#global-nav.l-nav ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#global-nav.l-nav ul li {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 16px;
  text-align: left;
  letter-spacing: 0.05em;
  font-weight: bold;
}
@media (max-width: 600px){
  #global-nav.l-nav ul li {
    font-size: 14px;
  }
}
#global-nav.l-nav ul li::before {
  content: "";
  display: inline-block;
  width: 15px;
  aspect-ratio: 1;
  background-color: var(--color-deep-pink);
  border-radius: 50%;
  filter: blur(3px);
  opacity: 0;
  transition: all 0.2s linear;
  pointer-events: none;
}
#global-nav.l-nav ul li.is-active::before {
  opacity: 1;
}
@media (hover: hover) {
  #global-nav.l-nav ul li:hover::before {
    opacity: 1;
  }
}
#global-nav.l-nav ul li span {
  display: block;
}
#global-nav.l-nav ul li a {
  position: relative;
  display: block;
  letter-spacing: 0.05em;
  color: var(--color-brown);
  line-height: 1.3;
  padding: 0 20px;
  transition: all 0.2s linear;
}
#global-nav.l-nav.is-flex ul li span {
  display: inline-block;
}

/* END #global-nav */

/*		メニューボタン
-----------------------------------------------------*/
.l-header_toggle {
  /* position: absolute;
  top: 0;
  right: 0;*/
  position: relative;
  z-index: 999; 
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  aspect-ratio: 1;

  color: var(--color-brown);
  text-align: center;
  background-color: var(--color-deep-pink);
  border-radius: 50%;
  box-sizing: border-box;
  transition: all 0.2s linear;
}
@media (max-width: 600px){
  .l-header_toggle {
    width: 45px;
  }
}
.l-header_toggle::after {
  content: attr(data-label);
  display: block;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-brown);
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1;
  word-break: keep-all;
  overflow-wrap: normal;

}
@media (max-width: 600px){
  .l-header_toggle::after {
    font-size: 10px;
  }
}
.l-header_toggle > span,
.l-header_toggle > span::before,
.l-header_toggle > span::after{
  display: block;
  width: 27px;
  height: 3px;
  padding: 0;
  background-color: #fff;
  line-height: 1;
  border-radius: 100px;
  transition: all 0.3s linear;
}
@media (max-width: 600px){
  .l-header_toggle > span,
  .l-header_toggle > span::before,
  .l-header_toggle > span::after{
    width: 25px;
  }  
}

.l-header_toggle > span {
  position: relative;
  margin: 10px auto;
}
.l-header_toggle > span::before, .l-header_toggle > span::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  transition: all 0.2s linear;
}
.l-header_toggle > span::before {
  top: -8px;
}
.l-header_toggle > span::after {
  top: 8px;
}
/* .l-header_toggle > small {
  display: block;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.08em;
  line-height: 1.3;
  margin-top: 13px;
} */
.l-header_toggle.is-active > span {
  background-color: transparent;
}
.l-header_toggle.is-active > span::before {
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  transform-origin: center;
}
.l-header_toggle.is-active > span::after {
  background-color: #fff;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
  transform-origin: center;
}

/*		ページタイトル
-----------------------------------------------------*/
#page-title {
  margin-top: 10px;
  padding: 60px 0 0;
  box-sizing: border-box;
}
#page-title > section h2 {
  font-size: 80px;
  font-weight: normal;
  color: var(--color-font-base);
}

/*  END #page-title  */
@media (max-width: 600px) {
  #page-title {
    padding: 30px 10px;
  }
  #page-title > section h2 {
    font-size: 40px;
  }
  /*  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;
}
#page_top > a:hover {
  text-decoration: none;
}

/*  END #page_top  */