@charset "UTF-8";
/*
Theme Name: 我が家のレシピ
License: sanoc
License URI: https://sammy-design.com
Version : 1.0
*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

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

a img {
  border: none;
}

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

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --black: #000;
  --white: #fff;
  --main_green: #00833E;
  --green:#01833F;
  --green_deep:#01572A;
  --text_color:#555555;
  --link_color:#4A98E2;
  --pink:#FFDFD5;
  --yellow:#FFEE9B;
  --blue:#D3DFF1;
  --green_light:#D9ECD8;
  --beige: #FAE9CD;
  --beige_table:#FFF5E3;
  --border_table:#D8CCBE;
  --gray_border:#AFAFAF;
  --beige_border:#D8CCBE;
  --text_gray:#777;
  --text_color:#212121;
  --color_key:#00833E;
  --blue_light: #EBF0F5;
  --blue_light_02: #DAE8FA;
  --beige_light: #F9F4EC;
  --line_blue: #98A5B1;
  --key_orange: #E8A935;
  --gray: #E3E5E7;
  --font_key: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  --font_base: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  --font_en:"Mochiy Pop One", sans-serif;
  --font_ja: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
}

@-webkit-keyframes fade_in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade_in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 全体的なサイト設定
========================== */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 0.6944444444vw;
  margin: 0;
  padding: 0;
  line-height: 1.7;
}
@media (min-width: 1441px) {
  html {
    font-size: clamp(10px, 0.65vw, 11px);
  }
}
@media (max-width: 768px) {
  html {
    font-size: 10px;
  }
}
html.scroll {
  scroll-behavior: auto;
}
html.introduction {
  background-color: #FFFCF8;
}

html {
  scroll-padding-top: 5rem;
}
@media (max-width: 600px) {
  html {
    scroll-padding-top: 1rem;
  }
}

body {
  font-size: max(1.8rem, 16px);
  margin: 0;
  padding: 0;
  font-family: var(--font_base);
  font-weight: 500;
  color: var(--black);
  position: relative;
  counter-reset: number 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100svh;
  /* 英数字やURLの折り返し対策 */
  overflow-wrap: break-word;
  word-wrap: break-word;
  /* 日本語の文字幅を自然に（プロポーショナル化） */
  font-variant-east-asian: proportional-width;
  /* （上の指定に対応していない環境向けフォールバック） */
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  /* 両端揃えの日本語をきれいに見せる */
  text-align: justify;
  text-justify: inter-ideograph;
  /* スムーズな文字表示（Retina対策） */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}
body.open, body.modal_active {
  overflow: hidden !important;
}

main {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
main.is_front {
  padding-top: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

i {
  font-weight: bold;
}

a {
  text-decoration: none;
  display: inline-block;
  color: var(--black);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
a.block {
  display: block;
}

button {
  cursor: pointer;
}

strong {
  font-weight: bold;
}

button {
  border: none;
  background: none;
  padding: 0;
  outline: none;
}

.grecaptcha-badge {
  visibility: hidden;
}

/* 英語テキスト専用の調整 */
body:lang(en),
p:lang(en),
h1:lang(en),
h2:lang(en),
h3:lang(en),
h4:lang(en),
h5:lang(en),
h6:lang(en) {
  text-align: left; /* 英文では justify にしない */
  word-break: normal;
  letter-spacing: normal;
}

/* 日本語＋英語混在の見出しを美しく 継承対応*/
h1, h2, h3, h4, h5, h6 {
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  font-variant-east-asian: proportional-width;
}

/* width関連
========================== */
.w_xl {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 96vw;
}
@media (max-width: 768px) {
  .w_xl {
    width: 94vw;
  }
}
.w_l_l {
  margin-left: auto;
  margin-right: auto;
  width: 94vw;
  max-width: 1300px;
}
@media (min-width: 1701px) {
  .w_l_l {
    max-width: 130rem;
  }
}
@media (min-width: 2001px) {
  .w_l_l {
    max-width: 143rem;
  }
}
@media (max-width: 768px) {
  .w_l_l {
    width: 90vw;
  }
}
.w_l {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 92vw;
  max-width: 1200px;
}
@media (min-width: 1701px) {
  .w_l {
    max-width: 120rem;
  }
}
@media (min-width: 2001px) {
  .w_l {
    max-width: 132rem;
  }
}
@media (max-width: 768px) {
  .w_l {
    width: 90vw;
  }
}
.w_m {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 88vw;
  max-width: 1050px;
}
@media (max-width: 768px) {
  .w_m {
    width: 90vw;
  }
}
.w_s {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 86vw;
  max-width: 835px;
}
@media (max-width: 600px) {
  .w_s {
    width: 90vw;
  }
}

.mb_xxs {
  margin-bottom: 2%;
}
.mb_xs {
  margin-bottom: 3%;
}
.mb_s {
  margin-bottom: 3%;
}
@media (max-width: 960px) {
  .mb_s {
    margin-bottom: 1em;
  }
}
.mb_m {
  margin-bottom: 5%;
}
@media (max-width: 960px) {
  .mb_m {
    margin-bottom: 3em;
  }
}
.mb_l {
  margin-bottom: 8%;
}
@media (max-width: 960px) {
  .mb_l {
    margin-bottom: 3.5em;
  }
}
.mb_xl {
  margin-bottom: 10%;
}
@media (max-width: 960px) {
  .mb_xl {
    margin-bottom: 4em;
  }
}
.mb_xxl {
  margin-bottom: 15%;
}
@media (max-width: 960px) {
  .mb_xxl {
    margin-bottom: 5em;
  }
}
.mb_2 {
  margin-bottom: 2em;
}
.mb_15 {
  margin-bottom: 1.5em;
}
.mb_1 {
  margin-bottom: 1em;
}
.mb_075 {
  margin-bottom: 0.75em;
}
.mb_05 {
  margin-bottom: 0.5em;
}
.mb_025 {
  margin-bottom: 0.25em;
}
.mb_02 {
  margin-bottom: 0.2em;
}
.mb_0 {
  margin-bottom: 0;
}

.mt_xl {
  margin-top: 12.5rem;
}
@media (max-width: 768px) {
  .mt_xl {
    margin-top: 10rem;
  }
}
.mt_l {
  margin-top: 10rem;
}
@media (max-width: 768px) {
  .mt_l {
    margin-top: 8rem;
  }
}
.mt_m {
  margin-top: 7.5rem;
}
@media (max-width: 768px) {
  .mt_m {
    margin-top: 6rem;
  }
}
.mt_s {
  margin-top: 5rem;
}
@media (max-width: 768px) {
  .mt_s {
    margin-top: 4rem;
  }
}
.mt_05 {
  margin-top: 0.5em;
}
.mt_1 {
  margin-top: 1em;
}
.mt_15 {
  margin-top: 1.5em;
}

.pb_xl {
  padding-bottom: 12.5rem;
}
@media (max-width: 768px) {
  .pb_xl {
    padding-bottom: 10rem;
  }
}
.pb_l {
  padding-bottom: 10rem;
}
@media (max-width: 768px) {
  .pb_l {
    padding-bottom: 8rem;
  }
}
.pb_m {
  padding-bottom: 7.5rem;
}
@media (max-width: 768px) {
  .pb_m {
    padding-bottom: 6rem;
  }
}
.pb_s {
  padding-bottom: 5rem;
}
@media (max-width: 768px) {
  .pb_s {
    padding-bottom: 4rem;
  }
}
.pb_xs {
  padding-bottom: 3.5rem;
}
@media (max-width: 768px) {
  .pb_xs {
    padding-bottom: 2.8rem;
  }
}
.pb_xxs {
  padding-bottom: 2rem;
}
@media (max-width: 768px) {
  .pb_xxs {
    padding-bottom: 1.6rem;
  }
}

.pt_xl {
  padding-top: 12.5rem;
}
@media (max-width: 768px) {
  .pt_xl {
    padding-top: 10rem;
  }
}
.pt_l {
  padding-top: 10rem;
}
@media (max-width: 768px) {
  .pt_l {
    padding-top: 8rem;
  }
}
.pt_m {
  padding-top: 7.5rem;
}
@media (max-width: 768px) {
  .pt_m {
    padding-top: 6rem;
  }
}
.pt_s {
  padding-top: 5rem;
}
@media (max-width: 768px) {
  .pt_s {
    padding-top: 4rem;
  }
}
.pt_xs {
  padding-top: 3.5rem;
}
@media (max-width: 768px) {
  .pt_xs {
    padding-top: 2.8rem;
  }
}
.pt_xxs {
  padding-top: 2rem;
}
@media (max-width: 768px) {
  .pt_xxs {
    padding-top: 1.6rem;
  }
}

.sct_l {
  padding: 5% 0;
}
@media (max-width: 960px) {
  .sct_l {
    padding: 2.5em 0;
  }
}

.sct_m {
  padding: 3% 0;
}

.sct_s {
  padding: 2% 0;
}

.sct_btm_m {
  padding-bottom: 10rem;
}

.sct_top_l {
  padding-top: 5%;
}
@media (max-width: 960px) {
  .sct_top_l {
    padding-top: 2.5em;
  }
}

.pl_1 {
  padding-left: 1em;
}

.fz_20 {
  font-size: clamp(20px, 2vw, 24px);
}

.fz_18 {
  font-size: clamp(18px, 1.8vw, 22px);
}

.fz_16 {
  font-size: clamp(16px, 1.5vw, 18px);
}

.fw_700 {
  font-weight: 700;
}
.fw_500 {
  font-weight: 500;
}

@media (max-width: 1250px) {
  .none_medium {
    display: none;
  }
}
@media (max-width: 1100px) {
  .none_1100 {
    display: none;
  }
}
@media (max-width: 960px) {
  .none_tb {
    display: none;
  }
}
@media (max-width: 768px) {
  .none_tbs {
    display: none;
  }
}
@media (max-width: 600px) {
  .none_sp {
    display: none;
  }
}
@media (max-width: 425px) {
  .none_sps {
    display: none;
  }
}

.block_medium {
  display: none;
}
@media (max-width: 1250px) {
  .block_medium {
    display: block;
  }
}
.block_1100 {
  display: none;
}
@media (max-width: 1100px) {
  .block_1100 {
    display: block;
  }
}
.block_tb {
  display: none;
}
@media (max-width: 960px) {
  .block_tb {
    display: block;
  }
}
.block_tbs {
  display: none;
}
@media (max-width: 768px) {
  .block_tbs {
    display: block;
  }
}
.block_sp {
  display: none;
}
@media (max-width: 600px) {
  .block_sp {
    display: block;
  }
}
.block_sps {
  display: none;
}
@media (max-width: 425px) {
  .block_sps {
    display: block;
  }
}

.ta_center {
  text-align: center;
}

.lh_1 {
  line-height: 1;
}
.lh_185 {
  line-height: 1.85;
}
.lh_2 {
  line-height: 2;
}
.lh_2_3 {
  line-height: 2.3;
}

.bold {
  font-weight: bold;
  font-size: 1.2em !important;
}

.color_key {
  color: var(--color_key);
}

.cmmn_text {
  position: relative;
}
.cmmn_text p {
  font-size: clamp(16px, 2.3vw, 18px);
}
.cmmn_text p:not(:last-child) {
  margin-bottom: 1em;
}

.cmmn_ul > li {
  padding-left: 1.25em;
  position: relative;
}
.cmmn_ul > li::before {
  content: "・";
  display: block;
  width: 1em;
  height: 1em;
  position: absolute;
  top: 0;
  left: 0;
}
.cmmn_ul > li:not(:last-child) {
  margin-bottom: 0.8em;
}
.cmmn_ul.dot > li::before {
  content: "";
  width: 0.4em;
  height: 0.4em;
  position: absolute;
  top: 0.6em;
  left: 0;
  border-radius: 50%;
  background-color: var(--color_key);
}

.cmmn_ttl .en {
  font-family: var(--font_en);
  color: var(--main_green);
  font-weight: 400;
  font-size: 1em;
  line-height: 1;
  margin-bottom: 0.2em;
}
@media (max-width: 768px) {
  .cmmn_ttl .en {
    font-size: max(2.5vw, 14px);
  }
}
.cmmn_ttl .ja {
  font-family: var(--font_ja);
  font-weight: bold;
  font-size: clamp(24px, 3.2vw, 32px);
  line-height: 1.6;
  font-weight: 500;
}
.cmmn_ttl .ja .little {
  font-size: 0.7em;
}
.cmmn_ttl.vertical {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.cmmn_ttl.dashed {
  padding-bottom: 1.8em;
  position: relative;
}
.cmmn_ttl.dashed::before {
  position: absolute;
  content: "";
  background-image: url(./assets/images/cmmn/dashed_line.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 12rem;
  height: 0.5em;
  bottom: 0px;
  left: 0;
}

.cmmn_ttl_dashed {
  font-size: clamp(24px, 3.8vw, 36px);
  font-weight: bold;
  padding-bottom: 3%;
  color: #000;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.6;
  padding-bottom: 3%;
  position: relative;
}
@media (max-width: 768px) {
  .cmmn_ttl_dashed {
    padding-bottom: 4%;
  }
}
.cmmn_ttl_dashed::before {
  position: absolute;
  content: "";
  background-image: url(./assets/images/cmmn/dashed_line.png);
  background-repeat: repeat-x;
  background-size: contain;
  width: 12rem;
  height: 0.5em;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.cmmn_ttl_dashed.center {
  margin-left: auto;
  margin-right: auto;
}
.cmmn_ttl_dashed.left::before {
  width: 100%;
  left: 0;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.cmmn_ttl_dashed.green {
  color: var(--green);
}

.cmmn_ttl_deco {
  font-size: clamp(20px, 3vw, 28px);
  color: #000;
  font-weight: bold;
  padding-left: 2em;
  position: relative;
}
.cmmn_ttl_deco::before {
  position: absolute;
  content: "";
  background-image: url(./assets/images/deco/ttl_blue.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.7em;
  height: 1.7em;
  top: 0.1em;
  left: 0;
}
.cmmn_ttl_deco.red::before {
  background-image: url(./assets/images/deco/ttl_red.png);
}
.cmmn_ttl_deco.blue::before {
  background-image: url(./assets/images/deco/ttl_blue.png);
}
.cmmn_ttl_deco.blue_02::before {
  background-image: url(./assets/images/deco/ttl_blue_02.png);
}
.cmmn_ttl_deco.green::before {
  background-image: url(./assets/images/deco/ttl_green.png);
}
.cmmn_ttl_deco.yellow::before {
  background-image: url(./assets/images/deco/ttl_yellow.png);
}

.cmmn_ttl_underline {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: bold;
  padding-left: 2em;
  position: relative;
}
.cmmn_ttl_underline::before {
  position: absolute;
  content: "";
  background-image: url(./assets/images/deco/yellow_dot.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.5em;
  height: 1.5em;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.cmmn_ttl_underline::after {
  position: absolute;
  content: "";
  background-color: var(--green);
  width: 100%;
  height: 1px;
  bottom: 0px;
  left: 0;
}

.cmmn_btn_box {
  white-space: nowrap;
  position: relative;
  z-index: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 1.8em;
}
.cmmn_btn_box.center {
  margin-left: auto;
  margin-right: auto;
}
.cmmn_btn_box.right {
  margin-left: auto;
}
.cmmn_btn_box.mini {
  padding-right: 1.2em;
}
.cmmn_btn_box.mini .cmmn_btn {
  padding: 0.5em 1.5em;
  font-size: clamp(13px, 2vw, 15px);
}
.cmmn_btn_box.mini .arrow::after {
  width: 2em;
  height: 0.5em;
}
.cmmn_btn_box .arrow::after {
  position: absolute;
  content: "";
  background-image: url(./assets/images/cmmn/btn_arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 3em;
  height: 0.5em;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cmmn_btn_box:hover .arrow:after {
  right: -0.2em;
}

.cmmn_btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 1000px;
  overflow: hidden;
  text-align: center;
  padding: 1em 3em;
  font-family: var(--font_ja);
  letter-spacing: 2.5px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  position: relative;
}
.cmmn_btn::before {
  position: absolute;
  content: "";
  background-image: url(./assets/images/cmmn/btn_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
.cmmn_btn.ex_link {
  padding-right: 4em;
}
.cmmn_btn.ex_link::after {
  position: absolute;
  content: "";
  background-image: url(./assets/images/icon/ex_link_black.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1em;
  height: 1em;
  top: 50%;
  right: 1.5em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.cmmn_btn.download {
  padding-left: 4em;
}
.cmmn_btn.download::after {
  position: absolute;
  content: "";
  background-image: url(./assets/images/icon/download.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.5em;
  height: 1.5em;
  top: 50%;
  left: 2em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.cmmn_btn:hover {
  -webkit-box-shadow: 0 9px 16px rgba(0, 0, 0, 0.09);
          box-shadow: 0 9px 16px rgba(0, 0, 0, 0.09);
}

.cmmn_headline {
  position: relative;
  padding: 3% 0;
  margin-top: 140px;
}
@media (max-width: 960px) {
  .cmmn_headline {
    margin-top: 100px;
    padding: 5% 0;
  }
}
.cmmn_headline .bg {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.cmmn_headline .inr {
  margin: 0 auto;
  width: 92vw;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
}
@media (max-width: 768px) {
  .cmmn_headline .inr {
    width: 90vw;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.cmmn_headline .inr .image {
  width: 10%;
  max-width: 130px;
  min-width: 55px;
  margin-right: 1em;
}
.cmmn_headline .inr .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.cmmn_headline .inr .image img.is_animated {
  -webkit-animation: cmmn_anime_lr 1.2s steps(3, end) forwards;
          animation: cmmn_anime_lr 1.2s steps(3, end) forwards;
}
.cmmn_headline .inr .title_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cmmn_headline .inr .title_wrap .ja {
  line-height: 1;
  font-weight: bold;
  font-size: clamp(18px, 3.2vw, 28px);
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .cmmn_headline .inr .title_wrap .ja {
    line-height: 1.3;
    margin-bottom: 4%;
  }
}
.cmmn_headline .inr .title_wrap .ja .sp_break {
  display: inline;
}
@media (max-width: 768px) {
  .cmmn_headline .inr .title_wrap .ja .sp_break {
    display: block;
  }
}
.cmmn_headline .inr .title_wrap .en {
  line-height: 1;
  font-size: 1.6rem;
  color: var(--green);
  font-family: var(--font_en);
  font-weight: bold;
}
@media (max-width: 768px) {
  .cmmn_headline .inr .title_wrap .en {
    font-size: max(2vw, 12px);
  }
}

.cmmn_breadcrumb {
  margin-bottom: 5%;
}
.cmmn_breadcrumb a {
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cmmn_breadcrumb a:hover {
  opacity: 0.7;
}

.cmmn_link {
  color: var(--link_color);
  text-decoration: underline;
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: clamp(16px, 2.3vw, 18px);
}
.cmmn_link:hover {
  opacity: 0.7;
}

.cmmn_list li:not(:last-child) {
  margin-bottom: 2%;
}

.cmmn_table {
  font-size: clamp(14px, 1.4vw, 16px);
  width: 100%;
  table-layout: fixed;
}
.cmmn_table:not(:last-child) {
  margin-bottom: 1.5em;
}
.cmmn_table tr {
  border-right: 1px solid var(--border_table);
  border-left: 1px solid var(--border_table);
}
.cmmn_table tr:first-child {
  border-top: 1px solid var(--border_table);
}
.cmmn_table th {
  background-color: var(--beige_table);
  border-bottom: 1px solid var(--border_table);
  border-right: 1px solid var(--border_table);
  padding: 0.5em 0.7em;
  font-weight: bold;
}
.cmmn_table td {
  font-weight: bold;
  border-bottom: 1px solid var(--border_table);
}
.cmmn_table td .td_inr {
  padding: 0.5em 0.7em;
}
.cmmn_table td .td_inr:not(:last-child) {
  border-bottom: 1px solid var(--border_table);
}
.cmmn_table .link:hover {
  color: var(--link_color);
}

.cmmn_table_dashed table {
  width: 100%;
}
.cmmn_table_dashed table tr {
  border-top: 1px dashed #000;
}
.cmmn_table_dashed table tr:last-child {
  border-bottom: 1px dashed #000;
}
.cmmn_table_dashed table th, .cmmn_table_dashed table td {
  padding: 2rem;
}
.cmmn_table_dashed table th {
  font-size: clamp(18px, 2.4vw, 20px);
  position: relative;
}
.cmmn_table_dashed table th::before {
  position: absolute;
  content: "";
  border-right: 1px dashed #000;
  width: 1px;
  height: 90%;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.cmmn_table_dashed table th .dot {
  white-space: nowrap;
  font-weight: bold;
  padding-left: 3rem;
  position: relative;
}
.cmmn_table_dashed table th .dot::before {
  position: absolute;
  content: "";
  background-image: url(./assets/images/deco/yellow_dot.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 2rem;
  height: 2rem;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.cmmn_table_dashed table td {
  font-size: clamp(16px, 2.3vw, 18px);
}
.cmmn_table_dashed table td .name {
  font-weight: bold;
  color: var(--link_color);
  text-decoration: underline;
  padding: 0.5rem;
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cmmn_table_dashed table td .name:not(:last-child) {
  margin-right: 1rem;
}
.cmmn_table_dashed table td .name:hover {
  opacity: 0.7;
}

@-webkit-keyframes scrollHint {
  0% {
    -webkit-transform: translate(-50%, -50%) translateX(-8px);
            transform: translate(-50%, -50%) translateX(-8px);
  }
  50% {
    -webkit-transform: translate(-50%, -50%) translateX(8px);
            transform: translate(-50%, -50%) translateX(8px);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) translateX(-8px);
            transform: translate(-50%, -50%) translateX(-8px);
  }
}

@keyframes scrollHint {
  0% {
    -webkit-transform: translate(-50%, -50%) translateX(-8px);
            transform: translate(-50%, -50%) translateX(-8px);
  }
  50% {
    -webkit-transform: translate(-50%, -50%) translateX(8px);
            transform: translate(-50%, -50%) translateX(8px);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) translateX(-8px);
            transform: translate(-50%, -50%) translateX(-8px);
  }
}
@-webkit-keyframes waveFloat {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-1.5rem);
            transform: translateY(-1.5rem);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes waveFloat {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-1.5rem);
            transform: translateY(-1.5rem);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.cmmn_wave_float {
  -webkit-animation: waveFloat 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
          animation: waveFloat 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.cmmn_list_bor {
  font-family: var(--font_title);
  font-size: max(2.2rem, 17px);
}
@media (max-width: 768px) {
  .cmmn_list_bor {
    font-size: 1.7rem;
  }
}
.cmmn_list_bor li {
  display: block;
  position: relative;
  padding: 1.5em 0 1.5em 1.2em;
}
.cmmn_list_bor li::before {
  content: "・";
  position: absolute;
  left: 0;
}
.cmmn_list_bor li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--gray);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}

.cmmn_list_arrow {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 4rem;
}
@media (max-width: 768px) {
  .cmmn_list_arrow {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cmmn_list_arrow li {
  position: relative;
}
.cmmn_list_arrow li a {
  display: block;
  padding: 1.1em 3em 1.1em 0.5em;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.cmmn_list_arrow li a::after {
  content: "";
  display: block;
  width: 2.5em;
  height: 1.5em;
  background-image: url("./assets/images/icon/arrow_bottom.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 0.5em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.cmmn_list_arrow li a:hover::after {
  background-image: url("./assets/images/icon/arrow_bottom_bg.png");
}
.cmmn_list_arrow.border li {
  border-top: 1px solid var(--line_blue);
}
.cmmn_list_arrow.border li:nth-last-child(2), .cmmn_list_arrow.border li:last-child {
  border-bottom: 1px solid var(--line_blue);
}
@media (max-width: 768px) {
  .cmmn_list_arrow.border li:nth-last-child(2) {
    border-bottom: none;
  }
}
.cmmn_list_arrow.bg {
  gap: 1.5rem;
}
.cmmn_list_arrow.bg li {
  background-color: var(--beige);
  border-radius: 0.25em;
}
.cmmn_list_arrow.bg li a {
  padding: 1em 3em 1em 0.5em;
}

.decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.decoration .deco {
  position: absolute;
}

.breadcrumb {
  color: var(--text_gray);
  font-size: clamp(12px, 1.2vw, 18px);
}
.breadcrumb a {
  color: var(--text_gray);
}

.facility_nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  width: 100%;
}
@media (max-width: 768px) {
  .facility_nav ul {
    width: 95%;
    -webkit-column-gap: 1rem;
       -moz-column-gap: 1rem;
            column-gap: 1rem;
  }
}
.facility_nav ul li .nav_btn {
  width: 100%;
  padding-top: 1rem;
  font-size: clamp(13px, 1vw, 18px);
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 600px) {
  .facility_nav ul li .nav_btn {
    font-size: 1.3rem;
  }
}
@media (max-width: 425px) {
  .facility_nav ul li .nav_btn {
    font-size: 3.4vw;
  }
}
.facility_nav ul li .nav_btn:hover {
  opacity: 0.7;
}
.facility_nav ul li .nav_btn::before {
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: 4.2rem;
  margin-bottom: 0.5rem;
}
.facility_nav ul li .nav_btn.overview::before {
  background-image: url(./assets/images/icon/facility.png);
}
@media (max-width: 960px) {
  .facility_nav ul li .nav_btn.overview::before {
    height: 5.2rem;
  }
}
@media (max-width: 768px) {
  .facility_nav ul li .nav_btn.overview::before {
    width: 10vw;
    height: 8vw;
  }
}
.facility_nav ul li .nav_btn.childcare::before {
  background-image: url(./assets/images/icon/hoiku.png);
}
@media (max-width: 960px) {
  .facility_nav ul li .nav_btn.childcare::before {
    height: 6rem;
  }
}
@media (max-width: 768px) {
  .facility_nav ul li .nav_btn.childcare::before {
    width: 11vw;
    height: 8vw;
  }
}
.facility_nav ul li .nav_btn.schedule {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.facility_nav ul li .nav_btn.schedule::before {
  background-image: url(./assets/images/icon/schedule.png);
}
@media (max-width: 960px) {
  .facility_nav ul li .nav_btn.schedule::before {
    height: 4.8rem;
  }
}
@media (max-width: 768px) {
  .facility_nav ul li .nav_btn.schedule::before {
    width: 8vw;
    height: 8vw;
  }
}
.facility_nav ul li .nav_btn.schedule span {
  display: block;
  line-height: 1.4;
}
.facility_nav ul li .nav_btn.blog::before {
  background-image: url(./assets/images/icon/blog.png);
}
@media (max-width: 960px) {
  .facility_nav ul li .nav_btn.blog::before {
    height: 6.6rem;
  }
}
@media (max-width: 768px) {
  .facility_nav ul li .nav_btn.blog::before {
    width: 4vw;
    height: 9vw;
  }
}
.facility_nav ul li .nav_btn.custom::before {
  content: none;
}
.facility_nav ul li .nav_btn.custom img {
  width: auto;
  display: block;
  height: 4.2rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.5rem;
  position: static;
}

.facility_nav#facility_nav_header {
  overflow: hidden;
  width: 100%;
}

.recruit_btn .link {
  background-color: var(--green);
  color: #fff;
  opacity: 1;
  border-radius: 1000px;
  font-size: clamp(16px, 2.6vw, 18px);
  font-weight: bold;
  padding: 0.2em 2em 0.2em 1em;
  position: relative;
}
.recruit_btn .link::before {
  position: absolute;
  content: "";
  background-image: url(./assets/images/icon/ex_link_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1em;
  height: 1em;
  top: 50%;
  right: 0.7em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.recruit_btn .link:hover {
  opacity: 0.7;
}

.cmmn_flex_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 768px) {
  .cmmn_flex_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6.5rem;
  }
}
.cmmn_flex_inner .left {
  width: 20%;
}
@media (max-width: 768px) {
  .cmmn_flex_inner .left {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .cmmn_flex_inner .left .title {
    margin: 0 auto;
  }
}
.cmmn_flex_inner .right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 768px) {
  .cmmn_flex_inner .right {
    width: 100%;
  }
}

/* 背景スクロール禁止 */
body.modal_open {
  overflow: hidden;
}

.kousai_link {
  display: block;
  height: 32px;
  background: -webkit-gradient(linear, left top, right top, from(#A7CEBC), color-stop(20.67%, #02A459), color-stop(66.83%, #02A459), color-stop(97.6%, #0C7042));
  background: -webkit-linear-gradient(left, #A7CEBC 0%, #02A459 20.67%, #02A459 66.83%, #0C7042 97.6%);
  background: linear-gradient(90deg, #A7CEBC 0%, #02A459 20.67%, #02A459 66.83%, #0C7042 97.6%);
}
@media (max-width: 768px) {
  .kousai_link {
    height: 24px;
  }
}
.kousai_link .white_wrap {
  height: 100%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 3px 10px 3px 40px;
  border-radius: 100px 0 0 100px;
  background-color: #fff;
  margin-left: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.kousai_link .white_wrap .text {
  font-size: 10px;
  color: var(--main_green);
  font-weight: bold;
  margin-right: 0.5em;
  line-height: 1.4;
}
@media (max-width: 600px) {
  .kousai_link .white_wrap .text {
    display: none;
  }
}
.kousai_link .white_wrap .image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
}
.kousai_link .white_wrap .image .logo {
  width: 200px;
  margin-right: 0.5em;
}
@media (max-width: 768px) {
  .kousai_link .white_wrap .image .logo {
    width: 150px;
  }
}
.kousai_link .white_wrap .image .ex_link {
  width: 12.5px;
}
@media (max-width: 600px) {
  .kousai_link .white_wrap .image .ex_link {
    display: none;
  }
}

@-webkit-keyframes cmmn_anime_01 {
  from {
    -webkit-transform: translate(48px, 80px) rotate(-105deg);
            transform: translate(48px, 80px) rotate(-105deg);
  }
  to {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
}

@keyframes cmmn_anime_01 {
  from {
    -webkit-transform: translate(48px, 80px) rotate(-105deg);
            transform: translate(48px, 80px) rotate(-105deg);
  }
  to {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
}
@-webkit-keyframes cmmn_anime_02 {
  from {
    -webkit-transform: translate(-48px, 80px) rotate(-105deg);
            transform: translate(-48px, 80px) rotate(-105deg);
  }
  to {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
}
@keyframes cmmn_anime_02 {
  from {
    -webkit-transform: translate(-48px, 80px) rotate(-105deg);
            transform: translate(-48px, 80px) rotate(-105deg);
  }
  to {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
}
@-webkit-keyframes cmmn_anime_03 {
  from {
    -webkit-transform: translate(48px, -80px) rotate(-105deg);
            transform: translate(48px, -80px) rotate(-105deg);
  }
  to {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
}
@keyframes cmmn_anime_03 {
  from {
    -webkit-transform: translate(48px, -80px) rotate(-105deg);
            transform: translate(48px, -80px) rotate(-105deg);
  }
  to {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
}
@-webkit-keyframes cmmn_anime_04 {
  from {
    -webkit-transform: translate(-48px, -80px) rotate(-105deg);
            transform: translate(-48px, -80px) rotate(-105deg);
  }
  to {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
}
@keyframes cmmn_anime_04 {
  from {
    -webkit-transform: translate(-48px, -80px) rotate(-105deg);
            transform: translate(-48px, -80px) rotate(-105deg);
  }
  to {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
}
@-webkit-keyframes cmmn_anime_gijiY {
  from {
    -webkit-transform: translate(-48px, -80px) rotate(-105deg) translateY(-50%);
            transform: translate(-48px, -80px) rotate(-105deg) translateY(-50%);
  }
  to {
    -webkit-transform: translate(0, 0) rotate(0deg) translateY(-50%);
            transform: translate(0, 0) rotate(0deg) translateY(-50%);
  }
}
@keyframes cmmn_anime_gijiY {
  from {
    -webkit-transform: translate(-48px, -80px) rotate(-105deg) translateY(-50%);
            transform: translate(-48px, -80px) rotate(-105deg) translateY(-50%);
  }
  to {
    -webkit-transform: translate(0, 0) rotate(0deg) translateY(-50%);
            transform: translate(0, 0) rotate(0deg) translateY(-50%);
  }
}
@-webkit-keyframes cmmn_anime_gijiX {
  from {
    -webkit-transform: translate(-48px, -80px) rotate(-105deg) translateX(-50%);
            transform: translate(-48px, -80px) rotate(-105deg) translateX(-50%);
  }
  to {
    -webkit-transform: translate(0, 0) rotate(0deg) translateX(-50%);
            transform: translate(0, 0) rotate(0deg) translateX(-50%);
  }
}
@keyframes cmmn_anime_gijiX {
  from {
    -webkit-transform: translate(-48px, -80px) rotate(-105deg) translateX(-50%);
            transform: translate(-48px, -80px) rotate(-105deg) translateX(-50%);
  }
  to {
    -webkit-transform: translate(0, 0) rotate(0deg) translateX(-50%);
            transform: translate(0, 0) rotate(0deg) translateX(-50%);
  }
}
@-webkit-keyframes cmmn_anime_lr {
  0% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  50% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes cmmn_anime_lr {
  0% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  50% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@-webkit-keyframes cmmn_anime_rl {
  0% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  50% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes cmmn_anime_rl {
  0% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  50% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@-webkit-keyframes cmmn_anime_lrY {
  0% {
    -webkit-transform: rotate(-5deg) translateY(-50%);
            transform: rotate(-5deg) translateY(-50%);
  }
  50% {
    -webkit-transform: rotate(5deg) translateY(-50%);
            transform: rotate(5deg) translateY(-50%);
  }
  100% {
    -webkit-transform: rotate(0deg) translateY(-50%);
            transform: rotate(0deg) translateY(-50%);
  }
}
@keyframes cmmn_anime_lrY {
  0% {
    -webkit-transform: rotate(-5deg) translateY(-50%);
            transform: rotate(-5deg) translateY(-50%);
  }
  50% {
    -webkit-transform: rotate(5deg) translateY(-50%);
            transform: rotate(5deg) translateY(-50%);
  }
  100% {
    -webkit-transform: rotate(0deg) translateY(-50%);
            transform: rotate(0deg) translateY(-50%);
  }
}
@-webkit-keyframes cmmn_anime_lr_ {
  0% {
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
  50% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes cmmn_anime_lr_ {
  0% {
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
  50% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@-webkit-keyframes cmmn_anime_lr_5deg {
  0% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
}
@keyframes cmmn_anime_lr_5deg {
  0% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
}
@-webkit-keyframes cmmn_anime_lr_scale {
  0% {
    -webkit-transform: scaleX(-1) rotate(-25deg);
            transform: scaleX(-1) rotate(-25deg);
  }
  50% {
    -webkit-transform: scaleX(-1) rotate(-15deg);
            transform: scaleX(-1) rotate(-15deg);
  }
  100% {
    -webkit-transform: scaleX(-1) rotate(-20deg);
            transform: scaleX(-1) rotate(-20deg);
  }
}
@keyframes cmmn_anime_lr_scale {
  0% {
    -webkit-transform: scaleX(-1) rotate(-25deg);
            transform: scaleX(-1) rotate(-25deg);
  }
  50% {
    -webkit-transform: scaleX(-1) rotate(-15deg);
            transform: scaleX(-1) rotate(-15deg);
  }
  100% {
    -webkit-transform: scaleX(-1) rotate(-20deg);
            transform: scaleX(-1) rotate(-20deg);
  }
}
.cmmn_contact_sct {
  background-color: var(--beige);
  padding-bottom: 3rem;
}
.cmmn_contact_sct .wave img {
  width: 100%;
}
.cmmn_contact_sct .wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10rem;
  margin-left: 3rem;
}
@media (max-width: 768px) {
  .cmmn_contact_sct .wrap {
    margin-left: 0;
    gap: 5vw;
  }
}
.cmmn_contact_sct .title_wrap {
  width: 15%;
  margin-top: -17rem;
}
@media (max-width: 768px) {
  .cmmn_contact_sct .title_wrap {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: -5rem;
  }
}
.cmmn_contact_sct .title_wrap .cmmn_sct_title {
  margin-left: auto;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .cmmn_contact_sct .title_wrap .cmmn_sct_title {
    margin-left: 0;
  }
}
.cmmn_contact_sct .title_wrap .image {
  width: 18rem;
  margin-left: -7rem;
}
@media (max-width: 768px) {
  .cmmn_contact_sct .title_wrap .image {
    width: 10rem;
    margin-left: -3vw;
  }
}
@media (max-width: 425px) {
  .cmmn_contact_sct .title_wrap .image {
    width: 8rem;
  }
}
.cmmn_contact_sct .text_wrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 768px) {
  .cmmn_contact_sct .text_wrap {
    max-width: 500px;
    margin-left: auto;
  }
}
.cmmn_contact_sct .text_wrap .cmmn_btn {
  padding: 5.9rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: max(2.5rem, 19px);
  width: 100%;
  text-align: center;
  background-color: #fff;
  color: var(--color_key);
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .cmmn_contact_sct .text_wrap .cmmn_btn {
    padding: 1.5em 2vw;
    font-size: min(4.1vw, 18px);
  }
}
.cmmn_contact_sct .text_wrap .cmmn_btn::before {
  display: none;
}
@media (max-width: 768px) {
  .cmmn_contact_sct .text_wrap .cmmn_btn::after {
    width: 2.5em;
    height: 1.4em;
  }
}
.cmmn_contact_sct .text_wrap .tel_box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4rem;
}
@media (max-width: 768px) {
  .cmmn_contact_sct .text_wrap .tel_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
  }
}
.cmmn_contact_sct .text_wrap .tel_box .title {
  font-size: max(2.2rem, 15px);
  font-family: var(--font_title);
  color: var(--color_key);
  position: relative;
  padding-bottom: 0.75em;
}
@media (max-width: 768px) {
  .cmmn_contact_sct .text_wrap .tel_box .title {
    font-size: 16px;
  }
}
.cmmn_contact_sct .text_wrap .tel_box .title::before {
  content: "";
  display: block;
  width: 100%;
  height: 0.5em;
  background-image: url("./assets/images/icon/border_h_blue.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: 0;
}
.cmmn_contact_sct .text_wrap .tel_box .tel {
  font-size: max(3rem, 18px);
  font-family: var(--font_title);
  color: var(--color_key);
  position: relative;
  padding-left: 1.25em;
  font-size: 25px;
}
.cmmn_contact_sct .text_wrap .tel_box .tel::before {
  content: "";
  display: block;
  width: 0.7em;
  height: 0.7em;
  background-image: url("./assets/images/icon/tel.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0.55em;
  left: 0;
}
.cmmn_contact_sct .text_wrap .tel_box .time {
  font-size: max(1.6rem, 13px);
}

/**
 * Swiper 4.5.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 16, 2019
 */
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 3;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

@media (max-width: 768px) {
  .thanks_headline {
    padding-top: 5rem;
    margin-bottom: 5rem;
  }
}
.thanks_headline .sunrise {
  width: 35rem;
}
@media (max-width: 768px) {
  .thanks_headline .sunrise {
    width: 30%;
  }
}
.thanks_headline .cmmn_sct_title {
  -webkit-writing-mode: unset;
      -ms-writing-mode: unset;
          writing-mode: unset;
  text-align: center;
  background-color: unset;
}
@media (max-width: 768px) {
  .thanks_headline .cmmn_sct_title {
    top: 0;
    bottom: 0;
  }
}
.thanks_headline .cmmn_sct_title .ja {
  color: #000;
}

.thanks_sct .text_wrap {
  text-align: center;
  line-height: 2;
}
@media (max-width: 960px) {
  .thanks_sct .text_wrap {
    font-size: 0.95em;
    text-align: left;
  }
}
.thanks_sct .text_wrap .box:not(:last-child) {
  margin-bottom: 2em;
}
@media (max-width: 768px) {
  .thanks_sct .text_wrap p:not(:last-child) {
    margin-bottom: 1em;
  }
}
.thanks_sct .btn_wrap a {
  margin: 0 auto;
}

@media (max-width: 768px) {
  .form_headline {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}
.form_headline .wave {
  margin-top: 0;
}

.contact_top_sct {
  text-align: center;
  font-family: var(--font_title);
}
.contact_top_sct .title_wrap {
  font-size: 1.05em;
  margin-bottom: 1.5em;
}
@media (max-width: 768px) {
  .contact_top_sct .title_wrap {
    font-size: 1em;
  }
}
.contact_top_sct .tel_wrap {
  border-top: 1px solid var(--line_blue);
  border-bottom: 1px solid var(--line_blue);
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}
.contact_top_sct .tel_wrap .title {
  font-size: 1.25em;
  color: var(--color_key);
}
@media (max-width: 768px) {
  .contact_top_sct .tel_wrap .title {
    font-size: 18px;
  }
}
.contact_top_sct .tel_wrap .tel {
  font-size: max(3rem, 22px);
  position: relative;
  padding-left: 1.25em;
  color: var(--color_key);
}
@media (max-width: 768px) {
  .contact_top_sct .tel_wrap .tel {
    font-size: 27px;
  }
}
.contact_top_sct .tel_wrap .tel::before {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  width: 0.75em;
  height: 0.75em;
  top: 0.95em;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(./assets/images/icon/tel.svg);
}
.contact_top_sct .tel_wrap .time {
  font-size: 0.95em;
}
.contact_top_sct .text_wrap {
  font-size: 1.05em;
}
@media (max-width: 768px) {
  .contact_top_sct .text_wrap {
    font-size: 1em;
    text-align: left;
  }
}
.contact_top_sct .text_wrap p {
  margin-bottom: 0.4em;
}

/* お申し込みフォーム --------- */
#customForm {
  border-bottom: 1px solid var(--gray);
  padding-bottom: 18rem;
}
@media (max-width: 960px) {
  #customForm {
    padding-bottom: 9rem;
    margin-bottom: 5rem;
  }
}
#customForm ::-webkit-input-placeholder {
  color: #9a9a9a;
}
#customForm ::-moz-placeholder {
  color: #9a9a9a;
}
#customForm :-ms-input-placeholder {
  color: #9a9a9a;
}
#customForm ::-ms-input-placeholder {
  color: #9a9a9a;
}
#customForm ::placeholder {
  color: #9a9a9a;
}
#customForm .red {
  color: #ea594f;
}
#customForm dl {
  padding: 7rem 15.5% 8rem;
  background-color: var(--beige);
}
@media (max-width: 960px) {
  #customForm dl {
    padding-left: 10%;
    padding-right: 10%;
  }
}
@media (max-width: 768px) {
  #customForm dl {
    padding: 3em 5vw 4.5em;
  }
}
#customForm dl .box {
  margin-bottom: 2em;
}
@media (max-width: 600px) {
  #customForm dl .box {
    margin-bottom: 1.5em;
  }
}
#customForm dl .box.jobs {
  margin-bottom: 2.5em;
}
@media (max-width: 600px) {
  #customForm dl .box.jobs {
    margin-bottom: 2em;
  }
}
#customForm dl .box.jobs dt {
  margin-bottom: 0.5em;
}
#customForm dl .box.jobs dd {
  font-size: 1.5em;
  font-weight: 500;
}
#customForm dl dt {
  margin-bottom: 0.75em;
  font-size: 1.2em;
  font-family: var(--font_title);
  position: relative;
  padding-left: 1.75em;
}
#customForm dl dt::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: url(./assets/images/icon/title_border.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 0.5em;
  left: 0;
}
#customForm dl dt.required:after {
  display: inline-block;
  content: "※必須";
  color: #ea594f;
  margin-left: 1em;
  font-size: 0.75em;
  font-weight: 500;
}
#customForm dl dd input, #customForm dl dd textarea {
  font-size: 0.9em;
  padding: 1em 1.3em;
  border: 1px solid #E5E2DA;
  border-radius: 5px;
  background-color: #fff;
}
#customForm dl dd input[type=checkbox], #customForm dl dd textarea[type=checkbox] {
  cursor: pointer;
}
#customForm dl dd input[type=radio], #customForm dl dd textarea[type=radio] {
  margin: auto;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 12px;
  height: 12px;
  border: 1px solid var(--gray);
  border-radius: 50%;
  position: relative;
  padding: 0.65em;
}
#customForm dl dd input[type=radio]:checked, #customForm dl dd textarea[type=radio]:checked {
  border-color: var(--color_key);
}
#customForm dl dd input[type=radio]:checked::after, #customForm dl dd textarea[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--color_key);
  border-radius: 50%;
}
@media (max-width: 768px) {
  #customForm dl dd input[type=radio], #customForm dl dd textarea[type=radio] {
    width: 13px;
    height: 13px;
  }
  #customForm dl dd input[type=radio]:checked::after, #customForm dl dd textarea[type=radio]:checked::after {
    width: 7px;
    height: 7px;
  }
}
#customForm dl dd input.haba, #customForm dl dd textarea.haba {
  display: block;
  width: 100%;
}
#customForm dl dd textarea {
  width: 100%;
  height: 18em;
}
#customForm dl dd .your_address {
  background: var(--color_key);
  padding: 0.5em;
  line-height: 1.2;
  font-size: max(1.2rem, 12px);
  margin-top: 1.5em;
  margin-bottom: 1em;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#customForm #cfAddressConfirm {
  font-size: 1.5em;
  display: block;
  line-height: 1.3;
  border-bottom: 1px solid #929292;
}
#customForm .privacy {
  font-size: max(1.5rem, 14px);
}
@media (max-width: 768px) {
  #customForm .privacy {
    font-size: 14px;
  }
}
#customForm .privacy a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1px;
}
#customForm .btn_wrap {
  width: 58%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}
@media (max-width: 600px) {
  #customForm .btn_wrap {
    width: 100%;
  }
}
#customForm .recptcha_notes {
  font-size: max(1.4rem, 12px);
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 768px) {
  #customForm .recptcha_notes {
    font-size: 12px;
    text-align: left;
  }
}

#cfAddressConfirm {
  font-size: 1.3em;
  color: #000;
  display: block;
  line-height: 1.3;
  padding: 3% 2.5%;
}

label {
  cursor: pointer;
}

.checkLayout01 label {
  line-height: 1.2;
  padding: 12px 10px 10px;
  display: inline-block;
  border-bottom: none;
}
.checkLayout01 label:last-child {
  border-bottom: none !important;
  margin-bottom: 15px;
}
.checkLayout01 .caution label:last-child {
  margin-bottom: 10px;
}
.checkLayout01 label.ag:hover {
  font-weight: bold;
}
.checkLayout01 label.ag.on {
  font-weight: bold;
}

.checkLayout02 {
  position: relative;
}
.checkLayout02 .form_radio03 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0.8em 2em;
}
@media (max-width: 768px) {
  .checkLayout02 .form_radio03 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5em;
  }
}
.checkLayout02 .formWrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.checkLayout02 label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
}
.checkLayout02 label.ag {
  padding: 0.2em 0.5em;
  border-radius: 5px;
  border: 1px solid transparent;
}
@media (max-width: 600px) {
  .checkLayout02 label.ag {
    padding: 0;
  }
}
.checkLayout02 label.ag:hover {
  border: 1px solid #929292;
  font-weight: bold;
}
.checkLayout02 label.ag.on {
  border: 1px solid #929292;
  font-weight: bold;
}

h4.tit_h4_inform {
  margin: 0 0 10px 0;
}

.policyBox_inform {
  width: 100% !important;
  height: 150px;
  padding: 10px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  overflow-y: scroll;
  background: #ffffff;
  border: 1px solid #ccc;
  font-size: 0.8em;
}
.policyBox_inform h2 {
  font-size: 1.6em;
  background: #f2f2f2;
  width: 100%;
  margin-left: 0;
}

.halfBox,
.oneThirdBox,
.zipBox {
  width: 100%;
}

.halfBox span.formWrap {
  width: 48%;
  display: block;
  float: left;
}
.halfBox span.formWrap:last-child {
  float: right;
}
.halfBox span.formWrap input {
  width: 93%;
}

.oneThirdBox span.formWrap {
  width: 25%;
  display: block;
  float: left;
}

.oneThirdBox span.formWrap input {
  width: 93%;
}

.zipBox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.8em;
}
.zipBox .formWrap {
  width: 55%;
  display: block;
}
.zipBox #postcode_span {
  margin: 0 10px 0 0;
  line-height: 30px;
}

.cfConfirm_button {
  text-align: center;
}

.cfConfirm_button > button,
.cfConfirm_button > input {
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* validate ---------------------*/
.formWrap {
  display: block;
}

.formWrap, .contact dd, .privacy {
  position: relative;
}

.validate_attention {
  position: absolute;
  bottom: -1.7em;
  left: 1em;
  background: #ea594f;
  color: #fff;
  padding: 0.2em 0.75em;
  display: block;
  font-size: max(1.2rem, 11px);
}
@media (max-width: 768px) {
  .validate_attention {
    font-size: 10px;
  }
}
.validate_attention:before {
  content: "";
  position: absolute;
  top: -0.5em;
  left: 2.5em;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 0.5em solid transparent;
  border-left: 0.5em solid transparent;
  border-bottom: 10px solid #ea594f;
  border-top: 0;
}

.caution::-webkit-input-placeholder {
  color: #ea594f;
}

.caution::-moz-placeholder {
  color: #ea594f;
}

.caution:-ms-input-placeholder {
  color: #ea594f;
}

.caution::-ms-input-placeholder {
  color: #ea594f;
}

.caution::placeholder {
  color: #ea594f;
}

.setWrap.caution {
  padding: 0.75em 0;
}
.setWrap.caution.form_check input {
  border: 1px solid #ea594f !important;
}
.setWrap.caution.form_check a {
  color: #ea594f;
}

/*---------------------
確認画面
---------------------*/
#cfCover {
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000000;
}

#cfConfirmBox {
  position: fixed;
  width: 600px;
  background: #fff;
  top: 5%;
  left: 50%;
  margin: 0 0 0 -300px;
  height: 90%;
  z-index: 1000000;
}
#cfConfirmBox dl {
  width: 90%;
  margin: auto;
  overflow-y: auto;
  margin: 20px auto 0;
}
#cfConfirmBox dl dt {
  float: left;
  padding: 10px 0 0 0;
  font-size: 14px;
}
#cfConfirmBox dl dd {
  padding: 10px 0 10px 190px;
  border-bottom: 1px solid #ddd;
  min-height: 24px;
  text-align: left;
}

p.cfConfirmTit {
  text-align: center;
  border-bottom: 5px solid #ddd;
  margin: 0px auto;
  padding: 40px 0 25px;
  line-height: 1;
  font-size: 20px;
  width: 90%;
  color: #000000;
}

#cfBtnBox {
  width: 600px;
  position: fixed;
  bottom: 5%;
  left: 50%;
  height: 60px;
  margin: 0 0 0 -300px;
  text-align: center;
  background: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
#cfBtnBox button {
  width: 230px;
  height: 45px;
  margin: 0 auto;
  border: none;
  cursor: pointer;
  color: #fff;
  background: var(--color_key);
  border-radius: 30px;
  margin: 0 0 0 5px;
  font-size: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#cfBtnBox button:hover {
  opacity: 0.7;
}
#cfBtnBox button#cfBtn_rewrite {
  color: #fff;
  background: #bbb;
  margin: 0 5px 0 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/*--------------------------------------------------------------------------------- */
@media screen and (max-width: 600px) {
  /*------------------------------------------------
  お申し込みフォーム
  ------------------------------------------------- */
  /* validate ---------------------*/
  #cfConfirmBox {
    position: fixed;
    width: 95%;
    background: #fff;
    top: 5%;
    left: 50%;
    margin: 0 0 0 -47.5%;
    height: 90%;
  }
  #cfConfirmBox h2 {
    width: 94%;
  }
  #cfConfirmBox dl {
    width: 94%;
  }
  #cfConfirmBox dl dt {
    font-size: 12px;
  }
  #cfConfirmBox dl dd {
    padding: 10px 0 10px 145px;
  }
  #cfBtnBox {
    width: 95%;
    position: fixed;
    bottom: 5%;
    left: 2.5%;
    height: 60px;
    margin: 0 0 0 0px;
  }
  #cfBtnBox button {
    width: 45%;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 13;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 2;
  height: 140px;
}
.header.up {
  top: 0;
}
.header.page_top.down {
  top: 0;
}
.header.down {
  top: -140px;
}
@media (max-width: 960px) {
  .header.down {
    top: -102px;
  }
}
@media (max-width: 960px) {
  .header {
    height: 100px;
  }
}
.header .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: calc(100% - 32px);
  background-color: #fff;
  padding: 0 2vw;
}
@media (max-width: 960px) {
  .header .inner {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 1% 3vw;
  }
}
.header .logo_wrap {
  position: relative;
  width: 30rem;
}
@media (max-width: 768px) {
  .header .logo_wrap {
    width: 200px;
  }
}
.header .logo_wrap .logo {
  display: block;
}

.pc_nav {
  height: 100%;
  padding-bottom: min(2rem, 10px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
}
@media (max-width: 960px) {
  .pc_nav {
    padding-bottom: 0;
    display: none;
  }
}
.pc_nav .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.pc_nav .list > li > a {
  color: var(--text_color);
  font-size: max(16px, 0.8vw);
  padding: 1.5rem 2rem 1.5rem 4rem;
  text-align: center;
  line-height: 1.35;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  font-weight: bold;
  position: relative;
}
.pc_nav .list > li > a:hover {
  color: var(--green);
}
.pc_nav .list > li > a::after {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  width: 3rem;
  height: 3rem;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}
.pc_nav .list > li > a:hover:after {
  -webkit-transform: translateY(-50%) rotate(390deg);
          transform: translateY(-50%) rotate(390deg);
}
.pc_nav .list > li > a.red::after {
  background-image: url(./assets/images/deco/red.png);
}
.pc_nav .list > li > a.yellow::after {
  background-image: url(./assets/images/deco/yellow.png);
}
.pc_nav .list > li > a.green::after {
  background-image: url(./assets/images/deco/green.png);
}
.pc_nav .list > li > a.blue {
  padding-right: 2.5rem;
}
.pc_nav .list > li > a.blue::after {
  width: 2rem;
  height: 2rem;
  left: 0.5rem;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  background-image: url(./assets/images/deco/blue.png);
}
.pc_nav .list > li > a.blue::before {
  position: absolute;
  content: "";
  background-image: url(./assets/images/icon/ex_link_black.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.5rem;
  height: 1.5rem;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pc_nav .list > li > a.blue:hover::after {
  -webkit-transform: translateY(-50%) rotate(390deg);
          transform: translateY(-50%) rotate(390deg);
}
.pc_nav .list > li > a.blue:hover::before {
  background-image: url(./assets/images/icon/ex_link_green.svg);
}

li.dammy a {
  pointer-events: none;
  color: #ccc !important;
}
li.dammy a path {
  fill: #ccc;
}

/*  burger ------------------- */
.sp_menu {
  margin-left: auto;
  height: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  display: none;
}
@media (max-width: 960px) {
  .sp_menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.burger {
  cursor: pointer;
}
.burger:hover .burger_box::before, .burger:hover .burger_box::after, .burger:hover .burger_box .line {
  background-color: var(--green);
}
.burger .burger_box {
  width: 25px;
  height: 20px;
  position: relative;
  margin: 0 auto 2px;
}
.burger .burger_box::before, .burger .burger_box::after, .burger .burger_box .line {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: var(--green);
  display: block;
}
.burger .burger_box::before {
  top: 0;
}
.burger .burger_box::after {
  bottom: 0;
}
.burger .burger_box .line {
  top: 0;
  bottom: 0;
  margin: auto;
}

.header.open .burger_box::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: calc(50% - 1px);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.header.open .burger_box::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  bottom: calc(50% - 1px);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.header.open .burger_box .line {
  opacity: 0;
}

/*  nav ------------------- */
.header_overlay {
  position: fixed;
  inset: 0; /* top right bottom left = 0 */
  background: rgba(255, 255, 255, 0.873);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 0;
}

.sp_nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
.sp_nav img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
}
.sp_nav .sun {
  width: 20%;
  top: 0;
  left: 0;
  -webkit-transform: translate(20%, 35%);
          transform: translate(20%, 35%);
}
.sp_nav .sun.open {
  -webkit-animation: move_sun 1s steps(3, end) forwards;
          animation: move_sun 1s steps(3, end) forwards;
}
@-webkit-keyframes move_sun {
  from {
    -webkit-transform: translate(-20%, -15%);
            transform: translate(-20%, -15%);
  }
  to {
    -webkit-transform: translate(20%, 35%);
            transform: translate(20%, 35%);
  }
}
@keyframes move_sun {
  from {
    -webkit-transform: translate(-20%, -15%);
            transform: translate(-20%, -15%);
  }
  to {
    -webkit-transform: translate(20%, 35%);
            transform: translate(20%, 35%);
  }
}
.sp_nav .cloud {
  width: 13%;
  top: 0;
  left: 0;
  -webkit-transform: translate(160%, 250%);
          transform: translate(160%, 250%);
}
.sp_nav .cloud.open {
  -webkit-animation: move_cloud 1.2s steps(4, end) forwards;
          animation: move_cloud 1.2s steps(4, end) forwards;
}
@-webkit-keyframes move_cloud {
  from {
    -webkit-transform: translate(130%, -50%);
            transform: translate(130%, -50%);
  }
  to {
    -webkit-transform: translate(160%, 250%);
            transform: translate(160%, 250%);
  }
}
@keyframes move_cloud {
  from {
    -webkit-transform: translate(130%, -50%);
            transform: translate(130%, -50%);
  }
  to {
    -webkit-transform: translate(160%, 250%);
            transform: translate(160%, 250%);
  }
}
.sp_nav .scoop {
  width: 14%;
  bottom: 0%;
  right: 0%;
  -webkit-transform: translate(-10%, -20%) rotate(0deg);
          transform: translate(-10%, -20%) rotate(0deg);
}
.sp_nav .scoop.open {
  -webkit-animation: move_scoop 1.3s steps(3, end) forwards;
          animation: move_scoop 1.3s steps(3, end) forwards;
}
@-webkit-keyframes move_scoop {
  from {
    -webkit-transform: translate(30%, 50%) rotate(-105deg);
            transform: translate(30%, 50%) rotate(-105deg);
  }
  to {
    -webkit-transform: translate(-10%, -20%) rotate(0deg);
            transform: translate(-10%, -20%) rotate(0deg);
  }
}
@keyframes move_scoop {
  from {
    -webkit-transform: translate(30%, 50%) rotate(-105deg);
            transform: translate(30%, 50%) rotate(-105deg);
  }
  to {
    -webkit-transform: translate(-10%, -20%) rotate(0deg);
            transform: translate(-10%, -20%) rotate(0deg);
  }
}
.sp_nav .bucket {
  width: 16%;
  bottom: 0;
  right: 0%;
  -webkit-transform: translate(-100%, -30%) rotate(0deg);
          transform: translate(-100%, -30%) rotate(0deg);
}
.sp_nav .bucket.open {
  -webkit-animation: move_bucket 1s steps(4, end) forwards;
          animation: move_bucket 1s steps(4, end) forwards;
}
@-webkit-keyframes move_bucket {
  from {
    -webkit-transform: translate(0%, -30%) rotate(105deg);
            transform: translate(0%, -30%) rotate(105deg);
  }
  to {
    -webkit-transform: translate(-100%, -30%) rotate(0deg);
            transform: translate(-100%, -30%) rotate(0deg);
  }
}
@keyframes move_bucket {
  from {
    -webkit-transform: translate(0%, -30%) rotate(105deg);
            transform: translate(0%, -30%) rotate(105deg);
  }
  to {
    -webkit-transform: translate(-100%, -30%) rotate(0deg);
            transform: translate(-100%, -30%) rotate(0deg);
  }
}
.sp_nav .wrap {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  padding: 35% 0;
}
.sp_nav .wrap::before {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  display: block;
  background-image: url(./assets/images/deco/gray.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: right center;
  width: 96%;
  height: 100%;
}
.sp_nav .wrap ul {
  padding: 0 7% 0 14%;
}
.sp_nav .wrap li {
  width: 100%;
}
.sp_nav .wrap li a {
  display: block;
  width: 100%;
  color: var(--text_color);
  font-size: max(16px, 2.5vw);
  padding: 0 1em 0 3em;
  font-family: var(--font_key);
  font-weight: bold;
  position: relative;
  line-height: 3.2;
}
.sp_nav .wrap li a::before {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  width: 2em;
  height: 2em;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.sp_nav .wrap li a.red::before {
  background-image: url(./assets/images/deco/red.png);
}
.sp_nav .wrap li a.yellow::before {
  background-image: url(./assets/images/deco/yellow.png);
}
.sp_nav .wrap li a.green::before {
  background-image: url(./assets/images/deco/green.png);
}
.sp_nav .wrap li a.blue::before {
  width: 1.5em;
  height: 1.5em;
  left: 0.5em;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  background-image: url(./assets/images/deco/blue.png);
}
.sp_nav .wrap li a.blue span {
  position: relative;
  padding-right: 1rem;
}
.sp_nav .wrap li a.blue span::before {
  position: absolute;
  content: "";
  background-image: url(./assets/images/icon/ex_link_black.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 30%;
  height: 70%;
  top: 50%;
  right: -30%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/*  .header.open ------------------- */
@media (max-width: 960px) {
  body.open .sp_nav, body.open .header_overlay {
    -webkit-animation-name: fade_in;
            animation-name: fade_in;
    -webkit-animation-duration: 0.4s;
            animation-duration: 0.4s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    opacity: 0;
    display: block;
  }
}
body.open .header_overlay {
  visibility: visible;
}

.single_header {
  background-color: #FFFCF8;
}
.single_header .wrapper {
  position: relative;
}
@media (max-width: 960px) {
  .single_header .wrapper .facility_pc_nav {
    position: relative;
    margin-bottom: 1em;
  }
}
.single_header .wrapper .home_link_wrap {
  padding-right: 50px;
}
.single_header .wrapper .home_link {
  font-size: clamp(14px, 1vw, 16px);
  color: var(--green);
  font-weight: bold;
  padding-left: 1.5em;
  position: absolute;
  opacity: 1;
  left: 0;
  top: 2rem;
  line-height: 1.45;
}
@media (max-width: 960px) {
  .single_header .wrapper .home_link {
    position: relative;
    margin-bottom: 5%;
    top: 1em;
  }
}
.single_header .wrapper .home_link::before {
  position: absolute;
  content: "";
  background-image: url(./assets/images/icon/arrow_green.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 0.8em;
  height: 0.8em;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.single_header .wrapper .home_link:hover {
  opacity: 0.7;
}
.single_header .wrapper .name_wrap {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.single_header .wrapper .contact_wrap {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 960px) {
  .single_header .wrapper .contact_wrap {
    display: none;
  }
}
.single_header .contact_wrap .contact {
  font-size: clamp(14px, 2.6vw, 16px);
  font-weight: bold;
  color: var(--green);
  text-align: center;
}
.single_header .contact_wrap .tel {
  margin-bottom: 0.3em;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 0.3em;
  font-size: clamp(22px, 2.4vw, 26px);
  color: var(--green);
  font-weight: bold;
  padding-left: 1.5em;
  position: relative;
}
.single_header .contact_wrap .tel::before {
  position: absolute;
  content: "";
  background-image: url(./assets/images/icon/tel_green.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1em;
  height: 1em;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.single_header .contact_wrap .btm_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.single_header .contact_wrap .sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 0.5em;
}
.single_header .contact_wrap .sns a {
  padding: 2rem;
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
.single_header .contact_wrap .sns a:hover {
  opacity: 0.7;
}
.single_header .contact_wrap .sns a:not(:last-child) {
  margin-right: 0.5em;
}
.single_header .contact_wrap .sns a::before {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  width: 3.5rem;
  height: 3.5rem;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.single_header .contact_wrap .sns a.fb::before {
  background-image: url(./assets/images/icon/facebook.png);
}
.single_header .contact_wrap .sns a.ig::before {
  background-image: url(./assets/images/icon/instagram.png);
}
.single_header .contact_wrap .sns a.x::before {
  background-image: url(./assets/images/icon/x.png);
}
.single_header .contact_wrap .recruit_btn {
  white-space: nowrap;
}
.single_header .logo_wrap {
  padding-top: 2rem;
  width: 40vw;
  max-width: 260px;
  margin: 0 auto;
}
.single_header .logo_wrap .logo {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.single_header .facility_name {
  font-family: var(--font_key);
  font-weight: bold;
  color: var(--green_deep);
  font-size: clamp(22px, 4.2vw, 36px);
  text-align: center;
  letter-spacing: 0.05em;
}
.single_header .name {
  font-weight: bold;
  color: #000;
  font-size: clamp(16px, 1.6vw, 20px);
  text-align: center;
}
.single_header .facility_nav ul {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  max-width: 600px;
  margin: 0 auto 2%;
}
@media (max-width: 600px) {
  .single_header .facility_nav ul {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-column-gap: none;
       -moz-column-gap: none;
            column-gap: none;
    margin-bottom: 5%;
    -webkit-column-gap: 0.8rem;
       -moz-column-gap: 0.8rem;
            column-gap: 0.8rem;
  }
}
.single_header .facility_nav ul li {
  width: 24%;
}
.single_header .facility_nav ul li .nav_btn {
  width: 100%;
}
.single_header .header_overlay {
  z-index: 9;
}
.single_header .sp_nav.facility_nav {
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
}
.single_header .sp_nav.facility_nav .inr {
  background-color: #fff;
  padding: 15% 5% 5%;
}
@media (max-width: 600px) {
  .single_header .sp_nav.facility_nav .inr {
    padding-top: 28%;
  }
}
.single_header .sp_nav.facility_nav ul {
  padding-bottom: 5%;
  border-bottom: 1px solid var(--gray_border);
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 2rem;
}
.single_header .sp_nav.facility_nav ul li {
  width: 45%;
}
.single_header .sp_nav.facility_nav ul li .nav_btn {
  width: 100%;
}
.single_header .sp_nav.facility_nav .contact_wrap .tel_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.5em;
}
.single_header .sp_nav.facility_nav .contact_wrap .tel_wrap .contact {
  margin-right: 1em;
}
.single_header .sp_nav.facility_nav .contact_wrap .tel_wrap .tel {
  margin: 0;
}
.single_header .sp_nav.facility_nav .contact_wrap .btm_wrap {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.single_header .sp_nav.facility_nav .contact_wrap .btm_wrap .sns {
  margin-right: 1em;
}
.single_header .facility_sp_menu {
  z-index: 10;
  position: fixed;
  top: calc(32px + 1em);
  right: 3%;
  display: none;
}
@media (max-width: 960px) {
  .single_header .facility_sp_menu {
    display: block;
  }
}
.single_header .facility_sp_menu .burger {
  padding: 0.6em;
  border-radius: 100%;
  background-color: var(--green);
}
.single_header .facility_sp_menu .burger .burger_box {
  width: 23px;
  height: 18px;
}
.single_header .facility_sp_menu .burger .burger_box::before, .single_header .facility_sp_menu .burger .burger_box::after {
  background-color: #fff;
}
.single_header .facility_sp_menu .burger .burger_box .line {
  background-color: #fff;
}
.single_header .facility_sp_menu .burger.open .burger_box::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: calc(50% - 1px);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.single_header .facility_sp_menu .burger.open .burger_box::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  bottom: calc(50% - 1px);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.single_header .facility_sp_menu .burger.open .burger_box .line {
  opacity: 0;
}

.footer {
  position: relative;
  padding-top: 2em;
  overflow: hidden;
}
.footer::before {
  position: absolute;
  content: "";
  background-image: url(./assets/images/footer_gray.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 105%;
  top: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.footer .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 100%;
}
.footer .logo_wrap {
  position: relative;
  width: 30rem;
}
@media (max-width: 768px) {
  .footer .logo_wrap {
    width: 200px;
  }
}
.footer .logo_wrap .logo {
  display: block;
}
.footer .single_footer_inner {
  position: relative;
  padding-top: 2em;
  margin-left: auto;
  margin-right: auto;
  width: 90vw;
}
.footer .single_footer_inner .top_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 6%;
  gap: 1em;
}
@media (max-width: 768px) {
  .footer .single_footer_inner .top_wrap {
    display: block;
    margin-bottom: 10%;
  }
}
.footer .single_footer_inner .top_wrap .name_wrapper .logo_wrap {
  margin-bottom: 0.2em;
}
.footer .single_footer_inner .top_wrap .name_wrapper .name_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
  margin-bottom: 1em;
}
@media (max-width: 960px) {
  .footer .single_footer_inner .top_wrap .name_wrapper .name_wrap {
    display: block;
    margin-bottom: 0.5em;
  }
}
.footer .single_footer_inner .top_wrap .name_wrapper .facility_name {
  font-family: var(--font_key);
  font-weight: bold;
  color: var(--green_deep);
  font-size: clamp(22px, 4.2vw, 36px);
  margin-right: 0.5em;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .footer .single_footer_inner .top_wrap .name_wrapper .facility_name {
    margin-right: 0;
    line-height: 1.8;
  }
}
.footer .single_footer_inner .top_wrap .name_wrapper .name {
  font-weight: bold;
  font-size: clamp(16px, 2.6vw, 18px);
}
.footer .single_footer_inner .top_wrap .name_wrapper .address {
  font-size: clamp(16px, 2.6vw, 18px);
}
@media (max-width: 768px) {
  .footer .single_footer_inner .top_wrap .name_wrapper .address {
    margin-bottom: 1em;
  }
}
.footer .single_footer_inner .top_wrap .facility_nav ul {
  gap: 5rem;
}
@media (max-width: 768px) {
  .footer .single_footer_inner .top_wrap .facility_nav ul {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    gap: 2rem;
  }
}
.footer .single_footer_inner .top_wrap .facility_nav ul li {
  width: 24%;
}
@media (max-width: 425px) {
  .footer .single_footer_inner .top_wrap .facility_nav ul li .nav_btn {
    font-size: 3vw;
  }
}
.footer .single_footer_inner .bottom_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2em;
}
@media (max-width: 768px) {
  .footer .single_footer_inner .bottom_wrap {
    display: block;
  }
}
@media (max-width: 768px) {
  .footer .single_footer_inner .bottom_wrap .home {
    margin-bottom: 0.6em;
  }
}
.footer .single_footer_inner .bottom_wrap .home a {
  padding-right: 0.9em;
  color: var(--green);
  font-weight: bold;
}
@media (max-width: 768px) {
  .footer .single_footer_inner .bottom_wrap .home a {
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .footer .single_footer_inner .bottom_wrap .list {
    margin-bottom: 0.9em;
  }
}
.footer .single_footer_inner .bottom_wrap .list a {
  padding: 0 0.9em;
  color: var(--green);
  font-weight: bold;
}
@media (max-width: 768px) {
  .footer .single_footer_inner .bottom_wrap .list a {
    padding: 0;
  }
}
.footer .single_footer_inner .bottom_wrap .recruit {
  padding-left: 0.9em;
}
@media (max-width: 768px) {
  .footer .single_footer_inner .bottom_wrap .recruit {
    padding-left: 0;
  }
}
.footer .single_footer_inner .bottom_wrap li .link_btn {
  font-size: clamp(16px, 2.6vw, 18px);
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer .single_footer_inner .bottom_wrap li .link_btn:hover {
  opacity: 0.7;
}
.footer .single_footer_inner .bottom_wrap li:not(:last-child) .link_btn {
  position: relative;
}
.footer .single_footer_inner .bottom_wrap li:not(:last-child) .link_btn::before {
  position: absolute;
  content: "";
  background-color: var(--green);
  width: 1px;
  height: 100%;
  top: 0;
  right: 0;
}
@media (max-width: 768px) {
  .footer .single_footer_inner .bottom_wrap li:not(:last-child) .link_btn::before {
    display: none;
  }
}
.footer .copy {
  display: block;
  text-align: center;
  font-size: 0.7em;
  font-family: var(--font_key);
  margin: 1em 0;
  color: #000;
}
.footer .kousai_link {
  position: relative;
}

.front_page .tab_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.front_page .tab_wrapper .tab {
  padding: 0.5em 1em 1em;
  margin-bottom: 2em;
}

.gallery_tab {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: 10px;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
.gallery_tab li {
  margin-right: 10px;
}
@media (max-width: 600px) {
  .gallery_tab li {
    width: 25vw;
  }
}
.gallery_tab li a {
  background: #FFFCF8;
  display: block;
  color: var(--green);
  text-decoration: none;
  padding: 20px 30px 25px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
@media (max-width: 600px) {
  .gallery_tab li a {
    padding: 10px 10px 10px;
  }
}
.gallery_box {
  background: #FFFCF8;
  margin-bottom: 100px;
}
.gallery_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1em;
}
@media (max-width: 768px) {
  .gallery_list {
    grid-template-columns: 1fr 1fr;
    gap: 0.5em;
  }
}
@media (max-width: 600px) {
  .gallery_list {
    grid-template-columns: 1fr;
    gap: 1.2em;
  }
}
.gallery_list figure {
  cursor: pointer;
  position: relative;
  aspect-ratio: 7/5;
}
.gallery_list figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
.gallery_list figure .caption {
  position: absolute;
  bottom: -1px;
  left: -1px;
  background-color: #FFFCF8;
  border-radius: 0 0.5em 0 0;
  width: 80%;
  padding-left: 5rem;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.45;
  padding: 0.5em 0.5em 0.5em 3.25em;
}
@media (max-width: 600px) {
  .gallery_list figure .caption {
    font-size: 1.6rem;
    padding-left: 2.8em;
  }
}
.gallery_list figure .caption::before {
  position: absolute;
  content: "";
  background-image: url(./assets/images/icon/zoom.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 2.5rem;
  height: 2.5rem;
  top: 50%;
  left: 1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 768px) {
  .gallery_list figure .caption::before {
    width: 1.5em;
    height: 1.5em;
  }
}

.lg-actions .lg-next, .lg-actions .lg-prev {
  background-color: var(--green) !important;
}/*# sourceMappingURL=style.css.map */