@charset "UTF-8";
/*
Theme Name: Bahn Fusion
Theme URI:
Author: MojaDesign
Author URI: https://moja-d.com/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: MojaDesign
*/
/*********************************************************************
* ブレークポイント定義
**********************************************************************/
/*********************************************************************
* メディアクエリー定義
**********************************************************************/
/*********************************************************************
  フォントサイズ
    $font-size: フォントサイズ(必須)
    $line-height: ラインハイト or 空
    $letter-spacing: レタースペーシング or 空
**********************************************************************/
/* ************************************************
 *	base
 * ************************************************ */
html,
html *,
body,
header,
footer {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
}

html {
  /*サイト全体の基準となるフォントサイズ*/
  font-size: 10px;
  scroll-behavior: smooth;
  /*html配下の全要素の基本フォントサイズ*/
}

body {
  position: relative;
  font-family: "Noto Sans JP", "Akshar", sans-serif !important;
  line-height: 2;
  letter-spacing: 0.05em;
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  padding: 0;
  margin: 0;
  color: #353535;
  padding-bottom: 56px;
  font-size: 16px;
}
@media print, screen and (min-width: 960px) {
  body {
    font-size: 18px;
  }
}

a {
  color: #353535;
}

a[href^="tel:"] {
  cursor: default;
}
@media print, screen and (min-width: 960px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
  a[href^="tel:"]:hover {
    opacity: unset;
    transition: none;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
img {
  vertical-align: bottom;
  width: 100%;
}

/* ************************************************
 *	共通クラス定義
 * *************************************************/
/* コンテンツ枠定義
---------------------------------------------------*/
#content-wrap {
  overflow: hidden;
  animation: fadein 1s;
}
@media print, screen and (min-width: 768px) {
  #content-wrap {
    margin-top: 60px;
  }
}
@media print, screen and (min-width: 960px) {
  #content-wrap {
    margin-top: 120px;
  }
}

.inner {
  max-width: 1080px;
  margin: 0 auto;
}

/* ページトップ
---------------------------------------------------*/
.pagetop {
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 10;
}
@media print, screen and (min-width: 768px) {
  .pagetop {
    width: 50px;
    height: 50px;
    bottom: 30px;
    right: 30px;
  }
}
.pagetop a {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 1;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .pagetop a {
    width: 50px;
    height: 50px;
  }
}
.pagetop a .arrow {
  position: relative;
  display: inline-block;
  padding-left: 20px;
}
.pagetop a .arrow::before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: -8px;
  left: 11px;
  border: 0px;
  border-top: 3px solid #333;
  border-right: 3px solid #333;
  transform: rotate(-45deg);
}
@media print, screen and (min-width: 960px) {
  .pagetop a .arrow::before {
    width: 15px;
    height: 15px;
    top: -3px;
    left: 13px;
  }
}
.pagetop a .pagetop_text {
  text-align: center;
  font-size: 0.75em;
  font-weight: bold;
}

/* アンカーずれ補正
---------------------------------------------------*/
.anchor {
  padding-top: 60px;
  margin-top: -60px;
}
@media print, screen and (min-width: 960px) {
  .anchor {
    padding-top: 120px;
    margin-top: -120px;
  }
}

/* flexクラス
---------------------------------------------------*/
.flex_between,
.flex_start,
.flex_center,
.flex_end,
.flex_around {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

@media print, screen and (min-width: 768px) {
  .flex_between_tab,
  .flex_start_tab,
  .flex_center_tab,
  .flex_end_tab,
  .flex_around_tab {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}

@media print, screen and (min-width: 960px) {
  .flex_between_pc,
  .flex_start_pc,
  .flex_center_pc,
  .flex_end_pc,
  .flex_around_pc {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}

.flex_between,
.flex_between_tab,
.flex_between_pc {
  justify-content: space-between;
}

.flex_start,
.flex_start_tab,
.flex_start_pc {
  justify-content: flex-start;
}

.flex_center,
.flex_center_tab,
.flex_center_pc {
  justify-content: center;
}

.flex_end,
.flex_end_tab,
.flex_end_pc {
  justify-content: flex-end;
}

.flex_around,
.flex_around_tab,
.flex_around_pc {
  justify-content: space-around;
}

.align_stretch {
  align-items: stretch !important;
}

@media print, screen and (min-width: 960px) {
  .row_reverse {
    flex-direction: row-reverse;
  }
}

@media print, screen and (min-width: 768px) {
  .row_reverse_tab {
    flex-direction: row-reverse;
  }
}

/*	PC／SP切り替え
---------------------------------------------------*/
.sp_only {
  display: block;
}
@media print, screen and (min-width: 768px) {
  .sp_only {
    display: none;
  }
}

.sp_only_ib {
  display: inline-block;
}
@media print, screen and (min-width: 768px) {
  .sp_only_ib {
    display: none;
  }
}

.tab_only {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .tab_only {
    display: block;
  }
}
@media print, screen and (min-width: 960px) {
  .tab_only {
    display: none;
  }
}

.pc_only {
  display: none;
}
@media print, screen and (min-width: 960px) {
  .pc_only {
    display: block;
  }
}

.tab_sp_only {
  display: block !important;
}
@media print, screen and (min-width: 960px) {
  .tab_sp_only {
    display: none !important;
  }
}

.tab_pc_only {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .tab_pc_only {
    display: block;
  }
}

.tab_pc_only_ib {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .tab_pc_only_ib {
    display: inline-block;
  }
}

.pc_only_ib {
  display: none;
}
@media print, screen and (min-width: 960px) {
  .pc_only_ib {
    display: inline-block;
  }
}

/* ************************************************
 *	共通パーツ
 * ************************************************ */
.inner_short {
  max-width: 1140px;
  margin: 0 auto;
}

.inner_wide {
  max-width: 1600px;
  margin: 0 auto;
}

.section_wrapper {
  padding: 30px 20px 0;
}
@media print, screen and (min-width: 428px) {
  .section_wrapper {
    padding: 60px 20px 0;
  }
}
@media print, screen and (min-width: 960px) {
  .section_wrapper {
    padding: 100px 20px 0;
  }
}

[id] {
  scroll-margin-top: 70px;
}
@media print, screen and (min-width: 960px) {
  [id] {
    scroll-margin-top: 130px;
  }
}

/* 横に伸びて表示される共通アニメーション */
.reveal-x {
  white-space: nowrap;
  /* 初期状態：非表示 */
  clip-path: inset(0 100% 0 0);
  -webkit-clip-path: inset(0 100% 0 0);
}

/* clip 専用の箱（何も変形しない） */
.reveal-x-outer {
  display: inline-block;
  overflow: visible;
  clip-path: inset(0 100% 0 0);
}

/* 実際の文字（ここで自由に動かす） */
.reveal-x-inner {
  display: inline-block;
}

/* 発火 */
.is-show .reveal-x-outer {
  animation: reveal-x 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes reveal-x {
  to {
    clip-path: inset(0 0 0 0);
  }
}
/* 表示トリガー */
.reveal-x.is-show {
  animation: reveal-x 0.9s ease-in-out forwards;
}

/* 👇 ディレイ指定 */
.delay-1 {
  animation-delay: 0.15s;
}

.delay-2 {
  animation-delay: 0.3s;
}

.delay-3 {
  animation-delay: 0.45s;
}

/* アニメーション定義 */
@keyframes reveal-x {
  from {
    clip-path: inset(0 100% 0 0);
    -webkit-clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
  }
}
/* --- 縦バージョン (新規追加) --- */
.reveal-y.is-show {
  animation: reveal-y 0.9s ease-in-out forwards;
}

@keyframes reveal-y {
  from {
    /* 上から下へ表示させるため、下側(bottom)を100%にして隠す */
    clip-path: inset(0 0 100% 0);
    -webkit-clip-path: inset(0 0 100% 0);
  }
  to {
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
  }
}
/* ************************************************
 *	共通ボタン
 * ************************************************ */
.btn {
  text-align: center;
  bottom: 0;
}
@media print, screen and (min-width: 960px) {
  .btn {
    text-align: start;
  }
}
.btn a,
.btn span {
  padding: 10px 65px 10px 35px;
  background-color: #00B00F;
  border-radius: 25px;
  display: inline-block;
  transition: all ease 0.5s;
  position: relative;
  color: #fff;
  border-radius: 40px;
}
.btn a:hover,
.btn span:hover {
  background-color: #00860B;
}
.btn a:hover::before,
.btn span:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.btn a:hover::after,
.btn span:hover::after {
  right: 1em;
}
.btn a::after,
.btn span::after {
  position: absolute;
  display: block;
  content: "";
  background-image: url("images/arrow-main.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 30px;
  height: 30px;
  top: 50%;
  right: 1.8em;
  transform: translateY(-50%);
  transition: all ease 0.5s;
}

/* ************************************************
 *	ヘッダー
 * ************************************************ */
/* 共通
----------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 60px;
  background-color: #fff;
  z-index: 100;
  transition: 0.8s;
  background-color: rgba(255, 255, 255, 0.6);
}
@media print, screen and (min-width: 960px) {
  #header {
    height: 120px;
    background-color: #fff;
  }
}
#header .header_inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.5s;
}
@media print, screen and (min-width: 960px) {
  #header .header_inner {
    align-items: center;
  }
}
#header .header_inner .logo {
  width: 200px;
}
@media print, screen and (min-width: 960px) {
  #header .header_inner .logo {
    width: 350px;
  }
}

#header.is-show {
  background-color: rgba(255, 255, 255, 0.6);
  transition: all 0.6s;
}

/* ロゴ
----------------------------------------------*/
.logo {
  width: 200px;
  line-height: 1;
}
.logo a {
  transition: all ease 0.3s;
  display: block;
}
.logo a:hover {
  opacity: 0.7;
}
.logo img {
  width: 100%;
  transition: 0.5s;
}
.logo .main_logo {
  display: block;
}
@media print, screen and (min-width: 960px) {
  .logo .main_logo {
    display: block;
    width: 300px;
  }
}
@media print, screen and (min-width: 1280px) {
  .logo .main_logo {
    display: block;
    width: 345px;
    margin-left: 18%;
  }
}
@media print, screen and (min-width: 960px) {
  .logo .sub_logo {
    display: none;
  }
}

/* グローバルナビ
----------------------------------------------*/
@media print, screen and (min-width: 960px) {
  .g_nav {
    width: 100%;
    transition: 0.5s;
  }
}

.header_nav {
  width: 100%;
}
@media print, screen and (min-width: 960px) {
  .header_nav {
    width: unset;
  }
}
.header_nav .content_nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  padding: 0 20px;
  margin-bottom: 140px;
}
@media print, screen and (min-width: 428px) {
  .header_nav .content_nav {
    width: 375px;
  }
}
@media print, screen and (min-width: 960px) {
  .header_nav .content_nav {
    width: 100%;
    padding: 0;
    flex-direction: row;
    margin-top: 16px;
    font-weight: bold;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 0;
  }
}
.header_nav .content_nav li {
  width: 100%;
  position: relative;
  text-align: start;
  border-top: 1px solid #353535;
  padding-top: 15px;
}
@media print, screen and (min-width: 960px) {
  .header_nav .content_nav li {
    position: static;
    padding: 0;
    line-height: 1;
    width: auto;
    text-align: start;
    border-top: none;
  }
}
.header_nav .content_nav li.height {
  min-height: 70px;
}
@media print, screen and (min-width: 960px) {
  .header_nav .content_nav li.height {
    min-height: 0;
  }
}
.header_nav .content_nav li.height a::before, .header_nav .content_nav li.height a::after {
  display: none;
}
.header_nav .content_nav a {
  display: flex;
  align-items: center;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0;
  padding: 10px 0;
  transition: all ease 0.3s;
  display: inline-block;
  color: #1C1C1C;
  white-space: nowrap;
  font-size: 18px;
  font-weight: bold;
  display: block;
  position: relative;
}
@media print, screen and (min-width: 960px) {
  .header_nav .content_nav a {
    font-size: 14px;
    padding: 0 10px;
  }
}
@media screen and (min-width: 1400px) {
  .header_nav .content_nav a {
    font-size: 16px;
    padding: 0 15px;
  }
}
@media screen and (min-width: 1500px) {
  .header_nav .content_nav a {
    font-size: 18px;
  }
}
.header_nav .content_nav a:hover {
  color: #00B00F;
}
.header_nav .content_nav a::before {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  right: 10px;
  width: 20px;
  height: 2px;
  background-color: #353535;
}
@media print, screen and (min-width: 960px) {
  .header_nav .content_nav a::before {
    display: none;
  }
}
.header_nav .content_nav a::after {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  right: 10px;
  width: 20px;
  height: 2px;
  background-color: #353535;
  transform: rotate(90deg);
  opacity: 1;
  transition: all ease 0.6s;
}
@media print, screen and (min-width: 960px) {
  .header_nav .content_nav a::after {
    display: none;
  }
}

.header_tel {
  display: none;
}
@media print, screen and (min-width: 960px) {
  .header_tel {
    margin-left: 1em;
    display: flex;
    align-items: flex-end;
  }
}
.header_tel .tel {
  display: inline-block;
  font-size: 32px;
  padding-left: 35px;
  position: relative;
  line-height: 0.9;
  margin-right: 10px;
  font-family: "Akshar";
}
.header_tel .tel::before {
  position: absolute;
  display: block;
  content: "";
  width: 36px;
  height: 36px;
  background-image: url("images/header-tel.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  top: -10px;
  left: -6px;
}
.header_tel p {
  font-size: 14px;
  color: #353535;
  text-align: center;
  font-weight: 500;
}
@media print, screen and (min-width: 960px) {
  .header_tel p {
    font-size: 14px;
    padding: 0 10px;
    text-align: start;
  }
}
.header_tel p .time {
  font-weight: bold;
}

.header_contact {
  display: none;
}
@media print, screen and (min-width: 960px) {
  .header_contact {
    position: static;
    transform: unset;
    display: block;
    margin-left: auto;
    margin-left: 15px;
    margin-bottom: 6px;
  }
}
@media print, screen and (min-width: 1280px) {
  .header_contact {
    margin-left: 30px;
  }
}
.header_contact a {
  transition: all ease 0.3s;
  background-color: #00B00F;
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 15px 45px 15px 70px;
  border-radius: 10px;
}
@media print, screen and (min-width: 960px) {
  .header_contact a {
    width: 120px;
    height: 114px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 0 20px;
  }
}
@media print, screen and (min-width: 1280px) {
  .header_contact a {
    width: 150px;
  }
}
.header_contact a p {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  position: relative;
  white-space: nowrap;
}
@media print, screen and (min-width: 960px) {
  .header_contact a p {
    margin-top: 30px;
    font-size: 16px;
    margin-right: 15px;
  }
}
@media print, screen and (min-width: 1280px) {
  .header_contact a p {
    font-size: 18px;
  }
}
.header_contact a p::before {
  position: absolute;
  display: block;
  content: "";
  background-image: url("images/mail.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 30px;
  height: 28px;
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
}
@media print, screen and (min-width: 960px) {
  .header_contact a p::before {
    width: 38px;
    height: 28px;
    top: -34px;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
.header_contact a:hover {
  opacity: 0.7;
}

/* ************************************************
 *	SP　ハンバーガーメニュー
 * ************************************************ */
/* メニュートリガー
----------------------------------------*/
.menu_trigger {
  display: inline-block;
  width: 40px;
  height: 40px;
  vertical-align: middle;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 10px;
  z-index: 100;
  margin: 10px 0;
  text-align: center;
  transform: translateX(0);
  background-color: #00B00F;
  border-radius: 50%;
}
@media print, screen and (min-width: 960px) {
  .menu_trigger {
    display: none;
  }
}

.menu_trigger span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 12px;
  width: 16px;
  height: 1px;
  background-color: #fff;
  border-radius: 1px;
  transition: all 0.5s;
}

.menu_trigger span:nth-of-type(1) {
  top: 15px;
}

.menu_trigger span:nth-of-type(2) {
  top: 20px;
}

.menu_trigger span:nth-of-type(3) {
  top: 25px;
}

.menu_trigger.active {
  transform: translateX(0);
  position: fixed;
  width: 40px;
  height: 40px;
}

.menu_trigger.active span:nth-of-type(1) {
  transform: translateY(5px) rotate(-45deg);
}

.menu_trigger.active span:nth-of-type(2) {
  opacity: 0;
}

.menu_trigger.active span:nth-of-type(3) {
  transform: translateY(-5px) rotate(45deg);
}

/* メニュー枠
----------------------------------------*/
.header_nav {
  position: fixed;
  top: 60px;
  right: 0;
  width: 100vw;
  height: calc(100% - 60px);
  transition: all 0.6s;
  overflow-y: scroll;
  opacity: 0;
  z-index: 999;
  background-color: #fff;
  transform: translateX(100%);
}
@media print, screen and (min-width: 428px) {
  .header_nav {
    width: 375px;
    transform: translateX(375px);
  }
}
@media print, screen and (min-width: 960px) {
  .header_nav {
    width: 100%;
    position: unset;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 0;
    transform: unset;
    transition: unset;
    overflow: unset;
    background: none;
    background-color: transparent;
    opacity: 1;
    visibility: visible;
  }
}

.header_nav.open {
  opacity: 1;
  z-index: 999;
  visibility: visible;
  transform: translateX(0);
}

.header_contents {
  position: absolute;
  top: 0;
  text-align: start;
}
@media print, screen and (min-width: 960px) {
  .header_contents {
    top: 60px;
    position: static;
    transform: unset;
    text-align: unset;
  }
}

/* ドロワーメニュー
----------------------------------------*/
.drop_nav {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-bottom: 15px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s ease;
}
@media print, screen and (min-width: 428px) {
  .drop_nav {
    width: 350px;
  }
}
.drop_nav li {
  width: 100%;
  position: relative;
  text-align: start;
  padding: 0 !important;
  border-top: none !important;
  padding-top: 0 !important;
}
.drop_nav li:first-child a {
  font-size: 18px;
  font-weight: bold;
}
.drop_nav li:not(:first-child) a {
  font-size: 16px;
  font-weight: 500;
}
.drop_nav a {
  display: flex;
  align-items: center;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  padding: 10px 0 !important;
  transition: all ease 0.3s;
  display: inline-block;
  color: #656565;
  white-space: nowrap;
}
.drop_nav a:hover {
  color: #00B00F;
}
.drop_nav a::before {
  display: none !important;
}
.drop_nav a::after {
  display: none !important;
}

.drop_nav.active {
  max-height: 100vh;
  opacity: 1;
  visibility: visible;
}

.content_nav li:has(.drop_nav.active) > a::after {
  opacity: 0;
  /* 水平線を非表示 */
}

/* パンくず
----------------------------------------*/
.breadcrumbs_wrapper {
  width: 100%;
  font-size: 8px;
  font-weight: 500;
  line-height: 1;
  text-align: left;
  max-width: 1140px;
  padding: 60px 20px 20px;
  margin: 0 auto;
  background-color: #fff;
}
@media print, screen and (min-width: 768px) {
  .breadcrumbs_wrapper {
    padding: 100px 20px 20px;
    font-size: 12px;
  }
}
.breadcrumbs_wrapper span {
  display: inline-block;
  font-size: 10px;
  padding: 0 2px;
  line-height: 1.4;
}
@media print, screen and (min-width: 768px) {
  .breadcrumbs_wrapper span {
    padding: 0 0;
    font-size: 12px;
  }
}
.breadcrumbs_wrapper a {
  display: inline-block;
  font-size: 10px;
  padding-right: 2px;
}
@media print, screen and (min-width: 768px) {
  .breadcrumbs_wrapper a {
    font-size: 12px;
  }
}

/*	404
----------------------------------------*/
.error404 {
  background-color: #fff;
}

.notfound_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 56px;
  z-index: 1;
}
@media print, screen and (min-width: 960px) {
  .notfound_wrap {
    justify-content: flex-end;
    padding-top: 18vw;
  }
}
.notfound_wrap img {
  width: 220px;
}
@media print, screen and (min-width: 960px) {
  .notfound_wrap img {
    width: 293px;
  }
}

h2.notfound {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  h2.notfound {
    font-size: 32px;
  }
}
@media print, screen and (min-width: 960px) {
  h2.notfound {
    font-size: 46px;
  }
}

.notfound_txt {
  font-weight: 500;
  text-align: center;
  padding-bottom: 1.5em;
}
@media print, screen and (min-width: 768px) {
  .notfound_txt {
    font-size: 24px;
  }
}
@media print, screen and (min-width: 960px) {
  .notfound_txt {
    font-size: 32px;
  }
}

/* reCAPTCHA
----------------------------------------*/
.grecaptcha-badge {
  visibility: hidden;
}

/* ************************************************
 *	フッター
 * ************************************************ */
/* フッターお問い合わせ
----------------------------------------*/
.footer_contact {
  background: url(images/sp-contact-bg.webp) no-repeat center/cover;
  padding: 70px 20px;
}
@media print, screen and (min-width: 960px) {
  .footer_contact {
    padding: 55px 20px;
    background: url(images/top-contact-bg.webp) no-repeat center/cover;
  }
}

.footer_contact_wrapper {
  background-color: #fff;
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 44px 0px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
}
@media print, screen and (min-width: 768px) {
  .footer_contact_wrapper {
    padding: 60px 14px 50px 14px;
  }
}
.footer_contact_wrapper .section_ttl {
  text-align: center;
  line-height: 1;
}
@media print, screen and (min-width: 768px) {
  .footer_contact_wrapper .section_ttl {
    line-height: 0.9;
  }
}
@media print, screen and (min-width: 960px) {
  .footer_contact_wrapper .section_ttl {
    line-height: 1;
  }
}
.footer_contact_wrapper .section_ttl::after {
  display: none;
}
.footer_contact_wrapper .section_ttl .en_ttl {
  color: #110F67;
  font-size: 54px;
  line-height: 0.8;
  display: inline-block;
  vertical-align: top;
  margin: 0;
  position: relative;
  font-family: "Akshar";
  font-weight: 500;
}
@media print, screen and (min-width: 768px) {
  .footer_contact_wrapper .section_ttl .en_ttl {
    font-size: 6.5vw;
  }
}
@media print, screen and (min-width: 960px) {
  .footer_contact_wrapper .section_ttl .en_ttl {
    font-size: 104px;
  }
}
.footer_contact_wrapper .section_ttl .en_ttl::before {
  position: absolute;
  display: block;
  content: "";
  top: 45px;
  left: -68px;
  width: 90px;
  height: 114px;
  background-image: url(images/top-mv05.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media print, screen and (min-width: 428px) {
  .footer_contact_wrapper .section_ttl .en_ttl::before {
    top: 45px;
    left: -80px;
  }
}
@media print, screen and (min-width: 768px) {
  .footer_contact_wrapper .section_ttl .en_ttl::before {
    top: -30px;
    left: -110px;
    width: 100px;
    height: 114px;
  }
}
@media print, screen and (min-width: 960px) {
  .footer_contact_wrapper .section_ttl .en_ttl::before {
    top: -25px;
    left: -170px;
    width: 170px;
    height: 171px;
  }
}
.footer_contact_wrapper .section_ttl .ja_ttl {
  display: block;
  font-size: 18px;
  margin-top: 5px;
  color: #1C1C1C;
}
@media print, screen and (min-width: 768px) {
  .footer_contact_wrapper .section_ttl .ja_ttl {
    font-size: 22px;
    margin-top: 0;
  }
}
.footer_contact_wrapper .footer_contact_text {
  margin-top: 20px;
  font-size: 16px;
  color: #1C1C1C;
  font-weight: 500;
  text-align: start;
  width: 76%;
  margin-left: auto;
  min-width: 240px;
}
@media print, screen and (min-width: 428px) {
  .footer_contact_wrapper .footer_contact_text {
    width: 65%;
  }
}
@media print, screen and (min-width: 768px) {
  .footer_contact_wrapper .footer_contact_text {
    font-size: 18px;
    text-align: center;
    width: 100%;
  }
}
.footer_contact_wrapper .footer_contact_info {
  align-items: center;
  text-align: center;
  margin-top: 23px;
}
@media print, screen and (min-width: 960px) {
  .footer_contact_wrapper .footer_contact_info {
    margin-top: 32px;
  }
}
.footer_contact_wrapper .footer_contact_tel {
  line-height: 1;
}
@media print, screen and (min-width: 960px) {
  .footer_contact_wrapper .footer_contact_tel {
    padding: 0 18px;
  }
}
.footer_contact_wrapper .footer_contact_tel .tel {
  font-size: 30px;
  padding-left: 25px;
  display: inline-block;
  position: relative;
  font-weight: 500;
  border-radius: 50px;
  padding: 14px 40px 16px 65px;
  transition: all ease 0.3s;
  max-width: 325px;
  font-family: "Akshar";
  color: #1C1C1C;
  background-color: transparent;
}
@media print, screen and (min-width: 428px) {
  .footer_contact_wrapper .footer_contact_tel .tel {
    font-size: 30px;
    max-width: unset;
  }
}
@media print, screen and (min-width: 960px) {
  .footer_contact_wrapper .footer_contact_tel .tel {
    padding: 20px 45px 18px 84px;
  }
}
.footer_contact_wrapper .footer_contact_tel .tel:hover {
  opacity: 0.7 !important;
}
.footer_contact_wrapper .footer_contact_tel .number {
  font-size: 32px;
  white-space: nowrap;
  color: #1C1C1C;
}
@media print, screen and (min-width: 960px) {
  .footer_contact_wrapper .footer_contact_tel .number {
    font-size: 40px;
    position: relative;
  }
}
.footer_contact_wrapper .footer_contact_tel .number::before {
  display: block;
  content: "";
  position: absolute;
  background-image: url("images/header-tel.svg");
  background-size: contain;
  background-repeat: no-repeat;
  top: 34%;
  left: 28px;
  width: 1.1em;
  height: 1.1em;
  transform: translateY(-50%);
}
@media print, screen and (min-width: 960px) {
  .footer_contact_wrapper .footer_contact_tel .number::before {
    width: 50px;
    height: 50px;
    top: 43%;
    transform: translateY(-50%);
    background-image: url("images/header-tel.svg");
    left: -55px;
  }
}
.footer_contact_wrapper .footer_contact_tel p {
  font-size: 16px;
  font-family: "Noto Sans JP";
}
@media print, screen and (min-width: 960px) {
  .footer_contact_wrapper .footer_contact_tel p {
    font-size: 18px;
  }
}
.footer_contact_wrapper .footer_contact_tel .time {
  margin-top: 5px;
  font-size: 14px;
  display: block;
  font-family: "Noto Sans JP";
}
.footer_contact_wrapper .footer_contact_email {
  line-height: 1;
  margin-top: 18px;
}
@media print, screen and (min-width: 960px) {
  .footer_contact_wrapper .footer_contact_email {
    padding: 0 18px;
    margin-top: 0;
  }
}
.footer_contact_wrapper .footer_contact_email .email {
  font-size: 30px;
  padding-left: 25px;
  display: inline-block;
  position: relative;
  font-weight: bold;
  background-color: #00B00F;
  color: #fff;
  border-radius: 50px;
  transition: all ease 0.3s;
  white-space: nowrap;
  padding: 15px 25px 15px 50px;
  max-width: 325px;
}
@media print, screen and (min-width: 428px) {
  .footer_contact_wrapper .footer_contact_email .email {
    font-size: 30px;
    max-width: unset;
  }
}
@media print, screen and (min-width: 960px) {
  .footer_contact_wrapper .footer_contact_email .email {
    padding: 15px 27px 15px 85px;
  }
}
.footer_contact_wrapper .footer_contact_email .email:hover {
  opacity: 0.7;
}
.footer_contact_wrapper .footer_contact_email span {
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  vertical-align: 6px;
  letter-spacing: 0.02em;
}
@media print, screen and (min-width: 960px) {
  .footer_contact_wrapper .footer_contact_email span {
    color: #fff;
    font-size: 18px;
    position: relative;
  }
}
.footer_contact_wrapper .footer_contact_email span::before {
  display: block;
  content: "";
  position: absolute;
  background-image: url("images/mail.svg");
  background-repeat: no-repeat;
  background-size: contain;
  top: 51%;
  left: 18px;
  width: 1.8em;
  height: 1.2em;
  transform: translateY(-50%);
}
@media print, screen and (min-width: 960px) {
  .footer_contact_wrapper .footer_contact_email span::before {
    top: 50%;
    left: -45px;
    width: 2em;
    height: 1.6em;
    transform: translateY(-50%);
  }
}

/* フッターリンク・コピーライト
----------------------------------------*/
.logo_wrapper {
  width: 100%;
  text-align: center;
  background-color: #fff;
}
.logo_wrapper .footer_logo {
  width: 250px;
  text-align: center;
  padding: 30px 0 10px 0;
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) {
  .logo_wrapper .footer_logo {
    padding: 45px 0;
    text-align: center;
    width: 345px;
  }
}
.logo_wrapper .footer_logo a {
  transition: all ease 0.3s;
  display: block;
}
@media print, screen and (min-width: 960px) {
  .logo_wrapper .footer_logo a:hover {
    opacity: 0.6;
  }
}
.logo_wrapper .footer_logo a img {
  display: block;
  width: 100%;
}

.footer_link_area {
  padding: 0 0 40px;
  margin: 0;
  background-color: #040F36;
}
@media print, screen and (min-width: 960px) {
  .footer_link_area {
    padding: 0 0 40px 0;
  }
}
.footer_link_area .inner_wide {
  padding: 40px 20px 0;
}
@media print, screen and (min-width: 768px) {
  .footer_link_area .inner_wide {
    padding: 80px 20px 0;
  }
}
.footer_link_area .footer_link_contents {
  flex-wrap: wrap;
  align-items: flex-start;
  position: relative;
  padding-top: 70px;
}
@media print, screen and (min-width: 768px) {
  .footer_link_area .footer_link_contents {
    -moz-column-gap: 70px;
         column-gap: 70px;
    row-gap: 60px;
    padding-top: 0;
  }
}
@media print, screen and (min-width: 960px) {
  .footer_link_area .footer_link_contents {
    position: static;
    width: 100%;
    -moz-column-gap: 70px;
         column-gap: 70px;
  }
}
@media screen and (min-width: 960px) and (min-width: 1280px) {
  .footer_link_area .footer_link_contents {
    -moz-column-gap: 80px;
         column-gap: 80px;
  }
}
.footer_link_area .footer_link_contents .footer_link_box {
  width: 100%;
  padding: 8px 16px;
}
@media print, screen and (min-width: 768px) {
  .footer_link_area .footer_link_contents .footer_link_box {
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    width: calc(50% - 35px);
    padding: 5px 0 0 0;
  }
}
@media print, screen and (min-width: 960px) {
  .footer_link_area .footer_link_contents .footer_link_box {
    width: calc(33.3333% - 46.6666px);
  }
}
@media screen and (min-width: 1280px) {
  .footer_link_area .footer_link_contents .footer_link_box {
    width: calc(25% - 60px);
  }
}
.footer_link_area .footer_link_contents .footer_link_box .footer_link:first-child a {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  padding-left: 0;
}
.footer_link_area .footer_link_contents .footer_link_box .footer_link:not(:first-child) a {
  padding-left: 1.8em;
  position: relative;
  color: rgba(255, 255, 255, 0.6);
}
.footer_link_area .footer_link_contents .footer_link_box .footer_link:not(:first-child) a:before {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  left: 0;
  width: 0.9em;
  height: 1px;
  background-color: #fff;
  transform: translateY(-50%);
}
.footer_link_area .footer_link_contents .footer_link_box .footer_link a {
  font-size: 16px;
  padding: 5px 10px;
  display: inline-block;
  line-height: 1.6;
  transition: all ease 0.3s;
}
.footer_link_area .footer_link_contents .footer_link_box .footer_link a:hover {
  color: #00B00F;
}
.footer_link_area .footer_link_contents .sns_wrapper {
  margin-top: 30px;
  width: 100vw;
  position: absolute;
  top: -71px;
  left: 0;
  display: flex;
  justify-content: center;
  background-color: #fff;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
@media print, screen and (min-width: 768px) {
  .footer_link_area .footer_link_contents .sns_wrapper {
    width: 100%;
    background-color: #040F36;
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    justify-content: flex-start;
    position: static;
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
  }
}
.footer_link_area .footer_link_contents .sns_wrapper a {
  position: relative;
  font-size: 0;
  text-indent: -9999px;
  overflow: hidden;
}
@media print, screen and (max-width: 767px) {
  .footer_link_area .footer_link_contents .sns_wrapper a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 50px;
  }
  .footer_link_area .footer_link_contents .sns_wrapper a::after {
    display: block !important;
  }
}
@media print, screen and (min-width: 768px) {
  .footer_link_area .footer_link_contents .sns_wrapper a {
    font-size: 16px;
    text-indent: 0;
    padding-left: 2.2em;
  }
  .footer_link_area .footer_link_contents .sns_wrapper a::after {
    display: block !important;
  }
}
.footer_link_area .footer_link_contents .sns_wrapper a::before {
  display: none !important;
}
.footer_link_area .footer_link_contents .sns_wrapper [class*=instagram]::after,
.footer_link_area .footer_link_contents .sns_wrapper [class*=line]::after,
.footer_link_area .footer_link_contents .sns_wrapper [class*=youtube]::after,
.footer_link_area .footer_link_contents .sns_wrapper [class*=x]::after,
.footer_link_area .footer_link_contents .sns_wrapper [class*=facebook]::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  background-color: #fff;
}
@media print, screen and (max-width: 767px) {
  .footer_link_area .footer_link_contents .sns_wrapper [class*=instagram]::after,
  .footer_link_area .footer_link_contents .sns_wrapper [class*=line]::after,
  .footer_link_area .footer_link_contents .sns_wrapper [class*=youtube]::after,
  .footer_link_area .footer_link_contents .sns_wrapper [class*=x]::after,
  .footer_link_area .footer_link_contents .sns_wrapper [class*=facebook]::after {
    width: 30px;
    height: 30px;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #040F36;
  }
}
.footer_link_area .footer_link_contents .sns_wrapper .instagram::after {
  mask-image: url("images/instagram.svg");
  -webkit-mask-image: url("images/instagram.svg");
}
.footer_link_area .footer_link_contents .sns_wrapper .line::after {
  mask-image: url("images/line.svg");
  -webkit-mask-image: url("images/line.svg");
}
.footer_link_area .footer_link_contents .sns_wrapper .youtube::after {
  mask-image: url("images/youtube.svg");
  -webkit-mask-image: url("images/youtube.svg");
}
.footer_link_area .footer_link_contents .sns_wrapper .x::after {
  mask-image: url("images/x.svg");
  -webkit-mask-image: url("images/x.svg");
}
.footer_link_area .footer_link_contents .sns_wrapper .facebook::after {
  mask-image: url("images/facebook.svg");
  -webkit-mask-image: url("images/facebook.svg");
}
.footer_link_area .footer_security_link {
  width: 100%;
  padding: 0 16px;
}
@media print, screen and (min-width: 768px) {
  .footer_link_area .footer_security_link {
    margin-top: 60px;
    width: calc(50% - 35px);
    padding: 0;
  }
}
@media print, screen and (min-width: 960px) {
  .footer_link_area .footer_security_link {
    width: 100%;
    padding: 24px 0;
  }
}
.footer_link_area .footer_security_link .footer_link_box {
  width: 100%;
  padding: 16px 0;
}
@media print, screen and (min-width: 960px) {
  .footer_link_area .footer_security_link .footer_link_box {
    padding: 16px;
    border-top: none;
    padding: 0;
  }
}
.footer_link_area .footer_security_link .footer_link_box .footer_link {
  width: 100%;
}
@media print, screen and (min-width: 960px) {
  .footer_link_area .footer_security_link .footer_link_box .footer_link {
    width: unset;
  }
}
.footer_link_area .footer_security_link .footer_link_box .footer_link:first-child a {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  padding-left: 0;
}
@media print, screen and (min-width: 960px) {
  .footer_link_area .footer_security_link .footer_link_box .footer_link:first-child a {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
  }
}
.footer_link_area .footer_security_link .footer_link_box .footer_link:not(:first-child) a {
  padding-left: 1.8em;
  position: relative;
  color: rgba(255, 255, 255, 0.6);
}
.footer_link_area .footer_security_link .footer_link_box .footer_link:not(:first-child) a:before {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  left: 0;
  width: 0.9em;
  height: 1px;
  background-color: #fff;
  transform: translateY(-50%);
}
@media print, screen and (min-width: 960px) {
  .footer_link_area .footer_security_link .footer_link_box .footer_link:not(:first-child) a:before {
    display: none;
  }
}
.footer_link_area .footer_security_link .footer_link_box .footer_link a {
  font-size: 16px;
  padding: 5px 10px;
  display: inline-block;
  font-family: "Noto Sans JP";
  line-height: 1.6;
  transition: all ease 0.3s;
}
.footer_link_area .footer_security_link .footer_link_box .footer_link a:hover {
  color: #00B00F;
}
.footer_link_area .bpo_img {
  text-align: start !important;
  padding: 0 36px;
  margin-top: 20px;
}
@media print, screen and (min-width: 960px) {
  .footer_link_area .bpo_img {
    margin-top: 40px;
    padding: 0 16px;
  }
}
.footer_link_area .bpo_img img {
  max-width: 240px;
}
.footer_link_area .footer_copyright {
  display: block;
  font-size: 11px;
  text-align: center;
  padding: 24px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-family: "Noto Sans JP";
}
@media print, screen and (min-width: 960px) {
  .footer_link_area .footer_copyright {
    font-size: 12px;
  }
}

.footer_fixed {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 56px;
  display: flex;
  opacity: 0;
  transition: all 0.6s;
  transform: translateY(100px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 9999;
}
@media print, screen and (min-width: 428px) {
  .footer_fixed {
    width: 375px;
  }
}
@media print, screen and (min-width: 960px) {
  .footer_fixed {
    display: none;
  }
}
.footer_fixed .fixed_tel {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #fff;
}
.footer_fixed .fixed_tel .number {
  font-size: 22px;
  text-align: center;
  color: #1C1C1C;
  padding-left: 20px;
  line-height: 1;
  display: block;
  position: relative;
  font-family: "Akshar";
}
.footer_fixed .fixed_tel .number::before {
  position: absolute;
  display: block;
  content: "";
  width: 1em;
  height: 1em;
  top: -1px;
  left: -5px;
  background-image: url("images/header-tel.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.footer_fixed .fixed_tel .text {
  color: #1C1C1C;
  display: block;
  text-align: center;
  font-size: 12px;
  display: block;
  line-height: 1;
  margin-top: 4px;
}
.footer_fixed .fixed_line {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #00B00F;
}
.footer_fixed .fixed_line span {
  font-size: 14px;
  text-align: center;
  color: #fff;
  padding-left: 20px;
  line-height: 1;
  display: block;
  position: relative;
  font-weight: bold;
  font-size: 13px;
}
.footer_fixed .fixed_line span::before {
  position: absolute;
  display: block;
  content: "";
  width: 1.4em;
  height: 1.4em;
  top: -2px;
  left: -4px;
  background-image: url("images/fixed-line.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.footer_fixed.show {
  opacity: 1;
  transform: translateY(0);
}
@media print, screen and (min-width: 428px) {
  .footer_fixed.show {
    display: none;
  }
}

.footer_fixed.show_nav {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
  flex-direction: column;
  height: 140px;
}
.footer_fixed.show_nav .fixed_tel,
.footer_fixed.show_nav .fixed_line {
  width: 100%;
  height: 50%;
  flex-direction: row;
}
.footer_fixed.show_nav .fixed_tel {
  flex-direction: column;
}
.footer_fixed.show_nav .fixed_tel .number {
  font-size: 32px;
}
.footer_fixed.show_nav .fixed_tel .number::before {
  left: -18px;
}
.footer_fixed.show_nav .fixed_tel .text {
  font-size: 14px;
}
.footer_fixed.show_nav .fixed_line {
  flex-direction: column;
}
.footer_fixed.show_nav .fixed_line span {
  font-size: 20px;
}
.footer_fixed.show_nav .fixed_line span::before {
  left: -16px;
}

.line_fixed {
  opacity: 0;
  position: fixed;
  top: 80vh;
  right: 0;
  transform: translateX(30px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 999;
}

.line_fixed.is-show {
  opacity: 1;
  transform: translateX(-30px);
  pointer-events: auto;
}

.no_link {
  cursor: default;
  pointer-events: none;
}/*# sourceMappingURL=style.css.map */