@charset "UTF-8";

/*=================================================================================

　変数定義

=================================================================================*/
/*—————————————————————————————————————————————————————
　横幅／高さ／余白設定
—————————————————————————————————————————————————————*/
:root {
  /* 横幅【PC幅のみ】 */
  --width-side: 26rem;
  --width-contents_max: 75rem;
  --width-contents_max_l: 65.75rem;
  --width-modal_max: 90rem;
  --width-table_dt: 36%;
  --width-table_dd: 64%;
  /* 高さ【ヘッダのみ】 */
  --height-header_lg: 4.0625rem;
  --height-header_mdsm: 4.0625rem;
  /* グリッドシステムの余白 */
  --padding-grid_lgmd: 1.5rem;
  --padding-grid_sm: 0.8rem;
  --padding-grid-inner_lgmd: 3rem;
  --padding-grid-inner_sm: 1.6rem;
  /* コンテンツの左右余白 */
  --padding-contents-lr_lg: 3rem;
  --padding-contents-lr_mdsm: 1.6rem;
  --padding-section: clamp(2.5rem, 1.8932038835rem + 2.5889967638vw, 5rem);
}

/*—————————————————————————————————————————————————————
　カラー設定
—————————————————————————————————————————————————————*/
:root {
  --color-key: #005397;
  --color-key_l: #f2f6fa;
  --color-body_bg: #ffffff;
  /* テキスト */
  --color-txt: #000000;
  --color-txt_tone: #005397;
  --color-txt_rgb: 42, 57, 68;
  --color-txt_contrast: #ffffff;
  --color-txt_contrast_rgb: 255, 255, 255;
  --color-txt_l: #333333;
  /* リンク */
  --color-link: #005397;
  --color-link_contrast: #ffffff;
  --color-link_hover: #003764;
  --color-link_hover_bg: rgba(0, 83, 151, 0.08);
  /* 罫線 */
  --color-border: #000;
  --color-border_l: rgba(0, 0, 0, 0.32);
  /* ボタンやアラートなどエレメントカラー */
  --color-default: #ffffff;
  --color-primary: #01702d;
  --color-primary_rgb: #3a93dc;
  --color-secondary: #826ac5;
  --color-secondary_rgb: 130, 106, 197;
  --color-success: #00aa6e;
  --color-success_rgb: 0, 170, 110;
  --color-info: #006fca;
  --color-info_rgb: 0, 175, 240;
  --color-danger: #dd4b39;
  --color-danger_rgb: 221, 75, 57;
  --color-warning: #f39c12;
  --color-warning_rgb: 243, 156, 18;
  --color-disable: rgba(0, 0, 0, 0.1);
  --color-disable_rgb: 204, 204, 204;
  --color-disable_txt: rgba(0, 0, 0, 0.5);
  /* ヘッダ */
  --color-header_txt: #2a3944;
  --color-header_bg: #ffffff;
  --color-body_icon: #797e81;
  --color-body_dropdown_bg: #2a3944;
  --color-body_dropdown_hover: #202c34;
  /* サイド */
  --color-side_txt: rgba(255, 255, 255, 0.8);
  --color-side_icon: rgba(255, 255, 255, 0.4);
  --color-side_bg: #2a3944;
  --color-side_hover: #202c34;
  --color-side_open_bg: #24313b;
  --color-side_active: #1a242b;
  --color-side_active_txt: white;
  /* コンテンツボックス */
  --color-content-bg: #ffffff;
  --color-content-bg_dark: #000000;
  --color-content-border: rgba(0, 0, 0, 0.8);
  --color-content-shadow: #ebebeb;
  /* タイトル */
  --color-ttl_bg: #ebebeb;
  --color-ttl_bg_dark: #000000;
  /* テーブル */
  --color-table_thead_txt: #ffffff;
  --color-table_thead_bg: rgba(0, 0, 0, 0.8);
  --color-table_th_bg: rgba(0, 0, 0, 0.08);
  --color-table_td_bg1: #ffffff;
  --color-table_td_bg2: #f5f5f5;
  --color-table_hover: rgba(0, 83, 151, 0.03);
  --color-table_active: rgba(0, 83, 151, 0.1);
  --color-progressbar_bg: #b3b3b3;
  /* オーバーレイ（モーダルやドロワーの背景） */
  --color-overlay-bg: rgba(0, 0, 0, 0.8);
  /* モーダルウィンドウのコンテンツ背景 */
  --color-modal-bg: #ffffff;
  /* チャート */
  --color-chart01: #00aaf6;
  --color-chart02: #2ec193;
  --color-chart03: #767cdc;
  --color-chart04: #e97db3;
  --color-chart05: #e59c23;
  --color-chart06: #00c8e1;
  --color-chart07: #00e0b5;
  /* その他ベーシックな色 */
  --color_black: #000000;
  --color_white: #ffffff;
  --color_darkgray: #333333;
  --color_gray: #acacac;
  --color_red: #eb2d2d;
  --color_blue: #0059ff;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  word-break: break-all;
}

:root {
  --txt-color: ;
  --main-color: ;
  --sub-color: ;
  --main--bg: ;
  --white: ;
}

address {
  font-style: normal;
}

body {
  overflow-x: hidden;
  color: #000;
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-family: "Jost", "Noto Sans Jp", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: 0.02em;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  background: url("../img/common/bg.jpg") center/contain repeat;
}

@media screen and (max-width: 600px) {
  body {
    font-size: 14px;
  }
}

a[href^="tel:"] {
  pointer-events: none;
  cursor: default;
}

@media screen and (max-width: 600px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
}

a {
  outline: none;
  color: inherit;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

@media (hover: hover) {
  a:where(:-webkit-any-link, :enabled, summary):hover {
    opacity: 0.5;
  }
}

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

code,
kbd,
pre,
samp {
  font-size: inherit;
  font-family: monospace, sans-serif;
}

ul,
ol {
  list-style: none;
}

table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  table-layout: fixed;
}

th,
td {
  padding: 4px 6px;
  vertical-align: top;
  text-align: left;
}

blockquote,
q {
  quotes: none;
}

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

form {
  margin: 0;
  padding: 0;
}

form button {
  display: inline-block;
  margin: 0;
  padding: 0.6em 2em;
  width: auto;
  border: none;
  border-radius: 0;
  background-color: #2281b8;
  background-image: none;
  -webkit-box-shadow: 0.0625em 0.0625em 0.1875em 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0.0625em 0.0625em 0.1875em 0 rgba(0, 0, 0, 0.16);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-appearance: none;
}

form button:hover,
form button:focus {
  outline: none;
}

form button:hover {
  opacity: 0.6;
}

form button ::-moz-focus-inner {
  padding: 0;
  border: none;
}

input,
textarea {
  padding: 0.40625rem 1rem;
  width: 100%;
  border: 1px solid #e2e2e2;
  border-radius: 0.25rem;
  background-image: none;
  background-color: #f5f5f5;
  font-size: 1em;
  font-family: inherit;
  -webkit-appearance: none;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #848484;
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.6875;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #848484;
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.6875;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #848484;
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.6875;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #848484;
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.6875;
}

input::placeholder,
textarea::placeholder {
  color: #848484;
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.6875;
}

@media screen and (max-width: 600px) {

  input::-webkit-input-placeholder,
  textarea::-webkit-input-placeholder {
    font-size: 0.875rem;
  }

  input::-moz-placeholder,
  textarea::-moz-placeholder {
    font-size: 0.875rem;
  }

  input:-ms-input-placeholder,
  textarea:-ms-input-placeholder {
    font-size: 0.875rem;
  }

  input::-ms-input-placeholder,
  textarea::-ms-input-placeholder {
    font-size: 0.875rem;
  }

  input::placeholder,
  textarea::placeholder {
    font-size: 0.875rem;
  }
}

textarea:hover,
textarea:focus {
  outline: none;
}

textarea:focus {
  outline: none;
  border-color: #e2e2e2;
  -webkit-box-shadow: none;
  box-shadow: none;
}

textarea ::-moz-focus-inner {
  padding: 0;
  border: none;
}

input::-webkit-input-placeholder {
  color: #848484;
}

input::-moz-placeholder {
  color: #848484;
}

input::-ms-input-placeholder {
  color: #848484;
}

input:-ms-input-placeholder {
  color: #848484;
}

input::placeholder {
  color: #848484;
}

input:focus {
  outline: none;
  border-color: #e2e2e2;
  -webkit-box-shadow: none;
  box-shadow: none;
}

input[type="submit"],
input[type="button"] {
  display: inline-block;
  margin: 0;
  padding: 0.6em 2em;
  width: auto;
  border: none;
  border-radius: 0;
  background-color: #2281b8;
  background-image: none;
  -webkit-box-shadow: 0.0625em 0.0625em 0.1875em 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0.0625em 0.0625em 0.1875em 0 rgba(0, 0, 0, 0.16);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-appearance: none;
}

input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="button"]:hover,
input[type="button"]:focus {
  outline: none;
}

input[type="submit"]:hover,
input[type="button"]:hover {
  opacity: 0.6;
}

input[type="submit"] ::-moz-focus-inner,
input[type="button"] ::-moz-focus-inner {
  padding: 0;
  border: none;
}

input[type="radio"] {
  display: none;
}

input[type="radio"]+span {
  position: relative;
  display: inline-block;
  margin: 0 16px 0 0;
  padding: 0 0 0 30px;
  cursor: pointer;
}

input[type="radio"]+span::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 26px;
  height: 26px;
  border: 1px solid #e2e2e2;
  border-radius: 50%;
  background: #fff;
  content: "";
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

input[type="radio"]+span::after {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

input[type="radio"]:checked+span::after {
  position: absolute;
  top: 50%;
  left: 8px;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-primary);
  content: "";
  opacity: 1;
  -webkit-transform: translateY);
  content: "";
  opacity: 1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"]+span {
  position: relative;
  display: inline-block;
  margin: 0 16px 0 0;
  padding: 0 0 0 30px;
  cursor: pointer;
  -webkit-transition: all 1s ease 0s;
  transition: all 1s ease 0s;
}

input[type="checkbox"]+span::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #707070;
  border-radius: 2px;
  background: #fff;
  content: "";
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

input[type="checkbox"]+span::after {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

input[type="checkbox"]:checked+span::after {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  margin-top: -0.2em;
  width: 26px;
  height: 15.6px;
  border-bottom: 4px solid #0078d4;
  border-left: 4px solid #0078d4;
  content: "";
  opacity: 1;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}

select {
  padding: 0.625rem 2.4375rem 0.625rem 0.75rem;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  background-image: url(../img/common/select-arrow.svg);
  background-position: right 11px top 55%;
  background-size: 13px;
  background-repeat: no-repeat;
  background-color: #f5f5f5;
  color: #1d1d1d;
  font-size: 1em;
  font-family: inherit;
  cursor: pointer;
  position: relative;
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select:focus {
  outline: none;
  border-color: #e2e2e2;
  -webkit-box-shadow: none;
  box-shadow: none;
}

option {
  color: #1d1d1d;
}

@font-face {
  font-family: "Noto Sans Jp";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/NotoSansJP-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Noto Sans Jp";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/NotoSansJP-Medium.ttf") format("truetype");
}

@font-face {
  font-family: "Noto Sans Jp";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/NotoSansJP-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Jost-VariableFont_wght.ttf") format("truetype");
}

@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Jost-VariableFont_wght.ttf") format("truetype");
}

.p-editorContents {
  margin-top: 5rem;
}

@media screen and (max-width: 600px) {
  .p-editorContents {
    margin-top: 2.5rem;
  }
}

.p-editorContents h2.wp-block-heading {
  font-size: 1.5rem;
  font-weight: 700;
}

.p-editorContents h3.wp-block-heading {
  font-size: 1.25rem;
  font-weight: 700;
  position: relative;
}

.p-editorContents *+* {
  margin-top: 16px;
}

.p-editorContents *+h2.wp-block-heading {
  margin-top: 96px;
}

.p-editorContents *+h3.wp-block-heading {
  margin-top: 56px;
}

.p-editorContents *+p {
  margin-top: 16px;
}

.p-editorContents *+.wp-block-image {
  margin-top: 32px;
}

.p-editorContents ul,
.p-editorContents ol {
  padding-left: 32px;
}

.p-editorContents *+ul,
.p-editorContents *+ol {
  margin-top: 32px;
}

.p-editorContents ul {
  list-style: disc;
}

.p-editorContents ol {
  list-style: trad-chinese-informal;
}

.p-editorContents li {
  position: relative;
}

.p-editorContents *+li {
  margin-top: 16px;
}

.p-editorContents *+.wp-block-table {
  margin-top: 16px;
}

.p-editorContents figcaption {
  font-size: 0.75rem;
  color: #787878;
  margin-top: 16px;
}

.p-editorContents .wp-block-table table th {
  border: unset;
  padding: 24px 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  width: 21%;
}

.p-editorContents .wp-block-table table td {
  border: unset;
  padding: 24px 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  width: 79%;
}

.attachment-post-thumbnail {
  width: 100%;
  aspect-ratio: 332/187;
  -o-object-fit: cover;
  object-fit: cover;
  height: auto;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.c-pagePostTitle {
  font-size: 2rem;
  font-weight: 700;
}

.wp-block-gallery {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
}

@media screen and (max-width: 600px) {
  .wp-block-gallery {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

.wp-block-gallery {
  width: 100% !important;
}

.wp-block-gallery .wp-block-image {
  aspect-ratio: 1/1;
  width: 100% !important;
}

.l-section__bg--change {
  background-color: var(--color-key_l);
}

.l-pageContents,
.l-pageContents--reduction {
  width: 90%;
  max-width: var(--width-contents_max);
  margin: 0 auto;
  padding: var(--padding-section) 0;
}

.l-pageContents--reduction {
  max-width: var(--width-contents_max_l);
}

.l-inner--1100 {
  width: 1100px;
  max-width: 100%;
}

.l-inner {
  margin: 0 auto;
  max-width: 90%;
}

.l-header {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  height: var(--height-header_lg);
  padding: 0.5625rem var(--padding-contents-lr_lg);
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.16);
  background-color: var(--color-header_bg);
}

.l-header--float {
  position: fixed;
  z-index: 9999;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 90%;
  margin-top: 1rem;
  border-radius: 0.375rem;
  padding-right: 1.125rem;
  padding-left: 1.125rem;
}

.l-header--fixed {
  position: fixed;
}

.l-header--bg_transparent {
  background-color: transparent;
}

@media screen and (max-width: 1024px) {
  .l-header {
    min-height: var(--height-header_mdsm);
    padding: 0.5625rem var(--padding-contents-lr_mdsm);
  }
}

.l-header h1 {
  height: 100%;
  color: var(--color-primary);
}

.l-header h1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.l-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem);
}

@media screen and (max-width: 1024px) {
  .l-header__nav {
    display: none;
  }

  .l-header__nav .c-btn__nav--header {
    margin: 0 auto;
  }
}

.is-overlay .l-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 0;
  top: 70px;
  background-color: var(--color_white);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 23.4375rem;
  width: 100%;
  padding: 16px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  border-radius: 0.5rem;
}

.is-overlay .l-header__nav .l-header__navList {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

@media screen and (max-width: 1024px) {
  .is-overlay .l-header__nav {
    max-height: 85vh;
    overflow: scroll;
  }
}

@media screen and (max-width: 480px) {
  .is-overlay .l-header__nav {
    max-width: 100%;
  }
}

.is-overlay .l-header__nav .c-btn__nav--header {
  min-height: 2.9375rem;
}

.l-header__navList {
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
}

@media screen and (max-width: 1024px) {
  .l-header__navList {
    width: 100%;
  }
}

.l-header__navList li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .l-header__navList li {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
}

.l-header__navList li::before {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  width: 0%;
  border-bottom: 1px solid var(--color-primary);
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}

@media screen and (max-width: 1024px) {
  .l-header__navList li::before {
    content: none;
  }
}

.l-header__navList li:hover::before {
  width: 100%;
}

.l-header__navList li.menu-item-has-children::after {
  content: "";
  display: inline-block;
  width: 0.625rem;
  height: 0.375rem;
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 6px solid var(--color-primary);
  border-bottom: 0;
  margin-left: 0.5rem;
  vertical-align: middle;
}

@media screen and (max-width: 1024px) {
  .l-header__navList li.menu-item-has-children::after {
    position: absolute;
    right: 0;
    top: 0.625rem;
  }
}

.l-header__navList li.menu-item-has-children:hover .l-header__navListChild {
  visibility: visible;
  /*Gナビメニューにホバーしたら表示*/
  opacity: 1;
  /*不透明度1*/
}

@media screen and (max-width: 1024px) {
  .l-header__navList li.menu-item-has-children:hover .l-header__navListChild {
    visibility: unset;
    opacity: unset;
  }
}

.l-header__navList li.current-menu-item::before,
.l-header__navList li.current_page_parent::before {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  width: 100%;
  border-bottom: 1px solid var(--color-primary);
}

@media screen and (max-width: 1024px) {

  .l-header__navList li.current-menu-item::before,
  .l-header__navList li.current_page_parent::before {
    content: none;
  }
}

.l-header__navList li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.l-header__navList li a::after {
  content: attr(data-desc);
  font-size: clamp(0.625rem, 0.5946601942rem + 0.1294498382vw, 0.75rem);
  font-weight: 300;
  line-height: 1;
}

.l-header__navListChild {
  min-width: 100%;
  position: absolute;
  top: 3rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.16);
  background-color: var(--color-header_bg);
  padding: 0.5rem 1rem;
  visibility: hidden;
  /*デフォルトでは非表示の状態にしておく*/
  opacity: 0;
  /*不透明度0*/
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /*表示の変化を0.3秒に指定*/
  border-radius: 0.5rem;
}

@media screen and (max-width: 1024px) {
  .l-header__navListChild {
    display: none;
    position: relative;
    top: unset;
    left: unset;
    -webkit-transform: unset;
    transform: unset;
    min-width: unset;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    padding: 0;
    -webkit-transition: unset;
    transition: unset;
  }
}

.l-header__navListChild ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.5rem;
}

.l-header__navListChild ul .current-menu-item {
  border-bottom: none;
}

.l-header__navListChild ul li::before {
  content: none !important;
}

@media screen and (max-width: 1024px) {
  .l-header__navListChild ul li {
    padding: 0.5rem 1rem;
  }
}

.l-header__instagram svg {
  color: var(--color-primary) !important;
  display: block;
}

.l-footer__title {
  display: block;
  font-size: 2em;
  font-weight: bold;
  unicode-bidi: isolate;
  color: var(--color-primary);
}

.l-footer__subtitle {
  display: block;
  font-size: 1rem;
  font-weight: normal;
  unicode-bidi: isolate;
  color: var(--color-txt);
}

.l-footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: clamp(1rem, -0.2742718447rem + 5.4368932039vw, 6.25rem);
}

@media screen and (max-width: 600px) {
  .l-footer__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.l-footer__upper {
  padding: var(--padding-section) 0;
}

.l-footer__bottom {
  width: 100%;
  height: 4.0625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--color-primary_rgb);
  color: rgba(0, 0, 0, 0.8);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding-left: var(--padding-contents-lr_lg);
  padding-right: var(--padding-contents-lr_lg);
  word-break: keep-all;
}

.l-footer__box--left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 1.125rem;
}

.l-footer__box--left svg {
  color: var(--color-primary) !important;
}

@media screen and (max-width: 600px) {
  .l-footer__box--left {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.l-footer__box--right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  gap: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
}

@media screen and (max-width: 600px) {
  .l-footer__box--right {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.l-footer__box--right .l-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1rem, 0.5904126214rem + 1.7475728155vw, 2.6875rem);
}

.l-footer__box--right .l-footer__nav--right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.125rem;
}

.l-footer__box--right .l-footer__nav--right .c-btn__nav--footer {
  max-width: 100%;
  width: 14rem;
}

.l-footer__box--right .l-footer__nav--right svg {
  color: var(--color-primary) !important;
}

@media screen and (max-width: 768px) {
  .l-footer__box--right .l-footer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.l-footer__box--right .l-footer__nav nav ul {
  display: grid;
  grid-template-columns: auto auto;
  gap: 1.125rem clamp(1rem, 0.5904126214rem + 1.7475728155vw, 2.6875rem);
}

.l-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
}

.l-box>div {
  width: 100%;
}

.l-box__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: clamp(0.75rem, 0.5376213592rem + 0.9061488673vw, 1.625rem);
}

.l-box__img img {
  margin: 0 auto;
}

.l-box__under-box {
  display: flex;
  justify-content: center;
}

.l-box__under-box .is-pcOnly {
  display: block;
}

.l-box__under-box .is-tbOnly,
.l-box__under-box .is-spOnly {
  display: none;
  width: 100%;
  max-width: 100%;
}

.l-box__under-box .is-tbOnly img,
.l-box__under-box .is-spOnly img {
  width: 100%;
  max-width: 100%;
}

@media screen and (max-width: 990px) {
  .l-box__under-box .is-pcOnly {
    display: none;
  }
}

@media screen and (max-width: 990px) {
  .l-box__under-box .is-tbOnly {
    display: block;
  }

}

@media screen and (max-width: 600px) {
  .l-box__under-box .is-tbOnly {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .l-box__under-box .is-spOnly {
    display: block;
  }

}


.l-box--title {
  font-size: clamp(1.125rem, 1.0946601942rem + 0.1294498382vw, 1.25rem);
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: var(--color-txt_tone);
}

.l-box--text {
  line-height: 1.875;
  letter-spacing: 0.1em;
}

.l-box--text__right {
  text-align: right;
}

.l-box--text__center {
  text-align: center;
}

.l-box.l-box__reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media screen and (max-width: 600px) {
  .l-box.l-box__reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.l-box.l-box__column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.l-box.l-box__column--reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

@media screen and (max-width: 600px) {
  .l-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.l-editor .wp-block-heading {
  margin-top: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
}

.l-editor .wp-block-separator {
  border-top: 1px solid var(--color-border_l);
}

.l-editor p {
  letter-spacing: 0.1em;
  line-height: 1.875;
}

.c-pageHead {
  padding: 8.75rem 0 3.125rem;
  background-color: var(--color-info);
  position: relative;
}

.c-pageHead__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.c-pageHead__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-pageHead--inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
  max-width: var(--width-contents_max_l);
  margin: 0 auto;
  width: 90%;
}

.c-pageTitle__ja {
  font-size: clamp(1.375rem, 1.1626213592rem + 0.9061488673vw, 2.25rem);
  font-weight: 400;
  line-height: 0.8333333333;
  letter-spacing: 0.1em;
  color: var(--color_white);
}

.c-pageTitle__en {
  position: absolute;
  bottom: 0;
  right: 6.25rem;
  text-transform: uppercase;
  font-size: clamp(4.375rem, 3.6165048544rem + 3.2362459547vw, 7.5rem);
  font-weight: 400;
  line-height: 0.7;
  letter-spacing: 0.04em;
  color: var(--color-key_l);
  opacity: 0.18;
}

@media screen and (max-width: 1024px) {
  .c-pageTitle__en {
    right: 0;
    word-break: break-word;
  }
}

.c-pagination {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 5.375rem auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

.c-pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 2.375rem;
  aspect-ratio: 1/1;
  border: 1px solid var(--color-primary);
}

.c-pagination .page-numbers.current {
  background-color: var(--color-primary);
  color: var(--color_white);
}

.post-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 1rem;
}

.toArchive {
  margin: 1rem auto;
  width: 100%;
  max-width: 15.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 1.8125rem;
  background-color: var(--color-primary);
  color: var(--color_white);
  padding: clamp(0.5rem, 0.3938106796rem + 0.4530744337vw, 0.9375rem) clamp(0.75rem, 0.4921116505rem + 1.1003236246vw, 1.8125rem);
}

.c-archive__catList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem);
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem);
}

.c-archive__catList--item a::after {
  content: "";
  display: block;
  width: 0%;
  height: 0.0625rem;
  background-color: var(--color-primary);
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}

.c-archive__catList--item a:hover::after {
  width: 100%;
}

.c-archive__catList--item.is_active a::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.0625rem;
  background-color: var(--color-primary);
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}

.c-btn,
.c-btn--inversion {
  width: 100%;
  max-width: 15.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 1.8125rem;
  background-color: var(--color-primary);
  color: var(--color_white);
  padding: clamp(0.5rem, 0.3938106796rem + 0.4530744337vw, 0.9375rem) clamp(0.75rem, 0.4921116505rem + 1.1003236246vw, 1.8125rem);
  gap: 0.5rem;
}

.c-btn::after,
.c-btn--inversion::after {
  content: "";
  background-image: url(../img/common/btn_deco.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: clamp(2rem, 1.7724514563rem + 0.9708737864vw, 2.9375rem);
  height: 0.3125rem;
}

.c-btn--inversion {
  color: var(--color-primary);
  background-color: var(--color_white);
}

.c-btn--inversion::after {
  background-image: url(../img/common/btn_deco__bl.svg);
}

.c-btn__contact {
  width: 23.9375rem;
  max-width: 100%;
  aspect-ratio: 383/97;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 3.0625rem;
  background-color: var(--color-info);
  color: var(--color_white);
  font-size: clamp(1rem, 0.9089805825rem + 0.3883495146vw, 1.375rem);
  font-weight: 500;
  line-height: 1.3636363636;
  letter-spacing: 0.1em;
  position: relative;
}

.c-btn__contact::after {
  content: "";
  background-image: url(../img/common/btn_deco_contact.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 0.8125rem;
  height: 0.6875rem;
  position: absolute;
  top: 50%;
  right: 1rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.c-btn__nav,
.c-btn__nav--footer,
.c-btn__nav--header {
  line-height: normal;
  background-color: var(--color-primary);
  color: var(--color_white);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0 clamp(1rem, 0.9241504854rem + 0.3236245955vw, 1.3125rem);
  border-radius: 0.125rem;
}

.c-btn__nav::before,
.c-btn__nav--footer::before,
.c-btn__nav--header::before {
  content: "";
  background-image: url(../img/common/icon_contact.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.4375rem;
  height: 1.0625rem;
}

.c-btn__nav--header {
  height: 2.9375rem;
  max-width: 15.875rem;
}

.c-btn__nav--footer {
  height: 4.0625rem;
  max-width: 15.875rem;
}

.c-mainVisual--full,
.c-mainVisual--full .wp-custom-header {
  height: 100vh;
}

.c-mainVisual--full__noInclude,
.c-mainVisual--full__noInclude .wp-custom-header {
  height: calc(100vh - var(--height-header_lg));
  position: relative;
  top: var(--height-header_lg);
}

@media screen and (max-width: 991px) {

  .c-mainVisual--full__noInclude,
  .c-mainVisual--full__noInclude .wp-custom-header {
    height: calc(100vh - var(--height-header_mdsm));
    top: var(--height-header_lg);
  }
}

.c-mainVisual--full__noInclude .wp-custom-header {
  top: 0;
}

.c-mainVisual--auto,
.c-mainVisual--auto .wp-custom-header {
  height: auto;
}

.c-mainVisual--auto__noInclude,
.c-mainVisual--auto__noInclude .wp-custom-header {
  height: auto;
  position: relative;
  top: var(--height-header_lg);
}

@media screen and (max-width: 991px) {

  .c-mainVisual--auto__noInclude,
  .c-mainVisual--auto__noInclude .wp-custom-header {
    height: calc(100vh - var(--height-header_mdsm));
    top: var(--height-header_lg);
  }
}

.c-mainVisual--auto__noInclude .wp-custom-header {
  top: 0;
}

.c-mainVisual--auto__noInclude .wp-custom-header img {
  width: auto;
  margin: 0 auto;
}

.c-mainVisual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;

}

@media screen and (max-width: 991px) {
  .c-mainVisual img {
    object-position: 42% top;
  }
}

.c-post,
.c-post__patternC,
.c-post__patternB,
.c-post__patternA {
  display: grid;
  gap: 0 clamp(1rem, -0.2742718447rem + 5.4368932039vw, 6.25rem);
}

.c-post__patternA {
  grid-template-columns: 1fr 67%;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  background-color: var(--color_white);
}

.c-post__patternA .c-post__box {
  grid-column: 2/3;
  grid-row: 1/3;
}

.c-post__patternA .c-btn {
  margin-top: clamp(1rem, 0.6814320388rem + 1.359223301vw, 2.3125rem);
}

@media screen and (max-width: 768px) {
  .c-post__patternA {
    grid-template-columns: 1fr auto;
  }

  .c-post__patternA .c-post__box {
    grid-column: 1/3;
    grid-row: 2/3;
    margin-top: clamp(1rem, 0.6814320388rem + 1.359223301vw, 2.3125rem);
  }

  .c-post__patternA .c-btn {
    margin-top: 0;
  }
}

.c-post__patternB {
  grid-template-columns: 1fr auto;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.c-post__patternB .c-post__box {
  grid-column: 1/3;
  grid-row: 2/3;
  margin-top: clamp(1rem, 0.6814320388rem + 1.359223301vw, 2.3125rem);
}

.c-post__patternC {
  grid-template-columns: 1fr;
  gap: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem) 0;
}

.c-post__patternC .c-btn {
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .c-post__patternC {
    gap: 0 clamp(1rem, -0.2742718447rem + 5.4368932039vw, 6.25rem);
    grid-template-columns: 1fr auto;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }

  .c-post__patternC .c-post__box {
    grid-column: 1/3;
    grid-row: 2/3;
    margin-top: clamp(1rem, 0.6814320388rem + 1.359223301vw, 2.3125rem);
  }
}

.c-post__box--list {
  display: grid;
  gap: clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem);
}

.c-post__box--card {
  display: grid;
  gap: 1.25rem;
}

.c-post__box__link--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(1rem, 0.0291262136rem + 4.142394822vw, 5rem);
  padding-bottom: clamp(0.5rem, 0.3634708738rem + 0.5825242718vw, 1.0625rem);
  border-bottom: 1px solid var(--color-border_l);
}

.c-post__box__link--list time {
  color: var(--color-txt_tone);
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
}

.c-post__box__link--card {
  height: 100%;
  display: grid;
}

.c-title {
  margin-bottom: clamp(2rem, 1.5449029126rem + 1.9417475728vw, 3.875rem);
}

.c-title--center {
  text-align: center;
}

.c-title__en {
  color: var(--color-txt_tone);
  font-size: clamp(1.5rem, 1.1359223301rem + 1.5533980583vw, 3rem);
  line-height: 1.2083333333;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.c-title__ja {
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  line-height: 1.1875;
  letter-spacing: 0.04em;
}

.c-contact--bg {
  background-color: var(--color-primary_rgb);
  color: var(--color_white);
}

.c-contact--bg .c-title__en {
  color: var(--color_white);
}

.c-contact--bg .c-contact__telBox::before {
  background-image: url(../img/common/icon_tel_wh.svg);
}

.c-contact--bg .c-btn__contact {
  background-color: var(--color-primary);
}

.c-contact__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
}

.c-contact__box--left {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 0 0;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

@media screen and (max-width: 600px) {
  .c-contact__box--left {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
  }
}

.c-contact__box--right {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 0 auto;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

@media screen and (max-width: 600px) {
  .c-contact__box--right {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
  }
}

.c-contact__box--text {
  margin-top: clamp(0.5rem, 0.4089805825rem + 0.3883495146vw, 0.875rem);
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.c-contact__box--row {
  display: grid;
}

.c-contact__box--row .c-contact__box--text {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .c-contact__box--row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.c-contact__box--row .c-contact__linkBox {
  grid-column: 2/3;
  grid-row: 1/3;
}

@media screen and (max-width: 768px) {
  .c-contact__box--row .c-contact__linkBox {
    grid-column: unset;
    grid-row: unset;
  }
}

.c-contact__box .c-title {
  margin-bottom: 0;
}

.c-contact__linkBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1rem, 0.0291262136rem + 4.142394822vw, 5rem);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.c-contact__linkBox--column {
  gap: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

@media screen and (max-width: 600px) {
  .c-contact__linkBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.c-contact__telBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.875rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-contact__telBox::before {
  content: "";
  background-image: url(../img/common/icon_tel_bk.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: clamp(1.5rem, 1.2876213592rem + 0.9061488673vw, 2.375rem);
  aspect-ratio: 38/51;
}

.c-contact__telBox .c-contact__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.c-contact__telBox .c-contact__tel--number {
  font-size: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
  font-weight: 700;
  line-height: 0.9375;
  letter-spacing: 0.1em;
}

.c-contact__telBox .c-contact__tel--hours {
  white-space: nowrap;
}

.c-hamburger {
  display: none;
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  z-index: 200;
}

@media screen and (max-width: 1024px) {
  .c-hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .c-hamburger.is-active span {
    width: 1.875rem;
  }

  .c-hamburger.is-active span:first-child {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .c-hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }

  .c-hamburger.is-active span:last-child {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}

.c-hamburger span {
  height: 3px;
  width: 100%;
  border-radius: 3px;
  background-color: var(--color-primary);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform-origin: left center 0;
  transform-origin: left center 0;
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

.c-card {
  background-color: var(--color_white);
  -webkit-box-shadow: 0px 4px 10.4px 0px rgba(0, 0, 0, 0.09);
  box-shadow: 0px 4px 10.4px 0px rgba(0, 0, 0, 0.09);
}

.c-card__img {
  aspect-ratio: 337/280;
}

.c-card__img img {
  aspect-ratio: unset;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-card__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: clamp(0.625rem, 0.4733009709rem + 0.6472491909vw, 1.25rem);
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.c-card__box--title {
  font-size: clamp(1rem, 0.9696601942rem + 0.1294498382vw, 1.125rem);
  font-weight: 500;
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
  color: var(--color-txt_l);
  position: relative;
  width: 100%;
  padding-right: 0.75rem;
  word-break: auto-phrase;
}

.c-card__box--title__color {
  color: var(--color-primary);
}

.c-card__box--title::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid var(--color-primary);
  border-right: 0;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.c-card__box--title__en {
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  font-weight: 400;
  line-height: 1.5714285714;
  letter-spacing: 0.05em;
  color: var(--color-primary);
}

.c-card__box--cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.c-card__box--cat li {
  background-color: var(--color-primary_rgb);
  color: var(--color_white);
  padding: 0.1875rem clamp(0.375rem, 0.2536407767rem + 0.5177993528vw, 0.875rem);
}

.c-card__box--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.25rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.c-card__box--noArrow .c-card__box--title::after {
  content: none !important;
}

.c-card__box--text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: clamp(0.8125rem, 0.7821601942rem + 0.1294498382vw, 0.9375rem);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
}

.c-banner {
  margin: var(--padding-section) 0;
  display: grid;
}

.c-banner img {
  margin: 0 auto;
}

.c-banner--mbNone {
  margin-bottom: 0;
}

.c-banner--full {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.c-banner--full img {
  width: 100%;
  margin: 0 auto;
}

.c-banner--content {
  width: 90%;
  max-width: var(--width-contents_max_l);
  margin-left: auto;
  margin-right: auto;
}

.c-banner--content img {
  width: 100%;
  margin: 0 auto;
}

.c-flow--patternA {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1.25rem, 1.067961165rem + 0.7766990291vw, 2rem);
}

@media screen and (max-width: 600px) {
  .c-flow--patternA {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.c-flow--patternA li {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (max-width: 600px) {
  .c-flow--patternA li {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.c-flow--patternB {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.c-flow--patternB li {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-flow li {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(0.5rem, 0.2572815534rem + 1.0355987055vw, 1.5rem);
  position: relative;
}

.c-flow__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.c-flow__img {
  width: 100%;
}

.c-flow__number {
  position: absolute;
  width: clamp(2rem, 1.7269417476rem + 1.1650485437vw, 3.125rem);
  aspect-ratio: 1/1;
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  background-color: var(--color_white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  top: clamp(-1rem, -0.8634708738rem - 0.5825242718vw, -1.5625rem);
  left: clamp(-1rem, -0.8634708738rem - 0.5825242718vw, -1.5625rem);
}

.c-table th,
.c-table td {
  padding: clamp(0.5rem, 0.4393203883rem + 0.2588996764vw, 0.75rem) clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  font-weight: 400;
}

@media screen and (max-width: 768px) {

  .c-table th,
  .c-table td {
    padding: clamp(0.5rem, 0.4393203883rem + 0.2588996764vw, 0.75rem) 0;
  }
}

.c-table th {
  width: 30%;
}

@media screen and (max-width: 600px) {

  .c-table--column th,
  .c-table--column td {
    display: block;
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .c-table--column th {
    padding-bottom: 0;
  }
}

.c-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: clamp(2rem, 0.7572815534rem + 1.0355987055vw, 4rem);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 47.5rem;
  width: 100%;
  margin: clamp(1.5rem, 1.2572815534rem + 1.0355987055vw, 2.5rem) auto 0;
}

.c-form input[type="submit"] {
  width: 100%;
  max-width: 14.375rem;
  background-color: var(--color-primary);
  height: 2.9375rem;
  border-radius: 0.125rem;
  font-family: "Noto Sans JP";
}

.c-form input[type="submit"][name="submitBack"] {
  background-color: var(--color-default);
  color: var(--color-txt);
}

.c-form__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.625rem;
}

.c-form__wrap--center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-form__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-form__txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.875rem;
}

.c-form__label--required::after {
  content: "必須";
  width: 3.75rem;
  height: 1.8125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--color_white);
  background-color: var(--color-danger);
}

.c-form__btnWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mw_wp_form_confirm .c-form__privacy {
  display: none;
}

.p-home__firstView {
  position: relative;
  height: calc(100% + var(--height-header_lg));
}

.p-home__firstView--box {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
  width: 90%;
  margin-bottom: clamp(1.25rem, 0.036407767rem + 5.1779935275vw, 6.25rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  gap: 2rem;
}

@media screen and (max-width: 600px) {
  .p-home__firstView--box {
    gap: 5rem;
  }
}

@media screen and (max-width: 480px) {
  .p-home__firstView--box {
    gap: 12rem;
    bottom: 90px;

  }
}

@media screen and (max-width: 400px) {
  .p-home__firstView--box {
    gap: 10rem;
    bottom: 0;
  }
}

.p-home__firstView--box picture {
  margin: 0 auto;
}

@media screen and (max-width: 991px) {
  .p-home__firstView--box picture {
    margin: 0;
    margin-left: auto;
  }
}

@media screen and (max-width: 991px) {
  .p-home__firstView--box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .p-home__firstView--box picture {
    width: 80%;
    max-width: 25rem;
  }
}

.p-home__firstView--comment {
  max-width: 46.5rem;
  width: 100%;
  aspect-ratio: 744/200;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-size: 100% 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 991px) {
  .p-home__firstView--comment {
    justify-content: flex-end;
  }
}

.p-home__firstView--comment p {
  color: var(--color-primary);
  font-size: clamp(1.25rem, 1.067961165rem + 0.7766990291vw, 2rem);
  font-weight: 500;
  line-height: 2.03125;
  letter-spacing: 0.04em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
}

@media screen and (max-width: 991px) {
  .p-home__firstView--comment p {
    font-size: 16px;
  }
}

.p-home__firstView--comment p span {
  background-color: var(--color_white);
  padding: 0 clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem);
  text-shadow: var(--color-primary) 1px 0 1px;
  letter-spacing: 0.1em;
}

.p-home__firstView--comment p span:nth-child(2) {
  font-size: clamp(1.625rem, 1.2912621359rem + 1.4239482201vw, 3rem);
}

@media screen and (max-width: 991px) {
  .p-home__firstView--comment p span:nth-child(2) {
    font-size: 28px;
  }
}

@media screen and (max-width: 600px) {
  .p-home__firstView--comment p span:nth-child(2) {
    font-size: 20px;
  }
}

@media screen and (max-width: 991px) {
  .p-home__firstView--comment p {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: flex-end;
  }
}

.p-home__section,
.p-home__section--contact,
.p-home__section--works,
.p-home__section--service,
.p-home__section--about {
  position: relative;
}

.p-home__section::before,
.p-home__section--contact::before,
.p-home__section--works::before,
.p-home__section--service::before,
.p-home__section--about::before {
  position: absolute;
  content: "";
  color: var(--color-key_l);
  font-size: clamp(3.75rem, 1.0194174757rem + 11.6504854369vw, 15rem);
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.04em;
  z-index: -1;
}

.p-home__section--about::before {
  top: 0;
  left: 0;
  content: "ABOUT";
}

.p-home__section--service::before {
  top: 0;
  right: 0;
  content: "SERVICE";
}

.p-home__section--service::after {
  content: "";
  position: absolute;
  top: 75%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  max-width: 87.5rem;
  height: 50%;
  background-color: var(--color-key_l);
  z-index: -1;
}

@media screen and (max-width: 991px) {
  .p-home__section--service::after {
    top: 65%;
    height: 70%;
  }
}

.p-home__section--works {
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      from(transparent),
      color-stop(45%, transparent),
      color-stop(45%, var(--color-key_l)),
      to(var(--color-key_l)));
  background: linear-gradient(180deg,
      transparent 0%,
      transparent 45%,
      var(--color-key_l) 45%,
      var(--color-key_l) 100%);
}

.p-home__section--works::before {
  top: 4rem;
  left: 0;
  content: "FACILITY";
  line-height: 1.8;
}

@media screen and (max-width: 600px) {
  .p-home__section--works {
    background: -webkit-gradient(linear,
        left top,
        left bottom,
        from(transparent),
        color-stop(15%, transparent),
        color-stop(15%, var(--color-key_l)),
        to(var(--color-key_l)));
    background: linear-gradient(180deg,
        transparent 0%,
        transparent 15%,
        var(--color-key_l) 15%,
        var(--color-key_l) 100%);
  }
}

.p-home__section--contact::before {
  left: 0;
  bottom: 0;
  z-index: 0;
  opacity: 0.18;
  line-height: 0.65;
  content: "CONTACT";
}

.p-home__post {
  padding: clamp(1rem, 0.1808252427rem + 3.4951456311vw, 4.375rem);
  position: relative;
}

.p-home__post::before {
  position: absolute;
  content: "NEWS";
  color: var(--color-key_l);
  font-size: clamp(3.75rem, 1.0194174757rem + 11.6504854369vw, 15rem);
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.04em;
  bottom: 0;
  right: 0;
  line-height: 0.6;
}

.p-home__post--bg__white {
  background-color: var(--color_white);
}

.p-home__post .c-title {
  margin-bottom: 0;
}

.p-home__service {
  display: block !important;
}

.p-home__service .g-col {
  gap: 0;
}

@media screen and (max-width: 991px) {
  .p-home__service .g-col {
    gap: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
  }
}

.p-home__service .c-card {
  width: 100%;
}

.p-home__service .c-card .c-card__img {
  aspect-ratio: 263/289;
}

@media screen and (max-width: 600px) {
  .p-home__service .c-card .c-card__img {
    width: 30%;
    min-width: 6.375rem;
  }
}

@media (hover: hover) {
  .p-home__service .c-card:hover {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

@media screen and (max-width: 600px) {
  .p-home__service .c-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .p-home__service .c-card .c-card__box {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.p-home__box,
.p-home__box--row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: clamp(2rem, 1.4235436893rem + 2.4595469256vw, 4.375rem);
  width: 100%;
  max-width: 65.75rem;
  margin: 0 auto;
  padding: 0;
}

.p-home__box--row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  max-width: var(--width-contents_max);
}

.p-home__about {
  padding: clamp(2.5rem, 0.3762135922rem + 9.0614886731vw, 11.25rem) 0 0;
  position: relative;
}

.p-home__about .c-title {
  margin-bottom: 0;
}

.p-home__about .c-title__en {
  color: var(--color_white);
}

.p-home__about__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  width: 100%;
}

@media screen and (max-width: 600px) {
  .p-home__about__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.p-home__about__inner {
  padding: 7% 14% 7% 5%;
  background-color: var(--color-primary);
  color: var(--color_white);
  max-width: 600px;
  width: 58%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
}

@media screen and (max-width: 1280px) {
  .p-home__about__inner {
    padding: clamp(2.5rem, 1.8173543689rem + 2.9126213592vw, 5.3125rem) clamp(1.5rem, 0.802184466rem + 2.9773462783vw, 4.375rem);
  }
}

@media screen and (max-width: 600px) {
  .p-home__about__inner {
    width: 100%;
    max-width: 100%;
  }
}

.p-home__about__inner--title {
  font-size: clamp(1.25rem, 1.1893203883rem + 0.2588996764vw, 1.5rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
  word-break: auto-phrase;
}

.p-home__about__inner--text {
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.1em;
}

.p-home__about__img {
  position: absolute;
  top: -15%;
  right: 0;
  width: 56%;
}

@media screen and (max-width: 1280px) {
  .p-home__about__img {
    position: relative;
    top: 0;
  }

  .p-home__about__img img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

@media screen and (max-width: 600px) {
  .p-home__about__img {
    width: 100%;
    max-width: 100%;
  }

  .p-home__about__img img {
    height: unset;
  }
}

.p-home__xxx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: clamp(2rem, 1.5752427184rem + 1.8122977346vw, 3.75rem);
}

.p-home__section--instagram {
  padding: 0;
}

.p-home__box--instagram {
  margin: 80px auto;
  padding: 0;
}

@media screen and (max-width: 600px) {
  .p-home__box--instagram {
    margin: 40px auto;
    padding: 0;
  }
}

.p-home__section--instagram .c-btn {
  margin: 0 auto;
}

.p-service {
  display: grid;
  gap: clamp(1.5rem, 0.9538834951rem + 2.3300970874vw, 3.75rem);
  grid-template-columns: repeat(1, 1fr);
}

.p-service--text {
  text-align: center;
  font-size: clamp(1rem, 0.9696601942rem + 0.1294498382vw, 1.125rem);
  line-height: 1.6666666667;
  letter-spacing: 0.1em;
}

.p-reglaze .c-card {
  -webkit-box-shadow: unset;
  box-shadow: unset;
  border-radius: 0.625rem;
  border: 1px solid var(--color-border_l);
}

.p-reglaze .c-card .c-card__box {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(0.5rem, 0.2421116505rem + 1.1003236246vw, 1.5625rem);
}

.p-reglaze .c-card .c-card__box .c-card__box--title {
  width: unset;
  padding-right: 0;
}

.p-reglaze .c-card .c-card__box .c-card__box--text {
  overflow: visible;
  display: block;
  font-size: clamp(0.8125rem, 0.7821601942rem + 0.1294498382vw, 0.9375rem);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
}

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

.u-grid {
  display: grid;
}

.u-uppercase {
  text-transform: uppercase;
}

.u-capitalize {
  text-transform: capitalize;
}

.u-textCenter {
  text-align: center;
}

.u-bold {
  font-weight: bold;
}

.u-justify-center.u-justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.js-overlay {
  display: none;
}

.js-overlay.is-active {
  display: block;
  background-color: var(--color-overlay-bg);
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 5;
}

.g-col {
  display: grid;
  gap: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
}

.g-col__1 {
  grid-template-columns: repeat(1, 1fr);
}

.g-col__2 {
  grid-template-columns: repeat(2, 1fr);
}

@media screen and (max-width: 600px) {
  .g-col__2 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.g-col__3 {
  grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 991px) {
  .g-col__3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .g-col__3 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.g-col__4 {
  grid-template-columns: repeat(4, 1fr);
}

@media screen and (max-width: 991px) {
  .g-col__4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .g-col__4 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.g-col__5 {
  grid-template-columns: repeat(5, 1fr);
}

@media screen and (max-width: 991px) {
  .g-col__5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .g-col__5 {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .is-pcOnly {
    display: none;
  }
}

.is-spOnly {
  display: none;
}

@media screen and (max-width: 600px) {
  .is-spOnly {
    display: block;
  }
}

@media screen and (max-width: 1366px) {
  .is-overPc {
    display: none;
  }
}

.is-underPc {
  display: none;
}

@media screen and (max-width: 1366px) {
  .is-underPc {
    display: block;
  }
}

@media screen and (max-width: 1280px) {
  .is-overXxl {
    display: none;
  }
}

.is-underXxl {
  display: none;
}

@media screen and (max-width: 1280px) {
  .is-underXxl {
    display: block;
  }
}

@media screen and (max-width: 1024px) {
  .is-overXl {
    display: none;
  }
}

.is-underXl {
  display: none;
}

@media screen and (max-width: 1024px) {
  .is-underXl {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .is-overMd {
    display: none;
  }
}

.is-underMd {
  display: none;
}

@media screen and (max-width: 768px) {
  .is-underMd {
    display: block;
  }
}

.is-fixed {
  overflow: hidden !important;
}

.c-fixedBtn {
  position: fixed;
  right: 40px;
  bottom: 30px;
  /* z-index: 9990; */
  z-index: 10;
}

@media (hover: hover) {
  .c-fixedBtn a:where(:-webkit-any-link, :enabled, summary):hover {
    opacity: 0.5;
  }
}

@media screen and (max-width: 600px) {
  .c-fixedBtn {
    width: 180px;
    height: 4.5625rem;
    bottom: auto;
    top: 17%;
  }
}

/*# sourceMappingURL=style.css.map */

.c-card .c-card__img.is-image,
.c-single__content--img.is-image {
  position: relative;
}

.c-card .c-card__img.is-image::after,
.facility-template-default .c-single__content--img.is-image::after {
  content: "※写真はイメージです";
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 100;
  padding: 0.5rem 1rem;
  width: fit-content;
  height: fit-content;
  display: block;
  font-size: 0.875rem;
  line-height: 1.6666666667;
  letter-spacing: 0.1em;
  color: var(--color_white);
  background-color: rgba(0, 0, 0, 0.8);
  text-align: center;
  margin-top: 0.5rem;
}