@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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,
button,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 1em;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block; }

body {
  line-height: 1; }

ol,
ul {
  list-style: none;
  padding: 0px;
  margin: 0; }

blockquote,
q {
  quotes: none; }

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

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

a {
  text-decoration: none;
  color: inherit; }

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

:root {
  --headerHeight: 100px;
  --flexMargin: 16px;
  --paddingSection: 80px; }
  @media screen and (max-width: 959px) {
    :root {
      --headerHeight: 80px;
      --flexMargin: 8px;
      --paddingSection: 40px; } }

/*==========　基本設定　==========*/
* {
  box-sizing: border-box; }

html {
  font-size: 16px; }
  @media screen and (max-width: 959px) {
    html {
      font-size: 14px; } }

body {
  -webkit-text-size-adjust: 100%;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  color: #000;
  line-height: 1.5;
  width: 100%; }

.body_wrap {
  overflow: hidden; }

.container {
  width: 100%;
  height: 100%;
  max-width: calc(1280px + 24px * 2);
  padding-left: 24px;
  padding-right: 24px;
  margin-left: auto;
  margin-right: auto;
  position: relative; }

.inner {
  width: 100%;
  height: 100%;
  max-width: calc(1000px + 24px * 2);
  padding-left: 24px;
  padding-right: 24px;
  margin-left: auto;
  margin-right: auto;
  position: relative; }

.inner_contents {
  width: 100%;
  height: 100%;
  max-width: calc(900px + 24px * 2);
  padding-left: 24px;
  padding-right: 24px;
  margin-left: auto;
  margin-right: auto;
  position: relative; }

@media screen and (max-width: 959px) {
  .container .inner,
  .container .inner_contents,
  .inner .inner_contents {
    padding-left: 0;
    padding-right: 0; } }
.anchor {
  padding-top: var(--headerHeight);
  margin-top: calc(var(--headerHeight) * -1); }

/*========== レイアウト用 ==========*/
.padding_section {
  padding-top: var(--paddingSection);
  padding-bottom: var(--paddingSection); }

.relative_box {
  position: relative; }

.absolute_box {
  position: absolute; }

.position_left {
  top: 0;
  left: 0; }

.position_right {
  top: 0;
  right: 0; }

.flex_center {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center; }

.flex_box {
  width: calc(100% + (var(--flexMargin) * 2));
  margin: calc(var(--flexMargin) * -1);
  display: flex;
  flex-wrap: wrap; }
  .flex_box[data-property="justify_sb"] {
    justify-content: space-between; }
  .flex_box[data-property="justify_sa"] {
    justify-content: space-around; }
  .flex_box[data-property="justify_center"] {
    justify-content: center; }
  .flex_box[data-property="align_fs"] {
    align-items: flex-start; }
  .flex_box[data-property="align_fe"] {
    align-items: flex-end; }
  .flex_box[data-property="align_center"] {
    align-items: center; }
  .flex_box > * {
    margin: var(--flexMargin); }
  .flex_box[data-col="2"] > * {
    width: calc((100% / 2) - (var(--flexMargin) * 2)); }
  .flex_box[data-col="3"] > * {
    width: calc((100% / 3) - (var(--flexMargin) * 2)); }
  .flex_box[data-col="4"] > * {
    width: calc((100% / 4) - (var(--flexMargin) * 2)); }
  .flex_box[data-col="5"] > * {
    width: calc((100% / 5) - (var(--flexMargin) * 2)); }
  .flex_box[data-col="6"] > * {
    width: calc((100% / 6) - (var(--flexMargin) * 2)); }
  @media screen and (max-width: 959px) {
    .flex_box {
      justify-content: center; }
      .flex_box:not(.sp_same)[data-col="2"] > *, .flex_box:not(.sp_same)[data-col="3"] > *, .flex_box:not(.sp_same)[data-col="4"] > *, .flex_box:not(.sp_same)[data-col="5"] > *, .flex_box:not(.sp_same)[data-col="6"] > * {
        width: calc((100% / 1) - (var(--flexMargin) * 2)); } }

/*==========
フォント
==========*/
.fw_mid {
  font-weight: 500; }

.fw_bold {
  font-weight: 700; }

.fw_black {
  font-weight: 900; }

.fs_12 {
  font-size: 0.75rem; }
  @media screen and (max-width: 959px) {
    .fs_12 {
      font-size: 1rem; } }

.fs_13 {
  font-size: 0.8125rem; }
  @media screen and (max-width: 959px) {
    .fs_13 {
      font-size: 1rem; } }

.fs_14 {
  font-size: 0.875rem; }
  @media screen and (max-width: 959px) {
    .fs_14 {
      font-size: 1rem; } }

.fs_15 {
  font-size: 0.9375rem; }
  @media screen and (max-width: 959px) {
    .fs_15 {
      font-size: 1rem; } }

.fs_16 {
  font-size: 1rem; }

.fs_17 {
  font-size: 1.0625rem; }
  @media screen and (max-width: 959px) {
    .fs_17 {
      font-size: 1rem; } }

.fs_18 {
  font-size: 1.125rem; }
  @media screen and (max-width: 959px) {
    .fs_18 {
      font-size: 1rem; } }

.fs_19 {
  font-size: 1.1875rem; }
  @media screen and (max-width: 959px) {
    .fs_19 {
      font-size: 1.125rem; } }

.fs_20 {
  font-size: 1.25rem; }
  @media screen and (max-width: 959px) {
    .fs_20 {
      font-size: 1.125rem; } }

.fs_21 {
  font-size: 1.3125rem; }
  @media screen and (max-width: 959px) {
    .fs_21 {
      font-size: 1.125rem; } }

.fs_22 {
  font-size: 1.375rem; }
  @media screen and (max-width: 959px) {
    .fs_22 {
      font-size: 1.125rem; } }

.fs_24 {
  font-size: 1.5rem; }
  @media screen and (max-width: 959px) {
    .fs_24 {
      font-size: 1.25rem; } }

.fs_26 {
  font-size: 1.625rem; }
  @media screen and (max-width: 959px) {
    .fs_26 {
      font-size: 1.25rem; } }

.fs_28 {
  font-size: 1.75rem; }
  @media screen and (max-width: 959px) {
    .fs_28 {
      font-size: 1.25rem; } }

.fs_30 {
  font-size: 1.875rem; }
  @media screen and (max-width: 959px) {
    .fs_30 {
      font-size: 1.25rem; } }

.fs_32 {
  font-size: 2rem; }
  @media screen and (max-width: 959px) {
    .fs_32 {
      font-size: 1.5rem; } }

.fs_34 {
  font-size: 2.125rem; }
  @media screen and (max-width: 959px) {
    .fs_34 {
      font-size: 1.5rem; } }

.fs_36 {
  font-size: 2.25rem; }
  @media screen and (max-width: 959px) {
    .fs_36 {
      font-size: 1.5rem; } }

.fs_40 {
  font-size: 2.5rem; }
  @media screen and (max-width: 959px) {
    .fs_40 {
      font-size: 1.5rem; } }

/*==========
汎用クラス
==========*/
.text_justify {
  text-align: justify;
  text-justify: inter-ideograph;
  text-align-last: left; }

.text_left {
  text-align: left; }

.text_right {
  text-align: right; }

.text_center {
  text-align: center; }

.block_center {
  margin-left: auto;
  margin-right: auto; }

.sp_only {
  display: none; }
  @media screen and (max-width: 959px) {
    .sp_only {
      display: block; } }

.pc_only {
  display: block; }
  @media screen and (max-width: 959px) {
    .pc_only {
      display: none; } }

.clearfix::after {
  content: "";
  display: block;
  clear: both; }

/*==========
余白指定
==========*/
.mt_1em {
  margin-top: 1em; }

.mt_2em {
  margin-top: 2em; }

.mt_08 {
  margin-top: 8px; }

.mt_16 {
  margin-top: 16px; }

.mt_24 {
  margin-top: 24px; }

.mt_32 {
  margin-top: 32px; }

.mt_40 {
  margin-top: 40px; }

.mt_56 {
  margin-top: 56px; }
  @media screen and (max-width: 959px) {
    .mt_56 {
      margin-top: 40px; } }

.mt_64 {
  margin-top: 64px; }
  @media screen and (max-width: 959px) {
    .mt_64 {
      margin-top: 40px; } }

.mt_80 {
  margin-top: 80px; }
  @media screen and (max-width: 959px) {
    .mt_80 {
      margin-top: 40px; } }

.mt_120 {
  margin-top: 120px; }
  @media screen and (max-width: 959px) {
    .mt_120 {
      margin-top: 80px; } }

.mt_160 {
  margin-top: 160px; }
  @media screen and (max-width: 959px) {
    .mt_160 {
      margin-top: 80px; } }

.mb_1em {
  margin-bottom: 1em; }

.mb_2em {
  margin-bottom: 2em; }

.mb_08 {
  margin-bottom: 8px; }

.mb_16 {
  margin-bottom: 16px; }

.mb_24 {
  margin-bottom: 24px; }

.mb_32 {
  margin-bottom: 32px; }

.mb_40 {
  margin-bottom: 40px; }

.mb_56 {
  margin-bottom: 56px; }
  @media screen and (max-width: 959px) {
    .mb_56 {
      margin-bottom: 40px; } }

.mb_64 {
  margin-bottom: 64px; }
  @media screen and (max-width: 959px) {
    .mb_64 {
      margin-bottom: 40px; } }

.mb_80 {
  margin-bottom: 80px; }
  @media screen and (max-width: 959px) {
    .mb_80 {
      margin-bottom: 40px; } }

.mb_120 {
  margin-bottom: 120px; }
  @media screen and (max-width: 959px) {
    .mb_120 {
      margin-bottom: 80px; } }

.mb_160 {
  margin-bottom: 160px; }
  @media screen and (max-width: 959px) {
    .mb_160 {
      margin-bottom: 80px; } }

.pt_1em {
  padding-top: 1em; }

.pt_2em {
  padding-top: 2em; }

.pt_08 {
  padding-top: 8px; }

.pt_16 {
  padding-top: 16px; }

.pt_24 {
  padding-top: 24px; }

.pt_32 {
  padding-top: 32px; }

.pt_40 {
  padding-top: 40px; }

.pt_56 {
  padding-top: 56px; }
  @media screen and (max-width: 959px) {
    .pt_56 {
      padding-top: 40px; } }

.pt_64 {
  padding-top: 64px; }
  @media screen and (max-width: 959px) {
    .pt_64 {
      padding-top: 40px; } }

.pt_80 {
  padding-top: 80px; }
  @media screen and (max-width: 959px) {
    .pt_80 {
      padding-top: 40px; } }

.pt_120 {
  padding-top: 120px; }
  @media screen and (max-width: 959px) {
    .pt_120 {
      padding-top: 80px; } }

.pt_160 {
  padding-top: 160px; }
  @media screen and (max-width: 959px) {
    .pt_160 {
      padding-top: 80px; } }

.pb_1em {
  padding-bottom: 1em; }

.pb_2em {
  padding-bottom: 2em; }

.pb_08 {
  padding-bottom: 8px; }

.pb_16 {
  padding-bottom: 16px; }

.pb_24 {
  padding-bottom: 24px; }

.pb_32 {
  padding-bottom: 32px; }

.pb_40 {
  padding-bottom: 40px; }

.pb_56 {
  padding-bottom: 56px; }
  @media screen and (max-width: 959px) {
    .pb_56 {
      padding-bottom: 40px; } }

.pb_64 {
  padding-bottom: 64px; }
  @media screen and (max-width: 959px) {
    .pb_64 {
      padding-bottom: 40px; } }

.pb_80 {
  padding-bottom: 80px; }
  @media screen and (max-width: 959px) {
    .pb_80 {
      padding-bottom: 40px; } }

.pb_120 {
  padding-bottom: 120px; }
  @media screen and (max-width: 959px) {
    .pb_120 {
      padding-bottom: 80px; } }

.pb_160 {
  padding-bottom: 160px; }
  @media screen and (max-width: 959px) {
    .pb_160 {
      padding-bottom: 80px; } }

/*========== 汎用オブジェクト ==========*/
/*==========
汎用デザイン
==========*/
.asterisk {
  padding-left: 1em;
  text-indent: -1em; }
  .asterisk::before {
    content: '※'; }

.inline_block {
  display: inline-block; }

.text_label {
  background: linear-gradient(transparent 50%, #ffff00 50%); }

.text_yellow {
  color: #ffff00; }

.text_red {
  color: #c53727; }

.text_dot {
  display: inline-block;
  text-align: center;
  padding-top: 0.625em;
  margin-top: -0.325em;
  position: relative; }
  .text_dot::after {
    content: '・';
    position: absolute;
    top: 0;
    left: 0;
    font-size: 0.875em;
    margin-left: 0.125em; }

.title_label {
  text-align: center;
  background-color: #00aa83;
  color: #fff;
  padding: 0.875em 0.5em; }
  .title_label .title {
    font-weight: 400;
    letter-spacing: 0.2em; }

.google_map {
  position: relative;
  width: 100%; }
  .google_map iframe {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.youtube_wrap {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: 0;
  padding-top: 56.25%; }
  .youtube_wrap iframe {
    border: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.label_post_date {
  display: inline-block;
  font-size: 0.9375rem;
  border: 1px solid #000;
  padding: 0.4em 0.5em;
  margin: 0.25em 0;
  margin-left: auto;
  line-height: 1;
  text-align: center; }

/*==========
バナー
==========*/
[class^="banner_"]:not(.banner_slide) {
  margin-top: var(--paddingSection);
  margin-bottom: var(--paddingSection); }

.banner_reserve {
  width: 100%;
  height: 100%; }
  .banner_reserve .bg {
    background: center/cover url("../img/common/banner_reserve_bg.jpg") no-repeat; }
  .banner_reserve img {
    width: 100%;
    max-width: 760px; }
  .banner_reserve a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc($paddingLR * 0.5); }

.banner_catalog_01,
.banner_catalog_02,
.banner_catalog_03 {
  color: #fff; }
  .banner_catalog_01 .bg,
  .banner_catalog_02 .bg,
  .banner_catalog_03 .bg {
    background: center/cover url("../img/common/banner_catalog_01_bg.jpg") no-repeat;
    padding-top: 40px;
    padding-bottom: 24px; }
  .banner_catalog_01 .flex,
  .banner_catalog_02 .flex,
  .banner_catalog_03 .flex {
    display: flex;
    align-items: center;
    justify-content: space-between; }
  .banner_catalog_01 .title_sub,
  .banner_catalog_02 .title_sub,
  .banner_catalog_03 .title_sub {
    font-size: 1.75rem; }
  .banner_catalog_01 .title,
  .banner_catalog_02 .title,
  .banner_catalog_03 .title {
    font-size: 2.625rem;
    line-height: 1.125;
    margin-bottom: 0.625em; }
  .banner_catalog_01 .text,
  .banner_catalog_02 .text,
  .banner_catalog_03 .text {
    font-size: 1.0625rem; }
  .banner_catalog_01 .text_area,
  .banner_catalog_02 .text_area,
  .banner_catalog_03 .text_area {
    flex: 1;
    font-weight: 500; }
  .banner_catalog_01 .btn_01,
  .banner_catalog_02 .btn_01,
  .banner_catalog_03 .btn_01 {
    margin-top: 56px; }
    .banner_catalog_01 .btn_01::before,
    .banner_catalog_02 .btn_01::before,
    .banner_catalog_03 .btn_01::before {
      content: '';
      width: 117px;
      height: 56px;
      position: absolute;
      top: 0;
      right: 0;
      transform: translate(75%, -110%); }
  @media screen and (max-width: 959px) {
    .banner_catalog_01 .flex,
    .banner_catalog_02 .flex,
    .banner_catalog_03 .flex {
      flex-direction: column;
      align-items: center; }
      .banner_catalog_01 .flex > *,
      .banner_catalog_02 .flex > *,
      .banner_catalog_03 .flex > * {
        width: 100%;
        flex: 0 1 auto; }
    .banner_catalog_01 .title_sub,
    .banner_catalog_02 .title_sub,
    .banner_catalog_03 .title_sub {
      font-size: 1.125rem; }
    .banner_catalog_01 .title,
    .banner_catalog_02 .title,
    .banner_catalog_03 .title {
      font-size: 1.5rem; }
    .banner_catalog_01 .text,
    .banner_catalog_02 .text,
    .banner_catalog_03 .text {
      font-size: 1rem; }
    .banner_catalog_01 .text_area,
    .banner_catalog_02 .text_area,
    .banner_catalog_03 .text_area {
      margin-right: 0%;
      max-width: 480px; }
    .banner_catalog_01 .img_area,
    .banner_catalog_02 .img_area,
    .banner_catalog_03 .img_area {
      max-width: 280px;
      margin-right: 0%;
      margin-top: 2em; }
    .banner_catalog_01 .btn_01,
    .banner_catalog_02 .btn_01,
    .banner_catalog_03 .btn_01 {
      margin-top: 40px;
      background-color: rgba(83, 71, 65, 0.8); }
      .banner_catalog_01 .btn_01::before,
      .banner_catalog_02 .btn_01::before,
      .banner_catalog_03 .btn_01::before {
        content: '';
        width: 80px;
        height: 38px;
        transform: translate(0%, -110%); } }

.banner_catalog_01 {
  color: #000; }
  .banner_catalog_01 .bg {
    background: center/cover url("../img/common/banner_catalog_01_bg.jpg") no-repeat; }
  .banner_catalog_01 .btn_01::before {
    background: center/contain url("../img/common/banner_catalog_01_btn_text.svg") no-repeat; }

.banner_catalog_02 .bg {
  background: center/cover url("../img/common/banner_catalog_02_bg.jpg") no-repeat; }
.banner_catalog_02 .btn_01::before {
  background: center/contain url("../img/common/banner_catalog_02_btn_text.svg") no-repeat; }

.banner_catalog_03 .bg {
  background: center/cover url("../img/common/banner_catalog_03_bg.jpg") no-repeat; }
.banner_catalog_03 .btn_01 {
  background-color: rgba(83, 71, 65, 0.8); }
  .banner_catalog_03 .btn_01::before {
    background: center/contain url("../img/common/banner_catalog_03_btn_text.svg") no-repeat; }

.banner_present .bg {
  background: center/cover url("../img/common/banner_present_bg.jpg") no-repeat;
  padding: 40px 0; }
.banner_present .flex {
  display: flex;
  justify-content: space-between; }
.banner_present .img_left,
.banner_present .img_right {
  max-width: 380px;
  flex: 1; }
  .banner_present .img_left img,
  .banner_present .img_right img {
    width: 100%; }
.banner_present .img_left {
  margin-right: -2%; }
.banner_present .img_right {
  margin-left: -2%; }
.banner_present .text_area {
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  font-weight: 500;
  position: relative;
  z-index: 1; }
.banner_present .title_sub {
  font-size: 1.75rem; }
.banner_present .title {
  font-size: 2.625rem;
  line-height: 1.25;
  margin-bottom: 2em; }
.banner_present .btn_01 {
  width: 100%;
  margin-top: auto;
  background-color: #333333cc;
  border-color: #fff; }
@media screen and (max-width: 1279px) {
  .banner_present .title {
    font-size: 2rem; } }
@media screen and (max-width: 959px) {
  .banner_present .flex {
    justify-content: center; }
  .banner_present .img_left,
  .banner_present .img_right {
    max-width: 160px; }
  .banner_present .img_left {
    margin-right: 2%; }
  .banner_present .img_right {
    margin-left: 2%; }
  .banner_present .title_sub {
    font-size: 1.25rem; }
  .banner_present .title {
    font-size: 1.5rem; } }
@media screen and (max-width: 639px) {
  .banner_present .title {
    margin-bottom: 3em; }
  .banner_present .flex {
    justify-content: space-around;
    align-items: center; }
  .banner_present .img_left,
  .banner_present .img_right {
    max-width: 160px; }
  .banner_present .img_left {
    margin-left: -15%;
    margin-right: -15%; }
  .banner_present .img_right {
    margin-right: -15%;
    margin-left: -15%; } }

.banner_half {
  display: flex;
  flex-wrap: wrap;
  gap: 16px; }
  .banner_half a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px; }
  .banner_half > * {
    flex: 1;
    position: relative;
    z-index: 1;
    overflow: hidden; }
    .banner_half > *::before {
      content: '';
      width: 100%;
      height: 100%;
      position: absolute;
      z-index: -2;
      transition: transform 0.5s; }
    .banner_half > *::after {
      content: '';
      width: 100%;
      height: 100%;
      background: #000;
      mix-blend-mode: multiply;
      opacity: 0.45;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      z-index: -1; }
    @media screen and (min-width: 960px) {
      .banner_half > *:hover::before {
        transform: scale(1.05); } }
  .banner_half img {
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto; }
  .banner_half .text_area {
    color: #fff;
    text-align: center;
    margin-bottom: 0.5em; }
  .banner_half .title_sub {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.1em; }
  .banner_half .title {
    font-size: 2.25rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1.25; }
  .banner_half .reserve::before {
    background: center/cover url("../img/common/banner_reserve_half_bg.jpg") no-repeat; }
  .banner_half .present::before {
    background: center/cover url("../img/common/banner_present_half_bg.jpg") no-repeat; }
  @media screen and (max-width: 959px) {
    .banner_half > * {
      width: 100%;
      flex: 0 1 auto; }
    .banner_half .title_sub {
      font-size: 1rem; }
    .banner_half .title {
      font-size: 1.25rem; } }

.banner_half_text {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #fff; }
  .banner_half_text > * {
    flex: 1;
    padding: 64px 24px;
    position: relative;
    z-index: 1; }
    .banner_half_text > *::after {
      content: '';
      width: 100%;
      height: 100%;
      background-color: #000;
      opacity: 0.45;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      z-index: -1; }
  .banner_half_text .text_area {
    font-weight: 500;
    text-align: center; }
  .banner_half_text .title_sub {
    font-size: 1.5rem;
    letter-spacing: 0.1em; }
  .banner_half_text .title {
    font-size: 2.375rem;
    letter-spacing: 0.1em;
    margin-bottom: 1em; }
  .banner_half_text .text {
    font-size: 1.125rem;
    letter-spacing: 0.1em; }
  .banner_half_text .btn_01 {
    margin-right: auto;
    margin-left: auto;
    margin-top: 8%;
    background-color: #00aa83;
    border-color: #00aa83; }
  .banner_half_text .event {
    background: center/cover url("../img/common/banner_event_half_bg.jpg") no-repeat; }
  .banner_half_text .works {
    background: center/cover url("../img/common/banner_works_half_bg.jpg") no-repeat; }
  @media screen and (max-width: 959px) {
    .banner_half_text > * {
      width: 100%;
      flex: 0 1 auto;
      padding: 24px 24px; }
    .banner_half_text .title_sub {
      font-size: 1.25rem; }
    .banner_half_text .title {
      font-size: 1.75rem; }
    .banner_half_text .text {
      font-size: 1rem;
      letter-spacing: 0;
      margin-top: 0.5em; }
    .banner_half_text .btn_01 {
      margin-right: auto;
      margin-top: 5%; } }

.banner_diagnose .bg {
  background: center/cover url("../img/common/banner_diagnose_bg.jpg") no-repeat;
  padding: 40px 0; }
.banner_diagnose .text_area {
  font-weight: 500; }
.banner_diagnose .title_sub {
  font-size: 1.75rem;
  letter-spacing: 0.1em; }
.banner_diagnose .title {
  font-size: 3.75rem;
  letter-spacing: 0.1em; }
.banner_diagnose .text {
  font-size: 1.125rem;
  letter-spacing: 0.1em; }
.banner_diagnose .btn_01 {
  margin-left: auto;
  margin-top: 11%; }
@media screen and (max-width: 959px) {
  .banner_diagnose .title_sub {
    font-size: 1.25rem; }
  .banner_diagnose .title {
    font-size: 1.75rem; }
  .banner_diagnose .text {
    font-size: 1rem;
    letter-spacing: 0;
    margin-top: 0.5em; }
  .banner_diagnose .btn_01 {
    margin-right: auto;
    margin-top: 20%; } }

.banner_event {
  color: #fff;
  text-align: center;
  font-weight: 500; }
  .banner_event .bg {
    background: center/cover url("../img/common/banner_event_bg.jpg") no-repeat;
    padding: 40px 0; }
  .banner_event .title_sub {
    font-size: 1.75rem; }
  .banner_event .title {
    font-size: 2.625rem; }
  .banner_event .btn_01 {
    margin-left: auto;
    margin-right: auto;
    margin-top: 16%;
    border-radius: 15px; }
  @media screen and (max-width: 959px) {
    .banner_event .title_sub {
      font-size: 1.25rem; }
    .banner_event .title {
      font-size: 1.75rem; }
    .banner_event .btn_01 {
      margin-top: 20%; } }

.banner_model {
  color: #fff;
  text-align: center;
  font-weight: 500; }
  .banner_model .bg {
    background: center/cover url("../img/common/banner_model_bg.jpg") no-repeat;
    padding: 40px 0; }
  .banner_model .title_sub {
    font-size: 1.75rem; }
  .banner_model .title {
    font-size: 2.625rem; }
  .banner_model .btn_01 {
    margin-left: auto;
    margin-right: auto;
    margin-top: 16%;
    border-radius: 15px; }
  @media screen and (max-width: 959px) {
    .banner_model .title_sub {
      font-size: 1.25rem; }
    .banner_model .title {
      font-size: 1.75rem; }
    .banner_model .btn_01 {
      margin-top: 20%; } }

.banner_sns .title_01 .en {
  font-size: 2.25rem; }
.banner_sns .title_01 .ja {
  font-size: 2.25rem;
  margin-top: 0.5em; }
.banner_sns .list_sns {
  display: flex;
  flex-wrap: wrap; }
  .banner_sns .list_sns > * {
    flex: 1; }
  .banner_sns .list_sns img {
    width: 100%; }
@media screen and (max-width: 959px) {
  .banner_sns .title_01 .en {
    font-size: 1.5rem; }
  .banner_sns .title_01 .ja {
    font-size: 1.25rem; } }
@media screen and (max-width: 639px) {
  .banner_sns .list_sns > * {
    flex: 0 1 auto;
    width: calc(100% / 3); } }

.banner_menu .list_menu {
  display: flex;
  flex-wrap: wrap;
  gap: 16px; }
  .banner_menu .list_menu a {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    padding: 40px 24px;
    position: relative; }
    .banner_menu .list_menu a::after {
      content: '';
      width: 32px;
      height: 32px;
      display: block;
      background: center/contain url("../img/common/icon_btn_arrow.svg") no-repeat;
      margin-top: 16px;
      margin-left: auto;
      position: absolute;
      right: 24px;
      bottom: 24px;
      transition: transform 0.5s; }
  .banner_menu .list_menu > * {
    width: calc((100% - (16px *1)) / 2);
    height: 343px;
    position: relative;
    z-index: 1;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; }
    .banner_menu .list_menu > *::before {
      content: '';
      width: 100%;
      height: 100%;
      position: absolute;
      z-index: -2;
      transition: transform 0.5s; }
    .banner_menu .list_menu > *::after {
      content: '';
      width: 100%;
      height: 100%;
      background: #000;
      opacity: 0.45;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      z-index: -1; }
    @media screen and (min-width: 960px) {
      .banner_menu .list_menu > *:hover::before {
        transform: scale(1.05); }
      .banner_menu .list_menu > *:hover a::after {
        transform: rotate(360deg); } }
  .banner_menu .list_menu .title {
    font-size: 3rem;
    font-weight: 700; }
  .banner_menu .list_menu .title_sub {
    font-size: 1.625rem;
    font-weight: 700; }
  .banner_menu .list_menu .text {
    font-size: 1.125rem;
    font-weight: 700; }
  @media screen and (max-width: 1279px) {
    .banner_menu .list_menu .title {
      font-size: 2.5rem; } }
  @media screen and (max-width: 959px) {
    .banner_menu .list_menu a {
      padding: 1em; }
      .banner_menu .list_menu a::after {
        width: 24px;
        height: 24px;
        right: 1em;
        bottom: 1em; }
    .banner_menu .list_menu > * {
      height: 200px; }
    .banner_menu .list_menu .title {
      font-size: 1rem;
      letter-spacing: 0em; }
    .banner_menu .list_menu .title_sub {
      font-size: 0.875rem; }
    .banner_menu .list_menu .text {
      font-size: 0.75rem;
      margin-top: 0.5em; } }
.banner_menu .guide::before {
  background: center/cover url("../img/common/banner_menu_01.jpg") no-repeat; }
.banner_menu .reform::before {
  background: center/cover url("../img/common/banner_menu_02.jpg") no-repeat; }
.banner_menu .strong::before {
  background: center/cover url("../img/common/banner_menu_03.jpg") no-repeat; }
.banner_menu .maintenance::before {
  background: center/cover url("../img/common/banner_menu_04.jpg") no-repeat; }

.banner_shop {
  position: relative; }
  .banner_shop::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #efefef;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -2; }
  .banner_shop .text_area {
    position: absolute;
    z-index: 2; }
  .banner_shop .title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.75em; }
  .banner_shop .title_sub {
    font-size: 1.8125rem;
    font-weight: 700;
    margin-top: 0.75em; }
  .banner_shop .text {
    font-size: 1.25rem;
    font-weight: 500;
    margin-top: 1em; }
  .banner_shop .img_area {
    max-width: 1200px;
    margin-right: calc(50% - 50vw);
    position: relative; }
    .banner_shop .img_area img {
      margin-left: auto; }
  @media screen and (max-width: 959px) {
    .banner_shop .text_area {
      position: relative;
      margin-bottom: -10%; }
    .banner_shop .title {
      font-size: 1.5rem; }
    .banner_shop .title_sub {
      font-size: 1.25rem; }
    .banner_shop .text {
      font-size: 1rem; }
    .banner_shop .img_area img {
      width: 100%;
      max-width: 640px;
      margin-left: auto;
      margin-right: auto; } }

/*==========
タブ表示
==========*/
.tab_button {
  display: flex;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: 500; }
  .tab_button > * {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5em 1em;
    background-color: #cccccc;
    color: #fff;
    cursor: pointer; }
    .tab_button > *.active {
      background-color: #004534; }
    @media screen and (min-width: 960px) {
      .tab_button > * {
        transition: opacity 0.5s; }
        .tab_button > *:hover {
          opacity: 0.75; } }
    .tab_button > * a {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: -0.5em -1em;
      padding: 0.5em 1em; }
  .tab_button .icon {
    margin-left: 0.5em;
    margin-right: -0.5em;
    max-width: 160px;
    width: 25%;
    flex: 1; }
  @media screen and (max-width: 959px) {
    .tab_button {
      justify-content: center;
      flex-wrap: wrap;
      font-size: 1.125rem;
      margin-bottom: 8px; }
      .tab_button > * {
        flex: 0 1 auto;
        width: calc((100% - (8px * 1)) / 2);
        padding: 0.5em; }
      .tab_button a {
        margin: -0.5em;
        padding: 0.5em; }
      .tab_button .icon {
        width: 40px;
        flex: 0 1 auto;
        margin-left: 0; } }

.tab_content {
  background-color: #004534;
  padding: 24px 0; }

/*==========
スライダー
==========*/
.slick .slick-track {
  display: flex; }
.slick .slick-slide {
  height: auto; }
.slick .slick-arrow {
  z-index: 2;
  width: 32px;
  height: 32px;
  opacity: 1;
  top: 50%;
  transform: translateY(-50%); }
  .slick .slick-arrow::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1; }
.slick .slick-prev::before {
  background: center/contain url("../js/lib/slick/arrow_prev.svg") no-repeat; }
.slick .slick-next::before {
  background: center/contain url("../js/lib/slick/arrow_next.svg") no-repeat; }
.slick.slick-dotted.slick-slider,
.slick .slick-dotted.slick-slider {
  margin-bottom: calc(24px * 3); }
.slick .slick-dots li.slick-active button::before {
  opacity: 1; }
.slick .slick-dots {
  bottom: calc(24px * -2);
  display: flex;
  align-items: center;
  justify-content: center; }
  .slick .slick-dots li {
    width: 24px;
    height: 24px;
    margin: 0 8px; }
    .slick .slick-dots li button {
      width: 24px;
      height: 24px; }
      .slick .slick-dots li button::before {
        content: '';
        width: 24px;
        height: 24px;
        background-color: #fff;
        border-radius: 50%;
        opacity: 0.75; }
@media screen and (max-width: 959px) {
  .slick.slick-dotted.slick-slider,
  .slick .slick-dotted.slick-slider {
    margin-bottom: calc(12px * 3); }
  .slick .slick-dots {
    bottom: calc(12px * -2); }
    .slick .slick-dots li {
      width: 12px;
      height: 12px;
      margin: 0 8px; }
      .slick .slick-dots li button {
        width: 12px;
        height: 12px; }
        .slick .slick-dots li button::before {
          width: 12px;
          height: 12px; } }

.banner_slide {
  padding-top: 40px;
  padding-bottom: 1px;
  color: #004534; }
  .banner_slide .slick .slick-dots li button::before {
    background-color: #004534; }

.slide_banner_wrap {
  position: relative; }
  .slide_banner_wrap .item {
    width: 470px;
    margin: 0px 20px;
    transition: opacity 0.5s; }
  .slide_banner_wrap .img_area {
    height: 100%; }
    .slide_banner_wrap .img_area img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .slide_banner_wrap .slider_arrow_area {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: auto; }
  .slide_banner_wrap .slick-arrow {
    top: 0; }
  .slide_banner_wrap .slick-next {
    right: 24px; }
  .slide_banner_wrap .slick-prev {
    left: 24px; }
  @media screen and (min-width: 960px) {
    .slide_banner_wrap a:hover {
      opacity: 0.5; } }
  @media screen and (max-width: 959px) {
    .slide_banner_wrap .item {
      margin: 0 5px; } }

.slide_normal .slick-next {
  right: 24px; }
.slide_normal .slick-prev {
  left: 24px; }

/*==========
リスト
==========*/
.dl_01 {
  display: flex;
  flex-wrap: wrap; }
  .dl_01 dt,
  .dl_01 dd {
    padding: 0.5em 0.25em; }
    .dl_01 dt:not(:last-of-type),
    .dl_01 dd:not(:last-of-type) {
      border-bottom: 1px solid #000; }
  .dl_01 dt {
    width: 200px;
    padding-left: 2em; }
  .dl_01 dd {
    padding-left: 2em;
    width: calc(100% - 200px); }
  @media screen and (max-width: 959px) {
    .dl_01 dt,
    .dl_01 dd {
      width: 100%;
      text-align: left;
      padding: 0.5em; }
    .dl_01 dt {
      border-bottom: none;
      padding-bottom: 0; }
      .dl_01 dt:not(:last-of-type) {
        border-bottom: none; }
    .dl_01 dd {
      padding-top: 0.25em;
      padding-left: 1em; } }

.dl_02 {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.1875em; }
  .dl_02 .row {
    width: 50%;
    display: flex;
    border-bottom: 1px solid #534741; }
    .dl_02 .row:nth-of-type(-n + 2) {
      border-top: 1px solid #534741; }
    .dl_02 .row dt,
    .dl_02 .row dd {
      padding: 0.5em 1em; }
    .dl_02 .row dt {
      background-color: #e6e6e6;
      width: 140px; }
    .dl_02 .row dd {
      flex: 1; }
    .dl_02 .row.row_full {
      width: 100%; }
  @media screen and (max-width: 959px) {
    .dl_02 {
      font-size: 1em; }
      .dl_02 .row {
        width: 100%;
        flex-wrap: wrap;
        border-bottom: 1px solid #534741; }
        .dl_02 .row:nth-of-type(-n + 2) {
          border-top: none; }
        .dl_02 .row:first-of-type {
          border-top: 1px solid #534741; }
        .dl_02 .row dt {
          width: 100%; }
        .dl_02 .row.row_half_sp {
          width: 50%; } }

.list_dots {
  padding-left: 1em;
  text-indent: -1em; }
  .list_dots > *::before {
    content: "・"; }

.list_event {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 40px 8px; }
  .list_event > * {
    width: calc((100% - (8px * 1)) / 2);
    background-color: #fff;
    padding: 8px; }
    .list_event > * img {
      width: 100%; }
  .list_event .row_category {
    font-weight: 500;
    margin-bottom: 0.5em; }
    .list_event .row_category .open {
      background-color: #f29600; }
    .list_event .row_category .close {
      background-color: #ccc; }
  .list_event .img_area img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .list_event .text_area {
    width: 100%;
    margin-top: 8px;
    padding: 8px; }
  .list_event .title {
    width: 100%;
    font-size: 1.25rem;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-weight: 700; }
  .list_event .date,
  .list_event .place {
    margin-top: 0.25em;
    font-weight: 500; }
  .list_event .btn_01 {
    margin-top: 1em;
    font-size: 1rem;
    height: 56px;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto; }
  .list_event .close .img_area {
    position: relative; }
    .list_event .close .img_area::after {
      content: 'このイベントは終了しました';
      background-color: rgba(0, 0, 0, 0.6);
      color: #fff;
      width: 100%;
      height: 100%;
      font-weight: 500;
      position: absolute;
      top: 0;
      left: 0;
      display: flex;
      align-items: center;
      justify-content: center; }
  .list_event .close .btn_01 {
    pointer-events: none;
    background-color: #ccc;
    border-color: #ccc; }
  @media screen and (max-width: 959px) {
    .list_event {
      justify-content: center;
      gap: 24px; }
      .list_event > * {
        width: 100%;
        max-width: 320px; }
      .list_event .text_area {
        padding: 4px; }
      .list_event .btn_01 {
        height: 48px; } }

.row_category {
  display: flex;
  gap: 8px; }
  .row_category > * {
    padding: 0.125em 1em;
    background-color: #000;
    color: #fff; }

.list_model {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 8px; }
  .list_model > * {
    width: calc((100% - (8px * 1)) / 2);
    background-color: #fff;
    padding: 8px;
    display: flex;
    flex-direction: column; }
    .list_model > * img {
      width: 100%; }
  .list_model .img_area img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .list_model .text_area {
    flex: 1;
    width: 100%;
    margin-top: 8px;
    padding: 8px;
    display: flex;
    flex-direction: column; }
  .list_model .address {
    font-weight: 500; }
  .list_model .title {
    width: 100%;
    font-size: 1.5625rem;
    font-weight: 700;
    margin-bottom: 0.25em; }
  .list_model .btn_01 {
    font-size: 1rem;
    height: 56px;
    width: 100%;
    max-width: 260px;
    margin-top: auto;
    margin-left: auto;
    margin-right: auto; }
  @media screen and (max-width: 959px) {
    .list_model {
      justify-content: center;
      gap: 24px; }
      .list_model > * {
        width: 100%;
        max-width: 320px; }
      .list_model .text_area {
        padding: 4px; }
      .list_model .title {
        font-size: 1.25rem; }
      .list_model .btn_01 {
        height: 48px; } }

.list_sharp {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em 0.25em; }
  .list_sharp .sharp::before {
    content: '♯'; }
  @media screen and (min-width: 960px) {
    .list_sharp a {
      border-radius: 15px;
      transition: background-color 0.5s;
      padding: 0 0.5em; }
      .list_sharp a:hover {
        background-color: #ccc; } }
  @media screen and (max-width: 959px) {
    .list_sharp {
      gap: 0.5em 0.125em; } }

.list_lineup .item {
  margin: 24px;
  max-width: 480px; }
.list_lineup .title_area {
  padding: 0.75em 1em;
  display: flex;
  align-items: center;
  background-color: #f2f2f2; }
  .list_lineup .title_area::before {
    content: '';
    width: 56px;
    height: 90px;
    background: center/contain url("../img/common/icon_house.svg") no-repeat; }
.list_lineup .title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.25; }
.list_lineup .icon {
  margin-left: auto;
  padding-left: 0.25em;
  width: 29%; }
.list_lineup .text {
  margin-top: 0.25em;
  font-size: 1.3125rem; }
@media screen and (max-width: 959px) {
  .list_lineup .item {
    margin: 8px; }
  .list_lineup .title_area::before {
    margin-right: 0.5em;
    width: 24px;
    height: 40px; }
  .list_lineup .title {
    font-size: 1.25rem; }
  .list_lineup .icon {
    max-width: 80px; }
  .list_lineup .text {
    font-size: 1rem; } }

.list_design {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 24px; }
  .list_design > * {
    width: calc((100% - (24px * 2)) / 3);
    display: flex;
    flex-direction: column; }
  .list_design .img_area img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .list_design .text_area {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border: 1px solid #000;
    padding: 0.5em 1em 1em; }
  .list_design .title {
    font-size: 1.25rem;
    font-weight: 700; }
  .list_design .text {
    margin-top: 0.5em;
    margin-bottom: 0.75em;
    font-weight: 500; }
  .list_design .btn_01 {
    margin-top: auto;
    font-size: 1rem;
    height: 38px; }
    .list_design .btn_01::after {
      width: 21px;
      height: 21px; }
  @media screen and (max-width: 959px) {
    .list_design {
      justify-content: center; }
      .list_design > * {
        width: 100%;
        max-width: 320px; } }

/*==========
ボタン
==========*/
.btn_01 {
  background-color: #00aa83;
  border: 1px solid #00aa83;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 0.5em;
  padding-right: 3em;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  max-width: 366px;
  height: 66px;
  position: relative; }
  .btn_01.btn_long {
    max-width: 424px; }
  .btn_01.btn_round {
    border-radius: 15px; }
  .btn_01::after {
    content: '';
    width: 1.4444444em;
    height: 1.4444444em;
    background: center/contain url("../img/common/icon_btn_01.svg") no-repeat;
    position: absolute;
    right: 1em; }
  .btn_01.btn_anchor {
    background-color: #f7931e;
    border-color: #f7931e; }
    .btn_01.btn_anchor::after {
      transform: rotate(90deg); }
  @media screen and (min-width: 960px) {
    .btn_01 {
      transition: background-color 0.5s, color 0.5s; }
      .btn_01 .text_yellow {
        transition: color 0.5s; }
      .btn_01::after {
        transition: transform 0.5s; }
      .btn_01:hover::after {
        transform: rotate(360deg); } }
  @media screen and (max-width: 959px) {
    .btn_01 {
      height: 56px;
      font-size: 1.125rem; }
      .btn_01::after {
        width: 18px;
        height: 18px; } }

.btn_02 {
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 30px;
  margin-left: auto;
  margin-right: auto;
  padding: 0.25em 1.5em;
  width: fit-content;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3125em;
  font-weight: 500;
  letter-spacing: 0.1em; }
  @media screen and (min-width: 960px) {
    .btn_02 {
      transition: background-color 0.5s, color 0.5s; }
      .btn_02:hover {
        background-color: #000;
        color: #fff; } }
  @media screen and (max-width: 959px) {
    .btn_02 {
      font-size: 1.25rem;
      letter-spacing: 0.05em;
      height: 48px; } }

.btn_03 {
  width: fit-content;
  font-size: 1.125rem;
  color: #000;
  background-color: #00aa83;
  color: #fff;
  border-radius: 16px;
  padding: 0.325em 0.75em;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #00aa83; }
  @media screen and (min-width: 960px) {
    .btn_03 {
      transition: background-color 0.5s, color 0.5s; }
      .btn_03:hover {
        background-color: #fff;
        color: #00aa83; } }
  @media screen and (max-width: 959px) {
    .btn_03 {
      font-size: 1rem; } }

/*==========
タイトル
==========*/
.title_01 {
  text-align: center; }
  .title_01 .icon {
    margin-bottom: 0.75em;
    max-width: 15%;
    margin-left: auto;
    margin-right: auto; }
    .title_01 .icon img {
      margin-left: auto;
      margin-right: auto; }
  .title_01 .ja {
    font-size: 2rem;
    letter-spacing: 0.05em;
    font-weight: 700; }
  .title_01 .en {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #00aa83;
    margin-top: 0.5em; }
  @media screen and (max-width: 959px) {
    .title_01 .ja {
      font-size: 1.5rem; }
    .title_01 .en {
      font-size: 1rem;
      letter-spacing: 0.1em; } }

.title_underline {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding-bottom: 0.25em;
  text-align: center; }
  .title_underline .slash {
    position: relative; }
    .title_underline .slash::before, .title_underline .slash::after {
      content: '';
      width: 1px;
      height: 1.25em;
      background-color: #000;
      position: absolute;
      bottom: 0; }
    .title_underline .slash::before {
      left: -1em;
      transform: rotate(-45deg); }
    .title_underline .slash::after {
      right: -1em;
      transform: rotate(45deg); }
  .title_underline .line {
    position: relative; }
    .title_underline .line::after {
      content: '';
      width: calc(100% - 1em);
      height: 3px;
      background-color: #00aa83;
      position: absolute;
      bottom: -0.25em;
      left: 50%;
      transform: translateX(-50%); }
  @media screen and (max-width: 959px) {
    .title_underline {
      font-size: 1.25rem; } }

.title_search {
  display: flex;
  align-items: center; }
  .title_search::before {
    content: '';
    width: 1.125em;
    height: 1.125em;
    background: center bottom/contain url("../img/common/icon_search.svg") no-repeat;
    display: block;
    margin-right: 0.5em; }

/*========== 汎用レイアウト ==========*/
/*==========
ヘッダー
==========*/
#header {
  font-weight: 700;
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 99;
  transform: translate(-50%);
  width: 100%;
  height: var(--headerHeight);
  background-color: rgba(255, 255, 255, 0.8);
  transition: background-color 0.5s; }
  #header .container {
    height: 100%; }
  #header.bg {
    background-color: #fff; }
  #header .flex {
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between; }
  #header .logo_area {
    flex: 1; }
    #header .logo_area h1 {
      display: inline-block; }
  #header .menu_pc {
    display: flex;
    align-items: center;
    margin-left: auto; }
    @media screen and (min-width: 960px) {
      #header .menu_pc a {
        transition: background-color 0.5s; }
        #header .menu_pc a:hover {
          background-color: #ccc; } }
  #header .menu_area {
    display: flex;
    text-align: center;
    margin-right: 1em; }
    #header .menu_area a {
      line-height: 1.75;
      padding: 0.5em 1.5em;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center; }
    #header .menu_area > *:not(:last-of-type) {
      border-right: 1px solid #000; }
  #header .tel_area {
    max-width: 64px;
    margin-left: auto;
    display: none; }
  #header .menu_item {
    max-width: 12vw;
    line-height: 1;
    padding: 0.5em 1em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; }
    #header .menu_item .img_area {
      height: 45px; }
      #header .menu_item .img_area img {
        width: 100%;
        height: 100%;
        object-fit: contain; }
  #header .list_child_wrap {
    display: none;
    transform: translateY(var(--headerHeight));
    position: absolute;
    top: 0;
    left: auto;
    width: 560px;
    background-color: rgba(255, 255, 255, 0.9); }
    #header .list_child_wrap .list_child {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 1em;
      padding: 1em; }
      #header .list_child_wrap .list_child > * {
        width: calc(50% - 1em); }
    #header .list_child_wrap a {
      padding: 0.25em 0.75em;
      background-color: #cccccc;
      border-radius: 10px;
      text-align: left;
      display: flex;
      justify-content: space-between; }
      #header .list_child_wrap a::after {
        content: '';
        width: 15px;
        height: 8px;
        background: center/contain url("../img/common/icon_menu_child.svg") no-repeat;
        display: block; }
      @media screen and (min-width: 960px) {
        #header .list_child_wrap a {
          transition: opacity 0.5s; }
          #header .list_child_wrap a:hover {
            opacity: 0.75; } }
  @media screen and (max-width: 1279px) {
    #header .menu_area {
      margin-right: 0;
      font-size: 0.875rem; }
      #header .menu_area a {
        padding: 0.5em 0.75em; }
    #header .menu_item {
      padding: 0.5em 0.25em; } }
  @media screen and (max-width: 959px) {
    #header .menu_pc {
      display: none; }
    #header .logo_area {
      max-width: 132px;
      width: 65%; }
    #header .tel_area {
      display: block;
      max-width: 48px; } }

/*==========
ハンバーガーメニュー
==========*/
/*== ボタン ==*/
#hamburger_btn {
  width: 62px;
  height: calc(var(--headerHeight) / 2.75);
  margin-left: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 20;
  cursor: pointer; }
  #hamburger_btn span {
    transform-origin: center;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000;
    transition: all 0.5s;
    will-change: transform, margin; }
    #hamburger_btn span:not(:last-of-type) {
      margin-bottom: 23%; }
  @media screen and (max-width: 1279px) {
    #hamburger_btn {
      margin-left: 1em; } }
  @media screen and (max-width: 959px) {
    #hamburger_btn {
      width: 40px;
      height: calc(var(--headerHeight) / 2); }
      #hamburger_btn span:not(:last-of-type) {
        margin-bottom: 25%; } }

/*== メニューエリア ==*/
.hamburger_menu_area {
  background-color: #000;
  color: #fff;
  display: inline-block;
  height: 100vh;
  height: 100dvh;
  padding: var(--headerHeight) 24px 40px;
  position: absolute;
  top: 0;
  right: -100%;
  transition: right 0.5s;
  will-change: right;
  z-index: 10;
  will-change: right; }

/*== メニューリスト ==*/
.list_hamburger {
  max-height: 100%;
  overflow-y: auto;
  scrollbar-width: none; }
  .list_hamburger::-webkit-scrollbar {
    display: none; }
  .list_hamburger > * {
    margin-bottom: 1em; }

/*== 全体に対するアニメーション準備 ==*/
.body_wrap main {
  transition: transform 0.25s 0s;
  will-change: transform; }

/*== エリア外 ==*/
#hamburger_bg {
  width: 0px;
  height: 0px;
  background-color: #cccccc;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  transition: opacity 0.5s; }

/*== オープン時 ==*/
.body_wrap.hamburger_open main {
  transition: transform 0.25s 0.25s;
  transform: translateX(-20px);
  will-change: transform; }
.body_wrap.hamburger_open #hamburger_bg {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  opacity: 0.5; }
.body_wrap.hamburger_open .hamburger_menu_area {
  right: 0%; }
.body_wrap.hamburger_open #hamburger_btn span {
  background-color: #fff;
  margin-bottom: 0; }
  .body_wrap.hamburger_open #hamburger_btn span:nth-of-type(1) {
    margin-bottom: -1px;
    transform: rotate(45deg); }
  .body_wrap.hamburger_open #hamburger_btn span:nth-of-type(2) {
    height: 0; }
  .body_wrap.hamburger_open #hamburger_btn span:nth-of-type(3) {
    margin-top: -1px;
    width: 100%;
    transform: rotate(-45deg); }

/*==========
フッター
==========*/
#footer {
  background-color: #00aa83;
  color: #fff;
  padding-bottom: 0; }
  #footer .menu_area_pc {
    font-weight: 700;
    display: flex;
    justify-content: space-between; }
    #footer .menu_area_pc > *:not(:last-of-type) {
      padding-right: 1em; }
  #footer .menu_area_sp {
    display: none;
    font-weight: 500; }
  #footer .dropdown_parent {
    max-width: 160px;
    margin-bottom: 0.5em;
    cursor: pointer;
    position: relative; }
    #footer .dropdown_parent::before, #footer .dropdown_parent::after {
      content: "";
      position: absolute;
      top: 50%;
      right: 0.5em;
      width: 1em;
      height: 2px;
      background-color: #fff;
      transition: transform 0.3s ease-in-out;
      transform: translateY(-50%); }
    #footer .dropdown_parent::after {
      transform: translateY(-50%) rotate(90deg); }
    #footer .dropdown_parent.open::before {
      transform: translateY(-50%) rotate(180deg); }
    #footer .dropdown_parent.open::after {
      transform: translateY(-50%) rotate(180deg);
      opacity: 0; }
  #footer .dropdown_child {
    display: none;
    margin-bottom: 1em; }
    #footer .dropdown_child > * {
      margin-bottom: 0.5em; }
      #footer .dropdown_child > *::before {
        content: 'ー';
        margin-right: 0.5em; }
  #footer .foot_area {
    padding: 40px 0;
    background-color: #efefef;
    color: #000;
    font-weight: 500;
    margin-top: 80px; }
    #footer .foot_area .flex {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px; }
    #footer .foot_area .company_area {
      display: flex; }
    #footer .foot_area .name {
      display: flex;
      flex-direction: column;
      justify-content: space-around;
      font-size: 0.875rem;
      font-weight: 700;
      line-height: 1.75;
      margin-left: 1em;
      padding-left: 1em;
      border-left: 1px solid #000; }
  @media screen and (max-width: 959px) {
    #footer .menu_area_pc {
      display: none; }
    #footer .menu_area_sp {
      display: block; }
    #footer .foot_area {
      margin-top: 40px;
      padding-top: 40px; }
      #footer .foot_area .flex {
        flex-wrap: wrap;
        justify-content: center; }
      #footer .foot_area .company_area {
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
        width: 100%;
        margin-bottom: 1em; }
      #footer .foot_area .name {
        margin-left: 0em;
        padding-left: 0em;
        padding-bottom: 1em;
        margin-bottom: 1em;
        border-left: none;
        border-bottom: 1px solid #fff; }
      #footer .foot_area .logo {
        width: 100%;
        margin-bottom: 1.5em; }
        #footer .foot_area .logo img {
          margin-left: auto;
          margin-right: auto;
          max-width: 240px; }
      #footer .foot_area .tel_area img {
        max-width: 240px; } }

.list_footer_menu > *::before {
  content: 'ー';
  margin-right: 0.5em; }
.list_footer_menu > *:not(:last-of-type) {
  margin-bottom: 0.5em; }
.list_footer_menu .parent::before {
  content: '';
  margin-right: 0; }
.list_footer_menu .child {
  margin-left: 1em; }

/*==========
フロートメニュー
==========*/
#float_menu {
  position: fixed;
  right: 0;
  bottom: -100%;
  transition: bottom 0.5s;
  will-change: bottom;
  max-width: 40%; }
  #float_menu .flex {
    display: flex;
    justify-content: flex-end; }
  #float_menu.view {
    bottom: 0; }
  @media screen and (max-width: 959px) {
    #float_menu {
      width: 100%;
      max-width: 500px; } }

/*==========
コピーライト
==========*/
/*==========
PageToTop
==========*/
/*==========
Effect
==========*/
#mv.js_trigger {
  overflow: hidden; }
  #mv.js_trigger::before {
    transition: transform 2s ease-in-out;
    transform: scale(1.1); }
#mv.trigger::before {
  transform: scale(1); }

.fadeIn {
  opacity: 0;
  will-change: opacity;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out; }
  .fadeIn.trigger {
    animation-name: fadeIn; }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
.fadeUp {
  opacity: 0;
  transform: translateY(40px);
  will-change: transform, opacity;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out; }
  .fadeUp.trigger {
    animation-name: fadeUp; }

.fadeUpList > * {
  opacity: 0;
  transform: translateY(40px);
  will-change: transform, opacity;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out; }
.fadeUpList.trigger > * {
  animation-name: fadeUp; }

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px); }
  100% {
    opacity: 1;
    transform: translateY(0px); } }
.slideLeft {
  will-change: transform, opacity;
  transform: translateX(-40px);
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out; }
  .slideLeft.trigger {
    animation-name: slideLeft; }

@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(-40px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }
.slideRight {
  will-change: transform, opacity;
  transform: translateX(40px);
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out; }
  .slideRight.trigger {
    animation-name: slideRight; }

@keyframes slideRight {
  0% {
    opacity: 0;
    transform: translateX(40px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }
.hide {
  position: absolute;
  left: -999999999999vw; }

.swiper-wrapper img {
  width: 100%; }
  .swiper-wrapper img.sp_only {
    display: none; }
  @media screen and (max-width: 959px) {
    .swiper-wrapper img.pc_only {
      display: none; }
    .swiper-wrapper img.sp_only {
      display: block; } }
