@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
/* CSS Document */
*, *:before, *:after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  font-size: 62.5%;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

table th {
  word-break: break-all;
}

table td {
  word-break: break-all;
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

input[type=text] {
  border-radius: 0;
}

:root {
  --iks-height: 110px;
  --header-height: 110px;
  --coef: 1;
  --spacer-10: calc(10px * var(--coef));
  --spacer-15: calc(15px * var(--coef));
  --spacer-20: calc(20px * var(--coef));
  --spacer-25: calc(25px * var(--coef));
  --spacer-30: calc(30px * var(--coef));
  --spacer-35: calc(35px * var(--coef));
  --spacer-40: calc(40px * var(--coef));
  --spacer-45: calc(45px * var(--coef));
  --spacer-50: calc(50px * var(--coef));
  --spacer-55: calc(55px * var(--coef));
  --spacer-60: calc(60px * var(--coef));
  --spacer-65: calc(65px * var(--coef));
  --spacer-70: calc(70px * var(--coef));
  --spacer-80: calc(80px * var(--coef));
  --spacer-90: calc(90px * var(--coef));
  --spacer-100: calc(100px * var(--coef));
  --spacer-120: calc(120px * var(--coef));
  --spacer-160: calc(160px * var(--coef));
  --spacer-180: calc(180px * var(--coef));
  --spacer-200: calc(200px * var(--coef));
  scroll-padding-top: var(--header-height);
}
@media only screen and (max-width: 1600px) {
  :root {
    --coef: 0.9;
  }
}
@media only screen and (max-width: 1300px) {
  :root {
    --coef: 0.75;
    --iks-height: 70px;
    --header-height: 60px;
  }
}
@media only screen and (max-width: 640px) {
  :root {
    --coef: 0.625;
  }
}

* {
  padding: 0;
  margin: 0;
  font-weight: normal;
}

body {
  position: relative;
  overflow-x: hidden;
  overflow-y: scroll;
  color: #333333;
  background-color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(0.75rem, 0.69rem + 0.27vw, 0.938rem);
  padding-bottom: env(safe-area-inset-bottom);
  font-size: clamp(0.938rem, 0.9rem + 0.09vw, 1rem);
  font-feature-settings: "palt";
}
body.fixed {
  position: fixed;
  left: 0;
  width: 100%;
  height: 100vh;
}
body.fixed::before {
  position: fixed;
  display: block;
  content: "";
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: 100;
  background-color: #000;
  opacity: 0.8;
}

p {
  margin-block: calc((1em - 1lh) / 2);
  line-height: 1.6;
}

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

a {
  color: #006e76;
  text-decoration: underline;
  transition: color 0.3s, text-decoration 0.3s;
}
@media (any-hover: hover) {
  a:hover {
    color: #004c52;
    text-decoration: none;
  }
}
a:focus-within {
  color: #004c52;
  text-decoration: none;
}
a[href^="tel:"] {
  pointer-events: none;
  cursor: default;
}
@media only screen and (max-width: 640px) {
  a[href^="tel:"] {
    pointer-events: all;
    cursor: pointer;
  }
}

.skip-link {
  display: block;
  margin: -1px;
  width: 1px;
  height: 1px;
  background: #ffffff;
  line-height: 1.6;
  text-align: center;
  overflow: hidden;
}
.skip-link:focus {
  width: auto;
  height: auto;
  margin: 0;
}

.c-circle-arrow {
  position: relative;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-circle-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid #c2f1f4;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.c-circle-arrow__img {
  width: 18px;
  height: 7px;
  background-color: #ffffff;
  mask: url("/app/themes/iks/assets/img/commn/icon-arrow-w.svg") no-repeat center/contain;
  -webkit-mask: url("/app/themes/iks/assets/img/commn/icon-arrow-w.svg") no-repeat center/contain;
}
.c-circle-arrow::before {
  pointer-events: none;
}
.c-circle-arrow.--green::before {
  border: 2px solid #004c52;
}
.c-circle-arrow.--green > .c-circle-arrow__img {
  background-color: #004c52;
}

.c-button-disaster {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100px;
  height: auto;
}
@media only screen and (max-width: 640px) {
  .c-button-disaster {
    width: calc(100% - var(--spacer-20));
    display: block;
    margin: 0 auto;
  }
}
.c-button-disaster__link {
  display: block;
  position: relative;
  text-decoration: none;
  font-size: clamp(1rem, 0.852rem + 0.37vw, 1.6rem);
  font-weight: 600;
  line-height: 1;
  background-color: #c20a0a;
  color: #fff;
  text-align: center;
  letter-spacing: 0.05rem;
  writing-mode: vertical-rl;
  padding: 5px 5px 55px 5px;
  border-radius: 38px;
  transition: background-color 0.3s ease;
}
@media only screen and (max-width: 640px) {
  .c-button-disaster__link {
    writing-mode: horizontal-tb;
    padding-bottom: 5px;
    width: 100%;
  }
}
@media (any-hover: hover) {
  .c-button-disaster__link:hover {
    background-color: #6a180a;
    color: #e6f1f2;
  }
  .c-button-disaster__link:hover::before {
    background-color: #e6f1f2;
  }
}
.c-button-disaster__link:focus-within {
  background-color: #6a180a;
  color: #e6f1f2;
}
.c-button-disaster__link:focus-within::before {
  background-color: #e6f1f2;
}
.c-button-disaster__box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media only screen and (max-width: 640px) {
  .c-button-disaster__box {
    gap: 0;
    justify-content: flex-start;
    flex-direction: row;
    align-items: center;
  }
}
@media only screen and (max-width: 640px) {
  .c-button-disaster__text {
    width: 100%;
  }
}
.c-button-disaster__text > span {
  position: relative;
}
@media only screen and (max-width: 640px) {
  .c-button-disaster__text > span {
    padding-right: 30px;
  }
}
.c-button-disaster__text > span::after {
  content: "";
  display: block;
  mask: url(/app/themes/iks/assets/img/commn/icon-arrow-w.svg) no-repeat center/contain;
  -webkit-mask: url(/app/themes/iks/assets/img/commn/icon-arrow-w.svg) no-repeat center/contain;
  background-color: #ffffff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(-1em - 10px);
  width: 20px;
  height: 16px;
  z-index: 1;
}
@media only screen and (max-width: 640px) {
  .c-button-disaster__text > span::after {
    top: 50%;
    transform: translateY(-50%);
    left: auto;
    right: 0;
  }
}

/* ハンバーガーメニューボタン
  ----------------------------------------------------------------- */
.c-hamburger-button {
  display: none;
  width: 40px;
  height: 30px;
  justify-content: center;
  align-items: center;
  border: none;
  background-color: #ffffff;
  z-index: 3;
}
@media only screen and (max-width: 1300px) {
  .c-hamburger-button {
    display: block;
  }
}
.c-hamburger-button__line {
  position: relative;
  font-size: 0;
  background-color: #006e76;
  display: block;
  width: 100%;
  height: 4px;
}
.c-hamburger-button__line::before, .c-hamburger-button__line::after {
  content: "";
  position: absolute;
  background-color: #006e76;
  display: block;
  left: 0;
  width: 100%;
  height: 4px;
  transition: all 0.3s ease;
}
.c-hamburger-button__line::before {
  top: -14px;
}
.c-hamburger-button__line::after {
  bottom: -14px;
}
.c-hamburger-button.open .c-hamburger-button__line {
  background-color: transparent;
}
.c-hamburger-button.open .c-hamburger-button__line::before {
  top: 0;
  transform: rotate(45deg);
}
.c-hamburger-button.open .c-hamburger-button__line::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.c-front-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.c-front-slider__slide {
  position: relative;
}
.c-front-slider__img {
  width: 100%;
  aspect-ratio: 1920/800;
}
.c-front-slider__img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media only screen and (max-width: 1080px) {
  .c-front-slider__img img {
    min-height: 480px;
  }
}
.c-front-slider__lead {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  position: absolute;
  left: 7.8125%;
  bottom: -4.1666666667%;
  color: #ffffff;
  font-size: 150px;
  line-height: 1;
  font-size: 7.8125vw;
}
@media only screen and (max-width: 1300px) {
  .c-front-slider__lead {
    font-size: clamp(60px, 7.8125vw, 150px);
  }
}
@media only screen and (max-width: 768px) {
  .c-front-slider__lead {
    left: 20px;
    bottom: -12px;
  }
}
.c-front-slider__pause {
  position: absolute;
  z-index: 1;
  width: 30px;
  height: 30px;
  background-color: #F5F5F5;
  border-radius: 50%;
  overflow: hidden;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.c-front-slider__pause::before, .c-front-slider__pause::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
  display: block;
  content: "";
  background-color: #006e76;
  width: 2.67px;
  height: 11px;
}
.c-front-slider__pause::before {
  left: 10px;
}
.c-front-slider__pause::after {
  right: 10px;
}
.c-front-slider__pause span {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
}
.c-front-slider__pause.paused::before {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 9px solid #006e76;
  background-color: transparent;
  left: 12px;
}
.c-front-slider__pause.paused::after {
  display: none;
}

.c-breadcrumbs {
  margin-top: var(--spacer-30);
  font-size: clamp(0.688rem, 0.627rem + 0.27vw, 0.875rem);
}
.c-breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0 1em;
  margin-block: calc((1em - 1lh) / 2);
  line-height: 1.4;
}
.c-breadcrumbs__item {
  line-height: 1.6;
}
.c-breadcrumbs__item:not(:first-of-type)::before {
  display: inline-block;
  margin-right: 1em;
  content: "＞";
}
.c-breadcrumbs__item a {
  text-decoration: none;
}
.c-breadcrumbs__item a:hover {
  text-decoration: underline;
}
.c-breadcrumbs__item a[aria-current=location] {
  color: inherit;
  cursor: default;
  text-decoration: none;
}

.c-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacer-15);
  flex-wrap: wrap;
  margin-top: var(--spacer-40);
  font-size: clamp(0.906rem, 0.836rem + 0.31vw, 1.125rem);
  color: #ffffff;
}
.c-pagination a {
  color: inherit;
  text-decoration: none;
  transition: background-color 0.3s;
}
@media (any-hover: hover) {
  .c-pagination a:hover {
    background-color: #004c52;
    border-color: #004c52;
    color: #ffffff;
  }
}
.c-pagination a:focus-within {
  background-color: #004c52;
  border-color: #004c52;
  color: #ffffff;
}
.c-pagination .page-numbers {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.67em;
  height: 1.67em;
  background: #006e76;
  line-height: 1;
}
.c-pagination .page-numbers.current {
  background-color: #333333;
  border-color: transparent;
}

.c-entry-body {
  position: relative;
  --wp--preset--font-size--small: clamp(0.688rem, 0.627rem + 0.27vw, 0.875rem);
  --wp--preset--font-size--medium: clamp(0.813rem, 0.752rem + 0.27vw, 1rem);
  --wp--preset--font-size--large: clamp(1rem, 0.92rem + 0.36vw, 1.25rem);
  --wp--preset--font-size--x-large: clamp(1.125rem, 1.004rem + 0.54vw, 1.5rem);
  --wp--preset--font-size--x-x-large: clamp(1.313rem, 1.092rem + 0.98vw, 2rem);
  --block-gap: var(--spacer-40);
  --block-gap-2: var(--spacer-20);
  --block-gap-3: var(--spacer-10);
}
.c-entry-body::after {
  display: block;
  content: "";
  clear: both;
}
.c-entry-body strong {
  font-weight: bold;
}
.c-entry-body em {
  font-style: italic;
}
.c-entry-body sup {
  font-size: 0.7em;
  vertical-align: super;
}
.c-entry-body sub {
  font-size: 0.7em;
  vertical-align: sub;
}
.c-entry-body :where(.wp-block-image,
.wp-block-columns,
.wp-block-gallery,
.wp-block-table,
.wp-block-separator,
.wp-block-details,
.wp-block-embed,
.wp-block-buttons,
.wp-block-file,
.wp-block-group,
.wp-block-code,
.wp-block-kevinbatdorf-code-block-pro,
.wp-block-list.menu-list) {
  margin-top: var(--block-gap);
  margin-bottom: var(--block-gap);
}
.c-entry-body :where(h3, h4, h5, h6, p) + :where(.wp-block-gallery,
.wp-block-table,
.wp-block-details,
.wp-block-embed,
.wp-block-buttons,
.wp-block-file,
.wp-block-group:not(.group-bg):not(.group-notes):not(.group-tips):not(.group-left-border):not(.group-accordion),
.wp-block-code,
.wp-block-kevinbatdorf-code-block-pro,
.wp-block-list.menu-list) {
  margin-top: calc(var(--block-gap-3) + (1em - 1lh) / 2);
}
.c-entry-body :where(h3, h4, h5, h6, p) + .wp-block-group.box-scroll .wp-block-table {
  margin-top: calc(var(--block-gap-3) + (1em - 1lh) / 2);
  margin-bottom: var(--block-gap-2);
}
.c-entry-body h4, .c-entry-body h5, .c-entry-body h6 {
  margin-block: calc(var(--block-gap) + (1em - 1lh) / 2);
  font-weight: bold;
}
.c-entry-body h2 {
  position: relative;
  margin-top: var(--spacer-80);
  margin-bottom: calc(var(--block-gap) + (1em - 1lh) / 2);
  padding-top: calc(var(--spacer-30) + (1em - 1lh) / 2);
  font-size: clamp(1.313rem, 1.092rem + 0.98vw, 2rem);
  font-weight: bold;
  line-height: 1.4;
}
.c-entry-body h2::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  width: var(--spacer-100);
  height: 5px;
  background-color: #b42a2a;
}
.c-entry-body h3 {
  position: relative;
  margin-top: var(--block-gap);
  margin-bottom: calc(var(--block-gap) + (1em - 1lh) / 2);
  padding-top: calc(var(--spacer-25) + (1em - 1lh) / 2);
  font-size: clamp(1.125rem, 1.004rem + 0.54vw, 1.5rem);
  font-weight: bold;
  line-height: 1.4;
}
.c-entry-body h3::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #b42a2a;
}
.c-entry-body h4 {
  position: relative;
  padding-left: 1.5em;
  font-size: clamp(1rem, 0.92rem + 0.36vw, 1.25rem);
  line-height: 1.5;
}
.c-entry-body h4::before {
  position: absolute;
  display: block;
  content: "";
  top: calc(0.5lh - 1px);
  left: 0;
  width: 1em;
  height: 2px;
  background-color: #b42a2a;
}
.c-entry-body h5 {
  font-size: clamp(0.906rem, 0.836rem + 0.31vw, 1.125rem);
  line-height: 1.6;
  color: #6a180a;
}
.c-entry-body h6 {
  font-size: clamp(0.813rem, 0.752rem + 0.27vw, 1rem);
  line-height: 1.6;
}
.c-entry-body p {
  margin-block: calc(var(--block-gap) + (1em - 1lh) / 2);
}
.c-entry-body .wp-block-list:not(.menu-list) {
  --line-height: 1.6;
  --list-margin: 0.65em;
  margin-top: calc(var(--block-gap) + (1em - 1lh) / 2 - var(--list-margin));
  margin-bottom: calc(var(--block-gap) + (1em - 1lh) / 2 - var(--list-margin));
  padding: 0;
}
.c-entry-body .wp-block-list:not(.menu-list) li {
  position: relative;
  line-height: 1.6;
  margin-block: var(--list-margin);
  padding-left: 1.33em;
  overflow-wrap: break-word;
}
.c-entry-body .wp-block-list:not(.menu-list) li .wp-block-list {
  margin: 0;
}
.c-entry-body .wp-block-list:not(.menu-list) li a {
  text-decoration: none;
}
.c-entry-body :where(h2, h3, h4, h5, h6) + .wp-block-list:not(.menu-list) {
  margin-top: calc(var(--block-gap-3) + (1em - 1lh) / 2 - var(--list-margin));
}
.c-entry-body ul.wp-block-list:not(.menu-list) > li {
  list-style: none;
}
.c-entry-body ul.wp-block-list:not(.menu-list) > li::before {
  position: absolute;
  display: block;
  content: "";
  top: calc(0.2335em - (1em - 1lh) / 2);
  left: 0;
  width: 0.7em;
  aspect-ratio: 1/1;
  border: 2px solid #b42a2a;
  border-radius: 50%;
  font-weight: bold;
}
.c-entry-body ul.wp-block-list:not(.menu-list) > li ul.wp-block-list > li::before {
  border: 2px solid #6a180a;
  background-color: #6a180a;
}
.c-entry-body ol.wp-block-list:not(.menu-list) {
  list-style: none;
  counter-reset: ol_li;
}
.c-entry-body ol.wp-block-list:not(.menu-list) > li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #b42a2a;
  counter-increment: ol_li;
  content: counter(ol_li);
  font-weight: bold;
}
.c-entry-body .wp-block-list.menu-list {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: var(--spacer-40);
}
.c-entry-body .wp-block-list.menu-list:has(> :nth-child(-n+2):last-child) {
  justify-content: center;
}
.c-entry-body .wp-block-list.menu-list li {
  width: calc((100% - var(--spacer-40) * 2) / 3);
  border-bottom: 2px solid #E5E5E5;
  /*  @include m.button; */
  --inline-pading: 1.3em;
}
.c-entry-body .wp-block-list.menu-list li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 100%;
  height: 100%;
  border-bottom: none;
  padding-inline: calc(var(--inline-pading) + var(--icon-height));
}
.c-entry-body .wp-block-list.menu-list li > a::before {
  transform: rotate(90deg);
}
.c-entry-body .wp-block-list.menu-list li > a:hover::before {
  transform: rotate(90deg) translateX(0.7em);
}
@media only screen and (max-width: 768px) {
  .c-entry-body .wp-block-list.menu-list li {
    width: calc((100% - var(--spacer-40)) / 2);
  }
}
@media only screen and (max-width: 640px) {
  .c-entry-body .wp-block-list.menu-list li {
    width: 100%;
  }
}
.c-entry-body .wp-block-columns {
  gap: var(--spacer-40);
}
.c-entry-body .wp-block-column > *:first-child {
  margin-top: 0 !important;
}
.c-entry-body .wp-block-column > *:last-child {
  margin-bottom: 0 !important;
}
.c-entry-body .wp-block-column > h2:first-child, .c-entry-body .wp-block-column > h3:first-child, .c-entry-body .wp-block-column > h4:first-child, .c-entry-body .wp-block-column > h5:first-child, .c-entry-body .wp-block-column > h6:first-child, .c-entry-body .wp-block-column > p:first-child {
  margin-top: calc((1em - 1lh) / 2) !important;
}
.c-entry-body .wp-block-column > h2:last-child, .c-entry-body .wp-block-column > h3:last-child, .c-entry-body .wp-block-column > h4:last-child, .c-entry-body .wp-block-column > h5:last-child, .c-entry-body .wp-block-column > h6:last-child, .c-entry-body .wp-block-column > p:last-child {
  margin-bottom: calc((1em - 1lh) / 2) !important;
}
.c-entry-body .wp-block-column > .wp-block-list:first-child {
  margin-top: calc((1em - 1lh) / 2 - var(--list-margin)) !important;
}
.c-entry-body .wp-block-column > .wp-block-list:last-child {
  margin-bottom: calc((1em - 1lh) / 2 - var(--list-margin)) !important;
}
.c-entry-body .wp-block-columns:has(.group-card) {
  display: grid;
  grid-auto-flow: column;
}
.c-entry-body .wp-block-columns:has(.group-card) .wp-block-column {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  column-gap: var(--spacer-20);
  row-gap: 0;
}
.c-entry-body .wp-block-columns:has(.group-card) .group-card {
  display: inherit;
  grid-template-rows: inherit;
  grid-row: inherit;
}
.c-entry-body .wp-block-columns:has(.group-card) .group-card .wp-block-group__inner-container {
  display: inherit;
  grid-template-rows: inherit;
  grid-row: inherit;
}
.c-entry-body .wp-block-columns:has(.group-card) .group-card .wp-block-group__inner-container > *:has(+ .wp-block-buttons) {
  margin-bottom: 0;
}
.c-entry-body .wp-block-columns:has(.group-card) .group-card .wp-block-group__inner-container > :where(h2, h3, h4, h5, h6, p) {
  margin-top: calc((1em - 1lh) / 2);
}
.c-entry-body .wp-block-columns:has(.group-card) .group-card .wp-block-group__inner-container > :where(h2, h3, h4, h5, h6, p):has(+ .wp-block-buttons) {
  margin-bottom: calc((1em - 1lh) / 2);
}
.c-entry-body .wp-block-columns:has(.group-card) .group-card .wp-block-group__inner-container > .wp-block-buttons {
  margin-top: var(--spacer-30);
  margin-bottom: 0;
}
.c-entry-body .wp-block-columns:has(.group-card) .group-card .wp-block-group__inner-container > .wp-block-group {
  margin-block: 0;
}
@media only screen and (max-width: 768px) {
  .c-entry-body .wp-block-columns:has(.group-card) {
    grid-auto-flow: row;
  }
}
.c-entry-body .wp-block-table {
  overflow-x: unset;
}
.c-entry-body .wp-block-table th, .c-entry-body .wp-block-table td {
  padding: calc(var(--spacer-20) + (1em - 1lh) / 2) var(--spacer-30);
  border: 1px solid #cccccc;
  letter-spacing: 0.025em;
  line-height: 1.6;
}
.c-entry-body .wp-block-table th {
  font-weight: bold;
  text-align: left;
  font-weight: bold;
}
.c-entry-body .wp-block-table:not(.is-style-stripes) thead {
  background-color: #F5F5F5;
  border-bottom: 1px solid #cccccc;
  font-weight: bold;
  font-weight: bold;
}
.c-entry-body .wp-block-table:not(.is-style-stripes) tfoot {
  border-top: 3px solid #cccccc;
}
.c-entry-body .wp-block-table:not(.is-style-stripes) th {
  font-weight: bold;
  text-align: left;
  background-color: #eff0f0;
}
.c-entry-body .wp-block-table:not(.is-style-stripes) td {
  background-color: #ffffff;
}
.c-entry-body .wp-block-table.is-style-row-heading tbody td:first-child {
  background-color: #eff0f0;
  font-weight: 600;
  width: 30%;
  vertical-align: top;
}
.c-entry-body .wp-block-table.is-style-reset table {
  width: auto;
}
.c-entry-body figure.wp-block-gallery {
  --wp--style--unstable-gallery-gap: var(--block-gap);
  gap: var(--block-gap);
}
.c-entry-body figure.wp-block-gallery.has-nested-images figure.wp-block-image:has(figcaption)::before {
  display: none;
}
.c-entry-body figure.wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
  padding: calc(10px + (1em - 1lh) / 2) var(--spacer-30);
  font-size: clamp(0.688rem, 0.627rem + 0.27vw, 0.875rem);
  background: rgba(255, 255, 255, 0.8);
  color: #333333;
  letter-spacing: 0.025em;
  text-align: left;
  text-shadow: none;
}
.c-entry-body figure.wp-block-gallery.has-nested-images figure.wp-block-image.is-style-rounded img {
  border-radius: 20px;
}
.c-entry-body .wp-block-buttons.is-layout-flex {
  gap: var(--block-gap);
}
.c-entry-body .wp-block-button .wp-block-button__link {
  position: relative;
  display: inline-block;
  padding: 1.3em 4.4em 1.3em 2.4em;
  font-size: 16px;
  font-size: clamp(0.813rem, 0.752rem + 0.27vw, 1rem);
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  line-height: 1.6;
  color: #ffffff;
  background-color: #006e76;
  transition: background-color 0.3s;
  border-radius: initial;
}
.c-entry-body .wp-block-button .wp-block-button__link::after {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  right: 2.3em;
  bottom: 0;
  margin: auto;
  width: 1.1em;
  height: 1.1em;
  mask-image: url(/app/themes/iks/assets/img/commn/icon-arrow.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: #ffffff;
  transition: background-color 0.3s;
}
.c-entry-body .wp-block-button .wp-block-button__link[target=_blank]::after {
  width: 20px;
  height: 16px;
  mask: url("/app/themes/iks/assets/img/commn/icon-link-w.svg") no-repeat center/contain;
  -webkit-mask: url("/app/themes/iks/assets/img/commn/icon-link-w.svg") no-repeat center/contain;
}
@media (any-hover: hover) {
  .c-entry-body .wp-block-button .wp-block-button__link:hover {
    background-color: #004c52;
  }
}
.c-entry-body .wp-block-button .wp-block-button__link:focus-within {
  background-color: #004c52;
}
@media only screen and (max-width: 1300px) {
  .c-entry-body .wp-block-button .wp-block-button__link {
    padding-left: 1.8em;
    padding-right: 3.6em;
  }
  .c-entry-body .wp-block-button .wp-block-button__link::after {
    right: 1.8em;
  }
}
.c-entry-body .wp-block-button .wp-block-button__link.blank::after {
  background-image: unset;
  display: none;
}
.c-entry-body .wp-block-button.is-style-theme .wp-block-button__link, .c-entry-body .wp-block-button.is-style-theme-down .wp-block-button__link {
  position: relative;
  display: inline-block;
  padding: 1.3em 4.4em 1.3em 2.4em;
  font-size: 16px;
  font-size: clamp(0.813rem, 0.752rem + 0.27vw, 1rem);
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  line-height: 1.6;
  color: #ffffff;
  background-color: #006e76;
  transition: background-color 0.3s;
  border-radius: initial;
}
.c-entry-body .wp-block-button.is-style-theme .wp-block-button__link::after, .c-entry-body .wp-block-button.is-style-theme-down .wp-block-button__link::after {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  right: 2.3em;
  bottom: 0;
  margin: auto;
  width: 1.1em;
  height: 1.1em;
  mask-image: url(/app/themes/iks/assets/img/commn/icon-arrow.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: #ffffff;
  transition: background-color 0.3s;
}
.c-entry-body .wp-block-button.is-style-theme .wp-block-button__link[target=_blank]::after, .c-entry-body .wp-block-button.is-style-theme-down .wp-block-button__link[target=_blank]::after {
  width: 15px;
  height: 16px;
  mask-image: url(/wp-content/themes/mks/assets/img/common/icon-blank.svg);
}
@media (any-hover: hover) {
  .c-entry-body .wp-block-button.is-style-theme .wp-block-button__link:hover, .c-entry-body .wp-block-button.is-style-theme-down .wp-block-button__link:hover {
    background-color: #004c52;
  }
}
.c-entry-body .wp-block-button.is-style-theme .wp-block-button__link:focus-within, .c-entry-body .wp-block-button.is-style-theme-down .wp-block-button__link:focus-within {
  background-color: #004c52;
}
@media only screen and (max-width: 1300px) {
  .c-entry-body .wp-block-button.is-style-theme .wp-block-button__link, .c-entry-body .wp-block-button.is-style-theme-down .wp-block-button__link {
    padding-left: 1.8em;
    padding-right: 3.6em;
  }
  .c-entry-body .wp-block-button.is-style-theme .wp-block-button__link::after, .c-entry-body .wp-block-button.is-style-theme-down .wp-block-button__link::after {
    right: 1.8em;
  }
}
.c-entry-body .wp-block-button.is-style-theme-down .wp-block-button__link::after {
  transform: rotate(90deg);
}
.c-entry-body .wp-block-button.wp-block-button__link {
  background-color: #006e76;
}
.c-entry-body .wp-block-file:not(.wp-element-button) {
  font-size: inherit;
}
.c-entry-body .wp-block-file a:not(.wp-element-button) {
  position: relative;
  font-size: clamp(0.813rem, 0.752rem + 0.27vw, 1rem);
  line-height: 1.6;
  font-weight: bold;
  text-decoration: none;
  padding-left: 1.33em;
  color: #333333;
}
.c-entry-body .wp-block-file a:not(.wp-element-button) + .wp-element-button {
  margin-left: 1.87em;
}
.c-entry-body .wp-block-file a:not(.wp-element-button)::before {
  position: absolute;
  display: block;
  content: "";
  top: calc(0.2335em - (1em - 1lh) / 2);
  left: 0;
  width: 0.7em;
  aspect-ratio: 1/1;
  border: 2px solid #b42a2a;
  border-radius: 50%;
  font-weight: bold;
}
.c-entry-body .wp-block-file .wp-element-button {
  position: relative;
  color: #006e76;
  font-size: clamp(0.813rem, 0.752rem + 0.27vw, 1rem);
  line-height: 1.6;
  font-weight: bold;
  background-color: initial;
}
.c-entry-body .wp-block-file .wp-element-button::after {
  display: inline-block;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  margin-left: 8px;
  width: 21px;
  height: 14px;
  mask-image: url(/app/themes/iks/assets/img/commn/icon-download.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: #006e76;
  transition: background-color 0.3s;
}
@media (any-hover: hover) {
  .c-entry-body .wp-block-file .wp-element-button:hover {
    color: #004c52;
    opacity: 1;
  }
  .c-entry-body .wp-block-file .wp-element-button:hover::after {
    background-color: #004c52;
  }
}
.c-entry-body .wp-block-file .wp-element-button:focus-within {
  color: #004c52;
  opacity: 1;
}
.c-entry-body .wp-block-file .wp-element-button:focus-within::after {
  background-color: #004c52;
}
.c-entry-body .wp-block-file.is-style-download-only > a:not(.wp-block-file__button), .c-entry-body .wp-block-file.is-style-button > a:not(.wp-block-file__button) {
  display: none;
}
.c-entry-body .wp-block-file.is-style-download-only > a:not(.wp-block-file__button) + .wp-element-button, .c-entry-body .wp-block-file.is-style-button > a:not(.wp-block-file__button) + .wp-element-button {
  margin-left: 0;
}
.c-entry-body .wp-block-file.is-style-download-only .wp-block-file__button {
  display: inline-block;
}
.c-entry-body .wp-block-file.is-style-button .wp-block-file__button {
  position: relative;
  display: inline-block;
  padding: 1.3em 4.4em 1.3em 2.4em;
  font-size: 16px;
  font-size: clamp(0.813rem, 0.752rem + 0.27vw, 1rem);
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  line-height: 1.6;
  color: #ffffff;
  background-color: #006e76;
  transition: background-color 0.3s;
  border-radius: initial;
}
.c-entry-body .wp-block-file.is-style-button .wp-block-file__button::after {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  right: 2.3em;
  bottom: 0;
  margin: auto;
  width: 1.1em;
  height: 1.1em;
  mask-image: url(/app/themes/iks/assets/img/commn/icon-download.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: #ffffff;
  transition: background-color 0.3s;
}
.c-entry-body .wp-block-file.is-style-button .wp-block-file__button:hover {
  background-color: #004c52;
}
.c-entry-body .p-articleThumb__caption,
.c-entry-body .wp-block-embed > figcaption,
.c-entry-body .wp-block-image figcaption,
.c-entry-body .wp-block-table figcaption,
.c-entry-body .wp-block-video figcaption {
  font-size: clamp(0.688rem, 0.627rem + 0.27vw, 0.875rem);
  margin-top: calc(1em + (1em - 1lh) / 2);
  margin-bottom: 0.3em;
  line-height: 1.6;
  color: #707070;
}
.c-entry-body .wp-block-embed-youtube .wp-block-embed__wrapper {
  width: 100%;
  aspect-ratio: 16/9;
}
.c-entry-body .wp-block-embed-youtube .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-entry-body .wp-block-separator {
  border-top: 1px solid #E5E5E5;
}
.c-entry-body .wp-block-separator.is-style-wide {
  border-top: 3px solid #E5E5E5;
}
.c-entry-body .wp-block-accordion .wp-block-accordion-item .is-open.wp-block-accordion-panel {
  display: block;
  opacity: 1;
}
.c-entry-body .wp-block-accordion .wp-block-accordion-item .wp-block-accordion-heading {
  margin-top: var(--spacer-30);
  margin-bottom: var(--spacer-30);
  line-height: 1;
  font-size: 16px;
  padding: 0;
  background-color: #eff0f0;
  border-left: 5px solid #6a180a;
  margin-top: var(--spacer-10);
  margin-bottom: 0;
  padding: var(--spacer-30) var(--spacer-15) var(--spacer-30) var(--spacer-35);
}
.c-entry-body .wp-block-accordion .wp-block-accordion-item .wp-block-accordion-heading::before {
  content: none;
}
.c-entry-body .wp-block-accordion .wp-block-accordion-item .wp-block-accordion-heading :hover .wp-block-accordion-heading__toggle-title {
  text-decoration: none;
}
.c-entry-body .wp-block-accordion .wp-block-accordion-item .wp-block-accordion-heading .wp-block-accordion-heading__toggle {
  padding: 0;
}
@media (any-hover: hover) {
  .c-entry-body .wp-block-accordion .wp-block-accordion-item .wp-block-accordion-heading .wp-block-accordion-heading__toggle .wp-block-accordion-heading__toggle-title:hover,
  .c-entry-body .wp-block-accordion .wp-block-accordion-item .wp-block-accordion-heading .wp-block-accordion-heading__toggle .wp-block-accordion-heading__toggle-icon:hover {
    text-decoration: none;
  }
}
.c-entry-body .wp-block-accordion .wp-block-accordion-item .wp-block-accordion-heading .wp-block-accordion-heading__toggle .wp-block-accordion-heading__toggle-title:focus-within,
.c-entry-body .wp-block-accordion .wp-block-accordion-item .wp-block-accordion-heading .wp-block-accordion-heading__toggle .wp-block-accordion-heading__toggle-icon:focus-within {
  text-decoration: none;
}
.c-entry-body .wp-block-accordion .wp-block-accordion-item .wp-block-accordion-heading .wp-block-accordion-heading__toggle .wp-block-accordion-heading__toggle-title {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 600;
  line-height: 1.6;
  padding-left: calc(1em + 10px);
  padding-right: 30px;
}
.c-entry-body .wp-block-accordion .wp-block-accordion-item .wp-block-accordion-heading .wp-block-accordion-heading__toggle .wp-block-accordion-heading__toggle-title::before {
  content: "Q";
  margin-right: 10px;
  position: absolute;
  left: 0;
  top: 0;
}
.c-entry-body .wp-block-accordion .wp-block-accordion-item .wp-block-accordion-heading .wp-block-accordion-heading__toggle .wp-block-accordion-heading__toggle-icon {
  color: #006e76;
  font-size: clamp(0.906rem, 0.836rem + 0.31vw, 1.125rem);
}
.c-entry-body .wp-block-accordion .wp-block-accordion-item .wp-block-accordion-panel {
  color: #333333;
  line-height: 1.6;
  padding: var(--spacer-30);
  transition: opacity 0.15s, display 0.15s;
  transition-behavior: allow-discrete;
}
.c-entry-body .wp-block-accordion .wp-block-accordion-item p, .c-entry-body .wp-block-accordion .wp-block-accordion-item ul, .c-entry-body .wp-block-accordion .wp-block-accordion-item ol, .c-entry-body .wp-block-accordion .wp-block-accordion-item table {
  margin-block: calc((1em - 1lh) / 2);
  margin-top: 0;
}
.c-entry-body .wp-block-accordion .wp-block-accordion-item .wp-block-image:first-child {
  margin-top: 0;
}
.c-entry-body .wp-block-group .wp-block-group__inner-container > *:first-child {
  margin-top: 0;
}
.c-entry-body .wp-block-group .wp-block-group__inner-container > *:last-child {
  margin-bottom: 0;
}
.c-entry-body .wp-block-group .wp-block-group__inner-container > h2:first-child, .c-entry-body .wp-block-group .wp-block-group__inner-container > h3:first-child, .c-entry-body .wp-block-group .wp-block-group__inner-container > h5:first-child, .c-entry-body .wp-block-group .wp-block-group__inner-container > h6:first-child, .c-entry-body .wp-block-group .wp-block-group__inner-container > p:first-child {
  margin-top: calc((1em - 1lh) / 2);
}
.c-entry-body .wp-block-group .wp-block-group__inner-container > .wp-block-list:first-child {
  margin-top: calc((1em - 1lh) / 2 - var(--list-margin));
}
.c-entry-body .wp-block-group .wp-block-group__inner-container > .wp-block-list:last-child {
  margin-bottom: calc((1em - 1lh) / 2 - var(--list-margin));
}
.c-entry-body .box-map {
  margin: var(--block-gap) 0;
  position: relative;
  width: 100%;
  max-height: 350px;
  aspect-ratio: 16/9;
}
.c-entry-body .box-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .c-entry-body .box-map {
    height: 300px;
  }
}
.c-entry-body .box-scroll {
  margin-bottom: var(--block-gap-2);
}
.c-entry-body .box-scroll .simplebar-track.simplebar-vertical {
  display: none;
}
.c-entry-body .box-scroll {
  /* @include m.sp { */
  overflow-x: auto;
  white-space: nowrap;
}
.c-entry-body .box-scroll .wp-block-group__inner-container > * {
  padding-block: var(--block-gap-2);
}
.c-entry-body .box-scroll table {
  width: auto !important;
}
.c-entry-body .box-scroll {
  /* } */
}
.c-entry-body *:not(p):not(h2):not(h3):has(+ .box-scroll) {
  margin-top: var(--block-gap-2);
}
.c-entry-body .bg-box {
  padding: var(--spacer-30);
  background-color: #F5F5F5;
}
.c-entry-body .bg-box .wp-block-list:not(.menu-list) {
  margin-top: calc(var(--block-gap-2) + (1em - 1lh) / 2 - var(--list-margin));
}
.c-entry-body .border-box {
  border: 1px solid #E5E5E5;
  padding: var(--spacer-30);
}
.c-entry-body .border-box .wp-block-list:not(.menu-list) {
  margin-top: calc(var(--block-gap-2) + (1em - 1lh) / 2 - var(--list-margin));
}
.c-entry-body .group-accordion .c-accordion__header {
  margin-bottom: 0;
}
.c-entry-body .group-accordion .c-accordion__content {
  margin-top: var(--block-gap);
}
.c-entry-body .box-width-50 {
  width: 50%;
}
@media only screen and (max-width: 640px) {
  .c-entry-body .box-width-50 {
    width: 80%;
  }
}
.c-entry-body {
  /* .has-key-color{
    color: v.$c-key;
  }
  .has-key-background-color{
    background-color: v.$c-key;
  }
  .has-blue-color{
    color: v.$c-blue;
  }
  .has-blue-background-color{
    background-color: v.$c-blue;
  }
  .has-light-blue-color{
    color: v.$c-light-blue;
  }
  .has-light-blue-background-color{
    background-color: v.$c-light-blue;
  }
  .has-faint-blue-color{
    color: v.$c-faint-blue;
  }
  .has-faint-blue-background-color{
    background-color: v.$c-faint-blue;
  }
  .has-red-color{
    color: v.$c-red;
  }
  .has-red-background-color{
    background-color: v.$c-red;
  }
  .has-green-color{
    color: v.$c-green;
  }
  .has-green-background-color{
    background-color: v.$c-green;
  }
  .has-light-yellow-color{
    color: v.$c-light-yellow;
  }
  .has-light-yellow-background-color{
    background-color: v.$c-light-yellow;
  }
  .has-light-orange-color{
    color: v.$c-light-orange;
  }
  .has-light-orange-background-color{
    background-color: v.$c-light-orange;
  }
  .has-brown-color{
    color: v.$c-brown;
  }
  .has-brown-background-color{
    background-color: v.$c-brown;
  }
  .has-black-color{
    color: #000000;
  }
  .has-black-background-color{
    background-color: #000000;
  }
  .has-dark-gray-color{
    color: v.$c-dark-gray;
  }
  .has-dark-gray-background-color{
    background-color: v.$c-dark-gray;
  }
  .has-gray-color{
    color: v.$c-gray;
  }
  .has-gray-background-color{
    background-color: v.$c-gray;
  }
  .has-light-gray-color{
    color: v.$c-light-gray;
  }
  .has-light-gray-background-color{
    background-color: v.$c-light-gray;
  }
  .has-faint-gray-color{
    color: v.$c-faint-gray;
  }
  .has-faint-gray-background-color{
    background-color: v.$c-faint-gray;
  }
  .has-black-color{
    color: #000000;
  }
  .has-black-background-color{
    background-color: #000000;
  }
  .has-white-color{
    color: v.$c-white;
  }
  .has-white-background-color{
    background-color: v.$c-white;
  } */
}
.c-entry-body > *:first-child {
  margin-top: 0;
}
.c-entry-body > *:last-child {
  margin-bottom: 0;
}
.c-entry-body > h2:first-child, .c-entry-body > h3:first-child, .c-entry-body > h4:first-child, .c-entry-body > h5:first-child, .c-entry-body > h6:first-child, .c-entry-body > p:first-child {
  margin-top: calc((1em - 1lh) / 2);
}
.c-entry-body > h2:last-child, .c-entry-body > h3:last-child, .c-entry-body > h4:last-child, .c-entry-body > h5:last-child, .c-entry-body > h6:last-child, .c-entry-body > p:last-child {
  margin-bottom: calc((1em - 1lh) / 2);
}
.c-entry-body > .wp-block-list:first-child {
  margin-top: calc((1em - 1lh) / 2 - var(--list-margin));
}
.c-entry-body > .wp-block-list:last-child {
  margin-bottom: calc((1em - 1lh) / 2 - var(--list-margin));
}
.c-entry-body > .wp-block-group.group-wide-bg:first-child {
  margin-top: calc(var(--spacer-80) * -1);
}
.c-entry-body > .wp-block-group.group-wide-bg:last-child {
  margin-bottom: 0;
}
.c-entry-body > section:first-child > h2:first-child {
  margin-top: calc((1em - 1lh) / 2);
}
.c-entry-body > section > article:last-child > *:last-child {
  margin-bottom: 0;
}
.c-entry-body > section > article:last-child > h2:last-child, .c-entry-body > section > article:last-child > h3:last-child, .c-entry-body > section > article:last-child > h4:last-child, .c-entry-body > section > article:last-child > h5:last-child, .c-entry-body > section > article:last-child > h6:last-child, .c-entry-body > section > article:last-child > p:last-child {
  margin-bottom: calc((1em - 1lh) / 2);
}
.c-entry-body.tmpl-05 p {
  margin: 0;
}

.c-form__required::before {
  content: "";
}

.c-form {
  padding-inline: var(--spacer-30);
}
.c-form__required {
  display: inline-block;
  margin-left: 5px;
  padding: 5px 10px;
  font-size: 0.75em;
  line-height: 1;
  background-color: #b42a2a;
  color: #ffffff;
}
.c-form p.c-form__sample {
  margin: calc(10px - 0.3em) 0 -0.3em;
  color: #707070;
  font-size: clamp(0.813rem, 0.775rem + 0.09vw, 0.875rem);
  font-weight: 500;
}
.c-form__column::after {
  display: block;
  content: "";
  clear: both;
}
.c-form__column > legend {
  width: 244px;
  float: left;
}
.c-form__field {
  margin-left: 30px;
  width: calc(100% - 244px - 30px);
  float: left;
}
.c-form__footer {
  width: calc(100% - 244px - 30px);
  margin: var(--spacer-65) 0 0 auto;
}
.c-form__footer > .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media only screen and (max-width: 768px) {
  .c-form__column > legend {
    width: 100%;
    float: none;
  }
  .c-form__field {
    width: 100%;
    margin: 5px 0 0;
    float: none;
  }
  .c-form__footer {
    width: 100%;
  }
}
.c-form fieldset {
  margin-top: var(--spacer-35);
}
.c-form fieldset legend {
  margin: calc(10px - 0.3em) 0;
  font-weight: bold;
  line-height: 1.6;
}
.c-form input {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(0.938rem, 0.9rem + 0.09vw, 1rem);
}
.c-form input[type=text], .c-form input[type=tel], .c-form input[type=email] {
  padding: calc(10px - 0.3em) 10px;
  font: inherit;
  background-color: #ffffff;
  border: 1px solid #777777;
  border-radius: 3px;
}
.c-form input[type=checkbox] {
  width: 1em;
  height: 1em;
  background: #ffffff;
  border-radius: 3px;
  border-color: #777777;
  margin-right: 10px;
  accent-color: #004c52;
  vertical-align: middle;
}
.c-form input[type=radio] {
  width: 1em;
  height: 1em;
  border-color: #777777;
  margin-right: 10px;
  accent-color: #004c52;
  vertical-align: middle;
}
.c-form input[type=file] {
  padding: 8px 10px;
  border: 1px solid #777777;
  border-radius: 3px;
  cursor: pointer;
}
.c-form input[type=file]::file-selector-button {
  margin-right: 15px;
  padding: 8px 10px;
  border: 1px solid #006e76;
  border-radius: 5px;
  color: #006e76;
}
.c-form input[type=date] {
  padding: 8px 10px;
  border: 1px solid #777777;
  border-radius: 3px;
  cursor: pointer;
}
.c-form textarea {
  padding: calc(10px - 0.3em) 10px;
  background-color: #f7f8f8;
  border: 1px solid #777777;
  border-radius: 3px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(0.938rem, 0.9rem + 0.09vw, 1rem);
}
.c-form select {
  padding: calc(10px - 0.3em) 10px;
  font: inherit;
  background-color: #f7f8f8;
  border: 1px solid #777777;
  border-radius: 3px;
}
.c-form .width-full {
  width: 100%;
}
.c-form__btn-wrapper {
  display: flex;
  justify-content: center;
  gap: var(--spacer-xs);
  padding-top: var(--spacer-30);
  border-top: 1px solid #cccccc;
}
@media only screen and (max-width: 640px) {
  .c-form__btn-wrapper {
    flex-wrap: wrap;
  }
}
.c-form__btn-wrapper__btn-wrapper {
  border-top: 1px solid #cccccc;
}
.c-form__btn {
  width: 100%;
  max-width: 320px;
}
.c-form__btn:has(.no-arrow)::after {
  display: none;
}
.c-form__btn input {
  position: relative;
  margin: 0 auto;
  padding: calc(24px - 0.3em) 3.375em;
  background-color: #006e76;
  font-size: clamp(0.813rem, 0.752rem + 0.27vw, 1rem);
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  cursor: pointer;
  line-height: 1.6;
  transition: background-color 0.3s;
  text-align: left;
  width: 100%;
  background-image: url("/app/themes/iks/assets/img/commn/icon-arrow-w.svg");
  background-repeat: no-repeat;
  background-position: right 1.875em center;
  background-size: 1em;
}
@media (any-hover: hover) {
  .c-form__btn input:hover {
    background-color: #004c52;
  }
}
.c-form__btn input:focus-within {
  background-color: #004c52;
}
.c-form__btn input.color-red {
  background-color: #a50204;
}
@media (any-hover: hover) {
  .c-form__btn input.color-red:hover {
    background-color: #f10306;
  }
}
.c-form__btn input.color-red:focus-within {
  background-color: #f10306;
}
.c-form__btn input.color-green {
  background-color: #01592c;
}
@media (any-hover: hover) {
  .c-form__btn input.color-green:hover {
    background-color: #02be5d;
  }
}
.c-form__btn input.color-green:focus-within {
  background-color: #02be5d;
}
.c-form__btn:has(.wpcf7-previous)::after, .c-form__btn:has(.previous)::after {
  right: auto;
  left: 1.875em;
  transform: scale(-1, 1);
}
.c-form__messeage-count {
  color: #707070;
  font-size: clamp(0.813rem, 0.775rem + 0.09vw, 0.875rem);
  font-weight: 500;
}
.c-form .wpcf7-form-control:not(.wpcf7-select):not(.wpcf7-file), .c-form .c-form__control {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 2em;
}
.c-form .wpcf7-list-item {
  margin: 0;
}
.c-form .wpcf7-not-valid-tip, .c-form .c-form__error {
  display: block;
  margin-top: 10px;
  padding: 5px 10px;
  font-size: 0.75em;
  line-height: 1.4;
  border-radius: 5px;
  color: #b42a2a;
}
.c-form .wpcf7-spinner {
  display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
  padding: 10px;
  border-radius: 5px;
  border-color: #004c52 !important;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output {
  padding: 10px;
  border-radius: 5px;
}
.wpcf7 form.validating .wpcf7-response-output {
  border: none;
  padding: 0;
}

.p-front-visual {
  position: relative;
  width: 100%;
  padding-top: 41.6666666667%;
}
@media only screen and (max-width: 1080px) {
  .p-front-visual {
    padding-top: 480px;
  }
}
.p-front-disaster-status {
  margin-top: 55px;
}
@media only screen and (max-width: 1300px) {
  .p-front-disaster-status {
    margin-top: var(--spacer-50);
  }
}
.p-front-disaster-status + .p-front-disaster-status {
  margin-top: var(--spacer-10);
}
.p-front-disaster-status__inner {
  display: flex;
  justify-content: space-between;
  column-gap: var(--spacer-40);
  background-color: #eff0f0;
}
@media only screen and (max-width: 768px) {
  .p-front-disaster-status__inner {
    flex-direction: column;
  }
}
.p-front-disaster-status__heading {
  flex-shrink: 0;
  background-color: #c20a0a;
  display: flex;
  row-gap: var(--spacer-20);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 35px var(--spacer-30);
  max-width: 320px;
  width: 100%;
  transition: color 0.3s, font-weight 0.3s;
}
@media only screen and (max-width: 1300px) {
  .p-front-disaster-status__heading {
    max-width: 250px;
  }
}
@media only screen and (max-width: 768px) {
  .p-front-disaster-status__heading {
    max-width: 100%;
  }
}
.p-front-disaster-status__heading:has(.p-front-disaster-status__heading-link:hover) {
  background-color: #6a180a;
}
.p-front-disaster-status__heading:has(.p-front-disaster-status__heading-link:focus-within) {
  background-color: #6a180a;
}
.p-front-disaster-status__heading-text {
  color: #ffffff;
  font-size: clamp(1.125rem, 1.004rem + 0.54vw, 1.5rem);
  font-weight: 600;
}
.p-front-disaster-status__heading-link {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: clamp(0.813rem, 0.752rem + 0.27vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s, font-weight 0.3s;
  padding-bottom: 2px;
  padding-right: 30px;
}
.p-front-disaster-status__heading-link:before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 1.1em;
  height: 1.1em;
  mask-image: url(/app/themes/iks/assets/img/commn/icon-arrow.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: #ffffff;
  transition: background-color 0.3s;
}
.p-front-disaster-status__heading-link::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background-color: #fff;
  opacity: 0;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .p-front-disaster-status__heading-link:hover {
    color: #fff;
  }
  .p-front-disaster-status__heading-link:hover::after {
    opacity: 1;
  }
  .p-front-disaster-status__heading-link:hover:before {
    background-color: #fff;
  }
}
.p-front-disaster-status__heading-link:focus-within {
  color: #fff;
}
.p-front-disaster-status__heading-link:focus-within::after {
  opacity: 1;
}
.p-front-disaster-status__heading-link:focus-within:before {
  background-color: #fff;
}
.p-front-disaster-status__heading-link :visited {
  color: #c2f1f4;
}
.p-front-disaster-status__list-wrapper {
  flex-grow: 1;
  max-width: 840px;
  padding: 30px 30px 30px 0;
}
@media only screen and (max-width: 1300px) {
  .p-front-disaster-status__list-wrapper {
    padding: var(--spacer-30);
  }
}
.p-front-disaster-status__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.p-front-disaster-status__item {
  font-size: clamp(0.875rem, 0.8rem + 0.32vw, 1rem);
  font-weight: 600;
  line-height: 1.6;
  color: #333333;
}
@media only screen and (max-width: 1300px) {
  .p-front-disaster-status__item {
    margin-bottom: 5px;
  }
}
.p-front-disaster-status__time {
  font-size: clamp(0.688rem, 0.627rem + 0.27vw, 0.875rem);
  text-align: left;
  margin-top: var(--spacer-20);
}
.p-front-info-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--spacer-10);
  background-color: #eff0f0;
  border-left: 5px solid #b42a2a;
  padding: var(--spacer-20) var(--spacer-15) var(--spacer-20) var(--spacer-50);
  position: relative;
  transition: background-color 0.3s ease;
}
@media only screen and (max-width: 768px) {
  .p-front-info-list__item {
    align-items: flex-end;
  }
}
.p-front-info-list__item:hover {
  background-color: #e6f1f2;
}
.p-front-info-list__item:hover > .c-circle-arrow::before {
  opacity: 1;
  transform: scale(1);
}
.p-front-info-list__item > .c-circle-arrow {
  min-width: 55px;
}
.p-front-info-list__item-wrap {
  display: flex;
  align-items: center;
  column-gap: var(--spacer-50);
  flex-grow: 1;
  min-width: 0;
}
@media only screen and (max-width: 640px) {
  .p-front-info-list__item-wrap {
    flex-direction: column;
    row-gap: var(--spacer-10);
    align-items: flex-start;
  }
}
.p-front-info-list.--second-color > .p-front-info-list__item {
  border-left-color: #6a180a;
}
.p-front-info-list__time {
  font-size: 14px;
  font-size: clamp(0.688rem, 0.627rem + 0.27vw, 0.875rem);
  line-height: 1.6;
  flex-shrink: 0;
}
.p-front-info-list__contnts {
  display: flex;
  flex-direction: column;
  gap: var(--spacer-10);
  flex-grow: 1;
  min-width: 0;
  width: 100%;
}
.p-front-info-list__category {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacer-10);
  flex-shrink: 0;
}
.p-front-info-list__category-link {
  display: block;
  text-decoration: none;
  font-size: clamp(0.688rem, 0.627rem + 0.27vw, 0.875rem);
  line-height: 1;
  color: #fff;
  background-color: #006e76;
  padding: 4px 10px 6px 10px;
  z-index: 1;
  position: relative;
  transition: background-color 0.3s;
}
.p-front-info-list__category-link:hover {
  background-color: #004c52;
  color: #fff;
}
.p-front-info-list__title {
  font-size: clamp(0.875rem, 0.8rem + 0.32vw, 1rem);
  font-weight: 600;
  line-height: 1.6;
  flex-grow: 1;
  width: 100%;
}
.p-front-info-list__title-link {
  display: block;
  width: 100%;
  text-decoration: none;
  color: #333333;
}
.p-front-info-list__title-link:before {
  position: absolute;
  display: block;
  content: "";
  inset: 0;
}
.p-front-info-list__title-link:hover {
  color: #004c52;
}
.p-front-important {
  margin-top: 70px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 70px;
}
@media only screen and (max-width: 1920px) {
  .p-front-important {
    max-width: 1400px;
    width: 100%;
  }
}
@media only screen and (max-width: 1300px) {
  .p-front-important {
    margin-top: var(--spacer-70);
    margin-bottom: var(--spacer-70);
  }
}
.p-front-important__heading-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  column-gap: 35px;
  margin-bottom: 35px;
  position: relative;
}
@media only screen and (max-width: 1300px) {
  .p-front-important__heading-wrap {
    margin-bottom: var(--spacer-30);
  }
}
.p-front-important__heading-wrap::before {
  content: "NOTICE";
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #eff0f0;
  position: absolute;
  top: 0;
  left: -1.5625vw;
  transform: rotate(90deg);
  transform-origin: top left;
  font-size: clamp(2rem, 1.154rem + 3.76vw, 4.375rem);
  letter-spacing: 0.05em;
  white-space: nowrap;
  pointer-events: none;
}
@media only screen and (max-width: 1300px) {
  .p-front-important__heading-wrap::before {
    font-size: clamp(1.5rem, 1.179rem + 1.43vw, 2.5rem);
    transform: initial;
    left: calc(6em + 20px);
  }
}
@media only screen and (max-width: 640px) {
  .p-front-important__heading-wrap::before {
    display: none;
  }
}
.p-front-important__heading {
  color: #b42a2a;
  font-size: clamp(1.313rem, 1.092rem + 0.98vw, 2rem);
  line-height: 1.4;
  font-weight: 600;
}
.p-front-important__archive-link {
  position: relative;
  display: block;
  text-decoration: none;
  font-size: clamp(0.813rem, 0.752rem + 0.27vw, 1rem);
  font-weight: 600;
  color: #333333;
  transition: color 0.3s, font-weight 0.3s;
  padding-bottom: 2px;
  padding-right: 30px;
}
.p-front-important__archive-link:before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 1.1em;
  height: 1.1em;
  mask-image: url(/app/themes/iks/assets/img/commn/icon-arrow.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: #333333;
  transition: background-color 0.3s;
}
.p-front-important__archive-link::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background-color: #004c52;
  opacity: 0;
  transition: opacity 0.3s;
}
.p-front-important__archive-link:hover {
  color: #004c52;
}
.p-front-important__archive-link:hover::after {
  opacity: 1;
}
.p-front-important__archive-link:hover:before {
  background-color: #004c52;
}
.p-front-important > .p-front-info-list__item {
  border-left: 5px solid #b42a2a;
}
.p-front-pickup {
  background: linear-gradient(to right, #3d1409 0%, #6a180a 50%, #fff 50%, #fff 100%);
}
@media only screen and (max-width: 768px) {
  .p-front-pickup {
    background: linear-gradient(to right, #3d1409 0%, #6a180a 60%, #fff 40%, #fff 100%);
  }
}
@media only screen and (max-width: 640px) {
  .p-front-pickup {
    background: linear-gradient(to right, #3d1409 0%, #6a180a 100%);
  }
}
.p-front-pickup__inner {
  width: 72.9166666667%;
  margin: 0 auto;
  padding: var(--spacer-70) 0;
}
@media only screen and (max-width: 1920px) {
  .p-front-pickup__inner {
    max-width: 1400px;
    width: 100%;
  }
}
.p-front-pickup__contents {
  margin: 0 auto;
  display: flex;
  column-gap: 30px;
  justify-content: space-between;
}
@media only screen and (max-width: 1300px) {
  .p-front-pickup__contents {
    flex-direction: column;
    row-gap: var(--spacer-30);
  }
}
.p-front-pickup__title {
  color: #fff;
  font-size: 32px;
  line-height: 1.4;
  font-weight: 600;
  font-feature-settings: "palt";
  position: relative;
}
@media only screen and (max-width: 1920px) {
  .p-front-pickup__title {
    font-size: clamp(1.313rem, 1.092rem + 0.98vw, 2rem);
  }
}
.p-front-pickup__title::before {
  content: "PICKUP";
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #6a180a;
  position: absolute;
  top: 50px;
  left: 0.8em;
  transform: rotate(90deg);
  transform-origin: top left;
  font-size: clamp(3.75rem, 2.709rem + 5.17vw, 7.5rem);
  letter-spacing: 0.05em;
  white-space: nowrap;
  pointer-events: none;
}
@media only screen and (max-width: 1300px) {
  .p-front-pickup__title::before {
    font-size: clamp(3rem, 1.955rem + 4.64vw, 6.25rem);
    transform: initial;
    left: calc(2em + 20px);
    top: -0.5em;
  }
}
@media only screen and (max-width: 640px) {
  .p-front-pickup__title::before {
    display: none;
  }
}
.p-front-pickup-button-wrap {
  width: 60.4166666667%;
}
@media only screen and (max-width: 1920px) {
  .p-front-pickup-button-wrap {
    max-width: 920px;
    width: 100%;
  }
}
@media only screen and (max-width: 1300px) {
  .p-front-pickup-button-wrap {
    margin-left: auto;
  }
}
.p-front-pickup-button {
  display: block;
  background-color: #006e76;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.p-front-pickup-button :hover {
  background-color: #004c52;
}
.p-front-pickup-button__inner {
  padding: var(--spacer-30) var(--spacer-10) var(--spacer-15) var(--spacer-40);
  display: flex;
  column-gap: var(--spacer-40);
  align-items: center;
  min-height: 165px;
}
.p-front-pickup-button__icon {
  flex: 0 0 85px;
}
@media only screen and (max-width: 1300px) {
  .p-front-pickup-button__icon {
    flex: 0 0 var(--spacer-80);
  }
}
@media only screen and (max-width: 640px) {
  .p-front-pickup-button__icon {
    display: none;
  }
}
.p-front-pickup-button__icon.--sp-title {
  display: none;
}
@media only screen and (max-width: 640px) {
  .p-front-pickup-button__icon.--sp-title {
    display: block;
    flex: 0 0 35px;
  }
}
.p-front-pickup-button__icon.--01 {
  width: 85px;
  height: 96px;
  background-color: #ffffff;
  mask: url("/app/themes/iks/assets/img/front/front-icon-pickup01.svg") no-repeat center/contain;
  -webkit-mask: url("/app/themes/iks/assets/img/front/front-icon-pickup01.svg") no-repeat center/contain;
}
@media only screen and (max-width: 640px) {
  .p-front-pickup-button__icon.--01 {
    width: 35px;
    height: 46px;
  }
}
.p-front-pickup-button__icon.--02 {
  width: 85px;
  height: 67px;
  background-color: #ffffff;
  mask: url("/app/themes/iks/assets/img/front/front-icon-pickup02.svg") no-repeat center/contain;
  -webkit-mask: url("/app/themes/iks/assets/img/front/front-icon-pickup02.svg") no-repeat center/contain;
}
@media only screen and (max-width: 640px) {
  .p-front-pickup-button__icon.--02 {
    width: 35px;
    height: 32px;
  }
}
.p-front-pickup-button__icon.--03 {
  width: 85px;
  height: 66px;
  background-color: #ffffff;
  mask: url("/app/themes/iks/assets/img/front/front-icon-pickup03.svg") no-repeat center/contain;
  -webkit-mask: url("/app/themes/iks/assets/img/front/front-icon-pickup03.svg") no-repeat center/contain;
}
@media only screen and (max-width: 640px) {
  .p-front-pickup-button__icon.--03 {
    width: 35px;
    height: 31px;
  }
}
.p-front-pickup-button__textarea-wrap {
  display: flex;
  flex-grow: 1;
  column-gap: 8px;
  justify-content: space-between;
  align-items: flex-end;
}
.p-front-pickup-button__textarea {
  color: #ffffff;
  margin-bottom: var(--spacer-30);
}
@media only screen and (max-width: 640px) {
  .p-front-pickup-button__textarea {
    margin-bottom: 0;
  }
}
.p-front-pickup-button__title {
  font-size: clamp(1.125rem, 1.004rem + 0.54vw, 1.5rem);
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: var(--spacer-20);
}
@media only screen and (max-width: 640px) {
  .p-front-pickup-button__title {
    display: flex;
    align-items: center;
    column-gap: var(--spacer-20);
  }
}
.p-front-pickup-button__text {
  font-size: 1rem;
  font-size: clamp(0.813rem, 0.752rem + 0.27vw, 1rem);
  line-height: 1.6;
  margin-bottom: 8px;
}
.p-front-pickup-button:hover .c-circle-arrow::before {
  opacity: 1;
  transform: scale(1);
}
.p-front-pickup-button:hover .p-front-pickup-button__textarea {
  color: #c2f1f4;
}
.p-front-pickup-button:hover .p-front-pickup-button__icon {
  background-color: #c2f1f4;
}
.p-front-pickup-button:hover .c-circle-arrow__img {
  background-color: #c2f1f4;
}
.p-front-pickup-button + .p-front-pickup-button {
  margin-top: var(--spacer-25);
}
.p-front-pickup-button[target=_blank] .c-circle-arrow__img {
  width: 20px;
  height: 16px;
  background-color: #c2f1f4;
  mask: url("/app/themes/iks/assets/img/commn/icon-link-w.svg") no-repeat center/contain;
  -webkit-mask: url("/app/themes/iks/assets/img/commn/icon-link-w.svg") no-repeat center/contain;
}
.p-front-disaster-status + .p-front-pickup {
  margin-top: 70px;
}
@media only screen and (max-width: 1300px) {
  .p-front-disaster-status + .p-front-pickup {
    margin-top: var(--spacer-70);
  }
}
.p-front-news {
  background-image: linear-gradient(to right, #ffffff 0%, #ffffff 50%, transparent 50%, transparent 100%), url("/app/themes/iks/assets/img/front/front-bg-news.jpg");
  background-repeat: no-repeat;
  background-size: auto 100%, cover;
  background-position: left top, right center;
  padding-top: 80px;
  padding-bottom: 125px;
}
@media only screen and (max-width: 1300px) {
  .p-front-news {
    padding-top: var(--spacer-80);
    padding-bottom: var(--spacer-120);
  }
}
@media only screen and (max-width: 768px) {
  .p-front-news {
    background-image: linear-gradient(to right, #ffffff 0%, #ffffff 40%, transparent 40%, transparent 100%), url("/app/themes/iks/assets/img/front/front-bg-news.jpg");
    background-image: none;
  }
}
.p-front-news__heading-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  column-gap: var(--spacer-35);
  margin-bottom: var(--spacer-35);
  position: relative;
}
.p-front-news__heading-wrap::before {
  content: "NEWS";
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #6a180a;
  position: absolute;
  top: 0;
  left: -30px;
  transform: rotate(90deg);
  transform-origin: top left;
  font-size: clamp(2rem, 1.154rem + 3.76vw, 4.375rem);
  letter-spacing: 0.05em;
  white-space: nowrap;
  pointer-events: none;
}
@media only screen and (max-width: 1300px) {
  .p-front-news__heading-wrap::before {
    font-size: clamp(1.5rem, 1.179rem + 1.43vw, 2.5rem);
    transform: initial;
    left: calc(4em + 20px);
    top: 0.1em;
  }
}
@media only screen and (max-width: 640px) {
  .p-front-news__heading-wrap::before {
    display: none;
  }
}
.p-front-news__heading {
  color: #6a180a;
  font-size: clamp(1.313rem, 1.092rem + 0.98vw, 2rem);
  line-height: 1.4;
  font-weight: 600;
}
.p-front-news__archive-link {
  position: relative;
  display: block;
  text-decoration: none;
  font-size: clamp(0.813rem, 0.752rem + 0.27vw, 1rem);
  font-weight: 600;
  color: #ffffff;
  transition: color 0.3s, font-weight 0.3s;
  padding-bottom: 2px;
  padding-right: 30px;
}
@media only screen and (max-width: 768px) {
  .p-front-news__archive-link {
    color: #004c52;
  }
}
.p-front-news__archive-link:before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 1.1em;
  height: 1.1em;
  mask-image: url(/app/themes/iks/assets/img/commn/icon-arrow.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: #ffffff;
  transition: background-color 0.3s;
}
@media only screen and (max-width: 768px) {
  .p-front-news__archive-link:before {
    background-color: #004c52;
  }
}
.p-front-news__archive-link::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background-color: #c2f1f4;
  opacity: 0;
  transition: opacity 0.3s;
}
.p-front-news__archive-link:hover {
  color: #c2f1f4;
}
.p-front-news__archive-link:hover::after {
  opacity: 1;
}
.p-front-news__archive-link:hover:before {
  background-color: #c2f1f4;
}
.p-front-about {
  background-color: #eff0f0;
  position: relative;
  width: 100%;
}
.p-front-about__inner {
  display: flex;
  justify-content: space-between;
  padding: 80px 0 100px 0;
  column-gap: 8.3333333333vw;
}
@media only screen and (max-width: 1920px) {
  .p-front-about__inner {
    padding: var(--spacer-80) 0 var(--spacer-100) 0;
  }
}
@media only screen and (max-width: 768px) {
  .p-front-about__inner {
    flex-direction: column;
    row-gap: var(--spacer-50);
  }
}
.p-front-about__inner-decoration {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 160px;
  line-height: 1;
  color: #ffffff;
  text-align: right;
  position: absolute;
  right: 15px;
  bottom: -32px;
  z-index: 0;
  pointer-events: none;
}
@media only screen and (max-width: 1600px) {
  .p-front-about__inner-decoration {
    font-size: 8.3333333333vw;
  }
}
@media only screen and (max-width: 1300px) {
  .p-front-about__inner-decoration {
    display: none;
  }
}
.p-front-about__contetns {
  font-feature-settings: "palt";
  z-index: 1;
  max-width: 315px;
}
@media only screen and (max-width: 768px) {
  .p-front-about__contetns {
    max-width: 100%;
  }
}
.p-front-about__heading-wrap {
  position: relative;
}
.p-front-about__heading-wrap::before {
  content: "ABOUT";
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  position: absolute;
  top: 0;
  left: -30px;
  transform: rotate(90deg);
  transform-origin: top left;
  font-size: clamp(2rem, 1.154rem + 3.76vw, 4.375rem);
  letter-spacing: 0.05em;
  white-space: nowrap;
  pointer-events: none;
}
@media only screen and (max-width: 1300px) {
  .p-front-about__heading-wrap::before {
    font-size: clamp(1.5rem, 1.179rem + 1.43vw, 2.5rem);
    transform: initial;
    left: calc(7.5em + 25px);
    top: 56%;
  }
}
@media only screen and (max-width: 640px) {
  .p-front-about__heading-wrap::before {
    display: none;
  }
}
.p-front-about__heading {
  font-size: clamp(1.313rem, 1.092rem + 0.98vw, 2rem);
  font-weight: 600;
  line-height: 1.4;
  color: #6a180a;
  margin-bottom: var(--spacer-40);
}
.p-front-about__textarea {
  font-size: clamp(0.875rem, 0.8rem + 0.32vw, 1rem);
  line-height: 1.6;
}
.p-front-about__link {
  position: relative;
  display: block;
  text-decoration: none;
  font-size: clamp(0.813rem, 0.752rem + 0.27vw, 1rem);
  font-weight: 600;
  margin-top: 40px;
  font-size: clamp(0.875rem, 0.8rem + 0.32vw, 1rem);
  transition: color 0.3s, font-weight 0.3s;
  padding-bottom: 2px;
  padding-right: 30px;
  width: fit-content;
}
.p-front-about__link:before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 1.1em;
  height: 1.1em;
  mask-image: url(/app/themes/iks/assets/img/commn/icon-arrow.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: #006e76;
  transition: background-color 0.3s;
}
.p-front-about__link::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background-color: #004c52;
  opacity: 0;
  transition: opacity 0.3s;
}
.p-front-about__link:hover {
  color: #004c52;
}
.p-front-about__link:hover::after {
  opacity: 1;
}
.p-front-about__link:hover:before {
  background-color: #004c52;
}
.p-front-about__figure {
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .p-front-about__figure {
    min-width: 100%;
  }
}
.p-front-about__figure img {
  width: 100%;
  height: auto;
}
.p-front-composition {
  padding-top: var(--spacer-80);
  padding-bottom: var(--spacer-120);
}
.p-front-composition__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  column-gap: var(--spacer-60);
}
@media only screen and (max-width: 768px) {
  .p-front-composition__inner {
    flex-direction: column;
  }
}
.p-front-composition__heading {
  font-size: clamp(1.313rem, 1.092rem + 0.98vw, 2rem);
  font-weight: 600;
  line-height: 1.4;
  color: #6a180a;
  font-feature-settings: "palt";
  min-width: 4em;
  margin-bottom: var(--spacer-30);
}
.p-front-composition__block {
  display: flex;
  gap: var(--spacer-20) var(--spacer-40);
}
@media only screen and (max-width: 640px) {
  .p-front-composition__block {
    flex-direction: column;
    width: 100%;
  }
}
.p-front-composition__link {
  display: block;
  text-decoration: none;
  background-color: #eff0f0;
  transition: background-color 0.3s ease;
}
@media (any-hover: hover) {
  .p-front-composition__link:hover {
    background-color: #e6f1f2;
  }
}
.p-front-composition__link:focus-within {
  background-color: #e6f1f2;
}
.p-front-composition-link-card {
  box-sizing: border-box;
  text-align: center;
  padding: var(--spacer-45);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-front-composition-link-card__title {
  font-size: clamp(1.125rem, 1.004rem + 0.54vw, 1.5rem);
  font-weight: 600;
  line-height: 1.4;
  color: #333333;
  margin-bottom: var(--spacer-20);
}
@media only screen and (max-width: 640px) {
  .p-front-composition-link-card__logo {
    max-width: 220px;
  }
}

.p-news-list__link {
  display: flex;
  flex-wrap: wrap;
  text-decoration: none;
  overflow-wrap: anywhere;
  width: 100%;
}
@media (any-hover: hover) {
  .p-news-list__link:hover .c-arrow {
    --arrow-color: #004c52;
  }
  .p-news-list__link:hover .p-news-list__date {
    color: #004c52;
  }
}
.p-news-list__link:focus-within .c-arrow {
  --arrow-color: #004c52;
}
.p-news-list__link:focus-within .p-news-list__date {
  color: #004c52;
}
.p-news-list .c-arrow {
  position: relative;
  --arrow-width: 6px;
  margin-right: 10px;
  flex-grow: 0;
  flex-shrink: 0;
  height: 1.6em;
}
.p-news-list__date {
  display: inline-block;
  width: 10em;
  flex-grow: 0;
  flex-shrink: 0;
  color: #333333;
  transition: color 0.3s;
  line-height: 1.6;
}
.p-news-list__title {
  flex-grow: 1;
  flex-shrink: 1;
  font-weight: bold;
  margin-block: 0;
}
.p-news-archive__heading {
  font-size: clamp(1.125rem, 1.004rem + 0.54vw, 1.5rem);
  font-weight: 600;
  margin-bottom: var(--spacer-45);
  line-height: 1.4;
}
.p-news-archive .p-news-list__item {
  padding-block: var(--spacer-20);
  border-bottom: 1px solid #E5E5E5;
}
.p-news-archive-list {
  margin-top: var(--spacer-30);
  margin-bottom: var(--spacer-30);
}
.p-news-archive-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--spacer-10);
  background-color: #eff0f0;
  border-left: 5px solid #6a180a;
  padding: var(--spacer-20) var(--spacer-15) var(--spacer-20) var(--spacer-50);
  position: relative;
}
@media only screen and (max-width: 768px) {
  .p-news-archive-list__item {
    align-items: flex-end;
  }
}
@media (any-hover: hover) {
  .p-news-archive-list__item:hover {
    background-color: #e6f1f2;
  }
  .p-news-archive-list__item:hover > .c-circle-arrow::before {
    opacity: 1;
    transform: scale(1);
  }
}
.p-news-archive-list__item:focus-within {
  background-color: #e6f1f2;
}
.p-news-archive-list__item:focus-within > .c-circle-arrow::before {
  opacity: 1;
  transform: scale(1);
}
.p-news-archive-list__item > .c-circle-arrow {
  min-width: 55px;
}
.p-news-archive-list__item-wrap {
  display: flex;
  align-items: center;
  column-gap: var(--spacer-50);
  flex-grow: 1;
  min-width: 0;
}
@media only screen and (max-width: 640px) {
  .p-news-archive-list__item-wrap {
    flex-direction: column;
    row-gap: var(--spacer-10);
    align-items: flex-start;
  }
}
.p-news-archive-list__time {
  font-size: 14px;
  font-size: clamp(0.688rem, 0.627rem + 0.27vw, 0.875rem);
  line-height: 1.6;
  flex-shrink: 0;
}
.p-news-archive-list__contnts {
  display: flex;
  flex-direction: column;
  gap: var(--spacer-10);
  flex-grow: 1;
  min-width: 0;
  width: 100%;
}
.p-news-archive-list__category {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacer-10);
  flex-shrink: 0;
}
.p-news-archive-list__category-link {
  display: block;
  text-decoration: none;
  font-size: 14px;
  font-size: clamp(0.688rem, 0.627rem + 0.27vw, 0.875rem);
  line-height: 1;
  color: #fff;
  background-color: #006e76;
  padding: 4px 10px 6px 10px;
  z-index: 1;
  position: relative;
}
@media (any-hover: hover) {
  .p-news-archive-list__category-link:hover {
    background-color: #004c52;
    color: #fff;
  }
}
.p-news-archive-list__category-link:focus-within {
  background-color: #004c52;
  color: #fff;
}
.p-news-archive-list__title {
  flex-grow: 1;
  min-width: 0;
  font-size: 16px;
  font-size: clamp(0.813rem, 0.752rem + 0.27vw, 1rem);
  line-height: 1.6;
  width: 100%;
}
.p-news-archive-list__title-link {
  display: block;
  width: 100%;
  text-decoration: none;
  color: #333333;
}
.p-news-archive-list__title-link:before {
  position: absolute;
  display: block;
  content: "";
  inset: 0;
}
@media (any-hover: hover) {
  .p-news-archive-list__title-link:hover {
    color: #004c52;
  }
}
.p-news-archive-list__title-link:focus-within {
  color: #004c52;
}
.p-news-single {
  padding-top: calc(20px + var(--header-height));
}
.p-news-single-header {
  padding-top: var(--spacer-100);
}
.p-news-single-header__title {
  display: flex;
  align-items: center;
  color: #6a180a;
  font-size: clamp(1.5rem, 1.179rem + 1.43vw, 2.5rem);
  font-weight: 600;
  margin-bottom: var(--spacer-50);
}
.p-news-single__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacer-20);
  padding-bottom: var(--spacer-20);
  border-bottom: 1px solid #cccccc;
}
.p-news-single__time {
  font-size: 14px;
  font-size: clamp(0.688rem, 0.627rem + 0.27vw, 0.875rem);
  line-height: 1.6;
  flex-shrink: 0;
  width: fit-content;
}
.p-news-single__category {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacer-10);
  justify-content: flex-end;
}
.p-news-single__category-link {
  display: block;
  text-decoration: none;
  font-size: 14px;
  font-size: clamp(0.688rem, 0.627rem + 0.27vw, 0.875rem);
  line-height: 1;
  color: #fff;
  background-color: #006e76;
  padding: 4px 10px 6px 10px;
  z-index: 1;
  position: relative;
}
@media (any-hover: hover) {
  .p-news-single__category-link:hover {
    background-color: #004c52;
    color: #fff;
  }
}
.p-news-single__category-link:focus-within {
  background-color: #004c52;
  color: #fff;
}
.p-news-single-main {
  width: 100%;
  padding-bottom: var(--spacer-180);
  margin-top: var(--spacer-70);
}
.p-news-single-footer {
  margin-top: var(--spacer-80);
  padding-top: var(--spacer-20);
  border-top: 1px solid #cccccc;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--spacer-40);
}
.p-news-single-footer__nav {
  display: flex;
  gap: var(--spacer-20);
}
.p-news-single-footer__nav-prev, .p-news-single-footer__nav-next {
  text-decoration: none;
  position: relative;
  color: #006e76;
  font-size: clamp(0.813rem, 0.752rem + 0.27vw, 1rem);
}
@media (any-hover: hover) {
  .p-news-single-footer__nav-prev:hover, .p-news-single-footer__nav-next:hover {
    color: #004c52;
  }
}
.p-news-single-footer__nav-prev:focus-within, .p-news-single-footer__nav-next:focus-within {
  color: #004c52;
}
.p-news-single-footer__nav-prev {
  padding-left: 25px;
}
.p-news-single-footer__nav-prev::before {
  content: "";
  display: block;
  mask: url(/app/themes/iks/assets/img/commn/icon-arrow-left.svg) no-repeat center/contain;
  -webkit-mask: url(/app/themes/iks/assets/img/commn/icon-arrow-left.svg) no-repeat center/contain;
  background-color: #006e76;
  position: absolute;
  top: 0.6em;
  transform: translateY(-50%);
  left: 0;
  width: 18px;
  height: 7px;
  z-index: 1;
}
.p-news-single-footer__nav-next {
  padding-right: 25px;
}
.p-news-single-footer__nav-next::after {
  content: "";
  display: block;
  position: absolute;
  mask: url(/app/themes/iks/assets/img/commn/icon-arrow.svg) no-repeat center/contain;
  -webkit-mask: url(/app/themes/iks/assets/img/commn/icon-arrow.svg) no-repeat center/contain;
  background-color: #006e76;
  top: 0;
  transform: translateY(-50%);
  bottom: 0;
  right: 0;
  margin: auto;
  width: 18px;
  height: 7px;
  z-index: 1;
}
.p-news-single-footer__nav-text {
  font-weight: 600;
}
.p-news-single-footer__divider {
  width: 1px;
  height: 1.5em;
  background: #cccccc;
}
.p-news-single-footer__back-link {
  position: relative;
  display: block;
  text-decoration: none;
  color: #006e76;
  font-size: clamp(0.813rem, 0.752rem + 0.27vw, 1rem);
  font-weight: 600;
  padding-right: 25px;
}
@media (any-hover: hover) {
  .p-news-single-footer__back-link:hover {
    color: #004c52;
  }
}
.p-news-single-footer__back-link:focus-within {
  color: #004c52;
}
.p-news-single-footer__back-link::after {
  content: "";
  position: absolute;
  display: block;
  mask: url(/app/themes/iks/assets/img/commn/icon-arrow.svg) no-repeat center/contain;
  -webkit-mask: url(/app/themes/iks/assets/img/commn/icon-arrow.svg) no-repeat center/contain;
  background-color: #006e76;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 18px;
  height: 7px;
}

.p-post-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacer-40);
}
@media only screen and (max-width: 640px) {
  .p-post-list {
    grid-template-columns: 1fr;
  }
}
.p-post-list__item-link {
  display: block;
  background-color: #006e76;
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(1rem, 0.92rem + 0.36vw, 1.25rem);
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: var(--spacer-40);
  padding: var(--spacer-40) var(--spacer-10) var(--spacer-40) var(--spacer-30);
  transition: background-color 0.3s, color 0.3s;
}
.p-post-list__item-link[target=_blank] .c-circle-arrow__img {
  width: 20px;
  height: 16px;
  background-color: #c2f1f4;
  mask: url("/app/themes/iks/assets/img/commn/icon-link-w.svg") no-repeat center/contain;
  -webkit-mask: url("/app/themes/iks/assets/img/commn/icon-link-w.svg") no-repeat center/contain;
}
@media (any-hover: hover) {
  .p-post-list__item-link:hover {
    background-color: #004c52;
    color: #c2f1f4;
  }
  .p-post-list__item-link:hover .c-circle-arrow::before {
    opacity: 1;
    transform: scale(1);
  }
  .p-post-list__item-link:hover .c-circle-arrow__img {
    background-color: #c2f1f4;
  }
}
.p-post-list__item-link:focus-within {
  background-color: #004c52;
  color: #c2f1f4;
}
.p-post-list__item-link:focus-within .c-circle-arrow::before {
  opacity: 1;
  transform: scale(1);
}
.p-post-list__item-link:focus-within .c-circle-arrow__img {
  background-color: #c2f1f4;
}
.p-post-list__text {
  flex: 1;
}
.p-post-archive {
  margin-top: 80px;
}
.p-post-archive__list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: var(--spacer-s) var(--spacer-xs);
}
.p-post-archive__list.shinsei {
  gap: var(--spacer-xs);
}
.p-post-archive__list.shinsei .p-post-archive__term-title a {
  color: #333333;
  font-size: clamp(0.938rem, 0.9rem + 0.09vw, 1rem);
  font-weight: normal;
  padding-right: 3.25em;
}
.p-post-archive__list.shinsei .p-post-archive__term-title a::after {
  right: 1.25em;
}
.p-post-archive__list.shinsei .p-post-archive__term-title a::before {
  display: none;
}
@media (any-hover: hover) {
  .p-post-archive__list.shinsei .p-post-archive__term-title a:hover {
    color: #ffffff;
  }
  .p-post-archive__list.shinsei .p-post-archive__term-title a:hover::after {
    background-color: #ffffff;
  }
}
.p-post-archive__list.shinsei .p-post-archive__term-title a:focus-within {
  color: #ffffff;
}
.p-post-archive__list.shinsei .p-post-archive__term-title a:focus-within::after {
  background-color: #ffffff;
}
.p-post-archive__term {
  width: calc((100% - var(--spacer-xs) * 2) / 3);
  background: #ffffff;
}
.p-post-archive__term-title {
  border-bottom: 1px solid #E5E5E5;
}
.p-post-archive__term-title a {
  position: relative;
  display: block;
  padding: 0.98em 4.05em 0.98em 0.8em;
  font-size: clamp(1.25rem, 1.12rem + 0.43vw, 1.5rem);
  font-weight: bold;
  background-color: #ffffff;
  border-left: 9px solid #0017EC;
  color: #0017EC;
  line-height: 1.6;
  text-decoration: none;
  transition: background-color 0.3s;
}
.p-post-archive__term-title a::before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.25em;
  margin: auto;
  width: 1.8em;
  height: 1.8em;
  display: block;
  content: "";
  z-index: 1;
  background-color: #F5F5F5;
  border-radius: 50%;
  transition: background-color 0.3s;
}
.p-post-archive__term-title a::after {
  position: absolute;
  z-index: 2;
  display: block;
  content: "";
  top: 0;
  right: calc(1.25em + 13px);
  bottom: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  mask-image: url(/wp-content/themes/mks/assets/img/common/icon-arrow.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: #0017EC;
  transition: background-color 0.3s;
}
@media (any-hover: hover) {
  .p-post-archive__term-title a:hover {
    background-color: #004c52;
    color: #ffffff;
  }
  .p-post-archive__term-title a:hover::before {
    background-color: #ffffff;
  }
  .p-post-archive__term-title a:hover::after {
    background-color: #004c52;
  }
}
.p-post-archive__term-title a:focus-within {
  background-color: #004c52;
  color: #ffffff;
}
.p-post-archive__term-title a:focus-within::before {
  background-color: #ffffff;
}
.p-post-archive__term-title a:focus-within::after {
  background-color: #004c52;
}
.p-post-archive .p-post-list__item {
  padding-left: 30px;
  padding-right: 30px;
}
.p-post-archive .p-post-list__item:first-of-type {
  padding-top: 8px;
}
.p-post-archive .p-post-list__item:last-of-type {
  padding-bottom: 8px;
}
.p-post-archive .p-post-list__item a {
  padding: 0.95em calc(1.25em + 20px + 1em) 0.95em 1.25em;
}
@media only screen and (max-width: 1300px) {
  .p-post-archive__term {
    width: calc((100% - var(--spacer-xs)) / 2);
  }
}
@media only screen and (max-width: 768px) {
  .p-post-archive .p-post-list__item {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 640px) {
  .p-post-archive {
    margin-top: 60px;
  }
  .p-post-archive__term {
    width: 100%;
  }
}

.p-lower-header {
  padding-top: calc(20px + var(--header-height) + 10px);
  background-image: linear-gradient(-90deg, rgb(38, 67, 69) 0%, rgb(61, 20, 9) 99%);
}
.p-lower-header__title {
  font-weight: bold;
  line-height: 1.4;
}
.p-lower-header--single .p-lower-header__title {
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: clamp(1.5rem, 1.179rem + 1.43vw, 2.5rem);
  min-height: 8.5em;
  padding-block: 1em;
}
.p-lower-header--archive {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url(/app/themes/iks/assets/img/commn/lower-header_bg.webp);
  font-size: clamp(1.375rem, 1.094rem + 1.25vw, 2.25rem);
  line-height: 1.5;
}
.p-lower-header--archive .p-lower-header__title {
  display: inline-block;
  position: relative;
  margin-top: 8.5em;
  margin-bottom: calc((1em - 1lh) / 2 - 1px);
  padding-top: calc(0.9em - (1lh - 1em) / 2);
  padding-right: var(--spacer-80);
  color: #6a180a;
  background-color: #ffffff;
  vertical-align: top;
  z-index: 2;
}
.p-lower-header--archive .p-lower-header__title::after {
  position: absolute;
  display: block;
  content: "";
  width: calc((100vw - 1160px) / 2);
  height: 100%;
  background-color: #ffffff;
  top: 0;
  right: 100%;
}
@media only screen and (max-width: 1260.8695652174px) {
  .p-lower-header--archive .p-lower-header__title::after {
    width: 4vw;
  }
}
@media only screen and (max-width: 1300px) {
  .p-lower-header--single .p-lower-header__title {
    min-height: 6em;
  }
  .p-lower-header--archive .p-lower-header__title {
    margin-top: 6em;
  }
}
@media only screen and (max-width: 640px) {
  .p-lower-header--single .p-lower-header__title {
    min-height: 4em;
  }
  .p-lower-header--archive .p-lower-header__title {
    margin-top: 4em;
  }
}
.p-lower-main {
  width: 100%;
  padding-top: var(--spacer-80);
  padding-bottom: var(--spacer-180);
}

.p-contact__block {
  background-color: #eff0f0;
  padding: var(--spacer-60) var(--spacer-120);
}
@media only screen and (max-width: 768px) {
  .p-contact__block {
    padding: var(--spacer-40) var(--spacer-20);
  }
}
.p-contact__block p {
  font-size: clamp(0.813rem, 0.752rem + 0.27vw, 1rem);
  font-weight: 600;
  margin: 0;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  padding-top: 20px;
  width: 100%;
  z-index: 1000;
}
@media only screen and (max-width: 1300px) {
  .l-header {
    padding-top: 10px;
  }
  .l-header.open .l-header-iks__inner {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.l-header-iks {
  position: relative;
  background-color: #ffffff;
  height: var(--iks-height);
  width: 98%;
  max-width: 1720px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 0 24px rgba(51, 51, 51, 0.2);
}
@media only screen and (max-width: 1300px) {
  .l-header-iks {
    display: block;
    width: 100%;
    max-width: calc(100% - 40px);
  }
}
@media only screen and (max-width: 640px) {
  .l-header-iks {
    max-width: calc(100% - 20px);
  }
}
.l-header-iks__logo-inner {
  display: flex;
  height: 100%;
  align-items: center;
  padding-left: 40px;
  justify-content: space-between;
}
@media only screen and (max-width: 1300px) {
  .l-header-iks__logo-inner {
    padding-inline: 16px;
  }
}
.l-header-iks__logo-link {
  display: flex;
  gap: var(--spacer-15);
  align-items: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
@media (any-hover: hover) {
  .l-header-iks__logo-link:hover {
    opacity: 0.8;
  }
}
.l-header-iks__logo-link:focus-within {
  opacity: 0.8;
}
.l-header-iks__logo-link span {
  color: #6a180a;
  font-size: 26px;
  font-weight: 600;
  font-feature-settings: "palt";
}
@media only screen and (max-width: 1920px) {
  .l-header-iks__logo-link span {
    font-size: clamp(1.188rem, 1.02rem + 0.67vw, 1.625rem);
  }
}
.l-header-iks__spbtn {
  display: none;
}
.l-header-iks__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-right: 40px;
  z-index: 50;
}
@media only screen and (max-width: 1300px) {
  .l-header-iks__inner {
    visibility: hidden;
    opacity: 0;
    background-color: #eff0f0;
    background-color: #ffffff;
    transition: transform 0.3s, opacity 0.3s;
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    overflow-y: auto;
    max-height: calc(100vh - var(--header-height));
    max-height: calc(100vh - 70px);
    transform: translateY(-10px);
  }
}
@media only screen and (max-width: 1300px) {
  .l-header-sub-menu {
    border-top: 1px solid #ccc;
  }
}
.l-header-sub-menu__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacer-30);
  justify-content: flex-end;
}
@media only screen and (max-width: 1300px) {
  .l-header-sub-menu__list {
    justify-content: center;
  }
}
.l-header-sub-menu__item {
  font-size: 14px;
}
@media only screen and (max-width: 1300px) {
  .l-header-sub-menu__item {
    padding: 15px 50px 16px 15px;
    font-size: clamp(1rem, 0.778rem + 0.56vw, 1.125rem);
  }
}
@media only screen and (max-width: 640px) {
  .l-header-sub-menu__item {
    font-size: 1rem;
    padding: 10px 10px 16px 10px;
  }
}
.l-header-sub-menu__item:hover > .l-header-sub-menu__link::after {
  opacity: 1;
}
.l-header-sub-menu__item:hover > .l-header-sub-menu__link::before {
  background-color: #004c52;
}
.l-header-sub-menu__link {
  position: relative;
  display: block;
  color: #006e76;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s, font-weight 0.3s;
  line-height: 2.5;
  padding-bottom: 2px;
  padding-left: 30px;
}
.l-header-sub-menu__link:before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 1.1em;
  height: 1.1em;
  mask-image: url(/app/themes/iks/assets/img/commn/icon-arrow.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: #006e76;
  transition: background-color 0.3s;
}
.l-header-sub-menu__link::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #004c52;
  opacity: 0;
  transition: opacity 0.3s;
}
.l-header-sub-menu__link:hover {
  color: #004c52;
}
.l-header-nav__list {
  display: flex;
  justify-content: flex-end;
  gap: 3em;
  gap: var(--spacer-30);
}
@media only screen and (max-width: 1300px) {
  .l-header-nav__list {
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    border-top: 1px solid #ccc;
  }
}
.l-header-nav__item {
  position: relative;
  padding-bottom: 4px;
}
@media only screen and (max-width: 1300px) {
  .l-header-nav__item {
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 1301px) and (any-hover: hover) {
  .l-header-nav__item:hover > .l-header-nav__link::after {
    opacity: 1;
  }
  .l-header-nav__item:hover > .l-header-nav-secondary {
    opacity: 1;
    visibility: visible;
  }
}
@media only screen and (min-width: 1301px) {
  .l-header-nav__item:focus-within > .l-header-nav__link::after {
    opacity: 1;
  }
  .l-header-nav__item:focus-within > .l-header-nav-secondary {
    opacity: 1;
    visibility: visible;
  }
}
.l-header-nav__link {
  position: relative;
  display: block;
  color: #333333;
  text-decoration: none;
  transition: color 0.3s, font-weight 0.3s;
  font-size: 1rem;
  line-height: 2.5;
  font-weight: 600;
  min-height: 44px;
}
@media only screen and (max-width: 1300px) {
  .l-header-nav__link {
    color: #004c52;
    padding: 15px 50px 16px 15px;
    line-height: 1.6;
    border-bottom: 1px solid #ccc;
    font-size: clamp(1rem, 0.778rem + 0.56vw, 1.125rem);
    font-weight: bold;
  }
}
@media only screen and (max-width: 1300px) {
  .l-header-nav__link::before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 5.5%;
    margin: auto;
    display: block;
    content: "";
    width: 24px;
    height: 24px;
    background-color: #006e76;
    border-radius: 50%;
    z-index: 1;
  }
}
.l-header-nav__link::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 4px;
  margin: auto;
  width: 80%;
  height: 2px;
  background-color: #004c52;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
}
@media only screen and (max-width: 1300px) {
  .l-header-nav__link::after {
    top: 0;
    right: calc(5.5% + 7px);
    left: auto;
    bottom: 0;
    z-index: 2;
    width: 10px;
    height: 10px;
    opacity: 1;
    transform: none;
    mask-image: url(/app/themes/iks/assets/img/commn/icon-arrow.svg);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    background-color: #ffffff;
    transition: background-color 0.3s;
  }
}
.l-header-nav__link:hover {
  color: #004c52;
}
@media only screen and (max-width: 1300px) {
  .l-header-nav__link:has(+ .l-header-nav__button) {
    display: none;
  }
}
.l-header-nav__button {
  display: none;
}
@media only screen and (max-width: 1300px) {
  .l-header-nav__button {
    position: relative;
    display: block;
    width: 100%;
    padding: 15px 50px 16px 15px;
    line-height: 1.6;
    border-bottom: 1px solid #E5E5E5;
    font-size: clamp(1rem, 0.778rem + 0.56vw, 1.125rem);
    font-family: inherit;
    font-weight: bold;
    color: #006e76;
    background-color: #ffffff;
    text-align: left;
    cursor: pointer;
  }
  .l-header-nav__button::before {
    position: absolute;
    top: 0;
    right: calc(5.5% + 2px);
    bottom: 0;
    margin: auto;
    display: block;
    content: "";
    width: 20px;
    height: 3px;
    background-color: #004c52;
    border-radius: 0;
  }
  .l-header-nav__button::after {
    position: absolute;
    top: 0;
    right: calc(5.5% + 2px + 8.5px);
    bottom: 0;
    margin: auto;
    display: block;
    content: "";
    width: 3px;
    height: 20px;
    background-color: #004c52;
    transition: transform 0.3s;
  }
  .l-header-nav__button.open::after {
    transform: rotate(90deg);
  }
  .l-header-nav__button.open + .l-header-nav-secondary {
    opacity: 1;
    visibility: visible;
    display: block;
    height: auto;
  }
  .l-header-nav__button.open + .l-header-nav-secondary .l-container--wide {
    display: block;
  }
}
.l-header-nav-secondary {
  position: fixed;
  top: calc(var(--iks-height) + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 98%;
  max-width: 1720px;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  border-top: solid 20px transparent;
}
@media only screen and (max-width: 1300px) {
  .l-header-nav-secondary {
    visibility: hidden;
    opacity: 0;
    display: none;
    transition: transform 0.3s, opacity 0.3s;
    position: relative;
    top: auto;
    height: auto;
    width: 100%;
    border-top: none;
    transition: unset;
  }
}
.l-header-nav-secondary__title {
  box-sizing: border-box;
  line-height: 1;
}
.l-header-nav-secondary__title-link {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
  padding: 30px 40px 30px 75px;
  text-decoration: none;
  background-color: rgba(232, 234, 234, 0.9);
  transition: background-color 0.4s ease;
}
@media only screen and (max-width: 1300px) {
  .l-header-nav-secondary__title-link {
    font-size: clamp(1rem, 0.778rem + 0.56vw, 1.125rem);
    padding: 15px 50px 15px 45px;
  }
}
.l-header-nav-secondary__title-link:before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 35px;
  bottom: 0;
  margin: auto;
  width: 1.1em;
  height: 1.1em;
  mask-image: url(/app/themes/iks/assets/img/commn/icon-arrow.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: #006e76;
  transition: background-color 0.3s;
}
@media only screen and (max-width: 1300px) {
  .l-header-nav-secondary__title-link:before {
    left: 15px;
  }
}
@media only screen and (min-width: 1301px) {
  .l-header-nav-secondary__title-link:hover {
    color: #006e76;
    background-color: #e6f1f2;
    opacity: 1;
  }
}
.l-header-nav-secondary__list {
  box-sizing: border-box;
  border-top: 1px solid #fff;
  background-color: rgba(232, 234, 234, 0.9);
  transition: background-color 0.4s ease;
  padding: 20px 40px 20px 40px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacer-20) var(--spacer-60);
}
@media only screen and (max-width: 1300px) {
  .l-header-nav-secondary__list {
    flex-direction: column;
    padding: 0;
    gap: 0;
  }
}
.l-header-nav-secondary__item {
  padding-bottom: 4px;
}
@media only screen and (min-width: 1301px) {
  .l-header-nav-secondary__item:hover > .l-header-nav-secondary__link::after {
    opacity: 1;
  }
  .l-header-nav-secondary__item:hover > .l-header-nav-secondary__link::before {
    background-color: #004c52;
  }
}
@media only screen and (max-width: 1300px) {
  .l-header-nav-secondary__item {
    border-bottom: solid 1px #ffffff;
  }
}
.l-header-nav-secondary__link {
  position: relative;
  display: block;
  text-decoration: none;
  font-size: 16px;
  line-height: 2.5;
  font-weight: 500;
  padding-left: 35px;
}
@media only screen and (max-width: 1300px) {
  .l-header-nav-secondary__link {
    font-size: clamp(1rem, 0.778rem + 0.56vw, 1.125rem);
    padding: 10px 50px 10px 65px;
    line-height: 1.6;
  }
}
.l-header-nav-secondary__link:before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 1.1em;
  height: 1.1em;
  mask-image: url(/app/themes/iks/assets/img/commn/icon-arrow.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: #006e76;
  transition: background-color 0.3s;
}
@media only screen and (max-width: 1300px) {
  .l-header-nav-secondary__link:before {
    left: 35px;
  }
}
.l-header-nav-secondary__link[target=_blank]:before {
  mask: url("/app/themes/iks/assets/img/commn/icon-link-w.svg") no-repeat center/contain;
  -webkit-mask: url("/app/themes/iks/assets/img/commn/icon-link-w.svg") no-repeat center/contain;
}
.l-header-nav-secondary__link::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #004c52;
  opacity: 0;
  transition: opacity 0.3s;
}
.l-header-nav-secondary__link:hover {
  color: #004c52;
}
.l-header__disaster {
  position: fixed;
  top: 280px;
  right: 0;
  z-index: 10;
  top: clamp(140px, 14.5833333333vw, 280px);
}
@media only screen and (max-width: 1300px) {
  .l-header__disaster {
    top: 100px;
  }
}
@media only screen and (max-width: 640px) {
  .l-header__disaster {
    width: 100%;
    top: auto;
    bottom: 10px;
  }
}

.l-footer {
  background-color: #3d1409;
  color: #ffffff;
  font-size: clamp(0.688rem, 0.627rem + 0.27vw, 0.875rem);
  padding: var(--spacer-35) var(--spacer-20) var(--spacer-35) var(--spacer-60);
}
@media only screen and (max-width: 1300px) {
  .l-footer {
    padding-left: var(--spacer-20);
  }
}
@media only screen and (max-width: 640px) {
  .l-footer {
    padding-bottom: var(--spacer-160);
  }
}
.l-footer__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
@media only screen and (max-width: 1340.782122905px) {
  .l-footer__inner {
    width: 89.5%;
  }
}
@media only screen and (max-width: 640px) {
  .l-footer__inner {
    width: 92%;
  }
}
.l-footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--spacer-20) var(--spacer-40);
  margin-bottom: var(--spacer-80);
  line-height: 1;
}
.l-footer-links__link {
  display: block;
  color: #ffffff;
  text-decoration: none;
  padding-block: 5px;
  position: relative;
  padding-left: 20px;
}
.l-footer-links__link:before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 1.1em;
  height: 1.1em;
  mask-image: url(/app/themes/iks/assets/img/commn/icon-arrow.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: #ffffff;
  transition: background-color 0.3s;
}
@media (any-hover: hover) {
  .l-footer-links__link:hover {
    color: #c2f1f4;
  }
  .l-footer-links__link:hover:before {
    background-color: #c2f1f4;
  }
}
.l-footer-links__link:focus-within {
  color: #c2f1f4;
}
.l-footer-links__link:focus-within:before {
  background-color: #c2f1f4;
}
.l-footer-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--spacer-20) var(--spacer-40);
  margin-bottom: var(--spacer-90);
}
@media only screen and (max-width: 1300px) {
  .l-footer-address {
    margin-bottom: var(--spacer-60);
  }
}
.l-footer-address__name {
  font-size: clamp(1.125rem, 1.004rem + 0.54vw, 1.5rem);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: var(--spacer-30);
  font-feature-settings: "palt";
}
.l-footer-address__info {
  line-height: 1.6;
}
.l-footer-contact-list {
  display: flex;
  gap: var(--spacer-30) var(--spacer-40);
  width: 760px;
}
@media only screen and (max-width: 768px) {
  .l-footer-contact-list {
    flex-direction: column;
    align-items: center;
  }
}
.l-footer-contact-list__box {
  max-width: 360px;
  width: 100%;
}
@media only screen and (max-width: 1300px) {
  .l-footer-contact-list__box {
    max-width: 50%;
  }
}
@media only screen and (max-width: 1300px) {
  .l-footer-contact-list__box {
    max-width: 100%;
  }
}
.l-footer-contact-list__title {
  font-size: clamp(0.906rem, 0.836rem + 0.31vw, 1.125rem);
  margin-bottom: var(--spacer-30);
  font-weight: 500;
  line-height: 1;
}
.l-footer-contact-list__tel {
  font-feature-settings: "palt";
  font-size: clamp(1.5rem, 1.179rem + 1.43vw, 2.5rem);
  font-weight: 600;
  line-height: 1;
  text-align: center;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  box-sizing: border-box;
  padding-block: var(--spacer-15);
  width: 100%;
}
.l-footer-contact-list__button {
  display: block;
  text-decoration: none;
  background-color: #ffffff;
  font-size: clamp(0.813rem, 0.752rem + 0.27vw, 1rem);
  text-align: center;
  padding: var(--spacer-30) var(--spacer-40);
  font-weight: 600;
  width: 100%;
  transition: background-color 0.3s ease;
}
@media (any-hover: hover) {
  .l-footer-contact-list__button:hover {
    background-color: #e6f1f2;
  }
}
.l-footer-contact-list__button:focus-within {
  background-color: #e6f1f2;
}
.l-footer-contact-list__button span {
  position: relative;
}
.l-footer-contact-list__button span:before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  right: -2em;
  bottom: 0;
  margin: auto;
  width: 1.1em;
  height: 1.1em;
  mask-image: url(/app/themes/iks/assets/img/commn/icon-arrow.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  background-color: #006e76;
  transition: background-color 0.3s;
}
.l-footer-copy {
  font-size: clamp(0.625rem, 0.565rem + 0.27vw, 0.813rem);
  margin-block: calc((1em - 1lh) / 2);
  line-height: 1.6;
  text-align: center;
}

.l-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}
.l-container .l-contaner--narrow {
  width: 100%;
}
@media only screen and (max-width: 1260.8695652174px) {
  .l-container {
    width: 92%;
  }
}
.l-container--wide {
  width: 92%;
  max-width: 1560px;
  margin: 0 auto;
}
@media only screen and (max-width: 1260.8695652174px) {
  .l-container--wide .l-container {
    width: 100%;
  }
}
.l-container--narrow {
  width: 92%;
  max-width: 920px;
  margin: 0 auto;
}

.l-front-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}
@media only screen and (max-width: 1296.0893854749px) {
  .l-front-container {
    width: 89.5%;
  }
}
@media only screen and (max-width: 640px) {
  .l-front-container {
    width: 92%;
  }
}

.l-contents {
  padding-top: var(--spacer-100);
  padding-bottom: var(--spacer-200);
}/*# sourceMappingURL=style.css.map */