@charset "UTF-8";
/*!
 * eichodenki - main stylesheet
 * src/scss/style.scss -> assets/css/style.css （Live Sass Compiler）
 * 追加した partial は必ずここに @use を書き足すこと
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body,
h1, h2, h3, h4, h5, h6,
p, figure, blockquote, dl, dd, ul, ol {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

img, picture, video, canvas, svg, iframe {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

button {
  cursor: pointer;
}

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

th, td {
  text-align: left;
  vertical-align: top;
}

address {
  font-style: normal;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
:root {
  --ed-font-jp: Noto Sans JP, Hiragino Kaku Gothic ProN, Hiragino Sans, Meiryo, sans-serif;
  --ed-font-en: Plus Jakarta Sans, Noto Sans JP, Hiragino Kaku Gothic ProN, sans-serif;
  --ed-font-mincho: Noto Serif JP, Hiragino Mincho ProN, Yu Mincho, serif;
}

html {
  font-size: 100%;
}

body {
  color: #111111;
  background-color: #ffffff;
  font-family: var(--ed-font-jp);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 0.9375rem;
    line-height: 1.7333333333;
  }
}
body.is-fixed {
  overflow: hidden;
}

a {
  color: #005293;
  transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (any-hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

img {
  width: 100%;
}

::-moz-selection {
  background-color: #005293;
  color: #fff;
}

::selection {
  background-color: #005293;
  color: #fff;
}

:target {
  scroll-margin-top: 120px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  :target {
    scroll-margin-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  :target {
    scroll-margin-top: 64px;
  }
}

.l-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1440px;
  min-height: 100vh;
  min-height: 100svh;
  margin-inline: auto;
  background-color: #ffffff;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .l-wrapper {
    padding-bottom: 3.75rem;
  }
}

.l-main {
  flex: 1 0 auto;
  padding-top: 120px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .l-main {
    padding-top: 80px;
  }
}
@media screen and (max-width: 767px) {
  .l-main {
    padding-top: 64px;
  }
}

.l-inner {
  width: 100%;
  max-width: calc(960px + 240px * 2);
  margin-inline: auto;
  padding-inline: clamp(20px, 16.6666666667vw, 240px);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .l-inner {
    padding-inline: 32px;
    max-width: calc(648px + 32px * 2);
  }
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-inline: 20px;
  }
}

.l-inner--narrow {
  width: 100%;
  max-width: calc(880px + 120px * 2);
  margin-inline: auto;
  padding-inline: clamp(20px, 8.3333333333vw, 120px);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .l-inner--narrow {
    padding-inline: 32px;
    max-width: calc(648px + 32px * 2);
  }
}
@media screen and (max-width: 767px) {
  .l-inner--narrow {
    padding-inline: 20px;
  }
}

.l-inner--wide {
  width: 100%;
  max-width: calc(1200px + 120px * 2);
  margin-inline: auto;
  padding-inline: clamp(20px, 8.3333333333vw, 120px);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .l-inner--wide {
    padding-inline: 32px;
    max-width: calc(648px + 32px * 2);
  }
}
@media screen and (max-width: 767px) {
  .l-inner--wide {
    padding-inline: 20px;
  }
}

.l-inner--full {
  width: 100%;
  max-width: calc(1400px + 20px * 2);
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .l-inner--full {
    padding-inline: 32px;
  }
}
@media screen and (max-width: 767px) {
  .l-inner--full {
    padding-inline: 20px;
  }
}

.l-section {
  padding-block: clamp(3.5rem, 11.1111vw, 160px);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .l-section {
    padding-block: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .l-section {
    padding-block: 3.5rem;
  }
}

.l-header {
  position: fixed;
  top: 0;
  height: 120px;
  background-color: #fff;
  transition: background-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), backdrop-filter 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  z-index: 80;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .l-header {
    height: 80px;
  }
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 64px;
  }
}
.l-header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.75rem, 1.6667vw, 1.5rem);
  height: 100%;
  width: 100%;
  max-width: calc(1400px + 20px * 2);
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .l-header__inner {
    padding-inline: 32px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    padding-inline: 20px;
  }
}
.l-header__left {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2.0833vw, 1.875rem);
  min-width: 0;
}
@media screen and (max-width: 1024px) {
  .l-header__left {
    align-items: center;
    gap: 0.75rem;
  }
}
.l-header__logo {
  flex-shrink: 0;
  width: clamp(3.5rem, 5.4861vw, 4.9375rem);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .l-header__logo {
    width: 3.25rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 2.5rem;
  }
}
.l-header__logo img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .l-header__contact {
    display: none;
  }
}
.l-header__contact-lead {
  font-size: clamp(0.75rem, 1.1111vw, 1rem);
  line-height: 1.5;
  white-space: nowrap;
}
.l-header__tel {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.25rem, 0.5556vw, 0.5rem);
  margin-top: 0.25rem;
  font-family: var(--ed-font-en);
  font-size: clamp(1.625rem, 2.7778vw, 2.5rem);
  white-space: nowrap;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1;
  color: #111111;
}
@media (any-hover: hover) {
  .l-header__tel:hover {
    opacity: 1;
    color: #005293;
  }
}
.l-header__tel-icon {
  flex-shrink: 0;
  width: clamp(1.375rem, 2.3611vw, 2.125rem);
  aspect-ratio: 1.1764705882;
  background-color: currentColor;
  -webkit-mask: url("../img/icon-phone.svg") no-repeat center/contain;
  mask: url("../img/icon-phone.svg") no-repeat center/contain;
}
.l-header__right {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1025px) {
  .l-header__right {
    align-self: stretch;
  }
}
.l-header__right {
  gap: clamp(0.75rem, 3.6806vw, 3.3125rem);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .l-header__right {
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .l-header__right {
    display: none;
  }
}
.l-header__btns {
  display: flex;
  gap: clamp(0.375rem, 0.6944vw, 0.625rem);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .l-header__btns {
    gap: 0.6875rem;
  }
}
.l-header__btns .c-btn {
  min-width: clamp(7.5rem, 12.5vw, 11.25rem);
  height: clamp(2.875rem, 4.1667vw, 3.75rem);
  padding-inline: clamp(0.75rem, 1.6667vw, 1.5rem);
  font-size: clamp(0.8125rem, 1.1111vw, 1rem);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .l-header__btns .c-btn {
    min-width: 11.25rem;
    height: 3.75rem;
    padding-inline: 1.5rem;
    font-size: 1rem;
  }
}

@media screen and (max-width: 1024px) {
  .l-gnav {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .l-gnav {
    align-self: stretch;
  }
}
.l-gnav__list {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 2.9861vw, 2.6875rem);
}
@media screen and (min-width: 1025px) {
  .l-gnav__list {
    height: 100%;
    align-items: stretch;
  }
}
.l-gnav__item {
  display: flex;
  position: relative;
}
.l-gnav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1025px) {
  .l-gnav__link {
    height: 100%;
  }
}
.l-gnav__link {
  gap: clamp(0.375rem, 1.1806vw, 1.0625rem);
  padding-inline: clamp(0.375rem, 1.1111vw, 1rem);
  white-space: nowrap;
  font-size: clamp(0.875rem, 1.1111vw, 1rem);
  font-weight: 600;
  color: #111111;
}
@media (any-hover: hover) {
  .l-gnav__link:hover {
    opacity: 1;
    color: #005293;
  }
}
.l-gnav__link--external::after {
  content: "";
  flex-shrink: 0;
  width: clamp(0.6875rem, 1.0417vw, 0.9375rem);
  height: clamp(0.6875rem, 1.0417vw, 0.9375rem);
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cline x1='10' y1='14' x2='21' y2='3'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cline x1='10' y1='14' x2='21' y2='3'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media screen and (max-width: 1024px) {
  .l-gnav__sub {
    display: none;
  }
}
.l-gnav__sub {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 1;
  width: 10rem;
  padding-top: 0.875rem;
  margin-top: -0.875rem;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.l-gnav__sub::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -0.5rem;
  border-right: 0.5rem solid transparent;
  border-bottom: 0.875rem solid #005293;
  border-left: 0.5rem solid transparent;
}
.l-gnav__sub li + li > .l-gnav__sub-link {
  border-top: 1px solid #fff;
}
.l-gnav__sub-link {
  display: flex;
  align-items: center;
  height: 3.125rem;
  padding-inline: 1.5rem;
  background-color: #005293;
  font-size: clamp(0.8125rem, 1.1111vw, 1rem);
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
  color: #fff;
  transition: background-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (any-hover: hover) {
  .l-gnav__sub-link:hover {
    opacity: 1;
    background-color: #003f71;
  }
}
.l-gnav__item--has-sub:hover > .l-gnav__sub, .l-gnav__item--has-sub:focus-within > .l-gnav__sub {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.l-gnav__item--has-sub:hover > .l-gnav__link, .l-gnav__item--has-sub:focus-within > .l-gnav__link {
  color: #005293;
}

.l-hamburger {
  --burger: 80px;
  display: none;
  position: relative;
  flex-shrink: 0;
  width: var(--burger);
  height: var(--burger);
  padding: 0;
  border: 0;
  background-color: #005293;
  cursor: pointer;
  margin-right: calc(32px * -1);
}
@media screen and (max-width: 1024px) {
  .l-hamburger {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .l-hamburger {
    --burger: 64px;
    margin-right: calc(20px * -1);
  }
}
.l-hamburger span {
  position: absolute;
  left: 50%;
  width: calc(var(--burger) * 0.63);
  margin-left: calc(var(--burger) * -0.315);
  height: 2px;
  background-color: #fff;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), top 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.l-hamburger span:nth-child(1) {
  top: calc(50% - var(--burger) * 0.22);
}
.l-hamburger span:nth-child(2) {
  top: 50%;
}
.l-hamburger span:nth-child(3) {
  top: calc(50% + var(--burger) * 0.22);
}
.l-hamburger.is-active span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg);
}
.l-hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.l-hamburger.is-active span:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg);
}
@media (any-hover: hover) {
  .l-hamburger:hover {
    background-color: #003f71;
  }
}

.l-drawer {
  position: fixed;
  top: 64px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding: 7.5rem 1.875rem 3.75rem;
  background-color: #fff;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 90;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .l-drawer {
    top: 80px;
    padding-inline: 32px;
  }
}
@media screen and (min-width: 1025px) {
  .l-drawer {
    display: none;
  }
}
.l-drawer.is-open {
  opacity: 1;
  visibility: visible;
}
.l-drawer__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 1.25rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .l-drawer__nav {
    grid-template-columns: repeat(3, 1fr);
    gap: 3.75rem;
    max-width: 37.5rem;
    margin-inline: auto;
  }
}
.l-drawer__link {
  display: flex;
  align-items: center;
  gap: 1.0625rem;
  font-size: 1rem;
  color: #111111;
}
@media (any-hover: hover) {
  .l-drawer__link:hover {
    opacity: 1;
    color: #005293;
  }
}
.l-drawer__link--external::after {
  content: "";
  flex-shrink: 0;
  width: 0.875rem;
  height: 0.875rem;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cline x1='10' y1='14' x2='21' y2='3'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cline x1='10' y1='14' x2='21' y2='3'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.l-drawer__parent > .l-drawer__link {
  min-height: 2.5rem;
  font-weight: 600;
}
.l-drawer__child {
  border-bottom: 1px solid #dddddd;
}
.l-drawer__child > .l-drawer__link {
  min-height: 3.75rem;
  padding-left: 1.25rem;
  gap: 0;
  font-weight: 500;
}
.l-drawer__child > .l-drawer__link::before {
  content: "-";
  margin-right: 0.5rem;
  color: #005293;
}

.l-footer {
  flex-shrink: 0;
  background-color: #005293;
  color: #fff;
  font-family: var(--ed-font-jp);
}
.l-footer a {
  color: inherit;
}
.l-footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.5rem;
  width: 100%;
  max-width: calc(1200px + 120px * 2);
  margin-inline: auto;
  padding-inline: clamp(20px, 8.3333333333vw, 120px);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .l-footer__inner {
    padding-inline: 32px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    padding-inline: 20px;
  }
}
.l-footer__inner {
  padding-block: 5rem;
}
@media screen and (max-width: 1024px) {
  .l-footer__inner {
    flex-direction: column;
    gap: 2.5rem;
    padding-block: 3.5rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    padding-block: 2.5rem;
  }
}
.l-footer__company {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}
.l-footer__id {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
.l-footer__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6.125rem;
  height: 7.5rem;
  padding: 0.625rem;
}
.l-footer__logo img {
  width: auto;
  max-height: 100%;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    width: 4.875rem;
    height: 6rem;
  }
}
.l-footer__address {
  font-size: 1rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .l-footer__address {
    font-size: 0.875rem;
  }
}
.l-footer__name {
  margin-bottom: 0.625rem;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3333333333;
}
@media screen and (max-width: 767px) {
  .l-footer__name {
    font-size: 1.25rem;
  }
}
.l-footer__license {
  font-size: 0.875rem;
  line-height: 1.4285714286;
}
.l-footer__nav {
  display: flex;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .l-footer__nav {
    width: 100%;
    gap: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__nav {
    display: none;
  }
}
.l-footer__col {
  width: 10rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .l-footer__col {
    flex: 1 1 0;
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__col {
    width: 100%;
  }
}
.l-footer__list {
  font-size: 1rem;
}
.l-footer__list > li {
  display: flex;
  align-items: center;
  min-height: 3.125rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .l-footer__list > li {
    min-height: 2.5rem;
  }
}
.l-footer__child {
  font-weight: 500;
}
.l-footer__child a::before {
  content: "-";
  margin-right: 0.5rem;
}
.l-footer__link--icon {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
}
.l-footer__link--icon img {
  width: 1.25rem;
  height: 1.25rem;
}
.l-footer__copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  border-top: 1px solid #fff;
  font-family: var(--ed-font-en);
  font-size: 0.75rem;
  line-height: 2;
  text-align: center;
}

.l-spbar {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-spbar {
    display: flex;
    position: fixed;
    bottom: 0;
    height: 3.75rem;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 1440px;
    margin-inline: auto;
    z-index: 50;
  }
}
.l-spbar__btn {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #005293;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
}
.l-spbar__btn--outline {
  background-color: #fff;
  color: #005293;
}

.l-pagetop {
  position: fixed;
  right: max(1.5rem, 50vw - 720px + 1.5rem);
  bottom: 1.5rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: #005293;
  color: #fff;
  border: 1px solid #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
}
.l-pagetop.is-show {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 1024px) {
  .l-pagetop {
    right: 0.75rem;
    bottom: 0.75rem;
    width: 2.75rem;
    height: 2.75rem;
  }
}
@media screen and (max-width: 767px) {
  .l-pagetop {
    bottom: 4.5rem;
  }
}

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-width: 11.25rem;
  height: 3.75rem;
  padding-inline: 1.5rem;
  border: 1px solid #005293;
  border-radius: 999px;
  background-color: #005293;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  transition: background-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (any-hover: hover) {
  .c-btn:hover {
    opacity: 1;
    background-color: #003f71;
    border-color: #003f71;
  }
}
@media screen and (max-width: 767px) {
  .c-btn {
    min-width: 10rem;
    height: 3.25rem;
    font-size: 0.9375rem;
  }
}
.c-btn--outline {
  background-color: transparent;
  color: #005293;
}
@media (any-hover: hover) {
  .c-btn--outline:hover {
    background-color: #005293;
    border-color: #005293;
    color: #fff;
  }
}
@media (any-hover: hover) {
  .c-btn--accent:hover {
    background-color: #25a6e0;
    border-color: #25a6e0;
    color: #fff;
  }
}
.c-btn--wide {
  min-width: 20rem;
}
@media screen and (max-width: 767px) {
  .c-btn--wide {
    min-width: 100%;
  }
}
.c-btn--invert {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}
@media (any-hover: hover) {
  .c-btn--invert:hover {
    background-color: #fff;
    border-color: #fff;
    color: #005293;
  }
}
.c-btn--rect {
  gap: clamp(0.875rem, 1.4583vw, 1.3125rem);
  min-width: 15rem;
  border-radius: 0.5rem;
  border-color: #111111;
  background-color: transparent;
  color: #111111;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-btn--rect {
    min-width: 12.5rem;
  }
}
.c-btn--rect::after {
  content: "";
  flex-shrink: 0;
  width: 1rem;
  height: 0.5rem;
  background-color: currentColor;
  -webkit-mask: var(--btn-arrow) no-repeat center/contain;
  mask: var(--btn-arrow) no-repeat center/contain;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.c-btn--rect {
  --btn-arrow: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 8'%3E%3Cg fill='none' stroke='black' stroke-width='1.1'%3E%3Cpath d='M0 4h14.6'/%3E%3Cpolyline points='11.2,0.8 14.9,4 11.2,7.2'/%3E%3C/g%3E%3C/svg%3E");
}
@media (any-hover: hover) {
  .c-btn--rect:hover {
    background-color: transparent;
    border-color: #111111;
    color: #111111;
  }
  .c-btn--rect:hover::after {
    transform: translateX(1.25rem);
  }
}
@media (prefers-reduced-motion: reduce) {
  .c-btn--rect::after {
    transition: none;
  }
}
@media (prefers-reduced-motion: reduce) and (any-hover: hover) {
  .c-btn--rect:hover::after {
    transform: none;
  }
}

.c-sec-head {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
  color: #111111;
}
.c-sec-head__en {
  font-family: var(--ed-font-en);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-sec-head__en {
    font-size: 1.625rem;
  }
}
.c-sec-head__line {
  display: block;
  width: 3.75rem;
  height: 1px;
  background-color: currentColor;
}
.c-sec-head__ja {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-sec-head__ja {
    font-size: 1.1875rem;
  }
}
.c-sec-head--center {
  align-items: center;
  text-align: center;
}
.c-sec-head--invert {
  color: #fff;
}

.c-title__en {
  display: block;
  font-family: var(--ed-font-en);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #005293;
}
.c-title__ja {
  display: block;
  margin-top: 0.75rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .c-title__ja {
    font-size: 2.125rem;
  }
}
@media screen and (max-width: 767px) {
  .c-title__ja {
    font-size: 1.625rem;
    margin-top: 0.5rem;
  }
}
.c-title--center {
  text-align: center;
}

.c-card {
  display: block;
}
.c-card__thumb {
  overflow: hidden;
  aspect-ratio: 16/10;
}
.c-card__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (any-hover: hover) {
  .c-card:hover {
    opacity: 1;
  }
  .c-card:hover .c-card__thumb img {
    transform: scale(1.05);
  }
}
.c-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: #767676;
}
.c-card__cat {
  padding: 0.25rem 0.75rem;
  background-color: #005293;
  color: #fff;
  font-size: 0.75rem;
}
.c-card__title {
  margin-top: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5555555556;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-card__title {
    font-size: 1rem;
  }
}

.c-card-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .c-card-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-card-list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.c-form {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-form {
    gap: 1.25rem;
  }
}
.c-form__row {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
@media screen and (min-width: 1025px) {
  .c-form__row:has(textarea) {
    align-items: flex-start;
  }
}
@media screen and (max-width: 1024px) {
  .c-form__row {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .c-form__row {
    gap: 0.75rem;
  }
}
.c-form__row > dt {
  flex-shrink: 0;
  width: 10.625rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .c-form__row > dt {
    width: auto;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
  }
  .c-form__row > dt br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .c-form__row > dt {
    font-size: 0.875rem;
    gap: 0.25rem;
  }
}
.c-form__row > dd {
  flex: 1;
  min-width: 0;
}
.c-form__req, .c-form__any {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 1.875rem;
  padding-inline: 0.625rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-top: -0.125rem;
}
@media screen and (max-width: 1024px) {
  .c-form__req, .c-form__any {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .c-form__req, .c-form__any {
    height: 1.25rem;
    padding-inline: 0.25rem;
    font-size: 0.75rem;
  }
}
.c-form__req {
  background-color: #fdd35c;
  color: #fff;
}
.c-form__any {
  background-color: #f5f6f8;
  color: #767676;
}
.c-form__note {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: #767676;
}
.c-form__value {
  display: none;
  font-size: 1rem;
  line-height: 1.6;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
@media screen and (min-width: 1025px) {
  .c-form__value {
    padding-inline: 0.75rem;
  }
}
@media screen and (max-width: 767px) {
  .c-form__value {
    font-size: 0.875rem;
  }
}
.c-form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .c-form__submit {
    flex-direction: column;
    margin-top: 2.5rem;
    gap: 1.25rem;
  }
}

.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=tel],
.wpcf7 input[type=url],
.wpcf7 input[type=number],
.wpcf7 input[type=date],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  height: 4rem;
  padding: 0 0.75rem;
  border: 1px solid #111111;
  border-radius: 0.25rem;
  background-color: #fff;
  color: #111111;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.6;
  transition: border-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.wpcf7 input[type=text]:focus,
.wpcf7 input[type=email]:focus,
.wpcf7 input[type=tel]:focus,
.wpcf7 input[type=url]:focus,
.wpcf7 input[type=number]:focus,
.wpcf7 input[type=date]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: #005293;
  box-shadow: 0 0 0 1px #005293;
}
.wpcf7 input[type=text]::-moz-placeholder, .wpcf7 input[type=email]::-moz-placeholder, .wpcf7 input[type=tel]::-moz-placeholder, .wpcf7 input[type=url]::-moz-placeholder, .wpcf7 input[type=number]::-moz-placeholder, .wpcf7 input[type=date]::-moz-placeholder, .wpcf7 select::-moz-placeholder, .wpcf7 textarea::-moz-placeholder {
  color: #d9d9d9;
  opacity: 1;
}
.wpcf7 input[type=text]::placeholder,
.wpcf7 input[type=email]::placeholder,
.wpcf7 input[type=tel]::placeholder,
.wpcf7 input[type=url]::placeholder,
.wpcf7 input[type=number]::placeholder,
.wpcf7 input[type=date]::placeholder,
.wpcf7 select::placeholder,
.wpcf7 textarea::placeholder {
  color: #d9d9d9;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .wpcf7 input[type=text],
  .wpcf7 input[type=email],
  .wpcf7 input[type=tel],
  .wpcf7 input[type=url],
  .wpcf7 input[type=number],
  .wpcf7 input[type=date],
  .wpcf7 select,
  .wpcf7 textarea {
    height: 2.5rem;
  }
}
.wpcf7 textarea {
  height: 17.625rem;
  min-height: 17.625rem;
  padding-block: 0.75rem;
  resize: vertical;
}
@media screen and (max-width: 767px) {
  .wpcf7 textarea {
    height: 14.375rem;
    min-height: 14.375rem;
  }
}
.wpcf7 select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #111111 50%), linear-gradient(135deg, #111111 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.5rem;
}
.wpcf7 .wpcf7-radio,
.wpcf7 .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
  row-gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .wpcf7 .wpcf7-radio,
  .wpcf7 .wpcf7-checkbox {
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    row-gap: 0.625rem;
  }
}
.wpcf7 .wpcf7-list-item {
  margin: 0;
}
.wpcf7 .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .wpcf7 .wpcf7-list-item label {
    gap: 0.5rem;
  }
}
.wpcf7 .wpcf7-list-item-label {
  font-size: 1rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .wpcf7 .wpcf7-list-item-label {
    font-size: 0.875rem;
  }
}
.wpcf7 input[type=checkbox],
.wpcf7 input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  flex-shrink: 0;
  width: 1.875rem;
  height: 1.875rem;
  margin: 0;
  border: 1px solid #111111;
  background-color: #fff;
  cursor: pointer;
  transition: background-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media screen and (max-width: 767px) {
  .wpcf7 input[type=checkbox],
  .wpcf7 input[type=radio] {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.wpcf7 input[type=checkbox] {
  border-radius: 0.25rem;
}
.wpcf7 input[type=radio] {
  border-radius: 50%;
}
.wpcf7 input[type=checkbox]:checked,
.wpcf7 input[type=radio]:checked {
  border-color: #005293;
  background-color: #005293;
  box-shadow: inset 0 0 0 4px #fff;
}
@media screen and (max-width: 767px) {
  .wpcf7 input[type=checkbox]:checked,
  .wpcf7 input[type=radio]:checked {
    box-shadow: inset 0 0 0 3px #fff;
  }
}
.wpcf7 input[type=checkbox]:focus-visible,
.wpcf7 input[type=radio]:focus-visible {
  outline: 2px solid #005293;
  outline-offset: 2px;
}
.wpcf7 .wpcf7-spinner {
  margin-inline: 0 -1.5rem;
}
.wpcf7 .wpcf7-not-valid-tip {
  margin-top: 0.375rem;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #c0392b;
}
.wpcf7 .wpcf7-not-valid {
  border-color: #c0392b !important;
}
.wpcf7 .wpcf7-response-output {
  margin: 2rem 0 0;
  padding: 1rem 1.25rem;
  border-width: 1px;
  border-radius: 0.25rem;
  font-size: 0.9375rem;
  line-height: 1.8;
  text-align: center;
}
.wpcf7 form.sent .wpcf7-response-output {
  border-color: #005293;
  background-color: rgba(173, 222, 248, 0.3);
  color: #005293;
}

.c-form__btn,
.c-form__submit :where(input[type=submit], input[type=button], button) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15rem;
  max-width: 100%;
  height: 3.75rem;
  padding-inline: 1.5rem;
  border: 1px solid #005293;
  border-radius: 0.5rem;
  background-color: #005293;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (any-hover: hover) {
  .c-form__btn:hover,
  .c-form__submit :where(input[type=submit], input[type=button], button):hover {
    background-color: #003f71;
    border-color: #003f71;
  }
}

.c-form__btn--back {
  border-color: #addef8;
  background-color: #addef8;
  color: #fff;
}
@media (any-hover: hover) {
  .c-form__btn--back:hover {
    background-color: rgb(103.1802247191, 193.9017977528, 242.0397752809);
    border-color: rgb(103.1802247191, 193.9017977528, 242.0397752809);
    color: #fff;
  }
}

.js-form-back,
.wpcf7-submit {
  display: none;
}

form.is-confirm .c-form {
  gap: 4.625rem;
}
form.is-confirm .c-form__row > dd > .wpcf7-form-control-wrap {
  display: none;
}
form.is-confirm .c-form__value {
  display: block;
}
form.is-confirm .js-form-confirm {
  display: none;
}
form.is-confirm .js-form-back,
form.is-confirm .wpcf7-submit {
  display: inline-flex;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  form.is-confirm .c-form {
    gap: 3rem;
  }
}
@media screen and (max-width: 767px) {
  form.is-confirm .c-form {
    gap: 1.25rem;
  }
}

.c-breadcrumb {
  padding-block: 1rem;
  font-size: 0.8125rem;
  color: #767676;
}
.c-breadcrumb__inner {
  width: 100%;
  max-width: calc(960px + 240px * 2);
  margin-inline: auto;
  padding-inline: clamp(20px, 16.6666666667vw, 240px);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .c-breadcrumb__inner {
    padding-inline: 32px;
    max-width: calc(648px + 32px * 2);
  }
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__inner {
    padding-inline: 20px;
  }
}
.c-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.c-breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  color: #dddddd;
}

.c-pagination {
  margin-top: 4rem;
}
.c-pagination .nav-links,
.c-pagination ul.page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.c-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid #dddddd;
  font-size: 0.875rem;
  transition: background-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.c-pagination .page-numbers.current {
  background-color: #005293;
  border-color: #005293;
  color: #fff;
}
.c-pagination .page-numbers.dots {
  border: 0;
}

.c-editor > * + *,
.editor-styles-wrapper .is-root-container > * + * {
  margin-top: 1.5rem;
}
.c-editor h2,
.editor-styles-wrapper .is-root-container h2 {
  margin-top: 3.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #005293;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-editor h2,
  .editor-styles-wrapper .is-root-container h2 {
    font-size: 1.375rem;
    margin-top: 2.5rem;
  }
}
.c-editor h3,
.editor-styles-wrapper .is-root-container h3 {
  margin-top: 2.5rem;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-editor h3,
  .editor-styles-wrapper .is-root-container h3 {
    font-size: 1.1875rem;
  }
}
.c-editor h4,
.editor-styles-wrapper .is-root-container h4 {
  margin-top: 2rem;
  font-size: 1.125rem;
  font-weight: 700;
}
.c-editor p,
.editor-styles-wrapper .is-root-container p {
  line-height: 2;
}
.c-editor a,
.editor-styles-wrapper .is-root-container a {
  text-decoration: underline;
}
.c-editor ul,
.editor-styles-wrapper .is-root-container ul {
  list-style: disc;
  padding-left: 1.5em;
}
.c-editor ol,
.editor-styles-wrapper .is-root-container ol {
  list-style: decimal;
  padding-left: 1.5em;
}
.c-editor li + li,
.editor-styles-wrapper .is-root-container li + li {
  margin-top: 0.5rem;
}
.c-editor blockquote,
.editor-styles-wrapper .is-root-container blockquote {
  padding: 1.5rem;
  background-color: #f5f6f8;
  border-left: 4px solid #dddddd;
}
.c-editor table th, .c-editor table td,
.editor-styles-wrapper .is-root-container table th,
.editor-styles-wrapper .is-root-container table td {
  padding: 1rem;
  border: 1px solid #dddddd;
}
.c-editor table th,
.editor-styles-wrapper .is-root-container table th {
  background-color: #f5f6f8;
  white-space: nowrap;
}
.c-editor .wp-block-image figcaption,
.editor-styles-wrapper .is-root-container .wp-block-image figcaption {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: #767676;
  text-align: center;
}
.c-editor .alignleft,
.editor-styles-wrapper .is-root-container .alignleft {
  float: left;
  margin: 0 1.5rem 1rem 0;
}
.c-editor .alignright,
.editor-styles-wrapper .is-root-container .alignright {
  float: right;
  margin: 0 0 1rem 1.5rem;
}
.c-editor .aligncenter,
.editor-styles-wrapper .is-root-container .aligncenter {
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .c-editor .alignleft, .c-editor .alignright,
  .editor-styles-wrapper .is-root-container .alignleft,
  .editor-styles-wrapper .is-root-container .alignright {
    float: none;
    margin-inline: auto;
  }
  .c-editor table,
  .editor-styles-wrapper .is-root-container table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

.editor-styles-wrapper.post-type-news .editor-post-title,
.editor-styles-wrapper.post-type-news .editor-post-title__block,
.editor-styles-wrapper.post-type-news .wp-block-post-title {
  display: none !important;
}

.p-about__body p + p {
  margin-top: 1.5em;
}
.p-about__photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-about__photos {
    gap: 0.5rem;
    margin-top: 2rem;
  }
}
.p-about__photos img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
  aspect-ratio: 4/3;
}
.p-about__lead {
  margin-bottom: 2.5rem;
  color: #005293;
  font-size: 24px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-about__lead {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-about__lead {
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
    line-height: 1.9;
  }
}
.p-about__policy .p-about__body p + p {
  margin-top: 1.2em;
}

.p-process {
  margin-top: 5rem;
  list-style: none;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-process {
    max-width: 28.125rem;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-process {
    margin-top: 3rem;
  }
}
.p-process__step--reverse .p-process__photo {
  grid-column: 2;
}
.p-process__step--reverse .p-process__text {
  grid-column: 1;
  grid-row: 1;
}
.p-process__step--reverse .p-process__en {
  left: auto;
  right: 0;
}
.p-process__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 3.75rem;
  padding-bottom: 1.75rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-process__inner {
    gap: 2rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-process__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-bottom: 1.25rem;
  }
}
.p-process__photo {
  grid-column: 1;
}
@media screen and (max-width: 1024px) {
  .p-process__photo {
    grid-column: 1 !important;
    grid-row: 2 !important;
    order: 2;
  }
}
.p-process__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 4/3;
  border-radius: 0.625rem;
}
.p-process__text {
  grid-column: 2;
}
@media screen and (max-width: 1024px) {
  .p-process__text {
    grid-column: 1 !important;
    grid-row: 1 !important;
    order: 1;
  }
}
.p-process__head {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-process__head {
    gap: 0.75rem;
  }
}
.p-process__no {
  color: #fff;
  font-family: var(--ed-font-en);
  font-size: clamp(2.5rem, 4.4444vw, 4rem);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-process__no {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-process__no {
    font-size: 3.625rem;
  }
}
.p-process__no {
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  -webkit-text-stroke: 2px #111111;
  text-stroke: 2px #111111;
  paint-order: stroke fill;
}
.p-process__ja {
  color: #005293;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-process__ja {
    font-size: 1.125rem;
  }
}
.p-process__desc {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-process__desc {
    margin-top: 1rem;
    font-size: 0.9375rem;
    line-height: 1.9;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-process__en {
    font-size: 3rem;
  }
}
.p-process__en {
  position: absolute;
  left: 0;
  bottom: 0;
  color: rgba(253, 211, 92, 0.8);
  font-family: var(--ed-font-en);
  font-size: clamp(1.75rem, 3.8889vw, 3.5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .p-process__en {
    left: 0;
    right: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-process__en {
    font-size: clamp(1.75rem, 12vw, 4rem);
  }
}
.p-process__arrow {
  display: block;
  width: 4.5rem;
  height: 2rem;
  margin: 3.5rem auto;
  background-color: rgba(0, 82, 147, 0.35);
  -webkit-mask: var(--arrow-svg) no-repeat center/contain;
  mask: var(--arrow-svg) no-repeat center/contain;
  --arrow-svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 72 38'%3E%3Cg fill='none' stroke='black' stroke-width='2' stroke-linecap='square'%3E%3Cpolyline points='1,1 36,25 71,1'/%3E%3Cpolyline points='1,13 36,37 71,13'/%3E%3C/g%3E%3C/svg%3E");
}
@media screen and (max-width: 767px) {
  .p-process__arrow {
    width: 3.25rem;
    height: 1.5rem;
    margin-block: 2rem;
  }
}

.p-contact-band {
  background-color: rgba(173, 222, 248, 0.3);
}
.p-contact-band__inner {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  width: 100%;
  max-width: calc(960px + 240px * 2);
  margin-inline: auto;
  padding-inline: clamp(20px, 16.6666666667vw, 240px);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-contact-band__inner {
    padding-inline: 32px;
    max-width: calc(44rem + 32px * 2);
  }
}
@media screen and (max-width: 767px) {
  .p-contact-band__inner {
    padding-inline: 20px;
  }
}
.p-contact-band__inner {
  padding-block: 10rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-contact-band__inner {
    gap: 3rem;
    padding-block: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-contact-band__inner {
    gap: 2rem;
    padding-block: 3.5rem;
  }
}
.p-contact-band__head {
  display: flex;
  gap: clamp(2.5rem, 8.3333vw, 7.5rem);
}
@media screen and (max-width: 1024px) {
  .p-contact-band__head {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.p-contact-band__lead {
  flex: 1;
  font-size: 1rem;
  line-height: 2.5;
}
@media screen and (max-width: 767px) {
  .p-contact-band__lead {
    font-size: 0.9375rem;
    line-height: 2;
  }
}
.p-contact-band__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
}
@media screen and (max-width: 1024px) {
  .p-contact-band__cards {
    grid-template-columns: min(100%, 29.375rem);
    justify-content: center;
    gap: 1rem;
  }
}
.p-contact-band__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.0625rem;
  min-height: 15rem;
  padding: 2.5rem 1.5rem;
  border-radius: 10px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-contact-band__card {
    min-height: 0;
    padding: 1.75rem 1.25rem;
  }
}
.p-contact-band__icon {
  width: auto;
  height: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-contact-band__icon {
    height: 2.5rem;
  }
}
.p-contact-band__label {
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
}
.p-contact-band__tel {
  font-family: var(--ed-font-en);
  font-size: 1.5rem;
  font-weight: 800;
}
@media screen and (max-width: 767px) {
  .p-contact-band__tel {
    font-size: 1.25rem;
  }
}

.p-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 2;
}
@media screen and (max-width: 1024px) {
  .p-hero {
    aspect-ratio: 1.3333333333;
  }
}
@media screen and (max-width: 767px) {
  .p-hero {
    aspect-ratio: 0.75;
  }
}
.p-hero__slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-color: #005293;
}
.p-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity;
}
.p-hero__slide.is-current {
  opacity: 1;
}
.p-hero__slide picture,
.p-hero__slide img {
  display: block;
  width: 100%;
  height: 100%;
}
.p-hero__slide img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (prefers-reduced-motion: reduce) {
  .p-hero__slide {
    transition: opacity 0.4s linear;
  }
}
.p-hero__dots {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 2;
  display: flex;
  gap: 0.75rem;
}
@media screen and (max-width: 1024px) {
  .p-hero__dots {
    display: none;
  }
}
.p-hero__dot {
  width: 0.625rem;
  height: 0.625rem;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  transition: background-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.p-hero__dot.is-current {
  background-color: #fff;
}
@media (any-hover: hover) {
  .p-hero__dot:hover {
    background-color: rgba(255, 255, 255, 0.6);
  }
}
.p-hero__catch {
  position: absolute;
  left: 0;
  bottom: 5rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-inline: clamp(20px, 2.2222vw, 2rem);
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-hero__catch {
    bottom: 7.375rem;
    gap: 0.5rem;
    padding-inline: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-hero__catch {
    display: none;
  }
}
.p-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-hero__tags {
    gap: 0.625rem;
  }
}
.p-hero__tags li {
  padding: 0.125rem 0.4375rem;
  border-radius: 4px;
  color: #005293;
  background-color: #fff;
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.5;
  text-shadow: none;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-hero__tags li {
    font-size: 1.875rem;
    padding: 0.125rem 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-hero__tags li {
    font-size: 1.125rem;
    padding: 0.125rem 0.625rem;
  }
}
.p-hero__copy {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-hero__copy {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-hero__copy {
    font-size: 1.1875rem;
  }
}

.p-lead {
  position: relative;
  background-color: rgba(173, 222, 248, 0.3);
}

.p-news {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.p-news__box {
  margin-top: -3.375rem;
  display: flex;
  gap: 4.3125rem;
  width: min(50rem, 100% - 2.5rem);
  padding: 1.875rem;
  border-radius: 10px 0 0 10px;
  background-color: #005293;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .p-news__box {
    width: 100%;
    border-radius: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-news__box {
    gap: 2rem;
    padding-inline: 32px;
  }
}
@media screen and (max-width: 767px) {
  .p-news__box {
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem 20px;
  }
}
.p-news__head {
  flex-shrink: 0;
  width: 7rem;
}
.p-news__head .c-sec-head__en,
.p-news__head .c-sec-head__ja {
  white-space: nowrap;
}
.p-news__main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.p-news__list {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-news__list {
    font-size: 0.8125rem;
    line-height: 1.5;
  }
}
.p-news__item {
  display: flex;
  align-items: center;
  gap: 3.75rem;
  padding-block: 1.25rem;
  border-bottom: 1px solid #ffffff;
}
.p-news__item:last-child {
  border-bottom: 0;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-news__item {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-news__item {
    gap: 2.125rem;
    padding-block: 1.25rem;
  }
}
.p-news__item time {
  flex-shrink: 0;
  font-family: var(--ed-font-en);
}
.p-news__item a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
@media (any-hover: hover) {
  .p-news__item a:hover {
    opacity: 0.75;
  }
}

.p-logotype {
  margin-top: -3.375rem;
  flex: 1;
  min-width: 0;
  padding-left: clamp(1.25rem, 8.33vw, 7.5rem);
  padding-right: 2.5rem;
  line-height: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.p-logotype img {
  display: block;
  width: 100%;
  max-width: 32.3125rem;
  height: auto;
}
@media (max-width: 1200px) {
  .p-logotype {
    display: none;
  }
}

.p-about-top__inner {
  display: flex;
  align-items: flex-start;
  gap: 5rem;
  padding-left: clamp(20px, 16.6667vw, 240px);
}
@media screen and (max-width: 1024px) {
  .p-about-top__inner {
    flex-direction: column;
    gap: 2rem;
    padding-inline: 32px;
    max-width: calc(44rem + 32px * 2);
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-about-top__inner {
    gap: 1.5rem;
    padding-inline: 20px;
  }
}
.p-about-top__text {
  flex-shrink: 0;
  width: 22.5rem;
}
@media screen and (max-width: 1024px) {
  .p-about-top__text {
    width: auto;
  }
  .p-about-top__text br {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-about-top__text {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
  .p-about-top__text .c-sec-head {
    grid-column: 1;
    grid-row: 1;
  }
  .p-about-top__text .p-about-top__btn {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    margin-top: 0;
  }
  .p-about-top__text .p-about-top__body {
    grid-column: 1/-1;
    grid-row: 2;
  }
}
.p-about-top__body {
  margin-top: 2.5rem;
  font-size: 1rem;
  line-height: 2.5;
}
.p-about-top__body p + p {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-about-top__body {
    margin-top: 1.5rem;
    font-size: 0.9375rem;
    line-height: 2;
  }
}
.p-about-top__btn {
  margin-top: 2.5rem;
}
.p-about-top__photos {
  flex: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
}
.p-about-top__photos figure:first-child {
  grid-column: 1/-1;
}
.p-about-top__photos img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
  aspect-ratio: 1.7777777778;
}
.p-about-top__photos figure:not(:first-child) img {
  aspect-ratio: 1.3333333333;
}
@media screen and (max-width: 767px) {
  .p-about-top__photos {
    gap: 0.5rem;
  }
}

.p-products {
  background-color: rgba(0, 82, 147, 0.8);
  color: #fff;
}
.p-products__inner {
  display: flex;
  gap: 5rem;
  width: 100%;
  max-width: calc(960px + 240px * 2);
  margin-inline: auto;
  padding-inline: clamp(20px, 16.6666666667vw, 240px);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-products__inner {
    padding-inline: 32px;
    max-width: calc(648px + 32px * 2);
  }
}
@media screen and (max-width: 767px) {
  .p-products__inner {
    padding-inline: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .p-products__inner {
    flex-direction: column;
    gap: 2rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-products__inner {
    flex-direction: row;
    gap: 5rem;
  }
}
.p-products__side {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  width: 15rem;
}
@media screen and (max-width: 1024px) {
  .p-products__side {
    width: auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-products__side {
    width: 15rem;
    justify-content: space-between;
  }
}
.p-products__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background-color: #fff;
}
.p-products__thumb img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .p-products__thumb {
    max-width: 15rem;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-products__thumb {
    max-width: none;
    margin-top: auto;
  }
}
.p-products__body {
  flex: 1;
  min-width: 0;
  font-size: 1rem;
  line-height: 2.5;
}
@media screen and (max-width: 767px) {
  .p-products__body {
    font-size: 0.9375rem;
    line-height: 2;
  }
}
.p-products__name {
  margin-bottom: 1.875rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-products__name {
    margin-bottom: 1rem;
    font-size: 1.25rem;
  }
}

.p-insta__inner {
  display: flex;
  gap: 5rem;
  width: 100%;
  max-width: calc(960px + 240px * 2);
  margin-inline: auto;
  padding-inline: clamp(20px, 16.6666666667vw, 240px);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-insta__inner {
    padding-inline: 32px;
    max-width: calc(648px + 32px * 2);
  }
}
@media screen and (max-width: 767px) {
  .p-insta__inner {
    padding-inline: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .p-insta__inner {
    flex-direction: column;
    gap: 2rem;
  }
}
.p-insta__side {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 15rem;
}
@media screen and (max-width: 1024px) {
  .p-insta__side {
    width: auto;
    gap: 1.5rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-insta__side {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}
.p-insta__btn {
  align-self: flex-start;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-insta__btn {
    align-self: center;
  }
}
.p-insta__grid {
  flex: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
}
.p-insta__grid img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1;
  transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.p-insta__grid a {
  display: block;
}
@media (any-hover: hover) {
  .p-insta__grid a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 767px) {
  .p-insta__grid {
    gap: 0.5rem;
  }
}

.p-company__row, .p-about__row {
  display: flex;
  gap: clamp(2.5rem, 6.3333vw, 3.75rem);
}
@media screen and (max-width: 1024px) {
  .p-company__row, .p-about__row {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.p-company__row > .c-sec-head, .p-about__row > .c-sec-head {
  flex-shrink: 0;
  width: clamp(10rem, 16.6667vw, 15rem);
}
@media screen and (max-width: 1024px) {
  .p-company__row > .c-sec-head, .p-about__row > .c-sec-head {
    width: auto;
  }
}

.p-company__body, .p-about__body {
  flex: 1;
  min-width: 0;
  font-size: 1rem;
  line-height: 2.5;
}
@media screen and (max-width: 767px) {
  .p-company__body, .p-about__body {
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.p-about__policy {
  background-color: rgba(173, 222, 248, 0.3);
}

.p-company__profile-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-company__profile-list {
    gap: 1.5rem;
  }
}
.p-company__profile-row {
  display: flex;
  gap: 5rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-company__profile-row {
    gap: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-company__profile-row {
    flex-direction: column;
    gap: 0.25rem;
  }
}
.p-company__profile-row dt {
  flex-shrink: 0;
  width: 5rem;
  color: #005293;
  font-weight: 600;
  line-height: 2;
}
.p-company__profile-row dd {
  flex: 1;
  min-width: 0;
  line-height: 2;
}
.p-company__map {
  margin-top: 2.5rem;
}
.p-company__map img {
  width: 100%;
  height: auto;
}
.p-company__map figcaption {
  display: inline-flex;
  align-items: center;
  height: 2rem;
  margin-top: -2rem;
  padding-inline: 1rem;
  position: relative;
  background-color: #fff;
  color: #005293;
  font-size: 0.875rem;
}

.p-contact__intro {
  display: flex;
  align-items: flex-start;
  gap: clamp(3.75rem, 8.3333vw, 7.5rem);
}
@media screen and (max-width: 1024px) {
  .p-contact__intro {
    flex-direction: column;
    gap: 2.5rem;
  }
}
.p-contact__intro > .c-sec-head {
  flex-shrink: 0;
}
@media screen and (min-width: 1025px) {
  .p-contact__intro > .c-sec-head {
    min-width: 15.75rem;
  }
}
.p-contact__lead {
  font-size: 1rem;
  line-height: 2.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-contact__lead {
    font-size: 0.875rem;
    line-height: 2;
  }
}
.p-contact__lead[data-step=confirm] {
  display: none;
}
.p-contact.is-confirm .p-contact__lead[data-step=input] {
  display: none;
}
.p-contact.is-confirm .p-contact__lead[data-step=confirm] {
  display: block;
}
.p-contact__form {
  margin-top: clamp(3.75rem, 8.3333vw, 7.5rem);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-contact__form {
    margin-top: 7.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__form {
    margin-top: 3.75rem;
  }
}
.p-contact__sent {
  display: none;
  font-size: 1rem;
  line-height: 2.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-contact__sent {
    font-size: 0.875rem;
    text-align: center;
  }
}
.p-contact.is-sent .p-contact__intro,
.p-contact.is-sent .p-contact__form {
  display: none;
}
.p-contact.is-sent .p-contact__sent {
  display: block;
}

.p-company__row {
  gap: 2.5rem;
}
.p-company__history {
  background-color: rgba(173, 222, 248, 0.3);
}

.p-greeting {
  display: flex;
  align-items: flex-start;
  gap: 3.75rem;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-greeting {
    gap: 2.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .p-greeting {
    flex-direction: column-reverse;
    align-items: center;
    gap: 2rem;
    margin-top: 2.5rem;
  }
}
.p-greeting__text {
  flex: 1;
  min-width: 0;
  font-size: 1rem;
  line-height: 2.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-greeting__text {
    font-size: 0.9375rem;
    line-height: 2.2;
  }
}
.p-greeting__text p + p {
  margin-top: 1.5em;
}
.p-greeting__photo {
  flex-shrink: 0;
  width: 15rem;
}
@media screen and (max-width: 1024px) {
  .p-greeting__photo {
    width: 12.5rem;
  }
}
.p-greeting__photo img {
  width: 100%;
  height: auto;
  border-radius: 0.25rem;
}
.p-greeting__sign {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-greeting__sign {
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1.5rem;
  }
}
.p-greeting__role {
  font-size: 1rem;
  letter-spacing: 0.05em;
}
.p-greeting__name {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-greeting__name {
    font-size: 1.25rem;
  }
}

.p-iso {
  container-type: inline-size;
  margin-top: 7.5rem;
  padding: 3rem 4rem;
  border-radius: 0.625rem;
  background-color: #005293;
  color: #fff;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-iso {
    padding: 2.5rem 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-iso {
    margin-top: 4rem;
    padding: 2rem 1.25rem;
  }
}
.p-iso__title {
  font-size: 1.25rem;
  font-size: min(1.25rem, 5.6cqw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-iso__title {
    font-size: 1.0625rem;
    font-size: min(1.0625rem, 5.6cqw);
  }
}
.p-iso__inner {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-iso__inner {
    gap: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-iso__inner {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.25rem;
  }
}
.p-iso__figure {
  flex-shrink: 0;
  width: 15rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-iso__figure {
    width: 12.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-iso__figure {
    width: min(100%, 15rem);
  }
}
.p-iso__figure img {
  display: block;
  width: 100%;
  height: auto;
  background-color: #fff;
}
.p-iso__body {
  flex: 1;
  min-width: 0;
  font-size: 1rem;
  line-height: 2.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-iso__body {
    font-size: 0.875rem;
    line-height: 2.2;
  }
}
.p-iso__body p + p {
  margin-top: 0.25em;
}

.p-history {
  position: relative;
  list-style: none;
}
.p-history::before {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 0.75rem;
  bottom: 0.75rem;
  width: 2px;
  background-color: #005293;
}
.p-history__item {
  position: relative;
  padding-left: 2.5rem;
  padding-bottom: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-history__item {
    padding-left: 1.75rem;
    padding-bottom: 1.25rem;
  }
}
.p-history__item:last-child {
  padding-bottom: 0;
}
.p-history__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1875rem;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  background-color: #005293;
}
@media screen and (max-width: 767px) {
  .p-history__item::before {
    width: 0.875rem;
    height: 0.875rem;
    top: 0.25rem;
  }
}
.p-history__date {
  color: #005293;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-history__date {
    font-size: 0.875rem;
  }
}
.p-history__text {
  margin-top: 0.625rem;
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-history__text {
    margin-top: 0.375rem;
    font-size: 0.875rem;
  }
}
.p-history__text p + p {
  margin-top: 0.25rem;
}

.p-newslist {
  border-top: 1px solid #dddddd;
}
.p-newslist__item {
  border-bottom: 1px solid #dddddd;
}
.p-newslist__link {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-block: 1.75rem;
  color: inherit;
  letter-spacing: 0.05em;
  transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (any-hover: hover) {
  .p-newslist__link:hover {
    color: #005293;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-newslist__link {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-newslist__link {
    flex-wrap: wrap;
    gap: 0.25rem 0.75rem;
    padding-block: 1.25rem;
  }
}
.p-newslist__link--plain {
  cursor: default;
}
@media (any-hover: hover) {
  .p-newslist__link--plain:hover {
    color: inherit;
  }
}
.p-newslist__date {
  flex-shrink: 0;
  width: 6.875rem;
  color: #005293;
  font-family: var(--ed-font-en);
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-newslist__date {
    width: auto;
    font-size: 0.875rem;
  }
}
.p-newslist__title {
  flex: 1;
  min-width: 0;
  font-size: 1rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-newslist__title {
    flex: 0 0 100%;
    font-size: 0.9375rem;
    line-height: 1.7;
  }
}
.p-newslist__icons {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.p-newslist__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 1.375rem;
  padding-inline: 0.5rem;
  border: 1px solid currentColor;
  border-radius: 0.1875rem;
  color: #767676;
  font-size: 0.6875rem;
  font-family: var(--ed-font-en);
  line-height: 1;
}

.p-news-file {
  margin-top: 2.5rem;
}
.p-news-file__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border: 1px solid #dddddd;
  border-radius: 10px;
  color: #005293;
  font-size: 0.9375rem;
  transition: background-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (any-hover: hover) {
  .p-news-file__link:hover {
    background-color: rgba(173, 222, 248, 0.3);
  }
}
@media screen and (max-width: 767px) {
  .p-news-file__link {
    width: 100%;
    flex-wrap: wrap;
    gap: 0.25rem;
    font-size: 0.875rem;
  }
}
.p-news-file__name {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.p-news-file__size {
  color: #767676;
  font-size: 0.8125rem;
}

.p-news-link {
  margin-top: 2rem;
}

.p-single__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid #dddddd;
  font-size: 0.875rem;
}
.p-single__nav a {
  color: #005293;
}
@media (any-hover: hover) {
  .p-single__nav a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .p-single__nav {
    margin-top: 3rem;
  }
}

.p-single__back {
  margin-inline: auto;
  font-weight: 600;
}

.p-news__more {
  align-self: flex-end;
  margin-top: 0.75rem;
  color: #fff;
  font-family: var(--ed-font-en);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}
.p-news__more::after {
  content: " ›";
}
@media (any-hover: hover) {
  .p-news__more:hover {
    opacity: 0.75;
  }
}
@media screen and (max-width: 767px) {
  .p-news__more {
    font-size: 0.8125rem;
  }
}

.p-page-head {
  position: relative;
  background-color: #005293;
  background-image: var(--page-head-bg, none);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.p-page-head__overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 21.25rem;
  padding-block: 7.5rem;
  background-color: rgba(0, 82, 147, 0.8);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-page-head__overlay {
    min-height: 13.75rem;
    padding-block: 4.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-page-head__overlay {
    min-height: 10rem;
    padding-block: 3rem;
  }
}

.p-single__head {
  padding-bottom: 2rem;
  border-bottom: 1px solid #dddddd;
}
.p-single__title {
  margin-top: 0.75rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-single__title {
    font-size: 1.375rem;
  }
}
.p-single__body {
  margin-top: 3rem;
}

.p-notfound {
  text-align: center;
}
.p-notfound .c-btn {
  margin-top: clamp(2.5rem, 4.4444vw, 4rem);
}
.p-notfound__code {
  font-family: var(--ed-font-en);
  font-size: 6rem;
  font-weight: 700;
  color: #005293;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-notfound__code {
    font-size: 4rem;
  }
}

@media screen and (max-width: 1024px) {
  .u-pc {
    display: none !important;
  }
}

.u-tab {
  display: none !important;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .u-tab {
    display: block !important;
  }
}

.u-sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .u-sp {
    display: block !important;
  }
}

@media screen and (min-width: 1025px) {
  .u-tab-down {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .u-tab-up {
    display: none !important;
  }
}

.u-tel {
  pointer-events: none;
  cursor: default;
}
@media screen and (max-width: 767px) {
  .u-tel {
    pointer-events: auto;
    cursor: pointer;
  }
}

.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.u-center {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.u-ta-c {
  text-align: center;
}

.u-no-posts {
  padding-block: 4rem;
  text-align: center;
  color: #767676;
}

.u-mt-0 {
  margin-top: 0 !important;
}

.u-mt-16 {
  margin-top: 1rem !important;
}

.u-mt-24 {
  margin-top: 1.5rem !important;
}

.u-mt-40 {
  margin-top: 2.5rem !important;
}

.u-mt-64 {
  margin-top: 4rem !important;
}/*# sourceMappingURL=style.css.map */