@charset "utf-8";

:root {
  --bg: #f6f4ee;
  --bg2:#ffffff;
  --bg3:#f8f7f2;
  --text: #222222;
  --sub: #666666;
  --line: #e7e1d6;
  --line2:#666666;
  --line3:#ccc;
  --navy: #1f3654;
  --navy-deep: #12243c;
  --accent: #d7b06a;
  --max: 1200px;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(12, 22, 40, 0.12);
  --header-h: 88px;
}
* {
  box-sizing: border-box;
}
html {
  overflow-y: scroll;
  height: 100%;
  word-wrap: break-word;
  word-break: break-word;
  font-feature-settings: "palt" 1;
}
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg2);
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
body.is-menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button, input, textarea {
  font: inherit;
}
.serif {
  font-family: "Noto Serif JP", serif;
}
.sans {
  font-family: "Noto Sans JP", sans-serif;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.35s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn i {
  font-size: 0.95em;
}
.btn.primary {
  background: var(--navy);
  color: #fff;
}
.btn.primary:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
}
.btn.ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}
.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}
.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: 0.35s ease;
  padding: 18px 0;
}
html.active .topbar, .topbar.scrolled {
  background: rgba(10, 18, 30, 0.82);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width:767px) {
  .topbar {
    padding: 12px 0;
  }
  html.active .topbar, .topbar.scrolled {
    padding: 12px 0;
  }
}
.topbar-inner {
  width: min(calc(100% - 40px), 1320px);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.nav a {
  opacity: 0.88;
  transition: 0.25s ease;
}
.nav a:hover, .nav a:focus-visible {
  opacity: 1;
}
.nav-cta {
  background: #fff;
  color: var(--navy);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
}
.menu-toggle {
  display: none;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(7, 15, 27, 0.84) 0%, rgba(10, 17, 31, 0.68) 32%, rgba(12, 21, 38, 0.34) 56%, rgba(10, 16, 29, 0.54) 100%), linear-gradient(180deg, rgba(7, 12, 20, 0.18) 0%, rgba(7, 12, 20, 0.2) 65%, rgba(7, 12, 20, 0.82) 100%);
}
.scroll-indicator::after {
  content: "";
  width: 1px;
  height: 110px;
  background: rgba(255, 255, 255, 0.38);
  animation: scrollLine 1.8s infinite;
}
@keyframes scrollLine {
  0% {
    transform: scaleY(0.2);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  50.1% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0.2);
    transform-origin: bottom;
  }
}
.photo-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 20, 34, 0) 50%, rgba(12, 20, 34, 0.16) 100%);
  z-index: 1;
}
.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.work-card:hover img {
  transform: scale(1.06);
}
.work-unit {
  font-size: 14px;
  color: var(--sub);
}
.timeline::before {
  content: "";
  position: absolute;
  left: 74px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: #ddd7ca;
}
.contact-wrap {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 34px;
}
.contact-card {
  color: #fff;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  box-shadow: 0 16px 42px rgba(15, 28, 49, 0.22);
}
.contact-card .tel {
  display: block;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin: 14px 0 8px;
}
.contact-card p {
  margin: 0;
  opacity: 0.85;
}
.form-card {
  background: #fff;
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 12px 32px rgba(13, 25, 42, 0.07);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  display: grid;
  gap: 8px;
}
.field.full {
  grid-column: 1 / -1;
}
label {
  font-size: 14px;
  font-weight: 700;
}
input, textarea {
  width: 100%;
  border: 1px solid #ddd7ca;
  background: #fcfbf8;
  border-radius: 16px;
  padding: 16px 18px;
  color: inherit;
}
textarea {
  min-height: 160px;
  resize: vertical;
}
.privacy {
  margin: 10px 0 24px;
  color: var(--sub);
  font-size: 13px;
}
[data-gsap] {
  will-change: transform, opacity, filter;
}
.gsap-init {
  visibility: inherit;
}
.splide {
  width: 100%;
}
.splide__track {
  overflow: visible;
}
.splide__slide {
  height: auto;
}
.splide__arrow {
  background: #fff;
  border: 1px solid #e7e1d6;
  box-shadow: 0 8px 24px rgba(13, 25, 42, 0.08);
  opacity: 1;
}
.splide__arrow svg {
  fill: var(--navy);
}
.splide__pagination {
  margin-top: 24px;
  position: static;
}
@media (max-width:1100px) {
  .contact-wrap {
    grid-template-columns: 1fr;
  }
}
@media (max-width:820px) {
  :root {
    --header-h: 72px;
  }
  .nav {
    position: fixed;
    inset: 72px 20px auto 20px;
    background: rgba(10, 18, 30, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav.open {
    display: flex;
  }
  .menu-toggle {
    display: grid;
  }
  .form-card, .contact-card {
    border-radius: 20px;
    padding: 16px;
  }
}
.cf-turnstile {
  text-align: center;
}
@media screen and (min-width:768px){
  .tel-no {
    pointer-events: none;
    text-decoration: none;
    color: inherit;
    opacity: 1 !important;
  }
}

/* =========================================================
loading
========================================================= */
#loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loading.loaded {
  opacity: 0;
  visibility: hidden;
}
.loader-icon {
  width: 50px;
  height: 50px;
  border: 3px solid #eee;
  border-top: 3px solid var(--main-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}



/* =========================================================
menu
========================================================= */
@-webkit-keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
@keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
.menu-trigger, .menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}
.menu-wrap {
  position: fixed;
  z-index: 1002;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  flex-flow: column nowrap;
  align-items: center;
  width: 90px;
  height: 70px;
  transition: all 0.5s linear;
  background-color: transparent;
}
html.lightcase-open .menu-wrap {
  -webkit-transition: all 0s linear;
  -moz-transition: all 0s linear;
  transition: all 0s linear;
}
.menu-wrap.loading {
  opacity: 0;
}
.menu-wrap {
  cursor: pointer;
}
.menu-trigger {
  position: relative;
  width: 50px;
  height: 25px;
  cursor: pointer;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--bg);
  border-radius: 1px;
  transform-style: preserve-3d;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 12px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
.menu-trigger.active span:nth-of-type(1), html.lightcase-open .menu-trigger span:nth-of-type(1) {
  -webkit-transform: translateY(12px) rotate(-25deg);
  transform: translateY(12px) rotate(-25deg);
}
.menu-trigger.active span:nth-of-type(2), html.lightcase-open .menu-trigger span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  -webkit-animation: active-menu-bar02 0.8s forwards;
  animation: active-menu-bar02 0.8s forwards;
}
.menu-trigger.active span:nth-of-type(3), html.lightcase-open .menu-trigger span:nth-of-type(3) {
  -webkit-transform: translateY(-12px) rotate(25deg);
  transform: translateY(-12px) rotate(25deg);
}
@media screen and (min-width:768px) {
  html:not(.lightcase-open) .menu-wrap {
    display: none !important;
    visibility: hidden !important;
  }
}
@media screen and (max-width:767px) {
  .menu-wrap {
    top: 0;
    right: 0;
    width: 60px;
    height: 50px;
  }
  .menu-trigger {
    width: 30px;
    height: 21px;
  }
  .menu-trigger span {
    height: 1px;
    border-radius: 1px;
  }
  .menu-trigger span:nth-of-type(2) {
    top: 10px;
  }
  .menu-trigger.active span:nth-of-type(1), html.lightcase-open .menu-trigger span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-32deg);
    transform: translateY(10px) rotate(-32deg);
  }
  .menu-trigger.active span:nth-of-type(2), html.lightcase-open .menu-trigger span:nth-of-type(2) {
  }
  .menu-trigger.active span:nth-of-type(3), html.lightcase-open .menu-trigger span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(32deg);
    transform: translateY(-10px) rotate(32deg);
  }
}

/* =========================================================
drawer-menu
========================================================= */
@-webkit-keyframes drawer_menu_on {
  0% {
    right: 0;
  }
  100% {
    right: -100vw;
  }
}
@keyframes drawer_menu_on {
  0% {
    right: 0;
  }
  100% {
    right: -100vw;
  }
}
@-webkit-keyframes drawer_menu_off {
  0% {
    right: -100vw;
  }
  100% {
    right: 0;
  }
}
@keyframes drawer_menu_off {
  0% {
    right: -100vw;
  }
  100% {
    right: 0;
  }
}
#drawer-menu {
  position: fixed;
  z-index: -1;
  top: 0;
  right: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  transition: z-index 0s cubic-bezier(1, 0, 0, 1) 0.3s, opacity 0.3s cubic-bezier(1, 0, 0, 1) 0s;
  transition-timing-function: cubic-bezier(1, 0, 0, 1);
  opacity: 0;
  background-color: var(--bg);
}
#drawer-menu_box {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
}
#drawer-menu.active {
  z-index: 101;
  right: 0;
  transition: z-index 0s cubic-bezier(1, 0, 0, 1) 0s, opacity 400ms cubic-bezier(1, 0, 0, 1) 0s;
  transition-timing-function: cubic-bezier(1, 0, 0, 1);
  opacity: 1;
}
#drawer-menu .drawer-menu__box {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
  align-items: center;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  height: 100%;
  background-color: transparent;
  scrollbar-width: thin;
  scrollbar-color: var(--bg) var(--line3);
  -webkit-overflow-scrolling: touch;
}

/* =========================================================
form
========================================================= */
.wpcf7-not-valid-tip {
  margin-bottom: 20px;
}
.wpcf7 form .wpcf7-response-output {
  margin-left: 0;
  margin-right: 0;
}
.wpcf7-turnstile {
  text-align: center;
}
.swrap {
  position: relative;
  display: inline-block;
  background-color: var(--bg2);
}
.swrap select, .swrap input[type="text"].date {
  color: var(--text);
  font-size: 14px;
  font-weight: normal;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: 100%;
  height: 47px;
  margin: 0;
  padding: 0 40px 0 14px;
  cursor: pointer;
  user-select: none;
  border: 1px solid var(--line3);
  border-radius: 0;
  outline: none;
  background: transparent;
  appearance: none;
}
.swrap select option {
  font-weight: normal;
  border-radius: 0;
  color: var(--text);
}
.swrap select:disabled {
  cursor: default;
}
.swrap::after {
  font-family: "Font Awesome 6 Free";
  font-size: 16px;
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  line-height: 1.4em;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 14px;
  bottom: 0;
  display: inline-block;
  width: 1em;
  height: 1em;
  margin: -0.7em auto 0;
  content: "\f0d7";
  transition-timing-function: linear;
  transition-duration: 0.1s !important;
  transition-property: transform;
  transform: scale(1, 1);
  text-align: center;
  text-decoration: none;
  text-transform: none;
  color: var(--text);
  font-smoothing: antialiased;
  speak: none;
}
.swrap:hover::after {
  z-index: 0;
  transform: scale(1.1);
}
textarea, input[type="search"], input[type="text"], input[type="number"], input[type="tel"], input[type="email"], input[type="password"] {
  color: var(--text);
  border-bottom: 1px solid var(--line3);
  border-radius: 0;
  outline: none !important;
  appearance: none;
  font-size: 1rem;
}
input[type="number"] {
  text-align: right;
  appearance: textfield;
}
input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}
textarea::-webkit-input-placeholder, input[type="search"]::-webkit-input-placeholder, input[type="text"]::-webkit-input-placeholder, input[type="number"]::-webkit-input-placeholder, input[type="tel"]::-webkit-input-placeholder, input[type="email"]::-webkit-input-placeholder, input[type="password"]::-webkit-input-placeholder {
  color: var(--line3);
  opacity: 1;
  font-size: 14px;
  letter-spacing: 0;
}
textarea:disabled::-webkit-input-placeholder, input[type="search"]:disabled::-webkit-input-placeholder, input[type="text"]:disabled::-webkit-input-placeholder, input[type="number"]:disabled::-webkit-input-placeholder, input[type="tel"]:disabled::-webkit-input-placeholder, input[type="email"]:disabled::-webkit-input-placeholder, input[type="password"]:disabled::-webkit-input-placeholder {
  color: var(--line3);
  opacity: 1;
  font-size: 14px;
  letter-spacing: 0;
}
textarea::-moz-placeholder, input[type="search"]::-moz-placeholder, input[type="text"]::-moz-placeholder, input[type="number"]::-moz-placeholder, input[type="tel"]::-moz-placeholder, input[type="email"]::-moz-placeholder, input[type="password"]::-moz-placeholder {
  color: var(--line3);
  opacity: 1;
  font-size: 14px;
  letter-spacing: 0;
}
textarea:disabled::-moz-placeholder, input[type="search"]:disabled::-moz-placeholder, input[type="text"]:disabled::-moz-placeholder, input[type="number"]:disabled::-moz-placeholder, input[type="tel"]:disabled::-moz-placeholder, input[type="email"]:disabled::-moz-placeholder, input[type="password"]:disabled::-moz-placeholder {
  color: var(--line3);
  opacity: 1;
  font-size: 14px;
  letter-spacing: 0;
}
textarea:not(.wpcf7c-conf):focus, input[type="search"]:not(.wpcf7c-conf):focus, input[type="text"]:not(.wpcf7c-conf):focus, input[type="number"]:not(.wpcf7c-conf):focus, input[type="tel"]:not(.wpcf7c-conf):focus, input[type="email"]:not(.wpcf7c-conf):focus, input[type="password"]:not(.wpcf7c-conf):focus {
  border-color: var(--line3);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  background-color: rgba(128, 128, 128, 0.1);
}
textarea.wpcf7c-conf, .swrap select.wpcf7c-conf, input[type="search"].wpcf7c-conf, input[type="text"].wpcf7c-conf, input[type="number"].wpcf7c-conf, input[type="tel"].wpcf7c-conf, input[type="email"].wpcf7c-conf, input[type="password"].wpcf7c-conf {
  cursor: not-allowed;
  user-select: none;
  outline: none;
  border: 1px solid var(--line3);
}
input[type="submit"]::-webkit-search-decoration, input[type="reset"]::-webkit-search-decoration, input[type="button"]::-webkit-search-decoration, input[type="search"]::-webkit-search-decoration {
  display: none;
}
::-webkit-search-cancel-button {
  appearance: none;
}
input[type="search"]::-webkit-search-decoration {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  appearance: none;
  background: none;
  outline: none;
  font-size: 16px;
}
.wpcf7c-conf, .swrap select.wpcf7c-conf {
  background-color: var(--line3);
}
.swrap select.wpcf7c-conf {
  z-index: 2;
}
.ccheck, .wpcf7-checkbox:not(.rdo) .wpcf7-list-item {
  display: inline-block;
  vertical-align: middle;
}
.ccheck input[type="checkbox"], .wpcf7-checkbox:not(.rdo) .wpcf7-list-item input[type="checkbox"] {
  appearance: none;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  z-index: -1;
  position: absolute;
}
.ccheck label, .wpcf7-checkbox:not(.rdo) .wpcf7-list-item label {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding-left: 30px;
  line-height: 20px;
  cursor: pointer;
}
.ccheck label span, .wpcf7-checkbox:not(.rdo) .wpcf7-list-item label span {
  line-height: 1.4em;
  display: inline-block;
  vertical-align: top;
  margin-left: 0;
}
.ccheck input[type="checkbox"] + span:before, .ccheck input[type="checkbox"] + div:before, .ccheck input[type="checkbox"] + input[type="hidden"] + span:before, .ccheck input[type="checkbox"] + input[type="hidden"] + div:before, .wpcf7-checkbox:not(.rdo) .wpcf7-list-item input[type="checkbox"] + span:before, .wpcf7-checkbox:not(.rdo) .wpcf7-list-item input[type="checkbox"] + div:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: var(--bg2);
  border: 1px solid var(--line3);
  border-radius: 1px;
}
.ccheck input[type="checkbox"] + span:after, .ccheck input[type="checkbox"] + div:after, .ccheck input[type="checkbox"] + input[type="hidden"] + span:after, .ccheck input[type="checkbox"] + input[type="hidden"] + div:after, .wpcf7-checkbox:not(.rdo) .wpcf7-list-item input[type="checkbox"] + span:after, .wpcf7-checkbox:not(.rdo) .wpcf7-list-item input[type="checkbox"] + div:after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 3px;
  width: 15px;
  height: 12px;
}
.ccheck label input[type="checkbox"]:checked + span:after, .ccheck label input[type="checkbox"]:checked + div:after, .ccheck label input[type="checkbox"]:checked + input[type="hidden"] + span:after, .ccheck label input[type="checkbox"]:checked + input[type="hidden"] + div:after, .wpcf7-checkbox:not(.rdo) .wpcf7-list-item label input[type="checkbox"]:checked + span:after, .wpcf7-checkbox:not(.rdo) .wpcf7-list-item label input[type="checkbox"]:checked + div:after {
  top: 4px;
  height: 8px;
  border-left: 3px solid var(--line2);
  border-bottom: 2px solid var(--line2);
  transform: rotate(-45deg);
}
input[type="radio"], input[type="checkbox"] {
  cursor: pointer;
}
@media screen and (max-width:767px) {
  .ccheck label, .wpcf7-checkbox:not(.rdo) .wpcf7-list-item label {
    line-height: 1.2em;
    padding: 0 0 0 20px;
  }
  .ccheck label span, .wpcf7-checkbox:not(.rdo) .wpcf7-list-item label span {
    margin-left: 10px;
    line-height: 1.7em;
  }
  .ccheck input[type="checkbox"] + span:before, .ccheck input[type="checkbox"] + div:before, .ccheck input[type="checkbox"] + input[type="hidden"] + span:before, .ccheck input[type="checkbox"] + input[type="hidden"] + div:before, .wpcf7-checkbox:not(.rdo) .wpcf7-list-item input[type="checkbox"] + span:before, .wpcf7-checkbox:not(.rdo) .wpcf7-list-item input[type="checkbox"] + div:before {
    top: 3px;
    width: 20px;
    height: 20px;
  }
  .ccheck input[type="checkbox"] + span:after, .ccheck input[type="checkbox"] + div:after, .ccheck input[type="checkbox"] + input[type="hidden"] + span:after, .ccheck input[type="checkbox"] + input[type="hidden"] + div:after, .wpcf7-checkbox:not(.rdo) .wpcf7-list-item input[type="checkbox"] + span:after, .wpcf7-checkbox:not(.rdo) .wpcf7-list-item input[type="checkbox"] + div:after {
    top: 4px;
    left: 3px;
    width: 12px;
    height: 12px;
  }
  .ccheck label input[type="checkbox"]:checked + span:after, .ccheck label input[type="checkbox"]:checked + div:after, .ccheck label input[type="checkbox"]:checked + input[type="hidden"] + span:after, .ccheck label input[type="checkbox"]:checked + input[type="hidden"] + div:after, .wpcf7-checkbox:not(.rdo) .wpcf7-list-item label input[type="checkbox"]:checked + span:after, .wpcf7-checkbox:not(.rdo) .wpcf7-list-item label input[type="checkbox"]:checked + div:after {
    top: 0.3em;
    left: 0.2em;
    width: 1.2em;
    height: 0.8em;
    border-left: 4px solid var(--line2);
    border-bottom: 3px solid var(--line2);
  }
}
@media screen and (max-width:480px) {
  .ccheck label input[type="checkbox"]:checked + span:after, .ccheck label input[type="checkbox"]:checked + div:after, .ccheck label input[type="checkbox"]:checked + input[type="hidden"] + span:after, .ccheck label input[type="checkbox"]:checked + input[type="hidden"] + div:after, .wpcf7-checkbox:not(.rdo) .wpcf7-list-item label input[type="checkbox"]:checked + span:after, .wpcf7-checkbox:not(.rdo) .wpcf7-list-item label input[type="checkbox"]:checked + div:after {
    border-left: 3px solid var(--line2);
    border-bottom: 2px solid var(--line2);
  }
}
.wpcf7-form-control.wpcf7-checkbox {
  display: flex;
  justify-content: flex-start;
  flex-flow: row wrap;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width:767px) {
  .wpcf7-form-control.wpcf7-checkbox {
    gap: 15px 15px;
  }
}
.wpcf7-list-item {
  margin: 0;
}
.rdo {
  display: inline-block;
  vertical-align: top;
  line-height: 20px;
}
.rdo span.wpcf7-list-item {
  vertical-align: middle;
}
.rdo span.wpcf7-list-item.first {
  margin-left: 0;
}
.rdo.list label:not(:last-child) {
  margin-bottom: 5px;
}
.rdo label {
  position: relative;
  cursor: pointer;
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
  box-sizing: border-box;
  min-height: 20px;
  padding-left: calc(20px + 10px);
  line-height: 20px;
}
.rdo label:before, .rdo label:after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  border-radius: 100%;
}
.rdo label:before {
  width: 20px;
  height: 20px;
  border: 1px solid var(--line3);
  left: 0;
  z-index: 3;
}
.rdo label:after {
  width: 14px;
  height: 14px;
  left: 3px;
  background-color: var(--line2);
  z-index: 1;
}
.rdo label input[type="radio"], .rdo label input[type="checkbox"] {
  appearance: none;
  position: absolute;
  box-sizing: border-box;
  outline: none;
  width: 20px;
  height: 20px;
  z-index: 2;
  left: calc(20px * -1);
  top: 0;
  bottom: 0;
  margin: auto 0;
  border-radius: 100%;
  box-shadow: 20px 0 #fff;
}
.rdo label input[type="radio"]:checked, .rdo label input[type="checkbox"]:checked {
  box-shadow: none;
}
.rdo label input[type="radio"]:focus, .rdo label input[type="checkbox"]:focus {
  opacity: 0.2;
  box-shadow: 20px 0 #fff;
}
.rdo label span {
  display: inline-block;
  vertical-align: top;
  line-height: 1.4em;
}
form.custom-wpcf7c-confirmed .rdo label {
  cursor: not-allowed;
  user-select: none;
  outline: none;
}
form.custom-wpcf7c-confirmed .rdo label::after {
  background-color: #999;
}
@media screen and (max-width:767px) {
  .rdo {
    line-height: 1.6em;
  }
}

/* =========================================================
wpcf7-spinner
========================================================= */
.wpcf7-spinner {
  left: 0;
  right: 0;
  margin: 20px auto 0;
  display: block;
}

/* =========================================================
gsap-parallax
========================================================= */
.gsap-parallax {
  position: relative;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  will-change: background-position;
}
.parallax_bg {
  position: relative;
  overflow: hidden;
}
.gsap-parallax-img {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 175%;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  will-change: transform;
}
@media only screen and (max-width:767px) {
  .gsap-parallax-img {
    top: 0 !important;
    height: 100% !important;
  }
}

/* =========================================================
business
========================================================= */
#business .gsap-parallax {
  height: 460px;
}
@media print, screen and (min-width:1401px) {
  #business .gsap-parallax {
    height: calc((460 / (1400 + var(--sc__width))) * 100 * 1vw);
  }
}
@media only screen and (max-width:767px) {
  #business .gsap-parallax {
    height: calc((160 / (360 + var(--sc__width))) * 100 * 1vw);
    background-position: center bottom calc((-25 / (360 + var(--sc__width))) * 100 * 1vw);
  }
  #business .gsap-parallax-img {
    background-position: center bottom calc((-25 / (360 + var(--sc__width))) * 100 * 1vw) !important;
  }
}
