@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/*** ここから追加 ***/
body {
  font-family: Noto Sans JP, Inter, Hiragino Kaku Gothic Pro, Meiryo, sans-serif !important;
}
/*** ロゴの設定 ***/

/*** スクロール時ロゴの設定 ***/

/*** ヘッダーの設定 ***/
/* メニュー設定 */
.p-breadcrumb {
  display: none !important;
}
/* ------------------------------------------------------
 * ヘッダーの設定
 * ------------------------------------------------------ */
/* ヘッダーを固定 */
@media (min-width: 960px) {
  .l-header {
    padding-top: 40px !important;
    position: fixed !important;
    background: transparent;
  }
  .p-breadcrumb {
    margin-top: calc(var(--logo_size_pc) + 32px);
  }
}
/* 下層ページのヘッダー幅をトップに合わせる */
.l-header .l-container {
  max-width: 100% !important;
}
/* ヘッダーメニューを非表示 */
nav#gnav {
  display: none;
}
.c-headLogo.-txt {
  position: absolute;
  left: -300px;
}
@media (min-width: 600px) {
  .-txt .c-headLogo__link {
    color: #000;
    font-size: 24px;
  }
}
/* ------------------------------------------------------
 * PCでハンバーガーボタン
 * ------------------------------------------------------ */
.l-header__menuBtn.sp_ {
  display: block !important; /* ハンバーガーボタンを表示 */
}
.-series .l-header__inner {
  align-items: center; /* ハンバーガーボタンの上下位置調整 */
}
.p-spMenu {
  display: block; /* 開閉メニューを有効 */
}

/* ハンバーガーアイコン：デフォルト時 */
.-menuBtn .c-iconBtn__icon {
  width: 24px;
  height: 2px;
  background-color: #000;
  display: grid;
  place-items: center;
  transition: transform 0.3s;
  &::before {
    grid-area: 1 / 1;
    content: '';
    display: block;
    inset: 0;
    width: 64px;
    height: 2px;
    background-color: #fff;
    transition: transform 0.3s;
  }
  &::after {
    grid-area: 1 / 1;
    content: '';
    display: block;
    inset: 0;
    width: 24px;
    height: 2px;
    background-color: #fff;
    transition: transform 0.3s;
  }
  &::before {
    transform: translateY(-8px);
  }

  &::after {
    transform: translateY(8px);
  }
}
/* ハンバーガーアイコン：オープン時 */
[data-spmenu='opened'] {
  .-menuBtn .c-iconBtn__icon::before {
    transform: rotate(45deg);
    width: 24px;
  }
  .-menuBtn .c-iconBtn__icon {
    background-color: transparent;
  }
  .-menuBtn .c-iconBtn__icon::after {
    transform: rotate(-45deg);
  }
}

/* ボタンラベル */
.l-header__menuBtn .c-iconBtn::after,
.p-spMenu__closeBtn .c-iconBtn::after {
  font-size: 10px;
  line-height: 10px;
  transform: translateY(12px);
}
/* ------------------------------------------------------
 * 開閉メニューのクリーン設定
 * ------------------------------------------------------ */
.p-spMenu__inner {
  --color_menu_text: #fff; /* メニューテキストの色 */
  --color_menu_bg: #1f1f1f; /* フルスクリーンメニューの背景色 */
  width: 40vw;
}
.p-spMenu__overlay {
  background: transparent;
}
.-right .p-spMenu__inner {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 0;
  transition: opacity 0.45s;
}
[data-spmenu='opened'] .p-spMenu__inner {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}
.p-spMenu__inner::before {
  background: var(--color_menu_bg);
  opacity: 1;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
/* ------------------------------------------------------
 * メニュー内の設定
 * ------------------------------------------------------ */
.p-spMenu__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-weight: 700;
  overflow-y: hidden !important;
  color: var(--color_menu_text);
  transform: translateY(20px);
}
@media (max-width: 599px) {
  .p-spMenu__body {
    font-size: 5vw; /* スマホのフォントサイズ */
  }
}
/* 開閉メニュー内のタイトルを非表示 */
.c-widget__title.-spmenu {
  display: none;
}
/* メニューリンクの設定 */
.c-spnav a {
  border-bottom: none;
}
.c-gnav .sub-menu a:before,
.c-listMenu a:before {
  content: none;
}
.p-spMenu__inner a {
  font-family: 'Inter', sans-serif !important;
  font-size: 38px !important;
  letter-spacing: 0.1;
  padding: 0.2em 0;
  text-align: left;
  transition: transform 0.5s;
  letter-spacing: 0.07em;
}
.p-spMenu__inner a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transform-origin: center left;
  width: 75%;
  height: 2px;
  background-color: #e70013;
  content: '';
  transition: transform 0.3s ease;
}
.p-spMenu__inner a:hover {
  padding-left: inherit;
  padding-right: inherit;
  background-color: inherit;
  transform: scale(1.1);
}
.p-spMenu__inner a:hover::after {
  transform: scaleX(1);
}
/* 閉じるボタンの設定 */
.c-iconBtn {
  color: var(--color_menu_text);
}
@media (min-width: 960px) {
  .-right .p-spMenu__closeBtn {
    right: var(--swl-pad_container, 0);
    height: calc(var(--logo_size_pc) + 32px);
  }
}

.-menuBtn .c-iconBtn__icon {
  background-color: rgb(0, 0, 0, 0) !important;
}
/*** ページトップアイコン設定 ***/
/* ページトップアイコンを画像に変更する場合のみ */
#pagetop {
  background: url('') no-repeat center;
  background-size: contain;
  border: none;
  box-shadow: none;
  opacity: 1;
  border-radius: 0;
  width: 60px;
  height: 60px;
}
/*** 共通設定 ***/
.w-90 {
  width: 90% !important;
  margin-left: 5%;
}
/*** ページタイトル ***/
.page-ttl {
  letter-spacing: 0.15rem;
}
/*** セクションタイトル ***/
.s-ttl {
  font-family: 'Inter', sans-serif !important;
  font-size: 5.2rem !important;
  letter-spacing: 0.15rem;
}
.s-ttl a {
  color: #fff !important;
}
.s-ttl a:hover {
  color: #e70013 !important;
  cursor: default !important;
}
/*** ボックスデザイン1 ***/

/*** ボックスデザイン2 ***/

/*** ボックスデザイン3 ***/

/*** ボックスデザイン4 ***/

/*** ボックスデザイン5 ***/

/*** ボタンデザイン ***/
.btn-arrow {
  text-align: right;
}
.btn-arrow a {
  position: relative;
  display: inline-block;
  padding: 0 20px;
  color: #fff;
  text-decoration: none;
  outline: none;
}
/*矢印と下線の形状*/
.btn-arrow a::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 15%;
  width: 85%;
  height: 1px;
  background: #fff;
  transition: all 0.3s;
}
.btn-arrow a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  right: 0;
  width: 15px;
  height: 1px;
  background: #fff;
  transform: rotate(35deg);
  transition: all 0.3s;
}
/*hoverした際の移動*/
.btn-arrow a:hover {
  color: #e70013;
}
.btn-arrow a:hover::before {
  left: 20%;
  background: #e70013;
}
.btn-arrow a:hover::after {
  right: -5%;
  background: #e70013;
}
/*** ボタンデザイン2 ***/
.btn-l-arrow {
  text-align: left;
}
.btn-l-arrow a {
  position: relative;
  display: inline-block;
  padding: 0 20px 0 0;
  color: #fff;
  text-decoration: none;
  outline: none;
}
/*矢印と下線の形状*/
.btn-l-arrow a::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transition: all 0.3s;
}
.btn-l-arrow a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  right: 0;
  width: 15px;
  height: 1px;
  background: #fff;
  transform: rotate(35deg);
  transition: all 0.3s;
}
/*hoverした際の移動*/
.btn-l-arrow a:hover {
  color: #e70013;
}
.btn-l-arrow a:hover::before {
  left: 5%;
  background: #e70013;
}
.btn-l-arrow a:hover::after {
  right: -5%;
  background: #e70013;
}
/*** ボタンデザイン3 ***/
.btn03 a {
  color: #fff !important;
}
.btn03 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 200px;
  margin: 0 auto;
  padding: 0.5em 0.5em;
  border: 1px solid #fff;
  border-radius: 5px;
  background-color: inherit;
  color: #fff !important;
  font-size: 1em;
}
.btn03:hover {
  animation: anima-btn03 1s;
  color: inherit;
}
@keyframes anima-btn03 {
  0% {
    box-shadow: 0 0 0 0 rgb(231 0 19 / 50%);
  }
  100% {
    box-shadow: 0 0 0 1.2em rgb(0 0 0 / 0%);
  }
}
/*** その他 ***/
.gap-0 {
  gap: 0 !important;
}
.text-red {
  color: #e70013;
}
.pc-none {
  display: none;
}
.tab-only {
  display: none;
}
.back-w {
  background-color: rgb(255, 255, 255, 0.7);
  padding: 40px;
}
.text-center {
  text-align: center !important;
}
@media not all and (min-width: 960px) {
  [data-scrolled='true'] [data-spfix='1'] .l-header__inner {
    background-color: rgb(0, 0, 0);
  }
}
/* 480px以下の設定 */
@media screen and (max-width: 480px) {
  .pc-none {
    display: block;
  }
  .mob-none {
    display: none;
  }
  .tab-none {
    display: block;
  }
  .tab-only {
    display: none;
  }
  .mob-h20 {
    height: 20px !important;
  }
  .mob-h30 {
    height: 30px !important;
  }
  .mob-h40 {
    height: 40px !important;
  }
  .mob-h60 {
    height: 60px !important;
  }
  /*** メニュー ***/
  .p-spMenu__inner {
    width: 100vw;
  }
  .p-spMenu__body {
    overflow-y: scroll !important;
  }
  .l-header__menuBtn.sp_ {
    padding-right: 54px;
  }
  .-series .l-header__inner {
    background: #000 !important;
  }
  /*** メインビジュアル ***/

  /*** セクションタイトル ***/
  .s-ttl {
    font-size: 3.2rem !important;
    letter-spacing: 0.15rem;
  }
  /*** フッター ***/
}
