.splide__container{box-sizing:border-box;position:relative}.splide__list{backface-visibility:hidden;display:flex;height:100%;margin:0!important;padding:0!important}.splide.is-initialized:not(.is-active) .splide__list{display:block}.splide__pagination{align-items:center;display:flex;flex-wrap:wrap;justify-content:center;margin:0;pointer-events:none}.splide__pagination li{display:inline-block;line-height:1;list-style-type:none;margin:0;pointer-events:auto}.splide:not(.is-overflow) .splide__pagination{display:none}.splide__progress__bar{width:0}.splide{position:relative;visibility:hidden}.splide.is-initialized,.splide.is-rendered{visibility:visible}.splide__slide{backface-visibility:hidden;box-sizing:border-box;flex-shrink:0;list-style-type:none!important;margin:0;position:relative}.splide__slide img{vertical-align:bottom}.splide__spinner{animation:splide-loading 1s linear infinite;border:2px solid #999;border-left-color:transparent;border-radius:50%;bottom:0;contain:strict;display:inline-block;height:20px;left:0;margin:auto;position:absolute;right:0;top:0;width:20px}.splide__sr{clip:rect(0 0 0 0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.splide__toggle.is-active .splide__toggle__play,.splide__toggle__pause{display:none}.splide__toggle.is-active .splide__toggle__pause{display:inline}.splide__track{overflow:hidden;position:relative;z-index:0}@keyframes splide-loading{0%{transform:rotate(0)}to{transform:rotate(1turn)}}.splide__track--draggable{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.splide__track--fade>.splide__list>.splide__slide{margin:0!important;opacity:0;z-index:0}.splide__track--fade>.splide__list>.splide__slide.is-active{opacity:1;z-index:1}.splide--rtl{direction:rtl}.splide__track--ttb>.splide__list{display:block}.splide__arrow{align-items:center;background:#ccc;border:0;border-radius:50%;cursor:pointer;display:flex;height:2em;justify-content:center;opacity:.7;padding:0;position:absolute;top:50%;transform:translateY(-50%);width:2em;z-index:1}.splide__arrow svg{fill:#000;height:1.2em;width:1.2em}.splide__arrow:hover:not(:disabled){opacity:.9}.splide__arrow:disabled{opacity:.3}.splide__arrow:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide__arrow--prev{left:1em}.splide__arrow--prev svg{transform:scaleX(-1)}.splide__arrow--next{right:1em}.splide.is-focus-in .splide__arrow:focus{outline:3px solid #0bf;outline-offset:3px}.splide__pagination{bottom:.5em;left:0;padding:0 1em;position:absolute;right:0;z-index:1}.splide__pagination__page{background:#ccc;border:0;border-radius:50%;display:inline-block;height:8px;margin:3px;opacity:.7;padding:0;position:relative;transition:transform .2s linear;width:8px}.splide__pagination__page.is-active{background:#fff;transform:scale(1.4);z-index:1}.splide__pagination__page:hover{cursor:pointer;opacity:.9}.splide__pagination__page:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide.is-focus-in .splide__pagination__page:focus{outline:3px solid #0bf;outline-offset:3px}.splide__progress__bar{background:#ccc;height:3px}.splide__slide{-webkit-tap-highlight-color:rgba(0,0,0,0)}.splide__slide:focus{outline:0}@supports(outline-offset:-3px){.splide__slide:focus-visible{outline:3px solid #0bf;outline-offset:-3px}}@media screen and (-ms-high-contrast:none){.splide__slide:focus-visible{border:3px solid #0bf}}@supports(outline-offset:-3px){.splide.is-focus-in .splide__slide:focus{outline:3px solid #0bf;outline-offset:-3px}}@media screen and (-ms-high-contrast:none){.splide.is-focus-in .splide__slide:focus{border:3px solid #0bf}.splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus{border-color:#0bf}}.splide__toggle{cursor:pointer}.splide__toggle:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide.is-focus-in .splide__toggle:focus{outline:3px solid #0bf;outline-offset:3px}.splide__track--nav>.splide__list>.splide__slide{border:3px solid transparent;cursor:pointer}.splide__track--nav>.splide__list>.splide__slide.is-active{border:3px solid #000}.splide__arrows--rtl .splide__arrow--prev{left:auto;right:1em}.splide__arrows--rtl .splide__arrow--prev svg{transform:scaleX(1)}.splide__arrows--rtl .splide__arrow--next{left:1em;right:auto}.splide__arrows--rtl .splide__arrow--next svg{transform:scaleX(-1)}.splide__arrows--ttb .splide__arrow{left:50%;transform:translate(-50%)}.splide__arrows--ttb .splide__arrow--prev{top:1em}.splide__arrows--ttb .splide__arrow--prev svg{transform:rotate(-90deg)}.splide__arrows--ttb .splide__arrow--next{bottom:1em;top:auto}.splide__arrows--ttb .splide__arrow--next svg{transform:rotate(90deg)}.splide__pagination--ttb{bottom:0;display:flex;flex-direction:column;left:auto;padding:1em 0;right:.5em;top:0}
@charset "UTF-8";
/**
 * Micromodal スタイル
 *
 * このファイルはMicromodalの基本スタイルを提供します。
 * プロジェクトに応じてカスタマイズしてください。
 */
.modal {
  display: none;
}
.modal.is-open {
  display: block;
}

.modal__overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
}

.modal__container {
  max-width: 500px;
  max-height: 100vh;
  padding: 30px;
  overflow-y: auto;
  background-color: #fff;
  border-radius: 4px;
  box-sizing: border-box;
}

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.25;
  color: #00449e;
  box-sizing: border-box;
}

.modal__close {
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.modal__close::before {
  content: "✕";
  font-size: 1.5rem;
}

.modal__content {
  margin-top: 1rem;
  margin-bottom: 1rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}

.modal__footer {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
}

.modal__btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  background-color: #e6e6e6;
  border-radius: 0.25rem;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.modal__btn:hover {
  background-color: #d4d4d4;
}
.modal__btn-primary {
  color: #fff;
  background-color: #00449e;
}
.modal__btn-primary:hover {
  background-color: #00337a;
}

.micromodal-slide {
  display: none;
}
.micromodal-slide.is-open {
  display: block;
}
.micromodal-slide .modal__overlay {
  opacity: 0;
  transition: opacity 0.2s ease;
}
.micromodal-slide.is-open .modal__overlay {
  opacity: 1;
}
.micromodal-slide .modal__container {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.micromodal-slide.is-open .modal__container {
  opacity: 1;
  transform: translateY(0);
}
@charset "UTF-8";
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

html {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.1428571429vw;
  }
}
@media (min-width: 1400px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", YuGothic, "Yu Gothic", Meiryo, Verdana, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #222222;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 0.875rem;
  }
}
body * {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  box-sizing: border-box;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-appearance: none;
  overflow-wrap: break-word;
}

form * input,
form * textarea,
form * select,
form * button {
  -webkit-appearance: auto;
}

a {
  color: #222222;
}
a:hover {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

picture {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}

b,
strong {
  font-weight: 600;
}

address {
  font-style: normal;
}

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

button {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

.l-header {
  display: block;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
}
.l-header.js-header.is-blur::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  backdrop-filter: blur(5px);
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5625rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    padding: 1.25rem 1.5rem 1.25rem 1.25rem;
  }
}
.l-header__innerLeft {
  display: flex;
  align-items: center;
  gap: 0 1.125rem;
}
@media screen and (max-width: 767px) {
  .l-header__innerLeft {
    -moz-column-gap: 0.625rem;
         column-gap: 0.625rem;
  }
}
.l-header__logo {
  display: block;
  width: 5.625rem;
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 4.375rem;
  }
}
.l-header__logo a,
.l-header__logo img {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-header__logo a {
    transition: opacity 0.3s;
  }
}
@media screen and (min-width: 768px) {
  .l-header__logo a:hover {
    opacity: 0.6;
  }
}
.l-header__title {
  display: block;
  font-family: "Jost", sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1.4545454545;
  letter-spacing: 5%;
}
@media screen and (max-width: 767px) {
  .l-header__title {
    font-size: 0.625rem;
    letter-spacing: 0;
  }
}
.l-header__menuButton {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header__menuButton {
    display: block;
    position: relative;
    z-index: 85;
  }
}
@media screen and (max-width: 767px) {
  .l-header__menuButton.js-menuButton.is-active .l-header__menuButtonLabel::before, .l-header__menuButton.js-menuButton.is-active .l-header__menuButtonLabel::after {
    top: 50%;
    transform: translateY(-50%) rotate(24deg);
  }
}
@media screen and (max-width: 767px) {
  .l-header__menuButton.js-menuButton.is-active .l-header__menuButtonLabel::after {
    transform: translateY(-50%) rotate(-24deg);
  }
}
@media screen and (max-width: 767px) {
  .l-header__menuButtonLabel {
    display: block;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  .l-header__menuButtonLabel::before, .l-header__menuButtonLabel::after {
    content: "";
    display: block;
    width: 2.5rem;
    height: auto;
    aspect-ratio: 40 / 2;
    height: auto;
    background-color: #222222;
    position: absolute;
    top: calc(50% - 0.25rem);
    left: 0;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 767px) {
  .l-header__menuButtonLabel::after {
    top: calc(50% + 0.25rem);
  }
}
@media screen and (max-width: 767px) {
  .l-header__menu {
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    background: #74e0e5;
    padding: 5rem 1.875rem 3.75rem;
    overflow: auto;
  }
}
@media screen and (max-width: 767px) {
  .l-header__menu.js-menu {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.4s, opacity 0.4s ease-in-out;
  }
}
@media screen and (max-width: 767px) {
  .l-header__menu.js-menu.is-active {
    visibility: visible;
    opacity: 1;
  }
}
.l-header__menuLabel {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header__menuLabel {
    display: flex;
    flex-direction: column;
    row-gap: 0.625rem;
  }
}
.l-header__menuLabelLogo {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header__menuLabelLogo {
    display: block;
    width: 7.4375rem;
  }
}
.l-header__menuLabelLogo img {
  display: block;
  width: 100%;
}
.l-header__menuLabelTitle {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header__menuLabelTitle {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.4166666667;
  }
}
.l-header__menuList {
  display: flex;
  align-items: center;
  gap: 0 1.875rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .l-header__menuList {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 2.1875rem;
  }
}
.l-header__menuListItem {
  font-family: "Jost", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4285714286;
  letter-spacing: 10%;
}
@media screen and (max-width: 767px) {
  .l-header__menuListItem {
    width: 100%;
    font-size: 1.75rem;
    letter-spacing: 5%;
    border-bottom: 1px solid #222222;
  }
}
@media screen and (max-width: 767px) {
  .l-header__menuListItem--contact {
    width: auto;
    border-bottom: none;
    margin: 3.4375rem auto 0;
  }
}
.l-header__menuListItem--contact .l-header__menuListItemInner {
  color: #ffffff;
  background: #222222;
  padding: 0.5625rem 1rem;
  border: none;
  cursor: pointer;
  clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0% 100%);
}
@media screen and (max-width: 767px) {
  .l-header__menuListItem--contact .l-header__menuListItemInner {
    padding: 0.8125rem 1.75rem;
  }
}
.l-header__menuListItemInner {
  display: block;
  text-decoration: none;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-header__menuListItemInner {
    display: flex;
    align-items: center;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
    padding: 0.875rem 0 0.8125rem;
  }
}
@media screen and (min-width: 768px) {
  .l-header__menuListItemInner::after {
    content: "";
    display: block;
    width: 0;
    height: 0.125rem;
    background: #222222;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease-in-out;
  }
}
@media screen and (min-width: 768px) {
  .l-header__menuListItemInner:hover::after {
    width: 100%;
  }
}
.l-header__menuListItemLabelJp {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header__menuListItemLabelJp {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    transform: translateY(0.0625rem);
  }
}

.l-footer {
  display: block;
  width: 100%;
  border-top: 1px solid #222222;
  margin: 0;
}
.l-footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 2.5rem 1.3125rem;
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 1.25rem 1.25rem;
  }
}
.l-footer__innerLeft {
  display: flex;
  align-items: center;
  gap: 0 1.125rem;
}
@media screen and (max-width: 767px) {
  .l-footer__innerLeft {
    width: 100%;
    max-width: 23.4375rem;
    flex-wrap: wrap;
    gap: 1.125rem 0.875rem;
    padding-top: 1.25rem;
    margin: 0 auto;
    order: 2;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__innerRight {
    order: 1;
  }
}
.l-footer__innerBottom {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0 1.875rem;
  width: 100%;
  margin: 0.25rem 0 0;
}
@media screen and (max-width: 767px) {
  .l-footer__innerBottom {
    order: 3;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem 0;
    margin-top: -1.875rem;
  }
}
.l-footer__logo {
  display: block;
  width: 5.625rem;
}
@media screen and (min-width: 768px) {
  .l-footer__logo {
    transition: opacity 0.3s;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__logo:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    width: 4.5rem;
  }
}
.l-footer__logo img {
  display: block;
  width: 100%;
}
.l-footer__title {
  display: block;
  font-family: "Jost", sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1.4545454545;
  letter-spacing: 5%;
}
.l-footer__logoKanazawaUniversity {
  display: block;
  width: 8.5rem;
  margin-left: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .l-footer__logoKanazawaUniversity {
    width: 7rem;
    margin-left: 0;
  }
}
.l-footer__menuList {
  display: flex;
  align-items: center;
  gap: 0 1.875rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .l-footer__menuList {
    flex-wrap: wrap;
    gap: 0;
  }
}
.l-footer__menuListItem {
  font-family: "Jost", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4285714286;
  letter-spacing: 10%;
}
@media screen and (max-width: 767px) {
  .l-footer__menuListItem {
    width: 33.3333333333%;
  }
}
.l-footer__menuListItemInner {
  display: block;
  text-decoration: none;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-footer__menuListItemInner {
    text-align: center;
    padding: 0.75rem 0.5rem;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__menuListItemInner::after {
    content: "";
    display: block;
    width: 0;
    height: 0.125rem;
    background: #222222;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease-in-out;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__menuListItemInner:hover::after {
    width: 100%;
  }
}
.l-footer__sublink {
  font-size: 0.8125rem;
  font-weight: 300;
  line-height: 1.3333333333;
}
@media screen and (max-width: 767px) {
  .l-footer__sublink {
    font-size: 0.75rem;
  }
}
.l-footer__copyright {
  display: block;
  font-family: "Jost", sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.4545454545;
  letter-spacing: 5%;
  margin: 0;
  transform: translateY(0.1875rem);
}
@media screen and (max-width: 767px) {
  .l-footer__copyright {
    margin-top: 0;
    margin-left: auto;
  }
}
.l-wrapper {
  position: relative;
  overflow: hidden;
}
.l-wrapper--gradation::before {
  content: "";
  display: block;
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #222222;
  background-image: url(../images/common/bg_gradation.jpg);
  background-size: 90rem auto;
  background-size: cover;
  background-position: top left;
  background-repeat: repeat;
}
@media screen and (max-width: 767px) {
  .l-wrapper--gradation::before {
    background-size: 46.875rem auto;
  }
}
.l-wrapper.js-loading::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  z-index: 99;
  top: 0;
  left: 0;
}
.l-wrapper.js-loading.is-show {
  opacity: 1;
}
.l-wrapper.js-loading.is-show::after {
  animation: show_loading 0.8s ease-in-out forwards;
  animation-delay: 0.4s;
  transition: 0.4s ease-in-out;
}
@keyframes show_loading {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.l-main {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding-bottom: 0;
}
.l-main:not(.p-home) {
  margin-top: 6.25rem;
  padding-bottom: 7.9375rem;
  min-height: calc(100svh - 12.8125rem);
}
@media screen and (max-width: 767px) {
  .l-main:not(.p-home) {
    margin-top: 3.8125rem;
    padding-bottom: 3.75rem;
    min-height: calc(100svh - 17.5625rem);
  }
}
.l-main__inner > :first-child {
  margin-top: 0;
}
.l-main__inner > :last-child {
  margin-bottom: 0;
}

.l-aside {
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0 8.5rem;
}
@media screen and (max-width: 767px) {
  .l-aside {
    flex-direction: column;
    padding: 0 1.25rem;
  }
}
.l-aside__sidebar {
  width: 28.5rem;
}
@media screen and (max-width: 767px) {
  .l-aside__sidebar {
    width: 100%;
  }
}
.l-aside__main {
  width: calc(100% - 28.5rem);
  padding-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .l-aside__main {
    width: 100%;
    padding-top: 2.25rem;
  }
}

.l-container {
  display: block;
  width: calc(100% - 2.5rem);
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .l-container {
    width: 100%;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.js-scrollAnimation {
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.9375rem);
  transition: opacity 0.45s, visibility 0.45s, transform 0.45s;
}
.js-scrollAnimation.is-scrolled {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.l-headline-01 {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 2.125rem;
  width: 100%;
  position: relative;
  padding: 6.3125rem 0 4.5625rem;
}
@media screen and (max-width: 767px) {
  .l-headline-01 {
    row-gap: 0.8125rem;
    padding: 2.25rem 0 1.5rem;
  }
}
.l-headline-01--left {
  padding: 6.625rem 0 0 0;
  align-items: flex-start;
  row-gap: 1.75rem;
}
@media screen and (max-width: 767px) {
  .l-headline-01--left {
    padding: 2.6875rem 0 0 0;
    row-gap: 0.6875rem;
  }
}
.l-headline-01--line {
  align-items: flex-start;
  gap: 0;
  width: calc(100% - 2.5rem);
  max-width: 73rem;
  margin: 0 auto;
}
.l-headline-01--line .l-headline-01__title {
  width: 100%;
  position: relative;
  padding-top: 1.75rem;
}
@media screen and (max-width: 767px) {
  .l-headline-01--line .l-headline-01__title {
    padding-top: 0.6875rem;
  }
}
.l-headline-01--line .l-headline-01__title::before {
  content: "";
  display: block;
  width: 100vw;
  height: 0.125rem;
  background-color: #ffffff;
  position: relative;
  top: -1.75rem;
  left: calc((50vw - 50%) * -1);
}
@media screen and (max-width: 767px) {
  .l-headline-01--line .l-headline-01__title::before {
    height: 0.0625rem;
    top: -0.6875rem;
  }
}
.l-headline-01--line .l-headline-01__title::after {
  content: "";
  display: block;
  width: 0.125rem;
  height: 100vh;
  background-color: #ffffff;
  position: fixed;
  z-index: -1;
  top: 0;
  left: calc(50% - 36.5rem);
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .l-headline-01--line .l-headline-01__title::after {
    width: 0.0625rem;
    left: 1.25rem;
    transform: none;
  }
}
.l-headline-01__titleEn {
  display: block;
  width: auto;
}
.l-headline-01__titleEn--privacypolicy {
  width: 25.125rem;
}
@media screen and (max-width: 767px) {
  .l-headline-01__titleEn--privacypolicy {
    width: 16.75rem;
  }
}
.l-headline-01__titleEn--activity {
  width: 16.6875rem;
}
@media screen and (max-width: 767px) {
  .l-headline-01__titleEn--activity {
    width: 12.8125rem;
  }
}
.l-headline-01__titleEn--product {
  width: 17.625rem;
}
@media screen and (max-width: 767px) {
  .l-headline-01__titleEn--product {
    width: 13.5625rem;
  }
}
.l-headline-01__titleEn--mission {
  width: 14.8125rem;
}
@media screen and (max-width: 767px) {
  .l-headline-01__titleEn--mission {
    width: 11.375rem;
  }
}
.l-headline-01__titleEn--contact {
  width: 16.875rem;
}
@media screen and (max-width: 767px) {
  .l-headline-01__titleEn--contact {
    width: 13rem;
  }
}
.l-headline-01__title {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.4615384615;
  margin: 0;
}
.l-wpblock-activity p {
  font-size: 0.9375rem;
  line-height: 2;
  margin: 0.9375rem 0;
}
@media screen and (max-width: 767px) {
  .l-wpblock-activity p {
    font-size: 0.875rem;
    margin: 0.875rem 0;
  }
}
.l-wpblock-activity ul,
.l-wpblock-activity ol {
  margin: 1rem 0;
  padding: 0 0 0 1.4em;
}
@media screen and (max-width: 767px) {
  .l-wpblock-activity ul,
  .l-wpblock-activity ol {
    margin: 0.875rem 0;
  }
}
.l-wpblock-activity ul li,
.l-wpblock-activity ol li {
  font-size: 0.9375rem;
  line-height: 2;
  margin: 0.5rem 0;
}
@media screen and (max-width: 767px) {
  .l-wpblock-activity ul li,
  .l-wpblock-activity ol li {
    font-size: 0.875rem;
    margin: 0.375rem 0;
  }
}
.l-wpblock-activity .wp-block-image {
  margin: 2.1875rem 0;
}
@media screen and (max-width: 767px) {
  .l-wpblock-activity .wp-block-image {
    margin: 1.5625rem 0;
  }
}
.l-wpblock-activity .wp-block-table {
  width: 100%;
  margin: 2.1875rem 0;
}
@media screen and (max-width: 767px) {
  .l-wpblock-activity .wp-block-table {
    margin: 1.5625rem 0;
    overflow: auto;
    padding-bottom: 0.625rem;
  }
}
@media screen and (max-width: 767px) {
  .l-wpblock-activity .wp-block-table::after {
    content: "※横にスクロールできます";
    display: block;
    font-size: 0.75rem;
    margin-top: 0.375rem;
    opacity: 0.6;
  }
}
.l-wpblock-activity .wp-block-table table {
  width: 100%;
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  .l-wpblock-activity .wp-block-table table {
    min-width: 50rem;
  }
}
.l-wpblock-activity .wp-block-table table th,
.l-wpblock-activity .wp-block-table table td {
  font-size: 1rem;
  border: 1px solid #868686;
  padding: 0.875rem 0.75rem;
}
@media screen and (max-width: 767px) {
  .l-wpblock-activity .wp-block-table table th,
  .l-wpblock-activity .wp-block-table table td {
    font-size: 0.875rem;
    padding: 0.75rem 0.625rem;
  }
}
.l-wpblock-activity .wp-block-table table th {
  text-align: left;
  font-weight: 600;
  background-color: #f5f5f5;
}
.l-wpblock-activity .wp-block-columns {
  margin: 2.1875rem 0;
  gap: 2.0625rem;
}
@media screen and (max-width: 767px) {
  .l-wpblock-activity .wp-block-columns {
    margin: 1.5625rem 0;
    gap: 1.4375rem;
  }
}
.l-wpblock-activity .wp-block-columns .wp-block-column > :first-child {
  margin-top: 0;
}
.l-wpblock-activity .wp-block-columns .wp-block-column > :last-child {
  margin-bottom: 0;
}

.c-button-01 {
  display: block;
  width: 15rem;
  color: #ffffff;
  background: #222222;
  padding: 0.8125rem 0.875rem 1rem;
  border: none;
  cursor: pointer;
  clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0% 100%);
  text-decoration: none;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .c-button-01 {
    transition: opacity 0.3s;
  }
}
@media screen and (min-width: 768px) {
  .c-button-01:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 767px) {
  .c-button-01 {
    width: 13.75rem;
    padding: 0.75rem 0.75rem 0.875rem;
    font-size: 0.9375rem;
  }
}

.c-pagination-activity__list {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
  list-style: none;
  margin: 5.5625rem 0 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .c-pagination-activity__list {
    margin-top: 3.125rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
}
.c-pagination-activity__listNavigation .screen-reader-text {
  display: none;
}
.c-pagination-activity__listNavigation .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 0.9375rem;
       column-gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .c-pagination-activity__listNavigation .nav-links {
    -moz-column-gap: 0.625rem;
         column-gap: 0.625rem;
  }
}
.c-pagination-activity__listNavigation .nav-links .page-numbers {
  font-family: "Jost", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 100%;
  border: 0.0625rem solid #222222;
  text-decoration: none;
  padding: 0.125rem 0 0 0;
  transition: background-color 0.3s, color 0.3s;
}
.c-pagination-activity__listNavigation .nav-links .page-numbers.current {
  background-color: #222222;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .c-pagination-activity__listNavigation .nav-links .page-numbers:hover {
    background-color: #222222;
    color: #ffffff;
  }
}
.c-pagination-activity__listPrev, .c-pagination-activity__listNext {
  width: 0.625rem;
  height: auto;
  aspect-ratio: 8 / 15;
  height: auto;
  transform: translateY(0.0625rem);
}
.c-pagination-activity__listPrev a, .c-pagination-activity__listNext a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  text-indent: 100%;
  text-decoration: none;
}
.c-pagination-activity__listPrev a::before, .c-pagination-activity__listNext a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../images/common/icon_pagination_arrow_prev.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
}
.c-pagination-activity__listNext a::before {
  background-image: url(../images/common/icon_pagination_arrow_next.svg);
}

.c-slider-loop {
  display: block;
  width: 100%;
  margin: 0;
  overflow: hidden;
}
.c-slider-loop__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 1.875rem;
       column-gap: 1.875rem;
  padding-right: 1.875rem;
}
.c-slider-loop__img {
  display: block;
  width: 12.5rem;
  height: auto;
}
.p-home::before {
  content: "";
  display: block;
  width: 0.125rem;
  height: 100vh;
  background-color: #ffffff;
  position: fixed;
  z-index: -1;
  top: 0;
  left: calc(50% + 36.5rem);
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-home::before {
    width: 0.0625rem;
    left: auto;
    right: 1.25rem;
    transform: none;
  }
}
.p-home-kv {
  display: block;
  width: 100%;
  height: 100svh;
  min-height: 48rem;
  background-image: url(../images/home/kv_image.jpg);
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-home-kv {
    min-height: 41.6875rem;
    background-image: url(../images/home/kv_image_sp.jpg);
  }
}
.p-home-kv::before {
  content: "";
  display: block;
  width: 100%;
  height: 0.0625rem;
  background-color: #aaa8a8;
  position: absolute;
  z-index: 1;
  top: calc(50% + 3.125rem);
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-home-kv::before {
    top: calc(50% - 1.5625rem);
  }
}
.p-home-kv::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
}
.p-home-kv__wave {
  display: block;
  width: 100%;
  position: absolute;
  top: calc(50% + 3.25rem);
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-home-kv__wave {
    min-width: 54.25rem;
    top: calc(50% - 1.4375rem);
  }
}
.p-home-kv__wave svg {
  display: block;
  width: 100%;
  height: auto;
}
.p-home-kv__wavePath {
  fill: none;
  stroke: #aaa8a8;
  stroke-miterlimit: 10;
}
.p-home-kv__inner {
  display: block;
  width: calc(100% - 2.5rem);
  max-width: 78.75rem;
  height: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.p-home-kv__message {
  font-size: 1rem;
  line-height: 1.4375;
  font-weight: 600;
  margin: 0;
  position: absolute;
  top: calc(50% + 1.6875rem);
  left: 0;
  transform: translateY(-50%);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-home-kv__message {
    font-size: 0.9375rem;
    top: calc(50% - 3rem);
  }
}
.p-home-kv__logo {
  display: block;
  width: 22.9375rem;
  height: auto;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-home-kv__logo {
    width: 14.1875rem;
    top: calc(50% + 1.25rem);
    right: -1.25rem;
  }
}
.p-home-kv__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.3125rem;
  position: absolute;
  bottom: 0;
  right: 6.625rem;
}
@media screen and (max-width: 767px) {
  .p-home-kv__scroll {
    display: none;
  }
}
.p-home-kv__scroll::after {
  content: "";
  display: block;
  width: 0.4375rem;
  height: auto;
  aspect-ratio: 7 / 99;
  height: auto;
  background-image: url(../images/home/icon_scroll_arrow.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 0.3125rem;
}
.p-home-kv__scroll {
  animation: sway-vertical 1.8s ease-in-out infinite alternate;
}
@keyframes sway-vertical {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.625rem);
  }
  100% {
    transform: translateY(0);
  }
}
.p-home-kv__scrollText {
  display: block;
  font-family: "Jost", sans-serif;
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.04em;
  font-weight: 500;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .p-home-kv__scrollText {
    display: none;
  }
}
.p-home-kv.js-home-kv-loading::before {
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s ease;
  transition-delay: 0.3s;
}
.p-home-kv.js-home-kv-loading::after {
  opacity: 1;
  visibility: visible;
  transition: all 1.4s ease;
  transition-delay: 0.8s;
}
.p-home-kv.js-home-kv-loading.is-loaded::after {
  opacity: 0;
  visibility: hidden;
}
.p-home-kv.js-home-kv-loading.is-loaded::before {
  opacity: 1;
  visibility: visible;
}
.p-home-kv.js-home-kv-loading .p-home-kv__wave {
  display: none;
  transition: all 0.8s ease;
}
.p-home-kv.js-home-kv-loading.is-loading .p-home-kv__wave {
  display: block;
}
.p-home-kv.js-home-kv-loading .p-home-kv__scroll {
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s ease;
  transition-delay: 3s;
}
.p-home-kv.js-home-kv-loading .p-home-kv__inner {
  opacity: 0;
  visibility: hidden;
  transform: translateY(1.3125rem);
  transition: all 0.8s ease;
  transition-delay: 1.8s;
}
@media screen and (max-width: 767px) {
  .p-home-kv.js-home-kv-loading .p-home-kv__inner {
    transform: translateY(0.9375rem);
  }
}
.p-home-kv.js-home-kv-loading.is-loaded .p-home-kv__wave {
  opacity: 0;
  visibility: hidden;
}
.p-home-kv.js-home-kv-loading.is-loaded .p-home-kv__inner, .p-home-kv.js-home-kv-loading.is-loaded .p-home-kv__scroll {
  opacity: 1;
  visibility: visible;
}
.p-home-kv.js-home-kv-loading.is-loaded .p-home-kv__inner {
  transform: translateY(0);
}
.p-home-kv.js-home-kv-loading.is-inactive .p-home-kv__inner, .p-home-kv.js-home-kv-loading.is-inactive .p-home-kv__scroll, .p-home-kv.js-home-kv-loading.is-inactive::before, .p-home-kv.js-home-kv-loading.is-inactive::after {
  transition: none;
  transition-delay: none;
}
.p-home-mission {
  display: block;
  width: calc(100% - 2.5rem);
  max-width: 73rem;
  margin: 2.4375rem auto 0;
  padding: 5rem 0 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-home-mission {
    margin-top: 0;
    padding-top: 1.8125rem;
  }
}
.p-home-mission::after {
  content: "";
  display: block;
  width: 158vw;
  height: 0.125rem;
  background-color: #ffffff;
  position: absolute;
  z-index: -1;
  top: -2.4375rem;
  right: -18.125rem;
  transform: rotate(-45deg);
  transform-origin: right;
}
@media screen and (max-width: 767px) {
  .p-home-mission::after {
    display: none;
  }
}
.p-home-mission__hedding {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0 2.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-home-mission__hedding {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9375rem 0;
  }
}
.p-home-mission__hedding::before, .p-home-mission__hedding::after {
  content: "";
  display: block;
  width: 100vw;
  height: 0.125rem;
  background-color: #ffffff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.p-home-mission__hedding::before {
  width: calc(100vw - 20.625rem);
  left: calc((100vw - 100%) / 2 * -1);
  transform: translateX(0);
}
@media screen and (max-width: 767px) {
  .p-home-mission__hedding::before {
    width: calc(100vw - 3.125rem);
  }
}
.p-home-mission__hedding::after {
  top: auto;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-home-mission__hedding::after {
    top: 2.0625rem;
    bottom: auto;
  }
}
.p-home-mission__logo {
  display: block;
  width: 20.0625rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-home-mission__logo {
    width: 12.5625rem;
  }
}
.p-home-mission__title {
  font-size: 0.875rem;
  line-height: 1.2142857143;
  font-weight: 600;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-home-mission__title {
    font-size: 0.8125rem;
  }
}
.p-home-mission__content {
  display: block;
  width: 100%;
  max-width: 42.125rem;
  margin: 3.8125rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-home-mission__content {
    max-width: none;
    margin-top: 2.0625rem;
  }
}
.p-home-mission__contentTitle {
  font-size: 2.25rem;
  line-height: 1.4444444444;
  font-weight: 600;
  margin: 0 0 2.375rem 0;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .p-home-mission__contentTitle {
    font-size: 1.6875rem;
    line-height: 1.5925925926;
    margin-bottom: 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-home-mission__contentTitle + .p-home-mission__contentParagraph {
    margin-top: 1.25rem;
  }
}
.p-home-mission__contentParagraph {
  font-size: 0.9375rem;
  line-height: 2.1333333333;
  font-weight: 400;
  margin: 0.9375rem 0 0;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .p-home-mission__contentParagraph {
    line-height: 1.8666666667;
    margin-top: 1.75rem;
    letter-spacing: 0;
  }
}
.p-home-mission__image {
  display: block;
  width: 100%;
  max-width: 38rem;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-home-mission__image {
    position: absolute;
    top: 15.8125rem;
    right: -8.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-home-mission__image {
    margin-top: 1.25rem;
  }
}
.p-home-mission__image img {
  display: block;
  width: 100%;
}
.p-home-mission__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.6875rem;
  height: auto;
  aspect-ratio: 91 / 40;
  height: auto;
  font-family: "Jost", sans-serif;
  font-size: 0.9375rem;
  line-height: 1;
  font-weight: 500;
  text-decoration: none;
  margin: -3.0625rem 0 0 auto;
  background-image: url(../images/home/more_link_bg.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  padding: 0.125rem 0 0 0;
  transition: color 0.3s, background-image 0.3s;
}
@media screen and (min-width: 768px) {
  .p-home-mission__link:hover {
    color: #ffffff;
    background-image: url(../images/home/more_link_bg_black.svg);
  }
}
@media screen and (max-width: 767px) {
  .p-home-mission__link {
    margin-top: 1.375rem;
  }
}
.p-home-product {
  display: block;
  width: calc(100% - 2.5rem);
  max-width: 73rem;
  margin: 4.3125rem auto 0;
  padding: 5rem 0 4.3125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-home-product {
    margin-top: 2.3125rem;
    padding: 2.5rem 0 3rem;
  }
}
.p-home-product__hedding {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0 2.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-home-product__hedding {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 0.9375rem 0;
  }
}
.p-home-product__hedding::before, .p-home-product__hedding::after {
  content: "";
  display: block;
  width: 100vw;
  height: 0.125rem;
  background-color: #ffffff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.p-home-product__hedding::before {
  width: calc(100vw - 20.625rem);
  left: auto;
  right: calc((100vw - 100%) / 2 * -1);
  transform: translateX(0);
}
@media screen and (max-width: 767px) {
  .p-home-product__hedding::before {
    right: auto;
    left: calc((100vw - 100%) / 2 * -1);
    width: calc(100vw - 3.125rem);
  }
}
.p-home-product__hedding::after {
  top: auto;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-home-product__hedding::after {
    top: 2.0625rem;
    bottom: auto;
  }
}
.p-home-product__logo {
  display: block;
  width: 23.875rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-home-product__logo {
    width: 15.125rem;
  }
}
.p-home-product__title {
  font-size: 0.875rem;
  line-height: 1.2142857143;
  font-weight: 600;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-home-product__title {
    font-size: 0.8125rem;
  }
}
.p-home-product__subheading {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0 1.875rem;
  margin: 3.0625rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-home-product__subheading {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1875rem 0;
    margin-top: 1.5625rem;
  }
}
.p-home-product__subtitle {
  font-size: 1.75rem;
  line-height: 1.2142857143;
  font-weight: 600;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-home-product__subtitle {
    font-size: 1.1875rem;
  }
}
.p-home-product__subtitleEn {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  line-height: 1.4375;
  font-weight: 500;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-home-product__subtitleEn {
    font-size: 0.875rem;
  }
}
.p-home-product__image {
  display: block;
  width: 100%;
  height: auto;
  margin: 2.25rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-home-product__image {
    margin-top: 0.9375rem;
    overflow: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-home-product__image::before {
    content: "※横にスクロールできます";
    display: block;
    font-size: 0.75rem;
    margin-bottom: 0.375rem;
    opacity: 0.6;
  }
}
.p-home-product__image img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-home-product__image img {
    max-width: none;
    min-width: 50.125rem;
  }
}
.p-home-product__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.6875rem;
  height: auto;
  aspect-ratio: 91 / 40;
  height: auto;
  font-family: "Jost", sans-serif;
  font-size: 0.9375rem;
  line-height: 1;
  font-weight: 500;
  text-decoration: none;
  margin: 2.4375rem 0 0 auto;
  background-image: url(../images/home/more_link_bg.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  padding: 0.125rem 0 0 0;
  transition: color 0.3s, background-image 0.3s;
}
@media screen and (min-width: 768px) {
  .p-home-product__link:hover {
    color: #ffffff;
    background-image: url(../images/home/more_link_bg_black.svg);
  }
}
@media screen and (max-width: 767px) {
  .p-home-product__link {
    margin-top: 1.25rem;
  }
}
.p-home-product__separator {
  display: block;
  width: 100vw;
  height: auto;
  position: relative;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  margin: -3.5rem 0 0;
}
.p-home-product__separator img {
  display: block;
  width: auto;
  max-width: none;
  height: 7rem;
}
.p-home-activity {
  display: block;
  width: 100%;
  margin: 6.25rem 0 0;
  padding: 3.5625rem 0 3.625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-home-activity {
    margin-top: 1.8125rem;
    padding: 3.125rem 0 1.875rem;
  }
}
.p-home-activity::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #74e0e5;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  clip-path: polygon(36px 0%, 100% 0%, 100% calc(100% - 36px), calc(100% - 36px) 100%, 0% 100%, 0% 36px);
}
@media screen and (max-width: 767px) {
  .p-home-activity::before {
    clip-path: polygon(30px 0%, 100% 0%, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0% 100%, 0% 30px);
  }
}
.p-home-activity__inner {
  display: flex;
  width: calc(100% - 2.5rem);
  max-width: 73rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-home-activity__inner {
    flex-direction: column;
  }
}
.p-home-activity__hedding {
  display: block;
  width: 25.5rem;
  padding: 0.9375rem 1.875rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-home-activity__hedding {
    width: 100%;
    padding: 0;
  }
}
.p-home-activity__content {
  display: block;
  width: calc(100% - 25.5rem);
}
@media screen and (max-width: 767px) {
  .p-home-activity__content {
    width: 100%;
    padding-top: 1.625rem;
  }
}
.p-home-activity__logo {
  display: block;
  width: 13.3125rem;
  height: auto;
  margin-bottom: 1.625rem;
}
@media screen and (max-width: 767px) {
  .p-home-activity__logo {
    display: inline-block;
    vertical-align: middle;
    width: 10.75rem;
    margin-bottom: 0;
  }
}
.p-home-activity__title {
  font-size: 0.875rem;
  line-height: 1.2142857143;
  font-weight: 600;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-home-activity__title {
    display: inline-block;
    vertical-align: middle;
    margin-left: 1.625rem;
  }
}
.p-home-activity__category {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  row-gap: 1.0625rem;
  width: 100%;
  margin-top: 2.5rem;
  list-style: none;
  margin: 2.4375rem 0 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-home-activity__category {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.375rem;
    margin-top: 2.1875rem;
  }
}
.p-home-activity__categoryItem {
  font-size: 0.875rem;
  line-height: 1.4285714286;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-home-activity__categoryItem {
    font-size: 0.9375rem;
  }
}
.p-home-activity__categoryItem a {
  display: block;
  text-decoration: none;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-home-activity__categoryItem a {
    padding-bottom: 0.125rem;
  }
}
@media screen and (min-width: 768px) {
  .p-home-activity__categoryItem a::after {
    content: "";
    display: block;
    width: 0;
    height: 0.125rem;
    background: #222222;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease-in-out;
  }
}
@media screen and (min-width: 768px) {
  .p-home-activity__categoryItem a:hover::after {
    width: 100%;
  }
}
.p-home-activity__categoryItem.is-active a {
  border-bottom: 0.125rem solid #222222;
}
.p-home-activity__list {
  display: block;
  width: 100%;
  padding: 0;
  list-style: none;
}
.p-home-activity__listEmpty {
  font-size: 0.875rem;
  line-height: 1.4285714286;
  margin: 2.875rem 0 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-home-activity__listEmpty {
    margin-top: 2.1875rem;
  }
}
.p-home-activity__listItem {
  display: block;
  width: 100%;
  border-bottom: 0.0625rem solid #ffffff;
}
.p-home-activity__listItemInner {
  display: flex;
  align-items: flex-start;
  text-decoration: none;
  padding: 1.6875rem 5.6875rem 1.6875rem 1.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-home-activity__listItemInner {
    flex-direction: column;
    row-gap: 0.3125rem;
    padding: 1rem 3.25rem 1rem 0;
  }
}
.p-home-activity__listItemInner::before {
  content: "";
  display: block;
  width: 2.25rem;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url(../images/common/icon_arrow_right_white.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 1.25rem;
  top: 1.1875rem;
  transition: transform 0.3s, background-image 0.3s;
}
@media screen and (max-width: 767px) {
  .p-home-activity__listItemInner::before {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (min-width: 768px) {
  .p-home-activity__listItemInner:hover::before {
    transform: translateX(0.625rem);
    background-image: url(../images/common/icon_arrow_right_black.svg);
  }
}
.p-home-activity__listItemInformation {
  width: 14.875rem;
  display: flex;
  justify-content: flex-start;
  -moz-column-gap: 2.6875rem;
       column-gap: 2.6875rem;
  padding-right: 2.6875rem;
}
@media screen and (max-width: 767px) {
  .p-home-activity__listItemInformation {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.625rem 1.3125rem;
    width: 100%;
  }
}
.p-home-activity__listItemInformationTime {
  font-family: "Jost", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-home-activity__listItemInformationTime {
    font-size: 0.9375rem;
  }
}
.p-home-activity__listItemInformationCategory {
  display: block;
  font-size: 0.8125rem;
  line-height: 1.4615384615;
}
.p-home-activity__listItemTitle {
  width: calc(100% - 14.875rem);
  font-size: 0.8125rem;
  line-height: 1.4285714286;
  font-weight: 500;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-home-activity__listItemTitle {
    width: 100%;
  }
}
.p-home-activity__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.6875rem;
  height: auto;
  aspect-ratio: 91 / 40;
  height: auto;
  font-family: "Jost", sans-serif;
  font-size: 0.9375rem;
  line-height: 1;
  font-weight: 500;
  text-decoration: none;
  margin: 4.0625rem 0 0 auto;
  background-image: url(../images/home/more_link_bg.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  padding: 0.125rem 0 0 0;
  transition: color 0.3s, background-image 0.3s;
}
@media screen and (min-width: 768px) {
  .p-home-activity__link:hover {
    color: #ffffff;
    background-image: url(../images/home/more_link_bg_black.svg);
  }
}
@media screen and (max-width: 767px) {
  .p-home-activity__link {
    margin-top: 2.5625rem;
  }
}
.p-home-ourteam {
  display: block;
  width: calc(100% - 2.5rem);
  max-width: 73rem;
  margin: 5.3125rem auto 0;
  padding: 5rem 0 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-home-ourteam {
    margin-top: 1.25rem;
    padding-top: 2.5rem;
  }
}
.p-home-ourteam::after {
  content: "";
  display: block;
  width: 137vw;
  height: 0.125rem;
  background-color: #ffffff;
  position: absolute;
  z-index: -1;
  top: -5.3125rem;
  left: -5.125rem;
  transform: rotate(45deg);
  transform-origin: left;
}
@media screen and (max-width: 767px) {
  .p-home-ourteam::after {
    display: none;
  }
}
.p-home-ourteam__hedding {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0 2.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-home-ourteam__hedding {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9375rem 0;
  }
}
.p-home-ourteam__hedding::before, .p-home-ourteam__hedding::after {
  content: "";
  display: block;
  width: 100vw;
  height: 0.125rem;
  background-color: #ffffff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.p-home-ourteam__hedding::before {
  width: calc(100vw - 20.625rem);
  left: calc((100vw - 100%) / 2 * -1);
  transform: translateX(0);
}
@media screen and (max-width: 767px) {
  .p-home-ourteam__hedding::before {
    width: calc(100vw - 3.125rem);
  }
}
.p-home-ourteam__hedding::after {
  top: auto;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-home-ourteam__hedding::after {
    top: 2.0625rem;
    bottom: auto;
  }
}
.p-home-ourteam__logo {
  display: block;
  width: 25.75rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-home-ourteam__logo {
    width: 16.3125rem;
  }
}
.p-home-ourteam__title {
  font-size: 0.875rem;
  line-height: 1.2142857143;
  font-weight: 600;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-home-ourteam__title {
    font-size: 0.8125rem;
  }
}
.p-home-ourteam__image {
  display: block;
  width: 100%;
  margin: 3.8125rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-home-ourteam__image {
    margin-top: 1.6875rem;
    overflow: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-home-ourteam__image::before {
    content: "※横にスクロールできます";
    display: block;
    font-size: 0.75rem;
    margin-bottom: 0.375rem;
    opacity: 0.6;
  }
}
.p-home-ourteam__image img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-home-ourteam__image img {
    max-width: none;
    min-width: 73rem;
  }
}
.p-home-history {
  display: block;
  width: calc(100% - 2.5rem);
  max-width: 73.25rem;
  margin: 5.3125rem auto 0;
  padding: 5rem 0 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-home-history {
    margin-top: 1.875rem;
    padding-top: 2.5rem;
  }
}
.p-home-history__hedding {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0 2.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-home-history__hedding {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 0.9375rem 0;
  }
}
.p-home-history__hedding::before, .p-home-history__hedding::after {
  content: "";
  display: block;
  width: 100vw;
  height: 0.125rem;
  background-color: #ffffff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.p-home-history__hedding::before {
  width: calc(100vw - 20.625rem);
  left: auto;
  right: calc((100vw - 100%) / 2 * -1);
  transform: translateX(0);
}
@media screen and (max-width: 767px) {
  .p-home-history__hedding::before {
    right: auto;
    left: calc((100vw - 100%) / 2 * -1);
    width: calc(100vw - 3.125rem);
  }
}
.p-home-history__hedding::after {
  top: auto;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-home-history__hedding::after {
    top: 2.0625rem;
    bottom: auto;
  }
}
.p-home-history__logo {
  display: block;
  width: 21.4375rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-home-history__logo {
    width: 13.625rem;
  }
}
.p-home-history__title {
  font-size: 0.875rem;
  line-height: 1.2142857143;
  font-weight: 600;
  margin: 0;
}
.p-home-history__list {
  display: block;
  width: 100%;
  max-width: 42rem;
  margin: 5.8125rem 0 0;
  padding: 0;
  list-style: none;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-home-history__list {
    margin-top: 2.5rem;
  }
}
.p-home-history__list::after {
  content: "";
  width: 1.8125rem;
  height: auto;
  aspect-ratio: 29 / 15;
  height: auto;
  background-image: url(../images/home/history_icon_arrow.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: calc(100% + 1.8125rem);
  left: 4.4375rem;
}
@media screen and (max-width: 767px) {
  .p-home-history__list::after {
    left: 3.5rem;
  }
}
.p-home-history__list::before {
  content: "";
  display: block;
  width: 0.0625rem;
  height: calc(100% + 2.75rem);
  background-color: #222222;
  position: absolute;
  top: 0;
  left: 5.3125rem;
}
@media screen and (max-width: 767px) {
  .p-home-history__list::before {
    left: 4.375rem;
  }
}
.p-home-history__listItem {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  width: 100%;
}
.p-home-history__listItemYear {
  width: 7.5625rem;
  font-family: "Jost", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.4666666667;
  font-weight: 500;
  text-align: right;
  padding-right: 3.9375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-home-history__listItemYear {
    width: 5.5rem;
    font-size: 0.8125rem;
    padding-right: 2.375rem;
  }
}
.p-home-history__listItemYear:after {
  content: "";
  display: block;
  width: 0.625rem;
  height: auto;
  aspect-ratio: 1/1;
  background-color: #222222;
  border-radius: 100%;
  position: absolute;
  right: 1.875rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-home-history__listItemYear:after {
    width: 0.5rem;
    right: 0.875rem;
  }
}
.p-home-history__listItemYear--point:before {
  content: "";
  display: block;
  width: 1.75rem;
  height: auto;
  aspect-ratio: 1/1;
  border: 0.0625rem solid #222222;
  background-color: #74e0e5;
  border-radius: 100%;
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-home-history__listItemYear--point:before {
    width: 1.5rem;
    right: 0.3125rem;
  }
}
.p-home-history__listItemText {
  width: calc(100% - 7.5625rem);
  font-size: 0.9375rem;
  line-height: 1.6666666667;
  font-weight: 400;
  margin: 0;
  padding: 1.625rem 0;
  border-bottom: 0.0625rem solid #aaa8a8;
}
@media screen and (max-width: 767px) {
  .p-home-history__listItemText {
    width: calc(100% - 5.5rem);
    font-size: 0.875rem;
    line-height: 1.5714285714;
    padding: 0.9375rem 0;
  }
}
.p-home-history__image {
  display: block;
  width: 100%;
  max-width: 30.3125rem;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-home-history__image {
    position: absolute;
    right: -8.5rem;
    bottom: -2.6875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-home-history__image {
    margin: 4.9375rem auto 0;
  }
}
.p-home-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0;
  padding: 5rem 1.25rem;
  text-decoration: none;
  background-color: #74e0e5;
}
@media screen and (max-width: 767px) {
  .p-home-cta {
    flex-wrap: wrap;
    padding: 3.1875rem 1.25rem;
  }
}
.p-home-cta::after {
  content: "";
  display: block;
  width: 2.875rem;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url(../images/common/icon_arrow_right_white.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 1rem;
  transition: transform 0.3s, background-image 0.3s;
}
@media screen and (min-width: 768px) {
  .p-home-cta:hover::after {
    transform: translateX(0.625rem);
    background-image: url(../images/common/icon_arrow_right_black.svg);
  }
}
.p-home-cta__text {
  display: block;
  font-size: 1rem;
  line-height: 1.4375;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-home-cta__text {
    width: 100%;
    text-align: center;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }
}
.p-home-cta__image {
  display: block;
  width: 19.375rem;
  margin-left: 1.75rem;
}
@media screen and (max-width: 767px) {
  .p-home-cta__image {
    width: 15.875rem;
    margin-left: 0;
  }
}
.p-home-topback {
  display: block;
  width: 2.75rem;
  height: auto;
  margin: 6.5rem 4.75rem 1.75rem auto;
}
@media screen and (min-width: 768px) {
  .p-home-topback {
    transition: opacity 0.3s;
  }
}
@media screen and (min-width: 768px) {
  .p-home-topback:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 767px) {
  .p-home-topback {
    position: relative;
    z-index: 2;
    margin: -2.375rem 1.25rem 0.9375rem auto;
  }
}
.p-home-topback img {
  display: block;
  width: 100%;
}

.p-privacypolicy-description {
  display: block;
  width: 100%;
}
.p-privacypolicy-description > :first-child {
  margin-top: 0;
}
.p-privacypolicy-description > :last-child {
  margin-bottom: 0;
}
.p-privacypolicy-description__text {
  font-size: 0.875rem;
  line-height: 1.8571428571;
  margin: 0.875rem 0 0;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .p-privacypolicy-description__text {
    font-size: 0.75rem;
    line-height: 1.6666666667;
    margin-top: 0.75rem;
  }
}
.p-privacypolicy-content {
  display: block;
  width: 100%;
  margin: 8.75rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-privacypolicy-content {
    margin-top: 1.4375rem;
  }
}
.p-privacypolicy-content > :first-child {
  margin-top: 0;
}
.p-privacypolicy-content > :last-child {
  margin-bottom: 0;
}
.p-privacypolicy-content__title {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 600;
  padding: 0 0 1rem 0;
  border-bottom: 1px solid #74e0e5;
  margin: 3.125rem 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-privacypolicy-content__title {
    font-size: 1.125rem;
    padding-bottom: 0.6875rem;
    margin: 1.4375rem 0 0.6875rem;
  }
}
.p-privacypolicy-content__text {
  font-size: 0.875rem;
  line-height: 1.8571428571;
  font-weight: 300;
  margin: 0.875rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-privacypolicy-content__text {
    font-size: 0.75rem;
    line-height: 1.6666666667;
    margin-top: 0.75rem;
  }
}
.p-privacypolicy-content ul {
  margin: 0.875rem 0 0;
  padding: 0 0 0 1.4em;
  list-style: disc;
  font-size: 0.875rem;
  line-height: 1.8571428571;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .p-privacypolicy-content ul {
    font-size: 0.75rem;
    line-height: 1.6666666667;
    margin-top: 0.75rem;
    padding-left: 1.7em;
  }
}
.p-activity {
  background-color: #74e0e5;
}
.p-activity-button {
  display: flex;
  flex-direction: column;
  margin: 9.125rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-activity-button {
    margin-top: 1.625rem;
  }
}
.p-activity-button__back {
  display: block;
  width: 5.25rem;
  font-family: "Jost", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.4;
  font-weight: 500;
  text-decoration: none;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-activity-button__back {
    width: 3.375rem;
  }
}
.p-activity-button__back::after {
  content: "";
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 84 / 7;
  height: auto;
  background-image: url(../images/activity/icon_back.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s;
  transform: translateX(0);
}
@media screen and (min-width: 768px) {
  .p-activity-button__back:hover::after {
    transform: translateX(-0.625rem);
  }
}
.p-activity-category {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  row-gap: 1.0625rem;
  margin-top: 2.5rem;
  list-style: none;
  margin: 5.1875rem 0 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-activity-category {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.375rem;
    margin-top: 3.125rem;
  }
}
.p-activity-category__item {
  font-size: 0.875rem;
  line-height: 1.4285714286;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-activity-category__item {
    font-size: 0.9375rem;
  }
}
.p-activity-category__item a {
  display: block;
  text-decoration: none;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-activity-category__item a {
    padding-bottom: 0.125rem;
  }
}
@media screen and (min-width: 768px) {
  .p-activity-category__item a::after {
    content: "";
    display: block;
    width: 0;
    height: 0.125rem;
    background: #222222;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease-in-out;
  }
}
@media screen and (min-width: 768px) {
  .p-activity-category__item a:hover::after {
    width: 100%;
  }
}
.p-activity-category__item.is-active a {
  border-bottom: 0.125rem solid #222222;
}
.p-activity-list {
  display: block;
  width: 100%;
  padding: 0;
  list-style: none;
}
.p-activity-list__empty {
  font-size: 0.875rem;
  line-height: 1.4285714286;
  margin: 2.875rem 0 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-activity-list__empty {
    margin-top: 2.1875rem;
  }
}
.p-activity-list__item {
  display: block;
  width: 100%;
  border-bottom: 0.0625rem solid #ffffff;
}
.p-activity-list__itemInner {
  display: flex;
  align-items: flex-start;
  text-decoration: none;
  padding: 2.875rem 5.6875rem 1.875rem 1.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-activity-list__itemInner {
    flex-direction: column;
    row-gap: 0.3125rem;
    padding: 0.8125rem 3.25rem 0.8125rem 0.625rem;
  }
}
.p-activity-list__itemInner::before {
  content: "";
  display: block;
  width: 2.25rem;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url(../images/common/icon_arrow_right_white.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 1.25rem;
  top: 2.375rem;
  transition: transform 0.3s, background-image 0.3s;
}
@media screen and (max-width: 767px) {
  .p-activity-list__itemInner::before {
    width: 2.125rem;
    right: 0.625rem;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (min-width: 768px) {
  .p-activity-list__itemInner:hover::before {
    transform: translateX(0.625rem);
    background-image: url(../images/common/icon_arrow_right_black.svg);
  }
}
.p-activity-list__itemInformation {
  width: 9.125rem;
  display: flex;
  flex-direction: column;
  row-gap: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .p-activity-list__itemInformation {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.625rem 1.3125rem;
    width: 100%;
  }
}
.p-activity-list__itemInformationTime {
  font-family: "Jost", sans-serif;
  font-size: 0.9375rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-activity-list__itemInformationTime {
    font-size: 1rem;
  }
}
.p-activity-list__itemInformationCategory {
  display: block;
  font-size: 0.8125rem;
  line-height: 1.4615384615;
}
@media screen and (max-width: 767px) {
  .p-activity-list__itemInformationCategory {
    font-size: 0.875rem;
  }
}
.p-activity-list__itemTitle {
  width: calc(100% - 9.125rem);
  font-size: 0.875rem;
  line-height: 1.4285714286;
  font-weight: 500;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-activity-list__itemTitle {
    width: 100%;
  }
}
.p-activity-post {
  display: block;
  width: 100%;
  padding-top: 2.875rem;
}
@media screen and (max-width: 767px) {
  .p-activity-post {
    padding-top: 0;
  }
}
.p-activity-post__headerInformation {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.9375rem 1.6875rem;
  font-size: 0.9375rem;
  line-height: 1.1333333333;
}
@media screen and (max-width: 767px) {
  .p-activity-post__headerInformation {
    font-size: 0.875rem;
    gap: 0.625rem 0.9375rem;
  }
}
.p-activity-post__headerTime {
  padding-right: 2rem;
  border-right: 0.0625rem solid #222222;
}
@media screen and (max-width: 767px) {
  .p-activity-post__headerTime {
    padding-right: 0.9375rem;
  }
}
.p-activity-post__title {
  font-size: 1.6875rem;
  line-height: 1.6666666667;
  font-weight: 600;
  margin: 1.6875rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-activity-post__title {
    font-size: 1.125rem;
    margin-top: 1.0625rem;
  }
}
.p-activity-post__headerImage {
  display: block;
  width: 100%;
  height: auto;
  margin: 1.6875rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-activity-post__headerImage {
    margin-top: 1.0625rem;
  }
}
.p-product-hero {
  display: flex;
  width: calc(100% - 2.5rem);
  max-width: 73rem;
  gap: 0 2.375rem;
  border-top: 0.0625rem solid #222222;
  padding-top: 2.375rem;
  margin: 4.125rem auto 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-product-hero {
    flex-direction: column;
    gap: 0.9375rem 0;
    padding-top: 1rem;
    margin-top: 1.625rem;
  }
}
.p-product-hero::before {
  content: "";
  display: block;
  width: 9.75rem;
  height: 0.3125rem;
  background-color: #74e0e5;
  position: absolute;
  top: 0;
  left: 0;
}
.p-product-hero__text {
  width: calc(100% - 34.375rem - 2.375rem);
}
@media screen and (max-width: 767px) {
  .p-product-hero__text {
    width: 100%;
  }
}
.p-product-hero__title {
  font-size: 1.875rem;
  line-height: 1.3333333333;
  font-weight: 600;
  margin: 0 0 4.25rem 0;
}
@media screen and (max-width: 767px) {
  .p-product-hero__title {
    font-size: 1.625rem;
    margin-bottom: 2rem;
  }
}
.p-product-hero__paragraph {
  font-size: 0.875rem;
  line-height: 2.0714285714;
  margin: 0.875rem 0 0;
}
.p-product-hero__image {
  display: block;
  width: 34.375rem;
}
@media screen and (max-width: 767px) {
  .p-product-hero__image {
    width: 100%;
  }
}
.p-product-structure {
  display: block;
  width: calc(100% - 2.5rem);
  max-width: 73rem;
  margin: 2.6875rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-product-structure {
    margin-top: 2.25rem;
  }
}
.p-product-structure__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-product-structure__title {
    font-size: 1rem;
  }
}
.p-product-structure__image {
  display: block;
  width: 100%;
  margin-top: 1.4375rem;
}
@media screen and (max-width: 767px) {
  .p-product-structure__image {
    margin-top: 1.5625rem;
  }
}
.p-product-structure__image img {
  display: block;
  width: 100%;
}
.p-product-facts {
  display: block;
  width: calc(100% - 2.5rem);
  max-width: 73rem;
  margin: 2.5625rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-product-facts {
    margin-top: 2.25rem;
  }
}
.p-product-facts__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-product-facts__title {
    font-size: 1rem;
  }
}
.p-product-facts__list {
  display: block;
  width: 100%;
  list-style: none;
  margin: 1.875rem 0 0;
  padding: 0;
}
.p-product-facts__list::after {
  content: "";
  clear: both;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-product-facts__list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.p-product-facts__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 25.625rem;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 100%;
  border: 0.0625rem solid #74e0e5;
  padding: 0 4.25rem;
}
@media screen and (min-width: 768px) {
  .p-product-facts__item {
    float: left;
  }
}
@media screen and (max-width: 767px) {
  .p-product-facts__item {
    width: 20.9375rem;
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-product-facts__item:nth-child(2n) {
    margin: 0 -1.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-product-facts__item:nth-child(2n) {
    margin: -1.9375rem 0;
  }
}
.p-product-facts__heading {
  font-size: 2rem;
  line-height: 1;
  font-weight: 600;
  margin: 0 0 1.8125rem 0;
}
@media screen and (max-width: 767px) {
  .p-product-facts__heading {
    margin-bottom: 1.25rem;
  }
}
.p-product-facts__headingSub {
  display: inline;
  vertical-align: baseline;
  font-size: 1.5rem;
}
.p-product-facts__headingLarge {
  display: inline;
  vertical-align: baseline;
  font-size: 4.375rem;
}
.p-product-facts__label {
  display: inline-block;
  min-width: 10.25rem;
  font-size: 1rem;
  border-radius: 1.125rem;
  background-color: #74e0e5;
  text-align: center;
  padding: 0.3125rem 0.75rem 0.4375rem;
}
.p-product-facts__desc {
  font-size: 0.875rem;
  line-height: 1.8571428571;
  margin: 1.875rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-product-facts__desc {
    margin-top: 0.9375rem;
    padding: 0 3.4375rem;
  }
}

.p-mission-hero {
  display: flex;
  width: calc(100% - 2.5rem);
  max-width: 73rem;
  gap: 0 2.375rem;
  border-top: 0.0625rem solid #222222;
  padding-top: 2.375rem;
  margin: 4.125rem auto 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-mission-hero {
    flex-direction: column;
    gap: 0.9375rem 0;
    padding-top: 1rem;
    margin-top: 1.625rem;
  }
}
.p-mission-hero::before {
  content: "";
  display: block;
  width: 9.75rem;
  height: 0.3125rem;
  background-color: #74e0e5;
  position: absolute;
  top: 0;
  left: 0;
}
.p-mission-hero__text {
  width: 27.1875rem;
  padding-right: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-mission-hero__text {
    width: 100%;
  }
}
.p-mission-hero__title {
  font-size: 1.875rem;
  line-height: 1.3333333333;
  font-weight: 600;
  margin: 0 0 4.25rem 0;
}
@media screen and (max-width: 767px) {
  .p-mission-hero__title {
    font-size: 1.625rem;
    margin-bottom: 2rem;
  }
}
.p-mission-hero__paragraph {
  font-size: 0.875rem;
  line-height: 2.0714285714;
  margin: 0.875rem 0 0;
}
.p-mission-hero__description {
  display: block;
  width: calc(100% - 27.1875rem);
}
@media screen and (max-width: 767px) {
  .p-mission-hero__description {
    width: 100%;
  }
}
.p-mission-statement {
  display: block;
  width: calc(100% - 2.5rem);
  max-width: 73rem;
  margin: 4rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-mission-statement {
    margin-top: 2.0625rem;
  }
}
.p-mission-statement__title {
  font-family: "Jost", sans-serif;
  font-size: 2.0625rem;
  font-weight: 500;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-mission-statement__title {
    font-size: 1.625rem;
  }
}
.p-mission-statement__content {
  display: block;
  width: 100%;
  margin-top: 0.8125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-mission-statement__content {
    margin-top: 1.25rem;
  }
}
.p-mission-statement__content::after {
  content: "";
  display: block;
  width: 7.625rem;
  height: auto;
  aspect-ratio: 122 / 1156;
  height: auto;
  background-image: url(../images/mission/statement_arrow.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 13.75rem;
  left: -2.125rem;
}
@media screen and (max-width: 767px) {
  .p-mission-statement__content::after {
    display: none;
  }
}
.p-mission-statement__image {
  display: block;
  width: 100%;
  background-color: #ffffff;
  padding: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-mission-statement__image {
    overflow: auto;
    padding: 1.8125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mission-statement__image::before {
    content: "※横にスクロールできます";
    display: block;
    opacity: 0.6;
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
  }
}
.p-mission-statement__image img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-mission-statement__image img {
    max-width: none;
    min-width: 49.5rem;
  }
}
.p-mission-statement__attention {
  font-size: 0.8125rem;
  font-weight: 300;
  text-align: right;
  margin: 0.9375rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-mission-statement__attention {
    font-size: 0.75rem;
    text-align: left;
    margin-top: 0.6875rem;
  }
}
.p-mission-journey {
  display: block;
  width: calc(100% - 2.5rem);
  max-width: 73rem;
  margin: 2.5625rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-mission-journey {
    margin-top: 2.0625rem;
  }
}
.p-mission-journey__title {
  font-family: "Jost", sans-serif;
  font-size: 1.4375rem;
  font-weight: 500;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-mission-journey__title {
    font-size: 1.125rem;
  }
}
.p-mission-journey__content {
  display: block;
  width: 100%;
  margin-top: -3.1875rem;
}
@media screen and (max-width: 767px) {
  .p-mission-journey__content {
    margin-top: 0.625rem;
  }
}
.p-mission-journey__image {
  display: block;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-mission-journey__image {
    overflow: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-mission-journey__image::before {
    content: "※横にスクロールできます";
    display: block;
    opacity: 0.6;
    font-size: 0.75rem;
    margin-bottom: 0;
  }
}
.p-mission-journey__image img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-mission-journey__image img {
    max-width: none;
    min-width: 69.25rem;
  }
}

.p-contact {
  background-color: #74e0e5;
}
.p-contact-headline {
  padding-bottom: 0;
}
.p-contact-description {
  display: block;
  width: calc(100% - 2.5rem);
  max-width: 40rem;
  margin: 1.75rem auto 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact-description {
    margin-top: 2rem;
  }
}
.p-contact-description--complete {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-contact-description--complete {
    margin-top: 3.125rem;
  }
}
.p-contact-description__paragraph {
  font-size: 0.9375rem;
  line-height: 2;
  margin: 0.9375rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-contact-description__paragraph {
    font-size: 0.84375rem;
    margin-top: 0.875rem;
  }
}
.p-contact-description__required {
  display: block;
  text-align: right;
  font-size: 0.8125rem;
  font-weight: 300;
  margin: 2.375rem 0 0;
}
@media screen and (max-width: 767px) {
  .p-contact-description__required {
    margin-top: 1.4375rem;
  }
}
.p-contact-description__button {
  margin: 2.375rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-contact-description__button {
    margin-top: 1.4375rem;
  }
}
.p-contact-form {
  display: block;
  width: calc(100% - 2.5rem);
  max-width: 40rem;
  margin: 2.1875rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-contact-form {
    margin-top: 0.9375rem;
  }
}
.p-contact-form__cf7 {
  display: block;
  width: 100%;
}
.p-contact-form__cf7List {
  display: flex;
  flex-direction: column;
  row-gap: 1.875rem;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-contact-form__cf7List {
    row-gap: 0.8125rem;
  }
}
.p-contact-form__cf7Item {
  display: flex;
  flex-direction: column;
  row-gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__cf7Item {
    row-gap: 0.625rem;
  }
}
.p-contact-form__cf7ItemTitle {
  width: 100%;
  font-size: 0.875rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-contact-form__cf7ItemTitle {
    font-size: 0.8125rem;
  }
}
.p-contact-form__cf7ItemContent {
  width: 100%;
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}
.p-contact-form__cf7ItemContent input,
.p-contact-form__cf7ItemContent textarea {
  width: 100%;
  color: #222;
  background-color: #fff;
  padding: 1.5625rem 1.875rem;
  border: none;
  resize: none;
}
@media screen and (max-width: 767px) {
  .p-contact-form__cf7ItemContent input,
  .p-contact-form__cf7ItemContent textarea {
    padding: 1.125rem 0.625rem;
  }
}
.p-contact-form__cf7ItemContent input::-moz-placeholder, .p-contact-form__cf7ItemContent textarea::-moz-placeholder {
  opacity: 0.2;
}
.p-contact-form__cf7ItemContent input::placeholder,
.p-contact-form__cf7ItemContent textarea::placeholder {
  opacity: 0.2;
}
.p-contact-form__cf7Acceptance {
  display: block;
  width: 100%;
  margin: 2.5625rem 0 0;
  text-align: center;
  font-size: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__cf7Acceptance {
    margin-top: 1.75rem;
  }
}
.p-contact-form__cf7Acceptance input[type=checkbox] {
  opacity: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  position: absolute;
}
.p-contact-form__cf7Acceptance input[type=checkbox] + span::-moz-selection {
  background: transparent;
  color: inherit;
}
.p-contact-form__cf7Acceptance input[type=checkbox] + span::selection {
  background: transparent;
  color: inherit;
}
.p-contact-form__cf7Acceptance input[type=checkbox] + span::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 1rem;
  height: auto;
  aspect-ratio: 1/1;
  border: 0.0625rem solid #222;
  border-radius: 0.1875rem;
  margin-right: 0.4375rem;
  transform: translateY(-0.125rem);
}
.p-contact-form__cf7Acceptance input[type=checkbox]:checked + span::before {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpolyline fill='none' stroke='%23222' stroke-width='2' points='2,7.3 7.3,12.7 18,2 '/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center 0.125rem;
}
.p-contact-form__cf7Acceptance input[type=checkbox]:focus + span::before {
  border-color: #222;
}
.p-contact-form__cf7Submit {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 3.3125rem 0 0;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__cf7Submit {
    margin-top: 1.625rem;
    font-size: 1rem;
  }
}
.p-contact-form__cf7Submit input[type=submit] {
  width: 10.625rem;
  height: auto;
  aspect-ratio: 170 / 65;
  height: auto;
  color: #222;
  background-image: url(../images/contact/button_bg.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: none;
  border: none;
  background-color: transparent;
  padding: 0;
  transition: background-image 0.3s ease, color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-contact-form__cf7Submit input[type=submit]:hover {
    color: #fff;
    background-image: url(../images/contact/button_bg_black.svg);
  }
}
@media screen and (max-width: 767px) {
  .p-contact-form__cf7Submit input[type=submit] {
    width: 7.5rem;
    color: #fff;
    background-image: url(../images/contact/button_bg_black.svg);
  }
}
.p-contact .wpcf7 form .wpcf7-not-valid {
  border: 1px solid #ff0000;
}
.p-contact .wpcf7 form .wpcf7-not-valid-tip {
  display: block;
  padding: 0.375rem 0 0 0.375rem;
  font-size: 0.9375rem;
  color: #ff0000;
}
@media screen and (max-width: 767px) {
  .p-contact .wpcf7 form .wpcf7-not-valid-tip {
    font-size: 0.875rem;
  }
}
.p-contact .wpcf7 form .wpcf7-list-item {
  margin: 0;
}
.p-contact .wpcf7 form .wpcf7-list-item label {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-contact .wpcf7 form .wpcf7-list-item label {
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }
}
.p-contact .wpcf7 form .wpcf7-spinner {
  display: block;
  width: 100%;
  border-radius: 0;
  background-color: transparent;
}
.p-contact .wpcf7 form .wpcf7-spinner::before {
  display: none;
}
.p-contact .wpcf7 form .wpcf7-spinner::after {
  content: "送信処理中です...";
  display: block;
  width: 100%;
  text-align: center;
  font-size: 0.9375rem;
  opacity: 0.75;
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-contact .wpcf7 form .wpcf7-spinner::after {
    font-size: 0.875rem;
  }
}
.p-contact .wpcf7 form .wpcf7-response-output {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  border-color: #707070;
}

.p-404-content {
  display: block;
  width: 100%;
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-404-content {
    padding: 3.75rem 0;
  }
}
.p-404-content__title {
  font-size: 3.75rem;
  line-height: 1;
  font-weight: 600;
  margin: 0 0 3rem 0;
}
@media screen and (max-width: 767px) {
  .p-404-content__title {
    font-size: 2.25rem;
    margin-bottom: 2.25rem;
  }
}
.p-404-content__text {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  margin: 1.5rem 0;
}
@media screen and (max-width: 767px) {
  .p-404-content__text {
    font-size: 0.875rem;
    margin: 1.25rem 0;
  }
}

@media screen and (min-width: 768px) {
  .u-hidden--pc {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .u-hidden--sp {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */
