@charset "UTF-8";
/*=================================================================================

　変数定義

=================================================================================*/
/*—————————————————————————————————————————————————————
　横幅／高さ／余白設定
—————————————————————————————————————————————————————*/
:root {
  /* 横幅【PC幅のみ】 */
  --width-contents_max_s: 1000px;
  --width-contents_max_m: 1200px;
  --width-contents_max_l: 1260px;
  --width-modal_max: 900px;
  /* 高さ【ヘッダのみ】 */
  --height-header: 83px;
  --height-header_l: 70px;
}

/*—————————————————————————————————————————————————————
　カラー設定
—————————————————————————————————————————————————————*/
:root {
  --color-key: #87C35B;
  --color-key_l: #D4F3BD;
  --color-body_bg: #D4F3BD;
  --color-head_bg: #fff;
  --color-foot_bg: #171717;
  --color-head_bg_l: #303030;
  /* テキスト */
  --color-txt: #141414;
  --color-txt_sub: #333333;
  --color-txt_l: #6B6B6B;
  /* リンク */
  --color-link: #87C35B;
  /* 画像のMIX */
  --color-img_mix: #91C2EA;
  /* 罫線 */
  --color-border: #87C35B;
  --color-border_l: #C7C7C7;
  /* フォームカラー */
  --color-form-txt: #141414;
  --color-form-border: #e2e2e2;
  --color-form-placeholder: #848484;
  /* ボタンやアラートなどエレメントカラー */
  --color-default: #FFFFFF;
  --color-primary: #87C35B;
  --color-disable: #888888;
  /* テーブル */
  --color-table_border: #1D71C6;
  --color-table_border_tr: #CCCCCC;
  --color-table_thead_bg: #1D71C6;
  --color-table_txt: #333333;
  /* オーバーレイ（モーダルやドロワーの背景） */
  --color-overlay-bg: rgba(0, 0, 0, 0.8);
  --color-overlay-bg_l: rgba(0, 0, 0, 0.4);
  /* モーダルウィンドウのコンテンツ背景 */
  --color-modal-bg: #FFFFFF;
  /* その他ベーシックな色 */
  --color_black: #000000;
  --color_white: #FFFFFF;
  --color_darkgray: #333333;
  --color_gray: #969696;
  --color_red: #EB2D2D;
  --color_blue: #0059ff;
  /* グラデーション */
  --color-main-visual: linear-gradient(135deg, #8AC7F0 0%, #3A9BDD 38%, #0062B0 100%);
  --color-gradation-header: linear-gradient(90deg, #1785D0 0%, #1786D0 9%, #1786D0 20%, #1889D0 31%, #198DCF 41%, #1B99CB 51%, #1EA3C9 61%, #21B5C4 72%, #23BEC2 83%, #24C1C1 92%, #24C1C1 100%);
  --color-gradation-btn: linear-gradient(136deg, #388FD5 0%, #0062B0 47%, #002E80 100%);
  --color-gradation-btn_l: linear-gradient(136deg, #38BFF7 0%, #1D98DC 47%, #087BCA 100%);
  --color-gradation-btn_s: linear-gradient(146deg, #91C2EA 0%, #4189D3 47%, #0062B0 100%);
}

*,
*::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: var(--color-txt);
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-family: "Noto Sans Jp", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.05em;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

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

main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-top: var(--height-header) !important;
}
@media screen and (max-width: 600px) {
  main {
    margin-top: var(--height-header_l) !important;
  }
}

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 {
  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;
  }
}
a:focus:not(:focus-visible) {
  outline: none;
}

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: 0.25rem 0.375rem;
  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: var(--color-key);
  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: var(--color_white);
  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:focus:not(:focus-visible) {
  outline: none;
}

form button:hover {
  opacity: 0.6;
  outline: none;
}

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

input,
textarea {
  padding: 0.40625rem 1rem;
  width: 100%;
  border: 1px solid var(--color-form-border);
  border-radius: 0.25rem;
  background-image: none;
  background-color: var(--color_white);
  font-size: 1em;
  font-family: inherit;
  -webkit-appearance: none;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: var(--color-form-placeholder);
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.6875;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: var(--color-form-placeholder);
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.6875;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: var(--color-form-placeholder);
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.6875;
}
input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: var(--color-form-placeholder);
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1.6875;
}
input::placeholder,
textarea::placeholder {
  color: var(--color-form-placeholder);
  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: var(--color-form-border);
  -webkit-box-shadow: none;
          box-shadow: none;
}

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

input::-webkit-input-placeholder {
  color: var(--color-form-placeholder);
}

input::-moz-placeholder {
  color: var(--color-form-placeholder);
}

input::-ms-input-placeholder {
  color: var(--color-form-placeholder);
}

input:-ms-input-placeholder {
  color: var(--color-form-placeholder);
}

input::placeholder {
  color: var(--color-form-placeholder);
}

input:focus {
  outline: none;
  border-color: var(--color-form-border);
  -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: var(--color-key);
  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: var(--color_white);
  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 1rem 0 0;
  padding: 0 0 0 30px;
  cursor: pointer;
}

input[type=radio] + span::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 1.375rem;
  height: 1.375rem;
  border: 1px solid var(--color-form-border);
  border-radius: 50%;
  background: var(--color_white);
  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: 0.1875rem;
  display: block;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--color-key);
  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 1rem 0 0;
  padding: 0 0 0 1.875rem;
  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: 1.125rem;
  height: 1.125rem;
  border: 1px solid var(--color-txt);
  border-radius: 0.125rem;
  background: var(--color_white);
  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.125rem;
  display: block;
  margin-top: -0.2em;
  width: 0.8125rem;
  height: 0.5rem;
  border-bottom: 0.125rem solid var(--color_white);
  border-left: 0.125rem solid var(--color_white);
  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 var(--color-form-border);
  border-radius: 0.125rem;
  background-image: url(../img/common/icon_select_arrow.svg);
  background-position: right 0.6875rem top 55%;
  background-size: 0.8125rem;
  background-repeat: no-repeat;
  background-color: var(--color_white);
  color: var(--color-txt);
  font-family: inherit;
  cursor: pointer;
  position: relative;
  -moz-appearance: none;
  -webkit-appearance: none;
}

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

select:focus {
  outline: none;
  border-color: var(--color-form-border);
  -webkit-box-shadow: none;
          box-shadow: none;
}

option {
  color: var(--color-txt);
}

.grecaptcha-badge {
  display: none;
}

input[type=date]::-webkit-date-and-time-value {
  text-align: left;
  color: var(--color-txt);
}

.wow {
  visibility: visible !important;
  /* hiddenを上書き */
  opacity: 0;
}

@font-face {
  font-family: "Noto Sans Jp";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/NotoSansJP-Regular.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans Jp";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/NotoSansJP-Medium.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans Jp";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/NotoSansJP-Bold.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Post No Bills Jaffna ExtraBold";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/PostNoBillsJaffna-ExtraBold.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Open Sans Hebrew";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/OpenSans-Regular.ttf") format("truetype");
  font-display: swap;
}
.c-table {
  border: 1px solid var(--color-table_border);
  font-family: "Noto Sans JP";
}
.c-table tr {
  border-bottom: 1px solid var(--color-table_border_tr);
}
@media screen and (max-width: 768px) {
  .c-table tr {
    border: none;
  }
}
.c-table tr:last-child {
  border: none;
}
.c-table tr th, .c-table tr td {
  padding: clamp(0.75rem, 0.567961165rem + 0.7766990291vw, 1.5rem);
  vertical-align: middle;
}
.c-table tr th {
  background-color: var(--color-table_thead_bg);
  color: var(--color_white);
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  line-height: 1.6666666667;
  font-weight: 500;
  letter-spacing: 0;
  width: 15.625rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-table tr th {
    text-align: left;
  }
}
.c-table tr td {
  padding-left: clamp(0.75rem, 0.2038834951rem + 2.3300970874vw, 3rem);
}

@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;
    border-bottom: none;
  }
}

.c-btn, .c-form__box input[type=submit],
.c-form__box input[type=button], .wp-block-file .wp-block-file__button {
  width: clamp(12.5rem, 10.755461165rem + 7.4433656958vw, 19.6875rem);
  max-width: 19.6875rem;
  font-size: clamp(1rem, 0.9696601942rem + 0.1294498382vw, 1.125rem);
  line-height: 1.5555555556;
  letter-spacing: 0.05em;
  font-weight: 500;
  padding: 1.875rem 3.125rem 1.875rem;
  color: var(--color_white);
  background-color: var(--color-txt);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem);
  border-radius: 3.25rem;
  position: relative;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .c-btn, .c-form__box input[type=submit],
  .c-form__box input[type=button], .wp-block-file .wp-block-file__button {
    width: clamp(10rem, 7.6486650485rem + 10.0323624595vw, 19.6875rem);
    max-width: 17.4375rem;
    padding: 0.6875rem 1.5rem 0.4375rem;
  }
}
.c-btn:hover::after, .c-form__box input[type=submit]:hover::after,
.c-form__box input[type=button]:hover::after, .wp-block-file .wp-block-file__button:hover::after {
  right: 1rem;
}
.c-btn--small, .wp-block-file .wp-block-file__button {
  max-width: 12.0625rem;
}
.c-btn--small::after, .wp-block-file .wp-block-file__button::after {
  content: none;
}
.c-btn--color {
  background-color: var(--color-key);
  color: var(--color_white);
}
.c-btn--color::after {
  background-image: url(../img/icon/icon_btn_next.svg);
}

.c-btn__long {
  border-radius: 3.0625rem;
  background: #000;
  width: clamp(16.25rem, 15.4156553398rem + 3.5598705502vw, 19.6875rem);
  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;
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 0.9696601942rem + 0.1294498382vw, 1.125rem);
  font-style: normal;
  font-weight: 600;
  line-height: 2.2em;
  /* 222.222% */
  letter-spacing: 0.1em;
  padding: clamp(0.9375rem, 0.7858009709rem + 0.6472491909vw, 1.5625rem) clamp(1.875rem, 1.5867718447rem + 1.2297734628vw, 3.0625rem);
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .c-btn__long {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.625rem;
  }
}
.c-btn__long.very-long {
  padding: clamp(0.9375rem, 0.7858009709rem + 0.6472491909vw, 1.5625rem) clamp(1.875rem, 1.3288834951rem + 2.3300970874vw, 4.125rem);
  margin-top: clamp(3.75rem, 3.3252427184rem + 1.8122977346vw, 5.5rem);
  width: clamp(18.75rem, 16.7779126214rem + 8.4142394822vw, 26.875rem);
}
@media screen and (max-width: 768px) {
  .c-btn__long.pc-only {
    display: none;
  }
}
.c-btn__long.sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-btn__long.sp-only {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.c-btn__long--bk {
  background: #83D746;
}

.c-btn__long--left {
  border-radius: 3.0625rem;
  width: clamp(16.875rem, 15.1152912621rem + 7.5080906149vw, 24.125rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375rem;
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  font-family: "Noto Sans JP";
  font-weight: 600;
  line-height: 2.2em;
  background: #000;
  letter-spacing: 0.1em;
  padding: clamp(0.9375rem, 0.8161407767rem + 0.5177993528vw, 1.4375rem) 0;
  margin: 0 auto;
  height: clamp(3.75rem, 3.2949029126rem + 1.9417475728vw, 5.625rem);
  color: #fff;
}
.c-btn__long--left--line {
  background-color: #06C755;
}
.c-btn__long--left--tel {
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(1.125rem, 0.942961165rem + 0.7766990291vw, 1.875rem);
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  /* 100% */
  letter-spacing: 0.05em;
  gap: clamp(0.9375rem, 0.8161407767rem + 0.5177993528vw, 1.4375rem);
}
.c-btn__long--left--footer {
  width: clamp(13.75rem, 13.3100728155rem + 1.8770226537vw, 15.5625rem);
  font-size: 0.875rem;
  padding: clamp(0.625rem, 0.5491504854rem + 0.3236245955vw, 0.9375rem) 0;
  line-height: 1;
  height: clamp(2.8125rem, 2.6759708738rem + 0.5825242718vw, 3.375rem);
}
.c-btn__long--left--footer--tel {
  font-size: clamp(1rem, 0.9696601942rem + 0.1294498382vw, 1.125rem);
}

.wp-block-post-content h1.wp-block-heading,
.p-editorContents h1.wp-block-heading {
  font-size: clamp(1.5rem, 1.1359223301rem + 1.5533980583vw, 3rem);
  font-weight: 700;
}
.wp-block-post-content h2.wp-block-heading,
.p-editorContents h2.wp-block-heading {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.25em;
  /* 125% */
  letter-spacing: 0.03em;
  border: none;
}
.wp-block-post-content h3.wp-block-heading,
.p-editorContents h3.wp-block-heading {
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  font-weight: 700;
  position: relative;
  margin-top: clamp(1rem, -0.2742718447rem + 5.4368932039vw, 6.25rem);
}
.wp-block-post-content h4.wp-block-heading,
.p-editorContents h4.wp-block-heading {
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  font-weight: 700;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.wp-block-post-content h4.wp-block-heading::before,
.p-editorContents h4.wp-block-heading::before {
  content: "";
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 50%;
  background-color: var(--color-key);
}
.wp-block-post-content h5.wp-block-heading,
.p-editorContents h5.wp-block-heading {
  font-size: clamp(1rem, 0.9696601942rem + 0.1294498382vw, 1.125rem);
  font-weight: 700;
}
.wp-block-post-content h6.wp-block-heading,
.p-editorContents h6.wp-block-heading {
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
  font-weight: 700;
}
.wp-block-post-content * + *,
.p-editorContents * + * {
  margin-top: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
}
.wp-block-post-content * + h1.wp-block-heading,
.p-editorContents * + h1.wp-block-heading {
  margin-top: clamp(1.5rem, 0.3470873786rem + 4.9190938511vw, 6.25rem);
}
.wp-block-post-content * + h2.wp-block-heading,
.p-editorContents * + h2.wp-block-heading {
  margin-top: clamp(1.5rem, 0.3470873786rem + 4.9190938511vw, 6.25rem);
}
.wp-block-post-content * + h3.wp-block-heading,
.p-editorContents * + h3.wp-block-heading {
  margin-top: clamp(1rem, -0.2742718447rem + 5.4368932039vw, 6.25rem);
}
.wp-block-post-content * + p,
.p-editorContents * + p {
  margin-top: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.92em;
  /* 192.857% */
  letter-spacing: 0.05em;
}
.wp-block-post-content * + .wp-block-image,
.p-editorContents * + .wp-block-image {
  margin-top: clamp(1rem, -0.2742718447rem + 5.4368932039vw, 6.25rem);
}
.wp-block-post-content .wp-block-columns .wp-block-image,
.p-editorContents .wp-block-columns .wp-block-image {
  margin-top: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
}
.wp-block-post-content .wp-block-columns .wp-block-image img,
.p-editorContents .wp-block-columns .wp-block-image img {
  width: 100%;
}
.wp-block-post-content .wp-block-gallery,
.p-editorContents .wp-block-gallery {
  margin-top: clamp(1rem, -0.2742718447rem + 5.4368932039vw, 6.25rem);
}
.wp-block-post-content .wp-block-list .wp-block-list,
.p-editorContents .wp-block-list .wp-block-list {
  margin-top: clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem);
}
.wp-block-post-content ul,
.wp-block-post-content ol,
.p-editorContents ul,
.p-editorContents ol {
  padding-left: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
}
.wp-block-post-content * + ul,
.wp-block-post-content * + ol,
.p-editorContents * + ul,
.p-editorContents * + ol {
  margin-top: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
}
.wp-block-post-content ul,
.p-editorContents ul {
  list-style: disc;
}
.wp-block-post-content ol,
.p-editorContents ol {
  list-style: decimal;
}
.wp-block-post-content li,
.p-editorContents li {
  position: relative;
}
.wp-block-post-content * + li,
.p-editorContents * + li {
  margin-top: clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem);
}
.wp-block-post-content * + .wp-block-table,
.p-editorContents * + .wp-block-table {
  margin-top: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
}
.wp-block-post-content figcaption,
.p-editorContents figcaption {
  font-size: 0.75rem;
  color: #787878;
  margin-top: clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem);
}
.wp-block-post-content .wp-block-table table,
.p-editorContents .wp-block-table table {
  max-width: 52.5rem;
  margin: 0 auto;
}
.wp-block-post-content .wp-block-table table th,
.p-editorContents .wp-block-table table th {
  border: none;
  border-bottom: 0.0625rem solid;
}
.wp-block-post-content .wp-block-table table td,
.p-editorContents .wp-block-table table td {
  border: none;
  border-bottom: 0.0625rem solid;
}

.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;
}

.wp-block-file {
  margin-top: clamp(1.5rem, 1.1359223301rem + 1.5533980583vw, 3rem);
}
.wp-block-file:not(.wp-element-button) {
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
}
.wp-block-file .wp-block-file__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-top: 0;
}

.wp-block-post-privacypolicy-content {
  margin-top: 0 !important;
  margin-bottom: clamp(5rem, 3.786407767rem + 5.1779935275vw, 10rem) !important;
}
.wp-block-post-privacypolicy-content h1.wp-block-heading {
  font-size: clamp(1.5rem, 1.1359223301rem + 1.5533980583vw, 3rem);
  font-weight: 700;
}
.wp-block-post-privacypolicy-content h2.wp-block-heading {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.25em;
  /* 125% */
  letter-spacing: 0.03em;
  border: none;
}
.wp-block-post-privacypolicy-content h3.wp-block-heading {
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  font-weight: 700;
  position: relative;
  margin-top: clamp(1rem, 0.3325242718rem + 2.8478964401vw, 3.75rem);
}
.wp-block-post-privacypolicy-content h4.wp-block-heading {
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  font-weight: 700;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.wp-block-post-privacypolicy-content h4.wp-block-heading::before {
  content: "";
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 50%;
  background-color: var(--color-key);
}
.wp-block-post-privacypolicy-content h5.wp-block-heading {
  font-size: clamp(1rem, 0.9696601942rem + 0.1294498382vw, 1.125rem);
  font-weight: 700;
}
.wp-block-post-privacypolicy-content h6.wp-block-heading {
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
  font-weight: 700;
}
.wp-block-post-privacypolicy-content * + * {
  margin-top: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
}
.wp-block-post-privacypolicy-content * + h1.wp-block-heading {
  margin-top: clamp(1.5rem, 0.9538834951rem + 2.3300970874vw, 3.75rem);
}
.wp-block-post-privacypolicy-content * + h2.wp-block-heading {
  margin-top: clamp(1.5rem, 0.9538834951rem + 2.3300970874vw, 3.75rem);
}
.wp-block-post-privacypolicy-content * + h3.wp-block-heading {
  margin-top: clamp(1rem, 0.3325242718rem + 2.8478964401vw, 3.75rem);
}
.wp-block-post-privacypolicy-content * + p {
  margin-top: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.92em;
  /* 192.857% */
  letter-spacing: 0.05em;
}
.wp-block-post-privacypolicy-content * + .wp-block-image {
  margin-top: clamp(1rem, -0.2742718447rem + 5.4368932039vw, 6.25rem);
}
.wp-block-post-privacypolicy-content .wp-block-columns .wp-block-image {
  margin-top: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
}
.wp-block-post-privacypolicy-content .wp-block-columns .wp-block-image img {
  width: 100%;
}
.wp-block-post-privacypolicy-content .wp-block-gallery {
  margin-top: clamp(1rem, -0.2742718447rem + 5.4368932039vw, 6.25rem);
}
.wp-block-post-privacypolicy-content .wp-block-list .wp-block-list {
  margin-top: clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem);
}
.wp-block-post-privacypolicy-content ul,
.wp-block-post-privacypolicy-content ol {
  padding-left: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
}
.wp-block-post-privacypolicy-content * + ul,
.wp-block-post-privacypolicy-content * + ol {
  margin-top: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
}
.wp-block-post-privacypolicy-content ul {
  list-style: disc;
}
.wp-block-post-privacypolicy-content ol {
  list-style: decimal;
}
.wp-block-post-privacypolicy-content li {
  position: relative;
}
.wp-block-post-privacypolicy-content * + li {
  margin-top: clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem);
}
.wp-block-post-privacypolicy-content * + .wp-block-table {
  margin-top: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
}
.wp-block-post-privacypolicy-content figcaption {
  font-size: 0.75rem;
  color: #787878;
  margin-top: clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem);
}
.wp-block-post-privacypolicy-content .wp-block-table table {
  max-width: 52.5rem;
  margin: 0 auto;
}
.wp-block-post-privacypolicy-content .wp-block-table table th {
  border: none;
  border-bottom: 0.0625rem solid;
}
.wp-block-post-privacypolicy-content .wp-block-table table td {
  border: none;
  border-bottom: 0.0625rem solid;
}

.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;
}

.wp-block-file {
  margin-top: clamp(1.5rem, 1.1359223301rem + 1.5533980583vw, 3rem);
}
.wp-block-file:not(.wp-element-button) {
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
}
.wp-block-file .wp-block-file__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-top: 0;
}

.l-inner {
  margin: 0 auto;
  width: 90%;
  max-width: var(--width-contents_max_m);
}
@media screen and (max-width: 600px) {
  .l-inner {
    width: 100%;
    padding: 0 1rem;
  }
}
.l-inner--l {
  max-width: var(--width-contents_max_l);
}
.l-inner--xl {
  max-width: var(--width-contents_max_xl);
}

.l-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .l-outer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-outer__side {
  width: 20%;
  max-width: var(--width-side-contents_max);
  border-right: 1px solid #707070;
}
@media screen and (max-width: 768px) {
  .l-outer__side {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    border: none;
    position: sticky;
    top: var(--height-header);
    background-color: var(--color_white);
    z-index: 10;
  }
}
@media screen and (max-width: 600px) {
  .l-outer__side {
    top: var(--height-header_l);
  }
}
.l-outer__main {
  width: 80%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 768px) {
  .l-outer__main {
    width: 100%;
  }
}

.l-outer__side-list {
  padding: clamp(1rem, 0.1808252427rem + 3.4951456311vw, 4.375rem) clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem);
  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.6359223301rem + 1.5533980583vw, 2.5rem);
  position: sticky;
  top: var(--height-header);
}
@media screen and (max-width: 768px) {
  .l-outer__side-list {
    padding: 0.75rem 0.375rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    position: static;
    gap: 0.375rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .l-outer__side-list li {
    white-space: nowrap;
    background-color: #F5F5F5;
    border-radius: 6.25rem;
    padding: 0.75rem 1.25rem;
  }
}

.l-outer__side-link {
  font-size: clamp(0.75rem, 0.6589805825rem + 0.3883495146vw, 1.125rem);
  line-height: 1.4444444444;
  letter-spacing: 0;
  display: block;
  position: relative;
  color: var(--color-txt_sub);
}
.l-outer__side-link.is_active {
  color: var(--color-txt);
  font-weight: bold;
}

.l-section {
  position: relative;
}
.l-section--top {
  padding-top: 0;
}
.l-section--pt2x {
  padding: clamp(3rem, 1.604368932rem + 5.9546925566vw, 8.75rem) 0;
}
@media screen and (max-width: 768px) {
  .l-section--pt2x {
    padding: clamp(2.25rem, 1.734223301rem + 2.2006472492vw, 4.375rem) 0;
  }
}
.l-section--notice {
  visibility: hidden;
  position: relative;
  padding: 5rem 0;
}
@media screen and (max-width: 1280px) {
  .l-section--notice {
    padding: clamp(2.25rem, 1.5825242718rem + 2.8478964401vw, 5rem) 0;
  }
}
@media screen and (max-width: 600px) {
  .l-section--notice {
    padding-top: 0px;
    margin-top: -3.75rem;
  }
}
.l-section--bg__bl {
  background-color: var(--color-body_bg);
}
.l-section--subscription {
  padding: 0;
}
.l-section--my {
  padding: 0;
  margin: clamp(2.5rem, 0.6796116505rem + 7.7669902913vw, 10rem) 0;
}
.l-section--what {
  padding: clamp(2.5rem, 1.2105582524rem + 5.501618123vw, 7.8125rem) 0 0;
}
.l-section--banner {
  padding-bottom: clamp(3.75rem, 2.8398058252rem + 3.8834951456vw, 7.5rem);
}
.l-section__page--inner {
  position: relative;
  overflow: clip;
}
.l-section__page--inner::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: clamp(12.5rem, -4.6419902913rem + 73.1391585761vw, 83.125rem);
  height: clamp(8.6875rem, 5.744538835rem + 12.5566343042vw, 20.8125rem);
  background-image: url(../img/common/comp/page_head-triangle.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
  z-index: -1;
}
@media screen and (max-width: 600px) {
  .l-section__page--inner::after {
    bottom: -6.0625rem;
  }
}
.l-section__page--inner--about::before {
  position: absolute;
  content: "";
  right: 0;
  top: 1.1875rem;
  width: clamp(11.25rem, -1.1893203883rem + 53.074433657vw, 62.5rem);
  height: clamp(8.6875rem, 2.3768203883rem + 26.925566343vw, 34.6875rem);
  background-image: url(../img/about/webp/p-about_top.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
  z-index: -1;
}
@media screen and (max-width: 600px) {
  .l-section__page--inner--about::before {
    bottom: -6.0625rem;
  }
}
.l-section__page--inner--home_update::before {
  position: absolute;
  content: "";
  right: 0;
  top: 1.1875rem;
  width: clamp(11.25rem, -1.1893203883rem + 53.074433657vw, 62.5rem);
  height: clamp(8.6875rem, 2.3768203883rem + 26.925566343vw, 34.6875rem);
  background-image: url(../img/home_update/webp/p-home_update_top.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
  z-index: -1;
}
@media screen and (max-width: 600px) {
  .l-section__page--inner--home_update::before {
    bottom: -6.0625rem;
  }
}
.l-section__page--inner--shop-open::before {
  position: absolute;
  content: "";
  right: 0;
  top: 1.1875rem;
  width: clamp(11.25rem, -1.1893203883rem + 53.074433657vw, 62.5rem);
  height: clamp(8.6875rem, 2.3768203883rem + 26.925566343vw, 34.6875rem);
  background-image: url(../img/shop_open/webp/p-shop_open_top.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
  z-index: -1;
}
@media screen and (max-width: 600px) {
  .l-section__page--inner--shop-open::before {
    bottom: -6.0625rem;
  }
}
.l-section__contents--inner {
  max-width: 68.75rem;
  margin: 0 auto;
  margin-top: clamp(3.75rem, 1.8234223301rem + 8.2200647249vw, 11.6875rem);
}
@media screen and (max-width: 1280px) {
  .l-section__contents--inner {
    max-width: 90%;
  }
}
.l-section__entry--inner {
  max-width: 68.75rem;
  margin: 0 auto;
  margin-top: clamp(3.75rem, 2.8398058252rem + 3.8834951456vw, 7.5rem);
}
@media screen and (max-width: 1280px) {
  .l-section__entry--inner {
    max-width: 90%;
  }
}
.l-section__contents--inner_big {
  max-width: 68.75rem;
  margin: 0 auto;
  margin-top: clamp(3.75rem, 1.9902912621rem + 7.5080906149vw, 11rem);
}
@media screen and (max-width: 1280px) {
  .l-section__contents--inner_big {
    max-width: 90%;
  }
}
.l-section__contents--inner_big_bottom {
  max-width: 75rem;
  margin: 0 auto;
  margin-top: clamp(3.75rem, 1.9902912621rem + 7.5080906149vw, 11rem);
}
@media screen and (max-width: 1280px) {
  .l-section__contents--inner_big_bottom {
    max-width: 90%;
  }
}
.l-section__contents--inner_recruit_top {
  max-width: 75rem;
  margin: 0 auto;
  margin-top: clamp(1.875rem, 1.6019417476rem + 1.1650485437vw, 3rem);
}
@media screen and (max-width: 1280px) {
  .l-section__contents--inner_recruit_top {
    max-width: 90%;
  }
}
.l-section__contents--inner_recruit_under-page--top {
  max-width: 75rem;
  margin: 0 auto;
  margin-top: clamp(1.25rem, 1.2348300971rem + 0.0647249191vw, 1.3125rem);
}
@media screen and (max-width: 1280px) {
  .l-section__contents--inner_recruit_under-page--top {
    max-width: 90%;
  }
}
.l-section__contents--inner_recruit_bottom {
  max-width: 75rem;
  margin: 0 auto;
  margin-top: clamp(1.875rem, 0.5097087379rem + 5.8252427184vw, 7.5rem);
}
@media screen and (max-width: 1280px) {
  .l-section__contents--inner_recruit_bottom {
    max-width: 90%;
  }
}

body:has(#wpadminbar) .l-header {
  top: 2rem;
}

.l-header {
  width: 100%;
  height: var(--height-header);
  position: fixed;
  top: 0;
  z-index: 5000;
  padding: 1.0625rem 1.5rem;
  gap: 1rem;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background-color: var(--color-head_bg);
}
@media screen and (max-width: 600px) {
  .l-header {
    height: var(--height-header_l);
    padding: 0.875rem 0.9375rem 0.9375rem 1.25rem;
  }
}

.l-header__inner {
  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;
  gap: 3.125rem;
  padding-left: clamp(1.25rem, -0.2063106796rem + 6.213592233vw, 7.25rem);
  padding-right: clamp(1.25rem, 0.2639563107rem + 4.2071197411vw, 5.3125rem);
}
@media screen and (max-width: 991px) {
  .l-header__inner {
    max-width: 99.25rem;
    margin: 0 auto;
    padding: 0;
  }
}

.l-header__logo img {
  height: 3.375rem;
  width: auto;
  max-width: 10.625rem;
}
@media screen and (max-width: 600px) {
  .l-header__logo img {
    height: 2.5rem;
    max-width: 11.875rem;
  }
}

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

.l-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(1rem, 0.3325242718rem + 2.8478964401vw, 3.75rem);
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-header__nav-item {
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  height: 100%;
  height: 100%;
  font-size: clamp(0.9375rem, 0.9223300971rem + 0.0647249191vw, 1rem);
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--color_black);
  font-family: "Noto Sans JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.12em;
  white-space: nowrap;
  cursor: default;
}
.l-header__nav-item.under-list {
  position: relative;
  cursor: pointer;
}
.l-header__nav-item.under-list::before {
  content: "";
  display: inline-block;
  width: 0.5625rem;
  height: 0.4375rem;
  background-color: #000;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  top: 50%;
  right: calc(100% + 0.6875rem);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-header__nav-item.under-list .l-header__nav-list-under {
  position: absolute;
  top: calc(100% + 1.09375rem);
  left: 50%;
  background: #FFF;
  -webkit-box-shadow: 0 0.25rem 0.78125rem 0 rgba(0, 0, 0, 0.07);
          box-shadow: 0 0.25rem 0.78125rem 0 rgba(0, 0, 0, 0.07);
  padding: 0.9375rem 0.875rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  /* transformは一度にまとめる */
  -webkit-transform: translateX(-50%) translateY(-20px);
          transform: translateX(-50%) translateY(-20px);
}
.l-header__nav-item.under-list .l-header__nav-list-under.is-active {
  max-height: 500px;
  opacity: 1;
  -webkit-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
  /* X軸は固定、Y軸だけ動かす */
}
.l-header__nav-item.under-list .l-header__nav-list-under .l-header__nav-item-under {
  padding-top: 0.5rem;
  padding-bottom: 0.5625rem;
  border-bottom: 0.0625rem dashed #83D746;
}
.l-header__nav-item.under-list .l-header__nav-list-under .l-header__nav-item-under:first-child {
  padding-top: 0;
}
.l-header__nav-item.under-list .l-header__nav-list-under .l-header__nav-item-under:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.l-header__nav-item-link {
  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;
  height: 100%;
  font-size: clamp(0.9375rem, 0.9223300971rem + 0.0647249191vw, 1rem);
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--color_black);
  font-family: "Noto Sans JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.12em;
  white-space: nowrap;
  cursor: default;
}
.l-header__nav-item-link.is_link {
  cursor: pointer;
}
.l-header__nav-item-link.is_link::after {
  content: none;
}
.l-header__nav-item-link.contact {
  background-color: #000;
  color: #fff;
  padding: 0.9375rem 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;
  line-height: 1;
  gap: 0.9375rem;
  border-radius: 3.0625rem;
}

.l-header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
}
.l-header__right .c-btn {
  width: 11.875rem;
  aspect-ratio: 190/40;
  border: 1px solid var(--color_black);
  background-color: transparent;
  color: var(--color_black);
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  line-height: 1.4285714286;
  letter-spacing: 0;
  padding: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-header__right .c-btn::after {
  content: none;
}
@media screen and (max-width: 1366px) {
  .l-header__right {
    display: none;
  }
}

.l-header__spRight {
  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;
  gap: 1.5rem;
}
.l-header__spRight .c-btn {
  border: 1px solid var(--color_white);
  background-color: transparent;
  color: var(--color_white);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.6875rem 1.5rem;
}
.l-header__spRight .l-header__right-lang {
  margin-top: 1.25rem;
}
@media screen and (max-width: 1366px) {
  .l-header__spRight {
    width: 100%;
  }
}

.l-header__navSp {
  position: fixed;
  top: var(--height-header);
  right: -100%;
  width: 100%;
  height: calc(100vh - var(--height-header));
  overflow-y: scroll;
  background-color: rgba(51, 51, 51, 0.5333333333);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (max-width: 1366px) {
  .is_open .l-header__navSp {
    visibility: visible;
    right: 0;
    opacity: 1;
  }
}
@media screen and (max-width: 600px) {
  .l-header__navSp {
    top: var(--height-header_l);
    height: calc(100vh - var(--height-header_l));
  }
}

.l-header__navSp-inner {
  width: 100%;
  height: 100%;
  max-width: 30rem;
  margin-left: auto;
  padding: 0 0 1.625rem;
  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;
  background-color: #fff;
  position: relative;
  right: -30rem;
  -webkit-transition: right 0.5s;
  transition: right 0.5s;
  border-top: 1px solid var(--color-head_bg_l);
}
@media screen and (max-width: 1366px) {
  .is_open .l-header__navSp-inner {
    right: 0;
  }
  .l-header__navSp-inner .l-header__nav-upper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.9375rem;
    height: auto;
    background-color: #6AB763;
    padding: 1.5rem 1rem;
    width: 100%;
  }
  .l-header__navSp-inner .l-header__nav-lower {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.25rem;
    width: 100%;
    padding: 1.875rem 1rem;
  }
}
@media screen and (max-width: 600px) {
  .l-header__navSp-inner .l-header__nav-lower {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

.l-header__navSp-list {
  width: 100%;
  margin: 0 auto;
}

.l-header__navSp-item {
  position: relative;
  color: #000;
}
.l-header__navSp-item.navSp-under-list {
  position: relative;
}
.l-header__navSp-item.navSp-under-list .l-header__navSp-item-under-list {
  max-height: 0;
  overflow: hidden;
  padding-left: 1.25rem;
  opacity: 0;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  -webkit-transition: max-height 0.4s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: max-height 0.4s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
  transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.l-header__navSp-item.navSp-under-list .l-header__navSp-item-under-list.is-active {
  max-height: 500px;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.l-header__navSp-item-link {
  padding: 0.8125rem 1.5rem;
  display: inline-block;
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  line-height: 1.5;
  letter-spacing: 0.03em;
  font-family: "Noto Sans JP";
}
.l-header__navSp-item-link.navSp-under-list-top {
  position: relative;
}
.l-header__navSp-item-link.navSp-under-list-top .navSp-under-list-triangle {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: calc(0% + 6.1875rem);
}
.l-header__navSp-item-link.navSp-under-list-top .navSp-under-list-triangle .navSp-under-list-triangle-btn {
  width: 0.75rem;
  height: 0.625rem;
  background-color: #000;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  top: 50%;
  left: 0.375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-header__navSp-item-link.navSp-under-list-top .l-header__navSp-item-under-list {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  -webkit-transition: max-height 0.4s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: max-height 0.4s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
  transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.l-header__navSp-item-link.navSp-under-list-top .l-header__navSp-item-under-list.is-active {
  max-height: 500px;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media screen and (max-width: 1366px) {
  body.is_fixed {
    overflow: hidden;
  }
}
.l-header__navSp-itemChild .l-header__navSp-item-link {
  position: relative;
  padding-left: 1.5em;
}
.l-header__navSp-itemChild .l-header__navSp-item-link::before {
  position: absolute;
  content: "";
  background-color: var(--color-key);
  height: 1px;
  width: 0.5rem;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.l-header__navSp-itemChild:not(:last-child) {
  border-bottom: 1px solid #333;
}

.l-header__navSp-item-inner {
  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;
}

.l-header__navSp-item-accordion {
  display: block;
  position: relative;
  width: 1rem;
  aspect-ratio: 1/1;
}
.l-header__navSp-item-accordion::before, .l-header__navSp-item-accordion::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1rem;
  height: 0.0625rem;
  background-color: var(--color-key_l);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform-origin: left center 0;
          transform-origin: left center 0;
}
.l-header__navSp-item-accordion::after {
  -webkit-transform: rotate(90deg) translate(-50%, -50%);
          transform: rotate(90deg) translate(-50%, -50%);
}
.l-header__navSp-item.is_active .l-header__navSp-item-accordion::after {
  -webkit-transform: rotate(0deg) translate(-50%, -50%);
          transform: rotate(0deg) translate(-50%, -50%);
}

.l-header__navSp-list-child {
  padding-bottom: 0.875rem;
}

.l-header__navSp-item-child:nth-child(n+2) {
  margin-top: 0.5rem;
}

.l-header__navSp-item-child-link {
  font-size: clamp(0.8125rem, 0.7821601942rem + 0.1294498382vw, 0.9375rem);
  line-height: 1.6666666667;
  letter-spacing: 0.03em;
  font-family: "Noto Sans JP";
  color: var(--color-txt) !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-header__navSp-item-child-link::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.125rem;
  margin-right: 0.5rem;
}

.l-footer {
  background-color: var(--color-key_l);
  padding: 4.5rem 0 3.8125rem;
  color: var(--color_black);
  position: relative;
}
@media screen and (max-width: 600px) {
  .l-footer {
    padding: 2.5rem 0 1.875rem;
  }
}

.l-footer__floating {
  position: absolute;
  top: -5.6875rem;
  right: 15%;
  z-index: 10;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  border: none;
  background-color: transparent;
}
@media screen and (max-width: 1280px) {
  .l-footer__floating {
    right: 8%;
  }
}
@media screen and (max-width: 600px) {
  .l-footer__floating {
    right: 6%;
    top: -4rem;
  }
}
.l-footer__floating img {
  max-width: 5.875rem;
  height: 5.6875rem;
}
@media screen and (max-width: 600px) {
  .l-footer__floating img {
    max-width: 4.1875rem;
    height: 4rem;
  }
}
.l-footer__floating span {
  display: block;
  position: absolute;
  top: 45%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(50%);
          transform: translateX(-50%) translateY(50%);
  white-space: nowrap;
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  /* 187.5% */
  letter-spacing: 0.1em;
}
.l-footer__floating:hover {
  opacity: 0.7;
}

.l-footer__top {
  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;
  gap: 1.875rem;
}
@media screen and (max-width: 1024px) {
  .l-footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: clamp(1.875rem, 1.4199029126rem + 1.9417475728vw, 3.75rem);
  }
}

.l-footer__top-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 600px) {
  .l-footer__top-left img {
    width: 13.75rem;
  }
}

.l-footer__logo a {
  display: inline-block;
}

.l-footer__top-title {
  margin-top: 1rem;
  font-size: 0.75rem;
  line-height: 1.4166666667;
  letter-spacing: 0;
}
.l-footer__top-title span {
  margin-left: 0.625rem;
  letter-spacing: 0.6em;
}

.l-footer__top-text {
  margin-top: 0.5rem;
  font-size: 0.6875rem;
  line-height: 1.6363636364;
  letter-spacing: 0;
}

.l-footer__top-right--outer {
  max-width: 49.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1.3125rem, 0.5691747573rem + 3.1715210356vw, 4.375rem);
}
@media screen and (max-width: 1024px) {
  .l-footer__top-right--outer {
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__top-right--outer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.l-footer__top-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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  padding-left: 2.0625rem;
  padding-right: 2.0625rem;
  gap: 1.3125rem clamp(0.625rem, -0.625rem + 2.6041666667vw, 2.5rem);
}
@media screen and (max-width: 768px) {
  .l-footer__top-right {
    padding: 0;
  }
}
.l-footer__top-right:nth-child(2)::after {
  position: absolute;
  content: "";
  top: 0;
  right: -2.0625rem;
  width: 0.0625rem;
  height: 100%;
  background-color: #000;
}
@media screen and (max-width: 1280px) {
  .l-footer__top-right:nth-child(2)::after {
    right: -1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__top-right:nth-child(2)::after {
    display: none;
  }
}
.l-footer__top-right:nth-child(2)::before {
  position: absolute;
  content: "";
  top: 0;
  left: -2.0625rem;
  width: 0.0625rem;
  height: 100%;
  background-color: #000;
}
@media screen and (max-width: 1280px) {
  .l-footer__top-right:nth-child(2)::before {
    left: -1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__top-right:nth-child(2)::before {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__top-right {
    width: 100%;
    gap: 1.3125rem 2.5rem;
  }
}
@media screen and (max-width: 480px) {
  .l-footer__top-right {
    grid-auto-flow: row;
    grid-template-rows: unset;
    grid-template-columns: repeat(2, 1fr);
  }
}

.l-footer__top-item {
  white-space: nowrap;
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 768px) {
  .l-footer__top-item ul {
    margin-left: 1.25rem;
  }
}
.l-footer__top-item ul li {
  margin-top: 1.125rem;
}
.l-footer__top-item ul li span {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-footer__top-item ul li span {
    display: inline;
  }
}

.l-footer__bottom {
  max-width: 72.4375rem;
  margin: 0 auto;
  margin-top: clamp(1.875rem, 1.1620145631rem + 3.0420711974vw, 4.8125rem);
  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;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .l-footer__bottom {
    -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: 1.25rem;
  }
}

.l-footer__bottom--title {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(1.125rem, 1.0946601942rem + 0.1294498382vw, 1.25rem);
  font-style: normal;
  font-weight: 600;
  line-height: 1.5em;
  /* 150% */
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .l-footer__bottom--title {
    text-align: center;
  }
}

.l-footer__bottom--text {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.14em;
  /* 214.286% */
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .l-footer__bottom--text {
    text-align: center;
  }
}

.l-footer__bottom-copyright {
  font-size: 0.625rem;
  line-height: 1.5;
  letter-spacing: 0;
}
@media screen and (max-width: 480px) {
  .l-footer__bottom-copyright {
    text-align: center;
    width: 100%;
  }
}

.l-footer__bottom-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1.25rem, 1.0983009709rem + 0.6472491909vw, 1.875rem);
}
@media screen and (max-width: 1024px) {
  .l-footer__bottom-list {
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .l-footer__bottom-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.l-footer__bottom-link {
  font-size: 0.75rem;
  line-height: 1.4166666667;
  letter-spacing: 0;
}

.l-footer__bottom-link-x {
  width: 2.5rem;
  height: 2.5rem;
  background-image: url(../img/icon/icon_sns-x_wh.svg);
  background-size: cover;
  background-repeat: no-repeat;
}

.l-footer__under {
  margin: 0 auto;
  max-width: clamp(37.5rem, 20.0546116505rem + 74.4336569579vw, 109.375rem);
  margin-top: clamp(1.875rem, 1.5412621359rem + 1.4239482201vw, 3.25rem);
  border-top: 0.0625rem solid #000;
  padding-top: clamp(1.5625rem, 1.4108009709rem + 0.6472491909vw, 2.1875rem);
}

.l-footer__under--inner {
  margin: 0 auto;
  max-width: clamp(37.5rem, 28.3980582524rem + 38.8349514563vw, 75rem);
  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: flex-end;
}
@media screen and (max-width: 1024px) {
  .l-footer__under--inner {
    max-width: 90%;
  }
}
@media screen and (max-width: 600px) {
  .l-footer__under--inner {
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .l-footer__under--inner--left {
    margin-top: 1.25rem;
    display: block;
  }
}

.l-footer__bottom-address {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.71em;
  /* 171.429% */
  letter-spacing: 0.1em;
}
.l-footer__bottom-address .sp-only {
  display: none;
}
@media screen and (max-width: 1024px) {
  .l-footer__bottom-address .sp-only {
    display: inline;
  }
}

.l-footer__bottom-date {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.71em;
  /* 214.286% */
  letter-spacing: 0.1em;
}
.l-footer__bottom-date .sp-only {
  display: none;
}
@media screen and (max-width: 1024px) {
  .l-footer__bottom-date .sp-only {
    display: inline;
  }
}

.l-footer__bottom-copyright {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.5em;
  /* 250% */
  letter-spacing: 0.1em;
  text-align: right;
}
@media screen and (max-width: 600px) {
  .l-footer__bottom-copyright {
    text-align: center;
    margin-top: 1.875rem;
  }
}

.c-accordion {
  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.625rem, 0.5339805825rem + 0.3883495146vw, 1rem);
  width: 100%;
}

.c-accordion__box {
  border: 0.125rem solid #83D746;
  background: #FFF;
  background-color: var(--color_white);
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-accordion__box .c-accordion__left {
  color: #83D746;
  font-family: "Open Sans Hebrew";
  font-size: clamp(1.25rem, 1.1893203883rem + 0.2588996764vw, 1.5rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.66em;
  /* 166.667% */
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.c-accordion__box .c-accordion__right {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-style: normal;
  font-weight: 600;
  line-height: 2em;
  /* 250% */
  letter-spacing: 0.05em;
}
.c-accordion__box .c-accordion__right-bottom {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.71em;
  /* 171.429% */
  letter-spacing: 0.04em;
  margin-top: clamp(0.3125rem, 0.2518203883rem + 0.2588996764vw, 0.5625rem);
}

.c-accordion__title {
  position: relative;
  display: grid;
  grid-template-columns: clamp(2.5rem, 2.3483009709rem + 0.6472491909vw, 3.125rem) auto 3.25rem;
  gap: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: clamp(1rem, 0.9696601942rem + 0.1294498382vw, 1.125rem) 0 clamp(1rem, 0.8634708738rem + 0.5825242718vw, 1.5625rem) clamp(1rem, 0.8634708738rem + 0.5825242718vw, 1.5625rem);
}
.c-accordion__text {
  display: none;
  line-height: 1.8125;
}
.c-accordion__text a {
  color: var(--color-key);
}

.c-accordion__text-row {
  display: grid;
  grid-template-columns: clamp(2.5rem, 2.3483009709rem + 0.6472491909vw, 3.125rem) auto clamp(2.5rem, 2.3786407767rem + 0.5177993528vw, 3rem);
  gap: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
  padding: 0 0 clamp(1rem, 0.8634708738rem + 0.5825242718vw, 1.5625rem) clamp(1rem, 0.8634708738rem + 0.5825242718vw, 1.5625rem);
}

.c-accordion__btn {
  display: block;
  position: relative;
  width: 2rem;
  aspect-ratio: 1/1;
}
.c-accordion__btn::before, .c-accordion__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1rem;
  height: 0.125rem;
  background-color: #83D746;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.c-accordion__btn::after {
  -webkit-transform: rotate(90deg) translate(-50%, -50%);
          transform: rotate(90deg) translate(-50%, -50%);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.c-accordion__btn.is_open::after {
  -webkit-transform: rotate(0deg) translate(-50%, -50%);
          transform: rotate(0deg) translate(-50%, -50%);
}

/* details/summaryのデフォルト三角を消す */
.c-accordion__box > summary {
  list-style: none;
}

.c-accordion__box > summary::-webkit-details-marker {
  display: none;
}

/* クリック面は summary のみ。box 全体の pointer は外す */
.c-accordion__box {
  cursor: default;
}

/* 既存の pointer を打ち消し */
.c-accordion__title {
  cursor: pointer;
}

/* クリック手に戻す */
/* 閉じている時は .c-accordion__text を非表示、open時のみ表示 */
.c-accordion__text {
  display: none;
}

/* 既存と同じ指定でOK */
.c-accordion__box[open] .c-accordion__text {
  display: block;
}

/* フォーカスリングを summary(.c-accordion__title) で見やすく */
.c-accordion__title:focus-visible {
  outline: 2px solid var(--color-key);
  outline-offset: 2px;
}

/* プラス → マイナス化を open 属性で制御（is_openクラス不要） */
.c-accordion__box[open] .c-accordion__btn::after {
  -webkit-transform: rotate(0deg) translate(-50%, -50%);
          transform: rotate(0deg) translate(-50%, -50%);
}

/* （任意）スムース開閉：gridトリック
   ─ 使うなら block 表示の代わりに下2つに差し替え ─ */
.c-accordion__text {
  display: grid;
  grid-template-rows: 0fr;
  -webkit-transition: grid-template-rows 0.26s ease;
  transition: grid-template-rows 0.26s ease;
  transition: grid-template-rows 0.26s ease, -ms-grid-rows 0.26s ease;
}

.c-accordion__box[open] .c-accordion__text {
  grid-template-rows: 1fr;
}

.c-accordion__text > * {
  overflow: hidden;
}

.c-archive {
  margin: clamp(2rem, 1.5449029126rem + 1.9417475728vw, 3.875rem) 0;
  padding-bottom: clamp(3rem, 2.2415048544rem + 3.2362459547vw, 6.125rem);
}

.c-archive__heading {
  padding-bottom: clamp(2rem, 1.3932038835rem + 2.5889967638vw, 4.5rem);
}

.c-archive__wrap {
  padding-top: clamp(2.5rem, 1.802184466rem + 2.9773462783vw, 5.375rem);
}

.c-archive__category {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem);
}

.c-archive__category-link {
  background-color: var(--color_white);
  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: 1px solid var(--color-key);
  border-radius: 1rem;
  color: var(--color-key);
  padding: 0.1875rem 1.5rem;
  font-weight: 600;
}
@media (hover: hover) {
  .c-archive__category-link:where(:-webkit-any-link, :enabled, summary):hover {
    opacity: 1;
    color: var(--color_white);
    background-color: var(--color-key);
  }
}
.c-archive__category-link.is_current {
  color: var(--color_white);
  background-color: var(--color-key);
}

.c-archive__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 0.2718446602rem + 3.1067961165vw, 4rem) clamp(1rem, 0.6055825243rem + 1.6828478964vw, 2.625rem);
  margin-top: clamp(2.5rem, 1.802184466rem + 2.9773462783vw, 5.375rem);
}
@media screen and (max-width: 768px) {
  .c-archive__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .c-archive__list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.c-archive__item {
  background-color: var(--color_white);
  border-radius: 0.5rem;
  overflow: hidden;
}
.c-archive__item time {
  display: block;
  color: #9A98A2;
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  line-height: 1.2857142857;
  letter-spacing: 0.05em;
  font-weight: 500;
  white-space: nowrap;
}

.c-archive__item-cat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.25rem;
}
.c-archive__item-cat li {
  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;
  padding: 0.25rem clamp(0.75rem, 0.6589805825rem + 0.3883495146vw, 1.125rem);
  background-color: var(--color-key);
  border: 1px solid var(--color-key);
  border-radius: 1rem;
  color: var(--color_white);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4166666667;
  letter-spacing: 0.1em;
}

.c-archive__item-img {
  aspect-ratio: 339/193;
  background-color: var(--color_white);
}
.c-archive__item-img.noImage {
  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;
}
.c-archive__item-img.noImage img {
  width: 60%;
}
.c-archive__item-img img {
  width: 100%;
  aspect-ratio: 339/193;
  margin-bottom: 0;
}

.c-archive__item-box {
  padding: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem) clamp(1rem, 0.833131068rem + 0.71197411vw, 1.6875rem) clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem) clamp(1rem, 0.833131068rem + 0.71197411vw, 1.6875rem);
}

.c-archive__item-box-upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.c-archive__item-box-title {
  margin-top: clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem);
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  line-height: 1.8125;
  letter-spacing: 0.1em;
  font-weight: 600;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
}

.c-breadcrumb {
  margin: clamp(0.9375rem, 0.8616504854rem + 0.3236245955vw, 1.25rem) 0 clamp(2.5rem, 0.8009708738rem + 7.2491909385vw, 9.5rem);
}
.c-breadcrumb.entry {
  margin: clamp(0.9375rem, 0.8616504854rem + 0.3236245955vw, 1.25rem) 0 0;
}

.l-section__blog .c-breadcrumb {
  margin: clamp(0.9375rem, 0.8616504854rem + 0.3236245955vw, 1.25rem) 0 clamp(2.5rem, 1.7111650485rem + 3.3656957929vw, 5.75rem);
}

.c-breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.c-breadcrumb__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  font-family: "Noto Sans JP";
  font-weight: 500;
}
.c-breadcrumb__item::after {
  content: "";
  width: 0.625rem;
  height: 0.8125rem;
  background-image: url(../img/icon/comp/triangle.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.c-breadcrumb__item:last-child::after {
  content: none;
}
.c-breadcrumb__item a {
  color: #818181;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.12em;
}
.c-breadcrumb__item p {
  color: #000;
}

.c-form--en {
  word-break: keep-all;
}
.c-form--en .c-form__label--required::after {
  content: "Required";
  width: 4.375rem;
}

.c-form__title {
  margin: 1rem auto 0;
  width: 100%;
  font-size: clamp(1.25rem, 1.067961165rem + 0.7766990291vw, 2rem);
  line-height: 1.34375;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.c-form__text {
  margin: 1rem auto 0;
  width: 100%;
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  line-height: 2.1875;
  letter-spacing: 0.04em;
}

.c-form__box {
  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.6359223301rem + 1.5533980583vw, 2.5rem);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin: clamp(1.5rem, 0.6504854369rem + 3.6245954693vw, 5rem) auto 0;
}
.c-form__box input[type=submit],
.c-form__box input[type=button] {
  padding: clamp(1.25rem, 1.0527912621rem + 0.8414239482vw, 2.0625rem) clamp(2.8125rem, 2.4939320388rem + 1.359223301vw, 4.125rem) clamp(1.25rem, 1.0527912621rem + 0.8414239482vw, 2.0625rem);
  line-height: 1;
}
@media screen and (max-width: 600px) {
  .c-form__box input[type=submit],
  .c-form__box input[type=button] {
    width: clamp(12.5rem, 11.286407767rem + 5.1779935275vw, 17.5rem) !important;
  }
}
.c-form__box input[type=button] {
  background: transparent 0% 0% no-repeat padding-box;
  border: 1px solid var(--color-txt);
  color: var(--color-txt);
}
.c-form__box--confirm .c-form__wrap {
  display: grid;
  grid-template-columns: 40% 60%;
  font-weight: 400;
}
@media screen and (max-width: 600px) {
  .c-form__box--confirm .c-form__wrap {
    grid-template-columns: 1fr;
  }
}

.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: clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem);
  font-weight: 500;
}
.c-form__wrap--center {
  margin-top: clamp(1rem, 0.3325242718rem + 2.8478964401vw, 3.75rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
}
.c-form__wrap--center input[type=checkbox] + span::before {
  border: 0.0625rem solid #2F2F2F;
  border-radius: 0;
}
.c-form__wrap .wpcf7-form-control.wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
}
.c-form__wrap .wpcf7-list-item-label {
  font-weight: 400;
}
.c-form__wrap input {
  border-radius: 0.25rem;
  border: 0.0625rem solid #141414;
  background: #FFF;
  padding: 0.8125rem 0.9375rem;
  height: 3.125rem;
}
.c-form__wrap .wpcf7-list-item {
  margin: 0;
}
.c-form__wrap input[type=radio] + span::before {
  border: 0.0625rem solid #141414;
}
.c-form__wrap input[type=radio]:checked + span::after {
  left: 0.25rem;
  width: 0.875rem;
  height: 0.875rem;
  background: #83D746;
}
.c-form__wrap textarea {
  border: 0.0625rem solid #141414;
}
.c-form__wrap input[type=checkbox]:checked + span::after {
  border-bottom: 0.1875rem solid #83D746;
  border-left: 0.1875rem solid #83D746;
}

.c-form__label {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(1rem, 0.9696601942rem + 0.1294498382vw, 1.125rem);
  line-height: 1.6111111111;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.c-form__label--required {
  display: inline-block;
}
.c-form__label--required::after {
  content: "必須";
  width: 3.4375rem;
  height: 1.5rem;
  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: #83D746;
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  line-height: 1.25;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media screen and (max-width: 600px) {
  .c-form__label--note {
    -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: 0.375rem;
  }
}
.c-form__label--note span {
  font-weight: 400;
  color: var(--color-disable);
}
.c-form__label--large {
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  line-height: 2;
  letter-spacing: 0.05em;
}

.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;
}
.c-form__btnWrap .wpcf7-spinner {
  display: none;
}
@media screen and (max-width: 600px) {
  .c-form__btnWrap {
    margin-top: 1rem;
  }
}
.c-form__btnWrap input {
  width: clamp(18.75rem, 18.5224514563rem + 0.9708737864vw, 19.6875rem) !important;
  background-image: url(../img/icon/button_home.svg);
  background-repeat: no-repeat;
  background-position: center right clamp(2.8125rem, 2.4939320388rem + 1.359223301vw, 4.125rem);
  background-size: 1.0625rem;
}
.c-form__btnWrap .wpcf7-previous {
  text-align: center !important;
  color: #fff !important;
  background-color: var(--color-txt) !important;
}

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

.c-form__text--center {
  text-align: center;
  color: #2F2F2F;
  font-family: "Noto Sans JP";
  font-size: clamp(0.75rem, 0.6893203883rem + 0.2588996764vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.25em;
  /* 125% */
  letter-spacing: 0.05em;
}
.c-form__text--center .sp-only {
  display: none;
}
@media screen and (max-width: 600px) {
  .c-form__text--center .sp-only {
    display: inline;
  }
}
.c-form__text--center a {
  border-bottom: 0.0625rem solid #2F2F2F;
}

.c-form__privacyTextWrap {
  padding: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
  background-color: #fff;
  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.6359223301rem + 1.5533980583vw, 2.5rem);
  overflow: auto;
  max-height: clamp(9.375rem, 5.5825242718rem + 16.1812297735vw, 25rem);
  border: 1px solid var(--color-table_border_tr);
  border-radius: 0.3125rem;
}
.c-form__privacyTextWrap.scroll_none {
  max-height: unset;
  padding: 0;
  text-align: center;
  border: none;
}

.c-form__privacyText {
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-weight: 400;
  line-height: 2.3125;
  letter-spacing: 0.05em;
}

.c-form__privacyList {
  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.6359223301rem + 1.5533980583vw, 2.5rem);
}
.c-form__privacyList li ul {
  padding-left: 1em;
}

.c-form__privacyListItem {
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-weight: 400;
  line-height: 2.25;
  letter-spacing: 0;
}

.c-form__wrap input.wpcf7-not-valid,
.c-form__wrap textarea.wpcf7-not-valid,
.c-form__wrap select.wpcf7-not-valid {
  background-color: #fbebeb;
  border: 1px solid #eebbbc;
}

.wpcf7-not-valid input[type=radio] + span::before,
.wpcf7-not-valid input[type=checkbox] + span::before {
  border: 2px solid #eebbbc;
}

.wpcf7-not-valid-tip {
  margin-top: 0.25rem;
  color: #d74141;
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  font-weight: 400;
  line-height: 1.4285714286;
  letter-spacing: 0;
}

.wpcf7 form.invalid .wpcf7-response-output {
  display: none;
}

[data-class=wpcf7cf_group] .c-form__wrap {
  margin-top: clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem);
}
[data-class=wpcf7cf_group] .c-form__wrap:first-child {
  margin-top: 0;
}

[data-id=form-corporation] .c-form__wrap {
  margin-top: clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem) !important;
}

input.wpcf7-form-control.wpcf7-text.inquiry-details,
input.wpcf7-form-control.wpcf7-text.customer-type {
  position: absolute;
  top: 0;
  left: -50vw;
}

.page-template-page-contact .grecaptcha-badge,
.page-template-page-contact-en .grecaptcha-badge {
  display: block;
  bottom: clamp(4rem, 3.6966019417rem + 1.2944983819vw, 5.25rem) !important;
}

#autozip {
  display: none !important;
}

.p-contact__top-text-entry {
  color: #000;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.92em;
  /* 192.857% */
  letter-spacing: 0.05em;
}

.c-hamburger {
  display: none;
  position: relative;
  z-index: 9999;
}
@media screen and (max-width: 1366px) {
  .c-hamburger {
    width: 1.625rem;
    cursor: pointer;
    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;
    gap: 0.3125rem;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    background: transparent;
    border: none;
    padding: 0;
  }
}
.c-hamburger span {
  background-color: var(--color-key);
  width: 100%;
  height: 0.0625rem;
  display: block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.c-hamburger span:nth-child(2) {
  background-color: transparent;
  position: relative;
}
.c-hamburger span:nth-child(2)::before, .c-hamburger span:nth-child(2)::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 0.0625rem;
  display: block;
  background-color: var(--color-key);
}
.c-hamburger.is_active span:first-child {
  opacity: 0;
}
.c-hamburger.is_active span:nth-child(2)::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-hamburger.is_active span:nth-child(2)::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-hamburger.is_active span:last-child {
  opacity: 0;
}

.c-title {
  margin-bottom: clamp(1.5rem, 1.3786407767rem + 0.5177993528vw, 2rem);
}
.c-title h2,
.c-title h3,
.c-title h4,
.c-title h5,
.c-title h6 {
  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.25rem;
}
.c-title h2::after,
.c-title h3::after,
.c-title h4::after,
.c-title h5::after,
.c-title h6::after {
  content: attr(data-title);
  color: var(--color-key);
  font-family: "Roboto";
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
  font-weight: 400;
}
.c-title h2 {
  font-size: clamp(1.5rem, 1.3786407767rem + 0.5177993528vw, 2rem);
  line-height: 1.40625;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.c-title h3 {
  font-size: clamp(1.25rem, 1.1893203883rem + 0.2588996764vw, 1.5rem);
  line-height: 1.40625;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.c-title h4 {
  font-size: clamp(1.125rem, 1.0946601942rem + 0.1294498382vw, 1.25rem);
  line-height: 1.40625;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.c-title h5 {
  font-size: clamp(1rem, 0.9696601942rem + 0.1294498382vw, 1.125rem);
  line-height: 1.40625;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.c-title h6 {
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  line-height: 1.40625;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.c-title--white .c-title__sub,
.c-title--white .c-title__main {
  color: var(--color_white) !important;
}
.c-title--white .c-title__main::before {
  background-color: var(--color_white);
}
.c-title--center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-section__title {
  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.5rem, 0.2876213592rem + 0.9061488673vw, 1.375rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-section__title--img img {
  width: auto;
  height: clamp(2.1875rem, 1.7475728155rem + 1.8770226537vw, 4rem);
}

.c-section__title--text {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 0.9089805825rem + 0.3883495146vw, 1.375rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  /* 218.182% */
  letter-spacing: 0.1em;
}

.c-about__title-number {
  position: relative;
  color: #000;
  font-family: "Open Sans Hebrew";
  font-size: clamp(0.9375rem, 0.8313106796rem + 0.4530744337vw, 1.375rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  /* 318.182% */
  letter-spacing: 0.05em;
  display: inline-block;
}
.c-about__title-number::after {
  position: absolute;
  content: "";
  left: 0;
  top: clamp(1.625rem, 1.3822815534rem + 1.0355987055vw, 2.625rem);
  width: 100%;
  height: 0.125rem;
  background-color: #000;
}

.c-about__title-text {
  margin-top: clamp(0.9375rem, 0.4975728155rem + 1.8770226537vw, 2.75rem);
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(1.25rem, 0.9466019417rem + 1.2944983819vw, 2.5rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.75em;
  /* 175% */
  letter-spacing: 0.05em;
}
.c-about__title-text--02 span {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(1.5rem, 1.1055825243rem + 1.6828478964vw, 3.125rem) !important;
  font-style: normal;
  font-weight: 700;
  /* 116.667% */
}
.c-about__title-text span {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(1.5rem, 0.9538834951rem + 2.3300970874vw, 3.75rem);
  font-style: normal;
  font-weight: 700;
  /* 116.667% */
}

.c-page__title {
  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.5rem, 0.2876213592rem + 0.9061488673vw, 1.375rem);
}

.c-page__title--img img {
  width: auto;
  height: clamp(2.1875rem, 1.7475728155rem + 1.8770226537vw, 4rem);
}

.c-page__title--text {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 0.9089805825rem + 0.3883495146vw, 1.375rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  /* 218.182% */
  letter-spacing: 0.1em;
}

.c-page__title--title-text {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(1.75rem, 1.2645631068rem + 2.071197411vw, 3.75rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.16em;
  /* 116.667% */
  letter-spacing: 0.05em;
}
.c-page__title--title-text.middle {
  font-size: clamp(1.75rem, 1.4162621359rem + 1.4239482201vw, 3.125rem);
  line-height: 1.4em;
  margin-bottom: 0.625rem;
}
.c-page__title--title-text .sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-page__title--title-text .sp-only {
    display: inline;
  }
}
.c-page__title--title-text span {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(1.25rem, 0.9466019417rem + 1.2944983819vw, 2.5rem);
  font-style: normal;
  font-weight: 400;
}

.c-page_under__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.c-section__page_under--title {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(1.5rem, 1.3786407767rem + 0.5177993528vw, 2rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.75em;
  /* 175% */
  letter-spacing: 0.05em;
}
.c-section__page_under--title .sp-only {
  display: none;
}
@media screen and (max-width: 600px) {
  .c-section__page_under--title .sp-only {
    display: inline;
  }
}

.c-section__page_under--text {
  color: #818181;
  font-family: "Open Sans Hebrew";
  font-size: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
  font-style: normal;
  font-weight: 400;
  line-height: 2em;
  /* 342.857% */
  letter-spacing: 0.2em;
}

.c-title__catch-box {
  margin-top: clamp(3.75rem, 3.1432038835rem + 2.5889967638vw, 6.25rem);
  height: clamp(5rem, 3.4830097087rem + 6.4724919094vw, 11.25rem);
}
@media screen and (max-width: 600px) {
  .c-title__catch-box {
    margin-bottom: 2.5rem;
  }
}
.c-title__catch-box--text {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(1.25rem, 1.1589805825rem + 0.3883495146vw, 1.625rem);
  font-style: normal;
  font-weight: 700;
  line-height: 2.15em;
  /* 215.385% */
  letter-spacing: 0.05em;
}
.c-title__catch-box--commercial-store {
  margin-top: clamp(0rem, -1.5169902913rem + 6.4724919094vw, 6.25rem);
}

/* モーダル */
.modal-overlay {
  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;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(1, 1, 1, 0.7);
  z-index: 100;
}

.modal-container {
  max-height: 80vh;
  max-width: var(--width-modal_max);
  width: 90%;
  position: relative;
  background-color: #fff;
  border-radius: 1.75rem;
}

.modal-container--backgroundColorPt1 {
  background-color: #fff;
}

.modal-container--backgroundColorPt2 {
  background-color: rgba(255, 255, 255, 0.9);
}

.modal-close {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 2.5rem auto 0;
  cursor: pointer;
}
.modal-close:hover {
  opacity: 0.7;
}
.modal-close::after {
  content: none;
}
.modal-close::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(../img/common/icon_cross.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

/* モーダルアニメーション */
@-webkit-keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
            transform: translateY(15%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes mmslideIn {
  from {
    -webkit-transform: translateY(15%);
            transform: translateY(15%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}
@keyframes mmslideOut {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal-overlay {
  -webkit-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal-container {
  -webkit-animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal-overlay {
  -webkit-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal-container {
  -webkit-animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal-container,
.micromodal-slide .modal-overlay {
  will-change: transform;
}

.c-modal {
  overflow: auto;
  max-height: 80vh;
}

.c-modal__wrap {
  padding: clamp(2rem, 1.6359223301rem + 1.5533980583vw, 3.5rem) clamp(1.5rem, 0.8932038835rem + 2.5889967638vw, 4rem);
}

.c-modal__box {
  font-family: "Noto Sans JP";
  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;
}

.c-modal__inner {
  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;
  gap: 1.5rem;
  width: 100%;
}
.c-modal__inner picture {
  width: 100%;
  overflow: hidden;
  border-radius: 0.625rem;
}
.c-modal__inner .c-modal__img {
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
.c-modal__inner .c-modal__img-sample {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
.c-modal__inner .c-modal__title {
  font-size: 0.9375rem;
  line-height: 1.4;
  width: 100%;
}
.c-modal__inner .c-modal__text-box {
  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.4375rem;
  width: 100%;
}
.c-modal__inner .c-modal__text-sub {
  font-size: 0.8125rem;
  line-height: 1.4615384615;
  font-weight: bold;
}
.c-modal__inner .c-modal__text {
  font-size: 0.8125rem;
  line-height: 1.4615384615;
}
@media screen and (max-width: 768px) {
  .c-modal__inner {
    -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;
  }
}

.c-pagination {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 5.375rem auto 0;
}

.c-pagination__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3125rem;
}
.c-pagination__list li:has(.next) {
  margin-left: clamp(0.3125rem, -0.1425970874rem + 1.9417475728vw, 2.1875rem);
}
.c-pagination__list li:has(.prev) {
  margin-right: clamp(0.3125rem, -0.1425970874rem + 1.9417475728vw, 2.1875rem);
}

.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: clamp(2rem, 1.7269417476rem + 1.1650485437vw, 3.125rem);
  aspect-ratio: 1/1;
  color: var(--color-key);
  border: 1px solid var(--color-key);
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  line-height: 1.5;
  font-weight: 500;
}
.page-numbers.current {
  color: var(--color_white);
  background-color: var(--color-key);
}

.c-single {
  margin: clamp(2rem, 1.5449029126rem + 1.9417475728vw, 3.875rem) auto;
  padding-bottom: clamp(3rem, 2.2415048544rem + 3.2362459547vw, 6.125rem);
}

.c-single__inner {
  margin: clamp(2.5rem, 1.286407767rem + 5.1779935275vw, 7.5rem) 0;
}

.c-single__date {
  color: #9A98A2;
  font-family: "Roboto";
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  letter-spacing: 0.05em;
  line-height: 1.2857142857;
}

.c-single__title {
  margin-top: clamp(0.25rem, 0.1893203883rem + 0.2588996764vw, 0.5rem);
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  font-weight: 600;
  line-height: 1.6666666667;
  letter-spacing: 0.1em;
}

.c-single__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(0.25rem, 0.067961165rem + 0.7766990291vw, 1rem);
  margin-top: clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem);
}
.c-single__category li {
  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;
  padding: 0.25rem clamp(0.75rem, 0.6589805825rem + 0.3883495146vw, 1.125rem);
  background-color: var(--color-key);
  border: 1px solid var(--color-key);
  border-radius: 1rem;
  color: var(--color_white);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4166666667;
  letter-spacing: 0.1em;
}

.c-single__wrap {
  margin: clamp(2.5rem, 1.8932038835rem + 2.5889967638vw, 5rem) auto 0;
}

.c-single__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(0.625rem, 0.1699029126rem + 1.9417475728vw, 2.5rem);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin: clamp(2.5rem, 1.286407767rem + 5.1779935275vw, 7.5rem) auto 0;
}

.c-single__navigation-prev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.3125rem, 0.145631068rem + 0.71197411vw, 1rem);
}
.c-single__navigation-prev a {
  font-weight: 500;
  line-height: normal;
  gap: clamp(0.5rem, 0.2572815534rem + 1.0355987055vw, 1.5rem);
}
.c-single__navigation-prev a::before {
  position: absolute;
  content: "";
  top: 50%;
  left: calc(0% - clamp(0.5rem, 0.2572815534rem + 1.0355987055vw, 1.5rem));
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  width: 0.5625rem;
  height: 0.8125rem;
  background-image: url(../img/icon/comp/icon_blog_preview.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;
}

.c-single__navigation-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.3125rem, 0.145631068rem + 0.71197411vw, 1rem);
}
.c-single__navigation-next a {
  font-weight: 500;
  line-height: normal;
  gap: clamp(0.5rem, 0.2572815534rem + 1.0355987055vw, 1.5rem);
}
.c-single__navigation-next a::after {
  position: absolute;
  content: "";
  top: 50%;
  right: calc(0% - clamp(0.8125rem, 0.4029126214rem + 1.7475728155vw, 2.5rem));
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  width: 0.5625rem;
  height: 0.8125rem;
  background-image: url(../img/icon/comp/icon_blog_next.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;
}

.c-tab {
  margin-top: clamp(2rem, 1.6359223301rem + 1.5533980583vw, 3.5rem);
}

.c-tab__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.c-tab__list::before {
  content: "";
  width: 100%;
  height: 0.0625rem;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--color-border_l);
}
@media screen and (max-width: 768px) {
  .c-tab__list {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 0 2rem;
    overflow-x: auto;
  }
  .c-tab__list::before {
    content: "";
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    height: 0.0625rem;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--color-border_l);
  }
}

@media screen and (max-width: 768px) {
  .c-tab__list-large {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 0 2rem;
    overflow-x: auto;
  }
  .c-tab__list-large .c-tab__list {
    overflow-x: unset;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .c-tab__list-large .c-tab__list::before {
    width: 100%;
    margin: 0;
  }
}

.c-tab__item {
  padding: 0.75rem clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem) 1.125rem;
  min-width: clamp(6.25rem, 4.7936893204rem + 6.213592233vw, 12.25rem);
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  line-height: 1.5;
  color: var(--color-txt_sub);
  text-align: center;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
}
.c-tab__item.is_active {
  font-weight: bold;
  color: var(--color-txt);
}
.c-tab__item.is_active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background-color: var(--color-txt);
}
@media screen and (max-width: 600px) {
  .c-tab__item {
    min-width: 3.75rem;
  }
}

.c-tab__box {
  margin-top: 2rem;
}

.c-tab__body {
  display: none;
}
.c-tab__body.is_active {
  display: block;
}

.c-tab__body-note {
  margin-top: 1.25rem;
  font-size: clamp(0.6875rem, 0.6723300971rem + 0.0647249191vw, 0.75rem);
  line-height: 1.4166666667;
  padding-left: 1.2em;
  text-indent: -1.3em;
}
.c-tab__body-note + .c-tab__body-note {
  margin-top: 0;
}

.c-tab__body-text {
  font-size: clamp(0.8125rem, 0.7821601942rem + 0.1294498382vw, 0.9375rem);
  line-height: 1.8;
}
.c-heading-circle + .c-tab__body-text {
  margin-top: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
}

.c-tab__body-item {
  margin-top: 2rem;
}

.c-tab__body-list {
  margin-top: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(6, auto);
  gap: 0.75rem 0.625rem;
  border: 1px solid var(--color-table_border);
  padding: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  border-radius: 0.25rem;
}
@media screen and (max-width: 768px) {
  .c-tab__body-list {
    grid-auto-flow: row;
  }
}
.c-tab__body-list.column-1 {
  grid-auto-flow: row;
  grid-template-rows: auto;
}

.c-tab__body-list-item {
  display: grid;
  grid-template-columns: clamp(2rem, 1.8786407767rem + 0.5177993528vw, 2.5rem) auto;
  padding-bottom: clamp(0.625rem, 0.5643203883rem + 0.2588996764vw, 0.875rem);
  border-bottom: 1px dashed var(--color-table_border);
  font-size: clamp(0.8125rem, 0.7973300971rem + 0.0647249191vw, 0.875rem);
  line-height: 1.4285714286;
}
.c-tab__body-list-item.border-none {
  border-bottom: none;
  padding-bottom: 0;
}
.c-tab__body-list-item.border-none--sp {
  border-bottom: 1px dashed var(--color-table_border);
}
@media screen and (max-width: 768px) {
  .c-tab__body-list-item.border-none--sp {
    border-bottom: none;
  }
}
.c-tab__body-list-item.border-none--pc {
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  .c-tab__body-list-item.border-none--pc {
    padding-bottom: clamp(0.625rem, 0.5643203883rem + 0.2588996764vw, 0.875rem);
    border-bottom: 1px dashed var(--color-table_border);
  }
}
.no_number .c-tab__body-list-item {
  grid-template-columns: 1.25rem auto;
}
.no_number .c-tab__body-list-item span {
  color: var(--color-key);
}

.c-tab__body-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem clamp(0.6875rem, 0.5509708738rem + 0.5825242718vw, 1.25rem);
  margin-top: clamp(2rem, 1.7572815534rem + 1.0355987055vw, 3rem);
}
@media screen and (max-width: 600px) {
  .c-tab__body-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
.c-tab__body-gallery.column-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 1.4848300971rem + 0.0647249191vw, 1.5625rem);
  margin-top: 0;
}
@media screen and (max-width: 600px) {
  .c-tab__body-gallery.column-3 {
    grid-template-columns: 1fr;
  }
}
.c-tab__body-gallery.column-3 .c-tab__body-gallery-item p {
  font-size: 0.75rem;
  line-height: 1.4166666667;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-tab__body-gallery.column-3 .c-tab__body-gallery-item p span {
  margin-top: 0.25rem;
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: bold;
}
.c-tab__body-gallery img {
  width: 100%;
}

.c-tab__body-gallery-item {
  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;
}
.c-tab__body-gallery-item p {
  font-size: clamp(0.625rem, 0.5946601942rem + 0.1294498382vw, 0.75rem);
  line-height: 1.4166666667;
}

.c-tab__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: clamp(1.125rem, 0.942961165rem + 0.7766990291vw, 1.875rem);
}
@media screen and (max-width: 600px) {
  .c-tab__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;
  }
}
.c-tab__flex div {
  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;
  font-size: clamp(0.8125rem, 0.7821601942rem + 0.1294498382vw, 0.9375rem);
  line-height: 1.8;
  letter-spacing: 0;
  width: 100%;
  max-width: 46.875rem;
}
@media screen and (max-width: 600px) {
  .c-tab__flex div {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.c-tab__flex div a {
  color: var(--color-key);
}
.c-tab__flex div .p-products__note {
  margin-top: 0.25rem;
}
@media screen and (max-width: 600px) {
  .c-tab__flex div .p-products__note {
    margin-right: auto;
  }
}

.c-search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin: 0 auto 2rem;
  max-width: 37.5rem;
  width: 100%;
}

.c-search-form__input::-webkit-input-placeholder {
  color: inherit;
}

.c-search-form__input::-moz-placeholder {
  color: inherit;
}

.c-search-form__input:-ms-input-placeholder {
  color: inherit;
}

.c-search-form__input::-ms-input-placeholder {
  color: inherit;
}

.c-search-form__input::placeholder {
  color: inherit;
}

input[type=submit].c-search-form__btn {
  height: 2.5rem;
  line-height: inherit;
}

.l-section--mv {
  overflow: hidden;
  height: 100%;
  position: relative;
}

.l-section--mv__inner {
  position: relative;
  height: 59.75rem;
}
@media screen and (max-width: 1024px) {
  .l-section--mv__inner {
    height: calc(100svh - 5rem);
  }
}

.c_top-mv__top img {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(50rem, 46.6777912621rem + 14.1747572816vw, 63.6875rem);
}
@media screen and (max-width: 1280px) {
  .c_top-mv__top img {
    width: clamp(31.25rem, 26.6990291262rem + 19.4174757282vw, 50rem);
    height: auto;
  }
}
@media screen and (max-width: 600px) {
  .c_top-mv__top img {
    max-width: clamp(31.25rem, 8.4951456311rem + 97.0873786408vw, 125rem);
    height: auto;
  }
}
@media screen and (max-width: 400px) {
  .c_top-mv__top img {
    max-width: clamp(28.75rem, 5.3883495146rem + 99.6763754045vw, 125rem);
    height: auto;
  }
}

.c_top-mv__bottom {
  position: absolute;
  right: clamp(-1.875rem, -2.3300970874rem + 1.9417475728vw, 0rem);
  bottom: 0;
}
.c_top-mv__bottom::before {
  position: absolute;
  content: "scroll";
  bottom: 8.8125rem;
  left: -3.3125rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  /* 文字を縦向きに回転 */
  white-space: nowrap;
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.85em;
  /* 187.5% */
  letter-spacing: 0.1em;
  z-index: 1;
}
.c_top-mv__bottom::after {
  position: absolute;
  content: "";
  bottom: 3.125rem;
  left: -3.3125rem;
  width: 0.0625rem;
  height: 9.125rem;
  background-color: #000;
}

.c_top-mv__bg img {
  position: absolute;
  bottom: 0;
  left: clamp(-50rem, -62.1359223301rem + 51.7799352751vw, 0rem);
  z-index: -1;
  width: auto;
}
@media screen and (max-width: 1024px) {
  .c_top-mv__bg img {
    left: clamp(-25rem, -31.067961165rem + 25.8899676375vw, 0rem);
  }
}
@media screen and (max-width: 600px) {
  .c_top-mv__bg img {
    left: clamp(-6.25rem, -7.7669902913rem + 6.4724919094vw, 0rem);
    bottom: clamp(3.125rem, 3.8834951456rem - 3.2362459547vw, 0rem);
    width: auto;
    height: 12.5rem;
  }
}

.c_top-mv__human img {
  position: absolute;
  top: 36%;
  left: calc(50% - clamp(-5.625rem, -9.1292475728rem + 14.9514563107vw, 8.8125rem));
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  z-index: 2;
  width: clamp(6.25rem, 6.2044902913rem + 0.1941747573vw, 6.4375rem);
}
@media screen and (max-width: 1024px) {
  .c_top-mv__human img {
    top: 50%;
    left: calc(50% + 8.125rem);
  }
}
@media screen and (max-width: 600px) {
  .c_top-mv__human img {
    top: 60%;
    width: 4.375rem;
    height: auto;
    left: calc(50% - clamp(-5.625rem, -9.1292475728rem + 14.9514563107vw, 8.8125rem));
  }
}

.c_top-mv__title {
  position: absolute;
  top: 52%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  left: calc(50% - clamp(0rem, -4.8240291262rem + 20.5825242718vw, 19.875rem));
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(1.75rem, 1.4162621359rem + 1.4239482201vw, 3.125rem);
  font-style: normal;
  font-weight: 500;
  line-height: clamp(2.5rem, 1.4381067961rem + 4.5307443366vw, 6.875rem);
  /* 140% */
  letter-spacing: 0.05em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  /* 縦書き（右から左に縦方向） */
  text-orientation: upright;
  /* 文字を縦向きに回転 */
  white-space: nowrap;
}
@media screen and (max-width: 1600px) {
  .c_top-mv__title {
    top: 54%;
  }
}
@media screen and (max-width: 1024px) {
  .c_top-mv__title {
    left: 50%;
    top: 52%;
  }
}
@media screen and (max-width: 600px) {
  .c_top-mv__title {
    top: 50%;
  }
}

.l-section--about {
  padding-top: clamp(3.75rem, 1.6262135922rem + 9.0614886731vw, 12.5rem);
}

.l-section--about__inner {
  padding-top: clamp(2.5rem, 1.8932038835rem + 2.5889967638vw, 5rem);
  max-width: 68.75rem;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .l-section--about__inner {
    max-width: 90%;
  }
}

.c-about__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(1.875rem, 1.4199029126rem + 1.9417475728vw, 3.75rem);
}
@media screen and (max-width: 1280px) {
  .c-about__flex {
    padding-bottom: 1.875rem;
  }
}
@media screen and (max-width: 768px) {
  .c-about__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 0;
  }
}

.c-about__flex--item--left {
  max-width: 30.875rem;
  padding-left: clamp(0rem, -0.4095873786rem + 1.7475728155vw, 1.6875rem);
}
@media screen and (max-width: 768px) {
  .c-about__flex--item--left {
    max-width: 100%;
  }
}

.c-about__flex--left-img {
  position: relative;
  display: block;
}
.c-about__flex--left-img::after {
  position: absolute;
  content: "";
  right: -0.625rem;
  bottom: -4.8125rem;
  width: clamp(8.6875rem, 7.3222087379rem + 5.8252427184vw, 14.3125rem);
  height: clamp(8.6875rem, 8.6875rem + 0vw, 8.6875rem);
  background-image: url(../img/about/comp/sub-title_under.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 600px) {
  .c-about__flex--left-img::after {
    bottom: -6.0625rem;
  }
}

.c-about__flex--left-text {
  margin-top: clamp(2.5rem, 1.3622572816rem + 4.854368932vw, 7.1875rem);
  color: #000;
  text-align: justify;
  font-family: "Noto Sans JP";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.42em;
  /* 242.857% */
  letter-spacing: 0.05em;
  padding: 0 1.125rem;
}

.c-about__flex--item--right {
  padding-top: clamp(0rem, -0.3792475728rem + 1.6181229773vw, 1.5625rem);
}

@media screen and (max-width: 768px) {
  .c-about__flex--right-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.c-about__flex--right-img img {
  margin-bottom: clamp(1.875rem, 0.7827669903rem + 4.6601941748vw, 6.375rem);
}

.c-about__flex--left-under-img-box {
  position: relative;
  z-index: 1;
}

.c-about__flex--left-under-img {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c-about__flex--left-under-img {
    width: clamp(18.75rem, 16.8537621359rem + 8.0906148867vw, 26.5625rem);
  }
}

.c-about__flex--left-under-img-bg {
  position: absolute;
  left: -7rem;
  top: 9.375rem;
  z-index: -1;
  width: clamp(9.375rem, 5.2639563107rem + 17.5404530744vw, 26.3125rem);
}
@media screen and (max-width: 768px) {
  .c-about__flex--left-under-img-bg {
    left: auto;
    right: 0;
    width: clamp(9.375rem, 7.8428398058rem + 6.5372168285vw, 15.6875rem);
    top: 10.625rem;
  }
}
@media screen and (max-width: 600px) {
  .c-about__flex--left-under-img-bg {
    width: clamp(4.0625rem, 1.2408980583rem + 12.0388349515vw, 15.6875rem);
    top: clamp(14.75rem, 14.1583737864rem + 2.5242718447vw, 17.1875rem);
  }
}

.c-about__flex--right-under-img {
  margin-top: clamp(0rem, -2.0024271845rem + 8.5436893204vw, 8.25rem);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c-about__flex--right-under-img {
    margin-left: auto;
    width: 28.125rem;
  }
}
@media screen and (max-width: 600px) {
  .c-about__flex--right-under-img {
    width: auto;
  }
}
.c-about__flex--right-under-img img {
  position: relative;
}
.c-about__flex--right-under-img img::after {
  position: absolute;
  content: "";
  left: -7.0625rem;
  bottom: -3.25rem;
  width: clamp(7.0625rem, 7.0625rem + 0vw, 7.0625rem);
  height: clamp(14rem, 14rem + 0vw, 14rem);
  background-image: url(../img/about/comp/about_human.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.c-about__flex--right-under-img::after {
  position: absolute;
  content: "";
  left: -7.0625rem;
  bottom: -3.25rem;
  width: clamp(7.0625rem, 7.0625rem + 0vw, 7.0625rem);
  height: clamp(14rem, 14rem + 0vw, 14rem);
  background-image: url(../img/about/comp/about_human.svg);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}
@media screen and (max-width: 600px) {
  .c-about__flex--right-under-img::after {
    bottom: -13.4375rem;
    left: -0.9375rem;
    width: clamp(3.125rem, 2.9733009709rem + 0.6472491909vw, 3.75rem);
  }
}
@media screen and (max-width: 400px) {
  .c-about__flex--right-under-img::after {
    bottom: -19.375rem;
  }
}

.l-section--about__inner-bottom {
  margin-top: clamp(1.875rem, 0.9648058252rem + 3.8834951456vw, 5.625rem);
  padding-bottom: clamp(1.875rem, 0.4338592233rem + 6.1488673139vw, 7.8125rem);
  background-image: url(../img/about/comp/about_bg.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top right;
  background-size: clamp(22.5rem, 3.6893203883rem + 80.2588996764vw, 100rem);
  z-index: 1;
  position: relative;
  overflow: hidden;
}
.l-section--about__inner-bottom::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: clamp(22.5rem, 3.6893203883rem + 80.2588996764vw, 100rem);
  height: calc(100% - clamp(11.25rem, 6.395631068rem + 20.71197411vw, 31.25rem));
  background-color: #fff;
  z-index: -1;
}

.l-section--about__inner-bottom-left {
  margin-top: clamp(1.875rem, 0.9648058252rem + 3.8834951456vw, 5.625rem);
  padding-bottom: clamp(1.875rem, 0.4338592233rem + 6.1488673139vw, 7.8125rem);
  background-image: url(../img/about/comp/about_bg-left.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
  background-size: clamp(22.5rem, 3.6893203883rem + 80.2588996764vw, 100rem);
  z-index: 1;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1280px) {
  .l-section--about__inner-bottom-left {
    background-size: clamp(22.5rem, 1.4138349515rem + 89.9676375405vw, 109.375rem);
  }
}
.l-section--about__inner-bottom-left::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: clamp(22.5rem, 3.6893203883rem + 80.2588996764vw, 100rem);
  height: calc(100% - clamp(11.25rem, 6.395631068rem + 20.71197411vw, 31.25rem));
  background-color: #fff;
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  .l-section--about__inner-bottom-left::after {
    width: clamp(22.5rem, 1.4138349515rem + 89.9676375405vw, 109.375rem);
  }
}

.c-about__text-box-top-inner {
  margin-top: clamp(1.25rem, -0.2366504854rem + 6.3430420712vw, 7.375rem);
  max-width: 25.1875rem;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .c-about__text-box-top-inner {
    max-width: 31.4375rem;
  }
}
.c-about__text-box-top-inner .c-about__text-title {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  font-style: normal;
  font-weight: 700;
  line-height: 2.08em;
  /* 208.333% */
  letter-spacing: 0.05em;
}
.c-about__text-box-top-inner .c-about__text-under-text {
  margin-top: clamp(1.25rem, 0.8404126214rem + 1.7475728155vw, 2.9375rem);
  color: #000;
  text-align: justify;
  font-family: "Noto Sans JP";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.42em;
  /* 242.857% */
  letter-spacing: 0.05em;
}
.c-about__text-box-top-inner .c-about__text-box-top-inner-left {
  position: absolute;
  top: -11.875rem;
  left: -46.875rem;
  width: clamp(11.875rem, 5.2457524272rem + 28.284789644vw, 39.1875rem);
}
.c-about__text-box-top-inner .c-about__text-box-top-inner-left.under-02 {
  width: clamp(11.875rem, 7.6122572816rem + 18.1877022654vw, 29.4375rem);
  top: -6.875rem;
  left: -37.125rem;
}
@media screen and (max-width: 1600px) {
  .c-about__text-box-top-inner .c-about__text-box-top-inner-left.under-02 {
    left: -30.625rem;
  }
}
@media screen and (max-width: 1280px) {
  .c-about__text-box-top-inner .c-about__text-box-top-inner-left.under-02 {
    left: 0;
    top: 1.875rem;
  }
}
@media screen and (max-width: 1600px) {
  .c-about__text-box-top-inner .c-about__text-box-top-inner-left {
    left: -38.125rem;
  }
}
@media screen and (max-width: 1366px) {
  .c-about__text-box-top-inner .c-about__text-box-top-inner-left {
    left: -35rem;
  }
}
@media screen and (max-width: 1280px) {
  .c-about__text-box-top-inner .c-about__text-box-top-inner-left {
    width: clamp(11.25rem, 6.395631068rem + 20.71197411vw, 31.25rem);
    position: relative;
    top: 1.875rem;
    left: 0;
    display: block;
  }
}
.c-about__text-box-top-inner .c-about__text-box-top-inner-right {
  position: absolute;
  top: -8.75rem;
  right: -37.5rem;
  width: clamp(9.375rem, 4.505461165rem + 20.7766990291vw, 29.4375rem);
}
.c-about__text-box-top-inner .c-about__text-box-top-inner-right.under-02 {
  width: clamp(9.375rem, 1.6838592233rem + 32.8155339806vw, 41.0625rem);
  top: -13.4375rem;
  right: -48.125rem;
}
@media screen and (max-width: 1600px) {
  .c-about__text-box-top-inner .c-about__text-box-top-inner-right.under-02 {
    right: -38.4375rem;
  }
}
@media screen and (max-width: 1280px) {
  .c-about__text-box-top-inner .c-about__text-box-top-inner-right.under-02 {
    right: 0;
    top: auto;
  }
}
@media screen and (max-width: 1600px) {
  .c-about__text-box-top-inner .c-about__text-box-top-inner-right {
    right: -29.375rem;
  }
}
@media screen and (max-width: 1366px) {
  .c-about__text-box-top-inner .c-about__text-box-top-inner-right {
    right: -27.5rem;
  }
}
@media screen and (max-width: 1280px) {
  .c-about__text-box-top-inner .c-about__text-box-top-inner-right {
    position: relative;
    top: auto;
    bottom: clamp(5.625rem, 3.9563106796rem + 7.1197411003vw, 12.5rem);
    right: auto;
    display: block;
    left: clamp(10.625rem, 6.0588592233rem + 19.4822006472vw, 29.4375rem);
  }
}

.c-about__text-box-top {
  padding-top: clamp(8.75rem, 5.7160194175rem + 12.9449838188vw, 21.25rem);
  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;
}
@media screen and (max-width: 600px) {
  .c-about__text-box-top {
    max-width: 80%;
    margin: 0 auto;
  }
}
.c-about__text-box-top-under02 {
  padding-top: clamp(8.75rem, 5.791868932rem + 12.6213592233vw, 20.9375rem);
  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;
}
@media screen and (max-width: 600px) {
  .c-about__text-box-top-under02 {
    max-width: 80%;
    margin: 0 auto;
  }
}
.c-about__text-box-top-under02 .c-about__text-box-top-flex-inner-02 {
  padding-left: clamp(0rem, -4.5509708738rem + 19.4174757282vw, 18.75rem);
}
@media screen and (max-width: 1280px) {
  .c-about__text-box-top-under02 .c-about__text-box-top-flex-inner-02 {
    padding-left: 0;
  }
}
.c-about__text-box-top .c-about__text-box-top-flex-inner {
  padding-left: clamp(0rem, -5.4611650485rem + 23.3009708738vw, 22.5rem);
}

.c-about__under-box-outer {
  padding-left: 15rem;
  padding-right: 1.25rem;
}
@media screen and (max-width: 991px) {
  .c-about__under-box-outer {
    padding-left: clamp(6.875rem, 4.9029126214rem + 8.4142394822vw, 15rem);
  }
}
@media screen and (max-width: 768px) {
  .c-about__under-box-outer {
    padding-left: 0;
    padding-right: 0;
  }
}
.c-about__under-box-outer-02 {
  padding-left: 0;
}

.c-about__under-box {
  margin-top: clamp(5.625rem, 5.0485436893rem + 2.4595469256vw, 8rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5rem;
  margin-bottom: clamp(1.875rem, 1.3288834951rem + 2.3300970874vw, 4.125rem);
}
@media screen and (max-width: 1280px) {
  .c-about__under-box {
    margin-top: -4.8125rem;
  }
}
@media screen and (max-width: 768px) {
  .c-about__under-box {
    padding-left: 0;
    padding-right: 0;
    -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;
  }
}
@media screen and (max-width: 600px) {
  .c-about__under-box {
    margin-top: -4rem;
  }
}
.c-about__under-box .c-about__under-item {
  border-radius: 3.0625rem;
  background: #D4F3BD;
  width: clamp(18.75rem, 18.0066747573rem + 3.1715210356vw, 21.8125rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.375rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: clamp(1.25rem, 1.0983009709rem + 0.6472491909vw, 1.875rem);
}
@media screen and (max-width: 768px) {
  .c-about__under-box .c-about__under-item {
    width: 18.75rem;
  }
}
.c-about__under-box .c-about__under-item .c-about__under-item-title {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 0.9696601942rem + 0.1294498382vw, 1.125rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  /* 266.667% */
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.c-about__under-box .c-about__under-item .c-about__under-item-text {
  color: #818181;
  font-family: "Open Sans Hebrew";
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  /* 342.857% */
  letter-spacing: 0.2em;
  white-space: nowrap;
}

.c-about__btn-link {
  background-color: #000;
  width: clamp(10.625rem, 10.0182038835rem + 2.5889967638vw, 13.125rem);
  height: clamp(10.625rem, 10.0182038835rem + 2.5889967638vw, 13.125rem);
  border-radius: 50%;
  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.6893203883rem + 0.2588996764vw, 1rem);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 0.9696601942rem + 0.1294498382vw, 1.125rem);
  font-style: normal;
  font-weight: 600;
  line-height: 1.66em;
  /* 166.667% */
  letter-spacing: 0.1em;
  margin: 0 auto;
}

.p-about__catch-box-img {
  width: clamp(12.5rem, 9.3143203883rem + 13.5922330097vw, 25.625rem);
  display: block;
  position: relative;
}
.p-about__catch-box-img::after {
  position: absolute;
  content: "";
  top: calc(100% - clamp(1.75rem, 1.4162621359rem + 1.4239482201vw, 3.125rem));
  right: 0;
  width: clamp(5.625rem, 4.2597087379rem + 5.8252427184vw, 11.25rem);
  height: clamp(11.25rem, 10.6432038835rem + 2.5889967638vw, 13.75rem);
  background-image: url(../img/about/comp/sub-title_under.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.c-page__contents-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(3.75rem, 2.5970873786rem + 4.9190938511vw, 8.5rem);
}
@media screen and (max-width: 1024px) {
  .c-page__contents-box {
    display: block;
  }
}

.c-page__menu-box {
  padding-bottom: 3.75rem;
}
@media screen and (max-width: 1024px) {
  .c-page__menu-box {
    overflow: scroll;
    width: 100vw;
    margin-left: calc(-1 * (100vw - 100%) / 2);
    padding-bottom: 0;
    margin-bottom: 3.75rem;
    border-bottom: 0.0625rem solid #BBBBBB;
    border-top: 0.0625rem solid #BBBBBB;
    background: #fff;
  }
}
.c-page__menu-box.is-sticky-enabled {
  position: sticky;
  top: var(--menu-sticky-top, 0);
  z-index: 99;
  -webkit-transition: top 0.3s ease;
  transition: top 0.3s ease;
  /* なめらかに吸着 */
}

.c-page__menu {
  position: sticky;
  top: calc(var(--height-header) + 3.75rem);
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .c-page__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .c-page__menu {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .c-page__menu.center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 1024px) {
  .c-page__menu.center a {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.c-page__menu a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: clamp(9.375rem, 8.9199029126rem + 1.9417475728vw, 11.25rem);
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-style: normal;
  font-weight: 600;
  line-height: 1.25em;
  /* 125% */
  letter-spacing: 0.05em;
  padding-bottom: 1rem;
  border-bottom: 0.0625rem solid #BBBBBB;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1024px) {
  .c-page__menu a {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    padding-top: 1rem;
    border: none;
    margin-bottom: 0;
    white-space: nowrap;
    background-color: #fff;
  }
}
@media screen and (max-width: 1024px) {
  .c-page__menu a img {
    display: none;
  }
}

.c-page__contents {
  width: 100%;
}

.p-about__philosophy-box {
  padding-top: clamp(2.5rem, 2.0145631068rem + 2.071197411vw, 4.5rem);
  padding-bottom: clamp(1.875rem, 1.7384708738rem + 0.5825242718vw, 2.4375rem);
  margin-bottom: clamp(3.75rem, 3.3252427184rem + 1.8122977346vw, 5.5rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .p-about__philosophy-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: clamp(2.5rem, 2.1966019417rem + 1.2944983819vw, 3.75rem);
  }
}
.p-about__philosophy-box::before {
  position: absolute;
  content: "";
  right: calc(0rem - clamp(5rem, 0.7069174757rem + 18.3171521036vw, 22.6875rem));
  bottom: 0;
  width: clamp(25rem, 18.2190533981rem + 28.932038835vw, 52.9375rem);
  height: clamp(38.0625rem, 36.0600728155rem + 8.5436893204vw, 46.3125rem);
  background-image: url(../img/common/comp/home_bg.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
  z-index: -1;
}

.p-about__philosophy-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding-left: 4.375rem;
}
@media screen and (max-width: 1024px) {
  .p-about__philosophy-left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.375rem;
    padding-left: 0;
  }
}

.p-about__philosophy-left--text {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  /* 縦書き（右から左へ進む） */
  text-orientation: upright;
  /* 一文字ずつ正立させる */
  border-left: 0.0625rem solid #000;
  color: #2F2F2F;
  font-family: "Noto Sans JP";
  font-size: clamp(1.25rem, 1.067961165rem + 0.7766990291vw, 2rem);
  font-style: normal;
  font-weight: 600;
  line-height: 1.31em;
  /* 131.25% */
  letter-spacing: 0.05em;
  margin-right: clamp(1.25rem, 0.9466019417rem + 1.2944983819vw, 2.5rem);
  padding-left: 0.375rem;
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  .p-about__philosophy-left--text {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    border-left: none;
    border-bottom: 0.0625rem solid #000;
    padding-left: 0;
    padding-bottom: 0.375rem;
  }
}
.p-about__philosophy-left--text span {
  color: #83D746;
}

.p-about__philosophy-right {
  width: clamp(25rem, 23.0279126214rem + 8.4142394822vw, 33.125rem);
}
@media screen and (max-width: 1024px) {
  .p-about__philosophy-right {
    width: 100%;
  }
}
.p-about__philosophy-right .p-about__philosophy-right--text {
  margin-top: clamp(1.25rem, 1.1589805825rem + 0.3883495146vw, 1.625rem);
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.42em;
  /* 242.857% */
  letter-spacing: 0.05em;
}
.p-about__philosophy-right .p-about__philosophy-right--under-title {
  margin-top: clamp(1.875rem, 1.7233009709rem + 0.6472491909vw, 2.5rem);
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  font-style: normal;
  font-weight: 600;
  line-height: 1.4166666667;
  /* 141.667% */
  letter-spacing: 0.05em;
}
.p-about__philosophy-right .p-about__philosophy-right--under-text {
  margin-top: clamp(0.625rem, 0.5339805825rem + 0.3883495146vw, 1rem);
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 0.9696601942rem + 0.1294498382vw, 1.125rem);
  font-style: normal;
  font-weight: 400;
  line-height: 2.2222222222;
  /* 222.222% */
  letter-spacing: 0.05em;
}

.p-about__message-box {
  padding-top: clamp(2.5rem, 2.3786407767rem + 0.5177993528vw, 3rem);
  padding-bottom: clamp(3.75rem, 1.7172330097rem + 8.6731391586vw, 12.125rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: clamp(1.25rem, 0.3398058252rem + 3.8834951456vw, 5rem);
}
@media screen and (max-width: 768px) {
  .p-about__message-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-about__message-left {
  position: relative;
  z-index: 0;
}
.p-about__message-left .p-about__message-left--img img {
  max-width: clamp(18.75rem, 18.1887135922rem + 2.3948220065vw, 21.0625rem);
}
@media screen and (max-width: 480px) {
  .p-about__message-left .p-about__message-left--img img {
    max-width: 100%;
  }
}
.p-about__message-left .p-about__message-left--door {
  position: absolute;
  bottom: -2.125rem;
  left: -3rem;
  z-index: -1;
}
@media screen and (max-width: 600px) {
  .p-about__message-left .p-about__message-left--door {
    bottom: -1.125rem;
    left: -1.25rem;
  }
}

.p-about__message-left--text {
  margin-top: clamp(1.25rem, 1.2044902913rem + 0.1941747573vw, 1.4375rem);
  color: #000;
  text-align: right;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-style: normal;
  font-weight: 600;
  line-height: 2;
  /* 200% */
  letter-spacing: 0.04em;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .p-about__message-left--text {
    text-align: center;
  }
}
.p-about__message-left--text span {
  font-size: clamp(1rem, 0.9696601942rem + 0.1294498382vw, 1.125rem);
}

.p-about__message-right {
  position: relative;
  z-index: 0;
}
.p-about__message-right .p-about__message-right--title {
  color: var(--, #2F2F2F);
  font-family: "Noto Sans JP";
  font-size: clamp(1.25rem, 1.067961165rem + 0.7766990291vw, 2rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.5em;
  /* 150% */
  letter-spacing: 0.05em;
  margin-bottom: clamp(0.625rem, 0.2912621359rem + 1.4239482201vw, 2rem);
}
.p-about__message-right .p-about__message-right--text {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  font-style: normal;
  font-weight: 400;
  line-height: 2.42em;
  /* 242.857% */
  letter-spacing: 0.05em;
}

.p-about__guidelines--title {
  margin-top: clamp(1.25rem, 1.067961165rem + 0.7766990291vw, 2rem);
  margin-bottom: clamp(1.875rem, 1.4805825243rem + 1.6828478964vw, 3.5rem);
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-style: normal;
  font-weight: 500;
  line-height: 2em;
  /* 200% */
  letter-spacing: 0.05em;
}

.p-about__guidelines--under-box {
  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(1.875rem, 1.6019417476rem + 1.1650485437vw, 3rem);
}
.p-about__guidelines--under-box .p-about__guidelines--under-box-item {
  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(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
}
.p-about__guidelines--under-box .p-about__guidelines--under-box-item .p-about__guidelines--under-box-item--title-box {
  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: flex-start;
  gap: clamp(0.625rem, 0.5339805825rem + 0.3883495146vw, 1rem);
}
.p-about__guidelines--under-box .p-about__guidelines--under-box-item .p-about__guidelines--under-box-item--title-box .p-about__guidelines--under-box-item--title-box--number {
  display: inline-block;
  border-bottom: 0.125rem solid #000;
  color: #000;
  text-align: center;
  font-family: "Open Sans Hebrew";
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  /* 437.5% */
  letter-spacing: 0.05em;
  padding-bottom: 0.75rem;
}
.p-about__guidelines--under-box .p-about__guidelines--under-box-item .p-about__guidelines--under-box-item--title-box .p-about__guidelines--under-box-item--title-box--title {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  font-style: normal;
  font-weight: 500;
  line-height: 2em;
  /* 200% */
  letter-spacing: 0.05em;
  position: relative;
  padding-left: 0.5rem;
}
.p-about__guidelines--under-box .p-about__guidelines--under-box-item .p-about__guidelines--under-box-item--title-box .p-about__guidelines--under-box-item--title-box--title.no02 {
  padding: 0;
}
.p-about__guidelines--under-box .p-about__guidelines--under-box-item .p-about__guidelines--under-box-item--title-box .p-about__guidelines--under-box-item--title-box--title::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background: #D4F3BD;
  z-index: -1;
}
.p-about__guidelines--under-box .p-about__guidelines--under-box-item .p-about__guidelines--under-box-item--text {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  font-style: normal;
  font-weight: 400;
  line-height: 2.42em;
  /* 242.857% */
  letter-spacing: 0.05em;
}
.p-about__guidelines--under-box .p-about__guidelines--under-box-item .p-about__guidelines--under-box-item--text span {
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-weight: 600;
}

.p-about__strong {
  padding-top: clamp(3.75rem, 2.2330097087rem + 6.4724919094vw, 10rem);
  padding-bottom: clamp(0.625rem, 0.5188106796rem + 0.4530744337vw, 1.0625rem);
  position: relative;
}
.p-about__strong::before {
  position: absolute;
  content: "";
  right: calc(0rem - clamp(5rem, 0.7069174757rem + 18.3171521036vw, 22.6875rem));
  top: 0;
  width: clamp(25rem, 15.6401699029rem + 39.9352750809vw, 63.5625rem);
  height: 26%;
  background-image: url(../img/about/comp/about_strengths_bg.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  z-index: -1;
}
.p-about__strong::after {
  position: absolute;
  content: "";
  right: calc(0rem - clamp(5rem, 0.7069174757rem + 18.3171521036vw, 22.6875rem));
  bottom: 0;
  width: clamp(25rem, 15.6401699029rem + 39.9352750809vw, 63.5625rem);
  height: 80%;
  z-index: -1;
  background-color: #F0FEE7;
}

.p-about__strong--under-box {
  margin-top: clamp(2.5rem, 1.7718446602rem + 3.1067961165vw, 5.5rem);
  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(3.75rem, 3.1432038835rem + 2.5889967638vw, 6.25rem);
}
.p-about__strong--under-box .p-about__strong--under-box-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1.25rem, 0.5976941748rem + 2.783171521vw, 3.9375rem);
}
@media screen and (max-width: 768px) {
  .p-about__strong--under-box .p-about__strong--under-box-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media screen and (max-width: 768px) {
  .p-about__strong--under-box .p-about__strong--under-box-item:nth-child(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-about__strong--under-box .p-about__strong--under-box-item .p-about__strong--under-box-item--left {
  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(1.25rem, 0.9466019417rem + 1.2944983819vw, 2.5rem);
  padding-top: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .p-about__strong--under-box .p-about__strong--under-box-item .p-about__strong--under-box-item--left {
    padding-top: 0;
  }
}
.p-about__strong--under-box .p-about__strong--under-box-item .p-about__strong--under-box-item--left .p-about__strong--under-box-item--title-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: clamp(1.25rem, 1.083131068rem + 0.71197411vw, 1.9375rem);
}
.p-about__strong--under-box .p-about__strong--under-box-item .p-about__strong--under-box-item--left .p-about__strong--under-box-item--title-box .p-about__strong--under-box-item--title-box--number {
  display: inline-block;
  border-bottom: 0.125rem solid #000;
  color: #000;
  text-align: center;
  font-family: "Open Sans Hebrew";
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  /* 437.5% */
  letter-spacing: 0.05em;
  padding-bottom: 0.75rem;
}
.p-about__strong--under-box .p-about__strong--under-box-item .p-about__strong--under-box-item--left .p-about__strong--under-box-item--title-box .p-about__strong--under-box-item--title-box--title {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  /* 200% */
  letter-spacing: 0.05em;
}
.p-about__strong--under-box .p-about__strong--under-box-item .p-about__strong--under-box-item--left .p-about__strong--under-box-item--title-box .p-about__strong--under-box-item--title-box--sub-title {
  margin-top: clamp(0.9375rem, 0.8616504854rem + 0.3236245955vw, 1.25rem);
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  /* 342.857% */
  letter-spacing: 0.05em;
}
.p-about__strong--under-box .p-about__strong--under-box-item .p-about__strong--under-box-item--left .p-about__strong--under-box-item--text {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  font-style: normal;
  font-weight: 400;
  line-height: 2.42em;
  /* 242.857% */
  letter-spacing: 0.05em;
}
.p-about__strong--under-box .p-about__strong--under-box-item .p-about__strong--under-box-item--left .p-about__strong--under-box-item--text span {
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-weight: 600;
}
.p-about__strong--under-box .p-about__strong--under-box-item .p-about__strong-right--img img {
  max-width: clamp(15.625rem, 12.5rem + 13.3333333333vw, 28.5rem);
}
@media screen and (max-width: 768px) {
  .p-about__strong--under-box .p-about__strong--under-box-item .p-about__strong-right--img img {
    max-width: 100%;
    width: 100%;
  }
}

.l-section--works {
  padding-top: clamp(3.75rem, 2.2330097087rem + 6.4724919094vw, 10rem);
  padding-bottom: clamp(3.75rem, 2.8398058252rem + 3.8834951456vw, 7.5rem);
}

.l-section--works__inner {
  max-width: 68.75rem;
  margin: 0 auto;
  margin-top: clamp(1.5625rem, 1.2894417476rem + 1.1650485437vw, 2.6875rem);
}
@media screen and (max-width: 1480px) {
  .l-section--works__inner {
    max-width: 90%;
  }
}

.c-works-text {
  color: #000;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.42em;
  /* 242.857% */
  letter-spacing: 0.05em;
  word-break: keep-all;
}
.c-works-text .sp-only {
  display: none;
}
@media screen and (max-width: 600px) {
  .c-works-text .sp-only {
    display: inline;
  }
}

.c-works__flex-outer {
  margin-top: clamp(2.9375rem, 2.3458737864rem + 2.5242718447vw, 5.375rem);
  margin-bottom: clamp(1.875rem, 1.0254854369rem + 3.6245954693vw, 5.375rem);
}
@media screen and (max-width: 1480px) {
  .c-works__flex-outer {
    margin-top: 10rem;
  }
}
@media screen and (max-width: 1024px) {
  .c-works__flex-outer {
    margin-top: clamp(2.9375rem, 1.5873786408rem + 5.7605177994vw, 8.5rem);
  }
}
@media screen and (max-width: 768px) {
  .c-works__flex-outer {
    margin-top: clamp(4.1875rem, 3.8992718447rem + 1.2297734628vw, 5.375rem);
  }
}
@media screen and (max-width: 600px) {
  .c-works__flex-outer {
    margin-top: clamp(4.1875rem, 0.546723301rem + 15.5339805825vw, 19.1875rem);
  }
}
@media screen and (max-width: 480px) {
  .c-works__flex-outer {
    margin-top: clamp(4.1875rem, 3.8992718447rem + 1.2297734628vw, 5.375rem);
  }
}

.c-works__flex {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.0625rem clamp(1.875rem, 0.2063106796rem + 7.1197411003vw, 8.75rem);
  max-width: 68.75rem;
  margin: 0 auto;
}
@media screen and (max-width: 1480px) {
  .c-works__flex {
    max-width: 90%;
    gap: clamp(5.625rem, 5.625rem + 0vw, 5.625rem) clamp(1.875rem, 0.2063106796rem + 7.1197411003vw, 8.75rem);
  }
}
@media screen and (max-width: 1280px) {
  .c-works__flex {
    max-width: 90%;
    gap: clamp(1.875rem, 0.9648058252rem + 3.8834951456vw, 5.625rem) clamp(1.875rem, 0.2063106796rem + 7.1197411003vw, 8.75rem);
  }
}
@media screen and (max-width: 600px) {
  .c-works__flex {
    gap: clamp(2.5rem, 2.1966019417rem + 1.2944983819vw, 3.75rem) clamp(1.875rem, 0.2063106796rem + 7.1197411003vw, 8.75rem);
    grid-template-columns: 1fr;
  }
}

.c-works__flex--item {
  padding: clamp(0.9375rem, 0.8616504854rem + 0.3236245955vw, 1.25rem);
  background-color: #fff;
  max-width: 100%;
  width: 100%;
  height: clamp(12.5rem, 9.3598300971rem + 13.3980582524vw, 25.4375rem);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin: 0 auto;
}
@media screen and (max-width: 1480px) {
  .c-works__flex--item {
    width: clamp(28.125rem, 27.9126213592rem + 0.9061488673vw, 29rem);
  }
}
@media screen and (max-width: 1024px) {
  .c-works__flex--item {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .c-works__flex--item {
    margin: 0 auto;
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .c-works__flex--item {
    margin-top: clamp(3.75rem, 0.109223301rem + 15.5339805825vw, 18.75rem) !important;
    height: clamp(20.625rem, 19.4569174757rem + 4.9838187702vw, 25.4375rem);
    margin-right: -0.3125rem;
  }
}
@media screen and (max-width: 480px) {
  .c-works__flex--item {
    margin-top: clamp(3.75rem, 1.6262135922rem + 9.0614886731vw, 12.5rem) !important;
    height: clamp(15.625rem, 7.2815533981rem + 35.5987055016vw, 50rem);
  }
}
@media screen and (max-width: 600px) {
  .c-works__flex--item:first-child {
    margin-top: 0 !important;
  }
}
.c-works__flex--item .c-works__flex-img {
  position: absolute;
  bottom: clamp(0rem, -1.3349514563rem + 5.6957928803vw, 5.5rem);
  left: -1.5rem;
  max-width: 100%;
  height: 21rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 1480px) {
  .c-works__flex--item .c-works__flex-img {
    height: auto;
    bottom: 5rem;
  }
}
@media screen and (max-width: 991px) {
  .c-works__flex--item .c-works__flex-img {
    max-width: 100%;
    top: auto;
    height: auto;
    left: -0.625rem;
  }
}
@media screen and (max-width: 768px) {
  .c-works__flex--item .c-works__flex-img {
    bottom: 6.25rem;
  }
}
@media screen and (max-width: 600px) {
  .c-works__flex--item .c-works__flex-img {
    bottom: 4.375rem;
  }
}
.c-works__flex--item .c-works__flex-img img {
  width: clamp(28.125rem, 27.9126213592rem + 0.9061488673vw, 29rem);
}
@media screen and (max-width: 768px) {
  .c-works__flex--item .c-works__flex-img img {
    width: clamp(28.125rem, 25.8495145631rem + 9.7087378641vw, 37.5rem);
  }
}
@media screen and (max-width: 600px) {
  .c-works__flex--item .c-works__flex-img img {
    width: 37.5rem;
  }
}
.c-works__flex--item:nth-child(even) {
  margin-top: clamp(3.75rem, 3.2949029126rem + 1.9417475728vw, 5.625rem);
}
@media screen and (max-width: 600px) {
  .c-works__flex--item:nth-child(even) {
    margin-top: 0;
  }
}

.c-works__flex--title {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  font-style: normal;
  font-weight: 500;
  line-height: 2.27em;
  /* 227.778% */
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .c-works__flex--title {
    white-space: wrap;
  }
}

.c-works__flex--text {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2;
  /* 292.857% */
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1480px) {
  .c-works__flex--text {
    line-height: 1;
  }
}

.c-works__flex--date {
  position: absolute;
  bottom: clamp(0.9375rem, 0.8616504854rem + 0.3236245955vw, 1.25rem);
  right: clamp(0.9375rem, 0.8009708738rem + 0.5825242718vw, 1.5rem);
  line-height: 1;
}

.c-works-archive__inner {
  position: relative;
  padding-top: clamp(3.75rem, 3.2645631068rem + 2.071197411vw, 5.75rem);
  padding-bottom: clamp(3.75rem, 2.8398058252rem + 3.8834951456vw, 7.5rem);
}
.c-works-archive__inner::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  background-image: url(../img/works/comp/page_works_bg.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  z-index: -1;
}
.c-works-archive__inner::after {
  position: absolute;
  content: "";
  bottom: 0;
  width: 100%;
  height: 40%;
  z-index: -1;
  background-color: #D4F3BD;
}
.c-works-archive__inner .c-works-pagination {
  padding-top: clamp(3.75rem, 3.2645631068rem + 2.071197411vw, 5.75rem);
}
.c-works-archive__inner .c-works-pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(0.9375rem, 0.8616504854rem + 0.3236245955vw, 1.25rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-works-archive__inner .c-works-pagination .nav-links .page-numbers {
  color: #000;
  border: none;
  width: auto;
  color: #000;
  font-family: "Open Sans Hebrew";
  font-size: clamp(0.875rem, 0.7233009709rem + 0.6472491909vw, 1.5rem);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0 clamp(0rem, -0.0455097087rem + 0.1941747573vw, 0.1875rem);
}
.c-works-archive__inner .c-works-pagination .nav-links .page-numbers.current {
  color: #fff;
  background-color: #000;
  width: clamp(1.5625rem, 1.4563106796rem + 0.4530744337vw, 2rem);
  height: clamp(1.5625rem, 1.4563106796rem + 0.4530744337vw, 2rem);
  margin: 0 clamp(0rem, -0.1061893204rem + 0.4530744337vw, 0.4375rem);
}

.c-works-archive__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(1.25rem, 0.9466019417rem + 1.2944983819vw, 2.5rem);
  margin-bottom: clamp(3.75rem, 3.3707524272rem + 1.6181229773vw, 5.3125rem);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.c-works-archive__category .c-works-archive__category-link {
  border-radius: 3.0625rem;
  background-color: #E6E6E6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: clamp(0.3125rem, 0.2518203883rem + 0.2588996764vw, 0.5625rem) clamp(1.875rem, 1.6322815534rem + 1.0355987055vw, 2.875rem);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-works-archive__category .c-works-archive__category-link.is_current {
  background: #83D746;
}

.c-banner {
  display: block;
  max-width: 87.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 1600px) {
  .c-banner {
    max-width: 90%;
  }
}

.l-section--blog {
  padding-top: clamp(6.25rem, 3.4587378641rem + 11.9093851133vw, 17.75rem);
  padding-bottom: clamp(3.75rem, 2.4302184466rem + 5.6310679612vw, 9.1875rem);
  background-image: url(../img/blog/comp/blog_bg.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 87.5rem;
  z-index: 1;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1600px) {
  .l-section--blog {
    background-size: clamp(22.5rem, 1.4138349515rem + 89.9676375405vw, 109.375rem);
  }
}
@media screen and (max-width: 600px) {
  .l-section--blog {
    padding-bottom: 5.625rem;
  }
}
.l-section--blog::after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 87.5rem;
  height: calc(100% - clamp(11.25rem, 6.395631068rem + 20.71197411vw, 31.25rem));
  background-color: #fff;
  z-index: -1;
}
@media screen and (max-width: 1600px) {
  .l-section--blog::after {
    width: clamp(22.5rem, 1.4138349515rem + 89.9676375405vw, 109.375rem);
  }
}

.c-blog__top-archive-box-inner {
  max-width: 68.75rem;
  margin: 0 auto;
  margin-top: clamp(1.875rem, 0.3125rem + 6.6666666667vw, 8.3125rem);
  margin-bottom: clamp(3.75rem, 1.9751213592rem + 7.572815534vw, 11.0625rem);
  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(3.75rem, 3.3252427184rem + 1.8122977346vw, 5.5rem);
}
@media screen and (max-width: 1280px) {
  .c-blog__top-archive-box-inner {
    max-width: 80%;
  }
}
.c-blog__top-archive-box-inner li:nth-child(2) {
  margin-left: clamp(1.25rem, 0.1425970874rem + 4.7249190939vw, 5.8125rem);
}
@media screen and (max-width: 768px) {
  .c-blog__top-archive-box-inner li:nth-child(2) {
    margin: 0;
  }
}
.c-blog__top-archive-box-inner li:nth-child(3) {
  margin-left: clamp(2.5rem, 0.2851941748rem + 9.4498381877vw, 11.625rem);
}
@media screen and (max-width: 768px) {
  .c-blog__top-archive-box-inner li:nth-child(3) {
    margin: 0;
  }
}

.c-blog__top-archive-box-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 clamp(3.75rem, 1.7930825243rem + 8.3495145631vw, 11.8125rem);
  width: clamp(25rem, 17.4150485437rem + 32.3624595469vw, 56.25rem);
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-blog__top-archive-box-item {
    margin: 0 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    width: auto;
    gap: clamp(0.9375rem, 0.8616504854rem + 0.3236245955vw, 1.25rem) clamp(3.75rem, 1.7930825243rem + 8.3495145631vw, 11.8125rem);
  }
}
.c-blog__top-archive-box-item::after {
  position: absolute;
  content: "";
  top: 50%;
  left: calc(100% + 2.125rem);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.3125rem;
  height: calc(100% + 2.375rem);
  background-color: #83D746;
}
@media screen and (max-width: 768px) {
  .c-blog__top-archive-box-item::after {
    height: 100%;
    left: calc(100% + 0.625rem);
  }
}
@media screen and (max-width: 600px) {
  .c-blog__top-archive-box-item::after {
    width: 100%;
    height: 0.3125rem;
    top: auto;
    left: 0;
    bottom: -1.5625rem;
  }
}

.c-blog__top-archive-left {
  white-space: nowrap;
}
.c-blog__top-archive-left .c-blog__top-archive-date {
  color: #000;
  font-family: "Open Sans Hebrew";
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  /* 233.333% */
  margin-bottom: clamp(0.625rem, 0.5188106796rem + 0.4530744337vw, 1.0625rem);
  position: relative;
}
.c-blog__top-archive-left .c-blog__top-archive-date::after {
  position: absolute;
  content: "";
  top: 50%;
  left: calc(100% + clamp(0.625rem, 0.5188106796rem + 0.4530744337vw, 1.0625rem));
  width: clamp(2.5rem, 0.7858009709rem + 7.3139158576vw, 9.5625rem);
  height: 0.0625rem;
  background-color: #BBBBBB;
}
@media screen and (max-width: 768px) {
  .c-blog__top-archive-left .c-blog__top-archive-date::after {
    display: none;
  }
}
.c-blog__top-archive-left .c-blog__top-archive-category {
  color: #000;
  font-family: "Open Sans Hebrew";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  /* 200% */
}

.c-blog__top-archive-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1.25rem, 1.0527912621rem + 0.8414239482vw, 2.0625rem);
}
@media screen and (max-width: 600px) {
  .c-blog__top-archive-right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-blog__top-archive-right img {
  max-width: clamp(9.375rem, 8.8895631068rem + 2.071197411vw, 11.375rem);
  aspect-ratio: 182/127;
}
@media screen and (max-width: 600px) {
  .c-blog__top-archive-right img {
    max-width: 100%;
    width: 100%;
  }
}

.c-blog__top-archive-right-text-box {
  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.9375rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.c-blog__top-archive-title {
  color: #000;
  text-align: justify;
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 0.9696601942rem + 0.1294498382vw, 1.125rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.66em;
  /* 166.667% */
  letter-spacing: 0.03em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
}

.c-blog__top-archive-text {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.71em;
  /* 171.429% */
  letter-spacing: 0.05em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
}

.c-blog__human {
  position: absolute;
  bottom: 0;
  left: calc(50% - clamp(11.25rem, 9.2779126214rem + 8.4142394822vw, 19.375rem));
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: auto;
  height: clamp(6.25rem, 4.4447815534rem + 7.7022653722vw, 13.6875rem);
}
@media screen and (max-width: 600px) {
  .c-blog__human {
    bottom: 0;
    left: calc(50% - clamp(10rem, 7.7245145631rem + 9.7087378641vw, 19.375rem));
  }
}

.c-blog-archive__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(1.25rem, 0.9466019417rem + 1.2944983819vw, 2.5rem);
  margin-bottom: clamp(3.75rem, 2.2330097087rem + 6.4724919094vw, 10rem);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.c-blog-archive__category .c-blog-archive__category-link {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: clamp(0.25rem, 0.2348300971rem + 0.0647249191vw, 0.3125rem) clamp(0.3125rem, 0.1152912621rem + 0.8414239482vw, 1.125rem);
  border: 0.0625rem solid #000;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.44em;
  /* 144.444% */
  letter-spacing: 0.05em;
}
.c-blog-archive__category .c-blog-archive__category-link.is_current {
  background: #000;
  color: #fff;
}

.c-blog__top-archive-page-box-inner {
  max-width: 68.75rem;
  margin: 0 auto;
  margin-top: clamp(1.875rem, 0.3125rem + 6.6666666667vw, 8.3125rem);
  margin-bottom: clamp(3.75rem, 1.9751213592rem + 7.572815534vw, 11.0625rem);
  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(3.75rem, 3.3252427184rem + 1.8122977346vw, 5.5rem);
}
@media screen and (max-width: 1280px) {
  .c-blog__top-archive-page-box-inner {
    max-width: 90%;
  }
}

.c-blog__top-archive-page-box-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 clamp(3.75rem, 1.7930825243rem + 8.3495145631vw, 11.8125rem);
  width: clamp(25rem, 17.4150485437rem + 32.3624595469vw, 56.25rem);
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .c-blog__top-archive-page-box-item {
    margin: 0 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    width: auto;
    gap: clamp(0.9375rem, 0.8616504854rem + 0.3236245955vw, 1.25rem) clamp(3.75rem, 1.7930825243rem + 8.3495145631vw, 11.8125rem);
  }
}
.c-blog__top-archive-page-box-item::after {
  position: absolute;
  content: "";
  top: 50%;
  left: calc(100% + 2.125rem);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.3125rem;
  height: calc(100% + 2.375rem);
  background-color: #83D746;
}
@media screen and (max-width: 768px) {
  .c-blog__top-archive-page-box-item::after {
    height: 100%;
    left: calc(100% + 0.625rem);
  }
}
@media screen and (max-width: 600px) {
  .c-blog__top-archive-page-box-item::after {
    width: 100%;
    height: 0.3125rem;
    top: auto;
    left: 0;
    bottom: -1.5625rem;
  }
}

.c-blog__top-archive-page-left {
  white-space: nowrap;
}
.c-blog__top-archive-page-left .c-blog__top-archive-page-date {
  color: #000;
  font-family: "Open Sans Hebrew";
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  /* 233.333% */
  margin-bottom: clamp(0.625rem, 0.5188106796rem + 0.4530744337vw, 1.0625rem);
  position: relative;
}
.c-blog__top-archive-page-left .c-blog__top-archive-page-date::after {
  position: absolute;
  content: "";
  top: 50%;
  left: calc(100% + clamp(0.625rem, 0.5188106796rem + 0.4530744337vw, 1.0625rem));
  width: clamp(2.5rem, 0.7858009709rem + 7.3139158576vw, 9.5625rem);
  height: 0.0625rem;
  background-color: #BBBBBB;
}
@media screen and (max-width: 768px) {
  .c-blog__top-archive-page-left .c-blog__top-archive-page-date::after {
    display: none;
  }
}
.c-blog__top-archive-page-left .c-blog__top-archive-page-category {
  color: #000;
  font-family: "Open Sans Hebrew";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  /* 200% */
}

.c-blog__top-archive-page-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1.25rem, 1.0527912621rem + 0.8414239482vw, 2.0625rem);
}
@media screen and (max-width: 600px) {
  .c-blog__top-archive-page-right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-blog__top-archive-page-right img {
  max-width: clamp(9.375rem, 8.8895631068rem + 2.071197411vw, 11.375rem);
  aspect-ratio: 182/127;
}
@media screen and (max-width: 600px) {
  .c-blog__top-archive-page-right img {
    max-width: 100%;
    width: 100%;
  }
}

.c-blog__top-archive-page-right-text-box {
  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.9375rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.c-blog__top-archive-page-title {
  color: #000;
  text-align: justify;
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 0.9696601942rem + 0.1294498382vw, 1.125rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.66em;
  /* 166.667% */
  letter-spacing: 0.03em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
}

.c-blog__top-archive-page-text {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.71em;
  /* 171.429% */
  letter-spacing: 0.05em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
}

.c-blog-pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(0.9375rem, 0.8616504854rem + 0.3236245955vw, 1.25rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-blog-pagination .nav-links .page-numbers {
  color: #000;
  border: none;
  width: auto;
  color: #000;
  font-family: "Open Sans Hebrew";
  font-size: clamp(0.875rem, 0.7233009709rem + 0.6472491909vw, 1.5rem);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0 clamp(0rem, -0.0455097087rem + 0.1941747573vw, 0.1875rem);
}
.c-blog-pagination .nav-links .page-numbers.current {
  color: #fff;
  background-color: #000;
  width: clamp(1.5625rem, 1.4563106796rem + 0.4530744337vw, 2rem);
  height: clamp(1.5625rem, 1.4563106796rem + 0.4530744337vw, 2rem);
}

.c-blog__single {
  max-width: 43.75rem;
  margin: 0 auto;
}

.c-blog__single__date {
  color: #000;
  font-family: "Open Sans Hebrew";
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.75em;
  /* 175% */
}

.c-blog__single__category--works {
  margin-top: 0.5rem;
}
.c-blog__single__category--works li {
  display: inline;
  color: #000;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(1.125rem, 1.0946601942rem + 0.1294498382vw, 1.25rem);
  font-style: normal;
  font-weight: 500;
  line-height: 2.42em;
  /* 240% */
  letter-spacing: 0.05em;
  padding: 0.5625rem 2.875rem;
  border-radius: 3.0625rem;
  background: #83D746;
}

.c-blog__single__category {
  margin-top: 0.5rem;
}
.c-blog__single__category li {
  display: inline;
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 0.9696601942rem + 0.1294498382vw, 1.125rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.44em;
  /* 144.444% */
  letter-spacing: 0.05em;
  background-color: #000;
  padding: 0.3125rem 1.125rem;
}

.c-blog__single__title {
  margin-top: clamp(1.875rem, 1.6019417476rem + 1.1650485437vw, 3rem);
  margin-bottom: clamp(1.875rem, 1.0709951456rem + 3.430420712vw, 5.1875rem);
  color: #000;
  text-align: justify;
  font-family: "Noto Sans JP";
  font-size: clamp(1.25rem, 1.1286407767rem + 0.5177993528vw, 1.75rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.07em;
  /* 107.143% */
  letter-spacing: 0.03em;
}

.c-blog__single__wrap .c-blog__single__thumbnail {
  margin-bottom: clamp(1.875rem, 0.8131067961rem + 4.5307443366vw, 6.25rem);
}

.l-section--instagram {
  padding-top: clamp(3.75rem, 1.6262135922rem + 9.0614886731vw, 12.5rem);
  padding-bottom: clamp(3.75rem, 1.9447815534rem + 7.7022653722vw, 11.1875rem);
}

.c-instagram__center-box--outer {
  position: relative;
  width: 100%;
}

.c-instagram__center-box {
  padding: clamp(3.75rem, 2.7791262136rem + 4.142394822vw, 7.75rem) clamp(0rem, -1.1225728155rem + 4.7896440129vw, 4.625rem);
  background-color: #fff;
  max-width: clamp(31.25rem, 27.6395631068rem + 15.4045307443vw, 46.125rem);
  border-radius: 0.625rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 600px) {
  .c-instagram__center-box {
    max-width: 90%;
  }
}
.c-instagram__center-box .c-instagram__circle {
  position: absolute;
  content: "";
  width: 0.9375rem;
  height: 0.9375rem;
  background-color: #A3CF83;
  border-radius: 50%;
}
.c-instagram__center-box .c-instagram__circle--top-left {
  top: 1.25rem;
  left: 1.25rem;
}
.c-instagram__center-box .c-instagram__circle--top-right {
  top: 1.25rem;
  right: 1.25rem;
}
.c-instagram__center-box .c-instagram__circle--bottom-left {
  bottom: 1.25rem;
  left: 1.25rem;
}
.c-instagram__center-box .c-instagram__circle--bottom-right {
  bottom: 1.25rem;
  right: 1.25rem;
}

.c-instagram__center--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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1.875rem, 1.6777912621rem + 0.8414239482vw, 2.6875rem);
  margin-bottom: clamp(1.875rem, 1.2378640777rem + 2.7184466019vw, 4.5rem);
}
.c-instagram__center--box-inner--text {
  margin-bottom: clamp(1.875rem, 1.2378640777rem + 2.7184466019vw, 4.5rem);
  color: #2F2F2F;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.7839805825rem + 0.3883495146vw, 1.25rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.8;
  /* 180% */
  letter-spacing: 0.05em;
}
.c-instagram__center--box-inner--text .sp-only {
  display: none;
}
@media screen and (max-width: 1480px) {
  .c-instagram__center--box-inner--text .sp-only {
    display: inline;
  }
}

.c-instagram__slider {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .c-instagram__slider {
    margin-top: 1.875rem;
    position: relative;
    top: auto;
    -webkit-transform: none;
            transform: none;
  }
}

.c-instagram__slider--item {
  padding-left: 1.25rem;
}

.l-section--contact {
  padding-top: clamp(3.75rem, 2.2330097087rem + 6.4724919094vw, 10rem);
  padding-bottom: clamp(5rem, 2.390776699rem + 11.1326860841vw, 15.75rem);
  background-color: #fff;
}

.c-contact__box {
  margin: 0 auto;
  max-width: 68.75rem;
  margin-top: clamp(3.75rem, 3.3404126214rem + 1.7475728155vw, 5.4375rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 0.9466019417rem + 1.2944983819vw, 2.5rem);
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 1280px) {
  .c-contact__box {
    max-width: 90%;
  }
}
@media screen and (max-width: 991px) {
  .c-contact__box {
    grid-template-columns: 1fr;
  }
}
.c-contact__box.margin-none {
  margin-top: 0;
}

.c-contact__item--box--columns2 {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: clamp(1.25rem, 0.9466019417rem + 1.2944983819vw, 2.5rem);
}

.c-contact__item {
  border: 0.0625rem solid #000;
  padding: 1rem;
  position: relative;
  height: 100%;
}
.c-contact__item .c-contact__line {
  position: absolute;
  content: "";
  width: 0.0625rem;
  height: 1.5rem;
  background-color: #000;
}
.c-contact__item .c-contact__line--top-left {
  top: -0.25rem;
  left: 0.4375rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.c-contact__item .c-contact__line--top-right {
  top: -0.25rem;
  right: 0.4375rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-contact__item .c-contact__line--bottom-left {
  bottom: -0.25rem;
  left: 0.4375rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-contact__item .c-contact__line--bottom-right {
  bottom: -0.25rem;
  right: 0.4375rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.c-contact__item--inner {
  border: 0.0625rem solid #000;
  height: 100%;
  padding: 1.875rem clamp(0.625rem, 0.1850728155rem + 1.8770226537vw, 2.4375rem) 2.4375rem;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-contact__item--text {
  color: #000;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  font-style: normal;
  font-weight: 600;
  line-height: 1.66em;
  /* 166.667% */
  letter-spacing: 0.1em;
  margin-bottom: clamp(0.9375rem, 0.8616504854rem + 0.3236245955vw, 1.25rem);
}
.c-contact__item--text--tel {
  margin-bottom: clamp(0.9375rem, 0.7402912621rem + 0.8414239482vw, 1.75rem);
}

.c-contact__item--date {
  color: #000;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.875em;
  /* 187.5% */
  letter-spacing: 0.1em;
  margin-top: clamp(0.9375rem, 0.6341019417rem + 1.2944983819vw, 2.1875rem);
}

.p-contact__inner {
  margin-bottom: clamp(6.25rem, 3.9745145631rem + 9.7087378641vw, 15.625rem);
}

.p-contact__top-text {
  color: #000;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.66em;
  /* 166.667% */
  letter-spacing: 0.03em;
  margin-bottom: clamp(1.875rem, 1.6019417476rem + 1.1650485437vw, 3rem);
}

.c-floating-banner__box {
  position: fixed;
  right: 0;
  bottom: 3.75rem;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.125rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  /* ゆっくり透明になる */
}
@media screen and (max-width: 600px) {
  .c-floating-banner__box {
    bottom: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    gap: 0.125rem;
    background-color: #FFF;
  }
}

.c-floating-banner__box.is-hidden {
  opacity: 0;
  pointer-events: none;
  /* クリックできないようにするなら */
}

.c-floating-banner {
  background-color: #000;
  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(0.375rem, 0.2688106796rem + 0.4530744337vw, 0.8125rem);
  width: clamp(6.25rem, 4.8847087379rem + 5.8252427184vw, 11.875rem);
  height: clamp(6.875rem, 6.0406553398rem + 3.5598705502vw, 10.3125rem);
  border-radius: 50% 0 0 50%;
}
@media screen and (max-width: 600px) {
  .c-floating-banner {
    width: 100%;
    border-radius: 0;
    height: 5.625rem;
  }
}
.c-floating-banner--bottom {
  gap: 0.375rem;
}
@media screen and (max-width: 600px) {
  .c-floating-banner--bottom.pc-only {
    display: none;
  }
}
.c-floating-banner--bottom.sp-only {
  display: none;
}
@media screen and (max-width: 600px) {
  .c-floating-banner--bottom.sp-only {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.c-floating-banner .c-floating-banner__text-top {
  width: auto;
  height: clamp(2.375rem, 2.2991504854rem + 0.3236245955vw, 2.6875rem);
}
@media screen and (max-width: 600px) {
  .c-floating-banner .c-floating-banner__text-top {
    display: none;
  }
}
.c-floating-banner .c-floating-banner__text-bottom {
  width: auto;
}
@media screen and (max-width: 600px) {
  .c-floating-banner .c-floating-banner__text-bottom {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .c-floating-banner img {
    width: auto;
    height: 1.5625rem;
  }
}
.c-floating-banner .c-floating-banner__text-sp {
  display: none;
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.571em;
  /* 157.143% */
  letter-spacing: 0.1em;
}
@media screen and (max-width: 600px) {
  .c-floating-banner .c-floating-banner__text-sp {
    display: block;
  }
}

.p-company__overview-box {
  margin-top: clamp(1.25rem, 0.5825242718rem + 2.8478964401vw, 4rem);
  margin-bottom: clamp(3.75rem, 1.6262135922rem + 9.0614886731vw, 12.5rem);
}
.p-company__overview-box table tbody tr {
  border-bottom: 0.0625rem solid #BBBBBB;
}
.p-company__overview-box table tbody tr td {
  padding: 0;
  padding-top: clamp(1.25rem, 1.1893203883rem + 0.2588996764vw, 1.5rem);
  padding-bottom: clamp(1.25rem, 1.1893203883rem + 0.2588996764vw, 1.5rem);
  color: #2F2F2F;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.75em;
  /* 175% */
  letter-spacing: 0.05em;
}
.p-company__overview-box table tbody tr td:first-child {
  width: clamp(8.125rem, 6.8052184466rem + 5.6310679612vw, 13.5625rem);
}
.p-company__overview-box table tbody tr td .sp-only {
  display: none;
}
@media screen and (max-width: 600px) {
  .p-company__overview-box table tbody tr td .sp-only {
    display: inline;
  }
}
@media screen and (max-width: 600px) {
  .p-company__overview-box table tbody tr td span {
    display: none;
  }
}

.p-company__history-box {
  margin-top: clamp(2.5rem, 1.7718446602rem + 3.1067961165vw, 5.5rem);
  margin-bottom: clamp(3.75rem, 2.5819174757rem + 4.9838187702vw, 8.5625rem);
}
.p-company__history-box .p-company__history-box-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(2.8125rem, 0.9617718447rem + 7.8964401294vw, 10.4375rem);
  margin-bottom: clamp(2.5rem, 1.7718446602rem + 3.1067961165vw, 5.5rem);
}
.p-company__history-box .p-company__history-box-item .p-company__history--left {
  position: relative;
}
.p-company__history-box .p-company__history-box-item .p-company__history--left::before {
  position: absolute;
  content: "";
  top: clamp(0.625rem, 0.3216019417rem + 1.2944983819vw, 1.875rem);
  left: calc(100% + clamp(1.25rem, 0.1274271845rem + 4.7896440129vw, 5.875rem));
  width: 0.25rem;
  height: calc(100% + clamp(2.5rem, 1.7718446602rem + 3.1067961165vw, 5.5rem));
  background: #EAEAEA;
}
.p-company__history-box .p-company__history-box-item .p-company__history--left__last::before {
  display: none;
}
.p-company__history-box .p-company__history-box-item .p-company__history--left .p-company__history--left-title {
  color: rgba(131, 215, 70, 0.5);
  text-align: center;
  font-family: "Open Sans Hebrew";
  font-size: clamp(1.5625rem, 0.9708737864rem + 2.5242718447vw, 4rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.093em;
  /* 109.375% */
  letter-spacing: 0.05em;
  white-space: nowrap;
  position: relative;
}
.p-company__history-box .p-company__history-box-item .p-company__history--left .p-company__history--left-title::before {
  position: absolute;
  content: "";
  top: 50%;
  left: calc(100% + clamp(0.625rem, -0.4975728155rem + 4.7896440129vw, 5.25rem));
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  background-color: #83D746;
  border-radius: 50%;
}
.p-company__history-box .p-company__history-box-item .p-company__history--left .p-company__history--left-title::after {
  position: absolute;
  content: "";
  top: 50%;
  left: calc(100% + clamp(0.9375rem, -0.1850728155rem + 4.7896440129vw, 5.5625rem));
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.875rem;
  height: 0.875rem;
  background-color: #fff;
  border-radius: 50%;
}
.p-company__history-box .p-company__history-box-item .p-company__history--right {
  color: #212121;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  /* 177.778% */
  letter-spacing: 0.05em;
  width: 100%;
}
.p-company__history-box .p-company__history-box-item .p-company__history--right .p-company__history--right-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(0.625rem, -0.2700242718rem + 3.8187702265vw, 4.3125rem);
  padding-top: clamp(0.9375rem, 0.8009708738rem + 0.5825242718vw, 1.5rem);
  padding-bottom: clamp(0.9375rem, 0.8009708738rem + 0.5825242718vw, 1.5rem);
  border-bottom: 0.0625rem solid #BBB;
}
.p-company__history-box .p-company__history-box-item .p-company__history--right .p-company__history--right-item:first-child {
  padding-top: clamp(0.1875rem, -0.0703883495rem + 1.1003236246vw, 1.25rem);
}
.p-company__history-box .p-company__history-box-item .p-company__history--right .p-company__history--right-item .p-company__history--right-month {
  white-space: nowrap;
}
.p-company__history-box .p-company__history-box-item .p-company__history--right .p-company__history--right-item .p-company__history--right-text .sp-only {
  display: none;
}
@media screen and (max-width: 480px) {
  .p-company__history-box .p-company__history-box-item .p-company__history--right .p-company__history--right-item .p-company__history--right-text .sp-only {
    display: inline;
  }
}

.p-company__access--box {
  margin-top: clamp(2.5rem, 1.7718446602rem + 3.1067961165vw, 5.5rem);
  margin-bottom: clamp(5.625rem, 3.1826456311rem + 10.4207119741vw, 15.6875rem);
}
.p-company__access--box .p-company__access--map iframe {
  width: 100%;
  aspect-ratio: 110/49;
}

.p-company__access--under-box {
  margin-top: clamp(1.875rem, 1.4805825243rem + 1.6828478964vw, 3.5rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1.875rem, 0.7979368932rem + 4.5954692557vw, 6.3125rem);
}
@media screen and (max-width: 768px) {
  .p-company__access--under-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-company__access--under-box .p-company__access--under-box-title {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(1.125rem, 1.0643203883rem + 0.2588996764vw, 1.375rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  /* 181.818% */
  letter-spacing: 0.05em;
  padding-left: 0.8125rem;
  border-left: 0.25rem solid #83D746;
  height: 1.5rem;
}
.p-company__access--under-box .p-company__access--under-box-address {
  margin-top: 1rem;
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.75em;
  /* 175% */
  letter-spacing: 0.05em;
  padding-left: 0.8125rem;
}
.p-company__access--under-box .p-company__access--under-box-text {
  margin-top: 0.5rem;
  color: var(--, #2F2F2F);
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-style: normal;
  font-weight: 500;
  line-height: 2.5em;
  /* 250% */
  letter-spacing: 0.05em;
  padding-left: 0.8125rem;
}

.c-page-top__top-contents-box {
  padding-top: clamp(2.5rem, 2.0145631068rem + 2.071197411vw, 4.5rem);
  margin-bottom: clamp(3.75rem, 2.2330097087rem + 6.4724919094vw, 10rem);
  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(1.875rem, 1.692961165rem + 0.7766990291vw, 2.625rem);
  position: relative;
}
.c-page-top__top-contents-box.bg-none::before {
  display: none;
}
@media screen and (max-width: 1024px) {
  .c-page-top__top-contents-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: clamp(1.25rem, 0.6432038835rem + 2.5889967638vw, 3.75rem);
  }
}
.c-page-top__top-contents-box--under {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1.875rem, 1.3440533981rem + 2.2653721683vw, 4.0625rem);
}
@media screen and (max-width: 850px) {
  .c-page-top__top-contents-box--under {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.c-page-top__top-contents-box::before {
  position: absolute;
  content: "";
  right: calc(0rem - clamp(1.25rem, -3.953276699rem + 22.2006472492vw, 22.6875rem));
  bottom: 0;
  width: clamp(18.875rem, 10.6074029126rem + 35.2750809061vw, 52.9375rem);
  height: clamp(15.4375rem, 9.1723300971rem + 26.7313915858vw, 41.25rem);
  background-image: url(../img/common/comp/home_bg.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top right;
  z-index: -1;
}
@media screen and (max-width: 850px) {
  .c-page-top__top-contents-box::before {
    bottom: auto;
    top: 2.5rem;
  }
}

.c-page-top__top-contents-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;
}
@media screen and (max-width: 1024px) {
  .c-page-top__top-contents-left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.375rem;
    padding-left: 0;
  }
}
.c-page-top__top-contents-left--under {
  width: clamp(12.5rem, 11.9235436893rem + 2.4595469256vw, 14.875rem);
}
@media screen and (max-width: 850px) {
  .c-page-top__top-contents-left--under {
    display: none;
  }
}

.c-page-top__top-contents-left--text {
  color: #2F2F2F;
  font-family: "Noto Sans JP";
  font-size: clamp(1.25rem, 1.067961165rem + 0.7766990291vw, 2rem);
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  /* 131.25% */
  letter-spacing: 0.05em;
  display: inline-block;
  padding-bottom: clamp(0.75rem, 0.6893203883rem + 0.2588996764vw, 1rem);
  position: relative;
}
.c-page-top__top-contents-left--text:first-child {
  margin-bottom: clamp(0.75rem, 0.5376213592rem + 0.9061488673vw, 1.625rem);
}
@media screen and (max-width: 600px) {
  .c-page-top__top-contents-left--text:first-child {
    margin-bottom: 0.375rem;
  }
}
.c-page-top__top-contents-left--text::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 0.0625rem;
  width: calc(100% - 0.9375rem);
  background-color: #000;
}
.c-page-top__top-contents-left--text span {
  color: #83D746;
}

.c-page-top__top-contents-left--under-text {
  margin-top: clamp(1.25rem, 0.5370145631rem + 3.0420711974vw, 4.1875rem);
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.42em;
  /* 242.857% */
  letter-spacing: 0.05em;
}
@media screen and (max-width: 600px) {
  .c-page-top__top-contents-left--under-text .sp-none {
    display: none;
  }
}

.c-page-top__top-contents-right-sp {
  display: none;
}
@media screen and (max-width: 850px) {
  .c-page-top__top-contents-right-sp {
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    margin-top: 1.25rem;
    gap: 2.3125rem;
  }
}
.c-page-top__top-contents-right-sp picture:nth-child(2) {
  padding-bottom: 1.75rem;
}

.c-page-top__top-contents-right {
  position: absolute;
  top: 0;
  right: calc(0rem - clamp(1.875rem, 1.2378640777rem + 2.7184466019vw, 4.5rem));
  width: clamp(9.375rem, 6.0224514563rem + 14.3042071197vw, 23.1875rem);
}
@media screen and (max-width: 1024px) {
  .c-page-top__top-contents-right {
    width: clamp(15.625rem, 13.7894417476rem + 7.8317152104vw, 23.1875rem);
  }
}
@media screen and (max-width: 850px) {
  .c-page-top__top-contents-right {
    display: none;
  }
}

.c-page-top__top-contents-right--under {
  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.3125rem, 0.2973300971rem + 0.0647249191vw, 0.375rem);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.c-page-top__top-contents-right--under .c-page-top__top-contents-right--text--under {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  background-color: #000;
  padding: clamp(0.625rem, 0.5643203883rem + 0.2588996764vw, 0.875rem) clamp(0.625rem, 0.4126213592rem + 0.9061488673vw, 1.5rem);
  white-space: nowrap;
}

.c-page__reform {
  position: relative;
  padding-bottom: clamp(2.5rem, 1.7718446602rem + 3.1067961165vw, 5.5rem);
}
.c-page__reform--bk-none {
  margin-top: clamp(5rem, 4.3932038835rem + 2.5889967638vw, 7.5rem);
  margin-bottom: clamp(5rem, 4.3932038835rem + 2.5889967638vw, 7.5rem);
}
.c-page__reform::before {
  position: absolute;
  content: "";
  left: calc(0rem - clamp(3.125rem, 2.8822815534rem + 1.0355987055vw, 4.125rem));
  bottom: 0;
  width: clamp(62.5rem, 57.4939320388rem + 21.359223301vw, 83.125rem);
  height: clamp(37.9375rem, 34.0691747573rem + 16.5048543689vw, 53.875rem);
  background-image: url(../img/common/comp/page-contents_bk.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  z-index: -1;
}
@media screen and (max-width: 850px) {
  .c-page__reform::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (max-width: 600px) {
  .c-page__reform::before {
    height: 77%;
  }
}

.c-page__reform-box {
  margin-top: clamp(2.5rem, 2.2572815534rem + 1.0355987055vw, 3.5rem);
  margin-bottom: clamp(3.75rem, 3.567961165rem + 0.7766990291vw, 4.5rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: clamp(1.25rem, 0.5370145631rem + 3.0420711974vw, 4.1875rem);
}
@media screen and (max-width: 768px) {
  .c-page__reform-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;
  }
}

.c-page__reform-left .c-page__reform-left--img img {
  max-width: clamp(18.75rem, 17.6881067961rem + 4.5307443366vw, 23.125rem);
}
@media screen and (max-width: 480px) {
  .c-page__reform-left .c-page__reform-left--img img {
    max-width: 100%;
    width: 100%;
  }
}

.c-page__reform-right {
  position: relative;
  z-index: 0;
}
.c-page__reform-right .c-page__reform-right--title {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(1.25rem, 1.067961165rem + 0.7766990291vw, 2rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.5em;
  /* 150% */
  letter-spacing: 0.05em;
  margin-bottom: clamp(0.625rem, 0.1699029126rem + 1.9417475728vw, 2.5rem);
}
@media screen and (max-width: 768px) {
  .c-page__reform-right .c-page__reform-right--title {
    text-align: center;
  }
}
.c-page__reform-right .c-page__reform-right--text {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  font-style: normal;
  font-weight: 400;
  line-height: 2.42em;
  /* 242.857% */
  letter-spacing: 0.05em;
}

.c-page__archive--flex-outer {
  margin-bottom: clamp(1.875rem, 1.4805825243rem + 1.6828478964vw, 3.5rem);
}

.c-page__archive--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(2.5rem, 2.3634708738rem + 0.5825242718vw, 3.0625rem);
}
@media screen and (max-width: 600px) {
  .c-page__archive--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;
  }
}

.c-page__archive--flex-item:nth-child(2n) {
  margin-top: clamp(1.25rem, 1.067961165rem + 0.7766990291vw, 2rem);
}
@media screen and (max-width: 600px) {
  .c-page__archive--flex-item:nth-child(2n) {
    margin-top: 0;
  }
}

.c-page__archive--flex-img {
  position: relative;
  display: block;
}
.c-page__archive--flex-img--bk {
  position: relative;
  display: block;
}
.c-page__archive--flex-img--bk::after {
  position: absolute;
  content: "";
  top: 0.625rem;
  left: 0.75rem;
  width: calc(100% + 0.1875rem);
  height: calc(100% + 0.3125rem);
  background: #F0FEE7;
  z-index: -1;
}
.c-page__archive--flex-img::after {
  position: absolute;
  content: "";
  top: 0.625rem;
  left: 0.75rem;
  width: calc(100% + 0.1875rem);
  height: calc(100% + 0.3125rem);
  background: #fff;
  z-index: -1;
}

.c-page__archive--flex-box {
  margin-top: clamp(1.5625rem, 1.4714805825rem + 0.3883495146vw, 1.9375rem);
}

.c-page__archive--flex-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: 0.625rem;
}
.c-page__archive--flex-box-inner .c-page__archive--flex-title {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.28em;
  /* 128.571% */
  letter-spacing: 0.05em;
}
.c-page__archive--flex-box-inner .c-page__archive--flex-text {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 0.6875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  /* 372.727% */
  letter-spacing: 0.05em;
}

.p-home-update__execution-area {
  margin-top: clamp(5rem, 2.572815534rem + 10.355987055vw, 15rem);
  margin-bottom: clamp(5rem, 3.786407767rem + 5.1779935275vw, 10rem);
}

.p-home-update__execution-area--box {
  margin-top: clamp(1.875rem, 1.4805825243rem + 1.6828478964vw, 3.5rem);
}
.p-home-update__execution-area--box tbody th {
  text-align: center;
  padding: 0;
  vertical-align: middle;
  width: clamp(6.25rem, 3.4587378641rem + 11.9093851133vw, 17.75rem);
  height: clamp(6.25rem, 5.8100728155rem + 1.8770226537vw, 8.0625rem);
  position: relative;
  color: #000;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(1.25rem, 1.1893203883rem + 0.2588996764vw, 1.5rem);
  font-style: normal;
  font-weight: 500;
  line-height: 2em;
  /* 200% */
  letter-spacing: 0.05em;
}
@media screen and (max-width: 600px) {
  .p-home-update__execution-area--box tbody th {
    height: 8.125rem;
  }
}
.p-home-update__execution-area--box tbody th::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  height: 0.125rem;
  width: 100%;
  background: #83D746;
}
.p-home-update__execution-area--box tbody td {
  text-align: left;
  padding: 0;
  padding-left: clamp(1.25rem, 0.4156553398rem + 3.5598705502vw, 4.6875rem);
  vertical-align: middle;
  position: relative;
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.42em;
  /* 242.857% */
  letter-spacing: 0.05em;
}
@media screen and (max-width: 600px) {
  .p-home-update__execution-area--box tbody td br {
    display: none;
  }
}
.p-home-update__execution-area--box tbody td::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  height: 0.125rem;
  width: 100%;
  background: #BBB;
}

.c-page-flow__box {
  margin-top: clamp(2.5rem, 2.2572815534rem + 1.0355987055vw, 3.5rem);
}

.c-page-flow__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(0.9375rem, 0.0879854369rem + 3.6245954693vw, 4.4375rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: clamp(1.25rem, 1.0224514563rem + 0.9708737864vw, 2.1875rem) clamp(1.25rem, 1.1589805825rem + 0.3883495146vw, 1.625rem) clamp(1.25rem, 1.0224514563rem + 0.9708737864vw, 2.1875rem) clamp(1.25rem, 0.8859223301rem + 1.5533980583vw, 2.75rem);
}
.c-page-flow__item:nth-child(2n+1) {
  background: #F0FEE7;
}

.c-page-flow__item--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: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}
.c-page-flow__item--left .c-page-flow__item--left--text {
  color: #83D746;
  text-align: center;
  font-family: "Open Sans Hebrew";
  font-size: clamp(0.625rem, 0.4733009709rem + 0.6472491909vw, 1.25rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  /* 350% */
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.c-page-flow__item--left .c-page-flow__item--left--number {
  color: #83D746;
  text-align: center;
  font-family: "Open Sans Hebrew";
  font-size: clamp(2.1875rem, 1.8689320388rem + 1.359223301vw, 3.5rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  /* 125% */
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.c-page-flow__item--right {
  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;
  gap: 0.9375rem;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .c-page-flow__item--right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 0;
  }
}
.c-page-flow__item--right .c-page-flow__item--right-box {
  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;
}
.c-page-flow__item--right .c-page-flow__item--right-box .c-page-flow__item--right-title {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  font-style: normal;
  font-weight: 500;
  line-height: 2em;
  /* 200% */
  letter-spacing: 0.05em;
}
@media screen and (max-width: 600px) {
  .c-page-flow__item--right .c-page-flow__item--right-box .c-page-flow__item--right-title {
    text-align: center;
  }
}
.c-page-flow__item--right .c-page-flow__item--right-box .c-page-flow__item--right-text {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.42em;
  /* 242.857% */
  letter-spacing: 0.05em;
}
@media screen and (max-width: 600px) {
  .c-page-flow__item--right .c-page-flow__item--right-box .c-page-flow__item--right-text br {
    display: none;
  }
}
.c-page-flow__item--right .c-page-flow__item--right-box .c-page-flow__item--right-text .sp-only {
  display: none;
}
@media screen and (max-width: 600px) {
  .c-page-flow__item--right .c-page-flow__item--right-box .c-page-flow__item--right-text {
    text-align: center;
  }
}
@media screen and (max-width: 600px) {
  .c-page-flow__item--right .c-page-flow__item--right-img {
    width: 3.75rem;
  }
}

.c-page-flow-top--text {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.92em;
  /* 192.857% */
  letter-spacing: 0.05em;
  margin-top: clamp(2.5rem, 2.3786407767rem + 0.5177993528vw, 3rem);
}

.c-page-flow-recruit__box {
  margin-top: clamp(2.5rem, 2.3786407767rem + 0.5177993528vw, 3rem);
  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(1.25rem, 1.0072815534rem + 1.0355987055vw, 2.25rem);
}

.c-page-flow-recruit__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(0.9375rem, 0.3155339806rem + 2.6537216828vw, 3.5rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: clamp(1.25rem, 1.0072815534rem + 1.0355987055vw, 2.25rem) clamp(0.625rem, -0.1486650485rem + 3.3009708738vw, 3.8125rem) clamp(1.25rem, 1.0072815534rem + 1.0355987055vw, 2.25rem) clamp(1.25rem, 1.1286407767rem + 0.5177993528vw, 1.75rem);
  background: #F0FEE7;
  position: relative;
}
@media screen and (max-width: 600px) {
  .c-page-flow-recruit__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-page-flow-recruit__item::after {
  position: absolute;
  content: "";
  bottom: -1.75rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2.5625rem;
  height: 1.75rem;
  background-image: url(../img/job-description/comp/job-description-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.c-page-flow-recruit__item--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: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375rem;
}
.c-page-flow-recruit__item--left .c-page-flow-recruit__item--left--text {
  color: #000000;
  text-align: center;
  font-family: "Open Sans Hebrew";
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  /* 350% */
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.c-page-flow-recruit__item--left .c-page-flow-recruit__item--left--number {
  color: #000000;
  text-align: center;
  font-family: "Open Sans Hebrew";
  font-size: clamp(1.25rem, 1.1893203883rem + 0.2588996764vw, 1.5rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  /* 125% */
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.c-page-flow-recruit__item--right {
  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;
  gap: 1.25rem;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .c-page-flow-recruit__item--right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.c-page-flow-recruit__item--right .c-page-flow-recruit__item--right-box {
  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;
}
.c-page-flow-recruit__item--right .c-page-flow-recruit__item--right-box .c-page-flow-recruit__item--right-text {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.42em;
  /* 242.857% */
  letter-spacing: 0.05em;
}
@media screen and (max-width: 600px) {
  .c-page-flow-recruit__item--right .c-page-flow-recruit__item--right-box .c-page-flow-recruit__item--right-text br {
    display: none;
  }
}
.c-page-flow-recruit__item--right .c-page-flow-recruit__item--right-box .c-page-flow-recruit__item--right-text .sp-only {
  display: none;
}
@media screen and (max-width: 600px) {
  .c-page-flow-recruit__item--right .c-page-flow-recruit__item--right-box .c-page-flow-recruit__item--right-text {
    text-align: center;
  }
}
.c-page-flow-recruit__item--right .c-page-flow-recruit__item--right-link {
  width: clamp(14.375rem, 14.0867718447rem + 1.2297734628vw, 15.5625rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #000;
  border-radius: 3.0625rem;
  padding: clamp(0.3125rem, 0.2821601942rem + 0.1294498382vw, 0.4375rem) clamp(1.25rem, 1.1134708738rem + 0.5825242718vw, 1.8125rem);
}
.c-page-flow-recruit__item--right .c-page-flow-recruit__item--right-link span {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  font-style: normal;
  font-weight: 600;
  line-height: 2.85em;
  /* 285.714% */
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.c-page__reform-bread--top {
  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;
  margin-top: clamp(3.75rem, 2.7184466019rem + 4.4012944984vw, 8rem);
}
.c-page__reform-bread--top .c-page__reform-bread--img {
  margin-top: 0.875rem;
}
.c-page__reform-bread--top .c-page__reform-bread--text {
  margin-top: 1.125rem;
  max-width: 29.5rem;
  color: #000;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2em;
  /* 200% */
  letter-spacing: 0.05em;
}
@media screen and (max-width: 600px) {
  .c-page__reform-bread--top .c-page__reform-bread--text br {
    display: none;
  }
}

.c-page__reform-bread--bottom-box {
  position: relative;
  padding-bottom: clamp(2.5rem, 2.151092233rem + 1.4886731392vw, 3.9375rem);
  margin-top: clamp(1.875rem, 1.5109223301rem + 1.5533980583vw, 3.375rem);
  margin-bottom: clamp(3.75rem, 2.9611650485rem + 3.3656957929vw, 7rem);
}
.c-page__reform-bread--bottom-box::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/shop_open/comp/shop_open-bg.svg);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100%;
}
@media screen and (max-width: 768px) {
  .c-page__reform-bread--bottom-box::before {
    left: -10%;
    width: 150%;
    background-repeat: repeat;
  }
}
@media screen and (max-width: 768px) {
  .c-page__reform-bread--bottom-box {
    padding-top: 2.5rem;
    background-repeat: repeat;
    margin-top: clamp(7.625rem, 6.7148058252rem + 3.8834951456vw, 11.375rem);
  }
}
@media screen and (max-width: 768px) {
  .c-page__reform-bread--bottom-box .c-page__bread--bottom-img img {
    width: 100%;
  }
}
.c-page__reform-bread--bottom-box .c-page__reform-bread--bottom-inner {
  max-width: 47.9375rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1.25rem, 1.0527912621rem + 0.8414239482vw, 2.0625rem);
}
@media screen and (max-width: 768px) {
  .c-page__reform-bread--bottom-box .c-page__reform-bread--bottom-inner {
    -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;
  }
}
.c-page__reform-bread--bottom-box .c-page__reform-bread--bottom-inner .c-page__reform-bread--bottom {
  position: relative;
}
.c-page__reform-bread--bottom-box .c-page__reform-bread--bottom-inner .c-page__reform-bread--bottom .c-page__bread--bottom-img-top-left {
  position: absolute;
  left: 0;
  bottom: 100%;
}
.c-page__reform-bread--bottom-box .c-page__reform-bread--bottom-inner .c-page__reform-bread--bottom .c-page__bread--bottom-img-top-right {
  position: absolute;
  right: 0;
  bottom: 100%;
}
@media screen and (max-width: 768px) {
  .c-page__reform-bread--bottom-box .c-page__reform-bread--bottom-inner .c-page__reform-bread--bottom .c-page__bread--bottom-img-top-right {
    display: none;
  }
}
.c-page__reform-bread--bottom-box .c-page__reform-bread--bottom-inner .c-page__reform-bread--bottom .c-page__bread--bottom-img-top-right-sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-page__reform-bread--bottom-box .c-page__reform-bread--bottom-inner .c-page__reform-bread--bottom .c-page__bread--bottom-img-top-right-sp-only {
    display: block;
    position: absolute;
    right: 0;
    bottom: 100%;
  }
}

.c-choose-information__tab {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: clamp(0.5rem, 0.2117718447rem + 1.2297734628vw, 1.6875rem);
  border-bottom: 1px solid #000;
  height: 6.375rem;
}
@media screen and (max-width: 768px) {
  .c-choose-information__tab {
    gap: 0.25rem;
  }
}

.c-choose-information__tab-item {
  background-color: var(--color-txt);
  border-radius: 0.625rem 0.625rem 0px 0px;
  height: 5.3125rem;
  position: relative;
  bottom: -0.0625rem;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .c-choose-information__tab-item {
    height: 4.375rem;
  }
}
.c-choose-information__tab-item.is_active {
  background-color: var(--color_white);
  height: 6.3125rem;
  border: 1px solid var(--color-txt);
  border-bottom: none;
  cursor: default;
}
@media screen and (max-width: 768px) {
  .c-choose-information__tab-item.is_active {
    height: 5.3125rem;
  }
}

.c-choose-information__tab-item-link {
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  line-height: 1.5555555556;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--color_white);
  position: relative;
  padding: 0.875rem;
  width: 100%;
  height: 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;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  word-break: keep-all;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-choose-information__tab-item-link {
    padding: 0.375rem;
    font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  }
}
.is_active .c-choose-information__tab-item-link {
  color: var(--color-txt);
  font-size: clamp(1.125rem, 1.0946601942rem + 0.1294498382vw, 1.25rem);
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .is_active .c-choose-information__tab-item-link {
    font-size: clamp(0.875rem, 0.7839805825rem + 0.3883495146vw, 1.25rem);
  }
  .is_active .c-choose-information__tab-item-link::after {
    content: none;
  }
}

.c-choose-information {
  margin-bottom: clamp(3.75rem, 2.2330097087rem + 6.4724919094vw, 10rem);
}
.c-choose-information .c-choose-information__box {
  display: none;
}
.c-choose-information .c-choose-information__box.is_active {
  display: block;
}
.c-choose-information .c-choose-information__box .c-choose-box {
  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(1.875rem, 1.6019417476rem + 1.1650485437vw, 3rem);
  margin-top: clamp(1.875rem, 1.3743932039rem + 2.1359223301vw, 3.9375rem);
}
.c-choose-information .c-choose-information__box .c-choose-box .c-choose-box--item {
  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(1.25rem, 1.1893203883rem + 0.2588996764vw, 1.5rem);
}
.c-choose-information .c-choose-information__box .c-choose-box .c-choose-box--item .c-choose-box--title {
  color: #000;
  font-family: "Open Sans Hebrew";
  font-size: clamp(1.125rem, 1.0946601942rem + 0.1294498382vw, 1.25rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.5em;
  /* 165% */
  letter-spacing: 0.0425em;
  border-bottom: 0.0625rem solid #83D746;
  border-left: 0.4375rem solid #83D746;
  padding: 0 clamp(0.9375rem, 0.8464805825rem + 0.3883495146vw, 1.3125rem);
  padding-bottom: clamp(0.3125rem, 0.2973300971rem + 0.0647249191vw, 0.375rem);
  margin-bottom: clamp(0rem, -0.2730582524rem + 1.1650485437vw, 1.125rem);
}
.c-choose-information .c-choose-information__box .c-choose-box .c-choose-box--item .c-choose-box--text {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2em;
  /* 200% */
  letter-spacing: 0.05em;
}
.c-choose-information .c-choose-information__box .c-choose-box .c-choose-box--item 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: clamp(0.625rem, 0.5946601942rem + 0.1294498382vw, 0.75rem);
}
.c-choose-information .c-choose-information__box .c-choose-box .c-choose-box--item ul li {
  position: relative;
  padding-left: 1.125rem;
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2em;
  /* 200% */
  letter-spacing: 0.05em;
}
.c-choose-information .c-choose-information__box .c-choose-box .c-choose-box--item ul li::before {
  position: absolute;
  content: "・";
  top: 0;
  left: 0;
}
.c-choose-information .c-choose-information__box .c-choose-box .c-choose-box--item .c-choose-box--item--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.25rem;
}
.c-choose-information .c-choose-information__box .c-choose-box .c-choose-box--item .c-choose-box--item--inner .c-choose-box--item--inner-title {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75em;
  /* 175% */
  letter-spacing: 0.05em;
}

.l-section__page--recruit {
  overflow: clip;
}

.l-section__page--recruit-top-mv {
  position: relative;
}
.l-section__page--recruit-top-mv .l-section__page--recruit-top-mv-box img {
  width: 90%;
  margin: 0 auto;
}
.l-section__page--recruit-top-mv .l-section__page--recruit-top-mv-text-box {
  position: absolute;
  left: 14%;
  bottom: 8%;
  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.3125rem, -0.0819174757rem + 1.6828478964vw, 1.9375rem);
}
@media screen and (max-width: 768px) {
  .l-section__page--recruit-top-mv .l-section__page--recruit-top-mv-text-box {
    left: 5%;
    bottom: 8%;
  }
}
.l-section__page--recruit-top-mv .l-section__page--recruit-top-mv-text-box .l-section__page--recruit-top-mv-text {
  background: #000;
  border-right: 0.6875rem solid #83D746;
  width: clamp(11.875rem, 7.9459951456rem + 16.7637540453vw, 28.0625rem);
  height: clamp(1.875rem, 1.359223301rem + 2.2006472492vw, 4rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: clamp(0.3125rem, 0.2973300971rem + 0.0647249191vw, 0.375rem) 0;
  padding-left: clamp(0.625rem, 0.4733009709rem + 0.6472491909vw, 1.25rem);
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: clamp(1.25rem, 0.7949029126rem + 1.9417475728vw, 3.125rem);
  font-style: normal;
  font-weight: 700;
  line-height: 2em;
  /* 200% */
  letter-spacing: 0.2em;
  white-space: nowrap;
}
.l-section__page--recruit-top-mv .l-section__page--recruit-top-mv-text-box .l-section__page--recruit-top-mv-text-center {
  background: #83D746;
  width: clamp(10.625rem, 8.2433252427rem + 10.1618122977vw, 20.4375rem);
  height: clamp(1.875rem, 1.359223301rem + 2.2006472492vw, 4rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: clamp(0.3125rem, 0.2973300971rem + 0.0647249191vw, 0.375rem) 0;
  padding-left: clamp(0.625rem, 0.4733009709rem + 0.6472491909vw, 1.25rem);
  color: #FFF;
  font-family: "Post No Bills Jaffna ExtraBold";
  font-size: clamp(1.25rem, 0.9466019417rem + 1.2944983819vw, 2.5rem);
  font-style: normal;
  font-weight: 800;
  line-height: 1.5em;
  /* 150% */
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.l-section__page--recruit-child {
  overflow: clip;
}

.l-section__page--recruit-child-top-mv {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 600px) {
  .l-section__page--recruit-child-top-mv .l-section__page--recruit-child-top-mv-box {
    display: none;
  }
}
.l-section__page--recruit-child-top-mv .l-section__page--recruit-child-top-mv-box img {
  width: 70%;
  margin-left: auto;
}
@media screen and (max-width: 600px) {
  .l-section__page--recruit-child-top-mv .l-section__page--recruit-child-top-mv-box img {
    width: 100%;
  }
}
.l-section__page--recruit-child-top-mv .l-section__page--recruit-child-top-mv-box-sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .l-section__page--recruit-child-top-mv .l-section__page--recruit-child-top-mv-box-sp {
    display: inline;
  }
}
.l-section__page--recruit-child-top-mv .l-section__page--recruit-child-top-mv-box-sp img {
  width: 70%;
  margin-left: auto;
}
.l-section__page--recruit-child-top-mv .l-section__page--recruit-child-top-mv-text-box {
  position: absolute;
  left: 17.8%;
  bottom: auto;
  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.3125rem, -0.0819174757rem + 1.6828478964vw, 1.9375rem);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .l-section__page--recruit-child-top-mv .l-section__page--recruit-child-top-mv-text-box {
    left: 5%;
  }
}
.l-section__page--recruit-child-top-mv .l-section__page--recruit-child-top-mv-text-box .l-section__page--recruit-child-top-mv-text {
  background: #000;
  border-right: 0.6875rem solid #83D746;
  height: clamp(1.875rem, 1.359223301rem + 2.2006472492vw, 4rem);
  padding-top: clamp(0.3125rem, 0.2973300971rem + 0.0647249191vw, 0.375rem);
  padding-left: clamp(0.625rem, 0.4733009709rem + 0.6472491909vw, 1.25rem);
  padding-right: clamp(0.625rem, 0.0182038835rem + 2.5889967638vw, 3.125rem);
  display: inline;
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: clamp(1.25rem, 0.7949029126rem + 1.9417475728vw, 3.125rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1em;
  /* 200% */
  letter-spacing: 0.2em;
  white-space: nowrap;
}
.l-section__page--recruit-child-top-mv .l-section__page--recruit-child-top-mv-text-box .l-section__page--recruit-child-top-mv-text-center {
  height: clamp(1.875rem, 1.359223301rem + 2.2006472492vw, 4rem);
  padding: clamp(0.3125rem, 0.2973300971rem + 0.0647249191vw, 0.375rem) 0;
  padding-left: clamp(0.625rem, 0.4733009709rem + 0.6472491909vw, 1.25rem);
  padding-right: clamp(0.625rem, 0.4733009709rem + 0.6472491909vw, 1.25rem);
  display: inline;
  position: relative;
  color: #FFF;
  font-family: "Post No Bills Jaffna ExtraBold";
  font-size: clamp(1.25rem, 0.9466019417rem + 1.2944983819vw, 2.5rem);
  font-style: normal;
  font-weight: 800;
  line-height: 1.5em;
  /* 150% */
  letter-spacing: 0.1em;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-section__page--recruit-child-top-mv .l-section__page--recruit-child-top-mv-text-box .l-section__page--recruit-child-top-mv-text-center::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 90%;
  width: 100%;
  background: #83D746;
  mix-blend-mode: multiply;
}
.l-section__page--recruit-child-top-mv .l-section__page--recruit-child-top-mv-text-box .l-section__page--recruit-child-top-mv-text-center span {
  position: relative;
  color: #FFF;
  font-family: "Post No Bills Jaffna ExtraBold";
  font-size: clamp(1.25rem, 0.9466019417rem + 1.2944983819vw, 2.5rem);
  font-style: normal;
  font-weight: 800;
  line-height: 1.5em;
  /* 150% */
  letter-spacing: 0.1em;
  white-space: nowrap;
  z-index: 2;
}

.c-page__message {
  position: relative;
  padding-bottom: clamp(2.5rem, 1.7718446602rem + 3.1067961165vw, 5.5rem);
}
.c-page__message--bk-none {
  margin-top: clamp(2.5rem, 1.286407767rem + 5.1779935275vw, 7.5rem);
  margin-bottom: clamp(2.5rem, 1.286407767rem + 5.1779935275vw, 7.5rem);
}

.c-page__message-box {
  margin-bottom: clamp(3.75rem, 3.567961165rem + 0.7766990291vw, 4.5rem);
  gap: clamp(1.25rem, 0.6735436893rem + 2.4595469256vw, 3.625rem);
  position: relative;
  max-width: clamp(18.75rem, 15.9132281553rem + 12.1035598706vw, 30.4375rem);
}
@media screen and (max-width: 768px) {
  .c-page__message-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;
    max-width: 100%;
    padding-top: clamp(1.875rem, 1.2378640777rem + 2.7184466019vw, 4.5rem);
  }
}

.c-page__message-right {
  position: absolute;
  top: 0;
  left: calc(100% + clamp(1.25rem, 0.6735436893rem + 2.4595469256vw, 3.625rem));
}
.c-page__message-right .c-page__message-right--img img {
  max-width: clamp(18.75rem, 15.5794902913rem + 13.5275080906vw, 31.8125rem);
}
@media screen and (max-width: 768px) {
  .c-page__message-right {
    display: none;
  }
}
.c-page__message-right--sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .c-page__message-right--sp-only {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.c-page__message-left {
  z-index: 0;
}
.c-page__message-left .c-page__message-left--title {
  color: #2F2F2F;
  font-family: "Noto Sans JP";
  font-size: clamp(1.25rem, 1.067961165rem + 0.7766990291vw, 2rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.5em;
  /* 150% */
  letter-spacing: 0.05em;
  padding-top: clamp(1.25rem, 0.4611650485rem + 3.3656957929vw, 4.5rem);
  margin-bottom: clamp(1.25rem, 0.9466019417rem + 1.2944983819vw, 2.5rem);
}
@media screen and (max-width: 768px) {
  .c-page__message-left .c-page__message-left--title {
    text-align: center;
  }
}
.c-page__message-left .c-page__message-left--text-box {
  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.625rem, 0.5491504854rem + 0.3236245955vw, 0.9375rem);
}
.c-page__message-left .c-page__message-left--text-box .c-page__message-left--text {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.42em;
  /* 242.857% */
  letter-spacing: 0.003em;
}
@media screen and (max-width: 768px) {
  .c-page__message-left .c-page__message-left--text-box .c-page__message-left--text br {
    display: none;
  }
}

.p-recruit__working-outer-box {
  position: relative;
  padding-bottom: clamp(3.75rem, 3.5224514563rem + 0.9708737864vw, 4.6875rem);
  padding-left: clamp(1.25rem, 0.7190533981rem + 2.2653721683vw, 3.4375rem);
}
@media screen and (max-width: 768px) {
  .p-recruit__working-outer-box {
    margin-top: clamp(1.875rem, 1.7233009709rem + 0.6472491909vw, 2.5rem);
    padding-left: 0;
    padding-top: clamp(1.875rem, 1.7233009709rem + 0.6472491909vw, 2.5rem);
  }
}
.p-recruit__working-outer-box::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: calc(100% + clamp(0rem, -5.4611650485rem + 23.3009708738vw, 22.5rem));
  height: clamp(25.5625rem, 23.8027912621rem + 7.5080906149vw, 32.8125rem);
  background-image: url(../img/recruit/comp/working-bg.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  z-index: -1;
}
@media screen and (max-width: 991px) {
  .p-recruit__working-outer-box::after {
    top: 0;
    left: 1.25rem;
    bottom: auto;
    background-position: top center;
    height: 100%;
  }
}
.p-recruit__working-outer-box .p-recruit__working-box {
  margin-top: clamp(1.875rem, 1.6019417476rem + 1.1650485437vw, 3rem);
  margin-bottom: clamp(1.875rem, 1.2985436893rem + 2.4595469256vw, 4.25rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(1.25rem, 1.0224514563rem + 0.9708737864vw, 2.1875rem);
}
@media screen and (max-width: 768px) {
  .p-recruit__working-outer-box .p-recruit__working-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: clamp(2.5rem, 2.1966019417rem + 1.2944983819vw, 3.75rem);
  }
}
.p-recruit__working-outer-box .p-recruit__working-box .p-recruit__working-box--item {
  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(1.25rem, 0.9466019417rem + 1.2944983819vw, 2.5rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .p-recruit__working-outer-box .p-recruit__working-box .p-recruit__working-box--item {
    padding-top: clamp(1.25rem, 1.1741504854rem + 0.3236245955vw, 1.5625rem);
    background: none;
  }
}
.p-recruit__working-outer-box .p-recruit__working-box .p-recruit__working-box--item .p-recruit__working-box--bottom {
  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;
  gap: clamp(0.625rem, 0.5188106796rem + 0.4530744337vw, 1.0625rem);
  padding: clamp(1.25rem, 1.1741504854rem + 0.3236245955vw, 1.5625rem) clamp(1.25rem, 1.2044902913rem + 0.1941747573vw, 1.4375rem);
  height: 100%;
  -webkit-box-shadow: 0 0.25rem 0.25rem 0 rgba(0, 0, 0, 0.09);
          box-shadow: 0 0.25rem 0.25rem 0 rgba(0, 0, 0, 0.09);
  background: #FFF;
}
.p-recruit__working-outer-box .p-recruit__working-box .p-recruit__working-box--item .p-recruit__working-box--bottom .p-recruit__working-box--bottom-text {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.92em;
  /* 192.857% */
  letter-spacing: 0.04em;
}

.p-recruit__interview {
  margin-top: clamp(3.75rem, 2.2330097087rem + 6.4724919094vw, 10rem);
  margin-bottom: clamp(3.75rem, 2.2330097087rem + 6.4724919094vw, 10rem);
}

.p-recruit__interview--box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.875rem, 1.4199029126rem + 1.9417475728vw, 3.75rem);
  margin-bottom: 1rem;
}
@media screen and (max-width: 600px) {
  .p-recruit__interview--box {
    margin-top: 1.875rem;
    grid-template-columns: 1fr;
  }
}
.p-recruit__interview--box .p-recruit__interview--item-left {
  margin-top: clamp(1.875rem, 1.2985436893rem + 2.4595469256vw, 4.25rem);
}
@media screen and (max-width: 600px) {
  .p-recruit__interview--box .p-recruit__interview--item-left {
    margin-top: 0;
  }
}
.p-recruit__interview--box .p-recruit__interview--img img {
  width: 100%;
}
.p-recruit__interview--box .p-recruit__interview--under-box {
  margin-top: clamp(1.25rem, 1.1893203883rem + 0.2588996764vw, 1.5rem);
  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;
}
.p-recruit__interview--box .p-recruit__interview--under-box .p-recruit__interview--date {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.05em;
}
.p-recruit__interview--box .p-recruit__interview--under-box .p-recruit__interview--name {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.05em;
}

.p-recruit__faq--text {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.92em;
  /* 192.857% */
  letter-spacing: 0.04em;
  margin-top: clamp(1.875rem, 1.4805825243rem + 1.6828478964vw, 3.5rem);
  margin-bottom: clamp(1.5rem, 1.3786407767rem + 0.5177993528vw, 2rem);
}

.p-work-enviroment__top-box {
  max-width: 55.5rem;
  margin: 0 auto;
  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(1.875rem, 1.2378640777rem + 2.7184466019vw, 4.5rem);
}
@media screen and (max-width: 991px) {
  .p-work-enviroment__top-box {
    max-width: 90%;
  }
}
.p-work-enviroment__top-box .p-work-enviroment__top-text {
  color: #000;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.92em;
  /* 192.857% */
  letter-spacing: 0.05em;
}
@media screen and (max-width: 600px) {
  .p-work-enviroment__top-box .p-work-enviroment__top-text br {
    display: none;
  }
}
.p-work-enviroment__top-box .p-work-enviroment__top-text .sp-only {
  display: none;
}
.p-work-enviroment__top-box .p-work-enviroment__top-under-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.625rem, -0.1941747573rem + 3.4951456311vw, 4rem);
}

.p-work-enviroment__under-number {
  color: #000;
  font-family: "Open Sans Hebrew";
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  /* 437.5% */
  letter-spacing: 0.05em;
  border-bottom: 0.125rem solid #000;
  display: inline-block;
  padding-bottom: clamp(0.375rem, 0.2991504854rem + 0.3236245955vw, 0.6875rem);
  margin-bottom: clamp(0.75rem, 0.567961165rem + 0.7766990291vw, 1.5rem);
}

.p-work-enviroment__under-text {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.p-work-enviroment__under-title {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(1.25rem, 1.1893203883rem + 0.2588996764vw, 1.5rem);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.05em;
}

.p-work-enviroment__contents-top-title--box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.5rem, 0.4696601942rem + 0.1294498382vw, 0.625rem);
  margin-top: clamp(1.875rem, 1.359223301rem + 2.2006472492vw, 4rem);
  margin-bottom: clamp(1.875rem, 1.8446601942rem + 0.1294498382vw, 2rem);
}

.p-work-enviroment__contents-top-title {
  color: #83D746;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.05em;
}

.p-work-enviroment__benefits-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media screen and (max-width: 600px) {
  .p-work-enviroment__benefits-box {
    grid-template-columns: 1fr;
  }
}

.p-work-enviroment__benefits-item {
  border: 0.1875rem solid #83D746;
  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;
  padding: clamp(1.25rem, 0.9617718447rem + 1.2297734628vw, 2.4375rem) clamp(1.25rem, 0.9314320388rem + 1.359223301vw, 2.5625rem) clamp(1.25rem, 0.9769417476rem + 1.1650485437vw, 2.375rem);
}
.p-work-enviroment__benefits-item--title {
  color: #000;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.05em;
  margin-top: 0.9375rem;
}
.p-work-enviroment__benefits-item--text {
  color: #000;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.92em;
  /* 192.857% */
  letter-spacing: 0.05em;
  margin-top: 0.6875rem;
}
@media screen and (max-width: 600px) {
  .p-work-enviroment__benefits-item picture {
    width: 6.25rem;
  }
}

.p-work-enviroment__work-enviroment {
  margin-top: clamp(3.75rem, 2.2330097087rem + 6.4724919094vw, 10rem);
}

.p-work-enviroment__work-enviroment--box {
  padding-top: clamp(1.25rem, 1.2196601942rem + 0.1294498382vw, 1.375rem);
  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(2.625rem, 2.3216019417rem + 1.2944983819vw, 3.875rem);
}
.p-work-enviroment__work-enviroment--box .p-work-enviroment__work-enviroment--item {
  border: 0.0625rem solid #000;
  padding: clamp(1.25rem, 1.067961165rem + 0.7766990291vw, 2rem) clamp(1.25rem, 0.9466019417rem + 1.2944983819vw, 2.5rem);
  position: relative;
}
.p-work-enviroment__work-enviroment--box .p-work-enviroment__work-enviroment--item .p-work-enviroment__work-enviroment--item-title {
  position: absolute;
  top: -1.375rem;
  background: #000;
  padding: clamp(0.25rem, 0.2348300971rem + 0.0647249191vw, 0.3125rem) clamp(0.625rem, 0.5643203883rem + 0.2588996764vw, 0.875rem);
  border-right: 0.5625rem solid #83D746;
  display: inline-block;
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: clamp(1.25rem, 1.1893203883rem + 0.2588996764vw, 1.5rem);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 600px) {
  .p-work-enviroment__work-enviroment--box .p-work-enviroment__work-enviroment--item .p-work-enviroment__work-enviroment--item-title {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    white-space: nowrap;
  }
}
.p-work-enviroment__work-enviroment--box .p-work-enviroment__work-enviroment--item .p-work-enviroment__work-enviroment--item-text {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(0.75rem, 0.6893203883rem + 0.2588996764vw, 1rem);
  font-style: normal;
  font-weight: 500;
  line-height: 2em;
  /* 200% */
  letter-spacing: 0.05em;
  padding-top: clamp(0.3125rem, 0.2366504854rem + 0.3236245955vw, 0.625rem);
}

.p-work-enviroment__training {
  margin-top: clamp(3.75rem, 2.885315534rem + 3.6893203883vw, 7.3125rem);
  margin-bottom: clamp(0rem, -1.213592233rem + 5.1779935275vw, 5rem);
}
.p-work-enviroment__training--text {
  margin-top: clamp(1.875rem, 1.4502427184rem + 1.8122977346vw, 3.625rem);
  margin-bottom: clamp(1.875rem, 1.2682038835rem + 2.5889967638vw, 4.375rem);
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.92em;
  /* 192.857% */
  letter-spacing: 0.05em;
}

.p-work-enviroment__training--box {
  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(1.25rem, 1.067961165rem + 0.7766990291vw, 2rem);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.p-work-enviroment__training--box .p-work-enviroment__training-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: clamp(1.25rem, 1.083131068rem + 0.71197411vw, 1.9375rem);
  gap: clamp(1.25rem, 1.1286407767rem + 0.5177993528vw, 1.75rem);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 39.1875rem;
}
@media screen and (max-width: 768px) {
  .p-work-enviroment__training--box .p-work-enviroment__training-item {
    max-width: 100%;
  }
}
.p-work-enviroment__training--box .p-work-enviroment__training-item:first-child {
  background-color: #E8FBDA;
}
.p-work-enviroment__training--box .p-work-enviroment__training-item:nth-child(2) {
  background-color: #D4F3BD;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-work-enviroment__training--box .p-work-enviroment__training-item:nth-child(2) {
    margin: 0;
  }
}
.p-work-enviroment__training--box .p-work-enviroment__training-item:last-child {
  background-color: #C6F0A8;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .p-work-enviroment__training--box .p-work-enviroment__training-item:last-child {
    margin: 0;
  }
}
.p-work-enviroment__training--box .p-work-enviroment__training-item--number {
  color: #FFF;
  font-family: "Open Sans Hebrew";
  font-size: clamp(1.25rem, 1.1893203883rem + 0.2588996764vw, 1.5rem);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.05em;
  background-color: #000;
  padding: clamp(0.9375rem, 0.8768203883rem + 0.2588996764vw, 1.1875rem) clamp(0.625rem, 0.5643203883rem + 0.2588996764vw, 0.875rem);
  white-space: nowrap;
}
.p-work-enviroment__training--box .p-work-enviroment__training-item--right-box {
  padding: clamp(1.25rem, 1.1893203883rem + 0.2588996764vw, 1.5rem) 0;
  padding-right: clamp(1.25rem, 1.083131068rem + 0.71197411vw, 1.9375rem);
}
.p-work-enviroment__training--box .p-work-enviroment__training-item--right-box .p-work-enviroment__training-item--title {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(1.25rem, 1.1893203883rem + 0.2588996764vw, 1.5rem);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.05em;
  margin-bottom: clamp(0.625rem, 0.5946601942rem + 0.1294498382vw, 0.75rem);
}
.p-work-enviroment__training--box .p-work-enviroment__training-item--right-box .p-work-enviroment__training-item--text {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.92em;
  /* 192.857% */
  letter-spacing: 0.05em;
}

.p-interview {
  margin-bottom: clamp(3.75rem, 2.2330097087rem + 6.4724919094vw, 10rem);
}
.p-interview:nth-child(2) {
  position: relative;
  padding-top: clamp(3.75rem, 2.2330097087rem + 6.4724919094vw, 10rem);
}
.p-interview:nth-child(2) .p-interview__top-box {
  margin: 0;
}
.p-interview:nth-child(2)::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(100% + 75rem);
  height: 0.0625rem;
  background-color: #000;
}

.p-interview__top-box {
  margin-top: clamp(1.875rem, 1.1165048544rem + 3.2362459547vw, 5rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1.25rem, 0.0819174757rem + 4.9838187702vw, 6.0625rem);
}
@media screen and (max-width: 768px) {
  .p-interview__top-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-interview__top-box .p-interview__top-box--img img {
  max-width: clamp(12.5rem, 7.645631068rem + 20.71197411vw, 32.5rem);
}
@media screen and (max-width: 768px) {
  .p-interview__top-box .p-interview__top-box--img img {
    max-width: 100%;
    width: 100%;
  }
}
.p-interview__top-box .p-interview__top-box--right .p-interview__top-box--right--title--box {
  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: flex-start;
  gap: 0.5rem;
}
.p-interview__top-box .p-interview__top-box--right .p-interview__top-box--right--title--box .p-interview__top-box--right--title {
  color: #FFF;
  font-family: "Open Sans Hebrew";
  font-size: clamp(1.25rem, 1.067961165rem + 0.7766990291vw, 2rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.75em;
  /* 175% */
  letter-spacing: 0.05em;
  display: inline-block;
  background-color: #000;
  padding: 0 clamp(0.4375rem, 0.3919902913rem + 0.1941747573vw, 0.625rem) 0 clamp(0.3125rem, 0.2821601942rem + 0.1294498382vw, 0.4375rem);
  white-space: nowrap;
}
.p-interview__top-box .p-interview__top-box--right .p-interview__top-box--right--profile {
  margin-top: clamp(1.25rem, 1.1893203883rem + 0.2588996764vw, 1.5rem);
  margin-bottom: clamp(1.25rem, 0.7038834951rem + 2.3300970874vw, 3.5rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1.25rem, 1.1893203883rem + 0.2588996764vw, 1.5rem);
}
.p-interview__top-box .p-interview__top-box--right .p-interview__top-box--right--profile--text {
  color: #000;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.p-interview__top-box .p-interview__top-box--right--text {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  font-style: normal;
  font-weight: 400;
  line-height: 2.42em;
  /* 242.857% */
  letter-spacing: 0.04em;
}

.p-interview__box {
  margin-top: clamp(2.5rem, 1.286407767rem + 5.1779935275vw, 7.5rem);
  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(3.75rem, 3.1432038835rem + 2.5889967638vw, 6.25rem);
}
.p-interview__box.top-position {
  position: relative;
  gap: clamp(1.875rem, 1.3440533981rem + 2.2653721683vw, 4.0625rem);
}
.p-interview__box.top-position::after {
  position: absolute;
  content: "";
  top: calc(0% - clamp(3.75rem, 2.536407767rem + 5.1779935275vw, 8.75rem));
  left: calc(100% - clamp(22.5rem, 16.1134708738rem + 27.2491909385vw, 48.8125rem));
  width: clamp(25rem, 13.7287621359rem + 48.0906148867vw, 71.4375rem);
  height: 52.625rem;
  background-image: url(../img/interview/comp/interview-bg01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
.p-interview__box.bottom-position {
  position: relative;
  gap: clamp(1.875rem, 1.3440533981rem + 2.2653721683vw, 4.0625rem);
}
.p-interview__box.bottom-position::after {
  position: absolute;
  content: "";
  top: calc(0% - clamp(3.75rem, 1.322815534rem + 10.355987055vw, 13.75rem));
  right: calc(100% - clamp(22.5rem, 19.5873786408rem + 12.427184466vw, 34.5rem));
  width: clamp(25rem, 17.2785194175rem + 32.9449838188vw, 56.8125rem);
  height: 52.75rem;
  background-image: url(../img/interview/comp/interview-bg02.svg);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
.p-interview__box .p-interview__box--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1.25rem, 0.1122572816rem + 4.854368932vw, 5.9375rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .p-interview__box .p-interview__box--item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media screen and (max-width: 768px) {
  .p-interview__box .p-interview__box--item:nth-child(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-interview__box .p-interview__box--item .p-interview__box--item--left {
  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(1.25rem, 0.9466019417rem + 1.2944983819vw, 2.5rem);
}
.p-interview__box .p-interview__box--item .p-interview__box--item--left .p-interview__box--item--title-box .p-interview__box--item--title-box--title {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  /* 200% */
  letter-spacing: 0.05em;
}
.p-interview__box .p-interview__box--item .p-interview__box--item--left .p-interview__box--item--text {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  font-style: normal;
  font-weight: 400;
  line-height: 2.42em;
  /* 242.857% */
  letter-spacing: 0.04em;
}
.p-interview__box .p-interview__box--item .p-interview__box--item--img img {
  max-width: clamp(12.5rem, 7.645631068rem + 20.71197411vw, 32.5rem);
}
@media screen and (max-width: 768px) {
  .p-interview__box .p-interview__box--item .p-interview__box--item--img img {
    max-width: 100%;
    width: 100%;
  }
}

.c-choose-information__recruit {
  margin-top: clamp(1.875rem, 0.5097087379rem + 5.8252427184vw, 7.5rem);
  margin-bottom: clamp(3.75rem, 2.2330097087rem + 6.4724919094vw, 10rem);
}

.c-choose-information__recruit-box {
  margin-top: clamp(1.875rem, 1.4805825243rem + 1.6828478964vw, 3.5rem);
}
.c-choose-information__recruit-box tbody th {
  text-align: center;
  padding: 0;
  vertical-align: middle;
  width: clamp(6.25rem, 4.7330097087rem + 6.4724919094vw, 12.5rem);
  height: clamp(1.875rem, 1.5109223301rem + 1.5533980583vw, 3.375rem);
  position: relative;
  padding-bottom: clamp(1.25rem, 1.1893203883rem + 0.2588996764vw, 1.5rem);
  padding-top: clamp(1.25rem, 1.1893203883rem + 0.2588996764vw, 1.5rem);
  color: #000;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: clamp(0.75rem, 0.6893203883rem + 0.2588996764vw, 1rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.87em;
  /* 187.5% */
  letter-spacing: 0.05em;
}
.c-choose-information__recruit-box tbody th::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  height: 0.0625rem;
  width: 100%;
  background: #BBB;
}
.c-choose-information__recruit-box tbody td {
  text-align: left;
  padding: 0;
  padding-left: clamp(1.25rem, 0.4156553398rem + 3.5598705502vw, 4.6875rem);
  vertical-align: middle;
  position: relative;
  color: #000;
  font-family: "Noto Sans JP";
  font-size: clamp(0.75rem, 0.6893203883rem + 0.2588996764vw, 1rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.87em;
  /* 187.5% */
  letter-spacing: 0.05em;
  padding-top: clamp(1.25rem, 1.1893203883rem + 0.2588996764vw, 1.5rem);
  padding-bottom: clamp(1.25rem, 1.1893203883rem + 0.2588996764vw, 1.5rem);
  padding-right: clamp(1.25rem, -0.8737864078rem + 9.0614886731vw, 10rem);
}
@media screen and (max-width: 600px) {
  .c-choose-information__recruit-box tbody td br {
    display: none;
  }
}
.c-choose-information__recruit-box tbody td .sp-only {
  display: none;
}
@media screen and (max-width: 600px) {
  .c-choose-information__recruit-box tbody td .sp-only {
    display: inline;
  }
}
.c-choose-information__recruit-box tbody td::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  height: 0.0625rem;
  width: 100%;
  background: #BBB;
}

.p-404 {
  width: 68.75rem;
  max-width: 90%;
  margin: 0 auto;
  margin-bottom: clamp(6.25rem, 5.036407767rem + 5.1779935275vw, 11.25rem);
}

.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;
}

@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;
}/*# sourceMappingURL=style.css.map */