@charset "UTF-8";
/* ===================================================================
CSS information

file name   : common.css
author      : Abilive
style info  : 基本・共通設定
=================================================================== */
/* ===================================================================
CSS information

file name  : _settings.scss
author     : Abilive
style info : Forwarder for all foundation settings
=================================================================== */
/* ===================================================================
   foundation/_variables.scss
   style info : Design tokens — all Sass variables
=================================================================== */
:root {
  --base: 14;
  --bp-tab: 1199px;
  --bp-sp: 767px;
  --column-width: 1280px;
  --base-size: 14px;
  --base-size-sp: 12px;
  --max-width-contaimer: 1360px;
  --space-screen: 40px;
  --space-section: calc(120/var(--base) * 1em);
  --base-color: #1C1D1C;
  --base-color-rgb: 28, 29, 28;
  --c-cvr: #915444;
  --c-white: #fff;
  --c-gray-dark: #444444;
  --c-gray-medium: #999999;
  --c-gray-light: #F5F5F5;
  --bg-white-1: url(../images/common/bg_white-1.png);
  --bg-white-2: url(../images/common/bg_white-2.png);
  --lh-100: 1;
  --lh-160: 1.6;
  --lh-200: 2;
  --fw-regular: 400;
  --fw-medium: 500;
}

@media screen and (min-width: calc(767px + 1)) and (max-width: 1199px) {
  :root {
    --space-section: calc(90/var(--base) * 1em);
  }
}
@media screen and (max-width: 767px) {
  :root {
    --space-section: calc(60/var(--base) * 1em);
  }
}
/* ===================================================================
CSS information

file name  : _settings.scss
author     : Abilive
style info : Forwarder for all foundation settings
=================================================================== */
/* ===================================================================
   foundation/_breakpoints.scss
   style info : Breakpoint variables + mq() mixin
=================================================================== */
/* ===================================================================
CSS information

file name  : _settings.scss
author     : Abilive
style info : Forwarder for all foundation settings
=================================================================== */
/* ===================================================================
   foundation/_functions.scss
   style info : Sass utility functions
=================================================================== */
/* ===================================================================
CSS information

file name  : _settings.scss
author     : Abilive
style info : Forwarder for all foundation settings
=================================================================== */
/* ===================================================================
   foundation/_mixins.scss
   style info : All reusable Sass mixins
=================================================================== */
/* ===================================================================
CSS information

file name  : _settings.scss
author     : Abilive
style info : Forwarder for all foundation settings
=================================================================== */
/* ===================================================================
   foundation/_placeholders.scss
   style info : Sass placeholders (%)
=================================================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes splide-loading {
  0% {
    transform: rotateZ(0);
  }
  100% {
    transform: rotateZ(360deg);
  }
}
@keyframes scrollLine {
  0% {
    background-position: 0 -100%;
  }
  100% {
    background-position: 0 100%;
  }
}
/* ==========================================================
Utility: Spacing
-------------------------------------------------------------
Margin
  .u-m-{size}   -> margin
  .u-mx-{size}  -> margin-left + margin-right
  .u-my-{size}  -> margin-top + margin-bottom
  .u-mt-{size}  -> margin-top
  .u-mr-{size}  -> margin-right
  .u-mb-{size}  -> margin-bottom
  .u-ml-{size}  -> margin-left

Padding
  .u-p-{size}   -> padding
  .u-px-{size}  -> padding-left + padding-right
  .u-py-{size}  -> padding-top + padding-bottom
  .u-pt-{size}  -> padding-top
  .u-pr-{size}  -> padding-right
  .u-pb-{size}  -> padding-bottom
  .u-pl-{size}  -> padding-left

Example:
  <div class="u-px-20 u-py-10 u-mb-30">
    Content
  </div>
========================================================== */
/* Margin */
.u-m-0 {
  margin: calc(0 / var(--base) * 1em);
}

.u-mx-0 {
  margin-left: calc(0 / var(--base) * 1em);
  margin-right: calc(0 / var(--base) * 1em);
}

.u-my-0 {
  margin-top: calc(0 / var(--base) * 1em);
  margin-bottom: calc(0 / var(--base) * 1em);
}

.u-mt-0 {
  margin-top: calc(0 / var(--base) * 1em);
}

.u-mr-0 {
  margin-right: calc(0 / var(--base) * 1em);
}

.u-mb-0 {
  margin-bottom: calc(0 / var(--base) * 1em);
}

.u-ml-0 {
  margin-left: calc(0 / var(--base) * 1em);
}

/* Margin negative */
.u-m-n0 {
  margin: calc(0 / var(--base) * -1em);
}

.u-mx-n0 {
  margin-left: calc(0 / var(--base) * -1em);
  margin-right: calc(0 / var(--base) * -1em);
}

.u-my-n0 {
  margin-top: calc(0 / var(--base) * -1em);
  margin-bottom: calc(0 / var(--base) * -1em);
}

.u-mt-n0 {
  margin-top: calc(0 / var(--base) * -1em);
}

.u-mr-n0 {
  margin-right: calc(0 / var(--base) * -1em);
}

.u-mb-n0 {
  margin-bottom: calc(0 / var(--base) * -1em);
}

.u-ml-n0 {
  margin-left: calc(0 / var(--base) * -1em);
}

/* Padding */
.u-p-0 {
  padding: calc(0 / var(--base) * 1em);
}

.u-px-0 {
  padding-left: calc(0 / var(--base) * 1em);
  padding-right: calc(0 / var(--base) * 1em);
}

.u-py-0 {
  padding-top: calc(0 / var(--base) * 1em);
  padding-bottom: calc(0 / var(--base) * 1em);
}

.u-pt-0 {
  padding-top: calc(0 / var(--base) * 1em);
}

.u-pr-0 {
  padding-right: calc(0 / var(--base) * 1em);
}

.u-pb-0 {
  padding-bottom: calc(0 / var(--base) * 1em);
}

.u-pl-0 {
  padding-left: calc(0 / var(--base) * 1em);
}

/* Margin */
.u-m-5 {
  margin: calc(5 / var(--base) * 1em);
}

.u-mx-5 {
  margin-left: calc(5 / var(--base) * 1em);
  margin-right: calc(5 / var(--base) * 1em);
}

.u-my-5 {
  margin-top: calc(5 / var(--base) * 1em);
  margin-bottom: calc(5 / var(--base) * 1em);
}

.u-mt-5 {
  margin-top: calc(5 / var(--base) * 1em);
}

.u-mr-5 {
  margin-right: calc(5 / var(--base) * 1em);
}

.u-mb-5 {
  margin-bottom: calc(5 / var(--base) * 1em);
}

.u-ml-5 {
  margin-left: calc(5 / var(--base) * 1em);
}

/* Margin negative */
.u-m-n5 {
  margin: calc(5 / var(--base) * -1em);
}

.u-mx-n5 {
  margin-left: calc(5 / var(--base) * -1em);
  margin-right: calc(5 / var(--base) * -1em);
}

.u-my-n5 {
  margin-top: calc(5 / var(--base) * -1em);
  margin-bottom: calc(5 / var(--base) * -1em);
}

.u-mt-n5 {
  margin-top: calc(5 / var(--base) * -1em);
}

.u-mr-n5 {
  margin-right: calc(5 / var(--base) * -1em);
}

.u-mb-n5 {
  margin-bottom: calc(5 / var(--base) * -1em);
}

.u-ml-n5 {
  margin-left: calc(5 / var(--base) * -1em);
}

/* Padding */
.u-p-5 {
  padding: calc(5 / var(--base) * 1em);
}

.u-px-5 {
  padding-left: calc(5 / var(--base) * 1em);
  padding-right: calc(5 / var(--base) * 1em);
}

.u-py-5 {
  padding-top: calc(5 / var(--base) * 1em);
  padding-bottom: calc(5 / var(--base) * 1em);
}

.u-pt-5 {
  padding-top: calc(5 / var(--base) * 1em);
}

.u-pr-5 {
  padding-right: calc(5 / var(--base) * 1em);
}

.u-pb-5 {
  padding-bottom: calc(5 / var(--base) * 1em);
}

.u-pl-5 {
  padding-left: calc(5 / var(--base) * 1em);
}

/* Margin */
.u-m-10 {
  margin: calc(10 / var(--base) * 1em);
}

.u-mx-10 {
  margin-left: calc(10 / var(--base) * 1em);
  margin-right: calc(10 / var(--base) * 1em);
}

.u-my-10 {
  margin-top: calc(10 / var(--base) * 1em);
  margin-bottom: calc(10 / var(--base) * 1em);
}

.u-mt-10 {
  margin-top: calc(10 / var(--base) * 1em);
}

.u-mr-10 {
  margin-right: calc(10 / var(--base) * 1em);
}

.u-mb-10 {
  margin-bottom: calc(10 / var(--base) * 1em);
}

.u-ml-10 {
  margin-left: calc(10 / var(--base) * 1em);
}

/* Margin negative */
.u-m-n10 {
  margin: calc(10 / var(--base) * -1em);
}

.u-mx-n10 {
  margin-left: calc(10 / var(--base) * -1em);
  margin-right: calc(10 / var(--base) * -1em);
}

.u-my-n10 {
  margin-top: calc(10 / var(--base) * -1em);
  margin-bottom: calc(10 / var(--base) * -1em);
}

.u-mt-n10 {
  margin-top: calc(10 / var(--base) * -1em);
}

.u-mr-n10 {
  margin-right: calc(10 / var(--base) * -1em);
}

.u-mb-n10 {
  margin-bottom: calc(10 / var(--base) * -1em);
}

.u-ml-n10 {
  margin-left: calc(10 / var(--base) * -1em);
}

/* Padding */
.u-p-10 {
  padding: calc(10 / var(--base) * 1em);
}

.u-px-10 {
  padding-left: calc(10 / var(--base) * 1em);
  padding-right: calc(10 / var(--base) * 1em);
}

.u-py-10 {
  padding-top: calc(10 / var(--base) * 1em);
  padding-bottom: calc(10 / var(--base) * 1em);
}

.u-pt-10 {
  padding-top: calc(10 / var(--base) * 1em);
}

.u-pr-10 {
  padding-right: calc(10 / var(--base) * 1em);
}

.u-pb-10 {
  padding-bottom: calc(10 / var(--base) * 1em);
}

.u-pl-10 {
  padding-left: calc(10 / var(--base) * 1em);
}

/* Margin */
.u-m-15 {
  margin: calc(15 / var(--base) * 1em);
}

.u-mx-15 {
  margin-left: calc(15 / var(--base) * 1em);
  margin-right: calc(15 / var(--base) * 1em);
}

.u-my-15 {
  margin-top: calc(15 / var(--base) * 1em);
  margin-bottom: calc(15 / var(--base) * 1em);
}

.u-mt-15 {
  margin-top: calc(15 / var(--base) * 1em);
}

.u-mr-15 {
  margin-right: calc(15 / var(--base) * 1em);
}

.u-mb-15 {
  margin-bottom: calc(15 / var(--base) * 1em);
}

.u-ml-15 {
  margin-left: calc(15 / var(--base) * 1em);
}

/* Margin negative */
.u-m-n15 {
  margin: calc(15 / var(--base) * -1em);
}

.u-mx-n15 {
  margin-left: calc(15 / var(--base) * -1em);
  margin-right: calc(15 / var(--base) * -1em);
}

.u-my-n15 {
  margin-top: calc(15 / var(--base) * -1em);
  margin-bottom: calc(15 / var(--base) * -1em);
}

.u-mt-n15 {
  margin-top: calc(15 / var(--base) * -1em);
}

.u-mr-n15 {
  margin-right: calc(15 / var(--base) * -1em);
}

.u-mb-n15 {
  margin-bottom: calc(15 / var(--base) * -1em);
}

.u-ml-n15 {
  margin-left: calc(15 / var(--base) * -1em);
}

/* Padding */
.u-p-15 {
  padding: calc(15 / var(--base) * 1em);
}

.u-px-15 {
  padding-left: calc(15 / var(--base) * 1em);
  padding-right: calc(15 / var(--base) * 1em);
}

.u-py-15 {
  padding-top: calc(15 / var(--base) * 1em);
  padding-bottom: calc(15 / var(--base) * 1em);
}

.u-pt-15 {
  padding-top: calc(15 / var(--base) * 1em);
}

.u-pr-15 {
  padding-right: calc(15 / var(--base) * 1em);
}

.u-pb-15 {
  padding-bottom: calc(15 / var(--base) * 1em);
}

.u-pl-15 {
  padding-left: calc(15 / var(--base) * 1em);
}

/* Margin */
.u-m-20 {
  margin: calc(20 / var(--base) * 1em);
}

.u-mx-20 {
  margin-left: calc(20 / var(--base) * 1em);
  margin-right: calc(20 / var(--base) * 1em);
}

.u-my-20 {
  margin-top: calc(20 / var(--base) * 1em);
  margin-bottom: calc(20 / var(--base) * 1em);
}

.u-mt-20 {
  margin-top: calc(20 / var(--base) * 1em);
}

.u-mr-20 {
  margin-right: calc(20 / var(--base) * 1em);
}

.u-mb-20 {
  margin-bottom: calc(20 / var(--base) * 1em);
}

.u-ml-20 {
  margin-left: calc(20 / var(--base) * 1em);
}

/* Margin negative */
.u-m-n20 {
  margin: calc(20 / var(--base) * -1em);
}

.u-mx-n20 {
  margin-left: calc(20 / var(--base) * -1em);
  margin-right: calc(20 / var(--base) * -1em);
}

.u-my-n20 {
  margin-top: calc(20 / var(--base) * -1em);
  margin-bottom: calc(20 / var(--base) * -1em);
}

.u-mt-n20 {
  margin-top: calc(20 / var(--base) * -1em);
}

.u-mr-n20 {
  margin-right: calc(20 / var(--base) * -1em);
}

.u-mb-n20 {
  margin-bottom: calc(20 / var(--base) * -1em);
}

.u-ml-n20 {
  margin-left: calc(20 / var(--base) * -1em);
}

/* Padding */
.u-p-20 {
  padding: calc(20 / var(--base) * 1em);
}

.u-px-20 {
  padding-left: calc(20 / var(--base) * 1em);
  padding-right: calc(20 / var(--base) * 1em);
}

.u-py-20 {
  padding-top: calc(20 / var(--base) * 1em);
  padding-bottom: calc(20 / var(--base) * 1em);
}

.u-pt-20 {
  padding-top: calc(20 / var(--base) * 1em);
}

.u-pr-20 {
  padding-right: calc(20 / var(--base) * 1em);
}

.u-pb-20 {
  padding-bottom: calc(20 / var(--base) * 1em);
}

.u-pl-20 {
  padding-left: calc(20 / var(--base) * 1em);
}

/* Margin */
.u-m-30 {
  margin: calc(30 / var(--base) * 1em);
}

.u-mx-30 {
  margin-left: calc(30 / var(--base) * 1em);
  margin-right: calc(30 / var(--base) * 1em);
}

.u-my-30 {
  margin-top: calc(30 / var(--base) * 1em);
  margin-bottom: calc(30 / var(--base) * 1em);
}

.u-mt-30 {
  margin-top: calc(30 / var(--base) * 1em);
}

.u-mr-30 {
  margin-right: calc(30 / var(--base) * 1em);
}

.u-mb-30 {
  margin-bottom: calc(30 / var(--base) * 1em);
}

.u-ml-30 {
  margin-left: calc(30 / var(--base) * 1em);
}

/* Margin negative */
.u-m-n30 {
  margin: calc(30 / var(--base) * -1em);
}

.u-mx-n30 {
  margin-left: calc(30 / var(--base) * -1em);
  margin-right: calc(30 / var(--base) * -1em);
}

.u-my-n30 {
  margin-top: calc(30 / var(--base) * -1em);
  margin-bottom: calc(30 / var(--base) * -1em);
}

.u-mt-n30 {
  margin-top: calc(30 / var(--base) * -1em);
}

.u-mr-n30 {
  margin-right: calc(30 / var(--base) * -1em);
}

.u-mb-n30 {
  margin-bottom: calc(30 / var(--base) * -1em);
}

.u-ml-n30 {
  margin-left: calc(30 / var(--base) * -1em);
}

/* Padding */
.u-p-30 {
  padding: calc(30 / var(--base) * 1em);
}

.u-px-30 {
  padding-left: calc(30 / var(--base) * 1em);
  padding-right: calc(30 / var(--base) * 1em);
}

.u-py-30 {
  padding-top: calc(30 / var(--base) * 1em);
  padding-bottom: calc(30 / var(--base) * 1em);
}

.u-pt-30 {
  padding-top: calc(30 / var(--base) * 1em);
}

.u-pr-30 {
  padding-right: calc(30 / var(--base) * 1em);
}

.u-pb-30 {
  padding-bottom: calc(30 / var(--base) * 1em);
}

.u-pl-30 {
  padding-left: calc(30 / var(--base) * 1em);
}

/* Margin */
.u-m-40 {
  margin: calc(40 / var(--base) * 1em);
}

.u-mx-40 {
  margin-left: calc(40 / var(--base) * 1em);
  margin-right: calc(40 / var(--base) * 1em);
}

.u-my-40 {
  margin-top: calc(40 / var(--base) * 1em);
  margin-bottom: calc(40 / var(--base) * 1em);
}

.u-mt-40 {
  margin-top: calc(40 / var(--base) * 1em);
}

.u-mr-40 {
  margin-right: calc(40 / var(--base) * 1em);
}

.u-mb-40 {
  margin-bottom: calc(40 / var(--base) * 1em);
}

.u-ml-40 {
  margin-left: calc(40 / var(--base) * 1em);
}

/* Margin negative */
.u-m-n40 {
  margin: calc(40 / var(--base) * -1em);
}

.u-mx-n40 {
  margin-left: calc(40 / var(--base) * -1em);
  margin-right: calc(40 / var(--base) * -1em);
}

.u-my-n40 {
  margin-top: calc(40 / var(--base) * -1em);
  margin-bottom: calc(40 / var(--base) * -1em);
}

.u-mt-n40 {
  margin-top: calc(40 / var(--base) * -1em);
}

.u-mr-n40 {
  margin-right: calc(40 / var(--base) * -1em);
}

.u-mb-n40 {
  margin-bottom: calc(40 / var(--base) * -1em);
}

.u-ml-n40 {
  margin-left: calc(40 / var(--base) * -1em);
}

/* Padding */
.u-p-40 {
  padding: calc(40 / var(--base) * 1em);
}

.u-px-40 {
  padding-left: calc(40 / var(--base) * 1em);
  padding-right: calc(40 / var(--base) * 1em);
}

.u-py-40 {
  padding-top: calc(40 / var(--base) * 1em);
  padding-bottom: calc(40 / var(--base) * 1em);
}

.u-pt-40 {
  padding-top: calc(40 / var(--base) * 1em);
}

.u-pr-40 {
  padding-right: calc(40 / var(--base) * 1em);
}

.u-pb-40 {
  padding-bottom: calc(40 / var(--base) * 1em);
}

.u-pl-40 {
  padding-left: calc(40 / var(--base) * 1em);
}

/* Margin */
.u-m-50 {
  margin: calc(50 / var(--base) * 1em);
}

.u-mx-50 {
  margin-left: calc(50 / var(--base) * 1em);
  margin-right: calc(50 / var(--base) * 1em);
}

.u-my-50 {
  margin-top: calc(50 / var(--base) * 1em);
  margin-bottom: calc(50 / var(--base) * 1em);
}

.u-mt-50 {
  margin-top: calc(50 / var(--base) * 1em);
}

.u-mr-50 {
  margin-right: calc(50 / var(--base) * 1em);
}

.u-mb-50 {
  margin-bottom: calc(50 / var(--base) * 1em);
}

.u-ml-50 {
  margin-left: calc(50 / var(--base) * 1em);
}

/* Margin negative */
.u-m-n50 {
  margin: calc(50 / var(--base) * -1em);
}

.u-mx-n50 {
  margin-left: calc(50 / var(--base) * -1em);
  margin-right: calc(50 / var(--base) * -1em);
}

.u-my-n50 {
  margin-top: calc(50 / var(--base) * -1em);
  margin-bottom: calc(50 / var(--base) * -1em);
}

.u-mt-n50 {
  margin-top: calc(50 / var(--base) * -1em);
}

.u-mr-n50 {
  margin-right: calc(50 / var(--base) * -1em);
}

.u-mb-n50 {
  margin-bottom: calc(50 / var(--base) * -1em);
}

.u-ml-n50 {
  margin-left: calc(50 / var(--base) * -1em);
}

/* Padding */
.u-p-50 {
  padding: calc(50 / var(--base) * 1em);
}

.u-px-50 {
  padding-left: calc(50 / var(--base) * 1em);
  padding-right: calc(50 / var(--base) * 1em);
}

.u-py-50 {
  padding-top: calc(50 / var(--base) * 1em);
  padding-bottom: calc(50 / var(--base) * 1em);
}

.u-pt-50 {
  padding-top: calc(50 / var(--base) * 1em);
}

.u-pr-50 {
  padding-right: calc(50 / var(--base) * 1em);
}

.u-pb-50 {
  padding-bottom: calc(50 / var(--base) * 1em);
}

.u-pl-50 {
  padding-left: calc(50 / var(--base) * 1em);
}

/* Margin */
.u-m-60 {
  margin: calc(60 / var(--base) * 1em);
}

.u-mx-60 {
  margin-left: calc(60 / var(--base) * 1em);
  margin-right: calc(60 / var(--base) * 1em);
}

.u-my-60 {
  margin-top: calc(60 / var(--base) * 1em);
  margin-bottom: calc(60 / var(--base) * 1em);
}

.u-mt-60 {
  margin-top: calc(60 / var(--base) * 1em);
}

.u-mr-60 {
  margin-right: calc(60 / var(--base) * 1em);
}

.u-mb-60 {
  margin-bottom: calc(60 / var(--base) * 1em);
}

.u-ml-60 {
  margin-left: calc(60 / var(--base) * 1em);
}

/* Margin negative */
.u-m-n60 {
  margin: calc(60 / var(--base) * -1em);
}

.u-mx-n60 {
  margin-left: calc(60 / var(--base) * -1em);
  margin-right: calc(60 / var(--base) * -1em);
}

.u-my-n60 {
  margin-top: calc(60 / var(--base) * -1em);
  margin-bottom: calc(60 / var(--base) * -1em);
}

.u-mt-n60 {
  margin-top: calc(60 / var(--base) * -1em);
}

.u-mr-n60 {
  margin-right: calc(60 / var(--base) * -1em);
}

.u-mb-n60 {
  margin-bottom: calc(60 / var(--base) * -1em);
}

.u-ml-n60 {
  margin-left: calc(60 / var(--base) * -1em);
}

/* Padding */
.u-p-60 {
  padding: calc(60 / var(--base) * 1em);
}

.u-px-60 {
  padding-left: calc(60 / var(--base) * 1em);
  padding-right: calc(60 / var(--base) * 1em);
}

.u-py-60 {
  padding-top: calc(60 / var(--base) * 1em);
  padding-bottom: calc(60 / var(--base) * 1em);
}

.u-pt-60 {
  padding-top: calc(60 / var(--base) * 1em);
}

.u-pr-60 {
  padding-right: calc(60 / var(--base) * 1em);
}

.u-pb-60 {
  padding-bottom: calc(60 / var(--base) * 1em);
}

.u-pl-60 {
  padding-left: calc(60 / var(--base) * 1em);
}

/* ===================================================================
CSS information

file name  : default.css
author     : Abilive
style info : 汎用リセット記述
=================================================================== */
html,
article,
aside,
audio,
blockquote,
body,
dd,
dialog,
div,
dl,
dt,
fieldset,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
input,
li,
mark,
menu,
nav,
ol,
p,
pre,
section,
td,
textarea,
th,
time,
ul,
video,
main {
  margin: 0;
  padding: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-feature-settings: "palt";
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th {
  text-align: left;
}

q:after,
q:before {
  content: "";
}

embed,
object {
  vertical-align: top;
}

hr,
legend {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}

abbr,
acronym,
fieldset,
img {
  border: 0;
}

li {
  list-style-type: none;
}

sup {
  vertical-align: super;
  font-size: 0.5em;
}

img {
  vertical-align: top;
}

i {
  font-style: normal;
}

svg {
  vertical-align: middle;
}

article,
aside,
dialog,
figure,
footer,
header,
hgroup,
nav,
section,
main {
  display: block;
}

nav,
ul {
  list-style: none;
}

/* ===================================================================
CSS information

file name   : common.css
author      : Abilive
style info  : 基本・共通設定
=================================================================== */
/* ===================================================================
   foundation/_base.scss
   style info : Base element defaults (html, body, a, img, inputs)
=================================================================== */
html {
  font-size: small;
  line-height: 1.5;
}

body {
  color: var(--base-color);
  background: #fff;
  -webkit-text-size-adjust: none;
  font-size: 108%;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 93%;
  }
}
body a {
  color: var(--base-color);
  text-decoration: underline;
}
body a:hover {
  text-decoration: none;
}
body img {
  max-width: 100%;
  height: auto;
  -webkit-touch-callout: none;
  line-height: 1;
}

body,
pre,
input,
textarea,
select {
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", "Yu Mincho", "MS Mincho", serif;
}

input,
select,
textarea {
  font-size: 100%;
}

html.ie8 .view_tab,
html.ie8 .view_tab_sp,
html.ie8 .view_sp {
  display: none !important;
}
html.ie8 #abi_page {
  min-width: 1280px !important;
  margin: auto;
  font-size: 100% !important;
}

.en {
  font-family: "Cormorant Garamond", serif;
}

/* ===================================================================
CSS information

file name   : common.css
author      : Abilive
style info  : 基本・共通設定
=================================================================== */
/* ===================================================================
   foundation/_typography.scss
   style info : Font-face declarations & type scale
=================================================================== */
/*
 * Usage:
 * .u-txt--m14-200   → font-weight: 500 (medium)
 * .u-txt--r14-200   → font-weight: 400 (regular)
 *
 * Format:
 * .u-txt--{weight}{font-size}-{line-height}
 * weight: r = 400, m = 500
 *
 * Examples:
 * .u-txt--m14-200 → font-size: 14px, font-weight: 500, line-height: 2
 * .u-txt--r13-160 → font-size: 13px, font-weight: 400, line-height: 1.6
 * .u-txt--m12-100 → font-size: 12px, font-weight: 500, line-height: 1
 */
.u-txt--r10-100 {
  font-size: 72%;
  font-weight: var(--fw-regular);
  line-height: 1;
}

.u-txt--r10-120 {
  font-size: 72%;
  font-weight: var(--fw-regular);
  line-height: 1.2;
}

.u-txt--r10-150 {
  font-size: 72%;
  font-weight: var(--fw-regular);
  line-height: 1.5;
}

.u-txt--r10-160 {
  font-size: 72%;
  font-weight: var(--fw-regular);
  line-height: 1.6;
}

.u-txt--r10-180 {
  font-size: 72%;
  font-weight: var(--fw-regular);
  line-height: 1.8;
}

.u-txt--r10-200 {
  font-size: 72%;
  font-weight: var(--fw-regular);
  line-height: 2;
}

.u-txt--r11-100 {
  font-size: 79%;
  font-weight: var(--fw-regular);
  line-height: 1;
}

.u-txt--r11-120 {
  font-size: 79%;
  font-weight: var(--fw-regular);
  line-height: 1.2;
}

.u-txt--r11-150 {
  font-size: 79%;
  font-weight: var(--fw-regular);
  line-height: 1.5;
}

.u-txt--r11-160 {
  font-size: 79%;
  font-weight: var(--fw-regular);
  line-height: 1.6;
}

.u-txt--r11-180 {
  font-size: 79%;
  font-weight: var(--fw-regular);
  line-height: 1.8;
}

.u-txt--r11-200 {
  font-size: 79%;
  font-weight: var(--fw-regular);
  line-height: 2;
}

.u-txt--r12-100 {
  font-size: 86%;
  font-weight: var(--fw-regular);
  line-height: 1;
}

.u-txt--r12-120 {
  font-size: 86%;
  font-weight: var(--fw-regular);
  line-height: 1.2;
}

.u-txt--r12-150 {
  font-size: 86%;
  font-weight: var(--fw-regular);
  line-height: 1.5;
}

.u-txt--r12-160 {
  font-size: 86%;
  font-weight: var(--fw-regular);
  line-height: 1.6;
}

.u-txt--r12-180 {
  font-size: 86%;
  font-weight: var(--fw-regular);
  line-height: 1.8;
}

.u-txt--r12-200 {
  font-size: 86%;
  font-weight: var(--fw-regular);
  line-height: 2;
}

.u-txt--r13-100 {
  font-size: 93%;
  font-weight: var(--fw-regular);
  line-height: 1;
}

.u-txt--r13-120 {
  font-size: 93%;
  font-weight: var(--fw-regular);
  line-height: 1.2;
}

.u-txt--r13-150 {
  font-size: 93%;
  font-weight: var(--fw-regular);
  line-height: 1.5;
}

.u-txt--r13-160 {
  font-size: 93%;
  font-weight: var(--fw-regular);
  line-height: 1.6;
}

.u-txt--r13-180 {
  font-size: 93%;
  font-weight: var(--fw-regular);
  line-height: 1.8;
}

.u-txt--r13-200 {
  font-size: 93%;
  font-weight: var(--fw-regular);
  line-height: 2;
}

.u-txt--r14-100 {
  font-size: 100%;
  font-weight: var(--fw-regular);
  line-height: 1;
}

.u-txt--r14-120 {
  font-size: 100%;
  font-weight: var(--fw-regular);
  line-height: 1.2;
}

.u-txt--r14-150 {
  font-size: 100%;
  font-weight: var(--fw-regular);
  line-height: 1.5;
}

.u-txt--r14-160 {
  font-size: 100%;
  font-weight: var(--fw-regular);
  line-height: 1.6;
}

.u-txt--r14-180 {
  font-size: 100%;
  font-weight: var(--fw-regular);
  line-height: 1.8;
}

.u-txt--r14-200 {
  font-size: 100%;
  font-weight: var(--fw-regular);
  line-height: 2;
}

.u-txt--r15-100 {
  font-size: 108%;
  font-weight: var(--fw-regular);
  line-height: 1;
}

.u-txt--r15-120 {
  font-size: 108%;
  font-weight: var(--fw-regular);
  line-height: 1.2;
}

.u-txt--r15-150 {
  font-size: 108%;
  font-weight: var(--fw-regular);
  line-height: 1.5;
}

.u-txt--r15-160 {
  font-size: 108%;
  font-weight: var(--fw-regular);
  line-height: 1.6;
}

.u-txt--r15-180 {
  font-size: 108%;
  font-weight: var(--fw-regular);
  line-height: 1.8;
}

.u-txt--r15-200 {
  font-size: 108%;
  font-weight: var(--fw-regular);
  line-height: 2;
}

.u-txt--m10-100 {
  font-size: 72%;
  font-weight: var(--fw-medium);
  line-height: 1;
}

.u-txt--m10-120 {
  font-size: 72%;
  font-weight: var(--fw-medium);
  line-height: 1.2;
}

.u-txt--m10-150 {
  font-size: 72%;
  font-weight: var(--fw-medium);
  line-height: 1.5;
}

.u-txt--m10-160 {
  font-size: 72%;
  font-weight: var(--fw-medium);
  line-height: 1.6;
}

.u-txt--m10-180 {
  font-size: 72%;
  font-weight: var(--fw-medium);
  line-height: 1.8;
}

.u-txt--m10-200 {
  font-size: 72%;
  font-weight: var(--fw-medium);
  line-height: 2;
}

.u-txt--m11-100 {
  font-size: 79%;
  font-weight: var(--fw-medium);
  line-height: 1;
}

.u-txt--m11-120 {
  font-size: 79%;
  font-weight: var(--fw-medium);
  line-height: 1.2;
}

.u-txt--m11-150 {
  font-size: 79%;
  font-weight: var(--fw-medium);
  line-height: 1.5;
}

.u-txt--m11-160 {
  font-size: 79%;
  font-weight: var(--fw-medium);
  line-height: 1.6;
}

.u-txt--m11-180 {
  font-size: 79%;
  font-weight: var(--fw-medium);
  line-height: 1.8;
}

.u-txt--m11-200 {
  font-size: 79%;
  font-weight: var(--fw-medium);
  line-height: 2;
}

.u-txt--m12-100 {
  font-size: 86%;
  font-weight: var(--fw-medium);
  line-height: 1;
}

.u-txt--m12-120 {
  font-size: 86%;
  font-weight: var(--fw-medium);
  line-height: 1.2;
}

.u-txt--m12-150 {
  font-size: 86%;
  font-weight: var(--fw-medium);
  line-height: 1.5;
}

.u-txt--m12-160 {
  font-size: 86%;
  font-weight: var(--fw-medium);
  line-height: 1.6;
}

.u-txt--m12-180 {
  font-size: 86%;
  font-weight: var(--fw-medium);
  line-height: 1.8;
}

.u-txt--m12-200 {
  font-size: 86%;
  font-weight: var(--fw-medium);
  line-height: 2;
}

.u-txt--m13-100 {
  font-size: 93%;
  font-weight: var(--fw-medium);
  line-height: 1;
}

.u-txt--m13-120 {
  font-size: 93%;
  font-weight: var(--fw-medium);
  line-height: 1.2;
}

.u-txt--m13-150 {
  font-size: 93%;
  font-weight: var(--fw-medium);
  line-height: 1.5;
}

.u-txt--m13-160 {
  font-size: 93%;
  font-weight: var(--fw-medium);
  line-height: 1.6;
}

.u-txt--m13-180 {
  font-size: 93%;
  font-weight: var(--fw-medium);
  line-height: 1.8;
}

.u-txt--m13-200 {
  font-size: 93%;
  font-weight: var(--fw-medium);
  line-height: 2;
}

.u-txt--m14-100 {
  font-size: 100%;
  font-weight: var(--fw-medium);
  line-height: 1;
}

.u-txt--m14-120 {
  font-size: 100%;
  font-weight: var(--fw-medium);
  line-height: 1.2;
}

.u-txt--m14-150 {
  font-size: 100%;
  font-weight: var(--fw-medium);
  line-height: 1.5;
}

.u-txt--m14-160 {
  font-size: 100%;
  font-weight: var(--fw-medium);
  line-height: 1.6;
}

.u-txt--m14-180 {
  font-size: 100%;
  font-weight: var(--fw-medium);
  line-height: 1.8;
}

.u-txt--m14-200 {
  font-size: 100%;
  font-weight: var(--fw-medium);
  line-height: 2;
}

.u-txt--m15-100 {
  font-size: 108%;
  font-weight: var(--fw-medium);
  line-height: 1;
}

.u-txt--m15-120 {
  font-size: 108%;
  font-weight: var(--fw-medium);
  line-height: 1.2;
}

.u-txt--m15-150 {
  font-size: 108%;
  font-weight: var(--fw-medium);
  line-height: 1.5;
}

.u-txt--m15-160 {
  font-size: 108%;
  font-weight: var(--fw-medium);
  line-height: 1.6;
}

.u-txt--m15-180 {
  font-size: 108%;
  font-weight: var(--fw-medium);
  line-height: 1.8;
}

.u-txt--m15-200 {
  font-size: 108%;
  font-weight: var(--fw-medium);
  line-height: 2;
}

/*
 * Usage:
 * .u-lead--jp18-192
 *
 * Format:
 * .u-lead--jp{font-size}-{line-height}
 *
 * Examples:
 * .u-lead--jp18-192 -> font-size: 18px, line-height: 1.92
 * .u-lead--jp20-160 -> font-size: 20px, line-height: 1.6
 */
.u-lead--jp18-160 {
  font-size: 129%;
  font-weight: var(--fw-regular);
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.u-lead--jp18-192 {
  font-size: 129%;
  font-weight: var(--fw-regular);
  line-height: 1.92;
  letter-spacing: 0.04em;
}

.u-lead--jp20-160 {
  font-size: 143%;
  font-weight: var(--fw-regular);
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.u-lead--jp20-192 {
  font-size: 143%;
  font-weight: var(--fw-regular);
  line-height: 1.92;
  letter-spacing: 0.04em;
}

/* ===================================================================
CSS information

file name   : common.css
author      : Abilive
style info  : 基本・共通設定
=================================================================== */
/* ===================================================================
   layout/_container.scss
   style info : Page wrapper, inner container helpers
=================================================================== */
.l-container {
  width: 87.5%;
  max-width: calc(var(--max-width-contaimer) + 2 * var(--space-screen));
  margin-inline: auto;
}
@media only screen and (min-width: 1200px) {
  .l-container {
    padding-inline: var(--space-screen);
  }
}
@media print {
  .l-container {
    padding-inline: var(--space-screen);
  }
}
@media only screen and (max-width: 1199px) {
  .l-container {
    width: 90%;
  }
}
.l-container.container-no-mw {
  max-width: 100%;
}
.l-container.wide-no-mw {
  width: 94.4444444444%;
  max-width: 100%;
}
@media only screen and (max-width: 1199px) {
  .l-container.wide-no-mw {
    width: 90%;
  }
}
.l-container.wide {
  width: 94.4444444444%;
}
@media only screen and (max-width: 1199px) {
  .l-container.wide {
    width: 90%;
  }
}
.l-container.large {
  width: 90.2777777778%;
}
@media only screen and (max-width: 1199px) {
  .l-container.large {
    width: 90%;
  }
}
.l-container.medium {
  width: 76.3888888889%;
}
@media only screen and (max-width: 1199px) {
  .l-container.medium {
    width: 90%;
  }
}
.l-container.small {
  width: 69.4444444444%;
}
@media only screen and (max-width: 1199px) {
  .l-container.small {
    width: 90%;
  }
}
.l-container.smaller {
  width: 62.5%;
}
@media only screen and (max-width: 1199px) {
  .l-container.smaller {
    width: 90%;
  }
}
.l-container.extra-small {
  width: 52.7777777778%;
}
@media only screen and (max-width: 1199px) {
  .l-container.extra-small {
    width: 90%;
  }
}
.l-container.fluid {
  width: 100%;
  max-width: none;
}
@media only screen and (max-width: 767px) {
  .l-container.fluid-sp {
    width: 100%;
    max-width: none;
  }
}

.l-section {
  padding-block: 8em;
}
@media only screen and (max-width: 767px) {
  .l-section {
    padding-block: 5em;
  }
}
.l-section--sm {
  padding-block: 4em;
}
@media only screen and (max-width: 767px) {
  .l-section--sm {
    padding-block: 3em;
  }
}
.l-section--lg {
  padding-block: 12em;
}
@media only screen and (max-width: 767px) {
  .l-section--lg {
    padding-block: 7em;
  }
}

/* ===================================================================
CSS information

file name   : common.css
author      : Abilive
style info  : 基本・共通設定
=================================================================== */
body.is-modal-open {
  overflow: hidden;
}

.l-header {
  --color-header-text: var(--base-color);
  position: relative;
  z-index: 1000;
}
.l-header.is-sticky-active .l-header__default {
  opacity: 0;
  pointer-events: none;
}
.l-header__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2em;
  margin-bottom: 2.8em;
}
@media only screen and (max-width: 767px) {
  .l-header__socials {
    margin-bottom: 1.5em;
  }
}
.l-header__social {
  display: flex;
  align-items: center;
  gap: 0.8em;
  text-decoration: none;
  padding: 0.8em 2.5em;
  border: 1px solid var(--c-gray-medium);
  border-radius: 2px;
}
.l-header__social .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-header__social .icon svg {
  --icon-width: 1.2em;
}
.l-header__social .name {
  font-size: 86%;
  line-height: 1;
}

.l-header__default {
  width: 100%;
  z-index: 100;
  color: var(--color-header-text);
  padding: 1.2em 0;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .l-header__default {
    padding: 1.2em 0;
  }
}
@media only screen and (max-width: 767px) {
  .l-header__default {
    padding: 1.5em 0;
  }
}
.l-header__default-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2em;
  position: relative;
}

.icon_logo {
  width: 6em;
  aspect-ratio: 82/28;
}

.l-header__logo {
  margin-right: auto;
}
@media only screen and (max-width: 767px) {
  .l-header__logo {
    margin-inline: auto;
  }
}

.l-header__logo-link {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.l-header__nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}
@media only screen and (max-width: 767px) {
  .l-header__nav {
    display: none;
  }
}

.l-header__nav-list {
  display: flex;
  gap: 0.9em 2.1em;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .l-header__nav-list {
    gap: 0.9em 1em;
  }
}
@media only screen and (max-width: 767px) {
  .l-header__nav-list {
    gap: 0.9em 1em;
  }
}
.l-header__nav-list {
  width: fit-content;
}

.l-header__nav-item {
  list-style: none;
}

.l-header__nav-link {
  font-size: 93%;
  color: var(--color-header-text);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  letter-spacing: 0.05em;
}
.l-header__nav-link:hover {
  border-color: rgba(var(--color-header-text), 0.6);
  text-decoration: none;
}

.l-header__controls {
  display: flex;
  align-items: center;
  gap: 1.2em;
  flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .l-header__controls {
    gap: 0.6em;
  }
}
.l-header__controls .c-button {
  display: inline-flex;
}
@media only screen and (max-width: 767px) {
  .l-header__controls .c-button {
    display: none;
  }
}
.l-header__menu-btn {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  padding: 0;
  height: 100%;
  width: 50px;
}
.l-header__menu-btn span {
  position: relative;
  color: transparent;
}
.l-header__menu-btn span:before, .l-header__menu-btn span:after {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--color-header-text);
  position: absolute;
  right: 0;
}
.l-header__menu-btn span:before {
  top: 30%;
}
.l-header__menu-btn span:after {
  top: 70%;
}

.l-header__sticky {
  --color-header-text: var(--base-color);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 101;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: none;
  background: var(--c-white);
  background-repeat: repeat-x;
  background-position: top left;
  color: var(--base-color);
  height: 79px;
}
.l-header__sticky.is-visible {
  transform: translateY(0);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}
.l-header__sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: relative;
  gap: 2em;
}

.l-header__modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.l-header__modal.is-open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}
.l-header__modal-image {
  overflow: hidden;
  cursor: pointer;
  width: calc(100% - 500px);
}
@media only screen and (max-width: 767px) {
  .l-header__modal-image {
    display: none;
  }
}
.l-header__modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.l-header__modal-content {
  width: 500px;
  background: var(--bg-white-1);
  display: flex;
  flex-direction: column;
  padding: 1.2em 2.3em;
  overflow-y: auto;
  transform: translateX(40px);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.l-header__modal.is-open .l-header__modal-content {
  transform: translateX(0);
}
.l-header__modal-content-inner {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .l-header__modal-content-inner {
    align-items: flex-start;
  }
}
.l-header__modal-content-inner {
  justify-content: center;
  flex-direction: column;
  margin: auto;
  width: unset;
}
@media only screen and (max-width: 767px) {
  .l-header__modal-content-inner {
    width: 100%;
  }
}
.l-header__modal-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1.8em;
  border: 0;
  background: none;
  cursor: pointer;
}
.l-header__modal-close span {
  font-size: 100%;
  line-height: 1.2;
  letter-spacing: 0.02em;
  font-weight: var(--fw-medium);
  position: relative;
  display: block;
  padding-left: 40px;
}
.l-header__modal-close span:before, .l-header__modal-close span:after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--base-color);
  position: absolute;
  left: 0;
  top: 50%;
}
.l-header__modal-close span:before {
  transform: rotate(25deg);
}
.l-header__modal-close span:after {
  transform: rotate(-25deg);
}
.l-header__modal-nav {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 2.3em;
  gap: 0 2.3em;
}
@media only screen and (max-width: 767px) {
  .l-header__modal-nav {
    gap: 0;
  }
}
.l-header__modal-nav {
  align-content: start;
}
.l-header__modal-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.l-header__modal-nav-link {
  display: block;
  padding: 1.5em 0;
  padding: 1.5em 0;
}
@media only screen and (max-width: 767px) {
  .l-header__modal-nav-link {
    padding: 0.8em 0;
  }
}
.l-header__modal-nav-link {
  color: var(--base-color);
  text-decoration: none;
}
.l-header__modal-nav-link .c-title-jp__sub {
  color: var(--c-cvr);
}
.l-header__modal-contact {
  padding-top: 0.8em;
  display: flex;
  flex-direction: column;
  gap: 0.8em;
  align-self: stretch;
}
.l-header__modal-contact-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5em;
}
.l-header__modal-contact-row.row-action {
  border-bottom: 1px solid var(--c-gray-medium);
  padding-block: 2.8em;
  margin-bottom: 1.8em;
}
.l-header__modal-contact-row .l-header__contact {
  text-align: center;
}

.l-header__backdrop {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(var(--base-color-rgb), 0);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: none;
}
.l-header__backdrop.is-visible {
  display: block;
}
.l-header__backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* ===================================================================
CSS information

file name   : common.css
author      : Abilive
style info  : 基本・共通設定
=================================================================== */
.l-footer {
  padding-block: calc(60 / var(--base) * 1em);
}
.l-footer__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-footer__nav-item a {
  text-decoration: none;
  padding: 1.5em 1em;
  transition: opacity 0.5s ease;
  display: inline-flex;
}
.l-footer__nav-item a:hover {
  opacity: 0.8;
}
.l-footer__logo {
  margin-bottom: 1.5em;
  max-width: 16em;
  aspect-ratio: 222/80;
  margin-inline: auto;
}
.l-footer__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.l-footer__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2em;
  margin-bottom: 2.8em;
}
@media only screen and (max-width: 767px) {
  .l-footer__socials {
    margin-bottom: 1.5em;
  }
}
.l-footer__social {
  display: flex;
  align-items: center;
  gap: 0.8em;
  text-decoration: none;
  padding: 0.8em 2.5em;
  border: 1px solid var(--c-gray-medium);
  border-radius: 2px;
}
.l-footer__social .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-footer__social .icon svg {
  --icon-width: 1.2em;
}
.l-footer__social .name {
  font-size: 86%;
  line-height: 1;
}
.l-footer__contact .contact-info {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 93%;
  line-height: 2;
  gap: 0.4em;
}
.l-footer__top {
  border-block: 1px solid var(--c-gray-medium);
  width: 100%;
}
.l-footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4.2em;
}
@media only screen and (max-width: 767px) {
  .l-footer__content {
    gap: 2em;
  }
}

/* ===================================================================
CSS information

file name   : common.css
author      : Abilive
style info  : 基本・共通設定
=================================================================== */
/* ===================================================================
   components/_breadcrumb.scss
   Breadcrumb navigation styling
=================================================================== */
.c-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 93%;
}
.c-breadcrumb__item {
  display: flex;
  align-items: center;
  line-height: 1.4;
}
.c-breadcrumb__link {
  color: var(--base-color);
  text-decoration: none;
  transition: color 0.3s ease;
}
.mouse .c-breadcrumb__link:hover, .touch .c-breadcrumb__link.touchstart {
  text-decoration: underline;
}
.touch .c-breadcrumb__link {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.touch .c-breadcrumb__link.touchend {
  transition-delay: 200ms;
}
.c-breadcrumb__separator {
  --icon-width: 0.3em;
  margin: 0 0.8em;
  flex-shrink: 0;
}
.c-breadcrumb__text--current {
  color: var(--base-color);
}

/* ===================================================================
CSS information

file name   : common.css
author      : Abilive
style info  : 基本・共通設定
=================================================================== */
/* ===================================================================
   components/_icon.scss
   style info : SVG icon sizing system
=================================================================== */
svg {
  width: var(--icon-width, 1em);
  aspect-ratio: 1/1;
  height: auto;
  fill: currentColor;
}

.icon--xs {
  --icon-width: 0.75em;
}

.icon--sm {
  --icon-width: 1em;
}

.icon--md {
  --icon-width: 1.5em;
}

.icon--lg {
  --icon-width: 2em;
}

.icon--xl {
  --icon-width: 3em;
}

.icon--primary {
  color: var(--c-cvr);
}

.icon--muted {
  color: rgba(var(--base-color-rgb), 0.5);
}

.icon--white {
  color: #fff;
}

/* ===================================================================
CSS information

file name   : common.css
author      : Abilive
style info  : 基本・共通設定
=================================================================== */
/* ===================================================================
   File        : components/_title.scss
   Description : Anchor component styles
   Author      : Abilive
   Version     : 1.0.0
   Created     : 2026-05-19
   Updated     : 2026-05-19

   Dependencies:
   - ../settings

   Notes:
   - Base anchor component
   - Use BEM naming convention
=================================================================== */
/* =========================================================
 *
 * TITLE PAGE (H1) COMPONENTS
 *
 * Usage:
 *
 * <h1 class="c-title-page">
 *     <span class="jp">温泉</span>
 *     <span class="en">HOT SPRING</span>
 * </h1>
 *
 * ======================================================= */
.u-txt-vertical {
  writing-mode: vertical-lr;
}

.c-title-page {
  display: flex;
  flex-direction: column;
  gap: calc(5 / var(--base) * 1em);
  align-items: center;
  padding-block: calc(50 / var(--base) * 1em);
}
@media only screen and (max-width: 767px) {
  .c-title-page {
    padding-block: calc(30 / var(--base) * 1em);
  }
}
.c-title-page .jp {
  font-size: 172%;
  line-height: 1;
  font-weight: var(--fw-regular);
  color: var(--base-color);
  letter-spacing: 0.2em;
}
.c-title-page .en {
  font-size: 93%;
  line-height: 2;
  font-weight: var(--fw-medium);
  color: var(--c-cvr);
}

/* =========================================================
 *
 * JP TITLE COMPONENTS
 *
 * Usage:
 *
 * <div class="c-title-jp c-title-jp--lg">
 *     <span class="c-title-jp__sub">ARCDEF</span>
 *     <h2 class="c-title-jp__main">見出し見出し見出し見出し</h2>
 *     <p class="c-title-jp__text">補足テキスト</p>
 * </div>
 *
 * ======================================================= */
.c-title-jp {
  display: flex;
  flex-direction: column;
  gap: calc(5 / var(--base) * 1em);
  color: var(--base-color);
}
.c-title-jp.u-align--c {
  align-items: center;
}
.c-title-jp .u-color--cvr {
  color: var(--c-cvr);
}
.c-title-jp .u-color--gray-medium {
  color: var(--c-gray-medium);
}
.c-title-jp__sub {
  font-weight: var(--fw-medium);
  line-height: 2;
}
.c-title-jp__main {
  font-weight: var(--fw-regular);
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.c-title-jp__text {
  font-weight: var(--fw-regular);
  line-height: 1;
  letter-spacing: -0.02em;
}
.c-title-jp {
  /* ========================================
   * LARGE
   * ====================================== */
}
.c-title-jp--lg .c-title-jp__sub {
  font-size: 93%;
}
.c-title-jp--lg .c-title-jp__main {
  font-size: 129%;
}
.c-title-jp--lg .c-title-jp__text {
  font-size: 86%;
}
.c-title-jp {
  /* ========================================
   * MEDIUM
   * ====================================== */
}
.c-title-jp--md .c-title-jp__sub {
  font-size: 72%;
}
.c-title-jp--md .c-title-jp__sub.sub--s13 {
  font-size: 93%;
}
.c-title-jp--md .c-title-jp__main {
  font-size: 115%;
}
.c-title-jp--md .c-title-jp__text {
  font-size: 86%;
}
.c-title-jp {
  /* ========================================
   * SMALL
   * ====================================== */
}
.c-title-jp--sm .c-title-jp__sub {
  font-size: 72%;
}
.c-title-jp--sm .c-title-jp__main {
  font-size: 108%;
  line-height: 2;
  letter-spacing: 0;
}
.c-title-jp--sm .c-title-jp__text {
  font-size: 72%;
}
.c-title-jp__cat {
  background: var(--base-color);
  color: var(--c-white);
  padding: calc(5 / var(--base) * 1em) calc(20 / var(--base) * 1em);
  letter-spacing: 0.29em;
  font-size: 86%;
}

/* ===================================================================
CSS information

file name   : common.css
author      : Abilive
style info  : 基本・共通設定
=================================================================== */
/* ==========================================================
   File        : components/_anchor.scss
   Description : Anchor component styles
   Author      : Abilive
   Version     : 1.0.0
   Created     : 2026-05-19
   Updated     : 2026-05-19

   Dependencies:
   - ../settings

   Notes:
   - Base anchor component
   - Use BEM naming convention
========================================================== */
.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 1.1em 3.5em;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  letter-spacing: 0.01em;
  transition: opacity 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  font-size: 93%;
}
.c-button__label {
  flex: 1;
}
.c-button__icon {
  flex-shrink: 0;
}
.c-button--primary {
  background: var(--c-cvr);
  color: #fff;
  border-color: var(--c-cvr);
}
.c-button--primary:hover {
  background: linear-gradient(rgba(164, 55, 28, 0.4), rgba(164, 55, 28, 0.4)), var(--c-cvr);
}
.c-button--outline {
  background: transparent;
  color: var(--base-color);
  border-color: currentColor;
}
.c-button--outline:hover {
  opacity: 0.7;
}
.c-button--ghost {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.c-button--ghost:hover {
  opacity: 0.7;
}
.c-button--sm {
  padding: 0.6em 1.4em;
  font-size: 79%;
}
.c-button--lg {
  padding: 1.2em 3em;
  font-size: 108%;
}
.c-button--full {
  width: 100%;
}

.c-link {
  font-size: 93%;
  text-decoration: none;
}
.c-link .icon {
  width: 0.8em;
  aspect-ratio: 1/1;
}
.c-link .icon svg {
  max-width: 100%;
  max-height: 100%;
}
.c-link--basic {
  display: inline-flex;
  padding: 0.7em 1.5em 0.7em 0;
  color: var(--base-color);
  position: relative;
  border-bottom: 1px solid var(--c-gray-medium);
}
.c-link--basic:before {
  content: "";
  width: 100%;
  height: 1px;
  background: var(--c-gray-medium);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
}
.c-link--basic span {
  position: relative;
  padding-left: 30px;
  display: inline-flex;
  align-items: center;
  min-height: 25px;
}
.c-link--basic span::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--c-cvr);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}
.c-link--basic span::after {
  content: "";
  width: 25px;
  height: 25px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0);
  left: 0;
  background: var(--c-cvr);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.c-link--basic:hover span:after {
  opacity: 0.3;
  transform: translateY(-50%) scale(1);
}
.c-link--default {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
.c-link--default .label {
  position: relative;
}
.c-link--default .label:after {
  content: "";
  width: 0;
  height: 1px;
  background: var(--c-gray-medium);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}
.c-link--default:hover .label:after {
  width: 100%;
}
.c-link--outline {
  padding: 0.8em 1.5em;
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
  border: 1px solid var(--c-gray-medium);
  border-radius: 2px;
  transition: background 0.3s ease;
}
.c-link--outline:hover {
  background: var(--c-gray-light);
}

/* ===================================================================
CSS information

file name   : common.css
author      : Abilive
style info  : 基本・共通設定
=================================================================== */
/* ==========================================================
   File        : components/_footer-sticky.scss
   Description : Mobile sticky bottom navigation component styles
   Author      : Abilive
   Version     : 1.0.0
   Created     : 2026-05-21
   Updated     : 2026-05-21

   Dependencies:
   - ../settings

   Notes:
   - Sticky bottom navigation bar for mobile (SP) viewports
   - Uses BEM naming convention
========================================================== */
.l-footer-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 150;
  height: calc(60px + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  background-color: var(--c-white);
  box-sizing: border-box;
}
.l-footer-sticky__inner {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: stretch;
}
.l-footer-sticky__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-decoration: none;
  box-sizing: border-box;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.3s ease, background-color 0.3s ease;
}
.mouse .l-footer-sticky__item {
  transition: opacity 0.3s ease-in;
}
.mouse .l-footer-sticky__item:hover, .touch .l-footer-sticky__item.touchstart {
  opacity: 0.7;
}
.touch .l-footer-sticky__item {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.touch .l-footer-sticky__item.touchend {
  transition-delay: 200ms;
}
.l-footer-sticky__item--tel, .l-footer-sticky__item--access, .l-footer-sticky__item--menu {
  flex: 1;
}
.l-footer-sticky__item--booking {
  flex: 1.3;
}
.l-footer-sticky__item--tel {
  background-color: var(--base-color);
  color: var(--c-white);
  font-family: "Cormorant Garamond", serif;
  font-size: 115%;
  font-weight: var(--fw-medium);
}
.l-footer-sticky__item--access {
  background-color: var(--c-gray-dark);
  color: var(--c-white);
  font-family: "Cormorant Garamond", serif;
  font-size: 115%;
  font-weight: var(--fw-medium);
}
.l-footer-sticky__item--booking {
  background-color: var(--c-cvr);
  color: var(--c-white);
  font-family: "Hiragino Mincho ProN", "Noto Serif JP", "Yu Mincho", "MS Mincho", serif;
  font-size: 93%;
  letter-spacing: 0.01em;
}
.l-footer-sticky__item--menu {
  background-color: var(--c-gray-light);
  color: var(--base-color);
  position: relative;
}
.l-footer-sticky__menu-icon {
  position: relative;
  display: block;
  width: 30px;
  height: 10px;
}
.l-footer-sticky__menu-icon:before, .l-footer-sticky__menu-icon:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 1px;
  background: var(--base-color);
}
.l-footer-sticky__menu-icon:before {
  top: 1px;
}
.l-footer-sticky__menu-icon:after {
  bottom: 1px;
}

body {
  background: var(--bg-white-1);
}
@media only screen and (min-width: 1200px) {
  body .view_tab-sp,
  body .view_tab {
    display: none !important;
  }
}
@media print {
  body .view_tab-sp,
  body .view_tab {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  body .view_sp {
    display: none !important;
  }
}
@media only screen and (max-width: 1199px) {
  body .view_pc {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  body .view_pc-tab,
  body .view_tab {
    display: none !important;
  }
  body {
    padding-bottom: calc(60px + env(safe-area-inset-bottom));
  }
}

.mouse .over {
  transition: opacity 0.3s ease-in;
}
.mouse .over:hover, .touch .over.touchstart {
  opacity: 0.7;
}
.touch .over {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.touch .over.touchend {
  transition-delay: 200ms;
}

.u-align--c {
  text-align: center;
}
.u-align--r {
  text-align: right;
}

@media only screen and (max-width: 767px) {
  .u-align--c-sp {
    text-align: center;
  }
}

.u-color--cvr {
  color: var(--c-cvr);
}
.u-color--gray-medium {
  color: var(--c-gray-medium);
}

.u-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.c-label {
  background: var(--c-gray-dark);
  color: var(--c-white);
  padding: calc(6 / var(--base) * 1em) calc(12 / var(--base) * 1em);
}

.u-mt-60-40 {
  margin-top: calc(60 / var(--base) * 1em);
}
@media only screen and (max-width: 767px) {
  .u-mt-60-40 {
    margin-top: calc(40 / var(--base) * 1em);
  }
}

.u-mb-60-40 {
  margin-bottom: calc(60 / var(--base) * 1em);
}
@media only screen and (max-width: 767px) {
  .u-mb-60-40 {
    margin-bottom: calc(40 / var(--base) * 1em);
  }
}

.u-mt-30-15 {
  margin-top: calc(30 / var(--base) * 1em);
}
@media only screen and (max-width: 767px) {
  .u-mt-30-15 {
    margin-top: calc(15 / var(--base) * 1em);
  }
}

.u-mb-30-15 {
  margin-bottom: calc(30 / var(--base) * 1em);
}
@media only screen and (max-width: 767px) {
  .u-mb-30-15 {
    margin-bottom: calc(15 / var(--base) * 1em);
  }
}

.u-list-disc-outside {
  list-style: none;
  padding-left: 20px;
}
.u-list-disc-outside li {
  list-style-position: outside;
  list-style-type: disc;
}
.u-list-disc-outside li::marker {
  font-size: 80%;
}

@media only screen and (min-width: 1200px) {
  #abi_page {
    width: 100%;
    margin: auto;
  }
}
@media print {
  #abi_page {
    width: 100%;
    margin: auto;
  }
}
@media only screen and (min-width: 768px) {
  #abi_page {
    font-size: 100% !important;
  }
}

#contents {
  min-height: 500px;
}
/*# sourceMappingURL=common.css.map */
