@charset "UTF-8";
/*********************
/BASE
*********************/
:root {
  --sidebar-w: 0px;
}

@media screen and (min-width: 800px) {
  :root {
    --sidebar-w: 224px;
  }
}
html {
  overflow-y: auto;
  scrollbar-gutter: stable;
}

html,
body {
  overflow-x: hidden;
}

body {
  background: #fff;
  color: #333;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: clamp(0.9375rem, 0.7306034483rem + 0.4310344828vw, 1rem);
  overflow-wrap: break-word;
  font-style: normal;
}

body.is-fixed {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100dvh;
}

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

@media screen and (max-width: 599px) {
  .hidden-sp {
    display: none;
  }
}
@media screen and (min-width: 800px) {
  .hidden-sp {
    display: block;
  }
}

@media screen and (min-width: 600px) {
  .hidden-sm {
    display: none;
  }
}

@media screen and (min-width: 800px) {
  .hidden-md {
    display: none;
  }
}

@media screen and (min-width: 1000px) {
  .hidden-lg {
    display: none;
  }
}

@media screen and (min-width: 1220px) {
  .hidden-xl {
    display: none;
  }
}

.spacer {
  display: none;
}
@media screen and (min-width: 800px) {
  .spacer {
    display: inline;
  }
}

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

.link-underline {
  text-decoration: underline;
  text-underline-offset: 2px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.link-underline:hover {
  opacity: 0.7;
}

/*********************
共通
*********************/
.l-inner {
  margin-inline: auto;
  width: 90%;
}
@media screen and (min-width: 800px) {
  .l-inner {
    max-width: 900px;
  }
}

.l-inner-mid {
  margin-inline: auto;
  width: 90%;
}
@media screen and (min-width: 800px) {
  .l-inner-mid {
    max-width: 1100px;
  }
}

.l-section {
  padding-block: 88px;
}

.text-m {
  color: #333;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  line-height: 1.7;
  font-size: clamp(0.9375rem, 0.7306034483rem + 0.4310344828vw, 1rem);
  font-style: normal;
}
@media screen and (min-width: 800px) {
  .text-m {
    line-height: 1.8;
  }
}

.bold {
  font-weight: 400;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 800px) {
  .flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media screen and (min-width: 800px) {
  .reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

button,
input[type=button],
input[type=submit],
input[type=reset],
[role=button],
.wpcf7-submit,
.is-clickable {
  cursor: pointer;
}

/*********************
ANIMATION
*********************/
.fadein {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transition-duration: 1.5s;
          transition-duration: 1.5s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.fadein.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.c-fadein-appear {
  opacity: 0;
  -webkit-transition: opacity 3s ease;
  transition: opacity 3s ease;
}
.c-fadein-appear.is-active {
  opacity: 1;
}

/*********************
button
*********************/
.link-main {
  display: grid;
  place-items: center;
  background-color: #003e71;
  width: 280px;
  height: 78px;
  margin-inline: auto;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
}

@media screen and (min-width: 800px) {
  .link-main:hover {
    background-color: #668baa;
  }
}

.link-main__text {
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  padding-left: 10px;
}
.link-main__arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 16px;
  color: #fff;
  width: 16px;
  height: 5px;
}

.link-main__arrow svg {
  display: block;
  width: 16px;
  height: 5px;
}

.link-main--white {
  margin-top: clamp(3.75rem, -4.525862069rem + 17.2413793103vw, 6.25rem);
  background-color: #fff;
  border: 1px solid #003e71;
}
.link-main--white .link-main__text {
  color: #003e71;
}
.link-main--white .link-main__arrow {
  color: #003e71;
}

/*********************
/loading
*********************/
/*********************
pagetop
*********************/
.pagetop {
  position: fixed;
  right: 16px;
  bottom: 24px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background-color: #003e71;
  opacity: 0;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
  pointer-events: none;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
  z-index: 1000;
  color: #fff;
  border-radius: 50%;
  border: 1px solid #fff;
}
@media screen and (min-width: 800px) {
  .pagetop {
    right: 24px;
    bottom: 24px;
    width: 50px;
    height: 50px;
  }
}

.pagetop.is-show {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
  pointer-events: auto;
}

.pagetop:focus-visible {
  outline: 3px solid #003e71;
  outline-offset: 1px;
}

.pagetop svg {
  display: block;
  width: 15px;
  height: 7px;
}
@media screen and (min-width: 800px) {
  .pagetop svg {
    width: 18px;
    height: 9px;
  }
}

/*************************************************
pc side menu layout
*************************************************/
@media screen and (min-width: 800px) {
  .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.side-area {
  display: none;
}
@media screen and (min-width: 800px) {
  .side-area {
    display: block;
    position: fixed;
    top: 0;
    height: 100vh;
    width: 224px;
    border-right: 1px solid #ececec;
  }
}

@media screen and (min-width: 800px) {
  .main-area {
    width: calc(100% - 224px);
    margin-left: auto;
  }
}

/*************************************************
global-nav
*************************************************/
.global__logo--pc {
  display: none;
}
@media screen and (min-width: 800px) {
  .global__logo--pc {
    display: block;
    padding-block: 90px;
  }
}

.global-nav {
  margin-top: 64px;
}
@media screen and (min-width: 800px) {
  .global-nav {
    margin-top: 0;
  }
}

.global-nav__list--top {
  display: block;
}
@media screen and (min-width: 800px) {
  .global-nav__list--top {
    display: none;
  }
}

.global-nav__arrow {
  display: block;
}
@media screen and (min-width: 800px) {
  .global-nav__arrow {
    display: none;
  }
}

.side-menu.pc-only {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 32px;
}
.side-menu.pc-only .global__logo--pc {
  width: 160px;
}
.side-menu.pc-only .global-nav__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 800px) {
  .side-menu.pc-only .global-nav__link:hover,
  .side-menu.pc-only .global-nav__link.is-current {
    -webkit-text-decoration: underline solid #333 1px;
            text-decoration: underline solid #333 1px;
    text-underline-offset: 6px;
    -webkit-text-decoration-skip: ink;
            text-decoration-skip-ink: auto;
  }
}
.side-menu.pc-only .global-subnav__list--privacy {
  display: none;
}
.side-menu.pc-only .global-subnav__link img {
  margin-top: 56px;
  width: 32px;
}

.header-nav.is-open .global-nav__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 400px;
  margin-inline: auto;
}
.header-nav.is-open .global-nav__list {
  padding: 24px 20px;
  border-bottom: 1px solid #cccccc;
}
.header-nav.is-open .global-nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header-nav.is-open .global-nav__text {
  font-size: 16px;
}
.header-nav.is-open .global-nav__arrow svg {
  width: 7px;
  height: 12px;
  display: block;
}
.header-nav.is-open .global-subnav {
  margin-top: 24px;
  max-width: 400px;
  margin-inline: auto;
  padding-inline: 20px;
}
.header-nav.is-open .global-subnav__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}
.header-nav.is-open .global-subnav__link {
  font-size: 16px;
}
.header-nav.is-open .global-subnav__link img {
  width: 32px;
  height: 32px;
}

/*************************************************
header
*************************************************/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  z-index: 100;
}
@media screen and (min-width: 800px) {
  .header {
    display: none;
  }
}

.header.is-open {
  background-color: transparent;
}
.header.is-open .header__logo {
  display: none;
}
.header.is-open .header__logo--drawer {
  display: block;
  position: relative;
  z-index: 51;
}
.header.is-open .header__logo--drawer img {
  width: 174px;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 64px;
  padding: 12px 6px 12px 19px;
  background-color: #fff;
}

.header__logo {
  position: relative;
  z-index: 51;
}

.header__logo--drawer {
  display: none;
}

@media screen and (min-width: 800px) {
  .header__logo a {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .header__logo a:hover {
    opacity: 0.7;
  }
}

.header__logo img {
  width: 174px;
}
@media screen and (min-width: 800px) {
  .header__logo img {
    width: 240px;
  }
}

.header-nav__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1220px) {
  .header-nav__lists {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
  }
}

.header-nav__list {
  width: auto;
}
@media screen and (min-width: 1220px) {
  .header-nav__list {
    position: relative;
    padding-right: 34px;
  }
  .header-nav__list::before {
    display: block;
    position: absolute;
    content: "";
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 4px;
    width: 19px;
    height: 48px;
    background: url(../images/common/shape-slash.svg) no-repeat center center/contain;
  }
}

@media screen and (min-width: 1220px) {
  .header-nav__list:last-child {
    padding-inline: 0;
  }
  .header-nav__list:last-child::before {
    content: none;
  }
}

.header-nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.header-nav__link:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.header-nav__link:hover .header-nav__link-text-en,
.header-nav__link:hover .header-nav__link-text-ja {
  color: #89a5ce;
}

.header-nav__link-text-en {
  display: block;
  font-family: "Libre Baskerville", serif;
  font-size: 18px;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1220px) {
  .header-nav__link-text-en {
    color: #003e71;
  }
}

.header-nav__link-text-ja {
  display: block;
  font-size: 12px;
  color: #fff;
  font-weight: 500;
}
@media screen and (min-width: 1220px) {
  .header-nav__link-text-ja {
    color: #003e71;
  }
}

/*********************
drawer
*********************/
/* PC表示 */
.header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media (max-width: 800px) {
  .header-nav {
    display: none;
  }
}

/* SP表示（ドロワー開いたら表示） */
.header-nav.is-open {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 50;
  padding: 120px 40px;
  background: #fff;
}

.header-nav.is-open .header-nav__lists {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

@media screen and (min-width: 800px) {
  .header__open {
    display: none;
  }
}

.drawer-icon__wrapper {
  background: transparent;
  padding: 10px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: none;
  cursor: pointer;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
.drawer-icon__wrapper.is-checked .drawer-icon {
  width: 30px;
  height: 20px;
}
.drawer-icon__wrapper.is-checked .drawer-icon__bar {
  background-color: #333;
}
.drawer-icon__wrapper.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 10px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-icon__wrapper.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon__wrapper.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 10px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (min-width: 800px) {
  .drawer-icon__wrapper {
    display: none;
  }
}

.drawer-icon {
  width: 30px;
  height: 18px;
  position: relative;
  z-index: 51;
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 1px;
  background: #333;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 7px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 14px;
}

/*********************
footer
*********************/
.footer {
  background: #003e71;
  padding-top: clamp(3.125rem, -1.0129310345rem + 8.6206896552vw, 4.375rem);
  padding-bottom: clamp(1.875rem, -4.3318965517rem + 12.9310344828vw, 3.75rem);
}
.footer .global-nav__lists {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.footer .global-nav__list--top {
  display: none;
}
.footer .global-nav__arrow {
  display: none;
}
.footer .global-nav__text {
  color: #fff;
  font-size: 15px;
}
.footer .global-subnav__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer .global-subnav__list--privacy {
  display: none;
}
.footer .global-subnav__link {
  color: #fff;
}
.footer .global-subnav__list--instagram {
  display: none;
}

.footer__inner {
  max-width: 86%;
}

.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1000px) {
  .footer__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 40px;
  }
}

.footer__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 56px;
}
@media screen and (min-width: 1000px) {
  .footer__left {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 24px;
  }
}

.footer__logo {
  width: 160px;
}

.footer-information__company {
  color: #fff;
  font-size: 24px;
  text-align: center;
}
@media screen and (min-width: 1000px) {
  .footer-information__company {
    text-align: left;
  }
}

.footer__copyright-wrapper {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 1000px) {
  .footer__copyright-wrapper {
    margin-top: 0;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.footer__instagram {
  display: block;
  width: 32px;
}

.footer__note {
  margin-top: 32px;
  font-size: 11px;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 800px) {
  .footer__note {
    text-align: right;
  }
}

.footer__copyright {
  margin-top: 8px;
  font-size: 10px;
  color: #fff;
}
@media screen and (min-width: 800px) {
  .footer__copyright {
    margin-top: 4px;
  }
}

/*********************
top 共通
*********************/
.t-section__title-ja {
  font-size: clamp(1.625rem, -0.4439655172rem + 4.3103448276vw, 2.25rem);
  font-weight: 700;
}

.t-section__title-en {
  margin-top: 16px;
  font-family: "Libre Baskerville", serif;
  color: #003e71;
  font-size: clamp(0.9375rem, 0.7306034483rem + 0.4310344828vw, 1rem);
  font-weight: 500;
}

/*********************
top
*********************/
.mv {
  position: relative;
  top: 0;
  overflow: hidden;
  pointer-events: none;
  background-color: #003e71;
}
@media screen and (min-width: 800px) {
  .mv {
    margin-top: 0;
  }
}

.mv__image {
  display: block;
}

.mv-lead__image {
  position: absolute;
  bottom: 6%;
  left: 14%;
  z-index: 2;
  width: clamp(5.3125rem, -9.7909482759rem + 31.4655172414vw, 9.875rem);
}
@media screen and (min-width: 800px) {
  .mv-lead__image {
    top: 54%;
    bottom: auto;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 85px;
  }
}
@media screen and (min-width: 1000px) {
  .mv-lead__image {
    width: 120px;
  }
}
@media screen and (min-width: 1220px) {
  .mv-lead__image {
    width: 158px;
  }
}

.t-lead {
  background-color: #003e71;
}

.t-lead__wrapper {
  padding-top: clamp(3.75rem, -2.4568965517rem + 12.9310344828vw, 5.625rem);
  padding-bottom: clamp(2.5rem, -1.6379310345rem + 8.6206896552vw, 3.75rem);
  gap: 70px;
}
@media screen and (min-width: 800px) {
  .t-lead__wrapper {
    gap: 16px;
  }
}

.t-lead__text {
  color: #fff;
  font-size: clamp(0.9375rem, 0.3168103448rem + 1.2931034483vw, 1.125rem);
  line-height: 2.2;
}
@media screen and (min-width: 800px) {
  .t-lead__text {
    width: 81.1111111111%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.t-lead__image {
  margin-left: auto;
  margin-right: calc((100vw - 100%) / -2);
}
@media screen and (min-width: 800px) {
  .t-lead__image {
    width: 27.3333333333%;
    margin-right: calc((100vw - var(--sidebar-w) - 100%) / -2);
  }
}

.t-lead__image img {
  width: 230px;
}

.t-lead__image-bg {
  overflow: hidden;
  width: 100%;
  height: 160px;
}
@media screen and (min-width: 800px) {
  .t-lead__image-bg {
    height: auto;
  }
}

.t-lead__image-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.t-about {
  padding-top: clamp(2.5rem, -5.775862069rem + 17.2413793103vw, 5rem);
}
@media screen and (min-width: 800px) {
  .t-about {
    background: #d1e6f2;
  }
}

.t-about__top {
  background: #d1e6f2;
  padding-bottom: clamp(2rem, -12.0689655172rem + 29.3103448276vw, 6.25rem);
}
@media screen and (min-width: 800px) {
  .t-about__top {
    background: none;
  }
}

.t-about__inner {
  max-width: 1100px;
}

.t-about__items {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

.t-about__items::before,
.t-about__items::after {
  position: absolute;
  content: "";
  top: 0;
  width: 2px;
  height: 100%;
  background: #d1e6f2;
}

.t-about__items::before {
  left: 16px;
}

.t-about__items::after {
  right: 16px;
}

.t-about-item {
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 800px) {
  .t-about-item__image {
    width: 50%;
  }
}

.t-about-item__image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 上下ズラし */
@media screen and (min-width: 800px) {
  .t-about-item__image--right {
    -webkit-transform: translateY(-24px);
            transform: translateY(-24px);
  }
}

@media screen and (min-width: 800px) {
  .t-about-item__image--left {
    -webkit-transform: translateY(24px);
            transform: translateY(24px);
  }
}

.t-about-item__description {
  padding-inline: clamp(2rem, -7.9310344828rem + 20.6896551724vw, 5rem);
  padding-block: 40px;
}
@media screen and (min-width: 800px) {
  .t-about-item__description {
    width: 50%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-block: 24px;
  }
}
@media screen and (min-width: 1440px) {
  .t-about-item__description {
    padding-block: 0;
  }
}

.t-about-item__title {
  font-size: clamp(1.375rem, -0.2801724138rem + 3.4482758621vw, 1.875rem);
}

.t-section-item__text {
  margin-top: 32px;
}

.t-about-message__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}
@media screen and (min-width: 800px) {
  .t-about-message__image {
    display: block;
    position: relative;
  }
}

.t-about-message__image img {
  width: auto;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right center;
     object-position: right center;
  min-width: 100%;
}
@media screen and (min-width: 800px) {
  .t-about-message__image img {
    width: 100%;
    height: auto;
  }
}

.t-about-message__description {
  margin-top: -46px;
  width: 100%;
  background: #464646;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(10%, rgba(0, 0, 0, 0.6)), color-stop(20%, rgba(0, 0, 0, 0.9)), color-stop(20%, rgb(0, 0, 0)), to(rgb(0, 0, 0)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 10%, rgba(0, 0, 0, 0.9) 20%, rgb(0, 0, 0) 20%, rgb(0, 0, 0) 100%);
}
@media screen and (min-width: 800px) {
  .t-about-message__description {
    margin-top: 0;
    position: absolute;
    inset: 0;
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 40%;
    background: #000000;
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.9)), color-stop(80%, rgba(0, 0, 0, 0)));
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 80%);
  }
}

.t-about-message__inner {
  padding-block: 40px;
}
@media screen and (min-width: 800px) {
  .t-about-message__inner {
    padding-block: 0;
  }
}

.t-about-message__title {
  color: #fff;
}

.t-about-message__text {
  color: #fff;
}

.t-kura {
  padding-top: clamp(2.5rem, -5.775862069rem + 17.2413793103vw, 5rem);
}

.t-kura-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media screen and (min-width: 800px) {
  .t-kura-item {
    grid-template-columns: 12fr 7fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.t-kura__link-wrapper {
  margin-top: clamp(2rem, -2.9655172414rem + 10.3448275862vw, 3.5rem);
}

.t-company {
  padding-top: clamp(5rem, 0.8620689655rem + 8.6206896552vw, 6.25rem);
  padding-bottom: clamp(3.125rem, -7.2198275862rem + 21.5517241379vw, 6.25rem);
}
.t-company .dl-lists {
  margin-top: clamp(2.5rem, -0.8103448276rem + 6.8965517241vw, 3.5rem);
}
.t-company .dl-lists .dl-list-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding-block: 16px;
  border-top: 1px solid #e7edf5;
}
@media screen and (min-width: 800px) {
  .t-company .dl-lists .dl-list-dl {
    padding-block: 0;
    border-top: none;
  }
}
@media screen and (min-width: 800px) {
  .t-company .dl-lists .dl-list-dl:first-of-type .dl-list-dt {
    border-top: 1px solid #cccccc;
  }
}
@media screen and (min-width: 800px) {
  .t-company .dl-lists .dl-list-dl:first-of-type .dl-list-dd {
    border-top: 1px solid #cccccc;
  }
}
.t-company .dl-lists .dl-list-dl:last-of-type {
  border-bottom: 1px solid #cccccc;
}
@media screen and (min-width: 800px) {
  .t-company .dl-lists .dl-list-dl:last-of-type {
    border-bottom: none;
  }
}
.t-company .dl-lists .dl-list-dt,
.t-company .dl-lists .dl-list-dd {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  font-size: clamp(0.9375rem, 0.7306034483rem + 0.4310344828vw, 1rem);
}
.t-company .dl-lists .dl-list-dt {
  width: 100px;
  padding: 0;
}
@media screen and (min-width: 800px) {
  .t-company .dl-lists .dl-list-dt {
    width: 270px;
    border-bottom: 1px solid #cccccc;
    padding: 28px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.t-company .dl-lists .dl-list-dd {
  padding: 0;
}
@media screen and (min-width: 800px) {
  .t-company .dl-lists .dl-list-dd {
    width: calc(100% - 270px);
    border-top: none;
    border-bottom: 1px solid #cccccc;
    padding: 28px 40px;
  }
}

/********************/
.t-button-area {
  padding-block: clamp(4.5rem, -10.3965517241rem + 31.0344827586vw, 9rem);
}

.button-area-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 6%;
  width: 100%;
  max-width: 330px;
  padding: 37px 20px;
  margin-inline: auto;
  position: relative;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (min-width: 800px) {
  .button-area-button {
    gap: 10%;
    padding: 44px 48px;
    max-width: 570px;
  }
}

@media screen and (min-width: 800px) {
  .button-area-button:hover {
    opacity: 0.5;
  }
}

.button-area__title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.button-area-button__title-en {
  font-size: clamp(1.875rem, -2.4698275862rem + 9.0517241379vw, 3.1875rem);
}

.button-area-button__title-ja {
  white-space: nowrap;
}

.button-area-button::before,
.button-area-button::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 92%;
  height: 1px;
  background-color: #003e71;
}

.button-area-button::before {
  top: 0;
}

.button-area-button::after {
  bottom: 0;
}

.button-area-button__left,
.button-area-button__right {
  position: absolute;
  top: 20px; /* 上下を少し内側にする */
  bottom: 20px;
  width: 1px;
  background: #003e71;
}

.button-area-button__left {
  left: 0;
}

.button-area-button__right {
  right: 0;
}

.button-area-button__arrow {
  display: block;
  width: 31px;
  height: 10px;
  color: #003e71;
}
@media screen and (min-width: 800px) {
  .button-area-button__arrow {
    width: 48px;
    height: 32px;
    padding-top: 8px;
  }
}

/*********************
下層　共通
*********************/
.page-head__image-wrapper {
  position: relative;
  width: 100%;
  height: clamp(10rem, -23.1034482759rem + 68.9655172414vw, 20rem);
}

.page-head__image {
  position: absolute;
  inset: 0;
  display: block;
}

.page-head__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.page-title__inner {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
}

.page-title {
  margin-top: 0;
  position: relative;
  left: 0;
}

.page-title__ja {
  font-size: clamp(1.625rem, -2.099137931rem + 7.7586206897vw, 2.75rem);
  color: #fff;
  letter-spacing: 0.15em;
}

.page-title__en {
  margin-top: clamp(1rem, 0.1724137931rem + 1.724137931vw, 1.25rem);
  font-family: "Libre Baskerville", serif;
  color: #fff;
  font-size: clamp(0.9375rem, 0.3168103448rem + 1.2931034483vw, 1.125rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
}

/*********************
c-breadcrumb
*********************/
.c-breadcrumb {
  padding-top: 24px;
  width: 100%;
}

.c-breadcrumb__inner {
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90%;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  overflow: hidden;
}

.c-breadcrumb__list {
  font-size: 13px;
  color: #333;
  font-weight: 400;
  letter-spacing: 0.05em;
  white-space: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.c-breadcrumb__list:last-child {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0; /* ← Safari 対策*/
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.c-breadcrumb__link {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.05em;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (min-width: 800px) {
  .c-breadcrumb__link {
    font-size: 14px;
  }
}

@media screen and (min-width: 800px) {
  .c-breadcrumb__link:hover {
    opacity: 0.7;
  }
}

.c-breadcrumb__list:after {
  content: ">";
  margin: 0 0.5em;
}

.c-breadcrumb__list:last-child::after {
  content: none;
}

.p-section-title--underline {
  position: relative;
  z-index: 0;
  font-size: clamp(1.25rem, -0.8189655172rem + 4.3103448276vw, 1.875rem);
  color: #003e71;
}

.p-section-title--underline::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -24px;
  width: 160px;
  height: 1px;
  background-color: currentColor;
}
@media screen and (min-width: 800px) {
  .p-section-title--underline::after {
    bottom: -40px;
  }
}

.p-section__lead {
  margin-top: clamp(4rem, -0.9655172414rem + 10.3448275862vw, 5.5rem);
  font-size: clamp(0.875rem, 0.0474137931rem + 1.724137931vw, 1.125rem);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

/*********************
c-news , p-news
*********************/
.t-news {
  margin-top: -1px;
  padding-top: 4px;
  padding-bottom: clamp(3.125rem, -5.150862069rem + 17.2413793103vw, 5.625rem);
  background-color: #fff;
}

.t-news__content {
  margin-top: clamp(2.5rem, 0.8448275862rem + 3.4482758621vw, 3rem);
}

.c-news__lists {
  width: 100%;
}

.c-news__list.flex {
  gap: 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 800px) {
  .c-news__list.flex {
    gap: 40px;
  }
}

.p-news__inner {
  max-width: 1000px;
}

.p-news-detail__inner {
  max-width: 850px;
}

.p-news__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.c-news__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-top: 1px solid #cccccc;
}

.c-news-link {
  padding-block: clamp(1.25rem, 0.4224137931rem + 1.724137931vw, 1.5rem);
  border-bottom: 1px solid #cccccc;
}
@media screen and (min-width: 800px) {
  .c-news-link {
    padding-inline: 12px;
  }
}
.c-news-link:hover .c-news-link__title {
  color: #003e71;
}

.c-news__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 800px) {
  .c-news__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
}

.c-news-link__date {
  font-size: clamp(0.9375rem, 0.7306034483rem + 0.4310344828vw, 1rem);
}

.c-news-link__title {
  margin-top: 8px;
  font-size: clamp(0.9375rem, 0.7306034483rem + 0.4310344828vw, 1rem);
}
@media screen and (min-width: 800px) {
  .c-news-link__title {
    margin-top: 0;
  }
}

.t-news__link-wrapper {
  margin-top: 40px;
}

.c-news-link__text,
.p-news-link__text {
  margin-top: clamp(0.5rem, -0.3275862069rem + 1.724137931vw, 0.75rem);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.9;
}

.p-news__content {
  padding-top: clamp(1.875rem, -2.2629310345rem + 8.6206896552vw, 3.125rem);
  padding-bottom: clamp(4.375rem, -5.9698275862rem + 21.5517241379vw, 7.5rem);
}
.p-news__content .pagination {
  margin-top: clamp(3.125rem, -3.0818965517rem + 12.9310344828vw, 5rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(1.25rem, 0.4224137931rem + 1.724137931vw, 1.5rem);
}
.p-news__content .page-number {
  display: grid;
  place-items: center;
}
.p-news__content .page-numbers {
  font-size: 18px;
  width: 27px;
  height: 27px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: grid;
  place-items: center;
}
.p-news__content .page-numbers:hover {
  opacity: 0.5;
}
.p-news__content .page-numbers.current {
  border-radius: 50%;
  border: 1px solid #333;
}
.p-news__content .pagination__prev,
.p-news__content .pagination__next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-news__content .pagination__prev svg,
.p-news__content .pagination__next svg {
  width: 20px;
  color: #333;
}
.p-news__content .pagination__prev svg:hover,
.p-news__content .pagination__next svg:hover {
  opacity: 0.5;
}

/*********************
single-post
*********************/
.p-news-detail {
  padding-bottom: clamp(4rem, -11.724137931rem + 32.7586206897vw, 8.75rem);
}

.breadcrumb__list-single-post {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: 0;
}
@media screen and (min-width: 800px) {
  .breadcrumb__list-single-post {
    max-width: 30%;
  }
}

.single-post__title {
  margin-top: clamp(1.5rem, 0.2586206897rem + 2.5862068966vw, 1.875rem);
  font-size: clamp(1.25rem, 0.4224137931rem + 1.724137931vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.05em;
}

.single-post__image {
  margin-top: clamp(1.75rem, -0.7327586207rem + 5.1724137931vw, 2.5rem);
  text-align: center;
}
.single-post__image img {
  width: 800px;
}

.p-news-detail-link__wrapper {
  margin-top: clamp(2.5rem, -2.4655172414rem + 10.3448275862vw, 4rem);
}

.p-news-detail-link {
  background-color: #fff;
  border: 1px solid #003e71;
}

.p-news-detail-link:hover {
  background-color: #003e71;
}
.p-news-detail-link:hover .p-news-detail-link__text {
  color: #fff;
}
.p-news-detail-link:hover .p-news-detail-link__arrow {
  color: #fff;
}

.p-news-detail-link__text {
  color: #003e71;
  font-size: clamp(0.9375rem, 0.3168103448rem + 1.2931034483vw, 1.125rem);
  line-height: 2;
  padding-left: 0;
}

.p-news-detail-link__arrow {
  color: #003e71;
  width: 16px;
  height: 7px;
}

/*********************
single-postのcontentの中
*********************/
.content-single {
  margin-top: clamp(1.5rem, -1.8103448276rem + 6.8965517241vw, 2.5rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.content-single h2 {
  color: #003e71;
  font-size: clamp(1.125rem, 0.7112068966rem + 0.8620689655vw, 1.25rem);
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 12px;
}
.content-single h3 {
  font-size: clamp(1rem, 0.5862068966rem + 0.8620689655vw, 1.125rem);
  font-weight: 400;
  line-height: 160%;
  margin-bottom: 8px;
}
.content-single h4 {
  font-size: clamp(0.875rem, 0.4612068966rem + 0.8620689655vw, 1rem);
  font-weight: 400;
  line-height: 160%;
  letter-spacing: clamp(0.0625rem, 0.0211206897rem + 0.0862068966vw, 0.075rem);
  padding-bottom: 8px;
}
.content-single ul,
.content-single ol {
  margin-bottom: 24px;
}
.content-single .note-container {
  margin-bottom: 24px;
}
.content-single figure,
.content-single img {
  display: block;
  width: 600px;
  max-width: 100%;
  margin: auto;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.content-single figure {
  width: 800px;
  height: auto;
  overflow: hidden;
  margin-bottom: 24px;
}
.content-single figcaption {
  display: none;
}
.content-single table {
  border: solid 1px #ddd;
  border-collapse: collapse;
  margin-bottom: 24px;
}
.content-single tr {
  border-bottom: solid 1px #ddd;
}
.content-single th,
.content-single td {
  padding: 1em;
  border-right: solid 1px #ddd;
}
.content-single ul,
.content-single ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.content-single li {
  font-size: clamp(0.875rem, 0.6681034483rem + 0.4310344828vw, 0.9375rem);
  font-weight: 400;
  line-height: 180%;
  letter-spacing: clamp(0.0625rem, 0.0211206897rem + 0.0862068966vw, 0.075rem);
  display: inline-block;
  padding-left: 24px;
  position: relative;
}
.content-single li::before {
  position: absolute;
  content: "";
  top: 11px;
  left: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #003e71;
  margin-top: 2px;
}
.content-single p {
  font-size: clamp(0.875rem, 0.6681034483rem + 0.4310344828vw, 0.9375rem);
  font-weight: 400;
  line-height: 180%;
  letter-spacing: clamp(0.0625rem, 0.0211206897rem + 0.0862068966vw, 0.075rem);
  margin-bottom: 24px;
}
.content-single blockquote {
  margin-bottom: 24px;
}
.content-single blockquote p {
  margin-bottom: 0;
}
.content-single blockquote {
  font-size: clamp(0.875rem, 0.6681034483rem + 0.4310344828vw, 0.9375rem);
  font-weight: 400;
  line-height: 180%;
  letter-spacing: clamp(0.0625rem, 0.0211206897rem + 0.0862068966vw, 0.075rem);
  padding-left: 24px;
  border-left: 1px solid #003e71;
}
.content-single strong {
  font-weight: 700;
}
.content-single p strong {
  font-weight: 700;
}
.content-single a {
  text-decoration: underline;
  text-underline-offset: 2px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.content-single a:hover {
  opacity: 0.7;
}

/*********************
p-products
*********************/
.p-products__content {
  padding-bottom: clamp(2.5rem, -14.0517241379rem + 34.4827586207vw, 7.5rem);
}

.p-products__title {
  margin-top: clamp(2rem, -2.1379310345rem + 8.6206896552vw, 3.25rem);
  font-size: clamp(1.625rem, -0.4439655172rem + 4.3103448276vw, 2.25rem);
  text-align: center;
}

.p-products__lists {
  margin-top: clamp(1.5rem, -1.8103448276rem + 6.8965517241vw, 2.5rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media screen and (min-width: 800px) {
  .p-products__lists {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px;
  }
}

.p-products-list__title {
  margin-top: 8px;
  font-size: 18px;
}

.p-products-list__size {
  margin-top: 8px;
}

/*********************
p-contact
*********************/
.p-contact__inner {
  max-width: 800px;
}

.p-contact__lead {
  text-align: left;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 16px;
}

.p-contact__form {
  margin-top: 56px;
}

.p-contact__content {
  padding-top: clamp(3.125rem, -7.2198275862rem + 21.5517241379vw, 6.25rem);
  padding-bottom: clamp(2.5rem, -14.0517241379rem + 34.4827586207vw, 7.5rem);
}
.p-contact__content input[type=email],
.p-contact__content input[type=text],
.p-contact__content input[type=tel],
.p-contact__content input[type=url],
.p-contact__content input[type=number],
.p-contact__content input[type=date],
.p-contact__content input[type=file],
.p-contact__content select,
.p-contact__content textarea {
  margin-top: 0;
  padding: 11px 6px 10px;
  font-weight: 400;
  border: 1px solid #808080;
  background: #fff;
  width: 100%;
  border-radius: 0;
  height: 50px;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
}
.p-contact__content input[type=email]::-webkit-input-placeholder, .p-contact__content input[type=text]::-webkit-input-placeholder, .p-contact__content input[type=tel]::-webkit-input-placeholder, .p-contact__content input[type=url]::-webkit-input-placeholder, .p-contact__content input[type=number]::-webkit-input-placeholder, .p-contact__content input[type=date]::-webkit-input-placeholder, .p-contact__content input[type=file]::-webkit-input-placeholder, .p-contact__content select::-webkit-input-placeholder, .p-contact__content textarea::-webkit-input-placeholder {
  display: block;
  color: #cccccc;
  font-size: clamp(0.9375rem, 0.7306034483rem + 0.4310344828vw, 1rem);
  font-weight: 400;
  line-height: 180%;
  letter-spacing: clamp(0.04375rem, 0.0334051724rem + 0.0215517241vw, 0.046875rem);
  padding: 12px 13px 16px;
}
.p-contact__content input[type=email]::-moz-placeholder, .p-contact__content input[type=text]::-moz-placeholder, .p-contact__content input[type=tel]::-moz-placeholder, .p-contact__content input[type=url]::-moz-placeholder, .p-contact__content input[type=number]::-moz-placeholder, .p-contact__content input[type=date]::-moz-placeholder, .p-contact__content input[type=file]::-moz-placeholder, .p-contact__content select::-moz-placeholder, .p-contact__content textarea::-moz-placeholder {
  display: block;
  color: #cccccc;
  font-size: clamp(0.9375rem, 0.7306034483rem + 0.4310344828vw, 1rem);
  font-weight: 400;
  line-height: 180%;
  letter-spacing: clamp(0.04375rem, 0.0334051724rem + 0.0215517241vw, 0.046875rem);
  padding: 12px 13px 16px;
}
.p-contact__content input[type=email]:-ms-input-placeholder, .p-contact__content input[type=text]:-ms-input-placeholder, .p-contact__content input[type=tel]:-ms-input-placeholder, .p-contact__content input[type=url]:-ms-input-placeholder, .p-contact__content input[type=number]:-ms-input-placeholder, .p-contact__content input[type=date]:-ms-input-placeholder, .p-contact__content input[type=file]:-ms-input-placeholder, .p-contact__content select:-ms-input-placeholder, .p-contact__content textarea:-ms-input-placeholder {
  display: block;
  color: #cccccc;
  font-size: clamp(0.9375rem, 0.7306034483rem + 0.4310344828vw, 1rem);
  font-weight: 400;
  line-height: 180%;
  letter-spacing: clamp(0.04375rem, 0.0334051724rem + 0.0215517241vw, 0.046875rem);
  padding: 12px 13px 16px;
}
.p-contact__content input[type=email]::-ms-input-placeholder, .p-contact__content input[type=text]::-ms-input-placeholder, .p-contact__content input[type=tel]::-ms-input-placeholder, .p-contact__content input[type=url]::-ms-input-placeholder, .p-contact__content input[type=number]::-ms-input-placeholder, .p-contact__content input[type=date]::-ms-input-placeholder, .p-contact__content input[type=file]::-ms-input-placeholder, .p-contact__content select::-ms-input-placeholder, .p-contact__content textarea::-ms-input-placeholder {
  display: block;
  color: #cccccc;
  font-size: clamp(0.9375rem, 0.7306034483rem + 0.4310344828vw, 1rem);
  font-weight: 400;
  line-height: 180%;
  letter-spacing: clamp(0.04375rem, 0.0334051724rem + 0.0215517241vw, 0.046875rem);
  padding: 12px 13px 16px;
}
.p-contact__content input[type=email]::placeholder,
.p-contact__content input[type=text]::placeholder,
.p-contact__content input[type=tel]::placeholder,
.p-contact__content input[type=url]::placeholder,
.p-contact__content input[type=number]::placeholder,
.p-contact__content input[type=date]::placeholder,
.p-contact__content input[type=file]::placeholder,
.p-contact__content select::placeholder,
.p-contact__content textarea::placeholder {
  display: block;
  color: #cccccc;
  font-size: clamp(0.9375rem, 0.7306034483rem + 0.4310344828vw, 1rem);
  font-weight: 400;
  line-height: 180%;
  letter-spacing: clamp(0.04375rem, 0.0334051724rem + 0.0215517241vw, 0.046875rem);
  padding: 12px 13px 16px;
}
.p-contact__content input[type=email]:focus,
.p-contact__content input[type=text]:focus,
.p-contact__content input[type=tel]:focus,
.p-contact__content input[type=url]:focus,
.p-contact__content input[type=number]:focus,
.p-contact__content input[type=date]:focus,
.p-contact__content input[type=file]:focus,
.p-contact__content select:focus,
.p-contact__content textarea:focus {
  outline: none;
  border: 1px solid #003e71;
}
@media screen and (min-width: 800px) {
  .p-contact__content input[type=email],
  .p-contact__content input[type=text],
  .p-contact__content input[type=tel],
  .p-contact__content input[type=url],
  .p-contact__content input[type=number],
  .p-contact__content input[type=date],
  .p-contact__content input[type=file],
  .p-contact__content select,
  .p-contact__content textarea {
    padding: 11px 22px 10px;
  }
}

/*********************
p-contact snow monkey
*********************/
.smf-form .smf-textarea-control__control {
  border: 1px solid #808080;
  background: #fff;
  height: 124px;
}
.smf-form .smf-textarea-control__control:focus {
  outline: none;
  border: 1px solid #003e71;
}

.smf-form--letter .smf-item__col--label {
  padding-bottom: 12px;
}

.form-kengaku {
  padding-bottom: 0;
}

.form-icon .smf-item__label__text {
  position: relative;
}

.form-date-title {
  position: relative;
  display: inline-block;
}

.form-icon .smf-item__label__text::after,
.form-date-title::after {
  position: absolute;
  right: -18px;
  content: "※";
  color: #e11e3c;
}

.smf-item.form-date-first,
.smf-item.form-date-second {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}
@media screen and (min-width: 800px) {
  .smf-item.form-date-first,
  .smf-item.form-date-second {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 24px;
  }
}
.smf-item.form-date-first .smf-item__col--label,
.smf-item.form-date-second .smf-item__col--label {
  padding-bottom: var(--_padding-1);
}
@media screen and (min-width: 800px) {
  .smf-item.form-date-first .smf-item__col--label,
  .smf-item.form-date-second .smf-item__col--label {
    padding-bottom: 0;
  }
}

/* 右カラム（input側）を伸ばす */
.smf-item.form-date-first .smf-item__col--controls,
.smf-item.form-date-second .smf-item__col--controls {
  width: 100%;
  max-width: 100%;
  height: 50px;
}
@media screen and (min-width: 800px) {
  .smf-item.form-date-first .smf-item__col--controls,
  .smf-item.form-date-second .smf-item__col--controls {
    width: 350px;
  }
}

form.snow-monkey-form[data-screen=confirm] .smf-item.form-date-first .smf-item__col--controls .smf-item__controls,
form.snow-monkey-form[data-screen=confirm] .smf-item.form-date-second .smf-item__col--controls .smf-item__controls {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

/* iOS Safari 対策 */
.smf-form input[type=date] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 0; /* iOSの丸みを消す場合 */
}

.smf-form input[type=date] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 50px; /* 一応指定 */
  padding: 11px 6px; /* ここで実寸を揃える */
  line-height: 1.2; /* 変に膨らむのを防ぐ */
  font-size: 16px; /* iPhone拡大(zoom)回避にも効く */
}

.smf-radio-buttons-control .smf-radio-buttons-control__control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 56px;
}

/* 送信完了画面が出る箇所を薄くする例（必要なら） */
.smf-complete-content,
.smf-form--complete .smf-form__content {
  text-align: center;
  font-size: clamp(1.25rem, 0.4224137931rem + 1.724137931vw, 1.5rem);
}

.smf-action .smf-button-control__control {
  margin-top: 25px;
  color: #fff;
  background: #003e71;
  border: 1px solid #003e71;
  border-radius: 0;
  width: 280px;
  height: 78px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.smf-action .smf-button-control__control:hover {
  color: #003e71;
  background-color: #fff;
  border: 1px solid #003e71;
}

.privacy-box {
  margin-top: 40px;
  max-height: 300px;
  min-height: 200px;
  padding: 20px 40px 20px 30px;
  border: 1px solid #808080;
}

.privacy-title {
  border-bottom: 1px solid #808080;
  padding-bottom: 8px;
  margin-bottom: 20px;
}

.privacy-box__text {
  line-height: 1.6;
}

.privacy-box__lists {
  margin-top: 24px;
  counter-reset: privacy-counter;
  list-style: none;
  padding-left: 0;
}

.privacy-box__list {
  counter-increment: privacy-counter;
  position: relative;
  padding-left: 2em;
  margin-bottom: 1.5em;
  line-height: 1.6;
}

.privacy-box__list > p:first-child {
  margin-bottom: 4px;
}

.privacy-box__list > p:first-child::before {
  content: counter(privacy-counter) "．";
  position: absolute;
  left: 0;
}

.simplebar-track.simplebar-vertical {
  width: 8px;
}

.simplebar-scrollbar::before {
  background: #003e71;
  border-radius: 6px;
  opacity: 1;
  content: "";
}

/* レール */
.simplebar-track.simplebar-vertical {
  width: 16px;
  right: 0;
}

/* ハンドル本体 */
.simplebar-scrollbar {
  width: 100%;
}

/* ハンドルの見た目 */
.simplebar-scrollbar::before {
  content: "";
  background-color: #b1b1b1;
  border-radius: 4px;
}

.smf-form--letter .smf-item.privacy-note {
  margin-top: 40px;
}

.smf-checkboxes-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-contact__title {
  font-size: clamp(1.25rem, 0.4224137931rem + 1.724137931vw, 1.5rem);
  margin-bottom: clamp(2.5rem, -1.6379310345rem + 8.6206896552vw, 3.75rem);
}

/*********************
form共通
*********************/
.base-form__intro-text {
  margin-block: clamp(1.5rem, -0.1551724138rem + 3.4482758621vw, 2rem);
  text-align: left;
}
@media screen and (min-width: 800px) {
  .base-form__intro-text {
    text-align: center;
  }
}

.base-form__button-wrapper {
  margin-top: clamp(2.5rem, -1.6379310345rem + 8.6206896552vw, 3.75rem);
}

/*********************
form共通をアレンジ
*********************/
/*********************
p-contact-confirmation/thanks
*********************/
/*確認画面と完了画面を非表示*/
.base-form__title {
  font-size: clamp(1.5rem, -0.1551724138rem + 3.4482758621vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #003e71;
  text-align: center;
}

.base-form__intro-text {
  margin-bottom: clamp(1.5rem, -1.8103448276rem + 6.8965517241vw, 2.5rem);
}

/*********************
p-policy privacy
*********************/
/*********************
p-404
*********************/
.page-head__title--en .p-404__title-number {
  font-family: "Noto Serif JP", serif;
  font-size: 84%;
}