@charset "UTF-8";
/*-------------------------------------------------------------------------------
  media query
--------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------
  font setting
--------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------
  color setting
--------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------
  space setting
--------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------
  border setting
--------------------------------------------------------------------------------*/
/**
 * メディアクエリ
 *
 * @param {number} $size 画面サイズ
 * @param {string} $width max or min
 * @param {string} $orientation デバイスの向き portrait or landscape
 */
/**
 * 単位を除いた数値を返す
 *
 * @param {number} $value 単位あり数値
 * @return {number} 単位なし数値
 * @example strip-unit(16px) => 16
 *          strip-unit(1rem) => 1
 */
/**
 * pxをremで返す
 *
 * @param {number} $number pxサイズ
 * @return {number} 単位ありremサイズ
 * @example $root-font-size : 16px の場合
 *          rem(10) 10px => 0.625rem
 */
/**
 * clampを使用した可変サイズ指定関数
 *
 * @param {number} $min-size 最小サイズpx
 * @param {number} $max-size 最大サイズpx
 * @param {number} $min-viewport-px 最小ビューポートpx
 * @param {number} $max-viewport-px 最大ビューポートpx
 * @return {string} clamp
 * @example fluid(16, 32) => clamp(1rem, 1.67vw + 0.667rem, 2rem)
 *           320pxから1280pxの間で16pxから32pxまでサイズが変わる
 *          fluid(10px, 18px, 480px, 1024px) => clamp(0.625rem, 1.47vw + 0.184rem, 1.125rem)
 *           480pxから1024pxの間で10pxから18pxまでサイズが変わる
 */
/**
 * フォントサイズ
 *
 * @param {number} $pixel フォントサイズ、px基準で指定
 */
/**
 * 可変フォントサイズ
 *
 * @param {number} $min-px 最小サイズpx
 * @param {number} $max-px 最大サイズpx
 * @param {number} $min-viewport-px 最小ビューポートpx
 * @param {number} $max-viewport-px 最大ビューポートpx
 */
/**
 * トランジション
 *
 * @param {number} $time トランジションの時間
 * @param {string} $easing イージングの指定
 */
/**
 * 疑似要素を使用したアイコンフォント
 *
 * @param {string} $code アイコンコード
 * @param {number} $size フォントサイズ
 * @param {number} $weight フォントウェイト
 * @param {string} $color フォントカラー
 * @param {string} $family フォントファミリー Material Symbols Outlined or Font Awesome 6 Pro
 */
/**
 * スクロールバー
 *
 * @param {number} $width 横幅
 * @param {number} $track-color トラックの色
 * @param {number} $thumb-color スクロールバーの色
 */
/**
 * ドロップシャドウ
 */
/*-------------------------------------------------------------------------------
  FontControl
--------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------
  arrow_icon
--------------------------------------------------------------------------------*/
/**
 * サービス案内　背景色
 */
/**
 * サービス案内　アイコン
 */
/*-------------------------------------------------------------------------------
  form 設定
--------------------------------------------------------------------------------*/
.contact_form_unit {
  /* 全体の余白変数 */
  --space-size: 10px;
  --head-width: 250px;
  /* ラジオボタン変数 */
  --radio-outer: 20px;
  --radio-inner: 10px;
  /* チェックボックス変数 */
  --checkbox-outer: 20px;
  --checkbox-inner: 10px;
  /* スクロールバー変数 */
  --scroll-width: 5px;
  --track-color: #ffffff;
  --thumb-color: #00b0f0;
  padding-top: calc(var(--space-size) * 6);
  /* テーブル・リスト */
  /* プライバシーポリシー */
  /* 送信ボタン */
  /* ハニーポット非表示 */
  /* エラーメッセージの指定 */
  /* エラー時の背景色 */
  /* 確認画面 */
  /* 送信完了画面 */
}
.contact_form_unit table {
  border-collapse: separate;
  border-spacing: 0 var(--space-size);
}
.contact_form_unit dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: var(--space-size);
}
.contact_form_unit dl dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: var(--space-size) 0;
}
.contact_form_unit tr th, .contact_form_unit tr dt, .contact_form_unit dl th, .contact_form_unit dl dt {
  width: var(--head-width);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: calc(var(--space-size) * 2);
}
.contact_form_unit tr th .item_label_required, .contact_form_unit tr dt .item_label_required, .contact_form_unit dl th .item_label_required, .contact_form_unit dl dt .item_label_required {
  padding: 0.1em 0.5em;
  color: #ffffff;
  background-color: #00b0f0;
  border-radius: 5px;
}
.contact_form_unit tr th .item_label_required > span, .contact_form_unit tr dt .item_label_required > span, .contact_form_unit dl th .item_label_required > span, .contact_form_unit dl dt .item_label_required > span {
  display: block;
  font-size: 0.8rem;
}
.contact_form_unit tr td, .contact_form_unit tr dd, .contact_form_unit dl td, .contact_form_unit dl dd {
  width: 100%;
  /* セレクトボックス */
  /* テキストエリア */
  /* ラジオボタン */
  /* チェックボックス */
  /* ファイルアップロード */
}
@media (max-width: 768px) {
  .contact_form_unit tr td, .contact_form_unit tr dd, .contact_form_unit dl td, .contact_form_unit dl dd {
    display: block;
    margin-top: var(--space-size);
  }
}
.contact_form_unit tr td > input,
.contact_form_unit tr td > select,
.contact_form_unit tr td > textarea, .contact_form_unit tr dd > input,
.contact_form_unit tr dd > select,
.contact_form_unit tr dd > textarea, .contact_form_unit dl td > input,
.contact_form_unit dl td > select,
.contact_form_unit dl td > textarea, .contact_form_unit dl dd > input,
.contact_form_unit dl dd > select,
.contact_form_unit dl dd > textarea {
  padding: var(--space-size) calc(var(--space-size) * 2);
  background-color: #f3f3f3;
  border-radius: 5px;
}
.contact_form_unit tr td:has(select), .contact_form_unit tr dd:has(select), .contact_form_unit dl td:has(select), .contact_form_unit dl dd:has(select) {
  position: relative;
}
.contact_form_unit tr td:has(select)::before, .contact_form_unit tr dd:has(select)::before, .contact_form_unit dl td:has(select)::before, .contact_form_unit dl dd:has(select)::before {
  content: "▼";
  position: absolute;
  top: 50%;
  right: calc(var(--space-size) * 2);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.contact_form_unit tr td textarea, .contact_form_unit tr dd textarea, .contact_form_unit dl td textarea, .contact_form_unit dl dd textarea {
  height: 200px;
  display: block;
}
.contact_form_unit tr td .radio_list > li label input[type=radio], .contact_form_unit tr dd .radio_list > li label input[type=radio], .contact_form_unit dl td .radio_list > li label input[type=radio], .contact_form_unit dl dd .radio_list > li label input[type=radio] {
  display: none;
}
.contact_form_unit tr td .radio_list > li label input[type=radio] + .radio_text, .contact_form_unit tr dd .radio_list > li label input[type=radio] + .radio_text, .contact_form_unit dl td .radio_list > li label input[type=radio] + .radio_text, .contact_form_unit dl dd .radio_list > li label input[type=radio] + .radio_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--space-size);
  position: relative;
}
.contact_form_unit tr td .radio_list > li label input[type=radio] + .radio_text::before, .contact_form_unit tr dd .radio_list > li label input[type=radio] + .radio_text::before, .contact_form_unit dl td .radio_list > li label input[type=radio] + .radio_text::before, .contact_form_unit dl dd .radio_list > li label input[type=radio] + .radio_text::before {
  content: "";
  width: var(--radio-outer);
  aspect-ratio: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid #777777;
}
.contact_form_unit tr td .radio_list > li label input[type=radio] + .radio_text::after, .contact_form_unit tr dd .radio_list > li label input[type=radio] + .radio_text::after, .contact_form_unit dl td .radio_list > li label input[type=radio] + .radio_text::after, .contact_form_unit dl dd .radio_list > li label input[type=radio] + .radio_text::after {
  content: "";
  width: var(--radio-inner);
  aspect-ratio: 1;
  border-radius: 50%;
  position: absolute;
  left: calc((var(--radio-outer) - var(--radio-inner)) / 2);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.contact_form_unit tr td .radio_list > li label input[type=radio]:checked + span::after, .contact_form_unit tr dd .radio_list > li label input[type=radio]:checked + span::after, .contact_form_unit dl td .radio_list > li label input[type=radio]:checked + span::after, .contact_form_unit dl dd .radio_list > li label input[type=radio]:checked + span::after {
  background-color: #777777;
}
.contact_form_unit tr td .check_list > li .label_checkbox .check_text, .contact_form_unit tr dd .check_list > li .label_checkbox .check_text, .contact_form_unit dl td .check_list > li .label_checkbox .check_text, .contact_form_unit dl dd .check_list > li .label_checkbox .check_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--space-size);
  position: relative;
}
.contact_form_unit tr td .check_list > li .label_checkbox .check_text::before, .contact_form_unit tr dd .check_list > li .label_checkbox .check_text::before, .contact_form_unit dl td .check_list > li .label_checkbox .check_text::before, .contact_form_unit dl dd .check_list > li .label_checkbox .check_text::before {
  content: "";
  width: var(--checkbox-outer);
  aspect-ratio: 1;
  border: 1px solid #777777;
}
.contact_form_unit tr td .check_list > li .label_checkbox .check_text::after, .contact_form_unit tr dd .check_list > li .label_checkbox .check_text::after, .contact_form_unit dl td .check_list > li .label_checkbox .check_text::after, .contact_form_unit dl dd .check_list > li .label_checkbox .check_text::after {
  content: "";
  width: var(--checkbox-inner);
  aspect-ratio: 1;
  position: absolute;
  top: calc(50% - var(--checkbox-inner) / 2);
  left: calc((var(--checkbox-outer) - var(--checkbox-inner)) / 2);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.contact_form_unit tr td .check_list > li .label_checkbox .check_text.checked::after, .contact_form_unit tr dd .check_list > li .label_checkbox .check_text.checked::after, .contact_form_unit dl td .check_list > li .label_checkbox .check_text.checked::after, .contact_form_unit dl dd .check_list > li .label_checkbox .check_text.checked::after {
  background: #777777;
}
.contact_form_unit tr td .uploaded_file p span, .contact_form_unit tr dd .uploaded_file p span, .contact_form_unit dl td .uploaded_file p span, .contact_form_unit dl dd .uploaded_file p span {
  font-size: 0.8rem;
  margin-left: 0.5rem;
}
.contact_form_unit .form_privacy_unit {
  margin-top: calc(var(--space-size) * 3);
  /* プライバシーポリシー同意 checkbox */
}
.contact_form_unit .form_privacy_unit .form_privacy_block {
  padding: calc(var(--space-size) * 3);
  background-color: #f3f3f3;
  border-radius: 5px;
}
.contact_form_unit .form_privacy_unit .form_privacy_block .form_privacy_ttl {
  font-weight: bold;
}
.contact_form_unit .form_privacy_unit .form_privacy_block .form_privacy_item {
  height: 200px;
  margin-top: calc(var(--space-size) * 2);
  overflow-y: scroll;
}
.contact_form_unit .form_privacy_unit .form_privacy_block .form_privacy_item::-webkit-scrollbar {
  width: var(--scroll-width);
}
.contact_form_unit .form_privacy_unit .form_privacy_block .form_privacy_item::-webkit-scrollbar-track {
  background: var(--track-color);
}
.contact_form_unit .form_privacy_unit .form_privacy_block .form_privacy_item::-webkit-scrollbar-thumb {
  background: var(--thumb-color);
}
.contact_form_unit .form_privacy_unit .form_privacy_block .form_privacy_item .privacy_text {
  padding-right: calc(var(--space-size) * 2);
}
.contact_form_unit .form_privacy_unit .form_privacy_block .form_privacy_item .privacy_text + .privacy_text {
  margin-top: 1em;
}
.contact_form_unit .form_privacy_unit .form_privacy_block .form_privacy_item .privacy_text .highlight {
  display: block;
  font-weight: bold;
}
.contact_form_unit .form_privacy_unit .form_privacy_check {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: calc(var(--space-size) * 2) auto 0;
}
.contact_form_unit .form_privacy_unit .form_privacy_check .label_checkbox .check_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--space-size);
  position: relative;
}
.contact_form_unit .form_privacy_unit .form_privacy_check .label_checkbox .check_text::before {
  content: "";
  width: var(--checkbox-outer);
  aspect-ratio: 1;
  border: 1px solid #777777;
}
.contact_form_unit .form_privacy_unit .form_privacy_check .label_checkbox .check_text::after {
  content: "";
  width: var(--checkbox-inner);
  aspect-ratio: 1;
  position: absolute;
  top: calc(50% - var(--checkbox-inner) / 2);
  left: calc((var(--checkbox-outer) - var(--checkbox-inner)) / 2);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.contact_form_unit .form_privacy_unit .form_privacy_check .label_checkbox .check_text.checked::after {
  background: #777777;
}
.contact_form_unit .form_privacy_unit .form_privacy_check .policy_error {
  text-align: center;
}
.contact_form_unit .form_actions {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: calc(var(--space-size) * 10);
  margin: calc(var(--space-size) * 4) auto 0;
}
@media (max-width: 768px) {
  .contact_form_unit .form_actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(var(--space-size) * 2);
  }
}
.contact_form_unit .form_actions .btn_contact_submit.disable > span {
  display: block;
  color: #e75b74;
}
.contact_form_unit input[name=mail_confirm] {
  display: none;
}
.contact_form_unit .item_error_list,
.contact_form_unit .policy_error {
  margin-top: 0.2rem;
  font-size: 0.8rem;
  color: #e75b74;
}
.contact_form_unit.form_input .has_error {
  background-color: rgba(231, 91, 116, 0.1);
}
.contact_form_unit.form_confirm table {
  border-spacing: 0 calc(var(--space-size) * 4);
}
.contact_form_unit.form_confirm dl {
  margin-top: calc(var(--space-size) * 4);
}
.contact_form_unit.form_thanks h3 {
  font-size: 22.5px;
  font-size: 1.25rem;
}
.contact_form_unit.form_thanks p {
  margin-top: calc(var(--space-size) * 3);
}

/*-------------------------------------------------------------------------------
  loading item
--------------------------------------------------------------------------------*/
body .loading_mask {
  width: 100%;
  height: 100%;
  background: #00b0f0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  /**
   * js の読み込みに失敗した時に .loading_mask を消す
   * ローディングアニメーションが長い場合は競合しないように注意が必要
   */
  -webkit-animation-name: noScriptLoading;
          animation-name: noScriptLoading;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes noScriptLoading {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes noScriptLoading {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
/*-------------------------------------------------------------------------------
  modal image
--------------------------------------------------------------------------------*/
.modal-wrapper {
  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;
}
.modal-wrapper .modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1000;
}
.modal-wrapper .modal-close > span {
  display: block;
  font-size: clamp(1.6666666667rem, 1.3661202186vw + 1.0837887067rem, 2.2222222222rem);
  color: #ffffff;
}
.modal-wrapper .modal-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}
.modal-wrapper .modal-inner .modal-item .modal-img,
.modal-wrapper .modal-inner .modal-item .modal-iframe {
  max-width: 90vw;
  max-height: 90vh;
  vertical-align: bottom;
}
@media (max-width: 768px) {
  .modal-wrapper .modal-inner .modal-item .modal-img,
  .modal-wrapper .modal-inner .modal-item .modal-iframe {
    max-width: 100vmin;
  }
}
.modal-wrapper .modal-inner .modal-gallery {
  width: 100%;
}
.modal-wrapper .modal-inner .modal-gallery .modal-btns {
  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: 20px;
  /* ← が表示されてないときに真ん中に表示したい用 */
  /* → が表示されてないときに真ん中に表示したい用 */
}
.modal-wrapper .modal-inner .modal-gallery .modal-btns .modal-count > span,
.modal-wrapper .modal-inner .modal-gallery .modal-btns .modal-prev > span,
.modal-wrapper .modal-inner .modal-gallery .modal-btns .modal-next > span {
  display: block;
  font-size: clamp(0.8888888889rem, 0.5464480874vw + 0.6557377049rem, 1.1111111111rem);
  letter-spacing: 0.4em;
  margin-right: -0.4em;
  color: #ffffff;
}
.modal-wrapper button:focus {
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5), -2px 0 15px rgba(236, 119, 171, 0.2), 2px 0 15px rgba(0, 176, 240, 0.5);
}

/*-------------------------------------------------------------------------------
  一覧ページのページャ
--------------------------------------------------------------------------------*/
.pagination_unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.pagination_unit .pagination_prev button.hidden, .pagination_unit .pagination_next button.hidden {
  visibility: hidden;
}

.pagination_btns_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.pagination_btns_list li.current {
  pointer-events: none;
}

/*-------------------------------------------------------------------------------
  詳細ページのページャ
--------------------------------------------------------------------------------*/
.single-pager_unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/*!
 * ress.css v1.0.0
 * MIT License
 * top_original reset
 */
/* # =================================================================
   # Global selectors
   # ================================================================= */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-y: scroll; /* All browsers without overlaying scrollbars */
  -webkit-text-size-adjust: 100%; /* iOS 8+ */
}

*,
::before,
::after {
  background-repeat: no-repeat; /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

::before,
::after {
  text-decoration: inherit; /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

* {
  padding: 0; /* Reset `padding` and `margin` of all elements */
  margin: 0;
}
*:focus {
  outline: none;
}

/* # =================================================================
   # General elements
   # ================================================================= */
/* Add the correct display in iOS 4-7.*/
audio:not([controls]) {
  display: none;
  height: 0;
}

hr {
  overflow: visible; /* Show the overflow in Edge and IE */
}

/*
* Correct `block` display not defined for any HTML5 element in IE 8/9
* Correct `block` display not defined for `details` or `summary` in IE 10/11
* and Firefox
* Correct `block` display not defined for `main` in IE 11
*/
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

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

ul {
  list-style: none;
}

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

td,
th {
  padding: 0;
  font-weight: normal;
  text-align: left;
}

summary {
  display: list-item; /* Add the correct display in all browsers */
}

small {
  font-size: 80%; /* Set font-size to 80% in `small` elements */
}

[hidden],
template {
  display: none; /* Add the correct display in IE */
}

abbr[title] {
  border-bottom: 1px dotted; /* Add a bordered underline effect in all browsers */
  text-decoration: none; /* Remove text decoration in Firefox 40+ */
}

a {
  background-color: transparent; /* Remove the gray background on active links in IE 10 */
  -webkit-text-decoration-skip: objects; /* Remove gaps in links underline in iOS 8+ and Safari 8+ */
}

a:active,
a:hover {
  outline-width: 0; /* Remove the outline when hovering in all browsers */
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace; /* Specify the font family of code elements */
}

b,
strong {
  font-weight: bolder; /* Correct style set to `bold` in Edge 12+, Safari 6.2+, and Chrome 18+ */
}

dfn {
  font-style: italic; /* Address styling not present in Safari and Chrome */
}

/* Address styling not present in IE 8/9 */
mark {
  background-color: #ff0;
  color: #000;
}

/* https://gist.github.com/unruthless/413930 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* # =================================================================
   # Forms
   # ================================================================= */
input {
  border-radius: 0;
}

/* Apply cursor pointer to button elements */
button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  cursor: pointer;
}

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

[type=number] {
  width: auto; /* Firefox 36+ */
}

[type=search] {
  -webkit-appearance: textfield; /* Safari 8+ */
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none; /* Safari 8 */
}

textarea {
  overflow: auto; /* Internet Explorer 11+ */
  resize: vertical; /* Specify textarea resizability */
}

button,
input,
optgroup,
select,
textarea {
  font: inherit; /* Specify font inheritance of form elements */
  margin: 0;
}

optgroup {
  font-weight: bold; /* Restore the font weight unset by the previous rule. */
}

button {
  overflow: visible; /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

/* Remove inner padding and border in Firefox 4+ */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: 0;
  padding: 0;
}

/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* Correct the inability to style clickable types in iOS */
}

button,
select {
  text-transform: none; /* Firefox 40+, Internet Explorer 11- */
}

/* Remove the default button styling in all browsers */
button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
  color: inherit;
}

/* Style select like a standard input */
select {
  -moz-appearance: none; /* Firefox 36+ */
  -webkit-appearance: none; /* Chrome 41+ */
}

select::-ms-expand {
  display: none; /* Internet Explorer 11+ */
}

select::-ms-value {
  color: currentColor; /* Internet Explorer 11+ */
}

legend {
  border: 0; /* Correct `color` not being inherited in IE 8/9/10/11 */
  color: inherit; /* Correct the color inheritance from `fieldset` elements in IE */
  display: table; /* Correct the text wrapping in Edge and IE */
  max-width: 100%; /* Correct the text wrapping in Edge and IE */
  white-space: normal; /* Correct the text wrapping in Edge and IE */
}

::-webkit-file-upload-button {
  -webkit-appearance: button; /* Correct the inability to style clickable types in iOS and Safari */
  font: inherit; /* Change font properties to `inherit` in Chrome and Safari */
}

[type=search] {
  -webkit-appearance: textfield; /* Correct the odd appearance in Chrome and Safari */
  outline-offset: -2px; /* Correct the outline style in Safari */
}

/* # =================================================================
   # Specify media element style
   # ================================================================= */
img, .main_contents > p > img {
  border-style: none; /* Remove border when inside `a` element in IE 8/9/10 */
}

/* Add the correct vertical alignment in Chrome, Firefox, and Opera */
progress {
  vertical-align: baseline;
}

svg:not(:root) {
  overflow: hidden; /* Internet Explorer 11- */
}

audio,
canvas,
progress,
video {
  display: inline-block; /* Internet Explorer 11+, Windows Phone 8.1+ */
}

iframe {
  border: 0;
}

/* # =================================================================
   # Accessibility
   # ================================================================= */
/* Hide content from screens but not screenreaders */
@media screen {
  [hidden~=screen] {
    display: inherit;
  }
  [hidden~=screen]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}
/* Specify the progress cursor of updating elements */
[aria-busy=true] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled] {
  cursor: default;
}

/* # =================================================================
   # Selection
   # ================================================================= */
/* Specify text selection background color and omit drop shadow */
::-moz-selection {
  background-color: #b3d4fc; /* Required when declaring ::selection */
  color: #000;
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc; /* Required when declaring ::selection */
  color: #000;
  text-shadow: none;
}

/*-------------------------------------------------------------------------------
  default style
--------------------------------------------------------------------------------*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-break: break-all;
}

html {
  font-size: 112.5%;
}

/*-------------------------------------------------------------------------------
  body global
--------------------------------------------------------------------------------*/
body {
  font-size: 15px;
  font-size: 0.8333333333rem;
  color: #1a1a1a;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  line-height: 200%;
  background: #ffffff;
  overflow-x: hidden;
}

/*-------------------------------------------------------------------------------
  img global
--------------------------------------------------------------------------------*/
img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*-------------------------------------------------------------------------------
  link global
--------------------------------------------------------------------------------*/
a {
  color: #00b0f0;
  text-decoration: none;
}
@media (min-width: 769px) {
  a {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
a[href], a[data-href] {
  cursor: pointer;
}

/*-------------------------------------------------------------------------------
  table global
--------------------------------------------------------------------------------*/
table {
  width: 100%;
}
table th {
  font-weight: bold;
  vertical-align: text-top;
}
table th,
table td {
  text-align: left;
}

/*-------------------------------------------------------------------------------
  text global
--------------------------------------------------------------------------------*/
strong,
b {
  font-weight: bold;
}

em {
  font-style: italic;
}

/*-------------------------------------------------------------------------------
  input global
--------------------------------------------------------------------------------*/
input[type=text],
input[type=tel],
input[type=email],
input[type=url],
input[type=search],
input[type=password],
input[type=number],
input[type=file],
input[type=date],
textarea {
  width: 100%;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
input[type=text]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=url]::-webkit-input-placeholder, input[type=search]::-webkit-input-placeholder, input[type=password]::-webkit-input-placeholder, input[type=number]::-webkit-input-placeholder, input[type=file]::-webkit-input-placeholder, input[type=date]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #d5d5d5;
}
input[type=text]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=url]::-moz-placeholder, input[type=search]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=file]::-moz-placeholder, input[type=date]::-moz-placeholder, textarea::-moz-placeholder {
  color: #d5d5d5;
}
input[type=text]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=url]:-ms-input-placeholder, input[type=search]:-ms-input-placeholder, input[type=password]:-ms-input-placeholder, input[type=number]:-ms-input-placeholder, input[type=file]:-ms-input-placeholder, input[type=date]:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #d5d5d5;
}
input[type=text]::-ms-input-placeholder, input[type=tel]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, input[type=url]::-ms-input-placeholder, input[type=search]::-ms-input-placeholder, input[type=password]::-ms-input-placeholder, input[type=number]::-ms-input-placeholder, input[type=file]::-ms-input-placeholder, input[type=date]::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #d5d5d5;
}
input[type=text]::placeholder,
input[type=tel]::placeholder,
input[type=email]::placeholder,
input[type=url]::placeholder,
input[type=search]::placeholder,
input[type=password]::placeholder,
input[type=number]::placeholder,
input[type=file]::placeholder,
input[type=date]::placeholder,
textarea::placeholder {
  color: #d5d5d5;
}

select,
label {
  width: 100%;
  cursor: pointer;
}

/*-------------------------------------------------------------------------------
  input button global
--------------------------------------------------------------------------------*/
input[type=submit],
input[type=reset],
input[type=button],
button {
  cursor: pointer;
}
@media (min-width: 769px) {
  input[type=submit],
  input[type=reset],
  input[type=button],
  button {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}

/*-------------------------------------------------------------------------------
  cmn
--------------------------------------------------------------------------------*/
/*------------- title -------------*/
.cmn_title_01, .main_contents > h2 {
  width: 100%;
  position: relative;
  padding: 0 20px;
  margin-bottom: clamp(1.1111111111rem, 2.7816411683vw + 0.3693401329rem, 2.2222222222rem);
  font-weight: 700;
  letter-spacing: calc(100 * 0.001em);
  line-height: 1.2;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: clamp(1.1111111111rem, 0.5563282337vw + 0.9627569155rem, 1.3333333333rem);
  background: url(../images/title_bg.png);
  color: #805511;
}
.cmn_title_01::before, .main_contents > h2::before {
  position: absolute;
  content: "";
  top: -18px;
  left: 0;
  width: 100%;
  height: 18px;
  background: url(../images/title_up.png);
}
.cmn_title_01::after, .main_contents > h2::after {
  position: absolute;
  content: "";
  bottom: -12px;
  left: 0;
  width: 100%;
  height: 12px;
  background: url(../images/title_down.png);
}

.cmn_title_02, .main_contents > h3 {
  width: 100%;
  position: relative;
  padding: 0 20px;
  font-weight: 700;
  letter-spacing: calc(100 * 0.001em);
  line-height: 1.5;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: clamp(0.8888888889rem, 0.8344923505vw + 0.6663575954rem, 1.2222222222rem);
  color: #507c09;
  padding-left: 43px;
  margin-bottom: 30px;
}
.cmn_title_02::before, .main_contents > h3::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 37px;
  aspect-ratio: 37/33;
  background: url(../images/sttl_before.png);
}
.cmn_title_02::after, .main_contents > h3::after {
  position: absolute;
  content: "";
  bottom: -12px;
  left: 30px;
  width: calc(100% - 30px);
  height: 12px;
  background: url(../images/sttl_down.png);
}

.cmn_title_03, .main_contents > h4 {
  position: relative;
  color: #507c09;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: calc(100 * 0.001em);
  line-height: 1.2;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: clamp(0.8333333333rem, 0.6954102921vw + 0.6478905888rem, 1.1111111111rem);
}
.cmn_title_03::before, .main_contents > h4::before {
  content: "■";
  margin-right: 3px;
}

/*------------- blockquote -------------*/
.cmn_blockquote {
  border: clamp(0.1666666667rem, 0.1390820584vw + 0.1295781178rem, 0.2222222222rem) solid #ebd1ac;
  padding: clamp(1.1111111111rem, 0.6954102921vw + 0.9256683666rem, 1.3888888889rem) clamp(0.8333333333rem, 0.6954102921vw + 0.6478905888rem, 1.1111111111rem);
  border-radius: clamp(0.2777777778rem, 0.6954102921vw + 0.0923350332rem, 0.5555555556rem);
  margin: clamp(1.6666666667rem, 1.3908205841vw + 1.2957811776rem, 2.2222222222rem) auto;
  width: min(100%, clamp(27.7777777778rem, 13.9082058414vw + 24.0689228867rem, 33.3333333333rem));
}
.cmn_blockquote p {
  font-weight: 400;
  letter-spacing: calc(50 * 0.001em);
  line-height: 1.5;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: clamp(0.7222222222rem, 0.1390820584vw + 0.6851336733rem, 0.7777777778rem);
  margin-bottom: clamp(0.5555555556rem, 0.6954102921vw + 0.370112811rem, 0.8333333333rem);
  text-align: center;
}

/*------------- btn -------------*/
/*---------- sp link tel --------*/
a[href=""] {
  pointer-events: none;
}
a[href^="tel:"] {
  cursor: default;
  pointer-events: none;
}
@media (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

/*---------- 基本コンテナ --------*/
:root {
  --wrapper_width: 1440px;
  --scroll-bar_width: 0px;
  --space_width: ;
}

.md_wrapper {
  --wrapper_width: 1300px;
}

.wrapper {
  width: 100%;
  max-width: calc(var(--wrapper_width) + 10vw);
  margin: 0 auto;
  padding: 0 5vw;
}
@media (max-width: 768px) {
  .wrapper {
    padding: 0 5vw;
  }
}

/*---------- aタグ処理 --------*/
a {
  display: block;
  cursor: pointer;
}

/*---------- ページ内リンクコントロール --------*/
.control_wrapper {
  padding-top: 90px;
  margin-top: -90px;
}

/*---------- boxer --------*/
.boxer {
  width: 100%;
  height: 100%;
  overflow: hidden;
  vertical-align: top;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.boxer img, .boxer .main_contents > p > img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.boxer + .boxer {
  display: none;
}
@media (min-width: 769px) {
  .boxer:hover {
    opacity: 1;
  }
  .boxer:hover img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
@media (min-width: 769px) and (max-width: 768px) {
  .boxer:hover img {
    -webkit-transform: none;
            transform: none;
  }
}

/*-------------------------------------------------------------------------------
  管理画面スタイル
--------------------------------------------------------------------------------*/
.main_contents {
  font-size: clamp(0.7777777778rem, 0.1390820584vw + 0.7406892289rem, 0.8333333333rem);
}
.main_contents > a {
  color: #467002;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
}
.main_contents > a:hover {
  color: rgba(70, 112, 2, 0.6);
}
.main_contents > h2:not(:first-child) {
  margin-top: clamp(3.3333333333rem, 5.5632823366vw + 1.8497913769rem, 5.5555555556rem);
}
.main_contents > ul > li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: clamp(0.7777777778rem, 0.1390820584vw + 0.7406892289rem, 0.8333333333rem);
  padding-bottom: 2px;
}
.main_contents > ul > li::before {
  content: "・";
}
.main_contents > ol {
  counter-reset: number 0;
}
.main_contents > ol > li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: clamp(0.7777777778rem, 0.1390820584vw + 0.7406892289rem, 0.8333333333rem);
  padding-bottom: 2px;
}
.main_contents > ol > li::before {
  counter-increment: number 1;
  content: counter(number) ".";
  padding-right: 5px;
}
.main_contents > blockquote {
  width: 100%;
  background: #ececec;
  padding: 20px 30px;
}
.main_contents img, .main_contents > p > img {
  display: block;
  max-width: 100%;
  width: min(100%, clamp(22.2222222222rem, 41.7246175243vw + 11.0956575491rem, 38.8888888889rem));
  height: auto;
  margin: 0 auto;
  text-align: center;
}
p + p .main_contents img {
  margin: clamp(1.6666666667rem, 1.3908205841vw + 1.2957811776rem, 2.2222222222rem) auto;
}
.main_contents > p + p {
  margin-top: clamp(0.8333333333rem, 2.0862308762vw + 0.2770050997rem, 1.6666666667rem);
}

/*-------------------------------------------------------------------------------
  current
--------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------
  mainimg
--------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------
  index
--------------------------------------------------------------------------------*/
.index_main_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: clamp(1.6666666667rem, 2.7816411683vw + 0.9248956885rem, 2.7777777778rem);
}
@media (max-width: 768px) {
  .index_main_block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.index_main_txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: clamp(0.5555555556rem, 0.6954102921vw + 0.370112811rem, 0.8333333333rem);
  margin-right: clamp(1.1111111111rem, 1.3908205841vw + 0.740225622rem, 1.6666666667rem);
  font-weight: 400;
  letter-spacing: calc(50 * 0.001em);
  line-height: 1.5;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: clamp(0.7777777778rem, 0.1390820584vw + 0.7406892289rem, 0.8333333333rem);
}

.index_main_img {
  width: clamp(10.7777777778rem, 2.7816411683vw + 10.0360067996rem, 11.8888888889rem);
  aspect-ratio: 214/173;
  overflow: hidden;
}
.index_main_img img, .index_main_img .main_contents > p > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .index_main_img {
    width: 100%;
    width: min(100%, clamp(15.5555555556rem, 25.0347705146vw + 8.8796167517rem, 25.5555555556rem));
    margin: clamp(0.5555555556rem, 0.6954102921vw + 0.370112811rem, 0.8333333333rem) auto 0;
  }
}

.index_news_item {
  margin-bottom: clamp(1.1111111111rem, 1.3908205841vw + 0.740225622rem, 1.6666666667rem);
  padding: clamp(0.5555555556rem, 1.3908205841vw + 0.1846700665rem, 1.1111111111rem) 0;
  border-bottom: dotted 1px #a5a5a5;
}
.index_news_item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #1a1a1a;
  text-decoration: none;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
}
.index_news_item a:hover {
  color: rgba(26, 26, 26, 0.6);
}

.news_date {
  display: inline-block;
  font-weight: 500;
  letter-spacing: calc(100 * 0.001em);
  line-height: 1.2;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: clamp(0.6666666667rem, 0.1390820584vw + 0.6295781178rem, 0.7222222222rem);
  color: #fff;
  background-color: #7ea63d;
  padding: 3px 10px;
  border-radius: 3px;
}

.index_news_title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: clamp(0.8333333333rem, 0.6954102921vw + 0.6478905888rem, 1.1111111111rem);
  font-weight: 500;
  letter-spacing: calc(50 * 0.001em);
  line-height: 1.5;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: clamp(0.7777777778rem, 0.1390820584vw + 0.7406892289rem, 0.8333333333rem);
}

.news_ttl {
  margin: clamp(1.1111111111rem, 1.3908205841vw + 0.740225622rem, 1.6666666667rem) auto clamp(1.6666666667rem, 1.3908205841vw + 1.2957811776rem, 2.2222222222rem);
}

/*-------------------------------------------------------------------------------
  footer
--------------------------------------------------------------------------------*/
.footer {
  position: relative;
  width: 100%;
  background: #507C09;
  padding: clamp(1.6666666667rem, 2.7816411683vw + 0.9248956885rem, 2.7777777778rem) 5vw clamp(1.1111111111rem, 1.3908205841vw + 0.740225622rem, 1.6666666667rem);
}

.ft_nav {
  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;
  row-gap: 10px;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  font-size: 14px;
}
.ft_nav a {
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.3s 0s ease;
  transition: all 0.3s 0s ease;
}
.ft_nav a:hover {
  color: rgba(255, 255, 255, 0.6);
}

.ft_address {
  padding: 20px 0 10px;
  color: #a2b97d;
  text-align: center;
  font-size: clamp(0.7222222222rem, 0.1390820584vw + 0.6851336733rem, 0.7777777778rem);
  font-weight: 500;
  letter-spacing: calc(100 * 0.001em);
  line-height: 1.2;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", sans-serif;
}

.copyright {
  display: block;
}

/* -------------------------------------------------------------------------------
  charge
--------------------------------------------------------------------------------*/
.cancel_wrapper p {
  font-size: clamp(0.7222222222rem, 0.1390820584vw + 0.6851336733rem, 0.7777777778rem);
  font-weight: 400;
  letter-spacing: calc(50 * 0.001em);
  line-height: 1.5;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  text-align: left;
  color: #805511;
}

.cancel_title {
  font-size: clamp(0.8333333333rem, 0.4172461752vw + 0.7220676866rem, 1rem);
  font-weight: 700;
  letter-spacing: calc(100 * 0.001em);
  line-height: 1.2;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  color: #805511;
  margin-bottom: clamp(0.5555555556rem, 0.6954102921vw + 0.370112811rem, 0.8333333333rem);
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-scroll table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
}

/* テーブル */
table#gr {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 20px;
  font-size: clamp(0.7222222222rem, 0.1390820584vw + 0.6851336733rem, 0.7777777778rem);
  font-weight: 500;
  letter-spacing: calc(20 * 0.001em);
  line-height: 1.2;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", sans-serif;
}

table#gr th,
table#gr td {
  padding: 15px;
  border: #d2d2d2 solid 1px;
}

table#gr th {
  text-align: center;
  background-color: #f3f3f3;
  font-size: 13px;
  color: #666666;
  font-weight: bold;
  letter-spacing: 2px;
}

table#gr th.sec_top {
  text-align: center;
  background-color: #ebebeb;
}

table#gr th.sec_top2 {
  text-align: center;
  background-color: #f5f5f5;
}

table#gr th.sec_left {
  text-align: left;
  background-color: #f5f5f5;
}

table#gr td {
  text-align: left;
}

table#gr td.t_center {
  text-align: center;
  letter-spacing: 1px;
}

table#nomal {
  margin: 0;
  padding: 0;
}

table#gr.charge {
  margin-bottom: 8px;
}

table#gr.base {
  margin-bottom: 80px;
}

.precautions_wrapper {
  margin-top: clamp(1.6666666667rem, 2.7816411683vw + 0.9248956885rem, 2.7777777778rem);
}

.precautions_list {
  font-size: clamp(0.7222222222rem, 0.1390820584vw + 0.6851336733rem, 0.7777777778rem);
  font-weight: 400;
  letter-spacing: calc(50 * 0.001em);
  line-height: 1.5;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", sans-serif;
}
.precautions_list li {
  margin-bottom: clamp(0.5555555556rem, 0.6954102921vw + 0.370112811rem, 0.8333333333rem);
  padding-left: 15px;
}
.precautions_list li::before {
  content: "・";
  margin-right: 5px;
  margin-left: -15px;
}

/* -------------------------------------------------------------------------------
  reservation
--------------------------------------------------------------------------------*/
.calendarData {
  white-space: nowrap;
  font-size: clamp(0.8888888889rem, 4.7287899861vw + -0.3721217741rem, 2.7777777778rem);
  font-weight: 700;
  letter-spacing: calc(50 * 0.001em);
  line-height: 1.4;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", sans-serif;
}

/* -------------------------------------------------------------------------------
  contact
--------------------------------------------------------------------------------*/
.phone_wrapper {
  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;
}

.cmn_phone {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: clamp(1.6666666667rem, 2.5034770515vw + 0.9990727863rem, 2.6666666667rem);
  font-weight: 700;
  letter-spacing: calc(25 * 0.001em);
  line-height: 1.2;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  color: #507c09;
  margin: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.cmn_phone::before {
  display: block;
  content: "";
  width: clamp(1.6666666667rem, 1.668984701vw + 1.2216040797rem, 2.3333333333rem);
  -webkit-mask-image: url(../images/phone_icon.svg);
          mask-image: url(../images/phone_icon.svg);
  -webkit-mask-size: clamp(1.6666666667rem, 1.668984701vw + 1.2216040797rem, 2.3333333333rem) auto;
          mask-size: clamp(1.6666666667rem, 1.668984701vw + 1.2216040797rem, 2.3333333333rem) auto;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #507c09;
  margin: clamp(0.1666666667rem, 0.2781641168vw + 0.0924895688rem, 0.2777777778rem) clamp(0.2777777778rem, 0.6954102921vw + 0.0923350332rem, 0.5555555556rem) 0 0;
}

.cmn_hour {
  font-size: clamp(0.8888888889rem, 0.8344923505vw + 0.6663575954rem, 1.2222222222rem);
  font-weight: 700;
  letter-spacing: calc(100 * 0.001em);
  line-height: 1.2;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  color: #2E2E2E;
  text-align: left;
  margin-left: 13%;
}

.contact_privacy {
  padding: clamp(1.1111111111rem, 1.3908205841vw + 0.740225622rem, 1.6666666667rem) clamp(0.8333333333rem, 3.4770514604vw + -0.0938803894rem, 2.2222222222rem);
  background-color: #e8e8e8;
  font-size: clamp(0.7222222222rem, 0.1390820584vw + 0.6851336733rem, 0.7777777778rem);
  font-weight: 400;
  letter-spacing: calc(25 * 0.001em);
  line-height: 1.5;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", sans-serif;
}

.privacy_title {
  font-size: clamp(0.7777777778rem, 0.1390820584vw + 0.7406892289rem, 0.8333333333rem);
  font-weight: 700;
  letter-spacing: calc(100 * 0.001em);
  line-height: 1.2;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  color: #2E2E2E;
  margin-bottom: clamp(0.5555555556rem, 0.6954102921vw + 0.370112811rem, 0.8333333333rem);
}

.form_wrapper {
  margin-top: 0;
  margin-bottom: 150px;
}

.form_unit {
  max-width: 1000px;
}

@media (max-width: 768px) {
  .form_block {
    padding: 0;
  }
}

.form_txt {
  margin-top: 80px;
  text-align: center;
  font-size: clamp(0.8333333333rem, 0.4172461752vw + 0.7220676866rem, 1rem);
  font-weight: 400;
  letter-spacing: calc(50 * 0.001em);
  line-height: 2.3;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", sans-serif;
}
@media (max-width: 768px) {
  .form_txt {
    margin-top: 30px;
    text-align: left;
    padding: 0;
  }
}

.contact-form_unit {
  max-width: calc(1000px + 10vw);
  margin-top: 60px;
  font-size: clamp(0.8333333333rem, 0.4172461752vw + 0.7220676866rem, 1rem);
}
.contact-form_unit dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 768px) {
  .contact-form_unit dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.contact-form_unit dl:not(:first-child) {
  margin-top: clamp(0.8333333333rem, 2.0862308762vw + 0.2770050997rem, 1.6666666667rem);
}
.contact-form_unit dl:last-child {
  margin-top: clamp(1.6666666667rem, 2.7816411683vw + 0.9248956885rem, 2.7777777778rem);
}
.contact-form_unit dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: clamp(11.1111111111rem, 10.3734439834vw + 6.6851083449rem, 13.8888888889rem);
  font-size: clamp(0.7777777778rem, 0.1390820584vw + 0.7406892289rem, 0.8333333333rem);
  font-weight: 700;
  letter-spacing: calc(50 * 0.001em);
  line-height: 1.4;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  padding-top: 20px;
}
@media (max-width: 768px) {
  .contact-form_unit dl dt {
    width: 100%;
    margin-bottom: clamp(0.2777777778rem, 0.6954102921vw + 0.0923350332rem, 0.5555555556rem);
  }
}
.contact-form_unit dl dt label {
  width: auto;
}
.contact-form_unit dl dt .attached-text {
  font-size: clamp(0.6666666667rem, 0.1390820584vw + 0.6295781178rem, 0.7222222222rem);
  font-weight: 500;
  letter-spacing: calc(50 * 0.001em);
  line-height: 1;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  margin-left: 5px;
  color: #fff;
  background: #507c09;
  padding: clamp(0.1666666667rem, 0.1390820584vw + 0.1295781178rem, 0.2222222222rem) clamp(0.2222222222rem, 0.2781641168vw + 0.1480451244rem, 0.3333333333rem);
  border-radius: 2px;
}
.contact-form_unit dl dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: clamp(0.7777777778rem, 0.1390820584vw + 0.7406892289rem, 0.8333333333rem);
  font-weight: 400;
  letter-spacing: calc(50 * 0.001em);
  line-height: 1.4;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", sans-serif;
}
@media (max-width: 768px) {
  .contact-form_unit dl dd {
    width: 100%;
  }
}
.contact-form_unit dl dd input,
.contact-form_unit dl dd textarea,
.contact-form_unit dl dd select {
  position: relative;
  width: 100%;
  background: #F1F1F1;
  border-radius: clamp(0.1666666667rem, 0.2781641168vw + 0.0924895688rem, 0.2777777778rem);
  border: none;
  outline: none;
  padding: clamp(0.6666666667rem, 0.4172461752vw + 0.5554010199rem, 0.8333333333rem) clamp(0.7777777778rem, 0.5563282337vw + 0.6294235821rem, 1rem);
}
.contact-form_unit dl dd select {
  width: 50%;
}
.contact-form_unit dl dd input[type=radio] {
  display: none;
}
.contact-form_unit dl dd input[type=radio] + span {
  cursor: pointer;
  position: relative;
  padding-left: 27px;
  letter-spacing: 0.1em;
  margin-right: 50px;
}
.contact-form_unit dl dd input[type=radio] + span::before, .contact-form_unit dl dd input[type=radio] + span::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
}
.contact-form_unit dl dd input[type=radio] + span::before {
  background-color: #C2EBF9;
  border: 2px solid #A7CFFF;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  left: 0px;
}
.contact-form_unit dl dd input[type=radio] + span::after {
  background-color: #4271A8;
  border-radius: 50%;
  opacity: 0;
  width: 10px;
  height: 10px;
  left: 2px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.contact-form_unit dl dd input[type=radio]:checked + span::after {
  opacity: 1;
}
.contact-form_unit dl dd .radio-area {
  margin-left: 5px;
}

.form_address li {
  position: relative;
}
.form_address li:first-child::after {
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: calc(50% + 20px);
  width: 14px;
  aspect-ratio: 1/0.7660444431;
  clip-path: polygon(50% 100%, 100% 0, 0 0);
  background-color: #4e4e4e;
  position: absolute;
  display: block;
}
.form_address li:not(:first-child) {
  margin-top: clamp(0.5555555556rem, 0.6954102921vw + 0.370112811rem, 0.8333333333rem);
}

.unit-privacy {
  background: #f1f1f1;
  border-radius: clamp(0.1666666667rem, 0.2781641168vw + 0.0924895688rem, 0.2777777778rem);
  padding: clamp(1.1111111111rem, 1.3908205841vw + 0.740225622rem, 1.6666666667rem) clamp(0.8333333333rem, 2.0862308762vw + 0.2770050997rem, 1.6666666667rem);
}

.privacy-title {
  position: relative;
  font-size: clamp(0.8888888889rem, 0.5563282337vw + 0.7405346932rem, 1.1111111111rem);
  font-weight: 700;
  letter-spacing: calc(50 * 0.001em);
  line-height: 2.3;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", sans-serif;
}
.privacy-title::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #D6D6D6;
  position: absolute;
  bottom: -10px;
  left: 0;
}

.privacy-contents {
  height: 250px;
  overflow-y: auto;
  margin: clamp(0.5555555556rem, 0.6954102921vw + 0.370112811rem, 0.8333333333rem) 0 clamp(0.8333333333rem, 0.6954102921vw + 0.6478905888rem, 1.1111111111rem);
  font-size: clamp(0.7777777778rem, 0.1390820584vw + 0.7406892289rem, 0.8333333333rem);
  font-weight: 400;
  letter-spacing: calc(50 * 0.001em);
  line-height: 1.8;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  padding-right: 30px;
}
@media (max-width: 768px) {
  .privacy-contents {
    height: 200px;
    width: 100%;
    padding: 15px 20px;
  }
}
.privacy-contents::-webkit-scrollbar {
  width: 8px;
}
.privacy-contents::-webkit-scrollbar-track {
  background: #E2E2E2;
  border-radius: 2px;
}
.privacy-contents::-webkit-scrollbar-thumb {
  background: #6d952e;
  border-radius: 2px;
}

.privacy-agree {
  margin: 25px auto 0;
  text-align: center;
}
.privacy-agree span {
  font-size: clamp(0.7777777778rem, 0.1390820584vw + 0.7406892289rem, 0.8333333333rem);
  font-weight: 700;
  letter-spacing: calc(50 * 0.001em);
  line-height: 2.3;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", sans-serif;
}

input[type=checkbox] {
  display: none;
}
input[type=checkbox] + span {
  cursor: pointer;
  display: inline-block;
  width: auto;
  padding-left: 46px;
  position: relative;
}
input[type=checkbox] + span::before, input[type=checkbox] + span::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  -webkit-transition: all ease-out 250ms;
  transition: all ease-out 250ms;
  position: absolute;
}
input[type=checkbox] + span::before {
  width: 24px;
  height: 24px;
  background-color: #e4e4e4;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 16px;
}
input[type=checkbox] + span::after {
  width: 12px;
  height: 24px;
  border-bottom: 3px solid #507C09;
  border-right: 3px solid #507C09;
  -webkit-transform: translateY(-50%) rotate(35deg);
          transform: translateY(-50%) rotate(35deg);
  top: 42%;
  left: 22px;
  opacity: 0;
}
@media (max-width: 768px) {
  input[type=checkbox] + span::after {
    left: 22px;
    height: 24px;
  }
}
input[type=checkbox]:checked + span::after {
  opacity: 1;
}

.box_cmn_form_no-input {
  text-align: center;
  color: #e40000;
  font-size: 0.8em;
}

.check_submit {
  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;
  margin: 30px auto 0;
  text-align: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .check_submit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

p.val-err {
  margin-top: 10px;
}

.form_btn-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin: 50px auto 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contact-btn {
  cursor: pointer;
  width: min(100%, 300px);
  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;
  position: relative;
  padding: 20px 60px 20px 40px;
  background: #507c09;
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  letter-spacing: calc(50 * 0.001em);
  line-height: 1;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 16px;
  font-size: 0.8888888889rem;
}
.contact-btn::after {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "›";
  font-size: 20px;
  font-size: 1.1111111111rem;
  color: #fff;
  z-index: 1;
}
@media (min-width: 769px) {
  .contact-btn:hover {
    background: #467002;
  }
}
.contact-btn.is_back-btn {
  background: #c3c3c3;
  padding: 20px 40px 20px 60px;
}
.contact-btn.is_back-btn::after {
  left: 20px;
  right: auto;
  content: "‹";
}
@media (min-width: 769px) {
  .contact-btn.is_back-btn:hover {
    background: #a8a8a8;
  }
}

.mw_wp_form_confirm .contact-form_unit {
  margin-bottom: 50px;
}
.mw_wp_form_confirm .contact-form_unit dl:first-child dd {
  padding-top: 0;
}
.mw_wp_form_confirm .contact-form_unit dl:not(:first-child) {
  margin-top: 30px;
  border-top: 1px solid #cdcdcd;
  padding-top: 30px;
}
.mw_wp_form_confirm .contact-form_unit dl:last-child {
  display: none;
}
.mw_wp_form_confirm .contact-form_unit dt, .mw_wp_form_confirm .contact-form_unit dd {
  padding-top: 0;
}
.mw_wp_form_confirm .form_address li:first-child::after {
  display: none;
}
.mw_wp_form_confirm .form_btn-area {
  margin: 80px auto 0;
}
.mw_wp_form_confirm .privacy-agree {
  display: none;
}

.contact_confirm .contact-form_unit dl:first-child dd {
  padding-top: 0;
}
.contact_confirm .contact-form_unit dl:not(:first-child) {
  margin-top: 30px;
  border-top: 1px solid #cdcdcd;
  padding-top: 30px;
}
.contact_confirm .contact-form_unit dl:last-child {
  display: none;
}
.contact_confirm .contact-form_unit dt, .contact_confirm .contact-form_unit dd {
  padding-top: 0;
}
.contact_confirm .form_address li:first-child::after {
  display: none;
}
.contact_confirm .form_btn-area {
  margin: 80px auto 0;
}

.form-compleat {
  margin-top: 80px;
}

.form_title {
  margin: 50px 0 20px;
  color: #154c96;
  font-weight: 700;
  font-size: 21px;
  font-size: 1.1666666667rem;
  width: 100%;
  line-height: 1;
}

/*-------------------------------------------------------------------------------
  layout */
.container {
  width: 100%;
  padding: 0 5vw;
  margin: auto;
}

.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.hd_nav {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
  letter-spacing: calc(100 * 0.001em);
  line-height: 1.2;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 14px;
}

@media (max-width: 764px) {
  .flexbox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.text-center {
  text-align: center;
}

.sp-only {
  display: none;
}

@media (max-width: 764px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
/* layout */
header {
  background: url(../images/bg.png);
  padding: 10px 0;
}
header > .flexbox {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo a {
  display: block;
  position: relative;
  color: #507C09;
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
  width: clamp(13.8888888889rem, 20.3059805285vw + 8.473960748rem, 22rem);
  aspect-ratio: 396/98;
  background: url(../images/logo.svg) no-repeat center/cover;
}

header nav li {
  height: 32px;
  margin-left: 10px;
}

@media (max-width: 1200px) {
  header h1 {
    height: 25px;
  }
  header img, header .main_contents > p > img {
    width: auto;
    height: 25px;
    vertical-align: top;
  }
  header > .flexbox {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.global-nav {
  background: #507C09;
}

.sp-menu {
  display: none;
}
.sp-menu li a {
  display: block;
  background: #507C09;
  color: #fff;
  text-decoration: none;
  border-bottom: solid 1px #6d952e;
  padding: 1rem;
  -webkit-transition: 300ms;
  transition: 300ms;
  font-weight: 500;
  letter-spacing: calc(100 * 0.001em);
  line-height: 1.2;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: clamp(0.7777777778rem, 0.3472222222vw + 0.6851851852rem, 0.8333333333rem);
}
@media (min-width: 769px) {
  .sp-menu li a:hover {
    background: #467002;
  }
}

@media (min-width: 768px) {
  .sp-menu {
    display: none !important;
  }
}
.sp-menu-social {
  display: none;
}

.kv img, .kv .main_contents > p > img {
  max-width: 100%;
}

/* components */
.global-nav a {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 12px 20px;
}
.global-nav a:hover {
  background: #467002;
}

.sub-nav a {
  display: none;
}

.table {
  margin: auto;
}
.table dt {
  font-weight: bold;
  float: left;
  margin-right: 10px;
  margin-bottom: 5px;
}
.table dd {
  margin-bottom: 10px;
}
.table a {
  color: #333;
}
.table a:hover {
  color: #111;
}

.card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 10px;
  border: solid 1px #eee;
  border-radius: 3px;
  overflow: hidden;
}

.card-img-top {
  width: 100%;
}

.card-title {
  margin: 1rem;
}

.card-text {
  margin: 0 1rem 1rem;
}

.card-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -10px;
}

@media (max-width: 764px) {
  .card-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.btn {
  color: #fff;
  text-decoration: none;
  background: #333;
  display: inline-block;
  padding: 10px 14px;
  border-radius: 3px;
  margin: 2rem;
}
.btn:hover {
  background: #111;
}

@media (max-width: 764px) {
  iframe {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.menu-btn {
  width: 25px;
  height: 20px;
  border-width: 2px 0 2px;
  border-color: #507C09;
  border-style: solid;
  position: relative;
  margin-right: 4px;
}
.menu-btn.open {
  border-color: #fff;
}
.menu-btn::before, .menu-btn::after {
  display: block;
  content: "";
  width: 25px;
  height: 2px;
  position: absolute;
  top: 7px;
  background: #507C09;
  -webkit-transition: 300ms;
  transition: 300ms;
}
.menu-btn.open::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.menu-btn.open::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.mv_wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 300px;
}

.mainimg {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.mainimg img, .mainimg .main_contents > p > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home .mainimg {
  height: 600px;
}

.main_ttl {
  font-weight: 700;
  letter-spacing: calc(100 * 0.001em);
  line-height: 1.2;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: clamp(1.2222222222rem, 2.2253129346vw + 0.6288054397rem, 2.1111111111rem);
  margin-left: 5vw;
  z-index: 1;
  color: #fff;
}

.booking-package {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.wrapper {
  max-width: 1200px;
}

.contents {
  width: 100%;
  margin-bottom: 60px;
}

.contents_img {
  width: 100%;
  aspect-ratio: 5/4;
}
.contents_img img, .contents_img .main_contents > p > img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#main {
  position: relative;
  background: url(../images/bg.png);
  margin: 0 auto;
  padding: 60px 8vw 150px;
}
@media (max-width: 768px) {
  #main {
    padding: 40px 4vw 90px;
  }
}
#main::before {
  position: absolute;
  content: "";
  bottom: -3px;
  left: 5vw;
  width: clamp(8.1111111111rem, 4.1724617524vw + 6.9984546438rem, 9.7777777778rem);
  aspect-ratio: 176/76;
  -webkit-mask-image: url(../images/footer_ill.svg);
          mask-image: url(../images/footer_ill.svg);
  -webkit-mask-size: clamp(8.1111111111rem, 4.1724617524vw + 6.9984546438rem, 9.7777777778rem) auto;
          mask-size: clamp(8.1111111111rem, 4.1724617524vw + 6.9984546438rem, 9.7777777778rem) auto;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #467002;
}

.main_wrapper {
  margin: 0 auto;
  padding: clamp(2.7777777778rem, 4.1724617524vw + 1.6651213105rem, 4.4444444444rem) clamp(0.8333333333rem, 11.8219749652vw + -2.3191933241rem, 5.5555555556rem) clamp(1.6666666667rem, 6.9541029207vw + -0.1877607789rem, 4.4444444444rem);
  background: #fff;
}