@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

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

ol, ul {
  list-style: none;
}

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

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

button {
  cursor: pointer;
  padding: 0;
}

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

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

:root {
  --header-height: 0px;
}

body {
  font-family: "Noto Sans JP", 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #121212;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  vertical-align: bottom;
}

.l-header {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #fff;
}

.l-header__inner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0 0 20px;
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    padding: 0 10px;
  }
}

.l-header__logo {
  width: 80px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .l-header__logo {
    width: 60px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 60px;
  }
}
.l-header__logo img {
  width: 100%;
  height: auto;
}

.l-footer {
  background-color: #000;
  color: #fff;
  padding: 80px 0 20px;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 60px 0 20px;
  }
}

.l-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4%;
}

.l-footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .l-footer__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
  }
}

/* 左側：ロゴ・住所 */
.l-footer__info {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}
@media screen and (max-width: 767px) {
  .l-footer__info {
    width: 100%;
  }
}

.l-footer__logo {
  width: 90px;
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .l-footer__logo {
    width: 100px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    width: 80px;
    margin-left: auto;
    margin-right: auto;
  }
}
.l-footer__logo img {
  width: 100%;
  height: auto;
}

.l-footer__address {
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .l-footer__address {
    text-align: center;
  }
}

.l-footer__text,
.l-footer__tel {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 5px;
}

.l-footer__nav {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media screen and (max-width: 767px) {
  .l-footer__nav {
    width: 100%;
  }
}

.l-footer__nav-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 40px;
}
@media screen and (max-width: 767px) {
  .l-footer__nav-list {
    grid-template-columns: 1fr;
    gap: 0px;
  }
}

.l-footer__nav-item a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  position: relative;
  padding-left: 15px;
}
.l-footer__nav-item a::before {
  content: ">";
  position: absolute;
  left: 0;
  font-size: 0.8rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
}
.l-footer__nav-item a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .l-footer__nav-item a {
    font-size: 0.9rem;
  }
}

.l-footer__copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}
.l-footer__copyright small {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.c-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ff9900;
  color: #fff;
  width: 200px;
  height: 40px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  position: relative;
  margin-top: 2em;
  margin-left: auto;
  border-radius: 3px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.c-button:hover {
  background-color: #ffd900;
}

.c-button-entry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ff9900;
  color: #fff;
  width: 120px;
  height: 80px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  position: relative;
  margin-left: 1em;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.c-button-entry:hover {
  background-color: #ffd900;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .c-button-entry {
    margin-left: 0.5em;
    width: 90px;
  }
}
@media screen and (max-width: 767px) {
  .c-button-entry {
    margin-left: 0;
  }
}
.c-button-entry figure {
  max-width: 60%;
  width: 100%;
  display: block;
  position: absolute;
  top: 5px;
  left: 5px;
}
@media screen and (max-width: 767px) {
  .c-button-entry figure {
    max-width: 30%;
  }
}
.c-button-entry span {
  font-size: 1rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .c-button-entry span {
    font-size: 0.8rem;
  }
}
.c-button-entry span {
  display: block;
}

.c-heading-primary {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.5;
  color: #121212;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .c-heading-primary {
    font-size: 1.5rem;
    margin-bottom: 1em;
  }
}

.c-heading-section {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-heading-section {
    margin-bottom: 40px;
    padding-top: 25px;
  }
}
.c-heading-section__en {
  display: block;
  font-family: "Anton", sans-serif;
  font-size: 8rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #000;
  text-transform: uppercase;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .c-heading-section__en {
    font-size: 6.5rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .c-heading-section__en {
    font-size: 5.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-heading-section__en {
    font-size: 3.5rem;
  }
}
@media screen and (min-width: 2561px) {
  .c-heading-section__en {
    font-size: 10rem;
  }
}
.c-heading-section__ja {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #333;
  margin-top: 0.75em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .c-heading-section__ja {
    font-size: 1rem;
    margin-top: 0.5em;
  }
}

.c-text {
  margin-bottom: 1em;
  line-height: 2.1;
}
.c-text:last-of-type {
  margin-bottom: 0;
}

.p-gnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-gnav li {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-gnav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 100px 40px;
    z-index: 100;
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
            box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
  }
  .p-gnav.is-active {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.p-gnav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-gnav__list {
    gap: 5px;
  }
}
@media screen and (max-width: 767px) {
  .p-gnav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    gap: 0;
    margin-bottom: 40px;
  }
}
.p-gnav__item a {
  font-weight: 600;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.p-gnav__item a:hover {
  color: #ff9900;
}
@media screen and (max-width: 767px) {
  .p-gnav__item {
    border-bottom: 1px solid #ff9900;
  }
  .p-gnav__item:first-child {
    border-top: 1px solid #ff9900;
  }
  .p-gnav__item a {
    display: block;
    padding: 18px 0;
    font-size: 1.1rem;
    position: relative;
  }
  .p-gnav__item a::after {
    content: ">";
    position: absolute;
    right: 5px;
    color: #ff9900;
    font-weight: bold;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-gnav__item a {
    font-size: 1rem;
    padding: 1em 0;
  }
}
@media screen and (max-width: 767px) {
  .p-gnav__entry {
    width: 100%;
  }
  .p-gnav__entry .c-button-entry {
    width: 100%;
    height: 60px;
    border-radius: 4px;
  }
}

@media screen and (max-width: 767px) {
  .p-gnav__overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 99;
  }
  .p-gnav__overlay.is-active {
    display: block;
  }
}

.p-hamburger {
  display: none;
  z-index: 101;
  background: none;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-hamburger {
    background: #ff9900;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 60px;
    height: 60px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-hamburger {
    display: none;
    background: #ff9900;
  }
}
.p-hamburger__line {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #fff;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-top: 10px;
}
.p-hamburger__line::before, .p-hamburger__line::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: inherit;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-hamburger__line::before {
  top: -8px;
}
.p-hamburger__line::after {
  top: 8px;
}
.p-hamburger.is-active .p-hamburger__line {
  background-color: transparent;
}
.p-hamburger.is-active .p-hamburger__line::before {
  background-color: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 0;
}
.p-hamburger.is-active .p-hamburger__line::after {
  background-color: #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 0;
}
.p-hamburger .p-hamburger__text {
  color: #fff;
  font-size: 11px;
  margin-top: 10px;
}

.p-mv {
  width: 100vw;
  height: auto;
  aspect-ratio: 1920/1080;
  background-image: url("../images/mv.webp");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  margin-top: var(--header-height, 80px);
}
@media screen and (max-width: 767px) {
  .p-mv {
    aspect-ratio: auto;
    height: 50dvh;
    background-image: url("../images/mv.webp");
  }
}
@media screen and (min-width: 2561px) {
  .p-mv {
    height: 80vh;
  }
}

.p-mv-sub {
  width: 100vw;
  height: auto;
  aspect-ratio: 1920/400;
  background-image: url("../images/mv.webp");
  background-size: cover;
  background-position: top;
  position: relative;
  overflow: hidden;
  margin-top: var(--header-height, 80px);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-mv-sub {
    aspect-ratio: auto;
    height: 27dvh;
    background-image: url("../images/mv.webp");
  }
}
@media screen and (max-width: 767px) {
  .p-mv-sub {
    aspect-ratio: 1920/700;
  }
}

.p-mv__inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.p-mv__caption {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 75%;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-mv__caption {
    width: 90%;
    top: 45%;
    left: 25%;
    -webkit-transform: translate(-25%, -45%);
            transform: translate(-25%, -45%);
  }
}

.p-mv__subtext {
  position: absolute;
  right: 2.6vw;
  top: 70%;
  -webkit-transform: translateY(-70%);
          transform: translateY(-70%);
  width: 100%;
  max-width: 120px;
  z-index: 2;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .p-mv__subtext {
    max-width: 100px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-mv__subtext {
    max-width: 80px;
    right: 3vw;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__subtext {
    top: auto;
    bottom: 5%;
    right: 2.5%;
    -webkit-transform: none;
            transform: none;
    max-width: 60px;
  }
}
@media screen and (min-width: 2561px) {
  .p-mv__subtext {
    max-width: 180px;
  }
}

.p-message {
  padding: 120px 0;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-message {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-message {
    padding: 60px 0;
  }
}

.p-message__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 80px;
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 4%;
  position: relative;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .p-message__inner {
    max-width: 1200px;
    gap: 60px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-message__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-message__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
@media screen and (min-width: 2561px) {
  .p-message__inner {
    max-width: 2000px;
    gap: 120px;
  }
}

.p-message__image-unit {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-message__image-unit {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .p-message__image-unit {
    width: 100%;
  }
}

.p-message__image-bg {
  position: absolute;
  top: 20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background-color: #e0f7fa;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-message__image-bg {
    top: 15px;
    right: -10px;
  }
}

.p-message__image img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-message__image {
    display: none;
  }
}

.p-message__content {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-message__content {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .p-message__content {
    width: 100%;
  }
}

.p-message__deco-circle {
  position: absolute;
  bottom: -180px;
  left: -40px;
  width: 280px;
  z-index: -1;
  opacity: 0.8;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-message__deco-circle {
    width: 200px;
    bottom: -100px;
    left: -20px;
  }
}
@media screen and (max-width: 767px) {
  .p-message__deco-circle {
    width: 140px;
    bottom: -70px;
    left: -10px;
  }
}

.p-message__deco-wave {
  position: absolute;
  bottom: -60px;
  right: -20px;
  width: 200px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-message__deco-wave {
    width: 120px;
    bottom: -30px;
    right: -10px;
  }
}

.p-message__deco-hexagon {
  position: absolute;
  top: -40px;
  right: 0;
  width: 150px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-message__deco-hexagon {
    width: 80px;
    top: -20px;
  }
}

.p-message__title-svg {
  margin-top: 50px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-message__title-svg {
    margin: 40px auto 0;
    max-width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .p-message__title-svg {
    margin-top: 30px;
  }
}
.p-message__title-svg img {
  width: 100%;
  max-width: 550px;
  height: auto;
  display: block;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-message__title-svg img {
    margin: 0 auto;
  }
}

.p-gallery {
  padding: 100px 0 150px;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-gallery {
    padding: 60px 0 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-gallery {
    padding: 60px 0 100px;
  }
}

.p-gallery__inner {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 4%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-gallery__inner {
    -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: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-gallery__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
  }
}

.p-gallery__item {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 30%;
          flex: 0 1 30%;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-gallery__item {
    width: 30%;
  }
}
@media screen and (max-width: 767px) {
  .p-gallery__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 10px);
            flex: 0 1 calc(50% - 10px);
  }
}
.p-gallery__item .p-gallery__image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 12px;
}
.p-gallery__item .p-gallery__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.p-gallery__item--center {
  margin-top: 100px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-gallery__item--center {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-gallery__item--center {
    margin-top: 0;
  }
}

.p-gallery__item--right {
  margin-top: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-gallery__item--right {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-gallery__item--right {
    margin-top: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 10px);
            flex: 0 1 calc(50% - 10px);
  }
}

/* 装飾パーツ */
.p-gallery__deco-wave-blue {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 100px;
  z-index: 1;
}
.p-gallery__deco-wave-blue img {
  border-radius: 0;
}
@media screen and (max-width: 767px) {
  .p-gallery__deco-wave-blue {
    width: 60px;
    bottom: -15px;
    right: -10px;
  }
}

.p-gallery__deco-triangles {
  position: absolute;
  top: -15px;
  right: 10px;
  width: 60px;
  z-index: 1;
}
.p-gallery__deco-triangles img {
  border-radius: 0;
}
@media screen and (max-width: 767px) {
  .p-gallery__deco-triangles {
    width: 40px;
  }
}

.p-gallery__deco-circle-light {
  position: absolute;
  bottom: -60px;
  right: -40px;
  width: 160px;
  z-index: -1;
  opacity: 0.6;
}
.p-gallery__deco-circle-light img {
  border-radius: 0;
}
@media screen and (max-width: 767px) {
  .p-gallery__deco-circle-light {
    width: 100px;
    bottom: -30px;
    right: -15px;
  }
}

.p-occupation {
  padding: 100px 0;
  background: url(../images/occupation-bg.webp) no-repeat center top/cover;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-occupation {
    padding: 60px 0;
  }
}

.p-occupation__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4%;
  position: relative;
  z-index: 5;
}

.p-occupation__tab-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .p-occupation__tab-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 30px;
  }
}

.p-occupation__tab-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 220px;
  height: 60px;
  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;
  border-radius: 12px 12px;
  cursor: pointer;
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-occupation__tab-item {
    max-width: none;
    height: 50px;
    border-radius: 8px;
    font-size: 0.9rem;
  }
}
.p-occupation__tab-item:nth-child(1) {
  background-color: #31a900;
}
.p-occupation__tab-item:nth-child(2) {
  background-color: #ffbc00;
}
.p-occupation__tab-item:nth-child(3) {
  background-color: #4bd3e6;
}
.p-occupation__tab-item:nth-child(4) {
  background-color: #d1002d;
}
.p-occupation__tab-item.is-active {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .p-occupation__tab-item.is-active {
    -webkit-transform: none;
            transform: none;
  }
}
.p-occupation__tab-item:not(.is-active) {
  opacity: 1;
}
.p-occupation__tab-item:not(.is-active):hover {
  opacity: 0.8;
}

.p-occupation__content-wrapper {
  background: #fff;
  padding: 60px;
  border-radius: 0;
  margin-top: 1em;
  -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 767px) {
  .p-occupation__content-wrapper {
    padding: 30px 20px;
    border-radius: 8px;
    margin-top: 10px;
  }
}

.p-occupation__content {
  display: none;
}
.p-occupation__content.is-active {
  display: block;
  -webkit-animation: occFadeUp 0.6s ease forwards;
          animation: occFadeUp 0.6s ease forwards;
}

.p-occupation__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-occupation__card {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-occupation__card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
  }
}

.p-occupation__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}
.p-occupation__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.p-occupation__info {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
}

.p-occupation__info-title {
  display: inline-block;
  padding: 8px 30px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 25px;
  border-radius: 4px;
}
.p-occupation__info-title--sales {
  background-color: #d1002d;
}
.p-occupation__info-title--office {
  background-color: #31a900;
}
.p-occupation__info-title--engineer {
  background-color: #4bd3e6;
}
.p-occupation__info-title--callcenter {
  background-color: #ffbc00;
}

.p-occupation__text {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

.p-occupation__deco-blob {
  position: absolute;
  top: 10%;
  right: -5%;
  width: 40%;
  z-index: 1;
  opacity: 0.6;
}

.p-occupation__deco-hex {
  position: absolute;
  bottom: 5%;
  left: 2%;
  width: 150px;
  z-index: 1;
}

@-webkit-keyframes occFadeUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes occFadeUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.p-data {
  padding: 100px 0;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-data {
    padding: 60px 0;
  }
}

.p-data__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4%;
}

.p-data__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .p-data__grid {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.p-data__grid .two {
  width: 66.66%;
}
@media screen and (max-width: 767px) {
  .p-data__grid .two {
    width: 100%;
  }
  .p-data__grid .two .p-data__item:nth-of-type(n+2) {
    width: 50%;
  }
}
.p-data__grid .three {
  width: 33.33%;
}
.p-data__grid.column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-data__grid.column {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.p-data__item {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
  width: 33.3333333333%;
}
.p-data__item.one {
  width: 100%;
}
.p-data__item.two {
  width: 66.666%;
}
@media screen and (max-width: 767px) {
  .p-data__item.two {
    width: 100%;
  }
  .p-data__item.two .p-data__number-wrap {
    margin-top: 0;
  }
  .p-data__item.two .p-data__content.row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
}
.p-data__item.hurf {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-data__item.hurf {
    width: 100%;
  }
  .p-data__item.hurf.sp-full {
    width: 100% !important;
  }
}
@media screen and (max-width: 767px) {
  .p-data__item {
    width: 100%;
  }
  .p-data__item:nth-last-of-type(-n+2) {
    width: 50%;
  }
  .p-data__item:last-of-type .p-data__content {
    gap: 10px;
  }
}
.p-data__item.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.p-data__content {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 20px;
  position: relative;
  text-align: center;
  color: #fff;
}
.p-data__content.row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .p-data__content.row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-data__content--yellow {
  background-color: #ffe200;
}
.p-data__content--blue {
  background-color: #56add8;
}
.p-data__content--green {
  background-color: #2dcf05;
}
.p-data__content--pink {
  background-color: #ff88b3;
}
.p-data__content--cyan {
  background-color: #39d8c1;
}
@media screen and (max-width: 767px) {
  .p-data__content {
    padding: 30px 15px;
  }
}

.p-data__image {
  width: 100%;
  height: 100%;
}
.p-data__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.p-data__label {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 5px;
  z-index: 5;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-data__label {
    font-size: 1.1rem;
    margin-bottom: 5px;
  }
}

.p-data__number-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 1;
  font-family: "Anton", sans-serif;
  margin-top: 10px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.p-data__number-wrap .p-data__number-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .p-data__number-wrap {
    margin-top: 0;
  }
}

.p-data__content--yellow .p-data__number,
.p-data__content--yellow .p-data__unit {
  -webkit-text-stroke-color: #be9f11;
}

.p-data__content--blue .p-data__number,
.p-data__content--blue .p-data__unit {
  -webkit-text-stroke-color: #146c99;
}

.p-data__content--green .p-data__number,
.p-data__content--green .p-data__unit {
  -webkit-text-stroke-color: #1a8a00;
}

.p-data__content--pink .p-data__number,
.p-data__content--pink .p-data__unit {
  -webkit-text-stroke-color: #d81b60;
}

.p-data__content--cyan .p-data__number,
.p-data__content--cyan .p-data__unit {
  -webkit-text-stroke-color: #0d8577;
}

.p-data__number {
  font-size: 8rem;
  line-height: 0.8;
  color: #fff;
  -webkit-text-stroke: 10px #000;
  paint-order: stroke fill;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .p-data__number {
    font-size: 6.5rem;
    -webkit-text-stroke-width: 9px;
  }
}
@media screen and (max-width: 767px) {
  .p-data__number {
    font-size: 4rem;
    -webkit-text-stroke-width: 5px;
  }
}

.p-unit {
  -webkit-text-stroke: 10px #1a8a00;
  paint-order: stroke fill;
}
@media screen and (max-width: 767px) {
  .p-unit {
    -webkit-text-stroke-width: 5px;
  }
}

.p-data__unit {
  font-size: 2rem;
  margin-left: 10px;
  margin-bottom: -5px;
  color: #fff;
  -webkit-text-stroke: 6px #000;
  paint-order: stroke fill;
}
.p-data__unit small {
  font-size: 13px;
  -webkit-text-stroke-width: 0;
}
@media screen and (max-width: 767px) {
  .p-data__unit {
    font-size: 1.75rem;
    -webkit-text-stroke-width: 2px;
  }
}

.p-data__illust {
  position: relative;
  width: 60%;
  margin-top: 0px;
  margin-bottom: 5px;
  z-index: 2;
}
.p-data__illust.small {
  max-width: 30%;
}
.p-data__illust.min {
  max-width: 40%;
}
.p-data__illust.big {
  width: 80%;
}
.p-data__illust small {
  font-size: 11px;
}
.p-data__illust img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-data__illust {
    width: 60%;
    margin-top: 5px;
    margin-bottom: 10px;
  }
}

.p-unit {
  display: inline-block;
  margin-left: 10px;
  font-size: 30px;
  vertical-align: bottom;
  margin-bottom: -10px;
}

.p-office {
  padding: 100px 0;
  background-color: #fff;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-office {
    padding: 60px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-office {
    padding: 60px 0;
  }
}

.p-office__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4%;
}

.p-office__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-office__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, auto);
    gap: 10px;
  }
}

.p-office__item {
  width: 100%;
}
.p-office__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -o-object-position: top;
     object-position: top;
}
.p-office__item {
  aspect-ratio: 1/1;
}
.p-office__item--01 {
  grid-column: 1/2;
  grid-row: 1/2;
}
.p-office__item--02 {
  grid-column: 2/3;
  grid-row: 1/3;
  aspect-ratio: 1/2.05;
}
@media screen and (max-width: 767px) {
  .p-office__item--02 {
    grid-column: 2/3;
    grid-row: 1/3;
    aspect-ratio: 1/2.05;
  }
}
.p-office__item--03 {
  grid-column: 3/5;
  grid-row: 1/2;
  aspect-ratio: 2.05/1;
}
@media screen and (max-width: 767px) {
  .p-office__item--03 {
    grid-column: 1/2;
    grid-row: 2/3;
    aspect-ratio: 1/1;
  }
}
.p-office__item--04 {
  grid-column: 1/2;
  grid-row: 2/3;
}
@media screen and (max-width: 767px) {
  .p-office__item--04 {
    grid-column: 1/2;
    grid-row: 3/4;
  }
}
.p-office__item--05 {
  grid-column: 3/4;
  grid-row: 2/3;
}
@media screen and (max-width: 767px) {
  .p-office__item--05 {
    grid-column: 1/2;
    grid-row: 4/5;
  }
}
.p-office__item--06 {
  grid-column: 4/5;
  grid-row: 2/3;
}
@media screen and (max-width: 767px) {
  .p-office__item--06 {
    grid-column: 2/3;
    grid-row: 3/5;
    aspect-ratio: 1/2.05;
  }
}

.p-interview__inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 4%;
}

.p-sns__box {
  background-image: url("../images/sns-bg.webp");
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  text-align: center;
}

.p-sns__title {
  font-family: "Anton", sans-serif;
  font-size: 6rem;
}
@media screen and (max-width: 767px) {
  .p-sns__title {
    font-size: 3rem;
  }
}
.p-sns__title {
  color: #fff;
  margin-bottom: 40px;
  line-height: 1;
}

.p-sns__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}

.p-sns__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 90px;
  height: 90px;
}
@media screen and (max-width: 767px) {
  .p-sns__link {
    width: 60px;
    height: 60px;
  }
}
.p-sns__link {
  background: #fff;
  border-radius: 10px;
  border-right: 4px solid #ededed;
  border-bottom: 4px solid #ededed;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.p-sns__link img {
  width: 50px;
}
.p-sns__link img.x {
  width: 40px;
}
@media screen and (max-width: 767px) {
  .p-sns__link img {
    width: 35px;
  }
  .p-sns__link img.x {
    width: 30px;
  }
}
.p-sns__link:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.p-interview {
  padding: 100px 0;
}

.p-interview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px 50px;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-interview__grid {
    grid-template-columns: 1fr;
  }
}

.p-interview__card {
  position: relative;
  background: transparent;
  padding: 30px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-interview__card {
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-interview__card {
    padding: 15px;
  }
}
.p-interview__card {
  border: 1px solid #000;
  z-index: 1;
}
.p-interview__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  z-index: -1;
}
.p-interview__card::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 90%;
  background: var(--accent-color);
  z-index: -2;
}
.p-interview__card--cyan {
  --accent-color: #39d8c1;
}
.p-interview__card--orange {
  --accent-color: #ff9900;
}
.p-interview__card--yellow {
  --accent-color: #ffe200;
}
.p-interview__card--pink {
  --accent-color: #ff88b3;
}

.p-interview__dept {
  position: absolute;
  top: -18px;
  left: 20px;
  background: var(--accent-color);
  color: #fff;
  padding: 6px 25px;
  font-size: 1rem;
  font-weight: 700;
  z-index: 10;
}

.p-interview__name-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0.5em;
  margin-bottom: 20px;
  position: relative;
  z-index: 5;
}

.p-interview__name-box {
  background: #000;
  color: #fff;
  padding: 10px 40px;
  -webkit-transform: rotate(3deg);
          transform: rotate(3deg);
  margin-left: -40px;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-interview__name-box {
    padding: 10px;
    margin-left: -45px;
  }
}
@media screen and (max-width: 767px) {
  .p-interview__name-box {
    padding: 10px 20px;
    margin-left: -25px;
  }
}
.p-interview__name-box {
  line-height: 1.2;
}

.p-interview__name {
  font-size: 1.7rem;
  font-weight: 700;
  -webkit-transform: rotate(-3deg);
          transform: rotate(-3deg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-interview__name {
    font-size: 1.05rem;
  }
}
@media screen and (max-width: 767px) {
  .p-interview__name {
    font-size: 1.1rem;
  }
}
.p-interview__name span {
  font-size: 1.1rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-interview__name span {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-interview__name span {
    font-size: 0.8rem;
  }
}
.p-interview__name span {
  margin-left: 8px;
}

.p-interview__meta {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: right;
  padding-right: 10px;
}
@media screen and (max-width: 767px) {
  .p-interview__meta {
    padding-right: 0;
  }
}

.p-interview__text {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.8;
  border-top: 2px solid #000;
  padding-top: 15px;
}

.p-interview__btn {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #000;
  color: #fff;
  font-size: 0.9rem;
  padding: 8px 25px;
  margin-left: auto;
  margin-top: 25px;
  cursor: pointer;
  margin-bottom: -40px;
}

.p-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  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;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.p-modal.is-active {
  opacity: 1;
  visibility: visible;
}

.p-modal__bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}

.p-modal__content {
  position: relative;
  background: #fff;
  width: 90%;
  max-width: 800px;
  max-height: 85vh;
  padding: 60px 40px;
  overflow-y: auto;
  z-index: 1010;
}
@media screen and (max-width: 767px) {
  .p-modal__content {
    padding: 40px 20px;
    width: 95%;
  }
}

.p-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-modal__close span {
  display: block;
  position: relative;
  width: 30px;
  height: 2px;
  background: #000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.p-modal__close span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.p-modal__close:hover {
  opacity: 0.6;
}

.p-modal__body h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  border-bottom: 2px solid #000;
  padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .p-modal__body h3 {
    font-size: 1.5rem;
  }
}
.p-modal__body p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .p-interview {
    padding-top: 60px;
  }
}

.p-interview-content {
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-interview-content {
    padding: 0px;
  }
}
.p-interview-content__header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 25px;
  border-bottom: 2px solid #eee;
  position: relative;
}
.p-interview-content__header::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: #00b7ee;
}
.p-interview-content__profile {
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-interview-content__profile {
    font-size: 1rem;
  }
}
.p-interview-content__profile {
  color: #888;
  margin-bottom: 10px;
  display: block;
}
.p-interview-content__name {
  font-size: clamp(1.7rem, 4vw, 2.2rem);
}
@media screen and (max-width: 767px) {
  .p-interview-content__name {
    font-size: 1.7rem;
  }
}
.p-interview-content__name {
  font-weight: bold;
  color: #333;
}
.p-interview-content__name span {
  font-size: 0.55em;
  margin-left: 0.5em;
  color: #666;
}
.p-interview-content__item {
  margin-bottom: 35px;
}
.p-interview-content__question {
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-interview-content__question {
    font-size: 1.4rem;
  }
}
.p-interview-content__question {
  font-weight: bold;
  color: #00b7ee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  line-height: 1.5;
}
.p-interview-content__q-icon {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-interview-content__q-icon {
    font-size: 2rem;
  }
}
.p-interview-content__q-icon {
  font-style: italic;
  line-height: 1;
}
.p-interview-content__answer {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #121212;
}
@media screen and (max-width: 767px) {
  .p-interview-content__answer {
    font-size: 1rem;
  }
}
.p-interview-content__footer {
  background: #fdfdfd;
  border: 1px solid #f0f0f0;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
}
.p-interview-content__message-label {
  display: inline-block;
  font-size: 1.2rem;
  background: #00b7ee;
  color: #fff;
  padding: 4px 20px;
  border-radius: 20px;
  margin-bottom: 15px;
}
.p-interview-content__message-text {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-interview-content__message-text {
    font-size: 1.4rem;
  }
}
.p-interview-content__message-text.small {
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-interview-content__message-text.small {
    font-size: 1.1rem;
  }
}
.p-interview-content__message-text {
  font-weight: bold;
  text-align: left;
  line-height: 1.7;
  color: #222;
}

.p-flow {
  padding: 100px 0 250px;
  background: url(../images/flow__bg.webp) no-repeat center top/cover;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-flow {
    padding-bottom: 150px;
  }
}
@media screen and (max-width: 767px) {
  .p-flow {
    padding: 60px 0 50px;
  }
}
.p-flow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 850px;
  background-color: rgba(239, 239, 239, 0.33);
  clip-path: polygon(0% 100%, 100% 60%, 100% 100%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-flow::after {
    height: 150px;
    clip-path: polygon(0% 100%, 100% 70%, 100% 100%);
  }
}

.p-flow__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 4%;
  position: relative;
  z-index: 5;
}

.p-flow__head {
  text-align: left;
  position: relative;
  margin-bottom: 0.5em;
}

.p-flow__en {
  font-family: "Anton", sans-serif;
  font-size: 8rem;
  color: #39d8c1;
  line-height: 1;
  display: block;
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .p-flow__en {
    font-size: 5rem;
  }
}

.p-flow__ja {
  background: #000;
  color: #fff;
  display: block;
  padding: 10px 60px;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  max-width: 70%;
  margin: 0 auto 1em;
  position: relative;
  z-index: 2;
}
.p-flow__ja span {
  color: #ffff70;
}
@media screen and (max-width: 767px) {
  .p-flow__ja {
    padding: 8px 40px;
    font-size: 1.2rem;
  }
}

.p-flow__content {
  background-color: #39d8c1;
  padding: 60px;
  border-radius: 20px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-flow__content {
    padding: 20px;
    border-radius: 10px;
  }
}

.p-flow__image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.p-detail {
  padding: 120px 0;
  background-color: rgba(239, 239, 239, 0.33);
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-detail {
    padding-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-detail {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.p-detail__inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 4%;
  position: relative;
  z-index: 5;
}

.p-detail__deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.p-detail__deco--left {
  top: 10%;
  left: 2%;
  width: clamp(100px, 15vw, 200px);
}
.p-detail__deco--right {
  top: 15vh;
  right: 50px;
  width: clamp(150px, 20vw, 300px);
}
@media screen and (max-width: 767px) {
  .p-detail__deco--right {
    right: 10px;
    top: 0;
  }
}

.p-detail__accordion {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.p-detail__item {
  width: 100%;
}

.p-detail__header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 40px;
  color: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-detail__header:hover {
  opacity: 0.9;
}
.p-detail__header--red {
  background-color: #d60021;
}
.p-detail__header--green {
  background-color: #31a910;
}
.p-detail__header--cyan {
  background-color: #39d8c1;
}
.p-detail__header--orange {
  background-color: #ff9900;
}
@media screen and (max-width: 767px) {
  .p-detail__header {
    padding: 20px;
  }
}

.p-detail__header-title {
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-detail__header-title {
    font-size: 1.3rem;
  }
}

.p-detail__icon {
  width: 30px;
  height: 30px;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-detail__icon::before, .p-detail__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #fff;
}
.p-detail__icon::before {
  width: 100%;
  height: 2px;
}
.p-detail__icon::after {
  width: 2px;
  height: 100%;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}

.p-detail__item.is-active .p-detail__icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.p-detail__body {
  height: 0;
  overflow: hidden;
  background: #fff;
  -webkit-transition: height 0.4s ease;
  transition: height 0.4s ease;
}

.p-detail__body-inner {
  padding: 40px;
  border: 2px solid #000;
  border-top: none;
}
@media screen and (max-width: 767px) {
  .p-detail__body-inner {
    padding: 20px;
  }
}

.p-detail__table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #eee;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.p-detail__table th, .p-detail__table td {
  padding: 20px;
  border-bottom: 1px solid #eee;
  text-align: left;
  vertical-align: middle;
}
.p-detail__table th {
  width: 250px;
  font-weight: 700;
  background-color: #f9f9f9;
}
@media screen and (max-width: 767px) {
  .p-detail__table th {
    width: 100px;
    padding: 15px 10px;
    font-size: 0.85rem;
  }
}
@media screen and (max-width: 767px) {
  .p-detail__table td {
    padding: 15px 10px;
    font-size: 0.85rem;
    line-height: 1.6;
  }
}
.p-detail__table tr:last-child th,
.p-detail__table tr:last-child td {
  border-bottom: none;
}

.p-faq {
  padding: 100px 0;
  background: url(../images/occupation-bg.webp) no-repeat center top/cover;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-faq {
    padding: 60px 0;
  }
}

.p-faq__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4%;
  position: relative;
  z-index: 5;
}

.p-faq__list {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .p-faq__list {
    margin-top: 40px;
    gap: 10px;
  }
}

.p-faq__item {
  width: 100%;
  background: #fff;
  border: 3px solid #000;
}

.p-faq__header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 30px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-faq__header {
    padding: 15px;
  }
}

.p-faq__q-icon {
  font-family: "Anton", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  margin-right: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-faq__q-icon {
    font-size: 1.8rem;
    margin-right: 12px;
  }
}

.p-faq__question {
  font-size: 1.1rem;
  font-weight: 700;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-right: 20px;
}
@media screen and (max-width: 767px) {
  .p-faq__question {
    font-size: 0.9rem;
  }
}

.p-faq__icon {
  width: 24px;
  height: 24px;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-faq__icon::before, .p-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #000;
}
.p-faq__icon::before {
  width: 100%;
  height: 2px;
}
.p-faq__icon::after {
  width: 2px;
  height: 100%;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}

.p-faq__item.is-active .p-faq__icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.p-faq__body {
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.4s ease;
  transition: height 0.4s ease;
}

.p-faq__body-inner {
  padding: 0 30px 30px 30px;
}
@media screen and (max-width: 767px) {
  .p-faq__body-inner {
    padding: 0 15px 20px 15px;
  }
}

.p-faq__answer {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}
@media screen and (max-width: 767px) {
  .p-faq__answer {
    font-size: 0.85rem;
  }
}

.p-entry {
  padding: 100px 0;
  background-color: #4ebc2a;
  background-image: linear-gradient(#fff 1px, transparent 1px), linear-gradient(90deg, #fff 1px, transparent 1px);
  background-size: 40px 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-entry {
    padding: 30px 0 60px;
  }
}
.p-entry::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/contact__bg.webp) no-repeat center center/cover;
  pointer-events: none;
  z-index: 1;
}

.p-entry__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4%;
  position: relative;
  z-index: 5;
}

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

.p-entry__head {
  position: absolute;
  top: -170px;
  left: -40px;
  z-index: 10;
  width: 400px;
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
}
@media screen and (max-width: 767px) {
  .p-entry__head {
    top: -70px;
    left: -10px;
    width: 250px;
  }
}
.p-entry__head img {
  width: 100%;
  height: auto;
  display: block;
}

.p-entry__container {
  position: relative;
  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;
  margin-top: 80px;
}

.p-entry__title {
  font-family: "Anton", sans-serif;
  font-size: 8rem;
  color: #fff;
  background: #000;
  padding: 10px 60px;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
  display: inline-block;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-entry__title {
    font-size: 4rem;
    padding: 10px 30px;
  }
}

.p-entry__card {
  background: #fff;
  border-radius: 40px;
  padding: 10px 60px 10px;
  width: 100%;
  max-width: 900px;
  text-align: center;
  margin-bottom: 1em;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-entry__card {
    padding: 10px 30px 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-entry__card {
    padding: 60px 20px 40px;
    border-radius: 20px;
  }
}

.p-entry__card-head {
  margin-bottom: 30px;
  margin-top: -30px;
}

.p-entry__card-title {
  display: inline-block;
  background: #fdfbb4;
  font-size: 1.6rem;
  font-weight: 900;
  padding: 10px 40px;
  position: relative;
  -webkit-transform: rotate(-3deg);
          transform: rotate(-3deg);
  clip-path: polygon(0% 0%, 100% 0%, 98% 50%, 100% 100%, 0% 100%, 2% 50%);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-entry__card-title {
    font-size: 1.45rem;
  }
}
@media screen and (max-width: 767px) {
  .p-entry__card-title {
    font-size: 1.2rem;
    padding: 8px 30px;
    clip-path: polygon(0% 0%, 100% 0%, 97% 50%, 100% 100%, 0% 100%, 3% 50%);
  }
}

.p-entry__card-text {
  font-size: 1.2rem;
  line-height: 2;
  text-align: center;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .p-entry__card-text {
    font-size: 0.9rem;
    margin-bottom: 0px;
  }
}

.p-entry__btn-wrap {
  width: 100%;
}

.p-entry__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 500px;
  height: 100px;
  margin: 0 auto;
  background-color: #ffc400;
  color: #fff;
  font-weight: 900;
  font-size: 1.65rem;
  text-decoration: none;
  border-radius: 10px;
  border-bottom: 6px solid #e5a900;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-entry__btn:hover {
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
  border-bottom-width: 3px;
  opacity: 0.9;
}
@media screen and (max-width: 767px) {
  .p-entry__btn {
    height: 70px;
    font-size: 1.4rem;
  }
}

.p-entry__form-wrapper {
  margin-top: 40px;
  text-align: left;
}
.p-entry__form-wrapper .wpcf7-response-output {
  margin: 20px 0 0;
  padding: 15px;
  border-radius: 8px;
  font-size: 1rem;
}

.p-entry__form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
  padding: 20px 0;
  border-bottom: 1px dashed #ccc;
}
.p-entry__form-group:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-entry__form-group {
    -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: 20px;
    padding: 25px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-entry__form-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-entry__form-group--textarea {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-entry__form-group--textarea .p-entry__form-label {
    padding-top: 10px;
  }
}

.p-entry__form-privacy {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 2.5em auto;
}
.p-entry__form-privacy input[type=checkbox] {
  width: 18px;
  height: 18px;
  border: 1px solid #ccc;
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}
.p-entry__form-privacy a {
  color: #ffa100;
  text-decoration: underline;
}
.p-entry__form-privacy a:hover {
  text-decoration: none;
}
.p-entry__form-privacy .wpcf7-list-item {
  margin-left: 0;
}
.p-entry__form-privacy .desc {
  font-size: 0.9rem;
}
@media screen and (max-width: 767px) {
  .p-entry__form-privacy {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-entry__form-privacy dt, .p-entry__form-privacy dd {
    width: 100%;
  }
  .p-entry__form-privacy dt {
    margin-bottom: 0.5em;
  }
}

.p-entry__form-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: 30%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-entry__form-label {
    width: 100%;
  }
}

.p-entry__label-text {
  font-size: 1.15rem;
  font-weight: 700;
  color: #333;
}
@media screen and (max-width: 767px) {
  .p-entry__label-text {
    font-size: 1rem;
  }
}

.p-entry__badge {
  display: inline-block;
  padding: 4px 8px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  border-radius: 4px;
  color: #fff;
  text-align: center;
}
.p-entry__badge--required {
  background-color: #ff3b30;
}
.p-entry__badge--optional {
  background-color: #1d2a44;
}

.p-entry__form-field {
  width: 100%;
  margin-left: 0;
}
.p-entry__form-field div.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 10px;
}
.p-entry__form-field div.flex span {
  display: inline-block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-entry__form-field {
    width: 70%;
  }
}
.p-entry__form-field .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.p-entry__form-field input[type=text],
.p-entry__form-field input[type=tel],
.p-entry__form-field input[type=email],
.p-entry__form-field input[type=number],
.p-entry__form-field textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 1.1rem;
  border: 2px solid #333;
  border-radius: 8px;
  background-color: #fafafa;
  color: #333;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
          box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}
.p-entry__form-field input[type=text]:focus,
.p-entry__form-field input[type=tel]:focus,
.p-entry__form-field input[type=email]:focus,
.p-entry__form-field input[type=number]:focus,
.p-entry__form-field textarea:focus {
  outline: none;
  background-color: #fff;
  border-color: #4ebc2a;
  -webkit-box-shadow: 0 0 0 3px rgba(78, 188, 42, 0.2);
          box-shadow: 0 0 0 3px rgba(78, 188, 42, 0.2);
}
@media screen and (max-width: 767px) {
  .p-entry__form-field input[type=text],
  .p-entry__form-field input[type=tel],
  .p-entry__form-field input[type=email],
  .p-entry__form-field input[type=number],
  .p-entry__form-field textarea {
    padding: 12px;
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-entry__form-field--short .wpcf7-form-control-wrap {
    display: inline-block;
    width: auto;
  }
}
.p-entry__form-field--short input[type=number] {
  width: auto;
  max-width: 120px;
}
.p-entry__form-field textarea {
  height: 150px;
  resize: vertical;
}
.p-entry__form-field input[type=file] {
  font-size: 0.95rem;
  padding: 5px 0;
}
.p-entry__form-field .p-entry__file-notes {
  display: block;
  font-size: 0.8rem;
  color: #666;
  margin-top: 6px;
}
.p-entry__form-field .wpcf7-not-valid-tip {
  font-size: 0.85rem;
  color: #ff3b30;
  font-weight: 700;
  margin-top: 5px;
}

.p-entry__submit-wrap {
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-entry__submit-wrap {
    margin-bottom: 0;
  }
}

.p-entry__submit-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 500px;
  height: 90px;
  background-color: #ffa100;
  color: #fff;
  font-weight: 900;
  font-size: 1.8rem;
  border: none;
  border-radius: 12px;
  border-bottom: 6px solid #d47a00;
  cursor: pointer;
  -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-appearance: none;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p-entry__submit-btn {
    font-size: 1.45rem;
  }
}
.p-entry__submit-btn:hover {
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
  border-bottom-width: 3px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  opacity: 0.95;
}
.p-entry__submit-btn:active {
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
  border-bottom-width: 0px;
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media screen and (max-width: 767px) {
  .p-entry__submit-btn {
    height: 70px;
    font-size: 1.4rem;
    border-bottom-width: 5px;
  }
  .p-entry__submit-btn:hover {
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
    border-bottom-width: 3px;
  }
  .p-entry__submit-btn:active {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
    border-bottom-width: 0px;
  }
}

.wpcf7-spinner {
  display: none;
}

.p-entry__thanks {
  padding: 40px 0 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-entry__thanks {
    padding: 20px 0 10px;
  }
}

.p-entry__thanks-head {
  margin-bottom: 40px;
}

.p-entry__thanks-title {
  font-family: "Anton", sans-serif;
  font-size: 3.5rem;
  color: #000;
  display: inline-block;
  -webkit-transform: rotate(-2deg);
          transform: rotate(-2deg);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-entry__thanks-title {
    font-size: 2.2rem;
  }
}

.p-entry__thanks-text {
  font-size: 1.6rem;
  font-weight: 900;
  color: #333;
  line-height: 1.6;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-entry__thanks-text {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
}

.p-entry__thanks-subtext {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 30px;
  text-align: left;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  border: 1px dashed #ccc;
}
@media screen and (max-width: 767px) {
  .p-entry__thanks-subtext {
    font-size: 0.85rem;
    padding: 15px;
    margin-bottom: 20px;
  }
}

.p-entry__thanks-notice {
  font-size: 1.2rem;
  font-weight: 700;
  color: #4ebc2a;
  line-height: 1.6;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-entry__thanks-notice {
    font-size: 1rem;
    margin-bottom: 30px;
  }
}

.p-entry__thanks-btn-wrap {
  text-align: center;
}

.p-entry__thanks-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 400px;
  height: 70px;
  background-color: #1d2a44;
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
  text-decoration: none;
  border-radius: 10px;
  border-bottom: 5px solid #0d1523;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.p-entry__thanks-btn:hover {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  border-bottom-width: 3px;
  opacity: 0.95;
}
.p-entry__thanks-btn:active {
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  border-bottom-width: 0px;
}
@media screen and (max-width: 767px) {
  .p-entry__thanks-btn {
    height: 60px;
    font-size: 1.1rem;
  }
}

body {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}
body.is-loaded {
  opacity: 1;
}

[class*=u-fade-] {
  opacity: 0;
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
  pointer-events: none;
}
[class*=u-fade-].is-active {
  opacity: 1;
  -webkit-transform: translate(0, 0) !important;
          transform: translate(0, 0) !important;
  pointer-events: auto;
}

.u-fade-up {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

.u-fade-right {
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}

.u-fade-left {
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
}

.u-delay-100 {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.u-delay-200 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.u-delay-300 {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.u-delay-400 {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.u-delay-500 {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.u-delay-600 {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.u-delay-700 {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

.u-delay-800 {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.u-delay-900 {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

.u-delay-1000 {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

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

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