@charset "UTF-8";
/*
Theme Name: gandn
Theme URI: https://gandn.biz/
Description: 自作のWordPressテーマ
Version: 1.0
Author: suzuki-d
*/
body.admin-bar {
  margin-top: 0 !important;
}

body {
  font-family: sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.site-header,
.site-footer {
  background: #f5f5f5;
  padding: 1em;
}

.container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}

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

hr {
  border: none;
}

html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #fff;
}

body:not(.home) .site-header {
  background-color: #000;
}

h2 {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: clamp(4.2rem, 14vw, 5.2rem);
  line-height: 1;
}

img {
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s;
}
a:hover {
  color: rgba(255, 255, 255, 0.5);
}

a[href^="tel:"]:hover {
  color: inherit;
}

.admin-bar .header {
  top: 32px;
}

@media screen and (max-width: 767px) {
  .admin-bar .header {
    top: 46px;
  }
}
.contents__width {
  margin: 0 auto;
  background-color: #000;
  color: #fff;
}

body {
  background-color: #000;
  position: relative;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  position: fixed;
  z-index: 99;
  width: 100%;
  top: 0;
  transition: background-color 0.3s ease;
  background-color: transparent;
}
.header.scrolled {
  background-color: #000;
}
.header .hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.header .hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #333;
}
.header .nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.header .nav a {
  position: relative;
  text-decoration: none;
  color: inherit;
}
.header .nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.header .nav a:hover::after {
  transform: scaleX(1);
}
.header .nav li.current a::after {
  transform: scaleX(1);
}
@media (max-width: 768px) {
  .header .hamburger {
    display: flex;
  }
  .header .nav {
    z-index: 98;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    color: #000;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    pointer-events: none;
  }
  .header .nav ul {
    flex-direction: column;
    padding: 1rem;
  }
  .header .nav.active {
    display: block;
    max-height: 70vh;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background-color: #eaea3c;
    padding: 60px 0px;
  }
}

.footer__contents {
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin: 80px auto 0;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .footer__contents {
    flex-direction: column-reverse;
  }
}

.footer__left__logo {
  width: 30%;
}

.footer__left__company {
  padding: 20px 0;
}

.footer__left__address {
  font-size: 0.875rem;
}

.footer__right {
  display: flex;
  gap: 40px;
  font-size: 0.875rem;
  line-height: 3;
}
@media (max-width: 768px) {
  .footer__right {
    flex-direction: column;
    margin-bottom: 50px;
  }
}

.footer__right__business li:nth-child(n+2)::before {
  content: "− ";
  left: 0;
}

.footer__right__company li:nth-child(n+2)::before {
  content: "− ";
  left: 0;
}

.footer__copyright {
  text-align: center;
  font-size: 12px;
  margin-top: 80px;
}

.page-format__container {
  margin: 50px 0 100px;
}
.page-format__body h3 {
  font-size: 1.3rem;
  margin-top: 30px;
  margin-bottom: 10px;
}

.fv {
  width: 100vw;
  aspect-ratio: 16/9;
  overflow: hidden;
}
@media (max-width: 768px) {
  .fv {
    height: 100vh;
    aspect-ratio: auto;
  }
}
.fv__video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.section__bkimg--about {
  background-image: url("../img/about_back.jpg");
  height: 1000px;
  background-position: center;
  background-size: cover;
  position: relative;
}
@media (max-width: 768px) {
  .section__bkimg--about {
    height: auto;
  }
}
.section__bkimg--about--overlay {
  display: none;
}
@media (max-width: 768px) {
  .section__bkimg--about--overlay {
    display: block;
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
  }
}
.section__bkimg--office {
  background-image: url("../img/office_back.jpg");
  background-size: cover;
  height: 1500px;
  background-position: center;
  position: relative;
}
@media (max-width: 768px) {
  .section__bkimg--office {
    background-size: 160%;
    background-position: 45% 20%;
    height: auto;
  }
}
.section__bkimg--office--overlay {
  display: none;
}
@media (max-width: 768px) {
  .section__bkimg--office--overlay {
    display: block;
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
  }
}
.section__bkimg--recruit {
  background-image: url("../img/recruit_back.jpg");
  background-size: cover;
  height: 620px;
  background-position: center;
  padding-top: 100px;
}
@media (max-width: 768px) {
  .section__bkimg--recruit {
    padding-top: 0px;
    height: auto;
    padding-bottom: 60px;
    background-position: 90% 0%;
  }
}
.section__footer {
  position: relative;
  margin-top: 500px;
}
@media (max-width: 768px) {
  .section__footer {
    margin-top: 0px;
  }
}
.section__service {
  height: 500px;
  display: flex;
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .section__service {
    height: auto;
    flex-direction: column;
    margin-bottom: 50px;
  }
}
.section__service__left {
  background-image: url("../img/service_mk.jpg");
  width: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .section__service__left {
    height: 350px;
    padding-bottom: 50px;
  }
}
.section__service__right {
  background-image: url("../img/service_ct.jpg");
  width: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .section__service__right {
    height: 350px;
    padding-bottom: 50px;
  }
}

.text-bk {
  color: #000;
}

.section__office__city {
  position: absolute;
  top: 360px;
}
@media (max-width: 768px) {
  .section__office__city {
    display: none;
  }
}
.section__office__city span {
  display: block;
  font-size: 70px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.4);
  padding: 0 0 20px 0;
}

.about {
  position: relative;
}
.about__bkimg {
  background-image: url(../img/about_page_back.jpg);
  height: 500px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.about__contents {
  display: flex;
  padding-top: 130px;
  height: 1200px;
}
@media (max-width: 768px) {
  .about__contents {
    height: auto;
    padding-top: 0px;
  }
}
.about__contents__text {
  max-width: 420px;
  position: relative;
}
@media (max-width: 768px) {
  .about__contents__text {
    margin-bottom: 100px;
  }
}
.about__contents__text p {
  margin-top: 70px;
  line-height: 2;
}
.about__contents__border {
  width: 100vw;
  height: 1px;
  background-color: transparent;
  position: absolute;
  right: 0;
}
.about__contents__border::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s ease-out;
}
.about__contents__border.is-visible::before {
  transform: scaleX(1);
}
.about__contents__img {
  width: 100%;
}
@media (max-width: 768px) {
  .about__contents__img {
    display: none;
  }
}
.about__contents__img--wrapper {
  position: absolute;
  left: 60vw;
}

.about__service {
  margin-bottom: 120px;
}
@media (max-width: 768px) {
  .about__service img {
    margin-bottom: 50px;
  }
}
.about__service--up {
  display: flex;
}
@media (max-width: 768px) {
  .about__service--up {
    flex-direction: column;
  }
}
.about__service__left {
  position: relative;
  display: inline-block;
}
.about__service__left:hover .about__service--hover {
  opacity: 1;
}
.about__service__left:hover .about__service--normal {
  opacity: 0;
}
.about__service__left img {
  display: block;
  max-width: 100%;
  height: auto;
  transition: opacity 0.3s ease;
}
.about__service__right {
  position: relative;
  display: inline-block;
}
.about__service__right:hover .about__service--hover {
  opacity: 1;
}
.about__service__right:hover .about__service--normal {
  opacity: 0;
}
.about__service__right img {
  display: block;
  max-width: 100%;
  height: auto;
  transition: opacity 0.3s ease;
}
.about__service--down {
  display: flex;
}
@media (max-width: 768px) {
  .about__service--down {
    flex-direction: column;
  }
}
.about__service--hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.about__childpage__text {
  font-size: 1.125rem;
  padding-top: 100px;
  line-height: 2.2;
}
@media (max-width: 768px) {
  .about__childpage__text {
    font-size: 1rem;
  }
}
.about__childpage__text ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.125rem;
  padding: 1.7rem 0;
  border-bottom: 1px solid #fff;
}
.about__childpage__text ul:last-child {
  border-bottom: none;
}
@media (max-width: 768px) {
  .about__childpage__text ul {
    flex-direction: column;
  }
}
.about__childpage__text p {
  max-width: 420px;
}
@media (max-width: 768px) {
  .about__childpage__text p {
    font-size: 1rem;
  }
}
.about__childpage__link {
  padding: 140px 0px;
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .about__childpage__link {
    padding: 100px 0px;
  }
}
.about__childpage__link ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 768px) {
  .about__childpage__link ul {
    flex-direction: column;
  }
}
.about__childpage__link li {
  position: relative;
  padding: 0 5em;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__childpage__link li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 1px;
  left: 100%;
  background-color: #ccc; /* 任意の線の色 */
}
@media (max-width: 768px) {
  .about__childpage__link li {
    padding: 1em 0;
  }
  .about__childpage__link li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 1px;
    margin-top: 0.5em;
    display: none;
  }
}
.about__childpage__list--title {
  width: 250px;
}
.about__childpage__list--contents {
  flex: 1;
}

.philosophy {
  background-image: url(../img/philosophy_page_back.jpg);
  height: 900px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.message {
  background-image: url(../img/message_page_back.jpg);
  height: 900px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 768px) {
  .message {
    height: auto;
    padding-bottom: 100px;
  }
}

.profile {
  background-image: url(../img/profile_page_back.jpg);
  height: 900px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 768px) {
  .profile {
    height: auto;
    padding-bottom: 100px;
  }
}

.offices {
  background-image: url(../img/offices_page_back.jpg);
  height: 900px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 768px) {
  .offices {
    height: auto;
  }
}

.offices__map__contents {
  margin-bottom: 120px;
}
.offices__map__title {
  display: flex;
  gap: 2rem;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .offices__map__title {
    gap: 0.5rem;
    flex-wrap: wrap;
    flex-direction: column;
  }
}
.offices__map__title--name {
  font-size: 1.5rem;
  position: relative;
  display: inline-block;
  line-height: 1.2;
}
.offices__map__title--name::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 1.2em;
  background-color: #ccc;
}
.offices__map__title--ad {
  font-size: 0.875rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .offices__map__googlemap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
  }
}
@media (max-width: 768px) {
  .offices__map__googlemap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
}

.contact {
  padding: 0 20px;
}
@media (max-width: 768px) {
  .contact__text {
    text-align: left;
  }
}

.contact__area {
  background-color: #fff;
  color: #000;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  padding: 0 20px;
}

.contact__inner {
  padding: 130px 0;
  max-width: 1060px;
  margin: 0 auto;
}

.contact__means {
  text-align: center;
  padding-top: 80px;
}

.contact__tel {
  margin-bottom: 30px;
}
.contact__tel__icon {
  margin: 130px 0 20px;
  text-align: center;
}
.contact__tel__number {
  pointer-events: none;
  cursor: default;
}
@media (max-width: 768px) {
  .contact__tel__number {
    pointer-events: auto;
    cursor: pointer;
  }
}
.contact__tel span {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 56px;
  letter-spacing: 0.2rem;
  line-height: 1;
}
@media (max-width: 768px) {
  .contact__tel span {
    font-size: 40px;
  }
}
.contact__tel p {
  font-size: 1rem;
}

.contact__form {
  max-width: 650px;
  margin: 140px auto 0;
}
.contact__form__group {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}
.contact__form__box {
  padding: 10px;
  background-color: #fff;
  border-radius: 5px;
  margin-top: 5px;
  width: 100%;
}
.contact__form__box:invalid {
  color: rgb(133, 133, 133);
}
.contact__form__check {
  margin: 40px 0 80px;
}

.must::after {
  content: "必須";
  font-size: 0.8rem;
  background-color: #ce3f3f;
  color: #fff;
  padding: 0 5px;
  border-radius: 3px;
  margin-left: 4px;
}

.wpcf7-spinner {
  display: none !important;
}

.service {
  position: relative;
  margin-bottom: 200px;
}
@media (max-width: 768px) {
  .service {
    margin-bottom: 0px;
  }
}
.service__bkimg {
  background-image: url(../img/service_page_back.jpg);
  height: 500px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.service__contents {
  display: flex;
  padding-top: 130px;
  height: 1100px;
}
@media (max-width: 768px) {
  .service__contents {
    height: auto;
    padding-bottom: 50px;
  }
}
.service__contents__text {
  max-width: 420px;
  position: relative;
  margin-top: 80px;
}
.service__contents__text p {
  margin-top: 70px;
  line-height: 2.5;
}
.service__contents__border {
  width: 100vw;
  height: 1px;
  background-color: transparent;
  position: absolute;
  right: 0;
  top: -80px;
}
.service__contents__border::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s ease-out;
}
.service__contents__border.is-visible::before {
  transform: scaleX(1);
}
.service__contents__img {
  width: 100%;
}
.service__contents__img--wrapper {
  position: absolute;
  left: 60vw;
}
.service__contents__img--wrapper::before {
  display: none;
}
@media (max-width: 768px) {
  .service__contents__img--wrapper {
    left: 30vw;
    z-index: -1;
  }
  .service__contents__img--wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: block;
  }
}

.marketing-strategy {
  position: relative;
  margin-bottom: 200px;
}
@media (max-width: 768px) {
  .marketing-strategy {
    margin-bottom: 100px;
  }
}
.marketing-strategy__bkimg {
  background-image: url(../img/marketing-strategy_page_back.jpg);
  height: 500px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.marketing-strategy__contents {
  display: flex;
  padding-top: 130px;
  padding-bottom: 100px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .marketing-strategy__contents {
    flex-direction: column;
    padding-bottom: 0;
  }
}
.marketing-strategy__contents__wrapper {
  max-width: 420px;
  position: relative;
  margin-top: 0;
  padding-right: 30px;
}
@media (max-width: 768px) {
  .marketing-strategy__contents__wrapper {
    padding-right: 0;
  }
}
.marketing-strategy__contents__title h2 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: clamp(3.625rem, 14vw, 4.625rem);
  line-height: 1;
}
.marketing-strategy__contents__border {
  width: 100vw;
  height: 1px;
  background-color: transparent;
  position: absolute;
  right: 0;
  top: 30px;
}
.marketing-strategy__contents__border::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease-out;
}
.marketing-strategy__contents__border.is-visible::before {
  transform: scaleX(1);
}
.marketing-strategy__contents__img {
  width: 100%;
  position: relative;
  padding-top: 100px;
}
@media (max-width: 768px) {
  .marketing-strategy__contents__img {
    padding-top: 70px;
  }
}
.marketing-strategy__contents__text {
  max-width: 485px;
}
@media (max-width: 768px) {
  .marketing-strategy__contents__text {
    padding-top: 40px;
  }
}
.marketing-strategy__contents__text span {
  font-size: 1.5rem;
  font-weight: 800;
}
.marketing-strategy__contents__text p {
  line-height: 2.5;
  padding-top: 40px;
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .marketing-strategy__contents__text p {
    font-size: 1rem;
  }
}

.creative-promotion {
  position: relative;
  margin-bottom: 200px;
}
@media (max-width: 768px) {
  .creative-promotion {
    margin-bottom: 100px;
  }
}
.creative-promotion__bkimg {
  background-image: url(../img/creative-promotion_page_back.jpg);
  height: 500px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.creative-promotion__contents {
  display: flex;
  padding-top: 130px;
  padding-bottom: 100px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .creative-promotion__contents {
    flex-direction: column;
    padding-bottom: 0;
  }
}
.creative-promotion__contents__wrapper {
  max-width: 420px;
  position: relative;
  margin-top: 0;
  padding-right: 30px;
}
@media (max-width: 768px) {
  .creative-promotion__contents__wrapper {
    padding-right: 0;
  }
}
.creative-promotion__contents__title h2 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: clamp(3.625rem, 14vw, 4.625rem);
  line-height: 1;
}
.creative-promotion__contents__border {
  width: 100vw;
  height: 1px;
  background-color: transparent;
  position: absolute;
  right: 0;
  top: 30px;
}
.creative-promotion__contents__border::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease-out;
}
.creative-promotion__contents__border.is-visible::before {
  transform: scaleX(1);
}
.creative-promotion__contents__img {
  width: 100%;
  position: relative;
  padding-top: 100px;
}
@media (max-width: 768px) {
  .creative-promotion__contents__img {
    padding-top: 70px;
  }
}
.creative-promotion__contents__text {
  max-width: 485px;
}
@media (max-width: 768px) {
  .creative-promotion__contents__text {
    padding-top: 40px;
  }
}
.creative-promotion__contents__text span {
  font-size: 1.5rem;
  font-weight: 800;
}
.creative-promotion__contents__text p {
  line-height: 2.5;
  padding-top: 40px;
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .creative-promotion__contents__text p {
    font-size: 1rem;
  }
}

.page__title {
  padding-top: 95px;
  background-color: #fff;
}
.page__title__inner {
  padding: 60px 20px 30px;
}
.page__title--text {
  color: #000;
}
.page__title--text h1 {
  font-size: clamp(3.75rem, 14vw, 8.75rem);
  font-family: "Inter", sans-serif;
  font-weight: 900;
  line-height: 0.8;
}
.page__title--text p {
  font-size: 1.125rem;
  padding-top: 10px;
  font-weight: 800;
}
.page__title__pan {
  background-color: #000;
  color: #fff;
  font-size: 12px;
  padding: 5px 0;
}

.section__title h2 {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: clamp(4.2rem, 14vw, 5.2rem);
  line-height: 1;
}
.section__title p {
  font-size: 20px;
}

.section__cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  position: relative;
  z-index: 10;
  max-width: 1060px;
  margin: 0 auto;
}
.section__cta__text {
  font-size: 1rem;
  font-weight: bold;
}
.section__cta__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  background-color: transparent;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.3s;
  border: 1px #fff solid;
}
.section__cta__arrow:hover {
  background-color: #fff;
  color: #000;
}
.section__cta__icon {
  width: 40px;
  height: 40px;
}
.section__cta__icon:hover {
  color: #000;
}

.recruit__cta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  position: relative;
  z-index: 10;
}
.recruit__cta__text {
  font-size: 1rem;
  font-weight: bold;
}
.recruit__cta__arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  background-color: transparent;
  color: #000;
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.3s;
  border: 1px #000 solid;
}
.recruit__cta__arrow:hover {
  background-color: #fff;
  color: #000;
}
.recruit__cta__icon {
  width: 40px;
  height: 40px;
}

.section {
  margin-top: 200px;
}
@media (max-width: 768px) {
  .section {
    margin-top: 100px;
  }
}
.section__contents {
  position: relative;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 20px;
}
.section__border__long {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  z-index: 10;
  height: 1px;
  background-color: transparent;
}
.section__border__long::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.5s ease-out;
}
.section__border__long.is-visible::before {
  transform: scaleX(1);
}
.section__inner {
  display: flex;
  justify-content: space-between;
  padding: 80px 0 100px;
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .section__inner {
    padding: 40px 0 90px;
    flex-direction: column;
  }
}
.section__inner--recruit {
  display: flex;
  justify-content: space-between;
  padding: 80px 0 80px;
  position: relative;
  z-index: 10;
}
@media (max-width: 768px) {
  .section__inner--recruit {
    flex-direction: column;
    padding: 80px 0 50px;
  }
}
.section__description {
  max-width: 420px;
  z-index: 10;
  line-height: 2;
}
@media (max-width: 768px) {
  .section__description {
    max-width: 100%;
    padding-top: 80px;
  }
}
.section__border__short {
  position: absolute;
  left: 50%;
  width: 40vw;
  margin-left: -50vw;
  margin-top: 280px;
  top: 0;
  z-index: 10;
  height: 1px;
  background-color: transparent;
}
.section__border__short::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s ease-out;
}
.section__border__short.is-visible::before {
  transform: scaleX(1);
}
@media (max-width: 768px) {
  .section__border__short {
    margin-top: 180px;
  }
}
.section__border__short--recruit {
  position: absolute;
  left: 50%;
  width: 40vw;
  margin-left: -50vw;
  margin-top: 280px;
  top: 0;
  z-index: 10;
  height: 1px;
  background-color: transparent;
}
.section__border__short--recruit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #000;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s ease-out;
}
.section__border__short--recruit.is-visible::before {
  transform: scaleX(1);
}
@media (max-width: 768px) {
  .section__border__short--recruit {
    margin-top: 210px;
  }
}
.section__bkimg {
  background-repeat: no-repeat;
  background-position: center;
}
.section__subimg {
  position: relative;
  right: 50%;
  width: 60vw;
  margin-left: auto;
  margin-top: 150px;
  margin-right: -50vw;
  z-index: 10;
}
@media (max-width: 768px) {
  .section__subimg {
    width: 100vw;
    margin-top: 40px;
  }
}

.btn__wt {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 250px;
  margin: 0 auto;
  padding: 0.8em 2em;
  border: none;
  border-radius: 50px;
  background-color: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 1em;
  border: 1px #fff solid;
}
.btn__wt::after {
  transform: rotate(45deg);
  width: 10px;
  height: 10px;
  margin-left: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
}
.btn__wt:hover {
  background-color: #fff;
  color: #000;
  transition: 0.3s;
}
.btn__wt:hover::after {
  transform: rotate(45deg);
  width: 10px;
  height: 10px;
  margin-left: 10px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  content: "";
  transition: 0.3s;
}

.btn__bk {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 250px;
  margin: 0 auto;
  padding: 0.8em 2em;
  border: none;
  border-radius: 50px;
  background-color: transparent;
  color: #000;
  font-size: 1em;
  border: 1px #000 solid;
}
.btn__bk::after {
  transform: rotate(45deg);
  width: 10px;
  height: 10px;
  margin-left: 10px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  content: "";
}
.btn__bk:hover {
  background-color: #000;
  color: #fff;
  transition: 0.3s;
}
.btn__bk:hover::after {
  transform: rotate(45deg);
  width: 10px;
  height: 10px;
  margin-left: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
  transition: 0.3s;
}

body.page-slug-recruit {
  background-color: #0050A6;
}
body.page-slug-recruit #header {
  background-color: #0050A6;
}

body.page-slug-recruit .hamburger span {
  background-color: #fff;
}
body.page-slug-recruit .btn__bk:hover {
  background-color: #0050A6;
  border: 1px #0050A6 solid;
}

.recruit__fv {
  background-color: #fff;
  position: relative;
}
.recruit__fv__copy {
  height: 550px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding-top: 95px;
}
@media (max-width: 768px) {
  .recruit__fv__copy {
    height: 100vh;
    padding-top: 25px;
  }
}
.recruit__fv__copy span {
  color: #000;
  font-size: clamp(3.8rem, 7vw, 5.2rem);
  font-weight: 800;
  background-color: #fff;
  line-height: 1;
  padding: 22px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .recruit__fv__copy span {
    font-size: 2.2rem;
    padding: 18px;
    margin-bottom: 20px;
  }
}
.recruit__fv--bkimg {
  position: absolute;
  top: 95px;
  right: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .recruit__fv--bkimg {
    width: 150%;
  }
}
.recruit__contents {
  position: relative;
}
.recruit__contents--copy {
  position: absolute;
  top: -70px;
}
.recruit__contents--pattern {
  text-align: right;
  padding-top: 110px;
  width: 100%;
}
@media (max-width: 768px) {
  .recruit__contents--pattern {
    padding-top: 30px;
  }
}
.recruit__contents--pattern--inversion {
  padding: 110px 0;
  width: 90%;
  transform: scale(-1.1);
  text-align: right;
}
@media (max-width: 768px) {
  .recruit__contents--pattern--inversion {
    padding: 80px 0;
  }
}
.recruit__contents--pattern--inversion img {
  max-width: 40%;
}
.recruit__contents--pattern img {
  max-width: 40%;
}
.recruit__contents__text {
  position: absolute;
  left: 40vw;
  padding-top: 100px;
  font-size: 1.125rem;
  line-height: 2;
}
@media (max-width: 768px) {
  .recruit__contents__text {
    left: 0;
    padding-top: 0;
  }
}
.recruit__contents__work {
  padding-top: 700px;
}
.recruit__contents__work--title {
  text-align: center;
  font-size: 30px;
  padding-bottom: 80px;
}
.recruit__contents__work--symbol {
  margin: 0 auto;
  text-align: center;
  padding: 0 100px;
}
@media (max-width: 768px) {
  .recruit__contents__work--symbol {
    padding: 0 50px;
  }
}
.recruit__contents__work--symbol ul {
  display: flex;
  flex-wrap: wrap;
  gap: 98px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 768px) {
  .recruit__contents__work--symbol ul {
    gap: 75px;
    justify-content: space-between;
  }
}
.recruit__contents__work--symbol ul li {
  flex: 0 0 calc((100% - 196px) / 3);
  box-sizing: border-box;
  width: 100%;
}
@media (max-width: 768px) {
  .recruit__contents__work--symbol ul li {
    flex: 0 0 calc((100% - 150px) / 2);
  }
}
.recruit__contents__work--symbol ul li img {
  min-width: 90px;
  max-width: 120px;
}
@media (max-width: 768px) {
  .recruit__contents__work--symbol ul li img {
    min-width: 80px;
  }
}
.recruit__contents__work--symbol ul li p {
  font-size: 20px;
}
@media (max-width: 768px) {
  .recruit__contents__work--symbol ul li p {
    font-size: 16px;
  }
}
.recruit__img__Scroll {
  margin-top: -550px;
  padding-bottom: 200px;
}
@media (max-width: 768px) {
  .recruit__img__Scroll {
    margin-top: -200px;
    padding-bottom: 70px;
  }
}

.scroll-wrap {
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
}

.scroll-track {
  display: inline-flex;
  animation: scroll-left 20s linear infinite;
  align-items: center;
}

.scroll-track img {
  width: 270px; /* 画像サイズ */
  height: auto;
  margin-right: 60px;
  flex-shrink: 0;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.recruit__job {
  background-color: #fff;
  padding-top: 160px;
}
@media (max-width: 768px) {
  .recruit__job {
    padding-top: 0px;
  }
}
.recruit__job__contents {
  background-color: #fff;
  color: #000;
  background-image: url(../img/recruit_job_img.png);
  background-position: right;
  block-size: auto;
  padding: 110px 0;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .recruit__job__contents {
    background-image: none;
    margin-bottom: 0px;
    padding: 110px 0 50px;
  }
}
.recruit__job__text {
  width: 30vw;
}
@media (max-width: 768px) {
  .recruit__job__text {
    width: 100%;
  }
}
.recruit__job__text span {
  font-size: 35px;
  font-weight: 800;
}
.recruit__job__text p {
  font-size: 1.125rem;
  line-height: 2;
  padding-top: 15px;
}
.recruit__job__img {
  position: absolute;
  right: 0;
}
.recruit__job__mail {
  background-color: #fff;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.inview {
  opacity: 1;
  transform: translateY(0);
}

.fade-up,
.fade-load {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.fade-up.inview,
.fade-load.inview {
  opacity: 1;
  transform: translateY(0);
}/*# sourceMappingURL=style.css.map */