@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;
  word-wrap: break-word;
}

ol,
ul {
  list-style: none;
  padding: 0;
  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%;
  image-rendering: -webkit-optimize-contrast;
}

video {
  outline: none;
  filter: drop-shadow(0 0 rgba(0, 0, 0, 0));
}

svg {
  height: auto;
}

:root {
  --headerHeight: 6.25rem;
  --paddingSection: 6.25rem;
  --paddingLR: 1rem;
  --border_radius: 1.25rem;
}
@media screen and (max-width: 979px) {
  :root {
    --headerHeight: 4rem;
    --paddingSection: 2.5rem;
    --border_radius: 0.71428rem;
  }
}

:root {
  --color_main: #4B4B4B;
  --color_sub: #EFEFEF;
}

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

html {
  font-size: clamp(10px, 1.028277vw, 16px);
}
@media screen and (max-width: 979px) {
  html {
    font-size: 16px;
  }
}

body {
  overflow-wrap: anywhere;
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  line-height: 1.75;
  width: 100%;
}

.body_wrap {
  overflow: hidden;
  margin-top: calc(var(--headerHeight) + 3rem);
}
@media screen and (max-width: 979px) {
  .body_wrap {
    margin-top: calc(var(--headerHeight) + 2.5625rem);
  }
}

.container {
  width: 100%;
  max-width: calc(97.25rem + var(--paddingLR) * 2);
  padding-left: var(--paddingLR);
  padding-right: var(--paddingLR);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.inner {
  width: 100%;
  max-width: calc(68.75rem + var(--paddingLR) * 2);
  padding-left: var(--paddingLR);
  padding-right: var(--paddingLR);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.inner_contents {
  width: 100%;
  max-width: calc(57.5rem + var(--paddingLR) * 2);
  padding-left: var(--paddingLR);
  padding-right: var(--paddingLR);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

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

a:not([class]) {
  color: #04417E;
  text-decoration: underline;
}

@media screen and (min-width: 960px) {
  a:not([class^=btn_]) {
    transition: opacity 0.5s;
  }
  a:not([class^=btn_]):hover {
    opacity: 0.5;
  }
}

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

.margin_section {
  margin-top: var(--paddingSection);
  margin-bottom: var(--paddingSection);
}
.margin_section:first-child {
  margin-top: 0;
}
.margin_section:last-child {
  margin-bottom: 0;
}

.box_relative {
  position: relative;
}

.box_absolute {
  position: absolute;
}

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

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

/*==========
フォント
==========*/
.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: 979px) {
  .fs_12 {
    font-size: 1rem;
  }
}

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

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

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

.fs_16 {
  font-size: 1rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*==========
汎用クラス
==========*/
.ib {
  display: inline-block;
}

.text_justify {
  text-align: justify;
  text-justify: inter-ideograph;
  -moz-text-align-last: left;
       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: 979px) {
  .sp_only {
    display: block;
  }
}

.pc_only {
  display: block;
}
@media screen and (max-width: 979px) {
  .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: 0.5rem;
}

.mt_16 {
  margin-top: 1rem;
}

.mt_24 {
  margin-top: 1.5rem;
}

.mt_32 {
  margin-top: 2rem;
}

.mt_40 {
  margin-top: 2.5rem;
}

.mt_56 {
  margin-top: 3.5rem;
}
@media screen and (max-width: 979px) {
  .mt_56 {
    margin-top: 2.5rem;
  }
}

.mt_64 {
  margin-top: 4rem;
}
@media screen and (max-width: 979px) {
  .mt_64 {
    margin-top: 2.5rem;
  }
}

.mt_80 {
  margin-top: 5rem;
}
@media screen and (max-width: 979px) {
  .mt_80 {
    margin-top: 2.5rem;
  }
}

.mt_120 {
  margin-top: 7.5rem;
}
@media screen and (max-width: 979px) {
  .mt_120 {
    margin-top: 5rem;
  }
}

.mt_160 {
  margin-top: 10rem;
}
@media screen and (max-width: 979px) {
  .mt_160 {
    margin-top: 5rem;
  }
}

.mb_1em {
  margin-bottom: 1em;
}

.mb_2em {
  margin-bottom: 2em;
}

.mb_08 {
  margin-bottom: 0.5rem;
}

.mb_16 {
  margin-bottom: 1rem;
}

.mb_24 {
  margin-bottom: 1.5rem;
}

.mb_32 {
  margin-bottom: 2rem;
}

.mb_40 {
  margin-bottom: 2.5rem;
}

.mb_56 {
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 979px) {
  .mb_56 {
    margin-bottom: 2.5rem;
  }
}

.mb_64 {
  margin-bottom: 4rem;
}
@media screen and (max-width: 979px) {
  .mb_64 {
    margin-bottom: 2.5rem;
  }
}

.mb_80 {
  margin-bottom: 5rem;
}
@media screen and (max-width: 979px) {
  .mb_80 {
    margin-bottom: 2.5rem;
  }
}

.mb_120 {
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 979px) {
  .mb_120 {
    margin-bottom: 5rem;
  }
}

.mb_160 {
  margin-bottom: 10rem;
}
@media screen and (max-width: 979px) {
  .mb_160 {
    margin-bottom: 5rem;
  }
}

.pt_1em {
  padding-top: 1em;
}

.pt_2em {
  padding-top: 2em;
}

.pt_08 {
  padding-top: 0.5rem;
}

.pt_16 {
  padding-top: 1rem;
}

.pt_24 {
  padding-top: 1.5rem;
}

.pt_32 {
  padding-top: 2rem;
}

.pt_40 {
  padding-top: 2.5rem;
}

.pt_56 {
  padding-top: 3.5rem;
}
@media screen and (max-width: 979px) {
  .pt_56 {
    padding-top: 2.5rem;
  }
}

.pt_64 {
  padding-top: 4rem;
}
@media screen and (max-width: 979px) {
  .pt_64 {
    padding-top: 2.5rem;
  }
}

.pt_80 {
  padding-top: 5rem;
}
@media screen and (max-width: 979px) {
  .pt_80 {
    padding-top: 2.5rem;
  }
}

.pt_120 {
  padding-top: 7.5rem;
}
@media screen and (max-width: 979px) {
  .pt_120 {
    padding-top: 5rem;
  }
}

.pt_160 {
  padding-top: 10rem;
}
@media screen and (max-width: 979px) {
  .pt_160 {
    padding-top: 5rem;
  }
}

.pb_1em {
  padding-bottom: 1em;
}

.pb_2em {
  padding-bottom: 2em;
}

.pb_08 {
  padding-bottom: 0.5rem;
}

.pb_16 {
  padding-bottom: 1rem;
}

.pb_24 {
  padding-bottom: 1.5rem;
}

.pb_32 {
  padding-bottom: 2rem;
}

.pb_40 {
  padding-bottom: 2.5rem;
}

.pb_56 {
  padding-bottom: 3.5rem;
}
@media screen and (max-width: 979px) {
  .pb_56 {
    padding-bottom: 2.5rem;
  }
}

.pb_64 {
  padding-bottom: 4rem;
}
@media screen and (max-width: 979px) {
  .pb_64 {
    padding-bottom: 2.5rem;
  }
}

.pb_80 {
  padding-bottom: 5rem;
}
@media screen and (max-width: 979px) {
  .pb_80 {
    padding-bottom: 2.5rem;
  }
}

.pb_120 {
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 979px) {
  .pb_120 {
    padding-bottom: 5rem;
  }
}

.pb_160 {
  padding-bottom: 10rem;
}
@media screen and (max-width: 979px) {
  .pb_160 {
    padding-bottom: 5rem;
  }
}

/*========== 汎用オブジェクト ==========*/
/*==========
汎用デザイン
==========*/
.text_red {
  color: red;
}

.asterisk {
  line-height: 1.25;
  position: relative;
  padding-left: 1em;
}
.asterisk::before {
  content: "※";
  position: absolute;
  left: 0;
}

.layout_thumb .caption {
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
.layout_thumb .text {
  text-align: center;
  margin-top: 0.5rem;
}
.layout_thumb .layout_title {
  padding: 1.5rem var(--paddingLR);
  max-width: 21.875rem;
  width: calc(100% - var(--paddingLR) * 4);
}
.layout_thumb .layout_body {
  padding: 0 !important;
  border-radius: var(--border_radius);
}
.layout_thumb .text_link {
  font-size: 1.125rem;
  padding: 0.25em 2em;
  border-radius: 100px;
  border: 1px solid #000;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 1em;
}
.layout_thumb .text_link::after {
  content: "";
  width: 1em;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_btn_01.svg") no-repeat;
  display: block;
}
@media screen and (max-width: 979px) {
  .layout_thumb {
    max-width: 20rem;
    margin-left: auto;
    margin-right: auto;
  }
  .layout_thumb .caption {
    font-size: 1.125rem;
  }
  .layout_thumb .text_link {
    font-size: 0.875rem;
  }
}

.layout_map {
  width: 100%;
}
.layout_map:not(:first-child) {
  margin-top: calc(var(--paddingSection) * 0.8);
}
.layout_map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 22/13;
  border-radius: var(--border_radius);
}

.layout_title {
  background-color: #fff;
  border-radius: var(--border_radius);
  position: relative;
  z-index: 1;
  width: calc(100% - var(--paddingLR) * 3);
  max-width: 49.0625rem;
  margin-left: auto;
  margin-right: auto;
  padding: 3rem var(--paddingLR);
}
.layout_title::before, .layout_title::after {
  content: "";
  width: 1.25rem;
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  z-index: 1;
}
.layout_title::before {
  left: -1.25rem;
  background: center/contain url("../img/common/deco_round_L.svg") no-repeat;
}
.layout_title::after {
  right: -1.25rem;
  background: center/contain url("../img/common/deco_round_R.svg") no-repeat;
}
.layout_title .title_01 {
  margin-bottom: 0;
}
@media screen and (max-width: 979px) {
  .layout_title {
    padding: 1rem var(--paddingLR);
  }
  .layout_title::before, .layout_title::after {
    width: 0.625rem;
  }
  .layout_title::before {
    left: -0.625rem;
  }
  .layout_title::after {
    right: -0.625rem;
  }
}

.layout_body {
  background-color: var(--color_sub);
  border-radius: var(--border_radius);
  padding: var(--paddingSection) var(--paddingLR);
}

.layout_flex {
  display: flex;
  gap: 2.5rem;
}
.layout_flex > * {
  flex: 1;
}
@media screen and (max-width: 979px) {
  .layout_flex {
    flex-direction: column;
  }
}

.text_deco {
  font-size: 1.875rem;
  font-weight: 600;
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.text_deco::before {
  content: "";
  width: 1px;
  height: 1.25em;
  background-color: #000;
  display: block;
}
@media screen and (max-width: 979px) {
  .text_deco {
    font-size: 1.125rem;
  }
}

.indent_flex {
  display: flex;
}
.indent_flex > * {
  margin-top: 0;
}
.indent_flex > *:not(:first-child) {
  flex: 1;
}
@media screen and (max-width: 979px) {
  .indent_flex {
    flex-direction: column;
  }
}

.text + .text {
  margin-top: 1rem;
}

.img_round {
  border-radius: 0.625em;
  overflow: hidden;
}
.img_round img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.banner_contact {
  margin: var(--paddingSection) 0;
}
.banner_contact .bg {
  background: center/cover url("../img/common/banner_contact.jpg") no-repeat;
  color: #fff;
  border-radius: 1.25rem;
  padding: var(--paddingLR);
}
.banner_contact .flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem 6.875rem;
  max-width: 62.5rem;
  min-height: 26rem;
  margin-left: auto;
  margin-right: auto;
}
.banner_contact .text_area {
  line-height: 1.25;
  text-align: center;
}
.banner_contact .title {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}
.banner_contact .text {
  font-size: 1.25rem;
}
.banner_contact .btn_area {
  flex: 1;
}
.banner_contact .btn {
  width: 100%;
  max-width: 31.875rem;
  height: 4.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  background-color: #fff;
  border-radius: 6.25rem;
  color: #000;
  font-size: 1.25rem;
  padding: 1rem var(--paddingLR);
}
@media screen and (min-width: 960px) {
  .banner_contact .btn {
    transition: background-color 0.5s;
  }
  .banner_contact .btn:hover {
    background-color: var(--color_sub);
    opacity: 1;
  }
}
.banner_contact .icon {
  width: 2em;
  aspect-ratio: 1/1;
}
.banner_contact .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 979px) {
  .banner_contact .bg {
    padding: 2.5rem var(--paddingLR);
  }
  .banner_contact .flex {
    flex-direction: column;
    min-height: auto;
  }
  .banner_contact .title {
    font-size: 1.25rem;
  }
  .banner_contact .text {
    font-size: 0.875rem;
  }
  .banner_contact .btn_area {
    width: 100%;
  }
  .banner_contact .btn {
    height: 3.5rem;
    font-size: 0.875rem;
    width: 100%;
    max-width: 17.5rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.banner_recomend .title_area {
  background-color: #fff;
  padding: 1em 2.5em;
  font-size: 1.625rem;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: calc(100% - var(--paddingLR) * 4);
  margin-left: auto;
  margin-right: auto;
  transform: translateY(50%);
  z-index: 1;
}
.banner_recomend .body_area {
  border: 2px solid #000;
  border-radius: var(--border_radius);
  padding: 3.5rem var(--paddingLR);
}
.banner_recomend .row_link {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem 5rem;
}
.banner_recomend .link {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 1.875rem;
}
.banner_recomend .link::after {
  content: "";
  width: 0.75em;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_btn_01.svg") no-repeat;
}
@media screen and (max-width: 979px) {
  .banner_recomend .title_area {
    font-size: 1rem;
  }
  .banner_recomend .body_area {
    padding: 2.5rem var(--paddingLR);
  }
  .banner_recomend .link {
    gap: 1rem;
    font-size: 1.125rem;
  }
  .banner_recomend .link .icon {
    max-width: 2rem;
  }
}

/*==========
リスト
==========*/
ol {
  counter-reset: ol;
  line-height: 1.5;
}
ol > * {
  padding-left: 2.5em;
  position: relative;
}
ol > *::before {
  counter-increment: ol;
  content: counter(ol) ".";
  position: absolute;
  left: 0;
  width: 1.5em;
  text-align: right;
}
ol > *:not(:last-child) {
  margin-bottom: 1em;
}

.dl_01 {
  font-size: 1.25rem;
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  line-height: 1.5;
}
.dl_01 dt:not(:last-of-type),
.dl_01 dd:not(:last-of-type) {
  margin-bottom: 1em;
}
.dl_01 dt {
  padding-right: 0.5em;
}
@media screen and (max-width: 979px) {
  .dl_01 {
    font-size: 0.875rem;
  }
}

.list_circle {
  font-size: 1.25rem;
  line-height: 1.25;
}
.list_circle > * {
  padding-left: 1.25em;
  position: relative;
}
.list_circle > *::before {
  content: "";
  width: 1em;
  aspect-ratio: 1/1;
  background-color: #000;
  border-radius: 50%;
  position: absolute;
  top: 0.175em;
  left: 0;
}
.list_circle > *:not(:last-of-type) {
  margin-bottom: 0.5em;
}
@media screen and (max-width: 979px) {
  .list_circle {
    font-size: 0.875rem;
  }
}

.list_01 {
  font-size: 1.25rem;
  line-height: 1.25;
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  border-top: 1px dotted #000;
}
.list_01 dt,
.list_01 dd {
  border-bottom: 1px dotted #000;
  padding: 1.5em 0.5em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.list_01 dt {
  padding-right: 2em;
  margin-right: -1px;
}
.list_01:not(:first-child) {
  margin-top: calc(var(--paddingSection) * 0.8);
}
@media screen and (max-width: 979px) {
  .list_01 {
    font-size: 0.875rem;
  }
  .list_01 dt {
    max-width: 8rem;
  }
}

.table_wrap:not(:first-child) {
  margin-top: calc(var(--paddingSection) * 0.4);
}
.table_wrap .text_scroll {
  display: none;
}
@media screen and (max-width: 979px) {
  .table_wrap {
    overflow-x: auto;
  }
  .table_wrap table {
    min-width: 40rem;
  }
  .table_wrap .text_scroll {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 1em;
  }
}

.table_01 {
  font-size: 1.25rem;
  line-height: 1.25;
}
.table_01 th,
.table_01 td {
  border: 1px solid #000;
  padding: 1em 0.75em;
}
.table_01 th {
  vertical-align: middle;
  font-weight: 500;
}
.table_01 td {
  vertical-align: top;
  width: 15rem;
}
.table_01 .icon {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.table_01 .icon + p {
  margin-top: 0.5em;
}
.table_01 p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.table_01 .bg {
  background-color: var(--color_sub);
}
@media screen and (max-width: 979px) {
  .table_01 {
    font-size: 0.875rem;
  }
  .table_01 .icon {
    max-width: 2rem;
  }
}

.table_02 {
  font-size: 1.125rem;
  line-height: 1.25;
}
.table_02 thead {
  background-color: #4B4B4B;
  color: #fff;
}
.table_02 thead th {
  text-align: center;
}
.table_02 th {
  font-weight: 500;
  text-align: left;
}
.table_02 th,
.table_02 td {
  border: 1px solid #000;
  padding: 1rem;
  vertical-align: middle;
}
.table_02 .bg {
  background-color: var(--color_sub);
}
.table_02 caption {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  caption-side: bottom;
  text-align: left;
}
@media screen and (max-width: 979px) {
  .table_02 {
    font-size: 0.875rem;
  }
  .table_02 caption {
    font-size: 0.75rem;
  }
}

/*==========
ボタン
==========*/
.btn_01 {
  cursor: pointer;
  width: 100%;
  max-width: 23.25rem;
  height: 4.375rem;
  border-radius: 6.25rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
  font-size: 1.125rem;
}
.btn_01::after {
  content: "";
  width: 1em;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_btn_01.svg") no-repeat;
}
.btn_01[data-color=white] {
  border-color: #fff;
}
@media screen and (min-width: 960px) {
  .btn_01 {
    transition: background-color 0.5s;
  }
  .btn_01::after {
    transition: transform 0.5s;
  }
  .btn_01:hover {
    background-color: var(--color_sub);
  }
  .btn_01:hover::after {
    transform: translateX(0.5em);
  }
}
@media screen and (max-width: 979px) {
  .btn_01 {
    font-size: 0.875rem;
    height: 3.5rem;
  }
}

.btn_02 {
  cursor: pointer;
  width: 100%;
  max-width: 18.25rem;
  height: 3.75rem;
  border-radius: 6.25rem;
  padding: 0.5em 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
  font-size: 1.125rem;
}
.btn_02[data-color=white] {
  border-color: #fff;
}
@media screen and (min-width: 960px) {
  .btn_02 {
    transition: background-color 0.5s;
  }
  .btn_02::after {
    transition: transform 0.5s;
  }
  .btn_02:hover {
    background-color: var(--color_sub);
  }
}
@media screen and (max-width: 979px) {
  .btn_02 {
    font-size: 0.875rem;
    height: 2.5rem;
    max-width: 12.5rem;
  }
}

.btn_modaal {
  font-size: 0.9375rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.125em 4em 0.125em 2em;
  gap: 0.5em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  height: 3.125rem;
  border: 1px solid #000;
  border-radius: 6.25rem;
  position: relative;
}
.btn_modaal::before, .btn_modaal::after {
  content: "";
  width: 1em;
  height: 2px;
  background-color: #000;
  position: absolute;
  top: 50%;
  right: 1.75em;
}
.btn_modaal::after {
  transform: rotate(90deg);
}
@media screen and (min-width: 960px) {
  .btn_modaal {
    transition: background-color 0.5s, color 0.5s;
  }
  .btn_modaal::before, .btn_modaal::after {
    transition: background-color 0.5s;
  }
  .btn_modaal:hover {
    color: #fff;
    background-color: var(--color_main);
  }
  .btn_modaal:hover::before, .btn_modaal:hover::after {
    background-color: #fff;
  }
}

/*==========
modaal
==========*/
body:has(#case) .modaal-content {
  max-height: calc(100vh - var(--paddingLR) * 2);
}
body:has(#case) .modaal-container {
  background-color: transparent !important;
}

.modaal-content {
  max-width: 67.5rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.6rem;
}
@media screen and (max-width: 979px) {
  .modaal-content {
    font-size: 1.4rem;
  }
}

.modaal-gallery-item {
  height: 100%;
}
.modaal-gallery-item img {
  width: 100%;
  height: 100%;
  max-width: calc(100vw - var(--paddingLR) * 4);
  max-height: calc(100vh - var(--paddingLR) * 4);
  -o-object-fit: contain;
     object-fit: contain;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background-color: var(--color_main) !important;
}

/*==========
lightbox
==========*/
.lb-nav a.lb-next,
.lb-nav a.lb-prev {
  opacity: 1 !important;
}

/*==========
タイトル
==========*/
.title_01 {
  margin-bottom: calc(var(--paddingSection) * 0.4);
  font-size: 2.875rem;
  line-height: 1.25;
  padding-bottom: 0.5em;
  text-align: center;
  position: relative;
}
.title_01::after {
  content: "";
  width: 1em;
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 979px) {
  .title_01 {
    font-size: 1.25rem;
  }
}

.title_02 {
  font-size: 2.25rem;
  line-height: 1.25;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #000;
  margin-bottom: calc(var(--paddingSection) * 0.24);
}
@media screen and (max-width: 979px) {
  .title_02 {
    font-size: 1.125rem;
  }
}

.title_contact {
  background-color: #000;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 2.5rem;
  letter-spacing: 0.03em;
  font-weight: 500;
  line-height: 1;
  padding: 0.75rem 1.5rem 1rem;
  margin-bottom: 2rem;
  border-radius: 0.625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.title_contact .icon {
  width: 1.125em;
  aspect-ratio: 1/1;
  margin-top: 0.125em;
}
.title_contact .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 979px) {
  .title_contact {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
}

/*========== 汎用レイアウト ==========*/
/*==========
breadcrumb
==========*/
#breadcrumb {
  padding: 0.625rem 0;
  position: fixed;
  width: 100%;
  top: var(--headerHeight);
  left: 0;
  z-index: 98;
  background-color: #fff;
}

.list_breadcrumb {
  display: flex;
  white-space: nowrap;
  overflow: auto;
  overflow-x: auto;
  scrollbar-width: none;
}
.list_breadcrumb::-webkit-scrollbar {
  display: none;
}
.list_breadcrumb > *:not(:last-child)::after {
  content: ">";
  margin: 0 0.5em;
}
.list_breadcrumb a {
  color: inherit;
  text-decoration: none;
}
@media screen and (max-width: 979px) {
  .list_breadcrumb {
    font-size: 0.75rem;
  }
}

/*==========
ヘッダー
==========*/
#header {
  background-color: #fff;
  width: 100%;
  height: var(--headerHeight);
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 99;
  transform: translateX(-50%);
  padding-bottom: 0.75rem;
  padding-top: 0.75rem;
}
#header .flex {
  display: flex;
  align-items: flex-end;
}
#header a {
  color: inherit;
  text-decoration: none;
}
#header .logo {
  max-width: 12.3125rem;
  margin-bottom: 0.75rem;
}
#header .menu_area {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.25em 1.375rem;
}
#header .menu_header {
  display: flex;
  align-items: center;
  gap: 1.125em;
  font-size: 1.25rem;
  font-weight: 500;
  white-space: nowrap;
}
#header .menu_header a {
  padding-bottom: 0.325em;
  position: relative;
}
#header .menu_header a::after {
  content: "";
  width: 0;
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 960px) {
  #header .menu_header a::after {
    transition: width 0.5s;
  }
  #header .menu_header a:hover {
    opacity: 1;
  }
  #header .menu_header a:hover::after {
    width: 100%;
  }
}
#header .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background-color: #4B4B4B;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0.125rem 1rem;
  border-radius: 0.75rem;
  height: 3rem;
}
#header #hamburger_btn,
#header #hamburger_bg {
  display: none;
}
#header .row_upper {
  margin-top: -0.75rem;
}
#header .list_header_sub {
  margin-left: auto;
  display: flex;
  gap: 0.625rem;
  margin-bottom: 0.625rem;
}
#header .list_header_sub a {
  display: block;
  background-color: #EFEFEF;
  border-radius: 10px;
  padding: 1.5em 1em 0.5em;
  margin-top: -1em;
}

/*==========
ハンバーガーメニュー
==========*/
@media screen and (max-width: 979px) {
  #header {
    /*==========
    ハンバーガーメニュー
    ==========*/
    /*== ボタン ==*/
    /*== エリア外 ==*/
    /*== オープン ==*/
  }
  #header .flex {
    align-items: center;
    height: 100%;
  }
  #header .logo {
    max-width: 7.5rem;
    margin-bottom: 0;
  }
  #header .menu_area {
    padding: var(--paddingSection) var(--paddingLR);
    position: fixed;
    top: var(--headerHeight);
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    background-color: #fff;
    flex-direction: column;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: -webkit-clip-path 0.5s;
    transition: clip-path 0.5s;
    transition: clip-path 0.5s, -webkit-clip-path 0.5s;
    will-change: clip-path;
  }
  #header .menu_header {
    flex-direction: column;
    font-size: 1rem;
    margin-top: 1.5rem;
    gap: 0.75em;
  }
  #header .btn {
    order: -1;
    font-size: 0.875rem;
    height: 3rem;
    border-radius: 0.75rem;
  }
  #header .btn .icon {
    width: auto;
  }
  #header #hamburger_btn {
    margin-left: auto;
    width: 1.5rem;
    height: 1.25rem;
    display: flex;
    gap: 5px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    z-index: 30;
    cursor: pointer;
  }
  #header #hamburger_btn span {
    transform-origin: center;
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color_main);
    transition: all 0.5s;
    will-change: transform, margin;
  }
  #header #hamburger_bg {
    display: block;
    width: 0;
    height: 0;
    background-color: rgb(204, 204, 204);
    opacity: 0;
    position: fixed;
    top: var(--headerHeight);
    left: 0;
    z-index: -1;
    transition: opacity 0.5s;
    will-change: opacity;
  }
  #header.open .menu_area {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  #header.open #hamburger_btn {
    gap: 0;
  }
  #header.open #hamburger_btn span {
    margin-bottom: 0;
  }
  #header.open #hamburger_btn span:nth-of-type(1) {
    transform: rotate(45deg);
    margin-bottom: -2px;
  }
  #header.open #hamburger_btn span:nth-of-type(2) {
    height: 0;
  }
  #header.open #hamburger_btn span:nth-of-type(3) {
    transform: rotate(-45deg);
  }
  #header.open #hamburger_bg {
    width: 100vw;
    height: calc(100vh - var(--headerHeight));
    height: calc(100dvh - var(--headerHeight));
    opacity: 0.5;
  }
}
/*==========
フッター
==========*/
#footer .flex_upper {
  display: flex;
  margin-bottom: calc(var(--paddingSection) * 0.64);
}
#footer .flex_lower {
  display: flex;
  gap: 0.5rem 3rem;
  margin-bottom: calc(var(--paddingSection) * 0.4);
}
#footer .logo {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#footer .address {
  font-size: 1.25rem;
  margin-top: 2rem;
}
#footer .address_area {
  padding-right: 3.5rem;
  margin-right: 3.5rem;
  border-right: 1px solid #000;
}
#footer .menu_area {
  flex: 1;
  display: flex;
  justify-content: space-around;
  gap: var(--paddingLR);
}
#footer .menu_footer {
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 500;
}
#footer .menu_footer > *:not(:last-child) {
  margin-bottom: 1em;
}
#footer .menu_footer a {
  color: inherit;
  text-decoration: none;
}
@media screen and (max-width: 979px) {
  #footer .flex_upper,
#footer .flex_lower {
    flex-direction: column;
  }
  #footer .logo {
    width: 7.5rem;
  }
  #footer .address {
    font-size: 0.875rem;
    margin-top: 1rem;
  }
  #footer .address_area {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
  }
  #footer .menu_area {
    margin-top: var(--paddingSection);
    flex-direction: column;
  }
  #footer .menu_footer,
#footer .privacy {
    font-size: 0.875rem;
  }
}

/*==========
コピーライト
==========*/
.copyright {
  font-size: 1.125rem;
  font-family: "Barlow";
}
@media screen and (max-width: 979px) {
  .copyright {
    font-size: 0.75rem;
    order: 1;
  }
}

/*==========
PageToTop
==========*/
#pageTop {
  position: fixed;
  z-index: 98;
  bottom: var(--paddingLR);
  right: var(--paddingLR);
  background: center/contain url("../img/common/icon_pagetop.svg") no-repeat;
  width: 6.5rem;
  aspect-ratio: 112/88;
  cursor: pointer;
  transform: translateY(calc(100% + var(--paddingLR)));
  transition: transform 0.25s;
  will-change: transform;
}
#pageTop.view {
  transform: translateY(0);
}
@media screen and (max-width: 979px) {
  #pageTop {
    width: 4rem;
  }
}

body:has(#header.open) #pageTop {
  opacity: 0;
}

/*==========
Effect
==========*/
.trigger .fx_fadeIn, .trigger.fx_fadeIn {
  -webkit-animation-name: fx_fadeIn;
          animation-name: fx_fadeIn;
}
.trigger .fx_fadeUp, .trigger.fx_fadeUp {
  -webkit-animation-name: fx_fadeUp;
          animation-name: fx_fadeUp;
}
.trigger .fx_slideLeft, .trigger.fx_slideLeft {
  -webkit-animation-name: fx_slideLeft;
          animation-name: fx_slideLeft;
}
.trigger .fx_slideRight, .trigger.fx_slideRight {
  -webkit-animation-name: fx_slideRight;
          animation-name: fx_slideRight;
}
.trigger .fx_clipCenter, .trigger.fx_clipCenter {
  -webkit-animation-name: fx_clipCenter;
          animation-name: fx_clipCenter;
}
.trigger .fx_clipLeft, .trigger.fx_clipLeft {
  -webkit-animation-name: fx_clipLeft;
          animation-name: fx_clipLeft;
}

.fx_clipLeft {
  -webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  will-change: clip-path;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes fx_clipLeft {
  0% {
    -webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  }
  100% {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}

@keyframes fx_clipLeft {
  0% {
    -webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  }
  100% {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}
.fx_clipCenter {
  -webkit-clip-path: polygon(50% 0%, 50% 0%, 50% 100%, 50% 100%);
          clip-path: polygon(50% 0%, 50% 0%, 50% 100%, 50% 100%);
  will-change: clip-path;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes fx_clipCenter {
  0% {
    -webkit-clip-path: polygon(50% 0%, 50% 0%, 50% 100%, 50% 100%);
            clip-path: polygon(50% 0%, 50% 0%, 50% 100%, 50% 100%);
  }
  100% {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}

@keyframes fx_clipCenter {
  0% {
    -webkit-clip-path: polygon(50% 0%, 50% 0%, 50% 100%, 50% 100%);
            clip-path: polygon(50% 0%, 50% 0%, 50% 100%, 50% 100%);
  }
  100% {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}
.fx_fadeIn {
  opacity: 0;
  will-change: opacity;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes fx_fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fx_fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fx_fadeUp {
  opacity: 0;
  transform: translateY(2.5rem);
  will-change: transform, opacity;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes fx_fadeUp {
  0% {
    opacity: 0;
    transform: translateY(2.5rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fx_fadeUp {
  0% {
    opacity: 0;
    transform: translateY(2.5rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fx_slideLeft {
  will-change: transform, opacity;
  transform: translateX(-2.5rem);
  opacity: 0;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes fx_slideLeft {
  0% {
    opacity: 0;
    transform: translateX(-2.5rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fx_slideLeft {
  0% {
    opacity: 0;
    transform: translateX(-2.5rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fx_slideRight {
  will-change: transform, opacity;
  transform: translateX(2.5rem);
  opacity: 0;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes fx_slideRight {
  0% {
    opacity: 0;
    transform: translateX(2.5rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fx_slideRight {
  0% {
    opacity: 0;
    transform: translateX(2.5rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}