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

　変数定義

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

/*—————————————————————————————————————————————————————
　カラー設定
—————————————————————————————————————————————————————*/
:root {
  --color-key:	#028840;
  --color-key_l:	#078383;
  --color-key_sub:	#EDF6F1;
  --color-body_bg:	#FFF;
  --color-head_bg:	#000;
  --color-foot_bg:	#F5F5F5;
  --color-foot_bg_l:	#213A4E;
  --color-head_bg_l:	#F5F5F5;
  /* テキスト */
  --color-txt:	#2D2D2D;
  --color-txt_sub:	#333333;
  --color-txt_l:	#6B6B6B;
  /* リンク */
  --color-link:	#028840;
  /* 画像のMIX */
  --color-img_mix:	#91C2EA;
  /* 罫線 */
  --color-border:	#028840;
  --color-border_l:	#C7C7C7;
  /* フォームカラー */
  --color-form-txt:	#2D2D2D;
  --color-form-border:	#e2e2e2;
  --color-form-placeholder:	#848484;
  /* ボタンやアラートなどエレメントカラー */
  --color-default:	#FFFFFF;
  --color-primary:	#028840;
  --color-disable:	#888888;
  /* テーブル */
  --color-table_border:	#028840;
  --color-table_border_tr:	#CBD9D4;
  --color-table_thead_bg:	#EDF6F1;
  --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: "Zen Kaku Gothic New", sans-serif;
  font-synthesis: none;
  font-weight: 500;
  font-style: normal;
  line-height: 2.25;
  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;
}
body.no-scroll {
  overflow: hidden;
}

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

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

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: "Zen Kaku Gothic New";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/ZenKakuGothicNew-Regular.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Zen Kaku Gothic New";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/ZenKakuGothicNew-Medium.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Zen Kaku Gothic New";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/ZenKakuGothicNew-Bold.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Roboto-Regular.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Roboto-Medium.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Roboto-Bold.ttf") format("truetype");
  font-display: swap;
}
h1 {
  font-size: clamp(1.5rem, 1.2572815534rem + 1.0355987055vw, 2.5rem);
  line-height: 1.45;
  letter-spacing: 0.05em;
  font-weight: 700;
}

h2 {
  font-size: clamp(1.375rem, 1.2233009709rem + 0.6472491909vw, 2rem);
  line-height: 1.4375;
  letter-spacing: 0.05em;
  font-weight: 700;
}

h3 {
  font-size: clamp(1.25rem, 1.1893203883rem + 0.2588996764vw, 1.5rem);
  line-height: 1.4583333333;
  letter-spacing: 0.05em;
  font-weight: 700;
}

h4 {
  font-size: clamp(1.125rem, 1.0946601942rem + 0.1294498382vw, 1.25rem);
  line-height: 1.45;
  letter-spacing: 0.05em;
  font-weight: 700;
}

h5 {
  font-size: clamp(1rem, 0.9696601942rem + 0.1294498382vw, 1.125rem);
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
  font-weight: 700;
}

h6 {
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  line-height: 1.25;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.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-contents {
  position: relative;
  margin: clamp(5rem, 3.786407767rem + 5.1779935275vw, 10rem) 0;
}

.l-block {
  margin: 0;
}
.l-block + .l-block {
  margin-top: clamp(3rem, 2.6359223301rem + 1.5533980583vw, 4.5rem);
}
.l-block .c-set__box .c-title {
  margin-top: 0;
  margin-bottom: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
}
.l-block .c-title {
  margin-top: clamp(2rem, 1.3932038835rem + 2.5889967638vw, 4.5rem);
}
.l-block .c-card-set {
  margin-top: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
}

.l-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: clamp(2rem, -1.25rem + 6.7708333333vw, 6.875rem);
}
@media screen and (max-width: 768px) {
  .l-outer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 3rem;
  }
}
.l-outer__side {
  width: 100%;
  max-width: var(--width-side-contents_max);
  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.5rem, 1.1359223301rem + 1.5533980583vw, 3rem);
}
@media screen and (max-width: 768px) {
  .l-outer__side {
    width: 100%;
    max-width: 100%;
  }
}
.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 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.l-outer__side-list li {
  line-height: 1.5;
  letter-spacing: 0.05em;
  border: 1px solid #DBDBDB;
  border-top: none;
  background-color: var(--color_white);
}
.l-outer__side-list li:first-child {
  border-radius: 0.25rem 0.25rem 0 0;
  padding: 0.5625rem 1.0625rem;
  background-color: var(--color-key);
  color: var(--color_white);
  border: none;
}
.l-outer__side-list li:first-child a {
  padding: 0;
}
.c-archive--press .l-outer__side-list li:first-child {
  background-color: var(--color-key_l);
}
.l-outer__side-list li:last-child {
  border-radius: 0 0 0.25rem 0.25rem;
}
.l-outer__side-list li a {
  display: block;
  padding: 0.5625rem 1.0625rem;
}
.l-outer__side-list li a.current {
  background-color: #EDF6F1;
}

.l-outer__main-inner {
  container-type: inline-size;
}
.l-outer__main-inner .l-section:last-child {
  margin-bottom: 0;
}
.l-outer__main-inner .l-section:last-child .l-contents:last-child {
  margin-bottom: 0;
}
.l-outer__main-inner .l-section:first-child {
  margin-top: 0;
}
.l-outer__main-inner .l-section:first-child .l-contents:first-child {
  margin-top: 0;
}
.l-outer__main-inner .l-section:first-child .l-contents:first-child .l-block:first-child div:first-child {
  margin-top: 0;
}

.l-outer__main-nav {
  margin-top: 0 !important;
}
.l-outer__main-nav + .l-section {
  margin-top: clamp(1.5rem, 1.1359223301rem + 1.5533980583vw, 3rem);
}
.l-outer__main-nav + .l-section .l-contents:first-child {
  margin-top: clamp(1.5rem, 1.1359223301rem + 1.5533980583vw, 3rem);
}

.l-section {
  position: relative;
  margin: clamp(5rem, 3.786407767rem + 5.1779935275vw, 10rem) 0;
}
.l-section--lower {
  margin-top: var(--height-header);
  margin-bottom: 0;
}
@media screen and (max-width: 600px) {
  .l-section--lower {
    margin-top: var(--height-header_l);
  }
}
.l-section--m0 {
  margin: 0;
}

.l-section__bg {
  position: absolute;
  top: -6.25rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .l-section__bg {
    height: auto;
  }
}
.l-section__bg img {
  height: 100%;
  width: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}

.l-main--lower {
  margin-top: var(--height-header);
}
@media screen and (max-width: 600px) {
  .l-main--lower {
    margin-top: var(--height-header_l);
  }
}

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

.l-header {
  width: 100%;
  height: var(--height-header);
  position: fixed;
  top: 0;
  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;
  z-index: 20;
  gap: 1rem;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background-color: var(--color_white);
  padding-left: clamp(1rem, 0.6662621359rem + 1.4239482201vw, 2.375rem);
}
@media screen and (max-width: 1280px) {
  .l-header {
    padding-right: clamp(1rem, 0.6662621359rem + 1.4239482201vw, 2.375rem);
  }
}
@media screen and (max-width: 600px) {
  .l-header {
    height: var(--height-header_l);
  }
}

.l-header__logo {
  width: 14rem;
  aspect-ratio: 224/38;
}
@media screen and (max-width: 600px) {
  .l-header__logo {
    width: 9rem;
  }
}
.l-header__logo span {
  display: none;
}

.l-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(0.625rem, -1.125rem + 2.1875vw, 1.5rem);
  height: 100%;
}
@media screen and (max-width: 1280px) {
  .l-header__nav {
    display: none;
  }
}

.l-header__nav-contact {
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  line-height: 1.4444444444;
  letter-spacing: 0.05em;
  font-weight: 500;
  background-color: var(--color-key);
  color: var(--color_white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 1.125rem;
  gap: 0.25rem;
}
.l-header__nav-contact::before {
  content: "";
  width: 1.5625rem;
  height: 1.1875rem;
  background-image: url(../img/icon/icon_mail.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.l-header__nav-sns {
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}

.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(0.625rem, -1.125rem + 2.1875vw, 1.5rem);
  -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%;
}

.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.875rem, 0.625rem + 0.3125vw, 1rem);
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 500;
  cursor: default;
}
.l-header__nav-item-link.is_link {
  cursor: pointer;
}
.l-header__nav-item-link.is_link::after {
  content: none;
}

.l-header__nav-function {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.625rem, -1.125rem + 2.1875vw, 1.5rem);
}

.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_white);
  background-color: transparent;
  color: var(--color_white);
  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: 1280px) {
  .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 .l-header__right-lang {
  margin-top: 1.25rem;
}
@media screen and (max-width: 1280px) {
  .l-header__spRight {
    width: 100%;
  }
}

.l-header__spRight-sns {
  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: 1.5rem;
}

.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: 1280px) {
  .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: var(--color_white);
  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: 1280px) {
  .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: 2.5rem 1rem;
  }
  .l-header__navSp-inner #___gcse_1 {
    padding: 1.625rem 0;
  }
}
@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;
  border-bottom: 1px solid var(--color-head_bg_l);
}

.l-header__navSp-item-link {
  padding: 0.875rem 1.5rem;
  display: block;
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  line-height: 1.5;
  letter-spacing: 0.03em;
  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;
}

@media screen and (max-width: 1280px) {
  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;
  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-foot_bg);
  padding: clamp(3.75rem, 2.8398058252rem + 3.8834951456vw, 7.5rem) 0 0;
}
.l-footer .l-inner {
  position: relative;
}

.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: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .l-footer__top {
    -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-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;
}

.l-footer__logo {
  width: 17.8125rem;
  aspect-ratio: 285/48;
}
.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;
  color: var(--color_white);
}
.l-footer__top-title span {
  margin-left: 0.625rem;
  letter-spacing: 0.6em;
}

.l-footer__top-text {
  margin-top: clamp(1rem, 0.7876213592rem + 0.9061488673vw, 1.875rem);
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.l-footer__top-right {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 1rem clamp(1.5rem, 0.8333333333rem + 1.3888888889vw, 2.5rem);
}
@media screen and (max-width: 1024px) {
  .l-footer__top-right {
    grid-template-columns: repeat(3, auto);
  }
}
@media screen and (max-width: 768px) {
  .l-footer__top-right {
    grid-template-columns: repeat(4, auto);
  }
}
@media screen and (max-width: 600px) {
  .l-footer__top-right {
    grid-template-columns: repeat(2, auto);
  }
}

.l-footer__top-item {
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  line-height: 1.5625;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.l-footer__middle {
  margin-top: clamp(1rem, 0.6966019417rem + 1.2944983819vw, 2.25rem);
  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;
}
@media screen and (max-width: 768px) {
  .l-footer__middle {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.5rem;
  }
}
@media screen and (max-width: 600px) {
  .l-footer__middle {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}

.l-footer__middle-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
}

.l-footer__middle-link {
  width: 10.8125rem;
  height: 2.5rem;
  background-color: var(--color-key);
  color: var(--color_white);
  border-radius: 0.25rem;
  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.25rem;
  font-size: clamp(0.8125rem, 0.7821601942rem + 0.1294498382vw, 0.9375rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
.l-footer__middle-link::before {
  content: "";
  width: 1.25rem;
  height: 0.9375rem;
  background-image: url(../img/icon/icon_mail.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.l-footer__bottom {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--color-foot_bg_l);
  width: 100vw;
  margin: clamp(1.5rem, 1.0145631068rem + 2.071197411vw, 3.5rem) calc(50% - 50vw) 0;
  padding: 1.5625rem 1rem;
}
@media screen and (max-width: 768px) {
  .l-footer__bottom {
    gap: 1.5rem;
  }
}

.l-footer__bottom-copyright {
  font-size: clamp(0.6875rem, 0.6571601942rem + 0.1294498382vw, 0.8125rem);
  line-height: 1.3076923077;
  letter-spacing: 0.056em;
  color: var(--color_white);
  text-align: center;
}
@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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 991px) {
  .l-footer__bottom-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
  }
}

.l-footer__bottom-link {
  font-size: 0.875rem;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
  color: var(--color_white);
  padding: 0 clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  position: relative;
}
.l-footer__bottom-link::before, .l-footer__bottom-link::after {
  content: "";
  height: 1.375rem;
  width: 0.0625rem;
  background-color: var(--color_white);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 991px) {
  .l-footer__bottom-link::before, .l-footer__bottom-link::after {
    content: none;
  }
}
.l-footer__bottom-link::before {
  left: 0;
}
.l-footer__bottom-link::after {
  content: none;
  right: 0;
}
.l-footer__bottom-link:last-child::after {
  content: "";
  right: 0;
}
@media screen and (max-width: 768px) {
  .l-footer__bottom-link:last-child::after {
    content: none;
  }
}

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

.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(1rem, 0.5145631068rem + 2.071197411vw, 3rem);
  width: 100%;
}

.c-accordion__box {
  border-radius: 0.5rem;
  border: 1px solid var(--color-border_l);
  background-color: var(--color_white);
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-accordion__title {
  position: relative;
  display: grid;
  grid-template-columns: 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.8786407767rem + 0.5177993528vw, 1.5rem) 0 clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem) clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
}
@media screen and (max-width: 480px) {
  .c-accordion__title {
    gap: 0.5rem;
  }
}
.c-accordion__title p {
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
}
.c-accordion__title p span {
  color: #E83820;
  margin-left: clamp(1.5rem, 1.1359223301rem + 1.5533980583vw, 3rem);
}

.c-accordion__text {
  display: none;
  line-height: 1.8125;
  padding: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem) clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
}
.c-accordion__text p + p {
  margin-top: 1rem;
}
.c-accordion__text a {
  color: var(--color-key);
}
.c-accordion__text br + br:where(:not(:empty)) {
  display: block;
  content: "";
  margin-bottom: 1em;
  /* ここで改行の高さを調整 */
}

.c-accordion__text-row {
  display: grid;
  grid-template-columns: clamp(6.25rem, 5.2184466019rem + 4.4012944984vw, 10.5rem) auto;
  gap: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
  padding: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem) 0 clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem) clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
}
.c-accordion__text-row:nth-child(2n+1) {
  background-color: #F7F7F7;
}
@media screen and (max-width: 480px) {
  .c-accordion__text-row {
    grid-template-columns: 1fr;
  }
}

.c-accordion__btn {
  display: block;
  position: relative;
  width: 2rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--color-key);
}
.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: var(--color_white);
  -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-anchor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(1rem, 0.5145631068rem + 2.071197411vw, 3rem);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.c-anchor__item {
  font-size: clamp(0.875rem, 0.7839805825rem + 0.3883495146vw, 1.25rem);
  line-height: 1.45;
  font-weight: 700;
  padding-bottom: clamp(0.5rem, 0.4089805825rem + 0.3883495146vw, 0.875rem);
  border-bottom: 1px solid var(--color-foot_bg);
}
.c-anchor__item a {
  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: clamp(0.5rem, 0.0145631068rem + 2.071197411vw, 2.5rem);
}
.c-anchor__item a::after {
  content: "";
  width: clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem);
  height: clamp(0.375rem, 0.2839805825rem + 0.3883495146vw, 0.75rem);
  background-image: url(../img/icon/icon_arrow-down.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.c-annotation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c-annotation--type01 {
  margin-top: clamp(4rem, 3.4538834951rem + 2.3300970874vw, 6.25rem);
  background-color: var(--color-key_sub);
  border-radius: 0.5rem;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1rem, 0.8483009709rem + 0.6472491909vw, 1.625rem);
  padding: clamp(3rem, 2.7572815534rem + 1.0355987055vw, 4rem) clamp(1rem, -0.5169902913rem + 6.4724919094vw, 7.25rem) clamp(1rem, 0.3628640777rem + 2.7184466019vw, 3.625rem);
}
.c-annotation--type01 .c-annotation__box {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 1.1662621359rem + 1.4239482201vw, 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-annotation--type01 .c-annotation__box--grid {
  grid-template-columns: 1fr auto 1fr;
}
@media screen and (max-width: 600px) {
  .c-annotation--type01 .c-annotation__box {
    grid-template-columns: 1fr;
  }
}
.c-annotation--type01 .c-annotation__arrow {
  margin: 0 auto;
  width: 100%;
  min-width: 1.5625rem;
  height: 1.5625rem;
  background-image: url(../img/icon/icon_arrow-right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 600px) {
  .c-annotation--type01 .c-annotation__arrow {
    min-width: unset;
    max-width: 1.5625rem;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
.c-annotation--type01 .c-annotation__item {
  gap: 0.8125rem;
}
.c-annotation--type01 .c-annotation__item .c-annotation__text {
  text-align: center;
  font-size: clamp(0.8125rem, 0.7821601942rem + 0.1294498382vw, 0.9375rem);
  line-height: 1.4;
  font-weight: 500;
}
.c-annotation--type01 .c-annotation__item .c-annotation__img {
  aspect-ratio: 375/222;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.c-annotation--type01 .c-annotation__title {
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  line-height: 1.4583333333;
  font-weight: 700;
  color: var(--color_white);
  background-color: var(--color-key);
  padding: 0.5rem clamp(1rem, 0.6814320388rem + 1.359223301vw, 2.3125rem);
  border-radius: 0.25rem;
  position: absolute;
  top: -6%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 600px) {
  .c-annotation--type01 .c-annotation__title {
    top: -3%;
  }
}
.c-annotation--type01 .c-annotation__text {
  text-align: center;
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  line-height: 1.2777777778;
  font-weight: 500;
}
.c-annotation--type02 {
  margin-top: clamp(2rem, 1.5145631068rem + 2.071197411vw, 4rem);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(1.5rem, 0.6504854369rem + 3.6245954693vw, 5rem);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (max-width: 600px) {
  .c-annotation--type02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.c-annotation--type02 .c-annotation__item {
  gap: 0.625rem;
}
.c-annotation--type02 .c-annotation__title {
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  line-height: 1.45;
  font-weight: 700;
  color: var(--color-key);
}
.c-annotation--type02 .c-annotation__text {
  background-color: var(--color-key_sub);
  border-radius: 0.5rem;
  padding: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem) clamp(1rem, 0.6662621359rem + 1.4239482201vw, 2.375rem);
}
.c-annotation--type02 .c-annotation__img {
  max-width: 29.4375rem;
  width: 43%;
  aspect-ratio: 471/326;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 600px) {
  .c-annotation--type02 .c-annotation__img {
    width: 100%;
    margin: 0 auto;
  }
}

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

.c-annotation__img {
  border-radius: 0.5rem;
}

.c-archive {
  margin: clamp(2rem, 1.5752427184rem + 1.8122977346vw, 3.75rem) 0;
  display: grid;
  grid-template-columns: 13rem auto;
  gap: clamp(1rem, -0.4259708738rem + 6.0841423948vw, 6.875rem);
}
@media screen and (max-width: 768px) {
  .c-archive {
    grid-template-columns: 1fr;
  }
}
.c-archive--press .c-archive__side-list li:first-child {
  background-color: var(--color-key_l);
}
.c-archive--press .c-archive__main-title {
  background: #EEFBFB 0% 0% no-repeat padding-box;
}
.c-archive--wide {
  grid-template-columns: 1fr;
}
.c-archive--wide .c-archive__side {
  display: none;
}

.c-archive__side {
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.c-archive__side-list {
  border-radius: 0.25rem;
  border: 1px solid #DBDBDB;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-archive__side-list li {
  line-height: 1.5;
  letter-spacing: 0.05em;
  border-top: 1px solid #DBDBDB;
}
.c-archive__side-list li:first-child {
  padding: 0.5625rem 1.0625rem;
  background-color: var(--color-key);
  color: var(--color_white);
  border-top: none;
}
.c-archive__side-list li a {
  display: block;
  padding: 0.5625rem 1.0625rem;
}

.c-archive__main {
  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-archive__main-title {
  background: #EDF6F1 0% 0% no-repeat padding-box;
  border-radius: 8px;
  padding: 0.75rem clamp(1rem, 0.8483009709rem + 0.6472491909vw, 1.625rem);
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  line-height: 1.4583333333;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.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: -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.2724514563rem + 0.9708737864vw, 1.4375rem);
}
.c-archive__list--press .c-archive__item time {
  color: var(--color-key_l);
}
.c-archive__list--news .c-archive__item time {
  color: var(--color-key);
}

.c-archive__item {
  padding-bottom: clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem);
  border-bottom: 1px solid #DCDCDC;
  display: grid;
  gap: clamp(0.25rem, 0.1893203883rem + 0.2588996764vw, 0.5rem);
}
.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-upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  min-height: 1.6875rem;
}

.c-archive__item-time {
  font-family: "Roboto";
  line-height: 1.1875;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.c-archive__item-title {
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 500;
  /* white-space: nowrap; */
  /* 横幅のMAXに達しても改行しない */
  /* overflow: hidden; */
  /* 溢れた部分を隠す */
  /* text-overflow: ellipsis; */
  /* 「…」と省略 */
  /* -webkit-text-overflow: ellipsis; */
  /* Safari用 */
  /* -o-text-overflow: ellipsis; */
  /* Opera用 */
}

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

.c-archive__item-category {
  padding: 0.25rem 0.6875rem;
  border: 1px solid var(--color-key);
  border-radius: 0.8125rem;
  color: var(--color-key);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.4166666667;
  letter-spacing: 0.04em;
  font-family: "Zen Kaku Gothic New";
}
.c-archive__item-category--new {
  background-color: var(--color-key);
  color: var(--color_white);
}
.c-archive__list--press .c-archive__item-category--new {
  background-color: var(--color-key_l);
}
.c-archive__list--press .c-archive__item-category {
  border: 1px solid var(--color-key_l);
}

.c-breadcrumb {
  margin: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem) 0 0;
}

.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: 0 clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem);
}

.c-breadcrumb__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem);
  font-weight: 500;
}
.c-breadcrumb__item::after {
  content: "＞";
}
.c-breadcrumb__item:last-child::after {
  content: none;
}
.c-breadcrumb__item a {
  color: var(--color-txt);
}
.c-breadcrumb__item p {
  color: var(--color-key);
}

.c-btn, .c-form__box input[type=submit],
.c-form__box input[type=button] {
  width: 100%;
  min-height: clamp(4rem, 3.7572815534rem + 1.0355987055vw, 5rem);
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New";
  padding: 0.5rem 3rem 0.5rem 1.5rem;
  color: var(--color-key);
  background-color: var(--color_white);
  border: 2px solid var(--color-key);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 2.5rem;
  position: relative;
}
.c-btn::after, .c-form__box input[type=submit]::after,
.c-form__box input[type=button]::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 1.75rem;
  height: 1.75rem;
  background-image: url(../img/icon/icon_btn-circle-key.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.c-btn:hover, .c-form__box input[type=submit]:hover,
.c-form__box input[type=button]:hover {
  opacity: 1;
  color: var(--color_white);
  background-color: var(--color-key);
}
.c-btn:hover::after, .c-form__box input[type=submit]:hover::after,
.c-form__box input[type=button]:hover::after {
  background-image: url(../img/icon/icon_btn-circle.svg);
}
.c-btn--s {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 14.375rem;
  min-height: 3.5rem;
  font-weight: 500;
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  line-height: 1.5;
  letter-spacing: 0.1em;
  border: 1px solid var(--color-key);
}
.c-btn--inversion {
  background-color: var(--color-key);
  color: var(--color_white);
}
.c-btn--inversion::after {
  background-image: url(../img/icon/icon_btn-circle.svg);
}
.c-btn--inversion:hover {
  opacity: 1;
  color: var(--color-key);
  background-color: var(--color_white);
}
.c-btn--inversion:hover::after {
  background-image: url(../img/icon/icon_btn-circle-key.svg);
}
.c-btn--center {
  margin: 0 auto;
}
.c-btn[target=_blank]::after, .c-form__box input[target=_blank][type=submit]::after,
.c-form__box input[target=_blank][type=button]::after {
  width: 1.1875rem;
  height: 1.1875rem;
  background-image: url(../img/icon/icon_btn_window.svg);
}
.c-btn[target=_blank]:hover::after, .c-form__box input[target=_blank][type=submit]:hover::after,
.c-form__box input[target=_blank][type=button]:hover::after {
  background-image: url(../img/icon/icon_btn_window-wh.svg);
}

.c-btn-set {
  margin-top: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
  display: grid;
  gap: 1rem;
}
.c-btn-set__col-2 {
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 0.7724514563rem + 0.9708737864vw, 1.9375rem);
}
@media screen and (max-width: 600px) {
  .c-btn-set__col-2 {
    grid-template-columns: 1fr;
  }
}
.c-btn-set__col-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 0.8634708738rem + 0.5825242718vw, 1.5625rem);
}
@media screen and (max-width: 768px) {
  .c-btn-set__col-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .c-btn-set__col-3 {
    grid-template-columns: 1fr;
  }
}
@container (max-width: 768px) {
  .l-outer__main-inner .c-btn-set__col-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  @media screen and (max-width: 768px) {
    .l-outer__main-inner .c-btn-set__col-3 {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media screen and (max-width: 600px) {
    .l-outer__main-inner .c-btn-set__col-3 {
      grid-template-columns: 1fr;
    }
  }
}
.c-btn-set__col-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .c-btn-set__col-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .c-btn-set__col-4 {
    grid-template-columns: 1fr;
  }
}
.c-btn-set.btn_set01 .c-btn, .c-btn-set.btn_set02 .c-btn, .c-btn-set.btn_set03 .c-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 14.375rem;
}
.c-btn-set.btn_set01 .c-btn {
  margin-right: auto;
}
.c-btn-set.btn_set02 .c-btn {
  margin: 0 auto;
}
.c-btn-set.btn_set03 .c-btn {
  margin-left: auto;
}

.c-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 0.875rem;
  overflow: hidden;
  background-color: var(--color_white);
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1215686275);
          box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1215686275);
}
.c-card:hover {
  opacity: 1;
  background-color: var(--color-key);
}
.c-card:hover .c-card__title {
  color: var(--color_white);
}
.c-card:hover .c-card__title::after {
  background-image: url(../img/icon/icon_btn-circle.svg);
}
.c-card[target=_blank] .c-card__title::after {
  width: 1.1875rem;
  height: 1.1875rem;
  background-image: url(../img/icon/icon_btn_window.svg);
}
.c-card[target=_blank]:hover .c-card__title::after {
  background-image: url(../img/icon/icon_btn_window-wh.svg);
}
.c-card[data-lightbox] .c-card__title::after {
  background-image: url(../img/icon/icon_zoom.svg);
}
.c-card[data-lightbox]:hover .c-card__title::after {
  background-image: url(../img/icon/icon_zoom-wh.svg);
}
.c-card img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  aspect-ratio: 342/209;
}
@container (max-width: 900px) {
  .l-outer__main-inner .c-card .c-card__title {
    min-height: clamp(2rem, 1.5752427184rem + 1.8122977346vw, 3.75rem);
    padding: clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem) clamp(1.5rem, 1.1359223301rem + 1.5533980583vw, 3rem) clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem) clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem);
    font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
    line-height: 1.5;
  }
  .l-outer__main-inner .c-card .c-card__title::after {
    right: clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    width: 1rem;
    height: 1rem;
  }
}

.c-card__img {
  aspect-ratio: 342/209;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.c-card__title {
  min-height: clamp(2rem, 1.1049757282rem + 3.8187702265vw, 5.6875rem);
  padding: clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem) clamp(1.5rem, 1.1359223301rem + 1.5533980583vw, 3rem) clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem) clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem);
  font-size: clamp(0.875rem, 0.7839805825rem + 0.3883495146vw, 1.25rem);
  letter-spacing: 0.05em;
  line-height: 1.45;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-card__title::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: clamp(0.5rem, 0.1662621359rem + 1.4239482201vw, 1.875rem);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: clamp(1rem, 0.5rem + 1.0416666667vw, 1.75rem);
  height: clamp(1rem, 0.5rem + 1.0416666667vw, 1.75rem);
  background-image: url(../img/icon/icon_btn-circle-key.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.c-card-set {
  display: grid;
  gap: clamp(1.5rem, 1.1359223301rem + 1.5533980583vw, 3rem) clamp(1rem, 0.6814320388rem + 1.359223301vw, 2.3125rem);
}
@container (max-width: 900px) {
  .l-outer__main-inner .c-card-set {
    gap: clamp(1.5rem, 1.5rem + 0vw, 1.5rem) 1rem;
  }
}

.c-card-set__col--1 {
  grid-template-columns: 1fr;
}
.c-card-set__col--2 {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 480px) {
  .c-card-set__col--2 {
    grid-template-columns: 1fr;
  }
}
.c-card-set__col--2 .c-card img {
  aspect-ratio: 532/209;
}
@media screen and (max-width: 768px) {
  .c-card-set__col--2 .c-card img {
    aspect-ratio: 342/209;
  }
}
.c-card-set__col--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  .c-card-set__col--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .c-card-set__col--3 {
    grid-template-columns: 1fr;
  }
}
.c-card-set__col--4 {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 991px) {
  .c-card-set__col--4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .c-card-set__col--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .c-card-set__col--4 {
    grid-template-columns: 1fr;
  }
}

.c-clickable-map {
  margin-top: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
}

.c-clickable-map__wrap {
  position: relative;
}
.c-clickable-map__wrap img {
  width: 100%;
  border-radius: 0.5rem;
}

.c-clickable-map__item {
  position: absolute;
}

.c-clickable-map__item-link {
  display: block;
  width: 100%;
  height: 100%;
}

.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;
  max-width: 50rem;
  width: 100%;
  margin: 0 auto;
}
.c-form__box input[type=submit],
.c-form__box input[type=button] {
  padding: 0.6875rem 1.5rem 0.6875rem;
  line-height: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-form__box input[type=button] {
  border: 2px solid var(--color-txt);
  color: var(--color-txt);
}
.c-form__box input[type=button]:hover {
  background-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: grid;
  grid-template-columns: 2fr 3fr;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem);
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-form__wrap {
    grid-template-columns: 1fr;
  }
}
.c-form__wrap--center {
  margin-top: clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-form__wrap--error input,
.c-form__wrap--error textarea,
.c-form__wrap--error select {
  background-color: #fbebeb;
  border: 1px solid #eebbbc;
}
.c-form__wrap--error input[type=radio] + span::before,
.c-form__wrap--error input[type=checkbox] + span::before {
  border: 2px solid #eebbbc;
}
.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.833131068rem + 0.71197411vw, 1.6875rem);
}
.c-form__wrap .wpcf7-list-item-label {
  font-weight: 400;
}

.c-form__error {
  color: #d74141;
  grid-column: 2/3;
}
@media screen and (max-width: 767px) {
  .c-form__error {
    grid-column: unset;
  }
}

.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-color: #F45A45;
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  line-height: 1.25;
  letter-spacing: 0.05em;
  border-radius: 0.25rem;
  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;
  }
}

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

.c-form__text--center {
  text-align: center;
  margin-top: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
}

.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 {
  text-align: center;
  border: 1px solid #eebbbc;
  background-color: #fbebeb;
  border-radius: 0.3125rem;
  color: #d74141;
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-weight: 600;
  line-height: 1.4444444444;
  letter-spacing: 0;
  padding: 0.625rem;
  font-weight: 400;
  margin: 0;
}

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

.c-gallery {
  display: grid;
  margin: clamp(1rem, 0.5145631068rem + 2.071197411vw, 3rem) 0 clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem);
}
.c-gallery a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-gallery img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1215686275);
          box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1215686275);
}

.c-gallery__col--1 {
  grid-template-columns: 1fr;
}
.c-gallery__col--1 .c-gallery__title {
  margin-bottom: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  padding-left: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  border-left: 5px solid var(--color-key);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem);
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  font-size: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  line-height: 1.4583333333;
  font-weight: 700;
}
.c-gallery__col--1 .c-gallery__title span {
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  line-height: 1.4444444444;
  font-weight: 500;
}
.c-gallery__col--1 .c-gallery__caption {
  margin-top: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  line-height: 2;
  font-weight: 500;
}
.c-gallery__col--2 {
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 0.5145631068rem + 2.071197411vw, 3rem) clamp(2rem, 0.9684466019rem + 4.4012944984vw, 6.25rem);
}
@media screen and (max-width: 600px) {
  .c-gallery__col--2 {
    grid-template-columns: 1fr;
  }
}
.c-gallery__col--2 .c-gallery__title {
  margin-bottom: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  padding-left: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  border-left: 5px solid var(--color-key);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem);
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  font-size: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  line-height: 1.4583333333;
  font-weight: 700;
}
.c-gallery__col--2 .c-gallery__title span {
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  line-height: 1.4444444444;
  font-weight: 500;
}
.c-gallery__col--2 .c-gallery__caption {
  margin-top: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.5rem);
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  line-height: 2;
  font-weight: 500;
}
.c-gallery__col--3 {
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 0.5145631068rem + 2.071197411vw, 3rem) clamp(1rem, 0.6814320388rem + 1.359223301vw, 2.3125rem);
}
@media screen and (max-width: 600px) {
  .c-gallery__col--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.c-gallery__col--4 {
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 0.5145631068rem + 2.071197411vw, 3rem) clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
}
@media screen and (max-width: 600px) {
  .c-gallery__col--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.c-gallery__number {
  margin-bottom: 0.6875rem;
  font-size: clamp(0.875rem, 0.7233009709rem + 0.6472491909vw, 1.5rem);
  line-height: 1.1666666667;
  font-weight: 700;
  color: var(--color-key);
  font-family: "Roboto";
}

.c-gallery__title {
  margin-top: 1rem;
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  line-height: 1.3333333333;
  font-weight: 700;
}

.c-gallery__caption {
  margin-top: 1rem;
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  line-height: 1.7142857143;
  font-weight: 700;
}

.c-set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1rem, -0.1377427184rem + 4.854368932vw, 5.6875rem);
  max-width: var(--width-contents_max_m);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-top: clamp(1.5rem, 1.3786407767rem + 0.5177993528vw, 2rem);
}
.c-set .c-clickable-map {
  width: 50%;
  max-width: 33.125rem;
  margin-top: clamp(1rem, 0.2263349515rem + 3.3009708738vw, 4.1875rem) !important;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1215686275);
          box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1215686275);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
@media screen and (max-width: 600px) {
  .c-set .c-clickable-map {
    width: 100%;
    margin: 0 auto !important;
  }
}
.c-set .c-clickable-map--m0 {
  margin-top: 0;
}
.c-set--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-left: auto;
}
.c-set--center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 0;
}
@media screen and (max-width: 600px) {
  .c-set--center {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
}
.c-set--center .c-set__img,
.c-set--center .c-set__youtube,
.c-set--center .c-clickable-map {
  margin-top: 0 !important;
  width: 100%;
  max-width: 100%;
}
.c-set--center .c-set__box-body {
  margin-bottom: clamp(1.5rem, 1.3786407767rem + 0.5177993528vw, 2rem);
}
.c-set--center .c-btn {
  margin-top: 0 !important;
  margin-bottom: clamp(1.5rem, 1.3786407767rem + 0.5177993528vw, 2rem);
}
@media screen and (max-width: 600px) {
  .c-set {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.c-set__img {
  width: 50%;
  max-width: 33.125rem;
  margin-top: clamp(1rem, 0.2263349515rem + 3.3009708738vw, 4.1875rem) !important;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1215686275);
          box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1215686275);
}
@media screen and (max-width: 600px) {
  .c-set__img {
    width: 100%;
    margin: 0 auto !important;
  }
}
.c-set__img--m0 {
  margin-top: 0 !important;
}

.c-set__youtube {
  border-radius: 0.5rem;
  overflow: hidden;
  margin-top: clamp(1rem, 0.2263349515rem + 3.3009708738vw, 4.1875rem) !important;
  width: 100%;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 600px) {
  .c-set__youtube {
    width: 100%;
    margin: 0 auto !important;
  }
}
.c-set__youtube iframe {
  width: 100%;
  height: 100%;
}

.c-set__box {
  width: 100%;
}
.c-set__box .c-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 14.375rem;
  min-height: 3.5rem;
  font-weight: 500;
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  line-height: 1.5;
  letter-spacing: 0.1em;
  border: 1px solid var(--color-key);
  background-color: var(--color-key);
  color: var(--color_white);
}
.c-set__box .c-btn:first-child {
  margin-top: clamp(1.5rem, 1.2572815534rem + 1.0355987055vw, 2.5rem);
}
.c-set__box .c-btn::after {
  background-image: url(../img/icon/icon_btn-circle.svg);
}
.c-set__box .c-btn:hover {
  opacity: 1;
  color: var(--color-key);
  background-color: var(--color_white);
}
.c-set__box .c-btn:hover::after {
  background-image: url(../img/icon/icon_btn-circle-key.svg);
}
.c-set__box .c-btn[target=_blank]::after {
  width: 1.1875rem;
  height: 1.1875rem;
  background-image: url(../img/icon/icon_btn_window-wh.svg);
}
.c-set__box .c-btn[target=_blank]:hover::after {
  background-image: url(../img/icon/icon_btn_window.svg);
}
@media screen and (max-width: 480px) {
  .c-set__box .c-btn {
    margin-left: auto;
    margin-right: auto;
  }
}

.c-set__box-body {
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  line-height: 2;
  letter-spacing: 0.05em;
}
.c-set__box-body--center {
  text-align: center;
}
.c-set__box-body br + br:where(:not(:empty)) {
  display: block;
  content: "";
  margin-bottom: 1em;
  /* ここで改行の高さを調整 */
}
.c-set__box-body a {
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  font-weight: 500;
  line-height: 1.4285714286;
  letter-spacing: 0;
  color: #404DFF;
}
.c-set__box-body a::after {
  content: "";
  display: inline-block;
  width: 0.875rem;
  height: 0.875rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-bottom: -0.125rem;
  margin-left: 0.5rem;
}
.c-set__box-body a[target=_blank]::after {
  background-image: url(../img/icon/icon_btn_window.svg);
}
.c-set__box-body a[href$=".pdf"]::after {
  background-image: url(../img/icon/icon_pdf.svg);
}
.c-set__box-body a[href$=".xls"]::after {
  background-image: url(../img/icon/icon_excel.svg);
}
.c-set__box-body a[href$=".docx"]::after, .c-set__box-body a[href$=".doc"]::after {
  background-image: url(../img/icon/icon_word.svg);
}
.c-set__box-body:has(> .c-set__box-body-wisiwyg) + .c-title {
  margin-top: 0.5rem;
}
.c-set__box-body:has(> .c-set__box-body-wisiwyg) + .c-card-set {
  margin-top: 0.5rem;
}

.c-set__box-body-wisiwyg br + br:where(:not(:empty)) {
  display: block;
  content: "";
  margin-bottom: 1em;
  /* ここで改行の高さを調整 */
}
.c-set__box-body-wisiwyg a {
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  line-height: 2;
  letter-spacing: 0.05em;
  font-weight: 500;
  text-decoration: underline;
}
.c-set__box-body-wisiwyg ul {
  list-style: inherit;
  padding-left: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
}
.c-set__box-body-wisiwyg ol {
  list-style: decimal;
  padding-left: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
}
.c-set__box-body-wisiwyg blockquote {
  background-color: #ededed;
  margin: 10px auto;
  padding: 15px;
  border-radius: 5px;
}

.c-set--type02 .c-set__box-list {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: clamp(1rem, 0.5145631068rem + 2.071197411vw, 3rem) clamp(1rem, -0.4259708738rem + 6.0841423948vw, 6.875rem);
}
@media screen and (max-width: 600px) {
  .c-set--type02 .c-set__box-list {
    grid-template-columns: 1fr;
  }
}
.c-set--type02 .c-set__box-item {
  border-left: 3px solid var(--color-key);
  padding-left: clamp(1rem, 0.8786407767rem + 0.5177993528vw, 1.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(0.25rem, 0.1589805825rem + 0.3883495146vw, 0.625rem);
}
.c-set--type02 .c-set__box-item-title {
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  line-height: 1.45;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.c-set--type02 .c-set__box-item-text {
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  line-height: 1.4444444444;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.c-set--type03 {
  gap: clamp(1rem, -0.5776699029rem + 6.7313915858vw, 7.5rem);
}
.c-set--type03 .c-set__img-wrap {
  width: 50%;
  max-width: 33.125rem;
}
@media screen and (max-width: 600px) {
  .c-set--type03 .c-set__img-wrap {
    width: 100%;
    margin: 0 auto !important;
  }
}
.c-set--type03 .c-set__img-wrap .c-set__img {
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
  margin: 0 auto !important;
}
@media screen and (max-width: 600px) {
  .c-set--type03 .c-set__img-wrap .c-set__img {
    width: auto;
    max-width: 100%;
  }
}
.c-set--type03 .c-set__box-list {
  display: grid;
  gap: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
}
.c-set--type03 .c-set__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: 1rem;
}
.c-set--type03 .c-set__box-item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.625rem;
  font-size: clamp(1rem, 0.9696601942rem + 0.1294498382vw, 1.125rem);
  line-height: 1.7777777778;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.c-set--type03 .c-set__box-item-title::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--color-key);
}
.c-set--type03 .c-set__box-item-text {
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  line-height: 1.625;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.c-set--type03 .c-set__box-item-text a {
  text-decoration: underline;
  color: #3D50FF;
}

.c-set--type04 {
  gap: clamp(1rem, -0.5776699029rem + 6.7313915858vw, 7.5rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-set--type04 + .c-set--type04 {
  margin-top: clamp(2rem, 1.3932038835rem + 2.5889967638vw, 4.5rem);
}
.c-set--type04 .c-set__box-title {
  margin-bottom: clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem);
  font-size: clamp(1rem, 0.9089805825rem + 0.3883495146vw, 1.375rem);
  line-height: 1.4545454545;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .c-set--type04 .c-set__box-title {
    margin-bottom: 0;
  }
}
.c-set--type04 .c-set__box-title:empty {
  display: none;
}
.c-set--type04 .c-set__box-item {
  display: grid;
  grid-template-columns: 6.25rem auto;
  gap: 1.25rem;
  padding: 1rem 0;
  position: relative;
}
.c-set--type04 .c-set__box-item::before {
  content: "";
  width: 100%;
  height: 0.0625rem;
  background-color: var(--color-foot_bg);
  position: absolute;
  bottom: 0;
  mix-blend-mode: multiply;
}
.c-set--type04 .c-set__box-item::after {
  content: "";
  width: 5rem;
  height: 0.0625rem;
  background-color: var(--color-key);
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .c-set--type04 .c-set__box-item {
    grid-template-columns: 1fr;
    gap: 0.625rem;
  }
}
.c-set--type04 .c-set__box-item-title {
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  line-height: 1.5625;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.c-set--type04 .c-set__box-item-text {
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  line-height: 1.625;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.c-set--type04 .c-set__box-item-text a {
  text-decoration: underline;
  color: #3D50FF;
}

.c-hamburger {
  display: none;
  position: relative;
  z-index: 9999;
}
@media screen and (max-width: 1280px) {
  .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);
}
.c-hamburger.is_active span:nth-child(2)::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.c-hamburger.is_active span:last-child {
  opacity: 0;
}

.c-title {
  margin-bottom: clamp(1.5rem, 1.3786407767rem + 0.5177993528vw, 2rem);
  z-index: 1;
}
.c-title h2,
.c-title h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: clamp(0rem, -0.0910194175rem + 0.3883495146vw, 0.375rem);
}
.c-title h2::after,
.c-title h3::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.3571428571;
  letter-spacing: 0.056em;
  font-weight: 600;
}
.c-title h2[data-title=""]::after, .c-title h2:not([data-title])::after,
.c-title h3[data-title=""]::after,
.c-title h3:not([data-title])::after {
  content: none;
}
.c-title--white h2,
.c-title--white h3 {
  color: var(--color_white);
}
.c-title--white h2::after,
.c-title--white h3::after {
  color: var(--color_white);
}
.c-title--center h2,
.c-title--center h3 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-title--first h2 span::first-letter,
.c-title--first h3 span::first-letter {
  color: var(--color-key);
}
.c-title--border-l {
  background-color: var(--color-foot_bg);
  padding: 0.25rem clamp(1.25rem, 1.1438106796rem + 0.4530744337vw, 1.6875rem);
  position: relative;
  mix-blend-mode: multiply;
}
.c-title--border-l::before {
  content: "";
  width: 0.375rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-key);
}
.c-title--border-b {
  padding-bottom: clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem);
  position: relative;
  mix-blend-mode: multiply;
}
.c-title--border-b::before {
  content: "";
  width: 100%;
  height: 0.0625rem;
  background-color: var(--color-foot_bg);
  position: absolute;
  bottom: 0;
  display: block;
}
.c-title--border-b::after {
  content: "";
  width: 5rem;
  height: 0.0625rem;
  background-color: var(--color-key);
  position: absolute;
  bottom: 0;
  display: block;
}

/* モーダル */
.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 {
  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-page-head {
  height: 16.875rem;
  background-color: var(--color-foot_bg_l);
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-page-head {
    height: 100%;
    min-height: clamp(10.625rem, 4.661259542rem + 25.4452926209vw, 16.875rem);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.c-page-head img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-page-head__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  margin: 0 auto;
  width: 90%;
  max-width: var(--width-contents_max_m);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 600px) {
  .c-page-head__inner {
    width: 100%;
    padding: 1rem;
  }
}
.c-page-head__inner h1 {
  font-size: clamp(1.5rem, 1.2876213592rem + 0.9061488673vw, 2.375rem);
  color: var(--color_white);
}

.c-pagination {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: clamp(2.5rem, 1.7111650485rem + 3.3656957929vw, 5.75rem) 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: clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem);
}
.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);
}
.c-pagination__list li {
  color: var(--color-key);
  font-size: clamp(0.875rem, 0.7536407767rem + 0.5177993528vw, 1.375rem);
  line-height: 1.2272727273;
  font-weight: 500;
  font-family: "Roboto";
}
.c-pagination__list li.is_current {
  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.8483009709rem + 0.6472491909vw, 2.625rem);
  aspect-ratio: 1/1;
  color: var(--color_white);
  background-color: var(--color-key);
  border-radius: 50%;
}

.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 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-single h2 {
  font-size: clamp(1.375rem, 1.1626213592rem + 0.9061488673vw, 2.25rem);
}

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

.c-single__date {
  font-family: "Roboto";
  line-height: 1.1875;
  letter-spacing: 0.04em;
  font-weight: 500;
  color: var(--color-key);
}
.c-archive--press .c-single__date {
  color: var(--color-key_l);
}

.c-single__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.c-single__category li {
  padding: 0.25rem 0.6875rem;
  border: 1px solid var(--color-key);
  border-radius: 0.8125rem;
  color: var(--color-key);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.4166666667;
  letter-spacing: 0.04em;
  font-family: "Zen Kaku Gothic New";
}
.c-archive--press .c-single__category li {
  border: 1px solid var(--color-key_l);
  color: var(--color-key_l);
}

.c-table__wrap {
  margin-top: clamp(1.5rem, 1.3786407767rem + 0.5177993528vw, 2rem);
}
.c-table__wrap ul {
  list-style: inherit;
  padding-left: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
}
.c-table__wrap ol {
  list-style: decimal;
  padding-left: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
}
.c-table__wrap table {
  table-layout: auto;
}
.c-table__wrap table tr th,
.c-table__wrap table tr td {
  padding: 0.5rem clamp(0.75rem, 0.567961165rem + 0.7766990291vw, 1.5rem);
  vertical-align: middle;
  border: 1px solid var(--color-table_border_tr);
  line-height: normal;
}
.c-table__wrap table tr th {
  border: 1px solid var(--color-key);
  background-color: var(--color-table_thead_bg);
  color: var(--color-txt);
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-table__wrap table tr th {
    text-align: left;
  }
}
.c-table__wrap table tr td {
  padding: clamp(0.5rem, 0.3786407767rem + 0.5177993528vw, 1rem) clamp(0.75rem, 0.567961165rem + 0.7766990291vw, 1.5rem);
  background-color: var(--color_white);
}
.c-table__wrap table tr td.nowrap {
  white-space: nowrap;
}
.c-table__wrap table tr td a::after {
  content: "";
  display: inline-block;
  width: clamp(0.75rem, 0.6438106796rem + 0.4530744337vw, 1.1875rem);
  height: clamp(0.75rem, 0.6438106796rem + 0.4530744337vw, 1.1875rem);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-bottom: calc(-1 * clamp(0.0625rem, 0.0473300971rem + 0.0647249191vw, 0.125rem));
  margin-left: 0.25rem;
}
.c-table__wrap table tr td a[target=_blank]::after {
  background-image: url(../img/icon/icon_btn_window.svg);
}
.c-table__wrap table tr td a[href$=".pdf"]::after {
  content: "PDF";
  background-image: unset;
  background-color: #DC1F13;
  border-radius: 0.625rem;
  padding: 0 0.375rem;
  color: var(--color_white);
  font-size: 0.75rem;
  height: 1.125rem;
  width: auto;
}
.c-table__wrap table tr td a[href$=".xls"]::after {
  background-image: url(../img/icon/icon_excel.svg);
}
.c-table__wrap table tr td a[href$=".docx"]::after, .c-table__wrap table tr td a[href$=".doc"]::after {
  background-image: url(../img/icon/icon_word.svg);
}

@container (max-width: 690px) {
  .c-table__scroll .c-table {
    width: 50rem;
  }
  .c-table__scroll .c-table th,
  .c-table__scroll .c-table td {
    white-space: nowrap;
  }
}
.c-table__scroll .scroll-hint-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* Safari のテキスト自動拡大バグを無効化 */
.c-table__scroll,
.c-table__scroll *,
.scroll-hint,
.scroll-hint * {
  -webkit-text-size-adjust: 100%;
}

/* Safari の width 計算バグ対策 */
.c-table__scroll table {
  width: 100%;
  min-width: 100%;
}

/* セル縮小バグ対策 */
.c-table__scroll th,
.c-table__scroll td {
  min-width: 0;
}

/* 横のみスクロールに制限 */
.c-table__scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

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

.c-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.5rem, 0.3938106796rem + 0.4530744337vw, 0.9375rem);
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.1em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.c-link span {
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  background: var(--color-txt);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}
.c-link span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 0.1875rem solid transparent;
  border-bottom: 0.1875rem solid transparent;
  border-left: 0.375rem solid #ffffff;
  border-right: 0;
}
.c-link--press:hover {
  opacity: 1;
  color: var(--color-key_l);
}
.c-link--press:hover span {
  background: var(--color-key_l);
}
.c-link--news:hover {
  opacity: 1;
  color: var(--color-key);
}
.c-link--news:hover span {
  background: var(--color-key);
}

.c-link-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: clamp(1.5rem, 1.3786407767rem + 0.5177993528vw, 2rem);
}
.c-link-list ul {
  padding-left: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
}
.c-link-list ul li::before {
  background-color: var(--color_white);
  border: 2px solid var(--color-key);
  border-radius: 50%;
}
.c-link-list li {
  padding-left: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  position: relative;
}
.c-link-list li::before {
  content: "";
  min-width: 0.75rem;
  height: 0.75rem;
  background-color: var(--color-key);
  border-radius: 50%;
  position: absolute;
  top: clamp(0.625rem, 0.5946601942rem + 0.1294498382vw, 0.75rem);
  left: 0;
}
.c-link-list li a {
  text-decoration: underline;
  text-underline-offset: 0.125rem;
}
.c-link-list li a::after {
  content: none;
  display: inline-block;
  width: clamp(0.75rem, 0.6438106796rem + 0.4530744337vw, 1.1875rem);
  height: clamp(0.75rem, 0.6438106796rem + 0.4530744337vw, 1.1875rem);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-bottom: calc(-1 * clamp(0.0625rem, 0.0473300971rem + 0.0647249191vw, 0.125rem));
  margin-left: 0.25rem;
}
.c-link-list li a[target=_blank]::after {
  content: "";
  background-image: url(../img/icon/icon_btn_window.svg);
}
.c-link-list li a[href$=".pdf"]::after {
  content: "";
  background-image: url(../img/icon/icon_pdf.svg);
}
.c-link-list li a[href$=".xls"]::after {
  content: "";
  background-image: url(../img/icon/icon_excel.svg);
}
.c-link-list li a[href$=".docx"]::after, .c-link-list li a[href$=".doc"]::after {
  content: "";
  background-image: url(../img/icon/icon_word.svg);
}

.c-floating {
  position: sticky;
  bottom: 4rem;
  z-index: 10;
}
@media screen and (max-width: 600px) {
  .c-floating {
    width: 90%;
  }
}

.c-floating__btn {
  position: absolute;
  bottom: -1.6875rem;
  right: 0;
  z-index: 10;
  width: 3.3125rem;
  height: 3.3125rem;
  padding: 0;
  background-color: var(--color-key);
  color: var(--color_white);
  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;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: none;
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  line-height: 1.3571428571;
  font-weight: 500;
  letter-spacing: 0.056em;
  font-family: "Zen Kaku Gothic New";
}
.c-floating__btn::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-bottom: 8px solid var(--color_white);
  border-top: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-floating__btn::after {
  content: "";
  width: 90%;
  height: 90%;
  border-radius: 50%;
  border: 1px solid var(--color-foot_bg);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media (hover: hover) {
  .c-floating__btn:hover {
    background-color: var(--color-foot_bg);
    color: var(--color-key);
  }
  .c-floating__btn:hover::before {
    border-bottom: 8px solid var(--color-key);
  }
  .c-floating__btn:hover::after {
    border: 1px solid var(--color-key);
  }
}
.p-home__mv {
  position: relative;
  height: 100vh;
  max-height: 40rem;
  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-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 600px) {
  .p-home__mv {
    max-height: 33rem;
  }
}

.p-home__mv-catch {
  padding: 0 clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
  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;
  color: var(--color_white);
  text-align: center;
  z-index: 1;
  position: relative;
}

.p-home__mv-catch-title {
  font-size: clamp(2rem, 1.5145631068rem + 2.071197411vw, 4rem);
  font-weight: 700;
  line-height: 1.28125;
  letter-spacing: 0.1em;
  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;
}
.p-home__mv-catch-title span {
  font-size: clamp(1.25rem, 0.9466019417rem + 1.2944983819vw, 2.5rem);
  line-height: 1.5;
}

.p-home__mv-catch-title-en {
  font-size: clamp(0.875rem, 0.8143203883rem + 0.2588996764vw, 1.125rem);
  font-weight: 400;
  line-height: 1.2222222222;
  letter-spacing: 0.05em;
  opacity: 0.8;
  font-family: "Roboto";
  margin-top: 0.875rem;
}

.p-home__mv-catch-text {
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.1em;
  margin-top: clamp(1.5rem, 0.984223301rem + 2.2006472492vw, 3.625rem);
}

.p-home__mv-slider-wrap {
  background-color: var(--color-foot_bg_l);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-home__mv-slider-wrap::after {
  content: "";
  position: absolute;
  bottom: -0.0625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url(../img/home/mv_bottom.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  width: 100%;
  aspect-ratio: 1920/119;
}
@media screen and (min-width: 1920px) {
  .p-home__mv-slider-wrap::after {
    bottom: -0.125rem;
  }
}

.p-home__mv-slider {
  width: 100%;
  height: 100%;
}

.p-home__mv-slider-item {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  opacity: 0;
  -webkit-transition: 1s all ease;
  transition: 1s all ease;
}
.p-home__mv-slider-item.is_current {
  opacity: 1;
}

.p-home__mv-slider-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-home__mv-nav {
  position: absolute;
  bottom: 5.8125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  z-index: 10;
}
.p-home__mv-nav .dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--color_white);
  cursor: pointer;
  -webkit-transition: background 0.3s, -webkit-transform 0.3s;
  transition: background 0.3s, -webkit-transform 0.3s;
  transition: background 0.3s, transform 0.3s;
  transition: background 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
.p-home__mv-nav .dot.is_active {
  background: var(--color-key);
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.p-home__mv-nav .dot.dot--pause {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  background-color: transparent;
}
.p-home__mv-nav .dot.dot--pause::before, .p-home__mv-nav .dot.dot--pause::after {
  content: "";
  position: absolute;
  top: 0.25rem;
  width: 0.25rem;
  height: 0.75rem;
  background: var(--color_white);
}
.p-home__mv-nav .dot.dot--pause::before {
  left: 0.3125rem;
}
.p-home__mv-nav .dot.dot--pause::after {
  right: 0.3125rem;
}
.p-home__mv-nav .dot.dot--pause.is_paused::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  background-color: transparent;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent var(--color_white);
}
.p-home__mv-nav .dot.dot--pause.is_paused::after {
  content: none;
}

.p-home__emergency {
  margin: 0;
}
.p-home__emergency .c-link {
  margin-top: 1rem;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-home__emergency-wrap {
  display: block;
  padding-top: 2rem;
}

.p-home__emergency-inner {
  display: grid;
  grid-template-columns: 12.5rem auto;
  border-radius: 0.5rem;
  background-color: var(--color_white);
  border: 2px solid #BC0000;
  background-color: #FFF9FA;
}
@media screen and (max-width: 768px) {
  .p-home__emergency-inner {
    grid-template-columns: 1fr;
  }
}
.p-home__emergency-inner .c-title {
  margin-bottom: 0;
  padding: 1rem;
  background-color: #BC0000;
  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;
}
.p-home__emergency-inner .c-title h2 {
  font-size: clamp(1.25rem, 1.1893203883rem + 0.2588996764vw, 1.5rem);
  color: var(--color_white);
}

.p-home__emergency-box {
  width: 100%;
  padding: 0 1rem;
}

.p-home__emergency-item {
  padding: 1rem 0;
  border-bottom: 1px solid #DCDCDC;
}
.p-home__emergency-item:last-child {
  border-bottom: none;
}

.p-home__emergency-item-date {
  line-height: 2;
  font-weight: 700;
}

.p-home__emergency-item-content {
  line-height: 2;
}

.p-home__news {
  position: relative;
  margin-top: 0;
  padding-top: clamp(2.5rem, 1.7415048544rem + 3.2362459547vw, 5.625rem);
}

.p-home__news-bg {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  width: 100%;
}

.p-home__news-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 1.1359223301rem + 1.5533980583vw, 3rem);
}
@media screen and (max-width: 768px) {
  .p-home__news-wrap {
    grid-template-columns: 1fr;
  }
}

.p-home__news-item {
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.0509803922);
          box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.0509803922);
  border-radius: 0.25rem;
  background-color: var(--color_white);
  padding: clamp(1.5rem, 1.3786407767rem + 0.5177993528vw, 2rem) clamp(1rem, 0.5297330097rem + 2.0064724919vw, 2.9375rem) clamp(1.5rem, 0.984223301rem + 2.2006472492vw, 3.625rem);
  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.5449029126rem + 1.9417475728vw, 2.875rem);
  position: relative;
}
.p-home__news-item--press h2::after {
  color: var(--color-key_l);
}
.p-home__news-item--press::before {
  content: url(../img/home/press_deco.svg);
  position: absolute;
  left: -5rem;
  bottom: calc(1 * clamp(0rem, -5.8333333333rem + 12.1527777778vw, 8.75rem));
}
@media screen and (max-width: 768px) {
  .p-home__news-item--press::before {
    content: none;
  }
}
.l-main--emergency .p-home__news-item--press::before {
  content: none;
}
.p-home__news-item--news h2::after {
  color: var(--color-key);
}
.p-home__news-item--news::before {
  content: url(../img/home/news_deco.svg);
  position: absolute;
  right: calc(-1 * clamp(0rem, -0.7584951456rem + 3.2362459547vw, 3.125rem));
  top: calc(1 * clamp(0rem, -1.213592233rem + 5.1779935275vw, 5rem));
}
@media screen and (max-width: 768px) {
  .p-home__news-item--news::before {
    content: none;
  }
}
.l-main--emergency .p-home__news-item--news::before {
  content: none;
}

.p-home__news-item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  position: relative;
}
.p-home__news-item-title::after {
  content: "";
  position: absolute;
  bottom: 0.125rem;
  right: 0;
  width: 100%;
  height: 0.0625rem;
  background-color: #DCDCDC;
}
.p-home__news-item-title .c-title {
  margin-top: 0;
  margin-bottom: 0;
}
.p-home__news-item-title .c-title h2 {
  font-size: clamp(1.25rem, 1.1893203883rem + 0.2588996764vw, 1.5rem);
  line-height: 1.4583333333;
  gap: 0.1875rem;
}
.p-home__news-item-title .c-title h2::after {
  font-size: clamp(0.75rem, 0.7196601942rem + 0.1294498382vw, 0.875rem);
  line-height: 1.2142857143;
  font-weight: 600;
  background-color: var(--color_white);
  padding-right: 1rem;
}

.p-home__project {
  position: relative;
}

.p-home__d-info .l-contents {
  margin: 0;
  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.5rem, 1.1359223301rem + 1.5533980583vw, 3rem);
}
.p-home__d-info .l-contents .c-title {
  margin-bottom: 0;
}
.p-home__d-info .l-contents .c-title h2,
.p-home__d-info .l-contents .c-title h3 {
  color: #1d1d1d;
}
.p-home__d-info .l-contents .c-title h2::after,
.p-home__d-info .l-contents .c-title h3::after {
  color: #1d1d1d;
}
.p-home__d-info .l-contents .c-title h2 span::first-letter,
.p-home__d-info .l-contents .c-title h3 span::first-letter {
  color: #1d1d1d;
}

.p-home__d-info-wrap {
  max-width: 100.75rem;
  width: 100%;
  margin: 0 auto;
  background-color: #22BB62;
  border-radius: 1rem;
  padding: clamp(2.5rem, 2.0449029126rem + 1.9417475728vw, 4.375rem) 0 clamp(2.5rem, 1.5139563107rem + 4.2071197411vw, 6.5625rem);
}
.p-home__d-info-wrap .c-set__box-body {
  color: #1d1d1d;
}
.p-home__d-info-wrap .c-btn {
  border: 1px solid var(--color-key);
  background-color: var(--color_white);
  color: var(--color-key);
}
.p-home__d-info-wrap .c-btn:hover {
  opacity: 1;
  color: var(--color_white);
  background-color: var(--color-key);
  border: 1px solid var(--color_white);
}
.p-home__d-info-wrap .btn_set02 .c-btn {
  margin-top: clamp(0.5rem, 0.2572815534rem + 1.0355987055vw, 1.5rem);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 14.375rem;
  min-height: 3.5rem;
  font-weight: 500;
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  line-height: 1.5;
  letter-spacing: 0.1em;
  border: 1px solid var(--color-key);
  background-color: var(--color_white);
  color: var(--color-key);
}
.p-home__d-info-wrap .btn_set02 .c-btn:hover {
  opacity: 1;
  color: var(--color_white);
  background-color: var(--color-key);
  border: 1px solid var(--color_white);
}

.p-home__about {
  position: relative;
}
.p-home__about .l-inner {
  position: relative;
}
.p-home__about .l-inner::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6.25rem;
  background-image: url(../img/home/about_deco.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 50%;
  max-width: 29.25rem;
  aspect-ratio: 468/202;
}

.p-home__about-bg {
  position: absolute;
  top: -130%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  width: 100%;
}

.p-home__pick-up {
  background-image: url(../img/common/pick-up_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  margin-bottom: 0;
  padding: clamp(5.625rem, 3.6074029126rem + 8.6084142395vw, 13.9375rem) 0;
  position: relative;
}
.p-home__pick-up::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--color-foot_bg);
  width: 100%;
  height: 50%;
  z-index: -1;
}
.p-home__pick-up .c-title h2::after,
.p-home__pick-up .c-title h3::after {
  color: inherit;
}

.p-home__pick-up-list {
  margin-top: clamp(1.5rem, 1.1359223301rem + 1.5533980583vw, 3rem);
  background-color: rgba(255, 255, 255, 0.83);
  border-radius: 0.5rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(0.5rem, 0.2421116505rem + 1.1003236246vw, 1.5625rem);
  padding: clamp(1rem, 0.6359223301rem + 1.5533980583vw, 2.5rem) clamp(1rem, 0.484223301rem + 2.2006472492vw, 3.125rem);
}
@media screen and (max-width: 768px) {
  .p-home__pick-up-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .p-home__pick-up-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-information__alert {
  font-family: "Zen Kaku Gothic New";
}

.p-information__alert-text {
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: #FEF2F3;
  border: 1px solid #DE0000;
  color: #DE0000;
  line-height: 1.625;
  font-weight: 700;
  text-align: center;
}

.p-information__alert-update {
  text-align: right;
}

.p-information__alert-box {
  margin-top: clamp(1.5rem, 1.2876213592rem + 0.9061488673vw, 2.375rem);
  width: 100%;
  background-color: #FFF9FA;
  border: 2px solid #BC0000;
  border-radius: 0.25rem;
}

.p-information__alert-box-tile {
  padding: 0.625rem clamp(1rem, 0.484223301rem + 2.2006472492vw, 3.125rem);
  background-color: #BC0000;
  color: var(--color_white);
  font-size: clamp(1.25rem, 1.1286407767rem + 0.5177993528vw, 1.75rem);
  line-height: 1.4285714286;
  font-weight: 700;
}

.p-information__alert-box-list {
  width: 100%;
  padding: clamp(1.5rem, 1.4089805825rem + 0.3883495146vw, 1.875rem) clamp(1rem, 0.484223301rem + 2.2006472492vw, 3.125rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-information__alert-box-item {
  width: 100%;
}

.p-information__alert-box-item-title {
  padding: 0.1875rem clamp(1rem, 0.7269417476rem + 1.1650485437vw, 2.125rem);
  background-color: #BC0000;
  color: var(--color_white);
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  line-height: 1.45;
  font-weight: 700;
}
.p-information__alert-box-item-title--1 {
  background-color: #000000;
}
.p-information__alert-box-item-title--2 {
  background-color: #8E24AA;
}
.p-information__alert-box-item-title--3 {
  background-color: #DF3035;
}
.p-information__alert-box-item-title--4 {
  background-color: #FEC311;
}

.p-information__alert-box-item-text {
  padding: 1rem clamp(1rem, 0.7269417476rem + 1.1650485437vw, 2.125rem);
  font-size: clamp(0.875rem, 0.8446601942rem + 0.1294498382vw, 1rem);
  line-height: 1.5;
  font-weight: 500;
}
.p-information__alert-box-item-text--p0 {
  padding: 0;
}

.p-information__banner {
  font-family: "Zen Kaku Gothic New";
  background-color: #DF3035;
  color: var(--color_white);
  border-radius: 0.25rem;
  font-size: clamp(1.25rem, 1.067961165rem + 0.7766990291vw, 2rem);
  line-height: 1.4375;
  font-weight: 700;
  padding: clamp(1rem, 0.817961165rem + 0.7766990291vw, 1.75rem) 1rem;
  text-align: center;
  display: block;
  margin-top: clamp(1rem, 0.7572815534rem + 1.0355987055vw, 2rem);
}

.p-center {
  background-image: url(../img/common/center_bg.png);
  background-repeat: no-repeat;
  background-position: center 60%;
  background-size: cover;
  min-height: clamp(31.25rem, 24.0833333333rem + 14.9305555556vw, 42rem);
}

.p-center__top {
  padding-top: clamp(3rem, 2.3325242718rem + 2.8478964401vw, 5.75rem);
  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: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(2rem, 1.4993932039rem + 2.1359223301vw, 4.0625rem);
}
.p-center__top h1 {
  text-align: center;
  color: var(--color_white);
}

.p-center__top-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 1.1359223301rem + 1.5533980583vw, 3rem);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-center__top-box {
    grid-template-columns: 1fr;
  }
}
.p-center__top-box .p-home__news-item--news::before {
  content: none;
}

.p-center__nav {
  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.8027912621rem + 0.8414239482vw, 1.8125rem);
}

.p-center__nav-item {
  position: relative;
  padding: clamp(1rem, 0.9089805825rem + 0.3883495146vw, 1.375rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1rem, 0.7724514563rem + 0.9708737864vw, 1.9375rem);
  z-index: 1;
}
.p-center__nav-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #EFFFF2;
  border-radius: 0.25rem;
  z-index: -1;
}
.p-center__nav-item::after {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  width: 100%;
  height: 100%;
  background-color: #81C9A3;
  border-radius: 0.25rem;
  z-index: -2;
}
.p-center__nav-item img:not(.p-center__nav-item-deco) {
  aspect-ratio: 122/89;
  width: 100%;
  max-width: 7.625rem;
  border-radius: 0.25rem;
}
.p-center__nav-item p {
  font-size: clamp(1rem, 0.9393203883rem + 0.2588996764vw, 1.25rem);
  line-height: 1.45;
  font-weight: 700;
}

.p-center__nav-item-deco {
  margin-left: auto;
  width: clamp(1rem, 0.6966019417rem + 1.2944983819vw, 2.25rem);
  aspect-ratio: 1/1;
}

.p-center__institution {
  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.5rem, 1.0145631068rem + 2.071197411vw, 3.5rem);
}
.p-center__institution h2 {
  text-align: center;
}

.p-center__institution-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 0.8634708738rem + 0.5825242718vw, 1.5625rem) clamp(1rem, 0.7876213592rem + 0.9061488673vw, 1.875rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .p-center__institution-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-center__institution-item img {
  width: 100%;
  margin: 0 auto;
}

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

.gsc-control-cse {
  width: 12.5rem !important;
  padding: 0 !important;
}
.gsc-control-cse .gsc-search-box {
  margin: 0 !important;
  position: relative;
}
.gsc-control-cse .gsc-search-box .gsc-input {
  padding: 0 !important;
  width: 100%;
  line-height: normal !important;
}
.gsc-control-cse .gsc-search-box .gsc-input .gsc-input-box {
  padding: 0 !important;
  border-radius: 1.125rem;
  border: 1px solid var(--color-txt);
}
.gsc-control-cse .gsc-search-box .gsc-input .gsib_a {
  padding: 0.4375rem 2rem 0.4375rem 0.5625rem;
}
.gsc-control-cse .gsc-search-box .gsc-input .gsib_b {
  display: none;
}
.gsc-control-cse .gsc-search-box .gsc-search-button {
  padding: 0 !important;
  position: absolute;
  top: 50%;
  right: 0.375rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.gsc-control-cse .gsc-search-box .gsc-clear-button {
  display: none;
}

@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 */