@charset "UTF-8";
:root {
  --color-white: #fff;
  --color-darkWhite: #fafafa;
  --color-lightGray: #f3f3f3;
  --color-gray: #e0e0e0;
  --color-darkGray: #9e9e9e;
  --color-grayBrack: #616161;
  --color-lightBrack: #555555;
  --color-black: #111111;
  --color-red100: #fff0f0;
  --color-red300: #ffb3b3;
  --color-red500: #ff0000;
  --color-red700: #c60e00;
  --color-blue500: #00a3e8;
  --color-orenge500: #e58a00;
  --linear-gradient: linear-gradient(
    45deg,
    #ff0000 0%,
    #e58a00 33%,
    #00a3e8 66%,
    #8b5cf6 100%
  );
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}
@media (max-width: 1200px) {
  html {
    font-size: 56.25%;
  }
}
@media (max-width: 900px) {
  html {
    font-size: 50%;
  }
}
@media (min-width: 1800px) {
  html {
    font-size: 75%;
  }
}

body {
  box-sizing: border-box;
}
@media (max-width: 900px) {
  body {
    padding: 0;
  }
}

.grecaptcha-badge {
  visibility: hidden;
}

a:hover,
a:hover img,
a:hover svg {
  filter: none !important;
}

.container p {
  line-break: strict;
  word-break: auto-phrase;
}

a,
button {
  -webkit-tap-highlight-color: transparent; /* より個別に対応 */
  outline: none;
}

body {
  line-height: 1.7;
  color: var(--color-text-black);
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-weight: 400;
}

h1 {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: 0.25rem;
}

h2 {
  font-size: 2.56rem;
  font-weight: 800;
  letter-spacing: 0.2rem;
}

h3 {
  font-size: 2.1333rem;
  font-weight: 800;
  letter-spacing: 0.2rem;
}

h4 {
  font-size: 1.8286rem;
  font-weight: 800;
  letter-spacing: 0.2rem;
}

p {
  font-size: 1.6rem;
  line-height: 3rem;
  letter-spacing: 0.09rem;
}

a {
  color: var(--color-blue300);
  text-decoration: underline;
  transition: 0.2s ease;
}
a:hover {
  color: var(--color-blue200);
  text-decoration: none;
}

ol li,
ul li {
  font-size: 1.6rem;
  line-height: 2.4rem;
  letter-spacing: 0.07rem;
}

blockquote {
  font-size: 1.4222rem;
  color: var(--color-text-gray);
  line-height: 2.4rem;
  letter-spacing: 0.07rem;
}

table thead th {
  font-size: 1.4222rem;
  line-height: 2.1rem;
}
table tbody th {
  font-size: 1.4222rem;
}
table td {
  font-size: 1.4222rem;
}

.c-arrow {
  color: #d9d9d9;
  transition: color 0.3s ease;
}
.c-arrow svg {
  width: 2.8rem;
  height: 2.8rem;
  display: block;
}

.c-btn {
  width: 20rem;
  height: 5rem;
  text-decoration: none;
  border: 1px solid #e8e8e8;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  font-size: 1.4222rem;
  font-weight: 700;
  color: var(--color-red500);
  transition: 0.3s;
}
.c-btn::after {
  content: "→";
  font-size: 16px;
  color: var(--color-red500);
}
.c-btn:hover {
  background: #111;
  color: #fff;
}
.c-btn:hover::after {
  color: #fff;
}

.ripple-contact {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.ripple-contact > * {
  position: relative;
  z-index: 2;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  pointer-events: none;
  z-index: 100;
}

.sectionHead {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.sectionHead__title {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
@media (max-width: 600px) {
  .sectionHead__title {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
  .sectionHead__title span {
    order: -1;
  }
}
.sectionHead h2 {
  font-size: 3.2rem;
  font-weight: 700;
}
.sectionHead span {
  font-family: "Reddit Sans", sans-serif;
  color: var(--color-red500);
  font-size: 1.6rem;
  font-weight: 700;
}

.newsList {
  flex: 1;
}
.newsList .is-hidden {
  display: none;
}

.newsItem {
  opacity: 0;
  transform: translateY(30px);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 2.2rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--color-gray);
}
@media (max-width: 600px) {
  .newsItem {
    display: grid;
    grid-template-columns: 25% 1fr;
    grid-template-areas: "tag title" "date title";
    column-gap: 1.2rem;
    row-gap: 0.4rem;
    align-items: center;
  }
}
.newsItem time {
  width: 12rem;
  flex-shrink: 0;
  font-size: 1.6rem;
  color: var(--color-grayBrack);
}
@media (max-width: 600px) {
  .newsItem time {
    grid-area: date;
    width: auto;
    margin: 0 auto;
  }
}
.newsItem__tag {
  width: 13rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-red500);
  color: var(--color-white);
  font-size: 1.4222rem;
  font-weight: 500;
  border-radius: 3px;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .newsItem__tag {
    grid-area: tag;
    width: fit-content;
    width: 100%;
    height: 2.8rem;
  }
}
.newsItem p {
  flex: 1;
  font-weight: 700;
}
@media (max-width: 600px) {
  .newsItem p {
    grid-area: title;
    align-self: center;
    margin: 0;
    line-height: 1.6;
  }
}
.newsItem:hover {
  opacity: 0.7;
}

.newsCategory {
  padding: 2rem;
  align-self: start;
  list-style: none;
}
.newsCategory li + li {
  margin-top: 2.4rem;
}
.newsCategory button {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 1.6rem;
  color: var(--color-lightBrack);
}
.newsCategory button::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-darkGray);
}
.newsCategory button.is-active {
  color: #111;
}
.newsCategory button.is-active::before {
  background: var(--color-red500);
}

.newsItem__arrow {
  opacity: 0;
  transform: translateX(0);
  transition: transform 0.3s ease, opacity 0.3s ease, color 0.3s ease;
}
@media (max-width: 600px) {
  .newsItem__arrow {
    display: none;
  }
}

.newsItem:hover .newsItem__arrow {
  opacity: 1;
  color: #ff0000;
  transform: translateX(6px) scale(1.1);
}

/*
スクロールプログレス
*/
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #00d4ff, #0066ff);
  z-index: 9999;
  pointer-events: none;
  transform-origin: left center;
}

/* ===== Chrome / Safari / Edge ===== */
.hero__scroll {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 0;
  height: 10rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 10;
}
@media (max-width: 900px) {
  .hero__scroll {
    height: 20rem;
  }
}

.hero__scroll span {
  writing-mode: vertical-rl;
  color: var(--color-red500);
  letter-spacing: 0.3em;
}

.scroll-line {
  position: relative;
  width: 2px;
  height: 140px;
  background: var(--color-red500);
  overflow: hidden;
}

.scroll-light {
  position: absolute;
  left: 0;
  top: -40px;
  width: 100%;
  height: 40px;
  background: linear-gradient(to bottom, transparent, #fff, transparent);
  animation: scrollLight 2s linear infinite;
}

@keyframes scrollLight {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(180px);
  }
}
.footer {
  background: var(--color-lightGray);
}
.footer__inner {
  max-width: 110rem;
  margin: 0 auto;
  padding: 10rem 4rem 2rem;
}
.footer__navWrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.6rem;
}
@media (max-width: 600px) {
  .footer__navWrap {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.footer__menu > li {
  list-style: none;
}
.footer__menu > li > a,
.footer__menu > ul > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid #dcdcdc;
  font-size: 1.8286rem;
  font-weight: 700;
  color: var(--color-grayBrack);
  text-decoration: none;
  line-height: 1;
}
.footer__menu > li > a::after,
.footer__menu > ul > li > a::after {
  content: "";
  width: 14px;
  height: 14px;
  margin-left: auto;
  background-color: var(--color-grayBrack);
  -webkit-mask: url("/wp-content/themes/ROBON/assets/img/common/arrow.svg") no-repeat center/contain;
  mask: url("/wp-content/themes/ROBON/assets/img/common/arrow.svg") no-repeat center/contain;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.footer__menu > li > a:hover,
.footer__menu > ul > li > a:hover {
  color: var(--color-red500);
}
.footer__menu > li > a:hover::after,
.footer__menu > ul > li > a:hover::after {
  background-color: var(--color-red500);
  transform: translateX(4px);
}
.footer__menu .sub-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer__menu .sub-menu li {
  margin-bottom: 14px;
}
.footer__menu .sub-menu a {
  color: #666;
  font-size: 1.4222rem;
  text-decoration: none;
  transition: 0.3s;
}
.footer__menu .sub-menu a:hover {
  color: var(--color-red500);
}
.footer__menu .sub-menu .current-menu-item a,
.footer__menu .sub-menu .current_page_item a {
  color: #e60012;
}
.footer__sns {
  margin-top: 80px;
}
.footer__snsList {
  display: flex;
  gap: 16px;
}
.footer__snsList li {
  list-style: none;
}
.footer__snsList a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__logo {
  text-align: center;
  margin-bottom: 24px;
}
.footer__logo img {
  width: 8.5rem;
  height: auto;
}
.footer__copyright {
  text-align: center;
  font-size: 1.4222rem;
  color: var(--color-darkGray);
}

.footer__col:nth-child(4) .footer__menu > li > a {
  border: none;
  margin: 0;
  padding: 0;
  font-size: 1.4222rem;
  font-weight: 400;
  margin-bottom: 14px;
}
.footer__col:nth-child(4) .footer__menu > li > a::after {
  display: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 9.5rem;
  z-index: 500;
}
@media (max-width: 600px) {
  .header {
    position: relative;
    height: 70px;
  }
}
.header--hero .header__inner {
  background: transparent;
  box-shadow: none;
}
.header--hero .header__inner::after {
  display: none;
}
.header--hero .header__menu a {
  color: #fff;
}
.header--hero .header__nav {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  pointer-events: none;
}
.header--hero.is-show .header__nav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.header__inner {
  position: relative;
  max-width: 110rem;
  height: 7.5rem;
  margin: 2rem auto;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--color-white);
  border-radius: 1000px;
  --shadow-opacity: 0;
}
.header__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  opacity: var(--shadow-opacity);
  transition: opacity 0.4s ease;
  pointer-events: none;
}
@media (max-width: 600px) {
  .header__inner {
    padding: 0 20px;
    box-shadow: none;
  }
}
.header__logo {
  flex-shrink: 0;
}
.header__logo a {
  display: block;
}
.header__logo img {
  display: block;
  height: 3.2rem;
}
@media (max-width: 600px) {
  .header__logo img {
    height: 24px;
  }
}
.header__nav {
  margin-left: auto;
  transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s ease;
}
@media (max-width: 600px) {
  .header__nav {
    display: none;
  }
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 60px;
}
.header__menu li {
  list-style: none;
}
.header__menu a {
  color: var(--color-black);
  text-decoration: none;
  font-size: 1.6rem;
  transition: opacity 0.3s;
}
.header__menu a:hover {
  opacity: 0.7;
}
.header__hamburger {
  display: none;
}
@media (max-width: 600px) {
  .header__hamburger {
    position: fixed;
    top: 1.5rem;
    right: 2rem;
    z-index: 1000;
    width: 48px;
    height: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);
  }
}
.header__hamburger span {
  width: 20px;
  height: 2px;
  background: #111;
  border-radius: 2px;
}

.drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 999;
  transition: right 0.4s ease;
  overflow-y: auto;
}
@media (max-width: 600px) {
  .drawer {
    display: block;
  }
}
.drawer.is-active {
  right: 0;
}
.drawer .header__logo {
  padding: 2.4rem;
}
.drawer .header__logo img {
  width: 180px;
  height: auto;
}

.drawer__menu {
  list-style: none;
  margin: 0;
  padding: 0 2.4rem;
}
.drawer__menu li {
  border-bottom: 1px solid #d9d9d9;
}
.drawer__menu a {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 2rem 0;
  color: #111;
  font-size: 1.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.3s;
}
.drawer__menu a:hover {
  opacity: 0.7;
}

.header__hamburger span {
  transition: 0.3s;
}

/* active時 */
.header__hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header__drawer-nav ul {
  list-style: none;
  padding: 0;
}

.header__drawer-nav li {
  margin: 2rem 0;
}

.header__drawer-nav a {
  font-size: 2rem;
  text-decoration: none;
  color: #111;
}

.header--hero .js-header-logo {
  content: url("../img/logo/robon-white.svg");
}

.c-inner {
  max-width: 110rem;
  margin: 0 auto;
  padding: 5rem 3rem;
}
@media (max-width: 1200px) {
  .c-inner {
    padding: 5rem 3rem;
  }
}
@media (max-width: 900px) {
  .c-inner {
    padding: 3rem;
  }
}

body.is-fixed {
  overflow: hidden;
}

.tag--zeimu {
  background-color: var(--color-blue500);
}

.tag--aikessan {
  background-color: var(--color-red500);
}

.tag--romu {
  background-color: var --color-orenge500;
}

.sp {
  display: none;
}
@media (max-width: 600px) {
  .sp {
    display: block;
  }
}

.contact-form__label {
  min-width: 28rem;
}
.contact-form__label p {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 0;
}
.contact-form__label span:first-child {
  font-size: 2rem;
  font-weight: 700;
}

.required,
.optional {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 6rem;
  height: 3rem;
  font-size: 1.2rem;
  line-height: 1;
}

.required {
  color: #ff4b3e;
  border: 1px solid #ff4b3e;
}

.optional {
  color: #999;
  border: 1px solid #ccc;
}

.wpcf7 {
  width: 100%;
}

.wpcf7 form {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.wpcf7-form-control-wrap {
  display: block;
}

.wpcf7-text,
.wpcf7-email,
.wpcf7-tel,
.wpcf7-textarea {
  width: 100%;
  height: 6rem;
  padding: 0 2rem;
  border: none;
  background: #f7f7f7;
  border-radius: 0.8rem;
  font-size: 1.6rem;
}
.wpcf7-text:focus,
.wpcf7-email:focus,
.wpcf7-tel:focus,
.wpcf7-textarea:focus {
  outline: 2px solid #ef5b4c;
}

.wpcf7-textarea {
  min-height: 20rem;
  padding-top: 2rem;
}

.wpcf7-radio {
  display: flex;
  gap: 3rem;
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
}

.wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 3rem;
}

.wpcf7-checkbox .wpcf7-list-item {
  margin: 0;
}

.form-policy {
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.8;
}

.wpcf7-submit {
  width: 100%;
  max-width: 60rem;
  height: 7rem;
  display: block;
  margin: 0 auto;
  border: none;
  border-radius: 1rem;
  background: #ef5b4c;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}
.wpcf7-submit:hover {
  opacity: 0.8;
}

.contact-form__policy {
  margin-top: 4rem;
  margin-bottom: 2rem;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #666;
}

.wpcf7-acceptance {
  display: flex;
}

.wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}

.wpcf7-acceptance label {
  display: flex;
  gap: 1rem;
  cursor: pointer;
  font-size: 1.6rem;
}

.wpcf7 .wpcf7-response-output {
  display: none;
}

.hero {
  position: relative;
  height: 100vh;
}
@media (max-width: 600px) {
  .hero {
    top: -100px;
  }
}
.hero__sticky {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__video--overlay {
  z-index: 2;
  mix-blend-mode: screen;
  opacity: 0;
  filter: blur(0px) brightness(1.1);
}
.hero__video--main {
  z-index: 1;
}
.hero__video--scroll {
  z-index: 1;
  opacity: 0;
  z-index: 1;
  object-fit: cover;
  filter: none;
  opacity: 0;
  mix-blend-mode: normal;
  image-rendering: auto;
  backface-visibility: hidden;
  will-change: auto;
}
.hero__mask {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: radial-gradient(circle, transparent 20%, rgba(0, 0, 0, 0.25) 55%, rgba(0, 0, 0, 0.7) 100%);
}
.hero__content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #fff;
  text-align: center;
}
.hero__title {
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: center;
  will-change: transform, opacity;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  line-height: 1.1;
  font-size: clamp(14rem, 20vw, 25rem);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.hero__title span {
  display: block;
  font-size: 0.5em;
}
.hero__subtitle {
  margin-top: 2rem;
  font-size: 3.2rem;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(20px);
  will-change: transform, opacity;
  line-height: 150%;
}
.hero .hero__sound {
  position: absolute;
  right: 4rem;
  bottom: 4rem;
  z-index: 500;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.hero .hero__soundBtn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(15, 14, 14, 0.25);
  backdrop-filter: blur(10px);
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}
.hero .hero__soundBtn:hover {
  background: #000;
}

.hero__sound p {
  color: var(--color-white);
  transition: color 0.9s ease;
}

body.hero-white .hero__sound p {
  color: var(--color-black);
}

html.hero-loading,
body.hero-loading {
  overflow: hidden;
  height: 100%;
}

.hero__white {
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  z-index: 20;
}
.hero__black {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0;
  z-index: 40;
  pointer-events: none;
}
.hero__ending {
  position: absolute;
  inset: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #000;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: background 0.8s ease, color 0.8s ease, opacity 0.5s ease;
}
.hero__ending.is-show {
  opacity: 1;
  background: #fff;
  color: #111;
}
.hero__ending .c-inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero__ending .fv__logo {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.hero__ending .fv__logo img {
  width: 100%;
  display: block;
  transition: opacity 0.6s ease;
}
.hero__ending .fv__logo .logo-white {
  opacity: 1;
}
.hero__ending .fv__logo .logo-black {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.hero__ending.is-show .fv__logo .logo-white {
  opacity: 0;
}
.hero__ending.is-show .fv__logo .logo-black {
  opacity: 1;
}

.fv__message {
  max-width: 1100px;
  margin: 80px auto 0;
}

.fv__message p {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
}
.fv__message p:not(:first-child) {
  margin-top: 40px;
}

.news {
  background-color: var(--color-darkWhite);
  overflow: hidden;
}
.news__bg {
  height: 50rem;
  opacity: 0;
  transform: translate3d(100%, 0, -100);
  will-change: transform;
  background-color: var(--color-lightGray);
}
.news .c-inner {
  position: relative;
  margin-top: -40rem;
  z-index: 2;
}
.news .c-inner .sectionHead {
  opacity: 0;
  transform: translateY(40px);
  margin-bottom: 3rem;
}
.news .c-inner .newsContent {
  opacity: 0;
  transform: translateY(40px);
  position: relative;
  display: grid;
  grid-template-columns: 22rem 1fr;
  gap: 2rem;
  background: var(--color-white);
  padding: 5rem 3rem 7rem 0;
  margin-bottom: 5rem;
}
@media (max-width: 600px) {
  .news .c-inner .newsContent {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
}
.news .c-inner .newsContent::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100vw;
  width: 100vw;
  height: 100%;
  background: var(--color-white);
}
@media (max-width: 600px) {
  .news .c-inner .newsContent::before {
    content: none;
  }
}

.service {
  background: var(--color-white);
}
.service__wrap {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: minmax(0, 50rem) 1fr;
  gap: 4rem;
}
@media (max-width: 600px) {
  .service__wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.service__visual img {
  display: block;
  width: 100%;
  height: auto;
}
.service__list {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.serviceCard {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background: #fff;
  border-radius: 2rem;
  text-decoration: none;
  transition: 0.3s;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.serviceCard:hover {
  border-color: var(--color-lightGray);
  box-shadow: 0.1rem 0.1rem 0.2rem rgba(0, 0, 0, 0.25);
  transform: translateY(-4px);
}
.serviceCard:hover .c-arrow {
  color: var(--color-red500);
}
.serviceCard:hover:active {
  transform: translateY(-2px);
}
.serviceCard__logo {
  width: 14rem;
  flex-shrink: 0;
}
.serviceCard__logo img {
  width: 100%;
  display: block;
}
.serviceCard__content {
  flex: 1;
}
.serviceCard__content h3 {
  font-weight: 700;
}
.serviceCard__arrow {
  flex-shrink: 0;
  font-size: 4rem;
  color: #ff0000;
}

.case {
  background: var(--color-darkWhite);
}
.caseSliderWrap {
  position: relative;
}
.caseSlider {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4rem 0;
}
.caseSlider::-webkit-scrollbar {
  display: none;
}
.caseSlider__nav {
  position: absolute;
  top: -8rem;
  right: 0;
  display: flex;
  gap: 25px;
}
.caseSlider__nav button {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: none;
  background: #222;
  color: #fff;
  font-size: 25px;
  cursor: pointer;
}
.caseCard {
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
  position: relative;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}
.caseCard::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  padding: 1.5px;
  background: var(--linear-gradient);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: 0.3s;
  pointer-events: none;
  z-index: 2;
}
.caseCard:hover::before {
  opacity: 1;
}
.caseCard:hover img {
  transform: scale(1.05);
}
.caseCard a {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}
.caseCard a:hover {
  transform: translateY(-3px);
}
.caseCard a:active {
  transform: translateY(2px);
}
.caseCard figure {
  height: 220px;
  margin: 0;
  overflow: hidden;
}
.caseCard figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s;
}
.caseCard__body {
  padding: 25px;
}
.caseCard__tag {
  display: inline-block;
  background: #009ee8;
  color: #fff;
  padding: 5px 8px;
  font-size: 13px;
}
.caseCard h3 {
  margin: 15px 0;
  font-size: 16px;
  line-height: 1.7;
}
.caseCard p {
  font-size: 14px;
  line-height: 1.8;
}
.caseNext, .casePrev {
  transition: opacity 0.3s ease;
}
.caseNext.is-disabled, .casePrev.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.casePrev svg {
  transform: scaleX(-1);
}

@media (max-width: 600px) {
  .caseCard {
    flex: 0 0 80%;
  }
  .caseSlider__nav {
    top: -90px;
  }
}
/* =========================
Company
========================= */
.company {
  background-color: var(--color-darkWhite);
  overflow: hidden;
}
.company__inner {
  position: relative;
  display: grid;
  grid-template-columns: 50rem 1fr;
  gap: 12rem;
  background: var(--color-white);
  padding: 0 1rem;
}
@media (max-width: 600px) {
  .company__inner {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
}
.company__inner::after {
  content: "";
  position: absolute;
  top: 0;
  right: -100vw;
  width: 100vw;
  height: 100%;
  background: var(--color-white);
}
.company__image {
  position: relative;
}
@media (max-width: 600px) {
  .company__image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 1.6rem;
    height: auto;
    order: 2;
  }
}
.company__mainImage {
  position: absolute;
  left: 2rem;
  width: 22rem;
  z-index: 2;
}
@media (max-width: 600px) {
  .company__mainImage {
    position: static;
    width: 100%;
  }
}
.company__mainImage img {
  width: 100%;
  display: block;
}
.company__subImage {
  position: absolute;
  bottom: 0;
  left: 26rem;
  width: 25rem;
}
@media (max-width: 600px) {
  .company__subImage {
    position: static;
    width: 100%;
  }
}
.company__subImage img {
  width: 100%;
  display: block;
}
.company__content {
  padding: 7rem 0;
  max-width: 55rem;
}
@media (max-width: 600px) {
  .company__content {
    order: 1;
  }
}
.company__content p {
  margin-top: 6rem;
  font-size: 1.8rem;
  line-height: 2;
  font-weight: 500;
}
.company__content .c-btn {
  margin-top: 5rem;
}

/* =========================
Contact
========================= */
.contact {
  padding: 5rem 0;
}
.contact__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 55px 0;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
}
@media (max-width: 600px) {
  .contact__wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    padding: 35px 0;
  }
}
.contact .contact__button {
  width: 320px;
  height: 88px;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 55px;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: 0.5s ease;
}
.contact .contact__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact .contact__icon svg {
  width: 22px;
  height: 22px;
}

.page {
  background: var(--color-lightGray);
  padding-bottom: 10rem;
}
.page p {
  margin-bottom: 2rem;
}
.page__head {
  padding-top: 15rem;
  text-align: center;
  margin-bottom: 6rem;
}
.page__title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 0.8rem;
}
.page__subtitle {
  margin-bottom: 2rem;
  color: var(--color-red500);
}
.page__content {
  max-width: 92rem;
  margin: 0 auto;
  padding: 8rem;
  background: #fff;
  border-radius: 3rem;
}
@media (max-width: 600px) {
  .page__content {
    padding: 2rem;
    margin: 1rem;
  }
}

.page__hero {
  padding-bottom: 5rem;
}
.page__hero p {
  margin-bottom: 2rem;
}
.page__hero__head {
  background: var(--color-lightGray);
  min-height: 32rem;
  display: flex;
  align-items: center;
}
.page__hero__head__Inner {
  margin-top: 5rem;
  width: 100%;
  max-width: 110rem;
  margin-inline: auto;
  padding-inline: 4rem;
}
.page__hero__head__title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.2rem;
}
.page__hero__head__subtitleWrap {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.page__hero__head__subtitle {
  color: var(--color-red500);
  font-weight: 700;
  margin-bottom: 0;
}
.page__hero__content {
  max-width: 110rem;
  margin-inline: auto;
  padding: 4rem 4rem 8rem 4rem;
}

.page-company h2 {
  margin: 4rem 0rem 2rem 0rem;
}
.page-company h3 {
  margin: 1rem 0 2rem;
}
.page-company .wp-block-table {
  margin: 0 auto;
  max-width: 1080px;
}
.page-company .wp-block-table table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  background: #fff;
}
.page-company .wp-block-table table td:first-child {
  width: 30%;
  font-weight: 600;
  color: var(--color-darkGray);
}
.page-company .wp-block-table table td:last-child {
  width: 70%;
}
.page-company .wp-block-table th,
.page-company .wp-block-table td {
  border: none;
  padding: 3rem 0;
  font-size: 1.6rem;
}
.page-company .wp-block-table tr {
  border-top: 1px solid #e5e5e5;
}
.page-company .wp-block-table tr:last-child {
  border-bottom: 1px solid #e5e5e5;
}
.page-company tbody tr {
  border-top: 1px solid #e5e5e5;
}
.page-company tbody tr:last-child {
  border-bottom: 1px solid #e5e5e5;
}
@media (max-width: 600px) {
  .page-company .wp-block-table table,
  .page-company .wp-block-table tbody,
  .page-company .wp-block-table tr,
  .page-company .wp-block-table th,
  .page-company .wp-block-table td {
    display: block;
    width: 100%;
  }
  .page-company .wp-block-table tbody tr {
    padding: 24px 0;
  }
  .page-company .wp-block-table th,
  .page-company .wp-block-table td {
    padding: 0;
  }
  .page-company .wp-block-table th {
    margin-bottom: 12px;
    width: 100%;
  }
  .page-company .wp-block-table td {
    margin-bottom: 8px;
  }
}

/*# sourceMappingURL=main.css.map */
