@charset "UTF-8";
/**
 * @ SCSSファイル Load
 *
 * Config: 基本変数 & MIXIN
 * Vendor: 各種ライブラリ
 * Layout: レイアウト系
 * Component: コンポーネント & 流用できるパーツ
 * Pages: 各ページ毎の記述
 *
 */
/* ==============================
  Color
============================== */
/* ==============================
  Site Width
============================== */
/* ==============================
  Breakpoints
============================== */
/* ==============================
  Base Font Color
============================== */
/* ==============================
  Base Font Size
============================== */
/* ==============================
  Web Fonts
============================== */
/* ==============================
  Font Weights( Noto Font )
============================== */
/**
 * @ SCSSファイル Load
 *
 * Config: 基本変数 & MIXIN
 * Vendor: 各種ライブラリ
 * Layout: レイアウト系
 * Component: コンポーネント & 流用できるパーツ
 * Pages: 各ページ毎の記述
 *
 */
/*
 | @ トラッキング値の指定
 | = $tr : photoshop等で指定しているトラッキング値
*/
/*
 | @ 行送り値の指定
 | = $fontsize : photoshop等で指定しているトラッキング値
*/
/* Supports none
 *
====================================================*/
/* Media Query
 *
====================================================*/
/*
 | @ Media Query
 | = $ratio : ratio値を入力（デフォルト 2dppx）
*/
/**
 * @ SCSSファイル Load
 *
 * Config: 基本変数 & MIXIN
 * Vendor: 各種ライブラリ
 * Layout: レイアウト系
 * Component: コンポーネント & 流用できるパーツ
 * Pages: 各ページ毎の記述
 *
 */
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(350deg);
            transform: rotate(350deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(350deg);
            transform: rotate(350deg);
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* Document
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */
html {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%; /* 5 */
  -webkit-text-size-adjust: 100%; /* 5 */
}

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
 * 1. Add the correct sizing in Firefox.
 * 2. Show the overflow in Edge 18- and IE.
 */
hr {
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * Add the correct display in IE.
 */
main {
  display: block;
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
iframe {
  border-style: none;
}

/**
 * Remove the border on images within links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg:not([fill]) {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
 * ========================================================================== */
/**
 * Collapse border spacing in all browsers (opinionated).
 */
table {
  border-collapse: collapse;
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
button,
input,
select {
  margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */
button {
  overflow: visible; /* 1 */
  text-transform: none; /* 2 */
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */
fieldset {
  border: 1px solid #a0a0a0; /* 1 */
  padding: 0.35em 0.75em 0.625em; /* 2 */
}

/**
 * Show the overflow in Edge 18- and IE.
 */
input {
  overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */
legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the inheritance of text transform in Firefox.
 */
select {
  text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */
textarea {
  margin: 0; /* 1 */
  overflow: auto; /* 2 */
  resize: vertical; /* 3 */
}

/**
 * Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  padding: 0;
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct display in Edge 18- and IE.
 */
details {
  display: block;
}

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
 * ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* User interaction
 * ========================================================================== */
/*
 * 1. Remove the tapping delay in IE 10.
 * 2. Remove the tapping delay on clickable elements
      in all browsers (opinionated).
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation; /* 1 */
  touch-action: manipulation; /* 2 */
}

/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
[aria-busy=true] {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
[aria-controls] {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
[aria-hidden=false][hidden] {
  display: initial;
}

[aria-hidden=false][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

/**
 * @ SCSSファイル Load
 *
 * Config: 基本変数 & MIXIN
 * Vendor: 各種ライブラリ
 * Layout: レイアウト系
 * Component: コンポーネント & 流用できるパーツ
 * Pages: 各ページ毎の記述
 *
 */
/* ==============================
  Default
============================== */
html {
  font-size: 62.5%;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.6041666667vw;
  }
}

body {
  font-size: 1.6rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4150943396rem;
  }
}
body:not(.p-contact) .grecaptcha-badge {
  visibility: hidden;
}

a {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
}

@media screen and (max-width: 1239px) {
  .pc-disp {
    display: none;
  }
}

@media screen and (max-width: 999px) {
  .tpc-udisp {
    display: none;
  }
}

@media screen and (min-width: 1000px) {
  .tpc-disp {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .tbl-disp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .tbl-udisp {
    display: none;
  }
}

/**
 * @ SCSSファイル Load
 *
 * Config: 基本変数 & MIXIN
 * Vendor: 各種ライブラリ
 * Layout: レイアウト系
 * Component: コンポーネント & 流用できるパーツ
 * Pages: 各ページ毎の記述
 *
 */
/* ==============================
  Header
============================== */
.l-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2.3rem 3rem 0.8rem;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .l-header {
    padding: 1.7735849057rem 1.8867924528rem;
  }
}
.p-home .l-header {
  position: fixed;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.p-home .l-header.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.l-header--logo {
  width: 26.2rem;
  margin: 0;
}
.h-en .l-header--logo {
  width: 32.4rem;
}

@media screen and (min-width: 768px) {
  .l-header--logo {
    height: 6.8rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header--logo {
    width: 19.1509433962rem;
  }
  .h-en .l-header--logo {
    width: 20.7547169811rem;
  }
}
.l-header--nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: auto;
}
@media screen and (max-width: 999px) {
  .l-header--nav {
    display: none;
  }
}
.l-header--nav .c-toggle-wrap {
  margin-left: auto;
}
.l-header--nav .c-toggle-wrap a {
  color: #000;
}
.l-header--nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 21px;
}
.h-en .l-header--nav ul {
  font-family: "Alata", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
}

.l-header--nav ul a {
  font-weight: bold;
  text-decoration: none;
  color: #000;
}
.h-en .l-header--nav ul a {
  font-weight: normal;
}

.l-header .c-spbtn {
  margin-top: 17px;
  margin-left: 24px;
}
@media screen and (max-width: 999px) {
  .l-header .c-spbtn {
    margin-left: auto;
  }
}
.l-header .c-spbtn span {
  background-color: #000;
}

/**
 * @ SCSSファイル Load
 *
 * Config: 基本変数 & MIXIN
 * Vendor: 各種ライブラリ
 * Layout: レイアウト系
 * Component: コンポーネント & 流用できるパーツ
 * Pages: 各ページ毎の記述
 *
 */
/* ==============================
  spNav
============================== */
/**
 * @ SCSSファイル Load
 *
 * Config: 基本変数 & MIXIN
 * Vendor: 各種ライブラリ
 * Layout: レイアウト系
 * Component: コンポーネント & 流用できるパーツ
 * Pages: 各ページ毎の記述
 *
 */
/* ==============================
  Main
============================== */
.p-page .l-main {
  line-height: 1.625;
}

/**
 * @ SCSSファイル Load
 *
 * Config: 基本変数 & MIXIN
 * Vendor: 各種ライブラリ
 * Layout: レイアウト系
 * Component: コンポーネント & 流用できるパーツ
 * Pages: 各ページ毎の記述
 *
 */
/* ==============================
  section 共通化
============================== */
.l-section {
  width: 100%;
  padding: 0 2rem;
}
@media screen and (max-width: 767px) {
  .l-section {
    padding: 0 1.8867924528rem;
  }
}
.l-section-inner {
  width: 100%;
  max-width: 1180px;
  margin: 6rem auto;
}
@media screen and (max-width: 767px) {
  .l-section-inner {
    margin: 3.7735849057rem auto;
  }
}
.l-section-inner--narrow {
  max-width: 780px;
}
.l-section-inner--recent {
  padding: 9rem 2rem;
  max-width: calc(1180px + 4rem);
}
@media screen and (max-width: 767px) {
  .l-section-inner--recent {
    padding: 5.1886792453rem 1.8867924528rem;
  }
}
@media screen and (max-width: 767px) {
  .l-section-inner--blog {
    margin-bottom: 7.7358490566rem;
  }
}
.l-section-inner--bnr {
  max-width: calc(1180px + 4rem);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-section-inner--bnr {
    padding: 9rem 2rem;
  }
}
@media screen and (max-width: 767px) {
  .l-section-inner--bnr {
    padding: 2.8301886792rem 1.8867924528rem;
  }
}
.l-section-inner--under {
  margin-bottom: 18rem;
}
.l-section--about {
  padding: 0;
  position: relative;
}
.l-section--slide {
  padding: 0;
  position: relative;
}
.l-section--recent {
  padding: 0;
  background-color: #F9F6F4;
  margin: 12rem 0;
  border-top: 2px solid #946435;
  border-bottom: 2px solid #946435;
  position: relative;
}
.l-section--recent::before, .l-section--recent::after {
  position: absolute;
  content: "";
  height: 1px;
  background-color: #946435;
  width: 100%;
  left: 0;
  display: block;
}
.l-section--recent::before {
  top: 5px;
}
.l-section--recent::after {
  bottom: 5px;
}
@media screen and (max-width: 767px) {
  .l-section--recent {
    margin: 5.6603773585rem 0;
  }
}
.l-section--gallery {
  margin-bottom: 9rem;
}
.l-section--insta {
  margin-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .l-section--insta {
    margin-bottom: 7.0754716981rem;
  }
}
.l-section--youtube {
  margin-bottom: 16rem;
}
@media screen and (max-width: 767px) {
  .l-section--youtube {
    margin-bottom: 5.7547169811rem;
  }
}
.l-section--bnr {
  padding: 0;
  background-color: #F5F5F5;
}

/**
 * @ SCSSファイル Load
 *
 * Config: 基本変数 & MIXIN
 * Vendor: 各種ライブラリ
 * Layout: レイアウト系
 * Component: コンポーネント & 流用できるパーツ
 * Pages: 各ページ毎の記述
 *
 */
/* ==============================
  breadcrumb パンくず
============================== */
.l-breadcrumb {
  background-color: #F9F6F4;
  width: 100%;
  padding: 1.4ex 2rem;
  font-size: 1.4rem;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .l-breadcrumb {
    padding-left: 1.8867924528rem;
    padding-right: 1.8867924528rem;
    font-size: 1.3rem;
  }
}
.l-breadcrumb--inner {
  width: 100%;
  max-width: 1180px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1ex 0.8em;
}
.l-breadcrumb--list:not(:first-child) {
  position: relative;
  padding-left: 0.8rem;
}
.l-breadcrumb--list:not(:first-child):before {
  display: inline-block;
  content: "";
  position: absolute;
  width: 0;
  height: 1.7rem;
  border-left: 0.1rem solid #828282;
  -webkit-transform: rotate(22deg);
          transform: rotate(22deg);
  top: 0;
  left: 0;
}
.l-breadcrumb a {
  color: #828282;
  text-decoration: none;
}

/**
 * @ SCSSファイル Load
 *
 * Config: 基本変数 & MIXIN
 * Vendor: 各種ライブラリ
 * Layout: レイアウト系
 * Component: コンポーネント & 流用できるパーツ
 * Pages: 各ページ毎の記述
 *
 */
/* ==============================
  Footer
============================== */
.l-footer-inq {
  background-color: #D24F35;
  padding: 6rem 2rem;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .l-footer-inq {
    padding: 4.6226415094rem 1.8867924528rem;
  }
}
.l-footer-inq--head {
  margin: 0 auto 3.1rem;
  font-family: "Alata", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 3.6rem;
  font-weight: bold;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .l-footer-inq--head {
    font-size: 2.4528301887rem;
  }
}
.l-footer-inq--head::before, .l-footer-inq--head::after {
  content: "";
  display: block;
  position: absolute;
  height: 1px;
  width: 30vh;
  max-width: 255px;
  background-color: #fff;
  top: 50%;
}
@media screen and (max-width: 767px) {
  .l-footer-inq--head::before, .l-footer-inq--head::after {
    width: 7.1698113208rem;
  }
}
.l-footer-inq--head::before {
  left: -2.2rem;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.l-footer-inq--head::after {
  right: -2.2rem;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.l-footer-inq--comp {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .l-footer-inq--comp {
    font-size: 1.8867924528rem;
  }
}
.l-footer-inq--adrs {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .l-footer-inq--adrs {
    font-size: 1.320754717rem;
  }
}
.l-footer-inq-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 78rem;
  margin: auto;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .l-footer-inq-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 28.3018867925rem;
  }
}
.l-footer-inq-links a {
  width: 38rem;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border: 1px solid #fff;
  border-radius: calc(0.75em + 1rem);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .l-footer-inq-links a {
    font-size: 1.6981132075rem;
    width: 100%;
  }
}
.l-footer-inq-links a:hover {
  opacity: 1;
  color: #fff;
  background-color: #D24F35;
}
.l-footer-inq-links a:hover img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.l-footer-inq-links a .i-faq {
  width: 2.981rem;
  height: 2.786rem;
}
.l-footer-inq-links a .i-mail {
  width: 2.55rem;
  height: 2.09rem;
}
.l-footer-link {
  max-width: calc(1180px + 4rem);
  padding: 6rem 2rem 0;
  margin: 0 auto 1.5rem;
  border-bottom: 1px solid #A5A7A8;
}
@media screen and (max-width: 767px) {
  .l-footer-link {
    padding: 5.6603773585rem 1.8867924528rem 0;
  }
}
.l-footer-link--je {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 4rem;
  position: relative;
  font-family: "Alata", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
}
.l-footer-link--je::before {
  position: absolute;
  content: "";
  display: block;
  width: 2.64rem;
  height: 1px;
  background-color: #A5A7A8;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-65deg);
          transform: translate(-50%, -50%) rotate(-65deg);
}
.l-footer-link--je a {
  text-decoration: none;
  color: #313131;
}
.l-footer-link--sites {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 815px;
  margin: 0 auto 7.2rem;
  gap: 6rem;
}
@media screen and (max-width: 767px) {
  .l-footer-link--sites {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
    gap: 0.9433962264rem 2.4528301887rem;
    height: 24.5283018868rem;
    margin: 0 auto 3.7735849057rem;
  }
}
.l-footer-link--sites_blk {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.3rem;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .l-footer-link--sites_blk {
    width: calc((100% - 2.4528301887rem) / 2);
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.9433962264rem;
  }
}
.l-footer-link--sites_blk a {
  text-decoration: none;
  color: #313131;
  font-size: 1.4rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .l-footer-link--sites_blk a {
    font-size: 1.320754717rem;
  }
}
.l-footer-link--sites_blk a:hover {
  opacity: 0.7;
}
.l-footer-link-snss {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.8rem;
  margin: 0 auto 3.1rem;
}
@media screen and (max-width: 767px) {
  .l-footer-link-snss {
    margin: 0 auto 2.9245283019rem;
  }
}
.l-footer-copy {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  margin: 0 auto 4rem;
  font-size: 1.2rem;
  color: #313131;
}
@media screen and (max-width: 767px) {
  .l-footer-copy {
    font-size: 1.1320754717rem;
  }
}

/**
 * @ SCSSファイル Load
 *
 * Config: 基本変数 & MIXIN
 * Vendor: 各種ライブラリ
 * Layout: レイアウト系
 * Component: コンポーネント & 流用できるパーツ
 * Pages: 各ページ毎の記述
 *
 */
/* ==============================
  固定ページヘッダー
============================== */
.l-pageTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 8rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 6rem;
}
@media screen and (max-width: 767px) {
  .l-pageTitle {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.l-pageTitle--img {
  position: relative;
  background-position: center;
  background-size: cover;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .l-pageTitle--img {
    min-height: 40rem;
  }
}
@media screen and (max-width: 767px) {
  .l-pageTitle--img {
    min-height: 55vw;
  }
}
.l-pageTitle--img::after {
  content: "";
  position: absolute;
  display: block;
  background: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
}
.l-pageTitle--img .c-heading {
  color: #fff;
}
.l-pageTitle .c-heading {
  z-index: 2;
  margin: 0;
}

/**
 * @ SCSSファイル Load
 *
 * Config: 基本変数 & MIXIN
 * Vendor: 各種ライブラリ
 * Layout: レイアウト系
 * Component: コンポーネント & 流用できるパーツ
 * Pages: 各ページ毎の記述
 *
 */
/* ==============================
  editor エディタ
============================== */
/**
 * @ SCSSファイル Load
 *
 * Config: 基本変数 & MIXIN
 * Vendor: 各種ライブラリ
 * Layout: レイアウト系
 * Component: コンポーネント & 流用できるパーツ
 * Pages: 各ページ毎の記述
 *
 */
.c-button {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #D24F35;
  padding: 0.7ex 1.3em 0.9ex;
  color: #fff;
  text-decoration: none;
  border: 1px solid #D24F35;
  border-radius: calc(0.75em + 1rem);
  position: relative;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
}
.c-button:hover {
  color: #000000;
  background-color: #fff;
  opacity: 1;
}
.c-button--blank {
  padding-left: 5.4rem;
}
.c-button--blank::before {
  content: "";
  position: absolute;
  display: block;
  background-color: #fff;
  background-size: cover;
  width: 1.7rem;
  height: 1.7rem;
  top: 50%;
  left: 2.3rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-mask-image: url(../img/icon/i-window_white.svg);
          mask-image: url(../img/icon/i-window_white.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.c-button--blank:hover::before {
  background-color: #D24F35;
}
.c-button--arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-button--arrow::before {
  content: "";
  display: inline-block;
  width: 0.47em;
  height: 0.47em;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  margin-right: 1.2rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-button--arrow:hover::before {
  border-top: 2px solid #D24F35;
  border-right: 2px solid #D24F35;
}
.c-button-wrap {
  margin-top: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.5rem 1rem;
}
.c-button-wrap--mt12 {
  margin-top: 12rem;
}
.c-button-wrap--w300 > .c-button {
  width: 30rem;
}

/**
 * @ SCSSファイル Load
 *
 * Config: 基本変数 & MIXIN
 * Vendor: 各種ライブラリ
 * Layout: レイアウト系
 * Component: コンポーネント & 流用できるパーツ
 * Pages: 各ページ毎の記述
 *
 */
.c-card {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #fff;
  -webkit-box-shadow: 6px 8px rgba(0, 0, 0, 0.08);
          box-shadow: 6px 8px rgba(0, 0, 0, 0.08);
  display: block;
  text-decoration: none;
  color: #000;
  overflow: hidden;
}
.c-card-img {
  width: 100%;
  height: 0;
  padding-top: 68.34%;
  position: relative;
  overflow: hidden;
  margin-bottom: 1.4rem;
}
.c-card-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-card--pd {
  padding: 1rem 1rem 2.5rem;
}
.c-card-date {
  color: #D24F35;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 767px) {
  .c-card-date {
    font-size: 1.4150943396rem;
  }
}
.c-card-head {
  margin-top: 0;
  margin-bottom: 2.4rem;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .c-card-head {
    font-size: 1.8867924528rem;
  }
}
.c-card-text {
  margin-bottom: 2.3rem;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-card-text {
    font-size: 1.320754717rem;
  }
}
.c-card-more {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  font-weight: bold;
  position: relative;
  text-decoration: none;
  color: #000;
  font-size: 1.5rem;
  padding-right: 1.8rem;
}
@media screen and (max-width: 767px) {
  .c-card-more {
    font-size: 1.320754717rem;
  }
}
.c-card-more::before {
  content: "";
  position: absolute;
  display: block;
  width: 0.85rem;
  height: 0.85rem;
  border-top: 2px solid #D24F35;
  border-right: 2px solid #D24F35;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

/**
 * @ SCSSファイル Load
 *
 * Config: 基本変数 & MIXIN
 * Vendor: 各種ライブラリ
 * Layout: レイアウト系
 * Component: コンポーネント & 流用できるパーツ
 * Pages: 各ページ毎の記述
 *
 */
/**
 * @ SCSSファイル Load
 *
 * Config: 基本変数 & MIXIN
 * Vendor: 各種ライブラリ
 * Layout: レイアウト系
 * Component: コンポーネント & 流用できるパーツ
 * Pages: 各ページ毎の記述
 *
 */
.c-information-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 4rem;
  gap: 8rem 4rem;
}
.c-information-item {
  width: calc((100% - 8rem) / 3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-decoration: none;
  color: #000000;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .c-information-item {
    width: calc((100% - 4rem) / 2);
  }
}
@media screen and (max-width: 767px) {
  .c-information-item {
    width: 100%;
  }
}
.c-information-item figure {
  margin: 0;
  width: 100%;
  height: 0;
  padding-top: 68.3%;
  position: relative;
}
.c-information-item figure img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-information-item .subinf {
  margin-top: 2.47rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6rem;
}
.c-information-item .subinf .date {
  color: #D24F35;
  font-family: "Alata", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
}
.c-information-item .subinf .cat {
  padding: 2px 10px;
  background-color: #E8E7E6;
}
.c-information-item h3 {
  width: 100%;
  margin: 0;
  margin-top: 0.6rem;
  font-weight: 500;
  font-size: 2.2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.c-information-item .content {
  max-height: 4.5em;
  overflow: hidden;
  margin-top: 2.4rem;
}

/**
 * @ SCSSファイル Load
 *
 * Config: 基本変数 & MIXIN
 * Vendor: 各種ライブラリ
 * Layout: レイアウト系
 * Component: コンポーネント & 流用できるパーツ
 * Pages: 各ページ毎の記述
 *
 */
.c-goods-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 4rem;
  gap: 8rem 4rem;
}
.c-goods-item {
  width: calc((100% - 8rem) / 3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-decoration: none;
  color: #000000;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .c-goods-item {
    width: calc((100% - 4rem) / 2);
  }
}
@media screen and (max-width: 767px) {
  .c-goods-item {
    width: 100%;
  }
}
.c-goods-item figure {
  margin: 0;
  width: 100%;
  height: 0;
  padding-top: 68.3%;
  position: relative;
}
.c-goods-item figure img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-goods-item h3 {
  width: 100%;
  margin: 0;
  margin-top: 2.3rem;
  font-weight: 500;
  font-size: 2.2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.c-goods-item .content {
  max-height: 4.5em;
  overflow: hidden;
  margin-top: 2.4rem;
}
.c-goods-item .content p {
  margin: 0;
}

/**
 * @ SCSSファイル Load
 *
 * Config: 基本変数 & MIXIN
 * Vendor: 各種ライブラリ
 * Layout: レイアウト系
 * Component: コンポーネント & 流用できるパーツ
 * Pages: 各ページ毎の記述
 *
 */
.c-photogallery-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 4rem;
  gap: 8rem 4rem;
}
.c-photogallery-item {
  width: calc((100% - 8rem) / 3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-decoration: none;
  color: #000000;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .c-photogallery-item {
    width: calc((100% - 4rem) / 2);
  }
}
@media screen and (max-width: 767px) {
  .c-photogallery-item {
    width: 100%;
  }
}
.c-photogallery-item figure {
  margin: 0;
  width: 100%;
  height: 0;
  padding-top: 68.3%;
  position: relative;
}
.c-photogallery-item figure img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-photogallery-item h3 {
  width: 100%;
  margin: 0;
  margin-top: 2.1rem;
  font-weight: 500;
  font-size: 2.2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.c-photogallery-item .content {
  max-height: 4.5em;
  overflow: hidden;
}

/**
 * @ SCSSファイル Load
 *
 * Config: 基本変数 & MIXIN
 * Vendor: 各種ライブラリ
 * Layout: レイアウト系
 * Component: コンポーネント & 流用できるパーツ
 * Pages: 各ページ毎の記述
 *
 */
.c-heading {
  font-family: "Alata", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 4.2rem;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .c-heading {
    font-size: 2.4528301887rem;
  }
}

/**
 * @ SCSSファイル Load
 *
 * Config: 基本変数 & MIXIN
 * Vendor: 各種ライブラリ
 * Layout: レイアウト系
 * Component: コンポーネント & 流用できるパーツ
 * Pages: 各ページ毎の記述
 *
 */
/**
 * @ SCSSファイル Load
 *
 * Config: 基本変数 & MIXIN
 * Vendor: 各種ライブラリ
 * Layout: レイアウト系
 * Component: コンポーネント & 流用できるパーツ
 * Pages: 各ページ毎の記述
 *
 */
/* ==============================
  Main Visual
============================== */
.c-mvisual {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.c-mvisual--top {
  position: absolute;
  width: 100%;
  padding: 2.3rem 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .c-mvisual--top {
    padding: 1.7735849057rem 1.8867924528rem;
  }
}
.c-mvisual--logo {
  width: 26.2rem;
  margin: 0;
}
.h-en .c-mvisual--logo {
  width: 32.4rem;
}

@media screen and (min-width: 768px) {
  .c-mvisual--logo {
    height: 6.8rem;
  }
}
@media screen and (max-width: 767px) {
  .c-mvisual--logo {
    width: 19.1509433962rem;
  }
  .h-en .c-mvisual--logo {
    width: 20.7547169811rem;
  }
}
.c-mvisual--nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 19.4rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .c-mvisual--nav {
    width: auto;
  }
  .c-mvisual--nav .c-toggle-wrap {
    display: none;
  }
}
.c-mvisual--movie {
  width: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-mvisual--movie {
    height: auto;
  }
}
.c-mvisual--movie-area {
  position: relative;
  width: 100%;
  background: #000;
}
@media screen and (orientation: portrait) {
  .c-mvisual--movie-area {
    height: calc(100vh - 12rem);
    height: calc(100svh - 12rem);
  }
}
@media screen and (orientation: landscape) {
  .c-mvisual--movie-area {
    height: calc(100vh - 12rem);
  }
}
@media screen and (max-width: 767px) {
  .c-mvisual--movie-area {
    height: calc(100vh - 27rem);
    height: calc(100svh - 27rem);
  }
}
.c-mvisual--movie-video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  min-height: 100%;
  min-width: 100%;
}
.c-mvisual--movie-mask { /*youtubeがクリックされないためのマスク*/
  position: absolute;
  z-index: 2; /*下から2番目に表示*/
  top: 0;
  width: 100%;
  height: 100%;
}
.c-mvisual--text {
  position: absolute;
  bottom: 4.3rem;
  right: 0;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .c-mvisual--text {
    position: relative;
    bottom: auto;
    right: auto;
  }
}
.c-mvisual--word {
  color: #fff;
  font-size: 4.3rem;
  font-weight: bold;
  position: absolute;
  text-align: right;
  top: 0;
  right: 4rem;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  word-break: keep-all;
  width: 60rem;
}
.h-en .c-mvisual--word {
  font-family: "Alata", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 767px) {
  .c-mvisual--word {
    width: 100%;
    font-size: 2.641509434rem;
    right: 1.8867924528rem;
    top: -2.0754716981rem;
  }
}
.c-mvisual--important {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .c-mvisual--important {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-mvisual--important-head {
  background-color: #313131;
  color: #fff;
  padding: 1.2rem 1.7rem;
}
@media screen and (max-width: 767px) {
  .c-mvisual--important-head {
    font-size: 1.4150943396rem;
  }
}
.c-mvisual--important-head span {
  display: inline-block;
  border-left: 1rem solid #F0D02D;
  border-top: 0.6rem solid transparent;
  border-bottom: 0.6rem solid transparent;
}
.c-mvisual--important-list {
  background-color: #fff;
  margin: 0;
  padding: 1.2rem 3.8rem 1.2rem 1.2rem;
  list-style: none;
  max-width: 50vw;
}
@media screen and (max-width: 767px) {
  .c-mvisual--important-list {
    max-width: none;
  }
}
.c-mvisual--important-list li {
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-mvisual--important-list li {
    font-size: 1.4150943396rem;
  }
}
.c-mvisual--important-list li a {
  color: #000;
}
.c-mvisual--important-list li span:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Alata", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  color: #D24F35;
  width: 9rem;
  display: inline-block;
}
.c-mvisual--important-list li span:nth-child(2) {
  padding-left: 9rem;
  display: inline-block;
}
.c-mvisual--inf {
  font-family: "Alata", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  position: absolute;
  bottom: 4.3rem;
  left: 4rem;
  padding: 1.5rem 3rem;
  background-color: rgba(93, 86, 81, 0.4);
  color: #fff;
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .c-mvisual--inf {
    bottom: auto;
    top: 12rem;
  }
}
@media screen and (max-width: 767px) {
  .c-mvisual--inf {
    position: relative;
    bottom: auto;
    left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 1.4150943396rem 2.8301886792rem;
    background-color: rgba(93, 86, 81, 0.7);
  }
  .c-mvisual--inf::before {
    content: "";
    position: absolute;
    border-right: 1px #fff dashed;
    height: 60%;
    left: 17.2641509434rem;
  }
}
.c-mvisual--inf hr {
  border: none;
  border-top: 1px dashed #fff;
}
@media screen and (max-width: 767px) {
  .c-mvisual--inf hr {
    display: none;
  }
}
.c-mvisual--inf-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .c-mvisual--inf-time {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 36vw;
  }
}
.c-mvisual--inf-time span:nth-child(1) {
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .c-mvisual--inf-time span:nth-child(1) {
    font-size: 1.1320754717rem;
    text-align: center;
  }
}
.c-mvisual--inf-time span:nth-child(2) {
  font-size: 3rem;
  margin-left: 1rem;
}
@media screen and (max-width: 767px) {
  .c-mvisual--inf-time span:nth-child(2) {
    font-size: 2.0754716981rem;
    margin-left: 0;
  }
}
.c-mvisual--inf-weather {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-mvisual--inf-weather span.temperature {
  font-size: 3rem;
  margin-left: 1.9rem;
}
@media screen and (max-width: 767px) {
  .c-mvisual--inf-weather span.temperature {
    font-size: 2.0754716981rem;
    margin-left: 0.3773584906rem;
  }
}
@media screen and (max-width: 767px) {
  .c-mvisual--inf-weather span.datetime {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: 1.8867924528rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.c-mvisual--inf-weather span.date {
  font-size: 1.5rem;
  margin-left: 2.7rem;
}
@media screen and (max-width: 767px) {
  .c-mvisual--inf-weather span.date {
    font-size: 1.1320754717rem;
    margin-left: 0;
  }
}
.c-mvisual--inf-weather span.time {
  font-size: 1.5rem;
  margin-left: 0.25em;
}
@media screen and (max-width: 767px) {
  .c-mvisual--inf-weather span.time {
    font-size: 1.1320754717rem;
    margin-left: 0;
  }
}
.c-mvisual--inf-weather img {
  width: 4rem;
  height: 4rem;
}
@media screen and (max-width: 767px) {
  .c-mvisual--inf-weather img {
    width: 2.8301886792rem;
    height: 2.8301886792rem;
  }
}
.c-mvisual--menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0;
  min-height: 12rem;
}
.h-en .c-mvisual--menu {
  font-family: "Alata", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  .c-mvisual--menu:nth-child(1) span {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .c-mvisual--menu {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.c-mvisual--menu li {
  width: 25%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-mvisual--menu li {
    width: 50%;
  }
}
.c-mvisual--menu li:not(:first-of-type)::before {
  content: "";
  position: absolute;
  height: 6.6rem;
  width: 1px;
  background-color: #D6D1CD;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 5;
}
.c-mvisual--menu li:nth-child(-n+2) a {
  padding: 1.8rem 0 1rem;
}
.c-mvisual--menu li:nth-child(n+3) a {
  padding: 1.2rem 0 1.6rem;
}
.c-mvisual--menu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  color: #000;
  background-color: #F9F6F4;
  padding: 1.8rem 0 1.6rem;
  height: 100%;
  -webkit-transition: 0.3s ease filter;
  transition: 0.3s ease filter;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .c-mvisual--menu li a {
    font-size: 1.3rem;
  }
}
.h-en .c-mvisual--menu li a {
  font-weight: normal;
}

.c-mvisual--menu li a:hover {
  background-color: #FFFCFA;
  opacity: 1;
}
.c-mvisual--menu-iabout {
  width: 4rem;
}
@media screen and (max-width: 767px) {
  .c-mvisual--menu-iabout {
    width: 3.3rem;
  }
}
.c-mvisual--menu-itp {
  width: 5rem;
}
@media screen and (max-width: 767px) {
  .c-mvisual--menu-itp {
    width: 4.2rem;
  }
}
.c-mvisual--menu-iatnt {
  width: 4.7rem;
}
@media screen and (max-width: 767px) {
  .c-mvisual--menu-iatnt {
    width: 3.9rem;
  }
}
.c-mvisual--menu-iacsc {
  width: 5rem;
}
@media screen and (max-width: 767px) {
  .c-mvisual--menu-iacsc {
    width: 4.1rem;
  }
}
.c-mvisual--menu-ifaq {
  width: 4.6rem;
}
@media screen and (max-width: 767px) {
  .c-mvisual--menu-ifaq {
    width: 3.9rem;
  }
}

/**
 * @ SCSSファイル Load
 *
 * Config: 基本変数 & MIXIN
 * Vendor: 各種ライブラリ
 * Layout: レイアウト系
 * Component: コンポーネント & 流用できるパーツ
 * Pages: 各ページ毎の記述
 *
 */
.c-toggle {
  position: relative;
  display: inline-block;
  width: 2.8rem;
  height: 1.6rem;
  background-color: #D24F35;
  border-radius: 0.9rem;
}
.c-toggle::before {
  position: absolute;
  content: "";
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #F9F6F4;
  top: 50%;
  left: 0.3rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-toggle-wrap {
  font-family: "Alata", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  line-height: 1;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.c-toggle-wrap a {
  color: #fff;
  text-decoration: none;
}
.c-toggle.en::before, .c-toggle.active::before {
  left: unset;
  right: 0.3rem;
}

/**
 * @ SCSSファイル Load
 *
 * Config: 基本変数 & MIXIN
 * Vendor: 各種ライブラリ
 * Layout: レイアウト系
 * Component: コンポーネント & 流用できるパーツ
 * Pages: 各ページ毎の記述
 *
 */
.c-spmenu {
  z-index: 999;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(49, 51, 52, 0.9);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
  opacity: 0;
  visibility: hidden;
}
.c-spmenu::-webkit-scrollbar {
  display: none;
}
.c-spmenu.active {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 767px) {
  .c-spmenu {
    padding-bottom: 4.7169811321rem;
  }
}
.c-spmenu .c-spbtn {
  position: absolute;
  top: 4rem;
  right: 4rem;
}
@media screen and (max-width: 767px) {
  .c-spmenu .c-spbtn {
    top: 2.5471698113rem;
    right: 1.8867924528rem;
  }
}
.c-spmenu-logo {
  margin: auto;
  margin-top: 16.5rem;
  -webkit-text-emphasis: center;
          text-emphasis: center;
  width: 26rem;
}
@media screen and (max-width: 767px) {
  .c-spmenu-logo {
    width: 19.2047169811rem;
    margin-top: 1.7735849057rem;
    margin-left: 1.8867924528rem;
  }
}
.c-spmenu .c-toggle {
  background-color: #fff;
}
.c-spmenu .c-toggle::before {
  background-color: #313131;
}
.c-spmenu .c-toggle-wrap {
  margin: auto;
  margin-top: 8rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .c-spmenu .c-toggle-wrap {
    margin-top: 2.9150943396rem;
  }
}
.c-spmenu-main {
  width: 100%;
  max-width: 92rem;
  margin: 4.25rem auto 0;
  padding: 0 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 3.2rem;
}
@media screen and (max-width: 767px) {
  .c-spmenu-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 2.358490566rem;
    padding: 0 1.8867924528rem;
    gap: 2.641509434rem;
  }
}
.c-spmenu-main--left {
  width: calc(100% - 30rem);
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  gap: 2rem;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .c-spmenu-main--left {
    width: 100%;
    gap: 0.9433962264rem;
  }
}
.h-en .c-spmenu-main--left {
  font-family: "Alata", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
}

.c-spmenu-main--left-item {
  width: 18rem;
  height: 12rem;
}
@media screen and (max-width: 767px) {
  .c-spmenu-main--left-item {
    width: calc((100% - 1.8867924528rem) / 3);
    height: 11.320754717rem;
  }
}
.c-spmenu-main--left-item a {
  line-height: 1.3em;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  width: 100%;
  height: 100%;
  padding: 0.8rem;
  background-color: #313131;
  border: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .c-spmenu-main--left-item a {
    font-size: 1.320754717rem;
    line-height: 1.5em;
    padding: 0.3773584906rem;
  }
}
.h-en .c-spmenu-main--left-item a {
  font-weight: normal;
}

.c-spmenu-main--left-item a:hover {
  opacity: 1;
  background-color: #454747;
}
.c-spmenu-main--left-item a img {
  width: 2.8rem;
  margin: auto;
}
.c-spmenu-main--left-item a span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 4.8rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-spmenu-main--left a .c-spmenu-main--left-iabout {
  width: 28.21px;
}
.c-spmenu-main--left a .c-spmenu-main--left-itp {
  width: 32.4px;
}
.c-spmenu-main--left a .c-spmenu-main--left-iattention {
  width: 31.02px;
}
.c-spmenu-main--left a .c-spmenu-main--left-iaccess {
  width: 33.55px;
}
.c-spmenu-main--left a .c-spmenu-main--left-ifaq {
  width: 31.3px;
}
.c-spmenu-main--left a .c-spmenu-main--left-ibeginner {
  width: 18.8px;
}
.c-spmenu-main--left a .c-spmenu-main--left-imap {
  width: 28.21px;
}
@media screen and (max-width: 767px) {
  .c-spmenu-main--left a .c-spmenu-main--left-iabout {
    width: 2.6613207547rem;
  }
  .c-spmenu-main--left a .c-spmenu-main--left-itp {
    width: 3.0566037736rem;
  }
  .c-spmenu-main--left a .c-spmenu-main--left-iattention {
    width: 2.9264150943rem;
  }
  .c-spmenu-main--left a .c-spmenu-main--left-iaccess {
    width: 3.1650943396rem;
  }
  .c-spmenu-main--left a .c-spmenu-main--left-ifaq {
    width: 2.9528301887rem;
  }
  .c-spmenu-main--left a .c-spmenu-main--left-ibeginner {
    width: 1.7735849057rem;
  }
  .c-spmenu-main--left a .c-spmenu-main--left-imap {
    width: 2.6613207547rem;
  }
}
.c-spmenu-main--right {
  width: 28rem;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .c-spmenu-main--right {
    width: 100%;
  }
}
.c-spmenu-main--right-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .c-spmenu-main--right-list {
    gap: 2.4528301887rem;
  }
}
.h-en .c-spmenu-main--right-list {
  font-family: "Alata", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
}

.c-spmenu-main--right-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem 2.6rem;
}
.c-spmenu-main--right-item ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
  list-style: none;
  gap: 2rem;
}
.c-spmenu-main--right-item a {
  text-decoration: none;
  color: #fff;
  position: relative;
  padding-left: 2rem;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .c-spmenu-main--right-item a {
    font-size: 1.320754717rem;
    padding-left: 1.320754717rem;
  }
}
.c-spmenu-main--right-item a::before {
  content: "";
  position: absolute;
  display: block;
  width: 0.67rem;
  height: 0.67rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .c-spmenu-main--right-item a::before {
    width: 0.6320754717rem;
    height: 0.6320754717rem;
  }
}
.c-spmenu-main--right-item a:hover::before {
  -webkit-transform: translateX(3px) translateY(-50%) rotate(45deg);
          transform: translateX(3px) translateY(-50%) rotate(45deg);
}
.c-spmenu-main--right-item--list > a {
  padding-left: 0;
}
.c-spmenu-main--right-item--list > a::before {
  content: none;
}
.c-spmenu-main--right-item--list ul a {
  padding-left: 1.5rem;
}
.c-spmenu-sns {
  margin-top: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.8rem;
}

/**
 * @ SCSSファイル Load
 *
 * Config: 基本変数 & MIXIN
 * Vendor: 各種ライブラリ
 * Layout: レイアウト系
 * Component: コンポーネント & 流用できるパーツ
 * Pages: 各ページ毎の記述
 *
 */
.c-spbtn {
  width: 3rem;
  height: 1.9rem;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-spbtn {
    width: 2.8301886792rem;
    height: 1.7924528302rem;
    margin-top: 0.8490566038rem;
  }
}
.c-spbtn.active span {
  -webkit-transition: opacity 0.2s ease, top 0.3s 0.05s ease, -webkit-transform 0.3s 0.35s ease;
  transition: opacity 0.2s ease, top 0.3s 0.05s ease, -webkit-transform 0.3s 0.35s ease;
  transition: opacity 0.2s ease, top 0.3s 0.05s ease, transform 0.3s 0.35s ease;
  transition: opacity 0.2s ease, top 0.3s 0.05s ease, transform 0.3s 0.35s ease, -webkit-transform 0.3s 0.35s ease;
}
.c-spbtn.active span:nth-child(1) {
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  top: 50%;
}
.c-spbtn.active span:nth-child(2) {
  opacity: 0;
}
.c-spbtn.active span:nth-child(3) {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  top: 50%;
}
.c-spbtn span {
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 0;
  -webkit-transition: opacity 0.2s ease, top 0.3s 0.3s ease, -webkit-transform 0.3s 0.05s ease;
  transition: opacity 0.2s ease, top 0.3s 0.3s ease, -webkit-transform 0.3s 0.05s ease;
  transition: opacity 0.2s ease, top 0.3s 0.3s ease, transform 0.3s 0.05s ease;
  transition: opacity 0.2s ease, top 0.3s 0.3s ease, transform 0.3s 0.05s ease, -webkit-transform 0.3s 0.05s ease;
}
.c-spbtn span:nth-child(1) {
  top: 0;
}
.c-spbtn span:nth-child(2) {
  top: 50%;
}
.c-spbtn span:nth-child(3) {
  top: 100%;
}

/**
 * @ SCSSファイル Load
 *
 * Config: 基本変数 & MIXIN
 * Vendor: 各種ライブラリ
 * Layout: レイアウト系
 * Component: コンポーネント & 流用できるパーツ
 * Pages: 各ページ毎の記述
 *
 */
/* ==============================
  Pagetop
============================== */
/**
 * @ SCSSファイル Load
 *
 * Config: 基本変数 & MIXIN
 * Vendor: 各種ライブラリ
 * Layout: レイアウト系
 * Component: コンポーネント & 流用できるパーツ
 * Pages: 各ページ毎の記述
 *
 */
.c-paging {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  margin-top: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6rem;
  padding-bottom: 0.65rem;
}
.c-paging span {
  color: #000;
  position: relative;
  display: block;
}
.c-paging span.active::before {
  content: "";
  position: absolute;
  bottom: -0.65rem;
  left: 50%;
  width: 150%;
  height: 1px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #000;
}
.c-paging a {
  color: #D24F35;
  text-decoration: none;
}

/**
 * @ SCSSファイル Load
 *
 * Config: 基本変数 & MIXIN
 * Vendor: 各種ライブラリ
 * Layout: レイアウト系
 * Component: コンポーネント & 流用できるパーツ
 * Pages: 各ページ毎の記述
 *
 */
.c-selectbox {
  position: relative;
}
.c-selectbox::before {
  position: absolute;
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  border-right: 2px solid #D24F35;
  border-bottom: 2px solid #D24F35;
  right: 0.9rem;
  top: 45%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.c-selectbox--wrap {
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.4rem;
}
.c-selectbox select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0px;
  border: 1px solid #D6D1CD;
  height: 3rem;
  accent-color: #D24F35;
  padding-left: 1rem;
  padding-right: 2.4rem;
  display: block;
}

/**
 * @ SCSSファイル Load
 *
 * Config: 基本変数 & MIXIN
 * Vendor: 各種ライブラリ
 * Layout: レイアウト系
 * Component: コンポーネント & 流用できるパーツ
 * Pages: 各ページ毎の記述
 *
 */
.c-dltable {
  margin-top: 6rem;
  border-top: 0.1rem solid #D6D1CD;
  display: grid;
  gap: 0;
}
@media screen and (max-width: 767px) {
  .c-dltable {
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 768px) {
  .c-dltable {
    grid-template-columns: 14.6rem 1fr;
  }
}
.c-dltable--head {
  padding: 2rem 0;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-dltable--head {
    padding-bottom: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .c-dltable--head {
    border-bottom: 0.1rem solid #D6D1CD;
  }
}
.c-dltable--history .c-dltable--head {
  font-family: "Alata", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  color: #D24F35;
}

.c-dltable--content {
  border-bottom: 0.1rem solid #D6D1CD;
  padding: 2rem 0;
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .c-dltable--content {
    padding-top: 0;
  }
}
.c-dltable .c-dltable--photo {
  margin-top: 2rem;
}

/**
 * @ SCSSファイル Load
 *
 * Config: 基本変数 & MIXIN
 * Vendor: 各種ライブラリ
 * Layout: レイアウト系
 * Component: コンポーネント & 流用できるパーツ
 * Pages: 各ページ毎の記述
 *
 */
.c-art-links {
  margin-top: 10rem;
  border-top: 1px solid #D6D1CD;
  padding: 2rem 0;
  position: relative;
}
.c-art-links a {
  text-decoration: none;
  color: #000;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.77rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.c-art-links a::before {
  content: "";
  width: 0.47em;
  height: 0.47em;
  position: relative;
  display: inline-block;
  border-top: 2px solid #D24F35;
  border-left: 2px solid #D24F35;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  top: 0.75em;
}
.c-art-links a.next, .c-art-links a.past {
  position: absolute;
  top: 2rem;
}
.c-art-links a.next {
  left: 0;
}
.c-art-links a.past {
  right: 0;
}
.c-art-links a.past::before {
  content: none;
}
.c-art-links a.past::after {
  content: "";
  width: 0.47em;
  height: 0.47em;
  position: relative;
  display: inline-block;
  border-top: 2px solid #D24F35;
  border-right: 2px solid #D24F35;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  top: 0.75em;
}

/**
 * @ SCSSファイル Load
 *
 * Config: 基本変数 & MIXIN
 * Vendor: 各種ライブラリ
 * Layout: レイアウト系
 * Component: コンポーネント & 流用できるパーツ
 * Pages: 各ページ毎の記述
 *
 */
.c-bussinesshour {
  background: #F9F6F4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 1rem;
}
.c-bussinesshour--today {
  font-size: 3rem;
  font-family: "Alata", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
}
.c-bussinesshour--hour {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 1rem;
  margin: 0;
}
.c-bussinesshour--cont {
  font-size: 3rem;
  font-family: "Alata", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  margin: 0;
}

/**
 * @ SCSSファイル Load
 *
 * Config: 基本変数 & MIXIN
 * Vendor: 各種ライブラリ
 * Layout: レイアウト系
 * Component: コンポーネント & 流用できるパーツ
 * Pages: 各ページ毎の記述
 *
 */
.smf-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 8rem;
}
.smf-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .smf-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.smf-item__col--label {
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .smf-item__col--label {
    width: 20rem;
  }
}
@media screen and (max-width: 767px) {
  .smf-item__col--label {
    margin-bottom: 0.5em;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .smf-item__col--controls {
    width: calc(100% - 20rem);
  }
}
@media screen and (max-width: 767px) {
  .smf-item__col--controls {
    width: 100%;
  }
}
.smf-item__controls h2:first-of-type {
  margin-top: 0;
}
.smf-item__controls .sample_word {
  display: inline;
}
.smf-item__controls .sample_word + * {
  display: inline;
}
.smf-item__controls .sample_word + * > * {
  display: inline;
}
.smf-item__controls input {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .smf-item__controls input.w-half {
    width: 50%;
  }
}
.smf-item.req .smf-item__label__text {
  position: relative;
}
.smf-item.req .smf-item__label__text::after {
  content: "※";
  color: #D24F35;
}
.smf-item.nonlabel .smf-item__col--label {
  display: none;
}
.smf-item.nonlabel .smf-item__col--controls {
  width: 100%;
}
.smf-item.center {
  text-align: center;
}

.smf-form .smf-item input[type=text].smf-text-control__control,
.smf-form .smf-item input[type=email].smf-text-control__control,
.smf-form .smf-item textarea.smf-textarea-control__control {
  border: 1px solid #828282;
  border-radius: 0;
}
@media screen and (max-width: 767px) {
  .smf-form .smf-item input[type=text].smf-text-control__control,
  .smf-form .smf-item input[type=email].smf-text-control__control,
  .smf-form .smf-item textarea.smf-textarea-control__control {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.smf-form .smf-item input[type=text].smf-text-control__control,
.smf-form .smf-item input[type=email].smf-text-control__control {
  height: 4rem;
}
@supports ((-webkit-appearance: none) or (-moz-appearance: none) or (appearance: none)) or (-moz-appearance: none) {
  .smf-form .smf-item span.smf-file-control__label {
    line-height: 1.5;
    padding: 0.5em 1.5em;
    border-radius: 2.5em;
    border: 1px solid #D24F35;
    background-color: #fff;
    background-image: none;
  }
}
.smf-form .smf-item span.smf-checkbox-control {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.smf-form .smf-item span.smf-checkbox-control input[type=checkbox] {
  width: 3rem;
  height: 3rem;
  border: 1px solid #707070;
  border-radius: 0;
  margin-top: 0;
}
.smf-form .smf-item span.smf-checkbox-control input[type=checkbox]::before {
  width: 0.6em;
  height: 1.25em;
  top: calc(50% - 0.8em);
  left: calc(50% - 0.3em);
}
@supports ((-webkit-appearance: none) or (-moz-appearance: none) or (appearance: none)) or (-moz-appearance: none) {
  .smf-form .smf-item span.smf-checkbox-control input[type=checkbox]:checked {
    background-color: #D24F35;
  }
}
.smf-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
}
.smf-action span.smf-button-control + span.smf-button-control {
  margin-left: 0;
}
.smf-action span.smf-button-control button[type=submit] {
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #D24F35;
  padding: 0.8ex 1.3em 0.9ex;
  color: #fff;
  text-decoration: none;
  border: 1px solid #D24F35;
  border-radius: calc(0.75em + 1rem);
  position: relative;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
  background-image: none;
  min-width: 18rem;
  margin: auto;
}
.smf-action span.smf-button-control button[type=submit]::before {
  content: "";
  display: inline-block;
  width: 0.47em;
  height: 0.47em;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  margin-right: 1.2rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.smf-action span.smf-button-control button[type=submit]:hover {
  color: #000000;
  background-color: #fff;
  opacity: 1;
}
.smf-action span.smf-button-control button[type=submit]:hover::before {
  border-top: 2px solid #D24F35;
  border-right: 2px solid #D24F35;
}
.smf-action span.smf-button-control button[type=submit][data-action=back] {
  border: 1px solid #313131;
  background-color: #313131;
}
.smf-action span.smf-button-control button[type=submit][data-action=back]:hover {
  background-color: #fff;
}
.smf-action span.smf-button-control button[type=submit][data-action=back]:hover::before {
  border-top: 2px solid #313131;
  border-right: 2px solid #313131;
}

[data-screen=confirm] .input {
  display: none;
}

[data-screen=complete] .smf-form {
  margin-bottom: 0;
}
[data-screen=complete] .smf-complete-content > *:first-child {
  margin-top: 0;
}

/**
 * @ SCSSファイル Load
 *
 * Config: 基本変数 & MIXIN
 * Vendor: 各種ライブラリ
 * Layout: レイアウト系
 * Component: コンポーネント & 流用できるパーツ
 * Pages: 各ページ毎の記述
 *
 */
.c-childrenlinks {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2em;
  padding: 0;
}
.c-childrenlinks-head {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 2.4ex;
}
@media screen and (max-width: 767px) {
  .c-childrenlinks-head {
    font-size: 1.8867924528rem;
  }
}
@media screen and (max-width: 479px) {
  .c-childrenlinks-head {
    margin-top: 8rem;
  }
}
@media screen and (min-width: 480px) {
  .c-childrenlinks-head {
    margin-top: 18rem;
  }
}
.c-childrenlinks-item {
  position: relative;
  width: 100%;
  height: 20rem;
}
@media screen and (min-width: 768px) {
  .c-childrenlinks-item {
    width: calc((100% - 2em) / 2);
  }
}
.c-childrenlinks-link {
  display: block;
}
.c-childrenlinks-link:hover {
  opacity: 1;
}
.c-childrenlinks-link:hover .c-childrenlinks-img {
  opacity: 0.7;
  -webkit-transition: 0.3s opacity ease;
  transition: 0.3s opacity ease;
}
.c-childrenlinks-img {
  width: 100%;
  height: 20rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-childrenlinks-name {
  position: absolute;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  bottom: 0;
  left: 0;
  padding: 1rem 3rem 1rem 1rem;
  width: 100%;
  text-align: center;
  font-weight: 500;
  margin: 0;
}
.c-childrenlinks-name::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  bottom: 50%;
  display: inline-block;
  width: 0.47em;
  height: 0.47em;
  border-top: 0.2rem solid #fff;
  border-right: 0.2rem solid #fff;
  -webkit-transform: translateY(0.4rem) rotate(45deg);
          transform: translateY(0.4rem) rotate(45deg);
  pointer-events: none;
}

/**
 * @ SCSSファイル Load
 *
 * Config: 基本変数 & MIXIN
 * Vendor: 各種ライブラリ
 * Layout: レイアウト系
 * Component: コンポーネント & 流用できるパーツ
 * Pages: 各ページ毎の記述
 *
 */
.js-modal-item {
  cursor: pointer;
}

.c-modal {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: rgba(49, 51, 52, 0.9);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 0;
  z-index: 1000;
  opacity: 1;
  visibility: visible;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
}
.c-modal-hidden {
  opacity: 0;
  visibility: hidden;
}
.c-modal-inner {
  width: 100%;
  height: 100%;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-modal-inner img {
  max-width: 80%;
  max-height: 81%;
}
.c-modal-inner figcaption {
  margin-top: 1em;
  color: #fff;
  text-align: center;
}
.c-modal-close {
  display: block;
  position: absolute;
  width: 30px;
  height: 20px;
  top: 4%;
  right: 4%;
  border-radius: 50%;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
  background-color: transparent;
  cursor: pointer;
}
.c-modal-close:hover {
  opacity: 0.7;
}
.c-modal-close::before, .c-modal-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 35.5px;
  height: 1px;
  background: #fff;
}
.c-modal-close::before {
  -webkit-transform: translate(-50%, -50%) rotate(32deg);
          transform: translate(-50%, -50%) rotate(32deg);
}
.c-modal-close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-32deg);
          transform: translate(-50%, -50%) rotate(-32deg);
}
.c-modal-transition {
  position: absolute;
  width: 80%;
  height: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .c-modal-transition {
    height: 1.8679245283rem;
  }
}
.c-modal-past, .c-modal-next {
  position: relative;
  height: 100%;
  width: 4rem;
}
@media screen and (max-width: 767px) {
  .c-modal-past, .c-modal-next {
    width: 0.9339622642rem;
  }
}
.c-modal-past::before, .c-modal-next::before {
  content: "";
  position: absolute;
  top: 25%;
  width: 2.51rem;
  height: 2.51rem;
  border-top: 2px solid #fff;
  cursor: pointer;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
}
@media screen and (max-width: 767px) {
  .c-modal-past::before, .c-modal-next::before {
    width: 1.320754717rem;
    height: 1.320754717rem;
  }
}
.c-modal-past:hover::before, .c-modal-next:hover::before {
  opacity: 0.7;
}
.c-modal-past::before {
  border-left: 2px solid #fff;
  left: 0;
  -webkit-transform: translateX(calc(-100% - 20px)) rotate(-45deg);
          transform: translateX(calc(-100% - 20px)) rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .c-modal-past::before {
    left: -4vw;
    -webkit-transform: translateX(-50%) rotate(-45deg);
            transform: translateX(-50%) rotate(-45deg);
  }
}
.c-modal-next::before {
  border-right: 2px solid #fff;
  right: 0;
  -webkit-transform: translateX(calc(100% + 20px)) rotate(45deg);
          transform: translateX(calc(100% + 20px)) rotate(45deg);
}
@media screen and (max-width: 767px) {
  .c-modal-next::before {
    right: -4vw;
    -webkit-transform: translateX(50%) rotate(45deg);
            transform: translateX(50%) rotate(45deg);
  }
}

/**
 * @ SCSSファイル Load
 *
 * Config: 基本変数 & MIXIN
 * Vendor: 各種ライブラリ
 * Layout: レイアウト系
 * Component: コンポーネント & 流用できるパーツ
 * Pages: 各ページ毎の記述
 *
 */
.c-twocolumns {
  display: grid;
  gap: 0 1.5em;
}
@media screen and (min-width: 480px) {
  .c-twocolumns {
    grid-template-columns: -webkit-max-content 1fr;
    grid-template-columns: max-content 1fr;
  }
}
.c-twocolumns dt {
  font-weight: 700;
}
@media screen and (max-width: 479px) {
  .c-twocolumns dt:not(:first-child) {
    margin-top: 1ex;
  }
}
.c-twocolumns dd {
  margin-left: 0;
}

/**
 * @ SCSSファイル Load
 *
 * Config: 基本変数 & MIXIN
 * Vendor: 各種ライブラリ
 * Layout: レイアウト系
 * Component: コンポーネント & 流用できるパーツ
 * Pages: 各ページ毎の記述
 *
 */
/* ==============================
  Pages -> Home
============================== */
.p-home h2 {
  font-family: "Alata", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
}
.p-home--tlink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  margin-bottom: 8.3rem;
}
@media screen and (max-width: 767px) {
  .p-home--tlink {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 4.1509433962rem;
  }
}
.p-home--tlink a {
  width: calc((100% - 2rem) / 2);
}
@media screen and (max-width: 767px) {
  .p-home--tlink a {
    width: 100%;
  }
}
.p-home--tlink a img {
  width: 100%;
}
.p-home--inf {
  display: grid;
  gap: 2rem;
}
@media screen and (max-width: 999px) {
  .p-home--inf {
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 1000px) {
  .p-home--inf {
    grid-template-columns: 36rem 1fr;
  }
}
.p-home--inf-head {
  margin: 0;
  font-size: 4rem;
}
@media screen and (min-width: 1000px) {
  .p-home--inf-head {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
@media screen and (max-width: 767px) {
  .p-home--inf-head {
    font-size: 2.4528301887rem;
  }
}
.p-home--inf-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 1000px) {
  .p-home--inf-list {
    grid-column: 2/3;
    grid-row: 1/3;
  }
}
.p-home--inf-list li {
  position: relative;
  padding: 1.55rem 0;
  border-top: 1px solid #D6D1CD;
}
.p-home--inf-list li:last-child {
  border-bottom: 1px solid #D6D1CD;
}
.p-home--inf-list a {
  text-decoration: none;
  color: #000;
  position: relative;
  display: inline-block;
  width: 100%;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
}
@media screen and (max-width: 767px) {
  .p-home--inf-list a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-home--inf-list a:hover {
  opacity: 0.7;
}
.p-home--inf-list a span:nth-child(1) {
  font-family: "Alata", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  display: inline-block;
  color: #D24F35;
  width: 10.6rem;
}
@media screen and (max-width: 767px) {
  .p-home--inf-list a span:nth-child(1) {
    width: 100%;
  }
}
@media screen and (max-width: 999px) {
  .p-home--inf-buttonwrap {
    text-align: right;
    justify-self: end;
  }
}
@media screen and (min-width: 1000px) {
  .p-home--inf-buttonwrap {
    align-self: end;
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
.p-home--about {
  width: 100%;
  position: relative;
}
.p-home--about-bg {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-home--about-bg.sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-home--about-bg.pc {
    display: none;
  }
}
.p-home--about-catch {
  position: absolute;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  z-index: 10;
  font-family: "Alata", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-home--about-catch {
    font-size: 3rem;
    top: 10.6rem;
    left: 50%;
    -webkit-transform: translateX(calc(-50% - 22rem));
            transform: translateX(calc(-50% - 22rem));
    gap: 2.4rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .p-home--about-catch {
    font-size: 2.6rem;
    top: 2rem;
    gap: 1.6rem;
    left: 38%;
  }
}
@media screen and (max-width: 767px) {
  .p-home--about-catch {
    top: 3.679245283rem;
    left: 1.8867924528rem;
    font-size: 1.7924528302rem;
    gap: 1.320754717rem;
  }
}
.p-home--about-catch span {
  display: block;
  background-color: #fff;
  padding: 1.7em 0.6em;
  line-height: 1;
}
.p-home--about-catch span:nth-child(2) {
  margin-top: 15rem;
}
@media screen and (max-width: 767px) {
  .p-home--about-catch span:nth-child(2) {
    margin-top: 8.4905660377rem;
  }
}
@media screen and (max-width: 767px) {
  .p-home--about-catch span {
    padding: 2.8301886792rem 1.0377358491rem;
  }
}
.p-home--about-content {
  line-height: 2em;
}
@media screen and (min-width: 768px) {
  .p-home--about-content {
    margin: -12vw auto 0;
    position: relative;
    z-index: 2;
    padding: 10rem 15rem 12rem;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(1rem);
    width: 78rem;
  }
}
@media screen and (min-width: 1240px) {
  .p-home--about-content {
    margin: -18rem auto 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1239px) {
  .p-home--about-content {
    max-width: 90%;
    padding: 8rem 11% 10rem;
  }
}
@media screen and (max-width: 767px) {
  .p-home--about-content {
    font-size: 1.4150943396rem;
    padding: 3.3962264151rem 1.8867924528rem 5.9433962264rem;
  }
}
.p-home--recent-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4.3rem;
  margin: 0 auto 4.9rem;
}
@media screen and (max-width: 767px) {
  .p-home--recent-top {
    margin: 0 auto 5.6603773585rem;
  }
}
@media screen and (max-width: 767px) {
  .p-home--recent-img {
    display: none;
  }
}
.p-home--recent-intro {
  max-width: 522px;
  font-size: 1.4rem;
}
.p-home--recent-head {
  font-size: 4rem;
  margin: 0 0 3rem;
}
@media screen and (max-width: 767px) {
  .p-home--recent-head {
    font-size: 2.4528301887rem;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.0377358491rem;
  }
  .p-home--recent-head::before {
    content: "";
    display: inline-block;
    width: 5.7971698113rem;
    height: 7.0481132075rem;
    background-image: url("../img/icon/i-recent.png");
    background-repeat: no-repeat;
    background-size: contain;
  }
}
.p-home--recent-chead {
  text-align: center;
  font-size: 3rem;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-home--recent-chead {
    font-size: 2.2641509434rem;
  }
}
.p-home--recent-cheadsub {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-family: "Alata", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  color: #D24F35;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-home--recent-cheadsub {
    font-size: 1.4150943396rem;
  }
}
.p-home--recent-cheadsub .i-check {
  margin-right: 0.6rem;
}
.p-home--recent-cheadsub .i-triangle {
  margin-left: 1.2rem;
  margin-top: 0.6rem;
}
.p-home--recent-cheadsub span {
  font-size: 2em;
  margin-left: 0.2em;
}
.h-en .p-home--recent-cheadsub span {
  font-weight: 700;
  margin-right: 0.2em;
}

.p-home--recent-text {
  line-height: 2em;
}
@media screen and (max-width: 767px) {
  .p-home--recent-text {
    font-size: 1.2264150943rem;
  }
}
@media screen and (min-width: 768px) {
  .p-home--recent-content {
    padding: 4rem 0;
    border-top: 1px solid #946435;
  }
}
.p-home--recent-content:last-child {
  padding-bottom: 0;
}
.p-home--recent-content.column2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-home--recent-content.column2 {
    gap: 12rem;
  }
}
@media screen and (max-width: 767px) {
  .p-home--recent-content.column2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-home--recent-content.column2::before {
  position: absolute;
  width: 1px;
  height: 90%;
  background-color: #946435;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .p-home--recent-content.column2::before {
    content: "";
  }
}
.p-home--recent-content.column2 > * {
  max-width: 48rem;
  width: calc((100% - 12rem) / 2);
}
@media screen and (max-width: 767px) {
  .p-home--recent-content.column2 > * {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-home--recent-content > * {
    padding: 4rem 0;
    border-top: 1px solid #946435;
  }
}
@media screen and (max-width: 767px) {
  .p-home--recent-now .c-card {
    max-width: 500px;
    margin: auto;
  }
}
.p-home--recent-live {
  display: grid;
  gap: 2rem 6%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .p-home--recent-live {
    grid-template-columns: 1fr;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .p-home--recent-live {
    max-width: 100rem;
    grid-template-columns: 30rem calc(94% - 30rem);
  }
}
@media screen and (min-width: 768px) {
  .p-home--recent-livehead {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
.p-home--recent-liveright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .p-home--recent-liveright {
    width: 60rem;
    grid-column: 2/3;
    grid-row: 1/3;
  }
}
.p-home--recent-liveright-imgwrap {
  margin-bottom: 2rem;
  width: 100%;
}
.p-home--recent-liveright img {
  width: 100%;
}
.p-home--recent-liveright .update {
  text-decoration: none;
  color: #000;
  background-color: #fff;
  padding: 0.75rem 1.6rem;
  border: 1px solid #D24F35;
  border-radius: calc(0.75rem + 0.75em);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-home--recent-liveright .update:not(:disabled) {
  cursor: pointer;
}
.p-home--recent-liveright .update::before {
  content: "";
  display: inline-block;
  background: url("../img/icon/i-update.svg");
  background-size: cover;
  width: 1.6rem;
  height: 1.475rem;
  margin-right: 0.6rem;
}
.p-home--recent-liveright .update:hover {
  opacity: 1;
  background-color: #D24F35;
  color: #fff;
}
.p-home--recent-liveright .update:hover::before {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.p-home--recent-liveright .update.active {
  position: relative;
  opacity: 1;
  background-color: #D24F35;
  color: #fff;
}
.p-home--recent-liveright .update.active::before {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  -webkit-animation: linear 1.5s infinite rotate;
          animation: linear 1.5s infinite rotate;
}
.p-home--recent-liveright .update.active p {
  position: absolute;
  bottom: -2em;
  right: 0;
  width: 12em;
  margin: 0;
  text-align: right;
  color: #000;
}
@media screen and (min-width: 768px) {
  .p-home--recent-liveright .c-button-wrap {
    display: none;
  }
}
.p-home--recent-livebutton {
  margin: 0;
  -ms-flex-item-align: start;
      align-self: start;
}
@media screen and (min-width: 768px) {
  .p-home--recent-livebutton {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
.p-home--gallery-head {
  text-align: center;
  font-size: 4rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .p-home--gallery-head {
    font-size: 2.4528301887rem;
    margin-bottom: 3.7735849057rem;
  }
}
.p-home--gallery-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .p-home--gallery-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (min-width: 1240px) {
  .p-home--gallery-list {
    width: calc(100vw - 8rem);
    margin-left: calc((100vw - 100% - 8rem) / 2 * -1);
  }
}
.p-home--gallery-list a {
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-home--gallery-list a {
    display: block;
    width: calc((100% - 4rem) / 2);
  }
}
.p-home--gallery-list a:hover {
  opacity: 0.7;
}
.p-home--gallery-list a > .p-home--gallery-text {
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 0;
  margin: 0;
  font-family: "Alata", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  padding: 4.3rem 2rem 2.1rem;
  background-color: rgba(29, 29, 29, 0.4);
}
@media screen and (max-width: 767px) {
  .p-home--gallery-list a > .p-home--gallery-text {
    font-size: 2.2641509434rem;
    padding: 2.358490566rem 1.8867924528rem 1.5094339623rem;
  }
}
.p-home--gallery-list a > .p-home--gallery-text::before {
  position: absolute;
  content: "";
  bottom: 10.9rem;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .p-home--gallery-list a > .p-home--gallery-text::before {
    bottom: 7.358490566rem;
  }
}
.p-home--gallery-list a:nth-of-type(2n+1) > p::before {
  background: url("../img/icon/i-book.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 4.9rem;
  height: 3.9rem;
}
@media screen and (max-width: 767px) {
  .p-home--gallery-list a:nth-of-type(2n+1) > p::before {
    width: 2.858490566rem;
    height: 2.3160377358rem;
  }
}
.p-home--gallery-list a:nth-of-type(2n+2) > p::before {
  background: url("../img/icon/i-photo.png");
  background-size: cover;
  background-repeat: no-repeat;
  width: 5.2rem;
  height: 4.4rem;
}
@media screen and (max-width: 767px) {
  .p-home--gallery-list a:nth-of-type(2n+2) > p::before {
    width: 3.0990566038rem;
    height: 2.6518867925rem;
  }
}
.p-home--gallery-itembg {
  width: 100%;
  height: 0;
  padding-top: 67.1875%;
  position: relative;
  overflow: hidden;
}
.p-home--gallery-itembg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-home--blog-head {
  text-align: center;
  margin-bottom: 6.2rem;
  font-weight: bold;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .p-home--blog-head {
    font-size: 2.2641509434rem;
    margin-bottom: 2.8301886792rem;
  }
}
.p-home--blog-head-en {
  color: #D24F35;
  font-size: 2.6rem;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .p-home--blog-head-en {
    font-size: 1.8867924528rem;
  }
}
.p-home--blog-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  gap: 3.4rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-home--blog-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2.8301886792rem 0.9433962264rem;
  }
}
.p-home--blog-list li {
  width: calc((100% - 10.2rem) / 4);
}
@media screen and (max-width: 767px) {
  .p-home--blog-list li {
    width: calc((100% - 0.9433962264rem) / 2);
  }
}
.p-home--blog-list a {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: block;
  width: 100%;
  text-decoration: none;
  color: #000;
}
.p-home--blog-list a:hover {
  opacity: 0.7;
}
.p-home--blog-list a img {
  width: 100%;
  margin-bottom: 1.6rem;
  height: 19.6rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-home--blog-list a img {
    margin-bottom: 1.4622641509rem;
    height: 11.4103773585rem;
  }
}
.p-home--blog-itemdate {
  color: #D24F35;
  margin-bottom: 1.1rem;
}
@media screen and (max-width: 767px) {
  .p-home--blog-itemdate {
    font-size: 1.4150943396rem;
    margin-bottom: 1.0754716981rem;
  }
}
.p-home--blog-itemhead {
  font-size: 2.2rem;
  font-weight: normal;
  margin-top: 0;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-home--blog-itemhead {
    font-size: 1.8867924528rem;
    margin-bottom: 1.0754716981rem;
  }
}
.p-home--blog-itemtext {
  line-height: 1.75;
  height: 5.25em;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-home--blog-itemtext {
    font-size: 1.4150943396rem;
    line-height: 1.8666666667;
    height: 7.4666666667em;
    overflow: hidden;
  }
  .p-home--blog .c-button-wrap {
    margin-top: 3.679245283rem;
  }
}
@media screen and (max-width: 767px) {
  .p-home--insta .c-button-wrap {
    margin-top: 2.8301886792rem;
  }
}
.p-home--insta-head {
  text-align: center;
  font-weight: bold;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .p-home--insta-head {
    font-size: 2.2641509434rem;
    margin-bottom: 3.7735849057rem;
  }
}
.p-home--insta-blk {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  padding: 0;
}
.p-home--insta-blk li {
  width: 16.6666666667%;
}
.p-home--insta-blk a {
  display: block;
  width: 100%;
  padding-top: 100%;
  position: relative;
}
.p-home--insta-blk img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-home--insta-blk > li {
    width: 50%;
  }
}
.p-home--youtube {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .p-home--youtube img.sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-home--youtube img.pc {
    display: none;
  }
}
.p-home--bnr {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .p-home--bnr {
    gap: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-home--bnr {
    gap: 0.9433962264rem;
  }
}
@media screen and (min-width: 768px) {
  .p-home--bnr li {
    width: calc((100% - 4rem) / 3);
  }
}
@media screen and (max-width: 767px) {
  .p-home--bnr li {
    width: calc((100% - 0.9433962264rem) / 2);
  }
}
.p-home--bnr li a {
  display: block;
}

/**
 * @ SCSSファイル Load
 *
 * Config: 基本変数 & MIXIN
 * Vendor: 各種ライブラリ
 * Layout: レイアウト系
 * Component: コンポーネント & 流用できるパーツ
 * Pages: 各ページ毎の記述
 *
 */
/* ==============================
  Pages -> 下層ページ
============================== */
/**
 * @ SCSSファイル Load
 *
 * Config: 基本変数 & MIXIN
 * Vendor: 各種ライブラリ
 * Layout: レイアウト系
 * Component: コンポーネント & 流用できるパーツ
 * Pages: 各ページ毎の記述
 *
 */
/* ==============================
  Pages -> フォトギャラリー
============================== */
.p-photogallery-imgs {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
}
@media screen and (min-width: 768px) {
  .p-photogallery-imgs {
    gap: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-photogallery-imgs {
    gap: 1rem;
  }
}
@media screen and (min-width: 768px) {
  .p-photogallery-text {
    padding: 2rem 0;
  }
}
.p-photogallery-img {
  height: 0;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-photogallery-img {
    width: calc((100% - 6rem) / 4);
    padding-top: calc((100% - 6rem) / 4);
  }
}
@media screen and (min-width: 480px) and (max-width: 767px) {
  .p-photogallery-img {
    width: calc((100% - 1rem) / 2);
    padding-top: calc((100% - 1rem) / 2);
  }
}
@media screen and (max-width: 479px) {
  .p-photogallery-img {
    width: 100%;
    padding-top: 100%;
  }
}
.p-photogallery-img a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.p-photogallery-img a img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

/**
 * @ SCSSファイル Load
 *
 * Config: 基本変数 & MIXIN
 * Vendor: 各種ライブラリ
 * Layout: レイアウト系
 * Component: コンポーネント & 流用できるパーツ
 * Pages: 各ページ毎の記述
 *
 */
/* ==============================
  Pages -> information
============================== */
.p-information-inf {
  max-width: 780px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
}
.p-information-inf .date {
  color: #D24F35;
  font-family: "Alata", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
}
.p-information-inf .cat {
  font-size: 1.4rem;
  line-height: 1;
  padding: 0.15em 0.9em;
  background-color: #E8E7E6;
}

/**
 * @ SCSSファイル Load
 *
 * Config: 基本変数 & MIXIN
 * Vendor: 各種ライブラリ
 * Layout: レイアウト系
 * Component: コンポーネント & 流用できるパーツ
 * Pages: 各ページ毎の記述
 *
 */
/* ==============================
  Pages -> Faq
============================== */
.p-faq-item {
  border-top: 1px solid #707070;
}
.p-faq-item:last-of-type {
  border-bottom: 1px solid #707070;
}
.p-faq-ques {
  font-size: 2.2rem;
  font-weight: bold;
  padding: 2.2rem 3.8rem;
  list-style: none;
  cursor: pointer;
  position: relative;
}
.p-faq-ques::-webkit-details-marker {
  display: none;
}
.p-faq-ques::before {
  content: "Q.";
  font-family: "Alata", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 2.8rem;
  color: #D24F35;
  position: absolute;
  top: 1.2rem;
  left: 0;
}
.p-faq-ques::after {
  content: "";
  display: block;
  position: absolute;
  border-bottom: 2px solid #D24F35;
  border-right: 2px solid #D24F35;
  width: 0.8rem;
  height: 0.8rem;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
  top: 3.25rem;
  right: 1rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.p-faq-item[open] .p-faq-ques::after {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.p-faq-ans {
  padding: 0.8rem 3.8rem;
  position: relative;
}
.p-faq-ans::before {
  content: "A.";
  font-family: "Alata", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 2.8rem;
  color: #D24F35;
  position: absolute;
  top: -0.5ex;
  left: 0;
}
.p-faq-item[open] .p-faq-ans {
  -webkit-animation: fadeIn 0.5s ease;
          animation: fadeIn 0.5s ease;
}
.p-faq-ans p:first-child {
  margin-top: 0;
}

/**
 * @ SCSSファイル Load
 *
 * Config: 基本変数 & MIXIN
 * Vendor: 各種ライブラリ
 * Layout: レイアウト系
 * Component: コンポーネント & 流用できるパーツ
 * Pages: 各ページ毎の記述
 *
 */
/* ==============================
  Page -> アクセス
============================== */
.l-editor .p-access-root-rapid, .l-editor .p-access-root-station, .l-editor .p-access-root-yaenkoen, .l-editor .p-access-root-parking, .l-editor .p-access-root-jct, .l-editor .p-access-root-ic {
  padding: 0.1em 0.5em;
  color: #fff;
}

.l-editor .p-access-group {
  margin: 3rem 0;
}
.l-editor .p-access-root {
  list-style: none;
  font-size: 1.5rem;
  padding: 1em 0;
  margin: 0;
  list-style: none;
  border-top: 0.1rem solid #D6D1CD;
}
@media screen and (min-width: 480px) {
  .l-editor .p-access-root {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem 0.5rem;
  }
}
.l-editor .p-access-root:last-child {
  border-bottom: 0.1rem solid #D6D1CD;
}
.l-editor .p-access-root li {
  vertical-align: middle;
  text-align: center;
  margin: 0;
  position: relative;
}
.l-editor .p-access-root li::before {
  content: none;
}
.l-editor .p-access-root li:not(:first-child)::before {
  content: "";
  position: absolute;
  border-radius: inherit;
  background: none;
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  border-right: 2px solid #313131;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 479px) {
  .l-editor .p-access-root li:not(:first-child) {
    margin-top: 2.2rem;
  }
  .l-editor .p-access-root li:not(:first-child)::before {
    border-bottom: 2px solid #313131;
    top: -2rem;
    left: calc(50% - 0.4rem);
  }
}
@media screen and (min-width: 480px) {
  .l-editor .p-access-root li:not(:first-child) {
    margin-left: 2.2rem;
  }
  .l-editor .p-access-root li:not(:first-child)::before {
    border-top: 2px solid #313131;
    top: calc(50% - 0.4rem);
    left: -2rem;
  }
}
.l-editor .p-access-root-ic {
  display: block;
  background: #16902d;
}
.l-editor .p-access-root-ic {
  display: block;
  background: #16902d;
}
.l-editor .p-access-root-ic span {
  background: #fff;
  color: #333;
  padding: 0.2em;
  font-size: 80%;
  margin-left: 0.2em;
}
.l-editor .p-access-root-jct {
  display: block;
  background: #006e35;
}
.l-editor .p-access-root-parking {
  background: #946435;
}
.l-editor .p-access-root-yaenkoen {
  background: #D24F35;
}
.l-editor .p-access-root-station {
  background: #007DC9;
}
.l-editor .p-access-root-rapid {
  color: #e4007e;
}

/**
 * @ SCSSファイル Load
 *
 * Config: 基本変数 & MIXIN
 * Vendor: 各種ライブラリ
 * Layout: レイアウト系
 * Component: コンポーネント & 流用できるパーツ
 * Pages: 各ページ毎の記述
 *
 */
.en.p-home--about-catch {
  -webkit-writing-mode: unset;
      -ms-writing-mode: unset;
          writing-mode: unset;
}
.en.p-home--about-catch span {
  padding: 0.5em 1em;
}
.en.p-home--about-catch span:nth-child(2) {
  margin-top: 0;
  margin-left: 1.5em;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .en.p-home--about-catch {
    left: 5em;
    -webkit-transform: unset;
            transform: unset;
  }
  .en.p-home--about-catch span {
    white-space: nowrap;
  }
}
@media screen and (max-width: 767px) {
  .en.p-home--about-catch span:nth-child(2) {
    margin-left: 0;
    white-space: nowrap;
  }
}

/**
 * @ SCSSファイル Load
 *
 * Config: 基本変数 & MIXIN
 * Vendor: 各種ライブラリ
 * Layout: レイアウト系
 * Component: コンポーネント & 流用できるパーツ
 * Pages: 各ページ毎の記述
 *
 */
.js-scroll-animate {
  -webkit-transition: 0.8s ease all;
  transition: 0.8s ease all;
}
.js-scroll-animate-fadeup {
  opacity: 0;
  -webkit-transform: translateY(3rem);
          transform: translateY(3rem);
}
.js-scroll-animate-fadeup.js-scroll-animate-start {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.l-editor {
  /* 文字色 */
  /* 背景色 */
}
.l-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table, .l-editor .wp-block-table table, .l-editor :where(table) {
  border: 0.1rem solid #D6D1CD;
  text-align: center;
}
.l-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th, .l-editor .wp-block-table th, .l-editor :where(th) {
  border: 0.1rem solid #D6D1CD;
  background-color: #F9F6F4;
  font-weight: 500;
  text-align: center;
  padding: 1em 0.5em;
}
.l-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td, .l-editor .wp-block-table td, .l-editor :where(td) {
  border: 0.1rem solid #D6D1CD;
  text-align: center;
  padding: 1em 0.5em;
}
.l-editor :where(h2) {
  font-size: 3rem;
  margin-top: 5.8ex;
  margin-bottom: 2.4ex;
}
@media screen and (max-width: 767px) {
  .l-editor :where(h2) {
    font-size: 2.2641509434rem;
  }
}
.l-editor :where(h3) {
  font-size: 2.2rem;
  margin-top: 3.8ex;
  margin-bottom: 2.3ex;
}
@media screen and (max-width: 767px) {
  .l-editor :where(h3) {
    font-size: 1.8867924528rem;
  }
}
.h-en .l-editor h1, .h-en .l-editor h2, .h-en .l-editor h3, .h-en .l-editor h4, .h-en .l-editor h5, .h-en .l-editor h6 {
  font-family: "Alata", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
}

.l-editor :where(p) {
  margin-top: 3.2ex;
  margin-bottom: 3.2ex;
}
.l-editor :where(p) + figure {
  margin-top: 6.2ex;
}
.l-editor :where(p) + .wp-block-columns {
  margin-top: 6.2ex;
}
.l-editor :where(p):where(:first-child) {
  margin-top: 0;
}
.l-editor :where(p):where(:last-child) {
  margin-bottom: 0;
}
.l-editor :where(ul) {
  padding-left: 1.5em;
  list-style: none;
  margin-top: 3.2ex;
  margin-bottom: 3.2ex;
}
.l-editor :where(ul) li {
  position: relative;
}
.l-editor :where(ul) li::before {
  content: "";
  display: block;
  position: absolute;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background-color: #D24F35;
  top: calc(0.6ex + 0.3rem);
  left: -1em;
}
.l-editor :where(ul) li:where(:not(:first-child)) {
  margin-top: 1.6ex;
}
.l-editor :where(ol) {
  padding-left: 2em;
  list-style: none;
  margin-top: 3.2ex;
  margin-bottom: 3.2ex;
  counter-reset: listCounter;
}
.l-editor :where(ol) li {
  position: relative;
  counter-increment: listCounter;
}
.l-editor :where(ol) li::before {
  font-family: "Alata", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  content: counter(listCounter) ".";
  display: block;
  position: absolute;
  color: #D24F35;
  left: -1.5em;
  text-align: right;
}
.l-editor :where(ol) li:where(:not(:first-child)) {
  margin-top: 1.6ex;
}
.l-editor :where(a) {
  color: #000000;
  text-decoration: none;
  position: relative;
}
.l-editor :where(a):not(:has(img))::before {
  content: "";
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 0.2rem solid #D24F35;
  border-right: 0.2rem solid #D24F35;
  -webkit-transform: translateY(-0.2ex) rotate(45deg);
          transform: translateY(-0.2ex) rotate(45deg);
  margin-left: 0.1em;
  margin-right: 0.3em;
}
.l-editor :where(a):not(:has(img))[target=_blank]::before {
  border: inherit;
  background-color: #D24F35;
  background-size: cover;
  width: 1.7rem;
  height: 1.7rem;
  -webkit-transform: translateY(0.2ex);
          transform: translateY(0.2ex);
  -webkit-mask-image: url(../img/icon/i-window_white.svg);
          mask-image: url(../img/icon/i-window_white.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.l-editor :where(a):not(:has(img))[href^="mailto:"]::before {
  border: inherit;
  background-color: #D24F35;
  background-size: cover;
  width: 1.4rem;
  height: 1.1rem;
  -webkit-transform: inherit;
          transform: inherit;
  -webkit-mask-image: url(../img/icon/i-mail.svg);
          mask-image: url(../img/icon/i-mail.svg);
  -webkit-mask-size: 1.4rem 1.1rem;
          mask-size: 1.4rem 1.1rem;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.l-editor :where(a):hover {
  text-decoration: underline;
}
.l-editor :where(figure) {
  margin: 0;
}
.l-editor :where(figure):not(:first-child) {
  margin-top: 6.2ex;
}
.l-editor :where(figure):not(:last-child) {
  margin-bottom: 6.2ex;
}
.l-editor figcaption {
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1239px) {
  .l-section-inner--narrow .l-editor .alignwide {
    width: calc(100vw - 6rem);
    margin-left: calc(50% - (100vw - 6rem) / 2);
  }
}
@media screen and (min-width: 1240px) {
  .l-section-inner--narrow .l-editor .alignwide {
    width: 1180px;
    margin-left: calc(50% - 590px);
  }
}

.l-section-inner--narrow .l-editor .alignfull {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.l-editor .wp-block-buttons {
  gap: 1.2em 0.8em;
}
.l-editor .wp-block-button__link {
  font-weight: 500;
  background: #D24F35;
  min-width: 16.2rem;
  padding: 0.5ex 1em 0.5ex 0.5em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  border: 0.1rem solid #D24F35;
}
.l-editor .wp-block-button__link::before {
  content: "";
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: inline-block;
  width: 0.47em;
  height: 0.47em;
  border-top: 0.2rem solid #fff;
  border-right: 0.2rem solid #fff;
  margin-right: 1.2rem;
  -webkit-transform: translateY(-10%) rotate(45deg);
          transform: translateY(-10%) rotate(45deg);
  left: inherit;
  top: inherit;
}
.l-editor .wp-block-button__link[target=_blank]::before {
  border: none;
  background-color: #fff;
  width: 1.7rem;
  height: 1.7rem;
  -webkit-transform: translateY(15%);
          transform: translateY(15%);
  -webkit-mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 17 17"><path d="M96,0V13.813h13.813V0Zm12.484,12.484H97.328V1.328h11.156Z" transform="translate(-92.813)" /><path d="M1.328,108.484V96H0v13.813H13.813v-1.328H1.328Z" transform="translate(0 -92.813)" /><path d="M205.47,132.868l3.913-3.913v2.816h1.328v-5.083h-5.083v1.328h2.815l-3.913,3.913Z" transform="translate(-197.74 -122.481)" /></svg>');
          mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 17 17"><path d="M96,0V13.813h13.813V0Zm12.484,12.484H97.328V1.328h11.156Z" transform="translate(-92.813)" /><path d="M1.328,108.484V96H0v13.813H13.813v-1.328H1.328Z" transform="translate(0 -92.813)" /><path d="M205.47,132.868l3.913-3.913v2.816h1.328v-5.083h-5.083v1.328h2.815l-3.913,3.913Z" transform="translate(-197.74 -122.481)" /></svg>');
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.l-editor .wp-block-button__link[href$=".pdf"]::before {
  border: none;
  background-color: #fff;
  width: 1.3rem;
  height: 1.6rem;
  -webkit-transform: translateY(15%);
          transform: translateY(15%);
  -webkit-mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 12.608 16"><path d="M1.8,1.8h9.009v9.7h-2.7v2.68H1.8ZM0,0V16H9.116l3.492-3.492V0Z" /></svg>');
          mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 12.608 16"><path d="M1.8,1.8h9.009v9.7h-2.7v2.68H1.8ZM0,0V16H9.116l3.492-3.492V0Z" /></svg>');
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.l-editor .wp-block-button__link:hover {
  opacity: 1;
  background-color: #fff;
  border: 0.1rem solid #D24F35;
  color: #000000;
  text-decoration: none;
}
.l-editor .wp-block-button__link:hover::before {
  border-color: #D24F35;
}
.l-editor .wp-block-button__link:hover[target=_blank]::before, .l-editor .wp-block-button__link:hover[href$=".pdf"]::before {
  background-color: #D24F35;
}
.l-editor .wp-block-button.is-style-outline > .wp-block-button__link {
  border: 0.1rem solid #D24F35;
  padding: 0.5ex 1.5em;
  background-color: #fff;
}
.l-editor .wp-block-button.is-style-outline > .wp-block-button__link[href$=".pdf"]::before {
  content: "";
  background-color: #D24F35;
}
.l-editor .wp-block-button.is-style-outline > .wp-block-button__link:hover {
  background-color: #D24F35;
  color: #fff;
}
.l-editor .wp-block-button.is-style-outline > .wp-block-button__link:hover[href$=".pdf"]::before {
  content: "";
  background-color: #fff;
}
.l-editor .wp-block-gallery.has-nested-images figure.wp-block-image {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
.l-editor .wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
  background: none;
  position: static;
  max-height: none;
  color: #1C1E20;
  margin-bottom: 1em;
}
.l-editor .has-black-color {
  color: #000;
}
.l-editor .has-gray-color {
  color: #707070;
}
.l-editor .has-beige-color {
  color: #D6D1CD;
}
.l-editor .has-red-color {
  color: #D24F35;
}
.l-editor .has-yellow-color {
  color: #F0D02D;
}
.l-editor .has-brown-color {
  color: #946435;
}
.l-editor .has-green-color {
  color: #98CB81;
}
.l-editor .has-black-background-color {
  background-color: #000;
}
.l-editor .has-gray-background-color {
  background-color: #707070;
}
.l-editor .has-beige-background-color {
  background-color: #D6D1CD;
}
.l-editor .has-red-background-color {
  background-color: #D24F35;
}
.l-editor .has-yellow-background-color {
  background-color: #F0D02D;
}
.l-editor .has-brown-background-color {
  background-color: #946435;
}
.l-editor .has-green-background-color {
  background-color: #98CB81;
}
.l-editor .image-button {
  position: relative;
  height: 20rem;
}
.l-editor .image-button.wp-block-image > a {
  width: 100%;
}
.l-editor .image-button img {
  width: 100% !important;
  height: 20rem !important;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-editor .image-button figcaption {
  position: absolute;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  bottom: 0;
  left: 0;
  padding: 1rem;
  width: 100%;
  text-align: center;
  margin: 0;
  pointer-events: none;
}
.l-editor .image-button figcaption::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  bottom: 50%;
  display: inline-block;
  width: 0.47em;
  height: 0.47em;
  border-top: 0.2rem solid #fff;
  border-right: 0.2rem solid #fff;
  -webkit-transform: translateY(0.4rem) rotate(45deg);
          transform: translateY(0.4rem) rotate(45deg);
  pointer-events: none;
}
.l-editor ul.kome-list li {
  position: relative;
}
.l-editor ul.kome-list li::before {
  content: "※";
  display: inline-block;
  width: auto;
  height: auto;
  border-radius: 0;
  background-color: transparent;
  top: 0;
  left: -1.5em;
}
.l-editor .pamph {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}
.l-editor .pamph img {
  border: 0.1rem solid #D6D1CD;
}
.l-editor .pamph .wp-block-button__link {
  width: 26rem;
}
.l-editor .ng strong {
  color: #D24F35;
}
.l-editor .googlemap {
  width: 100%;
  height: 32.5rem;
  margin: 0;
  display: block;
}
.l-editor .googlemap:not(:first-child) {
  margin-top: 6.2ex;
}
.l-editor .googlemap:not(:last-child) {
  margin-bottom: 6.2ex;
}
.l-editor .aligncont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}/*# sourceMappingURL=styles.css.map */