@charset "UTF-8";
/* A Modern CSS Reset */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul,
ol {
  list-style: none;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
  list-style-type: none;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.8;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

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

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*
 * HTML
 * -------------------------------------------------------------------
 */
@font-face {
  font-family: "ArizonaFlare";
  src: url("../font/ABCArizonaFlare-Light.woff2") format("woff2"), url("../font/ABCArizonaFlare-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "ArizonaFlare";
  src: url("../font/ABCArizonaFlare-Regular.woff2") format("woff2"), url("../font/ABCArizonaFlare-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "ArizonaFlare";
  src: url("../font/ABCArizonaFlare-Medium.woff2") format("woff2"), url("../font/ABCArizonaFlare-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "ArizonaFlare_main";
  src: url("../font/ABCArizonaFlare-Light.woff2") format("woff2"), url("../font/ABCArizonaFlare-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
body {
  font-family: "ArizonaFlare_main", "Noto Serif JP", serif, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
}
body.micromodal-open {
  overflow: hidden;
}

a {
  text-decoration: none;
  outline: none;
}

/*
 * wrapper
 * -------------------------------------------------------------------
 */
.cont-wrapper {
  display: block;
  margin: 0px auto;
  padding: 0px;
}

/* ログイン画面 */
body.p-login {
  background-color: #031024;
}

.l-login {
  position: relative;
  display: grid;
  grid-template-columns: auto;
  place-items: center;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: #031024;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.l-login::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background-color: rgba(3, 16, 36, 0.7);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.l-login__cont {
  position: relative;
  display: block;
  width: 92%;
  max-width: 440px;
  margin: 0 auto;
  z-index: 2;
}
.l-login__cont--logo {
  display: block;
  margin: 0 auto 2.4em;
  text-align: center;
}
.l-login__cont--logo img {
  display: block;
  width: 84%;
  max-width: 286px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
.l-login__cont--logo span {
  display: block;
  margin: 0.5rem auto 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.5;
  font-family: "ArizonaFlare";
}
.l-login__cont p {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}
.l-login__cont .login_form {
  max-width: 350px;
  margin: 2rem auto 0;
}
.l-login__cont .login_form .form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.1em;
  width: 100%;
}
.l-login__cont .login_form .form-group + .form-group {
  margin-top: 1.2rem;
}
.l-login__cont .login_form .form-group label {
  color: #ffffff;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.5;
  font-family: "ArizonaFlare";
}
.l-login__cont .login_form .form-group label .note {
  color: #c5c7c4;
  font-size: 11px;
  font-family: "Noto Serif JP", serif, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}
.l-login__cont .login_form .form-group input[type=text], .l-login__cont .login_form .form-group input[type=email], .l-login__cont .login_form .form-group input[type=password], .l-login__cont .login_form .form-group select {
  width: 100%;
  height: 1.2lh;
  padding: 0.1em 0.3em;
  margin: 0;
  border: 1px solid #ccc;
  border-radius: 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 15px;
  font-weight: 400;
}
.l-login__cont .login_form .form-group input[type=text]:focus, .l-login__cont .login_form .form-group input[type=email]:focus, .l-login__cont .login_form .form-group input[type=password]:focus, .l-login__cont .login_form .form-group select:focus {
  border-color: #007bff;
  border-radius: 2px;
  outline: none;
}
.l-login__cont .login_form .submit-button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: initial;
  position: relative;
  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%;
  height: 44px;
  margin-top: 2rem;
  background-color: #a68340;
  border-radius: 2px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.06em;
  -webkit-transition: background-color 0.3s ease, letter-spacing 0.2s ease;
  transition: background-color 0.3s ease, letter-spacing 0.2s ease;
  cursor: pointer;
}
.l-login__cont .login_form .submit-button:hover {
  background-color: #bb944c;
  letter-spacing: 0.09em;
}
.l-login .l-login__policy {
  margin-top: 2rem;
}
.l-login .l-login__policy p {
  font-size: 12px;
  letter-spacing: 0.06em;
}
.l-login .l-login__policy p a {
  color: #bb944c;
  text-decoration: underline;
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
  pointer-events: none;
}
.header a {
  pointer-events: auto;
}

.l-header {
  display: block;
  width: calc(100% - 12vw);
  margin: min(84px, 6vw) auto 0;
  padding-left: 12px;
}
@media (max-width: 1024px) {
  .l-header {
    width: calc(100% - 6vw);
  }
}
@media (max-width: 480px) {
  .l-header {
    padding-left: 0;
  }
}
.l-header .l-header__info {
  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: 10px 40px;
}
.l-header .l-header__logo {
  position: relative;
  margin-bottom: 42px;
  padding-bottom: 40px;
  color: #ffffff;
  font-family: "ArizonaFlare";
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.l-header .l-header__logo::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 40%;
  max-width: 74px;
  background-color: #606060;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.l-header .l-header__logo.is-scroll {
  opacity: 0;
}
@media (max-width: 1024px) {
  .l-header .l-header__logo.is-scroll {
    opacity: initial;
  }
}
.l-header .l-header__logo.is-scroll::after {
  opacity: 0;
}
@media (max-width: 1024px) {
  .l-header .l-header__logo.is-scroll::after {
    opacity: initial;
  }
}
.l-header .l-header__logo a {
  display: block;
  width: 236px;
  height: auto;
  margin: 0 auto 16px;
}
.l-header .l-header__logo a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.l-header .l-header__logo span {
  font-size: 21px;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.5;
  font-family: "ArizonaFlare";
}
.l-header .l-header__nav {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  opacity: 1;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.l-header .l-header__nav.is-scroll {
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .l-header .l-header__nav.is-scroll {
    opacity: initial;
  }
}
.l-header .l-header__nav ul {
  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;
}
.l-header .l-header__nav ul li {
  display: block;
}
.l-header .l-header__nav ul li a {
  display: block;
  color: #c5c7c4;
  font-size: 16px;
  font-weight: 300;
  font-family: "ArizonaFlare";
  line-height: 1.5;
  -webkit-transition: color 0.3s ease, letter-spacing 0.2s ease;
  transition: color 0.3s ease, letter-spacing 0.2s ease;
}
.l-header .l-header__nav ul li a:hover {
  color: #a68340;
  letter-spacing: 0.06em;
}
.l-header .hamburger-fade {
  display: none;
}
.l-header.lower-menu {
  margin: 55px auto 0;
  z-index: 1000;
}
@media (max-width: 1024px) {
  .l-header.lower-menu {
    margin: clamp(0.625rem, -0.833rem + 3.646vw, 1.5rem) auto 0;
  }
}
.l-header.lower-menu .l-header__info {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: 10001;
}
.l-header.lower-menu .l-header__info.active {
  opacity: 1;
  visibility: visible;
  margin-top: 200px;
}
.l-header.lower-menu .l-header__info.active .l-header__logo::after {
  display: none;
}
.l-header.lower-menu .l-header__nav {
  display: none;
}
.l-header.lower-menu .hamburger-fade {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 60px;
  height: 60px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 1000;
  pointer-events: auto;
}
.l-header.lower-menu .hamburger-fade__wrapper {
  position: relative;
  width: 50px;
  height: 22px;
  margin: 20px auto;
}
.l-header.lower-menu .hamburger-fade__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: #c5c7c4;
  -webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.l-header.lower-menu .hamburger-fade__line:nth-child(1) {
  top: 0;
  width: 100%;
}
.l-header.lower-menu .hamburger-fade__line:nth-child(2) {
  top: 9px;
  width: 85%;
}
.l-header.lower-menu .hamburger-fade__line:nth-child(3) {
  top: 18px;
  width: 70%;
}
.l-header.lower-menu .hamburger-fade.active .hamburger-fade__line {
  background-color: #fff;
  width: 100%;
}
.l-header.lower-menu .hamburger-fade.active .hamburger-fade__line:nth-child(1) {
  -webkit-transform: translateY(9px) rotate(45deg);
          transform: translateY(9px) rotate(45deg);
}
.l-header.lower-menu .hamburger-fade.active .hamburger-fade__line:nth-child(2) {
  opacity: 0;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}
.l-header.lower-menu .hamburger-fade.active .hamburger-fade__line:nth-child(3) {
  -webkit-transform: translateY(-9px) rotate(-45deg);
          transform: translateY(-9px) rotate(-45deg);
}
.l-header.top-menu {
  opacity: 0;
}
@media (max-width: 1440px) {
  .l-header.top-menu {
    margin: clamp(0.625rem, -0.833rem + 3.646vw, 1.5rem) auto 0;
    z-index: 1000;
  }
}
@media (max-width: 1440px) {
  .l-header.top-menu .l-header__info {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    z-index: 10001;
  }
}
@media (max-width: 1440px) {
  .l-header.top-menu .l-header__info.active {
    opacity: 1;
    visibility: visible;
    margin-top: 200px;
  }
}
@media (max-width: 1440px) {
  .l-header.top-menu .l-header__info.active .l-header__logo::after {
    display: none;
  }
}
@media (max-width: 1440px) {
  .l-header.top-menu .l-header__nav {
    display: none;
  }
}
@media (max-width: 1440px) {
  .l-header.top-menu .hamburger-fade {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    width: 60px;
    height: 60px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 1000;
    pointer-events: auto;
  }
}
@media (max-width: 1440px) {
  .l-header.top-menu .hamburger-fade__wrapper {
    position: relative;
    width: 50px;
    height: 22px;
    margin: 20px auto;
  }
}
@media (max-width: 1440px) {
  .l-header.top-menu .hamburger-fade__line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: #c5c7c4;
    -webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  }
}
@media (max-width: 1440px) {
  .l-header.top-menu .hamburger-fade__line:nth-child(1) {
    top: 0;
    width: 100%;
  }
}
@media (max-width: 1440px) {
  .l-header.top-menu .hamburger-fade__line:nth-child(2) {
    top: 9px;
    width: 85%;
  }
}
@media (max-width: 1440px) {
  .l-header.top-menu .hamburger-fade__line:nth-child(3) {
    top: 18px;
    width: 70%;
  }
}
@media (max-width: 1440px) {
  .l-header.top-menu .hamburger-fade.active .hamburger-fade__line {
    background-color: #fff;
    width: 100%;
  }
}
@media (max-width: 1440px) {
  .l-header.top-menu .hamburger-fade.active .hamburger-fade__line:nth-child(1) {
    -webkit-transform: translateY(9px) rotate(45deg);
            transform: translateY(9px) rotate(45deg);
  }
}
@media (max-width: 1440px) {
  .l-header.top-menu .hamburger-fade.active .hamburger-fade__line:nth-child(2) {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
}
@media (max-width: 1440px) {
  .l-header.top-menu .hamburger-fade.active .hamburger-fade__line:nth-child(3) {
    -webkit-transform: translateY(-9px) rotate(-45deg);
            transform: translateY(-9px) rotate(-45deg);
  }
}

.modal-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100lvh;
  background-color: #031024;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;
  pointer-events: none;
}
.modal-nav.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.modal-nav__close {
  position: absolute;
  top: 1vw;
  right: 1.5vw;
  color: #c5c7c4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 21px;
  -webkit-transition: color 0.2s ease, letter-spacing 0.3s ease;
  transition: color 0.2s ease, letter-spacing 0.3s ease;
  cursor: pointer;
  pointer-events: auto;
  z-index: 999;
}
@media (max-width: 768px) {
  .modal-nav__close {
    top: 20px;
    right: 4vw;
    font-size: 18px;
  }
}
.modal-nav__close .dli-close {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 1em;
  height: 0.06em;
  margin-left: 0.1em;
  background: currentColor;
  border-radius: 0.1em;
  color: #c5c7c4;
  line-height: 1;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.modal-nav__close .dli-close::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.modal-nav__close:hover {
  color: #a68340;
  letter-spacing: 0.03em;
}
.modal-nav__close:hover .dli-close {
  color: #a68340;
}
.modal-nav__cont {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 60px 120px;
  padding-top: 10.98vw;
  padding-left: 10.98vw;
  width: 100%;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  opacity: 0;
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease, -webkit-transform 0.6s ease;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
@media (max-width: 768px) {
  .modal-nav__cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px 120px;
    padding: 0;
    width: 90%;
    margin: clamp(3.75rem, 3.304rem + 2.232vw, 4.375rem) auto 0;
  }
}
@media (max-width: 480px) {
  .modal-nav__cont {
    gap: 46px;
  }
}
.modal-nav.is-open .modal-nav__cont {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.modal-nav__logo a {
  display: block;
  width: 236px;
  height: auto;
  margin: 0 auto 14px;
  font-family: "ArizonaFlare";
}
@media (max-width: 640px) {
  .modal-nav__logo a {
    width: clamp(11.875rem, 10rem + 9.375vw, 13.75rem);
    margin-bottom: clamp(0.25rem, 0rem + 1.25vw, 0.5rem);
  }
}
.modal-nav__logo a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.modal-nav__logo span {
  color: #ffffff;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.5;
  font-family: "ArizonaFlare";
}
@media (max-width: 640px) {
  .modal-nav__logo span {
    font-size: clamp(0.875rem, 0.688rem + 0.938vw, 1.0625rem);
  }
}
.modal-nav__link {
  color: #ffffff;
  font-family: "ArizonaFlare";
}
@media (max-width: 480px) {
  .modal-nav__link {
    width: 100%;
  }
}
.modal-nav__link--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5em;
  margin-bottom: 50px;
}
.modal-nav__link--list a {
  display: block;
  color: #c5c7c4;
  font-size: 36px;
  font-weight: 300;
  font-family: "ArizonaFlare";
  line-height: 1;
  letter-spacing: 0.02em;
  -webkit-transition: color 0.3s ease, letter-spacing 0.2s ease;
  transition: color 0.3s ease, letter-spacing 0.2s ease;
}
@media (max-width: 768px) {
  .modal-nav__link--list a {
    font-size: clamp(1.75rem, 1.393rem + 1.786vw, 2.25rem);
  }
}
.modal-nav__link--list a:hover {
  color: #a68340;
  letter-spacing: 0.05em;
}
.modal-nav__link--other {
  display: block;
}
.modal-nav__link--other a {
  display: block;
  color: #c5c7c4;
  font-size: 20px;
  font-family: "ArizonaFlare";
  letter-spacing: 0.02em;
  -webkit-transition: color 0.3s ease, letter-spacing 0.2s ease;
  transition: color 0.3s ease, letter-spacing 0.2s ease;
}
@media (max-width: 768px) {
  .modal-nav__link--other a {
    font-size: clamp(1.0625rem, 0.929rem + 0.67vw, 1.25rem);
    line-height: 1.4;
  }
}
.modal-nav__link--other a:hover {
  color: #a68340;
  letter-spacing: 0.05em;
}
.modal-nav__link .c-btn-entry {
  margin-top: 20px;
}
@media (max-width: 480px) {
  .modal-nav__link .c-btn-entry {
    margin-top: 14px;
  }
}
.modal-nav__link .c-btn-entry a {
  width: 100%;
  max-width: 260px;
  height: 40px;
}
@media (max-width: 480px) {
  .modal-nav__link .c-btn-entry a {
    max-width: 100%;
    height: 48px;
    font-size: 17px;
  }
}

/* 各リンクに遅延付きアニメーション（任意） */
.modal-nav__link--list li,
.modal-nav__link--other,
.modal-nav__link .c-btn-entry {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.modal-nav.is-open .modal-nav__link--list li:nth-child(1) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.modal-nav.is-open .modal-nav__link--list li:nth-child(2) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.modal-nav.is-open .modal-nav__link--list li:nth-child(3) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.modal-nav.is-open .modal-nav__link--list li:nth-child(4) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.modal-nav.is-open .modal-nav__link--list li:nth-child(5) {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

.modal-nav.is-open .modal-nav__link--other {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.modal-nav.is-open .c-btn-entry {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}

.modal-nav.is-open .modal-nav__link--list li,
.modal-nav.is-open .modal-nav__link--other,
.modal-nav.is-open .c-btn-entry {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

[data-inview] {
  opacity: 0;
  -webkit-transform: translateY(80px);
          transform: translateY(80px);
}

[data-inview=fade-in] {
  -webkit-transform: none;
          transform: none; /* その場で */
}

.p-kv-hero {
  position: relative;
  width: 100%;
}
.p-kv-hero__main {
  position: absolute;
  inset: 0;
  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;
  z-index: 10;
  pointer-events: none;
}
.p-kv-hero__main--title {
  margin: 0 auto 30px;
  color: #ffffff;
  font-size: 55px;
  font-weight: 300;
  font-family: "ArizonaFlare";
  letter-spacing: 0.01em;
  word-break: keep-all;
  line-height: 1;
  pointer-events: auto;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 768px) {
  .p-kv-hero__main--title {
    margin: 0 auto 0.6em;
    font-size: min(8.2vw, 46px);
  }
}
.p-kv-hero__main--title .char {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  display: inline-block;
}
.p-kv-hero__main--subtitle {
  color: #c5c7c4;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.06em;
  pointer-events: auto;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
@media (max-width: 768px) {
  .p-kv-hero__main--subtitle {
    font-size: min(3.6vw, 20px);
  }
}
.p-kv-hero__main--aboutbtn {
  display: block;
  margin: min(56px, 5.1vw) auto 0;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
@media (max-width: 768px) {
  .p-kv-hero__main--aboutbtn {
    margin: min(10.25vw, 50px) auto 0;
  }
}
.p-kv-hero__main--aboutbtn a {
  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: 191px;
  height: 34px;
  border: solid 1px #c5c7c4;
  color: #c5c7c4;
  font-size: 16px;
  font-weight: 400;
  font-family: "ArizonaFlare";
  -webkit-transition: color 0.3s ease, background-color 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease;
  pointer-events: auto;
}
@media (max-width: 768px) {
  .p-kv-hero__main--aboutbtn a {
    font-size: 15px;
  }
}
.p-kv-hero__main--aboutbtn a:hover {
  background-color: #c5c7c4;
  color: #00263d;
}
.p-kv-hero__slider .swiper-hero {
  position: relative;
  width: 100vw;
  height: 100svh;
  background-color: #00263d;
  z-index: 1;
}
.p-kv-hero__slider .swiper-hero .swiper-slide {
  position: relative;
  width: 100%;
}
.p-kv-hero__slider .swiper-hero .swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(3, 16, 36, 0.6);
  z-index: 2;
}
.p-kv-hero__slider .swiper-hero .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-kv-hero .p-kv-hero__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 16px;
  opacity: 0;
}
.p-kv-hero .p-kv-hero__pagination .swiper-pagination-bullet {
  position: relative;
  width: 50px;
  height: 1px;
  background-color: #c5c7c4;
  border-radius: 0;
  opacity: 1;
  overflow: hidden;
}
@media (max-width: 768px) {
  .p-kv-hero .p-kv-hero__pagination .swiper-pagination-bullet {
    width: 40px;
  }
}
.p-kv-hero .p-kv-hero__pagination .swiper-pagination-bullet-active {
  background-color: #c5c7c4;
}
.p-kv-hero .p-kv-hero__pagination .swiper-pagination-bullet-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #a6833f;
  -webkit-animation: progressBar var(--autoplay-duration, 4200ms) linear forwards;
          animation: progressBar var(--autoplay-duration, 4200ms) linear forwards;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  width: 100%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
}
@-webkit-keyframes progressBar {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@keyframes progressBar {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
.p-kv-hero .swiper-pagination.p-kv-hero__pagination {
  bottom: min(35px, 2.56vw);
}
@media (max-width: 768px) {
  .p-kv-hero .swiper-pagination.p-kv-hero__pagination {
    bottom: min(8.72vw, 46px);
  }
}
.p-kv-hero .scroll-indicator {
  position: absolute;
  top: 50%;
  right: min(40px, 6.25vw);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 300px;
  width: 1px;
  z-index: 99;
  opacity: 0;
}
@media (max-width: 640px) {
  .p-kv-hero .scroll-indicator {
    display: none;
  }
}
.p-kv-hero .scroll-indicator::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.3); /* グレー線 */
}
.p-kv-hero .scroll-indicator::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px; /* オレンジ線の長さ */
  background-color: #e0aa3e;
  -webkit-animation: scrollLineMove 2s infinite;
          animation: scrollLineMove 2s infinite;
}
@-webkit-keyframes scrollLineMove {
  0% {
    top: 0;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    top: 270px; /* height(300) - height(30) */
    opacity: 1;
  }
  100% {
    top: 270px;
    opacity: 0;
  }
}
@keyframes scrollLineMove {
  0% {
    top: 0;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    top: 270px; /* height(300) - height(30) */
    opacity: 1;
  }
  100% {
    top: 270px;
    opacity: 0;
  }
}

.c-countdown {
  display: block;
  width: 100%;
  background-color: #08202c;
}
.c-countdown__cont {
  width: 96%;
  max-width: 1000px;
  margin: 0 auto;
  color: #ffffff;
  padding: 44px 0 66px;
}
@media (max-width: 480px) {
  .c-countdown__cont {
    padding: 40px 0 56px;
  }
}
.c-countdown__cont p {
  color: #c5c7c4;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 12px;
  text-align: center;
}
.c-countdown__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 50px;
}
.c-countdown__wrap--item {
  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;
  width: 3rem;
  font-size: 57px;
  line-height: 1;
  font-family: "ArizonaFlare";
  font-weight: 300;
}
@media (max-width: 640px) {
  .c-countdown__wrap--item {
    font-size: 48px;
    width: 2.8rem;
  }
}
@media (max-width: 480px) {
  .c-countdown__wrap--item {
    font-size: min(38px, 10.13vw);
    width: 2.2rem;
  }
}
.c-countdown__wrap--item span {
  display: block;
  margin-top: 11px;
  font-size: 12px;
  font-weight: 400;
}
.c-countdown__timer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
.c-countdown__timer .c-countdown__wrap--item:nth-child(2)::before {
  content: ":";
  position: absolute;
  top: 0;
  left: -32px;
}
.c-countdown__timer .c-countdown__wrap--item:nth-child(2)::after {
  content: ":";
  position: absolute;
  top: 0;
  right: -32px;
}

.cont-wrapper .l-inner {
  position: relative;
  width: 92%;
  max-width: 876px;
  margin: 0 auto;
  padding: 80px 0;
  z-index: 1;
}
@media (max-width: 768px) {
  .cont-wrapper .l-inner {
    width: 88%;
  }
}
@media (max-width: 480px) {
  .cont-wrapper .l-inner {
    padding: 70px 0;
  }
}
.cont-wrapper .l-inner.c-grid-inner {
  display: grid;
  grid-template-columns: 1fr 630px;
  gap: 30px 20px;
}
@media (max-width: 928px) {
  .cont-wrapper .l-inner.c-grid-inner {
    grid-template-columns: auto;
  }
}
.cont-wrapper .c-sec-title {
  color: #c5c7c4;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .cont-wrapper .c-sec-title {
    text-align: center;
  }
}
.cont-wrapper .c-sec-title span {
  display: block;
}
.cont-wrapper .c-sec-title .ja {
  font-size: 23px;
  font-weight: 400;
  line-height: 1;
}
.cont-wrapper .c-sec-title .ja + .en {
  margin-top: 20px;
}
@media (max-width: 928px) {
  .cont-wrapper .c-sec-title .ja + .en {
    margin-top: 10px;
  }
}
.cont-wrapper .c-sec-title .en {
  font-size: 15px;
  font-weight: 300;
  font-family: "ArizonaFlare";
  line-height: 1;
}
.cont-wrapper .c-sec-title.u-clr-bk {
  color: #08202c;
}
.cont-wrapper .c-sec-title.u-clr-wh {
  color: #ffffff;
}
.cont-wrapper .c-sec-title.c-sec-title__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 50px;
}
@media (max-width: 640px) {
  .cont-wrapper .c-sec-title.c-sec-title__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
  }
}

/* FAQ */
.c-faq {
  position: relative;
  background-color: #142033;
  color: #ffffff;
  font-weight: 400;
  z-index: 1;
}
.c-faq .c-faq__acd .c-faq__item {
  position: relative;
  padding: 30px 0;
  border-bottom: solid 1px #4b4b4b;
}
@media (max-width: 768px) {
  .c-faq .c-faq__acd .c-faq__item {
    padding: 1.5rem 0;
  }
}
.c-faq .c-faq__acd .c-faq__item:first-child {
  padding: 0 0 30px;
}
@media (max-width: 768px) {
  .c-faq .c-faq__acd .c-faq__item:first-child {
    padding: 0 0 1.5rem;
  }
}
.c-faq .c-faq__acd .c-faq__item--ques {
  position: relative;
  color: #c5c7c4;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .c-faq .c-faq__acd .c-faq__item--ques {
    padding-right: 2em;
  }
}
@media (max-width: 480px) {
  .c-faq .c-faq__acd .c-faq__item--ques {
    font-size: 14px;
  }
}
.c-faq .c-faq__acd .c-faq__item--ques::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url("../img/icon-arrow-acd.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 18px;
  height: 9px;
}
.c-faq .c-faq__acd .c-faq__item--ques.is-open::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.c-faq .c-faq__acd .c-faq__item--ans {
  overflow: hidden;
  max-height: 0;
  margin-top: 0;
  -webkit-transition: max-height 0.3s ease, margin 0.3s ease;
  transition: max-height 0.3s ease, margin 0.3s ease;
  font-size: 14px;
  line-height: 1.9;
}
.c-faq .c-faq__acd .c-faq__item--ans.is-open {
  margin-top: 18px;
}
@media (max-width: 768px) {
  .c-faq .c-faq__acd .c-faq__item--ans.is-open {
    margin-top: 1rem;
  }
}
.c-faq .c-faq__acd .c-faq__item--ans p {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  word-break: break-all;
}
.c-faq .c-faq__acd .c-faq__item--ans p.c-indent {
  text-indent: -4.8em;
  padding-left: 4.8em;
}
.c-faq .c-faq__acd .c-faq__item--ans p a {
  color: #a68340;
  text-decoration: underline;
}
.c-faq .c-faq__acd .c-faq__item--ans p + p {
  margin-top: 1rem;
}

/* message */
.c-message {
  position: relative;
  background-image: url(../img/bg-message_001.jpg?v=2);
  background-image: url(https://r-yacht.jp/pre-recruit/wp-content/uploads/2025/06/bg-message_001.jpg);
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  color: #08202c;
  font-weight: 400;
}
.c-message::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(8, 34, 51, 0.45);
}
.c-message .c-message__txt {
  color: #ffffff;
  font-size: 13px;
  line-height: 2;
  text-align: justify;
}
.c-message .c-message__txt + .c-message__txt {
  margin-top: 1em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* news */
.c-news {
  position: relative;
  background-image: url(../img/bg-news.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  font-weight: 400;
}
.c-news::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(3, 16, 36, 0.78);
}
.c-news .c-news__list > p {
  color: #ffffff;
  font-size: 14px;
}
@media (max-width: 768px) {
  .c-news .c-news__list > p {
    text-align: center;
  }
}
.c-news .c-news__list a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px 1em;
  padding: 18px 40px 18px 0;
  color: #c5c7c4;
  font-size: 14px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#4b4b4b), to(#4b4b4b));
  background-image: linear-gradient(#4b4b4b, #4b4b4b);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 100% 1px;
}
@media (max-width: 480px) {
  .c-news .c-news__list a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-news .c-news__list a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  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;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url(../img/icon-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 20px;
  height: 20px;
}
@media (max-width: 640px) {
  .c-news .c-news__list a::before {
    top: initial;
    bottom: 18px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.c-news .c-news__list a::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#ffffff));
  background-image: linear-gradient(#ffffff, #ffffff);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 0 1px;
  -webkit-transition: background-size 0.4s;
  transition: background-size 0.4s;
}
.c-news .c-news__list a:hover::after {
  background-position: bottom left; /* 下線のホバー時位置 */
  background-size: 100% 1px; /* 下線の横幅を100%にする */
}
.c-news .c-news__list a.no-link {
  pointer-events: none;
}
.c-news .c-news__list a.no-link::before {
  display: none;
}
.c-news .c-news__list a .news-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  width: 5.8em;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
.c-news .c-news__list a .news-title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-news .c-news__list .c-news__list--item:first-child a {
  padding: 0 40px 18px 0;
}
.c-news .c-news__list .c-news__list--item:first-child a::before {
  content: "";
  top: 0;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
}
@media (max-width: 640px) {
  .c-news .c-news__list .c-news__list--item:first-child a::before {
    top: initial;
  }
}

/* interview */
.c-interview {
  background-color: #142033;
  color: #ffffff;
  font-weight: 400;
}
.c-interview .p-interview-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 40px clamp(2.5rem, -3.707rem + 12.931vw, 4.375rem);
}
@media (max-width: 640px) {
  .c-interview .p-interview-list {
    grid-template-columns: auto;
  }
}
.c-interview .p-interview-list__item {
  width: 100%;
}
.c-interview .p-interview-list__item a {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 40px;
  border-top: solid 1px #4b4b4b;
}
.c-interview .p-interview-list__item--thumb {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 40px;
}
.c-interview .p-interview-list__item--thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #7b7b7b;
  mix-blend-mode: color;
  -webkit-transition: background-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, background-color 0.2s ease;
  transition: transform 0.2s ease, background-color 0.2s ease, -webkit-transform 0.2s ease;
}
.c-interview .p-interview-list__item--thumb img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-interview .p-interview-list__item--title {
  margin-bottom: 30px;
  color: #ffffff;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.06em;
}
.c-interview .p-interview-list__item--card {
  position: relative;
  color: #ffffff;
  font-size: 12px;
  padding-right: 2rem;
}
.c-interview .p-interview-list__item--card::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  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;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../img/icon-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 20px;
  height: 20px;
}
.c-interview .p-interview-list__item--card span {
  display: block;
  letter-spacing: 0.02em;
}
.c-interview .p-interview-list__item.p-cs {
  position: relative;
}
.c-interview .p-interview-list__item.p-cs a {
  min-height: 370px;
}
@media (max-width: 640px) {
  .c-interview .p-interview-list__item.p-cs a {
    min-height: auto;
  }
}
.c-interview .p-interview-list__item.p-cs .p-cs__window {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.c-interview .p-interview-list__item.p-cs .p-cs__window--bg {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  mix-blend-mode: color;
  z-index: 1;
}
.c-interview .p-interview-list__item.p-cs .p-cs__window--txt {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 53%;
  text-shadow: 0px 0px 3px #393939;
}
@media (max-width: 640px) {
  .c-interview .p-interview-list__item.p-cs .p-cs__window--txt {
    height: 100%;
  }
}
.c-interview .p-interview-list__item.p-cs .p-cs__window--txt span {
  display: block;
  line-height: 1;
}
.c-interview .p-interview-list__item.p-cs .p-cs__window--txt span.en {
  font-size: 20px;
  font-weight: 300;
  font-family: "ArizonaFlare";
  letter-spacing: 0.06em;
}
.c-interview .p-interview-list__item.p-cs .p-cs__window--txt span.ja {
  margin-top: 0.5rem;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.06em;
}

/* Photo gallery */
.c-photo-gallery {
  background-color: #031024;
  color: #ffffff;
  font-weight: 400;
  overflow: hidden;
}
.c-photo-gallery .c-photo-gallery__cont {
  padding-bottom: 110px;
}
@media (max-width: 768px) {
  .c-photo-gallery .c-photo-gallery__cont {
    padding-bottom: min(12.82vw, 80px);
  }
}
.c-photo-gallery__empty {
  position: relative;
  width: 92%;
  max-width: 876px;
  margin: 0 auto;
  z-index: 1;
}
@media (max-width: 768px) {
  .c-photo-gallery__empty {
    width: 88%;
  }
}
.c-photo-gallery__empty p {
  color: #c5c7c4;
  font-size: 14px;
  text-align: center;
  letter-spacing: 0.06em;
}
.c-photo-gallery__empty p .en {
  display: block;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 0.5em;
}
@media (max-width: 768px) {
  .c-photo-gallery__empty p .en {
    font-size: clamp(1.3125rem, 1.179rem + 0.67vw, 1.5rem);
  }
}
.c-photo-gallery__slider {
  width: 100vw;
  margin-top: 70px;
  margin-left: calc(-50vw + 50%);
}
@media (max-width: 768px) {
  .c-photo-gallery__slider {
    margin-top: 40px;
  }
}
.c-photo-gallery .swiper-gallery {
  width: 100%;
  cursor: pointer;
}
@media (max-width: 640px) {
  .c-photo-gallery .swiper-gallery {
    width: 90%;
  }
}
.c-photo-gallery .swiper-gallery .swiper-slide a {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.c-photo-gallery .swiper-gallery .swiper-slide a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.c-photo-gallery .swiper-button-prev.gallery-prev {
  position: relative;
  right: initial;
  left: initial;
  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;
  margin: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  background-image: url(../img/icon-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 20px;
  height: 20px;
}
.c-photo-gallery .swiper-button-next.gallery-next {
  position: relative;
  right: initial;
  left: initial;
  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;
  margin: 0;
  background-image: url(../img/icon-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 20px;
  height: 20px;
}

/* 下層共通 */
.c-lower-header {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-image: url("../img/bg_lower-header-about.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 365px;
  z-index: 2;
}
@media (max-width: 768px) {
  .c-lower-header {
    height: min(65.625vw, 350px);
  }
}
.c-lower-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(3, 16, 36, 0.6);
}
.c-lower-header.about {
  background-image: url("../img/bg_lower-header-about.jpg");
}
.c-lower-header.message {
  background-image: url("../img/bg_lower-header-message.jpg");
}
.c-lower-header.message::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 38, 61, 0.7);
}
.c-lower-header.interview {
  background-image: url("../img/bg_lower-header-interview.jpg");
}
.c-lower-header.news {
  background-image: url("../img/bg_lower-header-news.jpg");
}
.c-lower-header.entry {
  background-image: url("../img/bg_lower-header-apply.jpg");
}
.c-lower-header__inner {
  position: relative;
  width: 96%;
  max-width: 1000px;
  margin: 0 auto;
}
.c-lower-header__title {
  color: #ffffff;
  text-align: center;
}
.c-lower-header__title span {
  display: block;
  line-height: 1;
}
.c-lower-header__title .ja {
  font-size: 35px;
  font-weight: 400;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .c-lower-header__title .ja {
    font-size: min(6.153vw, 34px);
  }
}
.c-lower-header__title .en {
  margin-top: 20px;
  color: #c5c7c4;
  font-size: 20px;
  font-weight: 300;
  font-family: "ArizonaFlare";
  letter-spacing: 0.01em;
}
@media (max-width: 768px) {
  .c-lower-header__title .en {
    margin-top: 0.9em;
    font-size: min(4.358vw, 19px);
  }
}

.l-breadcrumbs {
  position: absolute;
  left: 0;
  bottom: -24px;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  width: 100%;
}
@media (max-width: 768px) {
  .l-breadcrumbs {
    bottom: -16px;
  }
}
@media (max-width: 640px) {
  .l-breadcrumbs {
    bottom: -12px;
  }
}
.l-breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 96%;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .l-breadcrumbs__list {
    width: 88%;
  }
}
.l-breadcrumbs__list--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-breadcrumbs__list--item a {
  color: #c5c7c4;
  font-size: 16px;
  font-weight: 300;
  font-family: "ArizonaFlare";
  letter-spacing: 0.01em;
}
.l-breadcrumbs__list--item:not(:last-child)::after {
  content: "";
  display: block;
  width: 4px;
  height: 8px;
  margin-left: 0.8rem;
  margin-right: 0.8rem;
  background: url(../img/all_breadcrumb_arrow.svg) no-repeat center top/cover;
}
.l-breadcrumbs__list--item .ja {
  color: #c5c7c4;
  font-size: 14px;
  font-weight: 400;
  font-family: "Noto Serif JP", serif, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.01em;
}

.c-lower-cont {
  position: relative;
  padding: 150px 0 80px;
  background-color: #142033;
  z-index: 1;
}
@media (max-width: 768px) {
  .c-lower-cont {
    padding: clamp(4.625rem, 1.679rem + 14.732vw, 8.75rem) 0 clamp(4.375rem, 3.929rem + 2.232vw, 5rem);
  }
}
.c-lower-cont.bg-002 {
  background-color: #00263d;
}
.c-lower-cont > section {
  width: 92%;
  max-width: 876px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .c-lower-cont > section {
    width: 88%;
  }
}

.c-txt-box {
  width: 100%;
  margin: 0 auto;
}
.c-txt-box .c-txt-box__cont > * {
  color: #ffffff;
  font-weight: 400;
}
.c-txt-box .c-txt-box__cont h2 {
  position: relative;
  font-size: 19px;
  letter-spacing: 0.06em;
  line-height: 1.6;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media (max-width: 768px) {
  .c-txt-box .c-txt-box__cont h2 {
    padding-top: 1rem;
    font-size: clamp(1rem, 0.911rem + 0.446vw, 1.125rem);
  }
}
.c-txt-box .c-txt-box__cont h2::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 0.5lh;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  width: 1.5em;
  height: 1px;
  background-color: #a68340;
}
@media (max-width: 768px) {
  .c-txt-box .c-txt-box__cont h2::before {
    left: 0;
    top: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    width: 2.5em;
  }
}
.c-txt-box .c-txt-box__cont p {
  font-size: 14px;
  letter-spacing: 0.01em;
  line-height: 1.8;
  letter-spacing: 0.02em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: justify;
}
.c-txt-box .c-txt-box__cont p sup {
  font-size: 0.6em;
}
.c-txt-box .c-txt-box__cont p.note {
  position: relative;
  font-size: 12px;
  padding-left: 1.2em;
}
.c-txt-box .c-txt-box__cont p.note::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 12px;
}
.c-txt-box .c-txt-box__cont p.note + .note {
  margin-top: 0.5em;
}
.c-txt-box .c-txt-box__cont h2 + p {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .c-txt-box .c-txt-box__cont h2 + p {
    margin-top: 1.5em;
  }
}
.c-txt-box .c-txt-box__cont p + p {
  margin-top: 1.5em;
}
.c-txt-box .c-txt-box__cont.c-outline {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 30px 20px;
}
@media (max-width: 768px) {
  .c-txt-box .c-txt-box__cont.c-outline {
    grid-template-columns: auto;
    gap: 1.5em;
  }
}

.c-outline__table {
  width: 100%;
}
.c-outline__table dl {
  display: grid;
  grid-template-columns: 160px 1fr;
  padding: 7px 1.5em;
  font-size: 14px;
  border-bottom: solid 1px #4b4b4b;
}
@media (max-width: 640px) {
  .c-outline__table dl {
    padding: 7px 1.2em;
    grid-template-columns: 7rem 1fr;
  }
}
.c-outline__table dl:first-child {
  border-top: solid 1px #4b4b4b;
}
.c-outline__table dl dt {
  font-weight: 500;
  letter-spacing: 0.02em;
}
.c-outline__table dl dd {
  font-weight: 400;
  letter-spacing: 0.02em;
}

.trans-txt-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .trans-txt-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}
.trans-txt-box .trans-txt-box__en > * {
  color: #ffffff;
  font-weight: 300;
  font-family: "ArizonaFlare";
}
.trans-txt-box .trans-txt-box__en h2 {
  position: relative;
  font-size: 19px;
  letter-spacing: 0.06em;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .trans-txt-box .trans-txt-box__en h2 {
    padding-top: 20px;
    font-size: clamp(1.0625rem, 0.973rem + 0.446vw, 1.1875rem);
  }
}
.trans-txt-box .trans-txt-box__en h2::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 0.5lh;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  width: 1.5em;
  height: 1px;
  background-color: #a68340;
}
@media (max-width: 768px) {
  .trans-txt-box .trans-txt-box__en h2::before {
    left: 0;
    top: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    width: 2em;
  }
}
.trans-txt-box .trans-txt-box__en p {
  font-size: 16px;
  letter-spacing: 0.01em;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .trans-txt-box .trans-txt-box__en p {
    font-size: clamp(0.9375rem, 0.893rem + 0.223vw, 1rem);
  }
}
.trans-txt-box .trans-txt-box__en h2 + p {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .trans-txt-box .trans-txt-box__en h2 + p {
    margin-top: 1.5em;
  }
}
.trans-txt-box .trans-txt-box__en p + p {
  margin-top: 1.5em;
}
.trans-txt-box .trans-txt-box__ja > * {
  color: #ffffff;
  font-weight: 400;
}
.trans-txt-box .trans-txt-box__ja h2 {
  position: relative;
  font-size: 19px;
  letter-spacing: 0.06em;
  line-height: 1.6;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media (max-width: 768px) {
  .trans-txt-box .trans-txt-box__ja h2 {
    font-size: clamp(1rem, 0.911rem + 0.446vw, 1.125rem);
  }
}
.trans-txt-box .trans-txt-box__ja p {
  font-size: 14px;
  letter-spacing: 0.01em;
  line-height: 1.8;
  letter-spacing: 0.06em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.trans-txt-box .trans-txt-box__ja h2 + p {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .trans-txt-box .trans-txt-box__ja h2 + p {
    margin-top: 1.5em;
  }
}
.trans-txt-box .trans-txt-box__ja p + p {
  margin-top: 1.5em;
}

.c-eye_cat {
  position: relative;
  width: 100%;
}
@media (max-width: 640px) {
  .c-eye_cat {
    width: 100%;
    height: 100%;
    aspect-ratio: 9/7;
  }
}
.c-eye_cat::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(8, 32, 44, 0.25);
}
@media (max-width: 640px) {
  .c-eye_cat picture {
    height: 100%;
  }
}
.c-eye_cat img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 640px) {
  .c-eye_cat img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.c-eye_cat__name {
  position: absolute;
  left: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 14px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 24px 30px;
  background-color: rgba(255, 255, 255, 0.45);
}
@media (max-width: 768px) {
  .c-eye_cat__name {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    padding: min(4.375vw, 20px) 1em;
  }
}
@media (max-width: 640px) {
  .c-eye_cat__name {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 9px 14px;
    padding: 10px 1em;
  }
}
.c-eye_cat__name .post {
  color: #031024;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
}
@media (max-width: 768px) {
  .c-eye_cat__name .post {
    font-size: min(3.75vw, 15px);
  }
}
@media (max-width: 640px) {
  .c-eye_cat__name .post {
    width: 100%;
  }
}
.c-eye_cat__name .ja_name {
  color: #031024;
  font-size: 19px;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 768px) {
  .c-eye_cat__name .ja_name {
    font-size: min(4.6875vw, 18px);
    font-weight: 600;
  }
}
.c-eye_cat__name .en_name {
  color: #031024;
  font-size: 11px;
  font-weight: 300;
  font-family: "ArizonaFlare";
  line-height: 1;
}

.c-txt-box + .c-txt-box {
  margin-top: 90px;
}
@media (max-width: 768px) {
  .c-txt-box + .c-txt-box {
    margin-top: min(10.25vw, 80px);
  }
}

.c-txt-box + .c-eye_cat {
  margin-top: 90px;
}
@media (max-width: 768px) {
  .c-txt-box + .c-eye_cat {
    margin-top: min(10.25vw, 80px);
  }
}

.trans-txt-box + .c-eye_cat {
  margin-top: 90px;
}
@media (max-width: 768px) {
  .trans-txt-box + .c-eye_cat {
    margin-top: min(10.25vw, 80px);
  }
}

.c-eye_cat + .c-txt-box {
  margin-top: 90px;
}
@media (max-width: 768px) {
  .c-eye_cat + .c-txt-box {
    margin-top: min(10.25vw, 80px);
  }
}

.c-eye_cat + .trans-txt-box {
  margin-top: 90px;
}
@media (max-width: 768px) {
  .c-eye_cat + .trans-txt-box {
    margin-top: min(10.25vw, 80px);
  }
}

.c-eye_cat + .interview-txt-box {
  margin-top: 90px;
}
@media (max-width: 768px) {
  .c-eye_cat + .interview-txt-box {
    margin-top: min(10.25vw, 80px);
  }
}

/* 下層 interview */
.interview-txt-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 50px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .interview-txt-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.interview-txt-box + .interview-txt-box {
  margin-top: 90px;
}
@media (max-width: 768px) {
  .interview-txt-box + .interview-txt-box {
    margin-top: min(10.25vw, 80px);
  }
}
.interview-txt-box__thumb {
  position: relative;
  width: 50%;
}
@media (max-width: 768px) {
  .interview-txt-box__thumb {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.interview-txt-box__thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(8, 32, 44, 0.25);
}
.interview-txt-box__thumb img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.interview-txt-box__txtarea {
  position: relative;
  width: 50%;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media (max-width: 768px) {
  .interview-txt-box__txtarea {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.interview-txt-box__txtarea h3 {
  position: relative;
  color: #b0b9bf;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .interview-txt-box__txtarea h3 {
    padding-top: 1em;
    font-size: clamp(1rem, 0.955rem + 0.223vw, 1.0625rem);
  }
}
.interview-txt-box__txtarea p {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.8;
  text-align: justify;
}
.interview-txt-box__txtarea h3 + p {
  margin-top: 30px;
}
@media (max-width: 768px) {
  .interview-txt-box__txtarea h3 + p {
    margin-top: clamp(1.25rem, 0.804rem + 2.232vw, 1.875rem);
  }
}
.interview-txt-box__txtarea p + p {
  margin-top: 1.5rem;
}

/* entry */
.entry-form__comp-txt {
  margin-bottom: 0.5em;
  color: #ffffff;
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.04em;
}
.entry-form__txt {
  color: #ffffff;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-align: center;
}
@media (max-width: 768px) {
  .entry-form__txt {
    font-size: min(4.6875vw, 16px);
  }
}
.entry-form__txt + .entry-form__txt {
  margin-top: 1em;
}
.entry-form form .wpcf7-response-output {
  padding: 0.5em 1em;
  border-color: #ff0000 !important;
  color: #ff0000 !important;
  font-weight: 500;
  text-align: center;
}
.entry-form .wpcf7-radio span + span {
  margin-left: 0.8em;
}

.p-newsletter {
  margin-top: 50px;
  text-align: center;
}
.p-newsletter h3 {
  margin-bottom: 0.5em;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
}
.p-newsletter p {
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0.06em;
}
.p-newsletter__register {
  margin-top: 1em;
}

.l-form-entry {
  display: block;
  margin-top: 70px;
}
@media (max-width: 768px) {
  .l-form-entry {
    margin-top: min(6.25vw, 60px);
  }
}
.l-form-entry__item {
  display: grid;
  grid-template-columns: clamp(12.5rem, -12.328rem + 51.724vw, 20rem) 1fr;
  padding: 32px 0;
  background-image: linear-gradient(to right, #919191 2px, transparent 2px);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
@media (max-width: 640px) {
  .l-form-entry__item {
    grid-template-columns: auto;
    gap: 8px;
    padding: min(7.5vw, 32px) 0;
  }
}
.l-form-entry__item:not(:has(~ .l-form-entry__item)) {
  background-image: none;
}
.l-form-entry__item label {
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.06em;
}
.l-form-entry__item label .ico-any {
  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;
  margin-left: 0.3em;
  padding: 0 0.5em;
  font-size: 13px;
  background-color: #575757;
}
.l-form-entry__item p {
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.06em;
}
.l-form-entry__item p a {
  color: #ffffff;
  text-decoration: underline;
}
.l-form-entry__item p.note {
  font-size: 13px;
}
.l-form-entry__item input[type=text], .l-form-entry__item input[type=email], .l-form-entry__item select {
  width: 100%;
  height: 1.2lh;
  padding: 0.1em 0.3em;
  margin: 0;
  border: 1px solid #ccc;
  border-radius: 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 15px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .l-form-entry__item input[type=text], .l-form-entry__item input[type=email], .l-form-entry__item select {
    height: 1.4lh;
  }
}
.l-form-entry__item input[type=text]:focus, .l-form-entry__item input[type=email]:focus, .l-form-entry__item select:focus {
  border-color: #007bff;
  border-radius: 2px;
  outline: none;
}
.l-form-entry__item textarea {
  width: 100% !important;
  max-width: 100%;
  min-height: 6lh !important;
  padding: 0.1em 0.3em;
  margin: 0;
  border: 1px solid #ccc;
  border-radius: 2px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 15px;
  font-weight: 400;
}
.l-form-entry__item .wpcf7-list-item {
  margin: 0 auto 1em;
}
.l-form-entry__item .wpcf7-list-item input[type=checkbox] {
  position: relative;
  width: 1.5em;
  height: 1.5em;
  top: 0.24lh;
}
.l-form-entry__btn {
  margin-top: 30px;
}
.l-form-entry__btn input[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 300px;
  height: 55px;
  margin: 0 auto;
  background-color: #a68340;
  border: solid 1px #a68340;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}
.l-form-entry__btn input[type=submit]:disabled {
  background-color: #626262;
  border: solid 1px #626262;
  color: #bebebe;
}
.l-form-entry__btn input[type=submit]:hover {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}

/* news一覧 */
.p-news-cat__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 20px;
  width: 100%;
}
@media (max-width: 640px) {
  .p-news-cat__item {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
  }
}
.p-news-cat__item li a {
  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: 140px;
  height: 2em;
  border: solid 1px #c5c7c4;
  color: #c5c7c4;
  font-size: 14px;
  font-weight: 400;
  -webkit-transition: color 0.2s ease, background-color 0.2s ease;
  transition: color 0.2s ease, background-color 0.2s ease;
}
@media (max-width: 640px) {
  .p-news-cat__item li a {
    width: 100%;
    height: 2.4em;
    font-size: 15px;
  }
}
.p-news-cat__item li a:hover {
  color: #08202c;
  background-color: #c5c7c4;
}
.p-news-cat__item li a.is-current {
  color: #08202c;
  background-color: #c5c7c4;
}

.c-lower-news {
  display: block;
  margin-top: 50px;
}
@media (max-width: 640px) {
  .c-lower-news {
    margin-top: 30px;
  }
}
.c-lower-news > p {
  color: #ffffff;
  font-size: 14px;
  text-align: center;
}
.c-lower-news__item {
  width: 100%;
}
.c-lower-news__item > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px 40px;
  color: #ffffff;
  padding: 32px 0;
  border-bottom: solid 1px #4b4b4b;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
@media (max-width: 640px) {
  .c-lower-news__item > a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px 40px;
  }
}
.c-lower-news__item--thumb {
  position: relative;
  width: 168px;
  aspect-ratio: 168/113;
  overflow: hidden;
}
@media (max-width: 640px) {
  .c-lower-news__item--thumb {
    width: 100%;
  }
}
.c-lower-news__item--thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #7b7b7b;
  mix-blend-mode: color;
  -webkit-transition: background-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, background-color 0.2s ease;
  transition: transform 0.2s ease, background-color 0.2s ease, -webkit-transform 0.2s ease;
}
.c-lower-news__item--thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-lower-news__item--info {
  width: calc(100% - 168px);
}
@media (max-width: 640px) {
  .c-lower-news__item--info {
    width: 100%;
  }
}
.c-lower-news__item--info .c-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  gap: 10px 24px;
  margin-bottom: 1rem;
}
@media (max-width: 640px) {
  .c-lower-news__item--info .c-box {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
}
.c-lower-news__item--info .c-box .u-cat {
  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: 140px;
  height: 2em;
  border: solid 1px #c5c7c4;
  color: #c5c7c4;
  font-size: 14px;
  font-weight: 400;
}
@media (max-width: 640px) {
  .c-lower-news__item--info .c-box .u-cat {
    font-size: 15px;
  }
}
.c-lower-news__item--info .c-box .u-date {
  color: #ffffff;
  font-size: 14px;
  font-weight: 300;
  font-family: "ArizonaFlare";
}
@media (max-width: 640px) {
  .c-lower-news__item--info .c-box .u-date {
    font-size: 15px;
  }
}
.c-lower-news__item--info .u-news-title {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.6;
}
.c-lower-news__item > a:hover {
  background-color: #152439;
}
.c-lower-news__item > a:hover .c-lower-news__item--thumb::before {
  background-color: rgba(123, 123, 123, 0);
}

/* 404ページ */
.p-not-found {
  position: relative;
  color: #fff;
  z-index: 3;
}
.p-not-found h2 {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 36px;
  font-weight: 300;
  font-family: "ArizonaFlare";
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.03em;
  line-height: 1;
}
@media (max-width: 768px) {
  .p-not-found h2 {
    margin-bottom: 1rem;
    font-size: min(7.5vw, 32px);
  }
}
.p-not-found h2 .large {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 210px;
  line-height: 1;
}
@media (max-width: 768px) {
  .p-not-found h2 .large {
    font-size: min(40.625vw, 180px);
  }
}
.p-not-found p {
  display: block;
  margin: 0 auto;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 480px) {
  .p-not-found p {
    font-size: 14px;
  }
}
.p-not-found p.p-not-found__jp {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 2em;
}

.c-lower-cont.error {
  position: relative;
  width: 100%;
  height: auto;
  padding: 150px 0 150px;
  background-image: url(../img/bg-404.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 480px) {
  .c-lower-cont.error {
    padding: 120px 0;
  }
}
.c-lower-cont.error::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(3, 16, 36, 0.6);
  z-index: 2;
}

/* ポリシー */
.l-policy .l-policy__box {
  color: #fff;
}
.l-policy .l-policy__box + .l-policy__box {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .l-policy .l-policy__box + .l-policy__box {
    margin-top: min(10vw, 40px);
  }
}
.l-policy .l-policy__box h2 {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .l-policy .l-policy__box h2 {
    font-size: clamp(1.1875rem, 1.098rem + 0.446vw, 1.3125rem);
  }
}
.l-policy .l-policy__box h3 {
  position: relative;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.6;
  padding-left: 0.2em;
}
.l-policy .l-policy__box h3::before {
  content: "";
  position: absolute;
  top: 0.18lh;
  left: 0;
  width: 5px;
  height: 1em;
  background-color: #ffffff;
}
.l-policy .l-policy__box p {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.7;
}
@media (max-width: 480px) {
  .l-policy .l-policy__box p {
    font-size: 14px;
  }
}
.l-policy .l-policy__box a {
  color: #a68340;
  text-decoration: underline;
}
.l-policy .l-policy__box ul, .l-policy .l-policy__box ol {
  font-size: 15px;
  margin: 0;
}
.l-policy .l-policy__box ul li, .l-policy .l-policy__box ol li {
  margin-left: 1em;
}
.l-policy .l-policy__box ul li + li, .l-policy .l-policy__box ol li + li {
  margin-top: 0.2em;
}
.l-policy .l-policy__box ol {
  list-style: decimal;
}
.l-policy .l-policy__box h2 + :is(h3, p, ol, ul) {
  margin-top: 0.6rem;
}
@media (max-width: 480px) {
  .l-policy .l-policy__box h2 + :is(h3, p, ol, ul) {
    margin-top: 0.5rem;
  }
}
.l-policy .l-policy__box p + p {
  margin-top: 1rem;
}

.modal__content .c-lower-cont {
  padding: 0;
  background-color: initial;
}
.modal__content .c-lower-cont .l-policy {
  width: 100%;
  max-width: 100%;
}
.modal__content .c-lower-cont .l-policy__box {
  color: #08202c;
}

.modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  position: fixed;
  z-index: 9999;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.7);
}
.modal[aria-hidden=false] {
  visibility: visible;
  opacity: 1;
}
.modal__overlay {
  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%;
  height: 100%;
}
.modal__container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.modal__container--wrap {
  position: relative;
  display: block;
  background: #fff;
  padding: 2rem;
  width: 100%;
  height: 600px;
  overflow: scroll;
}
@media (max-width: 768px) {
  .modal__container--wrap {
    padding: clamp(1.25rem, 0.982rem + 1.339vw, 1.625rem);
    height: 60vh;
  }
}
.modal__title {
  position: relative;
  width: 100%;
  margin: 0 auto 40px;
  padding-bottom: 10px;
  border-bottom: solid 1px #000;
  color: #000;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .modal__title {
    margin: 0 auto clamp(2.125rem, 1.857rem + 1.339vw, 2.5rem);
    font-size: clamp(1.375rem, 1.286rem + 0.446vw, 1.5rem);
  }
}
.modal__btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: initial;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  padding: 0;
  color: #fff;
  font-size: 22px;
  font-weight: 300;
  font-family: "ArizonaFlare";
  letter-spacing: 0.02em;
  cursor: pointer;
}
.modal__btn::after {
  content: "×";
  position: relative;
  top: 2px;
  padding-left: 3px;
  color: #fff;
  font-size: 1lh;
  font-weight: 300;
  font-family: "ArizonaFlare";
  line-height: 1;
}

.modal[aria-hidden=false] .modal__container {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

/* recaptcha */
.grecaptcha-badge {
  z-index: 10;
}

.footer {
  position: relative;
  padding: 140px 0 160px;
  background-color: #031024;
  z-index: 0;
}
@media (max-width: 768px) {
  .footer {
    padding: clamp(2.5rem, 1.607rem + 4.464vw, 3.75rem) 0 clamp(1.25rem, -0.089rem + 6.696vw, 3.125rem);
  }
}
.footer::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  background-image: url("../img/bg-footer.png");
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
  width: 45.82vw;
  height: 29.28vw;
  z-index: 1;
}
@media (max-width: 768px) {
  .footer::before {
    width: 100%;
    height: 100%;
  }
}
.footer .l-footer {
  position: relative;
  width: 92%;
  max-width: 876px;
  margin: 0 auto;
  z-index: 2;
}
@media (max-width: 768px) {
  .footer .l-footer {
    width: 88%;
  }
}
.footer .l-footer__ac {
  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: 20px;
  margin: 0 auto 20px;
}
@media (max-width: 768px) {
  .footer .l-footer__ac {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}
@media (max-width: 640px) {
  .footer .l-footer__ac {
    margin: 0 auto 50px;
  }
}
.footer .l-footer__ac .l-footer__logo {
  display: block;
}
@media (max-width: 768px) {
  .footer .l-footer__ac .l-footer__logo {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media (max-width: 640px) {
  .footer .l-footer__ac .l-footer__logo {
    margin-top: min(5.12vw, 30px);
  }
}
.footer .l-footer__ac .l-footer__logo a {
  display: block;
  width: 174px;
}
.footer .l-footer__ac .l-footer__logo a img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer .l-footer__ac .l-footer__logo span {
  display: block;
  margin-top: 10px;
  color: #c5c7c4;
  font-size: 12px;
  font-weight: 300;
  font-family: "ArizonaFlare";
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .footer .l-footer__ac .l-footer__logo span {
    font-size: 13px;
  }
}
.footer .l-footer__ac .l-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 50px;
}
@media (max-width: 768px) {
  .footer .l-footer__ac .l-footer__nav {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media (max-width: 640px) {
  .footer .l-footer__ac .l-footer__nav {
    margin-top: 14px;
  }
}
.footer .l-footer__ac .l-footer__nav--title {
  color: #c5c7c4;
  font-size: 12px;
  font-weight: 300;
  font-family: "ArizonaFlare";
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .footer .l-footer__ac .l-footer__nav--title {
    font-size: 13px;
  }
}
.footer .l-footer__ac .l-footer__nav--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.footer .l-footer__ac .l-footer__nav--list li {
  display: block;
}
.footer .l-footer__ac .l-footer__nav--list li a {
  display: block;
  color: #c5c7c4;
  font-size: 15px;
  font-weight: 300;
  font-family: "ArizonaFlare";
  line-height: 1.5;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .footer .l-footer__ac .l-footer__nav--list li a {
    font-size: 16px;
  }
}
.footer .l-footer__ac .l-footer__nav--list li a:hover {
  color: #a68340;
}
.footer .l-footer__sb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
@media (max-width: 640px) {
  .footer .l-footer__sb {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    gap: 10px;
  }
}
.footer .l-footer__sb--link {
  display: block;
}
.footer .l-footer__sb--link a {
  display: block;
  color: #c5c7c4;
  font-size: 12px;
  font-weight: 300;
  font-family: "ArizonaFlare";
}
@media (max-width: 768px) {
  .footer .l-footer__sb--link a {
    font-size: 13px;
  }
}
.footer .l-footer__sb .l-footer__copyright small {
  display: block;
  color: #c5c7c4;
  font-size: 12px;
  font-weight: 300;
  font-family: "ArizonaFlare";
}
@media (max-width: 768px) {
  .footer .l-footer__sb .l-footer__copyright small {
    font-size: 13px;
  }
}

.c-btn-more {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 24px;
  margin-left: auto;
}
.c-btn-more a {
  position: relative;
  display: block;
  margin-right: 2.3em;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  font-family: "ArizonaFlare";
  letter-spacing: 0.07em;
  border-bottom: solid 1px #ffffff;
}
.c-btn-more a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -2.3em;
  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;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../img/icon-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 20px;
  height: 20px;
}
.c-btn-more.c-btn-color_bk a {
  color: #08202c;
  border-bottom: solid 1px #08202c;
}

.c-btn-entry {
  display: block;
}
.c-btn-entry.top {
  opacity: 0;
  -webkit-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.c-btn-entry.top.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.c-btn-entry.c-btn-entry_spNav {
  display: none;
  -webkit-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
@media (max-width: 1440px) {
  .c-btn-entry.c-btn-entry_spNav {
    display: block;
    position: absolute;
    opacity: 0;
    top: clamp(1.875rem, 0.446rem + 2.976vw, 3.125rem);
    right: 4vw;
  }
}
@media (max-width: 768px) {
  .c-btn-entry.c-btn-entry_spNav {
    top: clamp(1.75rem, 1.661rem + 0.446vw, 1.875rem);
    right: 4vw;
  }
}
.c-btn-entry.c-btn-entry_spNav.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.c-btn-entry.c-btn-entry_spNav a {
  width: clamp(9.375rem, 8.036rem + 6.696vw, 11.25rem);
  height: clamp(1.6875rem, 1.464rem + 1.116vw, 2rem);
  font-size: 14px;
}
.c-btn-entry a {
  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: 191px;
  height: 34px;
  background-color: #a68340;
  color: #ffffff;
  font-size: 16px;
  font-weight: 300;
  font-family: "ArizonaFlare";
  -webkit-transition: background-color 0.3s ease, letter-spacing 0.2s ease;
  transition: background-color 0.3s ease, letter-spacing 0.2s ease;
  cursor: pointer;
}
.c-btn-entry a:hover {
  background-color: #bb944c;
  letter-spacing: 0.08em;
}
@media (max-width: 768px) {
  .c-btn-entry.u-footer {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (max-width: 640px) {
  .c-btn-entry.u-footer {
    width: 100%;
  }
}
.c-btn-entry.u-footer a {
  height: 24px;
  font-size: 13px;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .c-btn-entry.u-footer a {
    font-size: 14px;
  }
}
@media (max-width: 640px) {
  .c-btn-entry.u-footer a {
    width: 100%;
    height: 48px;
    font-size: 17px;
  }
}
.c-btn-entry.u-footer a:hover {
  background-color: #bb944c;
  letter-spacing: 0.09em;
}

.c-operation-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
}
.c-operation-btn.l-pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .c-operation-btn.l-pc {
    display: none;
  }
}
.c-operation-btn.l-sp {
  display: none;
}
@media (max-width: 768px) {
  .c-operation-btn.l-sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-inline: auto;
    margin-top: 18px;
  }
}

/*
 * 汎用
 * -------------------------------------------------------------------
 */
@media (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
@media (min-width: 768.1px) {
  .sp {
    display: none !important;
  }
}
.tx_c {
  text-align: center;
}

.tx_l {
  text-align: left;
}

.tx_r {
  text-align: right;
}

/* 余白 */
.ma-0 {
  margin: 0rem !important;
}
.mb-0 {
  margin-bottom: 0rem !important;
}
.mt-0 {
  margin-top: 0rem !important;
}
.ml-0 {
  margin-left: 0rem !important;
}
.mr-0 {
  margin-right: 0rem !important;
}

.pa-0 {
  padding: 0rem !important;
}
.pb-0 {
  padding-bottom: 0rem !important;
}
.pt-0 {
  padding-top: 0rem !important;
}
.pl-0 {
  padding-left: 0rem !important;
}
.pr-0 {
  padding-right: 0rem !important;
}

.ma-1 {
  margin: 1rem !important;
}
.mb-1 {
  margin-bottom: 1rem !important;
}
.mt-1 {
  margin-top: 1rem !important;
}
.ml-1 {
  margin-left: 1rem !important;
}
.mr-1 {
  margin-right: 1rem !important;
}

.pa-1 {
  padding: 1rem !important;
}
.pb-1 {
  padding-bottom: 1rem !important;
}
.pt-1 {
  padding-top: 1rem !important;
}
.pl-1 {
  padding-left: 1rem !important;
}
.pr-1 {
  padding-right: 1rem !important;
}

.ma-2 {
  margin: 2rem !important;
}
.mb-2 {
  margin-bottom: 2rem !important;
}
.mt-2 {
  margin-top: 2rem !important;
}
.ml-2 {
  margin-left: 2rem !important;
}
.mr-2 {
  margin-right: 2rem !important;
}

.pa-2 {
  padding: 2rem !important;
}
.pb-2 {
  padding-bottom: 2rem !important;
}
.pt-2 {
  padding-top: 2rem !important;
}
.pl-2 {
  padding-left: 2rem !important;
}
.pr-2 {
  padding-right: 2rem !important;
}

.ma-3 {
  margin: 3rem !important;
}
.mb-3 {
  margin-bottom: 3rem !important;
}
.mt-3 {
  margin-top: 3rem !important;
}
.ml-3 {
  margin-left: 3rem !important;
}
.mr-3 {
  margin-right: 3rem !important;
}

.pa-3 {
  padding: 3rem !important;
}
.pb-3 {
  padding-bottom: 3rem !important;
}
.pt-3 {
  padding-top: 3rem !important;
}
.pl-3 {
  padding-left: 3rem !important;
}
.pr-3 {
  padding-right: 3rem !important;
}

.ma-4 {
  margin: 4rem !important;
}
.mb-4 {
  margin-bottom: 4rem !important;
}
.mt-4 {
  margin-top: 4rem !important;
}
.ml-4 {
  margin-left: 4rem !important;
}
.mr-4 {
  margin-right: 4rem !important;
}

.pa-4 {
  padding: 4rem !important;
}
.pb-4 {
  padding-bottom: 4rem !important;
}
.pt-4 {
  padding-top: 4rem !important;
}
.pl-4 {
  padding-left: 4rem !important;
}
.pr-4 {
  padding-right: 4rem !important;
}

.ma-5 {
  margin: 5rem !important;
}
.mb-5 {
  margin-bottom: 5rem !important;
}
.mt-5 {
  margin-top: 5rem !important;
}
.ml-5 {
  margin-left: 5rem !important;
}
.mr-5 {
  margin-right: 5rem !important;
}

.pa-5 {
  padding: 5rem !important;
}
.pb-5 {
  padding-bottom: 5rem !important;
}
.pt-5 {
  padding-top: 5rem !important;
}
.pl-5 {
  padding-left: 5rem !important;
}
.pr-5 {
  padding-right: 5rem !important;
}

.ma-6 {
  margin: 6rem !important;
}
.mb-6 {
  margin-bottom: 6rem !important;
}
.mt-6 {
  margin-top: 6rem !important;
}
.ml-6 {
  margin-left: 6rem !important;
}
.mr-6 {
  margin-right: 6rem !important;
}

.pa-6 {
  padding: 6rem !important;
}
.pb-6 {
  padding-bottom: 6rem !important;
}
.pt-6 {
  padding-top: 6rem !important;
}
.pl-6 {
  padding-left: 6rem !important;
}
.pr-6 {
  padding-right: 6rem !important;
}

.ma-7 {
  margin: 7rem !important;
}
.mb-7 {
  margin-bottom: 7rem !important;
}
.mt-7 {
  margin-top: 7rem !important;
}
.ml-7 {
  margin-left: 7rem !important;
}
.mr-7 {
  margin-right: 7rem !important;
}

.pa-7 {
  padding: 7rem !important;
}
.pb-7 {
  padding-bottom: 7rem !important;
}
.pt-7 {
  padding-top: 7rem !important;
}
.pl-7 {
  padding-left: 7rem !important;
}
.pr-7 {
  padding-right: 7rem !important;
}

.ma-8 {
  margin: 8rem !important;
}
.mb-8 {
  margin-bottom: 8rem !important;
}
.mt-8 {
  margin-top: 8rem !important;
}
.ml-8 {
  margin-left: 8rem !important;
}
.mr-8 {
  margin-right: 8rem !important;
}

.pa-8 {
  padding: 8rem !important;
}
.pb-8 {
  padding-bottom: 8rem !important;
}
.pt-8 {
  padding-top: 8rem !important;
}
.pl-8 {
  padding-left: 8rem !important;
}
.pr-8 {
  padding-right: 8rem !important;
}

.ma-9 {
  margin: 9rem !important;
}
.mb-9 {
  margin-bottom: 9rem !important;
}
.mt-9 {
  margin-top: 9rem !important;
}
.ml-9 {
  margin-left: 9rem !important;
}
.mr-9 {
  margin-right: 9rem !important;
}

.pa-9 {
  padding: 9rem !important;
}
.pb-9 {
  padding-bottom: 9rem !important;
}
.pt-9 {
  padding-top: 9rem !important;
}
.pl-9 {
  padding-left: 9rem !important;
}
.pr-9 {
  padding-right: 9rem !important;
}

.ma-10 {
  margin: 10rem !important;
}
.mb-10 {
  margin-bottom: 10rem !important;
}
.mt-10 {
  margin-top: 10rem !important;
}
.ml-10 {
  margin-left: 10rem !important;
}
.mr-10 {
  margin-right: 10rem !important;
}

.pa-10 {
  padding: 10rem !important;
}
.pb-10 {
  padding-bottom: 10rem !important;
}
.pt-10 {
  padding-top: 10rem !important;
}
.pl-10 {
  padding-left: 10rem !important;
}
.pr-10 {
  padding-right: 10rem !important;
}