@charset "UTF-8";
html {
  overflow-x: hidden;
  width: 100%;
}

body {
  color: #333;
  background-color: #F4F4F4;
  font-family: "Noto Sans JP", sans-serif;
  overflow-x: hidden;
  letter-spacing: 0.05em;
}

.wrapper {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .wrapper {
    max-width: 375px;
  }
}

#splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FAFF72;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#logo {
  display: none;
}

#mainContent {
  display: none;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
}

@media screen and (max-width: 1024px) {
  header nav {
    display: none;
  }
}
.header-inner {
  max-height: 100px;
  padding: 40px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #F4F4F4;
  opacity: 0.8;
}
.header-inner .nav-wrapper {
  display: flex;
  align-items: center;
  font-family: Poppins;
}
.header-inner .nav-wrapper nav ul {
  display: flex;
  list-style: none;
}
.header-inner .nav-wrapper nav ul li {
  margin-right: 40px;
  position: relative;
}
.header-inner .nav-wrapper nav ul li:last-child {
  margin: 0;
}
.header-inner .nav-wrapper nav ul li a {
  color: #333;
  text-decoration: none;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 480px) {
  .header-inner {
    max-height: 92px;
    padding: 16px 24px;
  }
}

.btn-menu {
  width: 60px;
  height: 60px;
  background-color: #FFF;
  border: #707070 1px solid;
  border-radius: 15px;
  margin-left: 27px;
  font-size: 14px;
  color: #333;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  font-family: Poppins;
}
.btn-menu:hover {
  background-color: #1F286F;
  color: #FFF;
  border: none;
}

#nav-menu {
  position: fixed;
  top: 100px;
  right: 0;
  width: 320px;
  height: 100%;
  background-color: #1F286F;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
}

#nav-menu.is-open {
  transform: translateX(0) !important;
}

#nav-PC li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #333;
  transition: width 0.1s ease;
}

#nav-PC .current-menu-item a::after {
  width: 100%;
}

#nav-PC li a:hover::after {
  width: 100%;
}

/* 他のリンクをホバー中は現在ページの下線を消す */
#nav-PC ul:hover .current-menu-item a::after {
  width: 0;
}

.nav-list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  position: relative;
}
.nav-list li {
  list-style: none;
  height: 70px;
  display: flex;
  align-items: center;
  padding-left: 20px;
  position: relative;
}
.nav-list li a {
  color: #FFF;
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding: 0;
}
.nav-list li:hover {
  background: #036EB8;
}

.nav-list li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #FFF;
  transition: width 0.1s ease;
}

.nav-list li a:hover::after {
  width: 100%;
}

.nav-list .current-menu-item a::after {
  width: 100%;
}

/*  他のリンクにホバー中は現在ページの線を消す */
.nav-list:hover .current-menu-item a::after {
  width: 0;
}

@media screen and (max-width: 480px) {
  #overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    display: none;
    z-index: 900;
  }
  #nav-menu {
    width: 327px;
  }
}
.footer-wrapper {
  height: 110px;
  align-content: center;
  padding-left: 30px;
}
.footer-wrapper .privacy-policy-link {
  color: #333;
  text-decoration: none;
  font-size: 16px;
  font-family: Poppins;
  font-weight: 500;
  padding-bottom: 24px;
}
.footer-wrapper .privacy-policy-link:hover {
  color: #1099D7;
}
.footer-wrapper small {
  color: #707070;
  font-weight: 300;
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.5em;
}
@media screen and (max-width: 480px) {
  .footer-wrapper {
    padding: 0 24px;
    height: 152px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .footer-wrapper .no-break-sp {
    white-space: nowrap;
  }
}

#back-to-top {
  position: fixed;
  bottom: 30px;
  right: -70px;
  width: 70px;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.8);
  color: #1F286F;
  border: #1F286F 1px solid;
  font-family: Poppins;
  font-size: 16px;
  text-align: center;
  align-content: center;
  font-size: 16px;
  text-decoration: none;
  z-index: 999;
  display: block;
}
@media screen and (max-width: 480px) {
  #back-to-top {
    width: 60px;
    height: 60px;
  }
}

.hero {
  position: relative;
}
.hero .hero-image {
  text-align: center;
  margin-top: 200px;
}
.hero .scroll-indicator {
  position: absolute;
  top: 90%;
  left: 14%;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}
.hero .scroll-indicator img {
  width: 20px;
  transition: transform 0.3s ease-out;
  transform-origin: bottom;
}
.hero .scroll-indicator:hover img {
  transform: translateY(-49px) rotate(-180deg);
}
.hero .scroll-indicator .scroll-indicator__text {
  display: inline-block;
  writing-mode: vertical-rl;
  font-size: 14px;
  letter-spacing: 0.2em;
}
.hero .scroll-indicator .scroll-indicator__line {
  position: relative;
  display: block;
  width: 2px;
  height: 70px;
  margin: 10px auto;
  background: #1F286F;
  overflow: hidden;
  transform-origin: bottom;
  transition: transform 0.3s ease-out;
}
.hero .scroll-indicator .scroll-indicator__line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: #ddd;
  animation: scroll-line 2s cubic-bezier(1, 0, 0, 1) infinite;
}
.hero .scroll-indicator:hover .scroll-indicator__line {
  transform: scaleY(1.41);
}

@keyframes scroll-line {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
@media (max-width: 480px) {
  .hero .hero-image {
    margin-top: 156px;
  }
  .hero .hero-image img {
    width: 327px;
    height: 210px;
  }
  .hero .scroll-indicator {
    display: none;
  }
}
.hero-caption {
  margin-top: 411px;
  position: relative;
}
.hero-caption h1 {
  font-size: 36px;
  font-weight: 500;
  text-align: center;
}
.hero-caption p {
  font-size: 140px;
  font-weight: bold;
  font-family: Poppins;
  color: #fff;
  display: inline-block;
  white-space: nowrap;
  animation: scroll 100s linear infinite;
  margin-top: -30px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.hero-bird {
  position: absolute;
  right: 15%;
  top: 80%;
}

.hero-right-circle {
  position: absolute;
  right: 13%;
  width: 62px;
  top: -35%;
}

.hero-right-square-1 {
  position: absolute;
  right: 5%;
  width: 58px;
  top: 45%;
}

.hero-right-square-2 {
  position: absolute;
  right: 10%;
  width: 96px;
  bottom: -80%;
}

.hero-left-circle {
  position: absolute;
  left: 7%;
  width: 62px;
  top: -30%;
}

.hero-left-triangular {
  position: absolute;
  left: 10%;
  width: 45px;
  top: 58%;
}

.hero-left-square {
  position: absolute;
  left: 10%;
  width: 64px;
  bottom: -40%;
}

@media (max-width: 480px) {
  .hero-caption {
    margin-top: 158px;
  }
  .hero-caption h1 {
    font-size: 24px;
  }
  .hero-caption .p-wrapper {
    overflow-x: hidden;
  }
  .hero-caption .p-wrapper p {
    font-size: 30px;
    font-family: Poppins;
    animation: none;
    transform: translateX(-100px);
  }
  .hero-bird {
    position: absolute;
    right: 10%;
    top: 70%;
    width: 25px;
    z-index: -1;
  }
  .hero-right-circle {
    position: absolute;
    right: -2%;
    width: 29px;
    top: -200%;
  }
  .hero-right-square-1 {
    position: absolute;
    right: 0;
    width: 27px;
    top: -18%;
  }
  .hero-right-square-2 {
    position: absolute;
    right: 10%;
    width: 42px;
    bottom: -120%;
  }
  .hero-left-circle {
    position: absolute;
    left: 0;
    width: 28px;
    top: -170%;
  }
  .hero-left-triangular {
    position: absolute;
    left: 10%;
    width: 21px;
    top: 90%;
  }
  .hero-left-square {
    position: absolute;
    left: 10%;
    width: 32px;
    bottom: -120%;
  }
}
.company {
  margin: 350px auto 0 auto;
  width: 430px;
  position: relative;
}
.company .company-bird {
  position: absolute;
  left: -80%;
  top: 35%;
  width: 37px;
  z-index: -1;
}
.company .company-right-circle {
  position: absolute;
  right: -70%;
  top: 13%;
  width: 138px;
  z-index: -1;
}
.company .company-right-square {
  position: absolute;
  right: -80%;
  bottom: 15%;
  z-index: -1;
}
.company .company-left-circle {
  position: absolute;
  left: -90%;
  z-index: -1;
}
.company .company-left-triangular {
  position: absolute;
  bottom: -10%;
  left: -120%;
  z-index: -1;
}
@media (max-width: 480px) {
  .company {
    margin: 167px 24px 64px 24px;
    width: auto;
  }
  .company .company-bird {
    width: 15px;
    top: 40%;
    left: -4%;
  }
  .company .company-right-circle {
    width: 64px;
    top: -10%;
    right: -10%;
  }
  .company .company-right-square {
    width: 85px;
    right: -20%;
    bottom: 45%;
  }
  .company .company-left-circle {
    width: 75px;
    left: -18%;
    top: 3%;
  }
  .company .company-left-triangular {
    width: 75px;
    bottom: 25%;
    left: -20%;
  }
}

.section-overtitle {
  text-align: center;
  font-size: 26px;
  font-weight: 500;
}

.section-title {
  text-align: left;
  font-family: Poppins;
  font-weight: bold;
  font-size: 80px;
  text-shadow: -4px -4px 0 #faff72;
}
.section-title .right-shadow {
  text-shadow: 4px 4px 0 #faff72;
}

.section-subtitle {
  text-align: left;
  font-size: 16px;
  font-weight: 400;
}

.section-content {
  margin: 0 auto;
  width: 376px;
  font-size: 18px;
  margin-top: 50px;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

@media (max-width: 480px) {
  .section-overtitle {
    font-size: 20px;
  }
  .section-title {
    font-size: 30px;
    text-align: center;
    text-shadow: 2px 2px 0 #faff72;
  }
  .section-title .right-shadow {
    text-shadow: 2px 2px 0 #faff72;
  }
  .section-subtitle {
    text-align: center;
  }
  .section-content {
    font-size: 16px;
    margin-top: 32px;
    width: auto;
    letter-spacing: 0.01em;
  }
  .section-content p {
    margin-bottom: 24px;
  }
}
.btn-wrapper {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-wrapper .btn {
  display: flex;
  align-items: center;
  padding: 33px 42px 33px 63px;
  justify-content: space-between;
  text-decoration: none;
  background-color: #fff;
  border: 2px solid transparent;
  border-radius: 9999px;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  width: 350px;
  height: 90px;
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.1607843137);
  transition: border-color 0.3s ease;
}
.btn-wrapper .btn:hover {
  border: 2px solid #1F286F;
}
.btn-wrapper .btn:hover .arrow {
  transform: translateX(18px);
}
.btn-wrapper .btn .arrow {
  transition: transform 0.3s ease;
  width: 16px;
}
@media screen and (max-width: 480px) {
  .btn-wrapper {
    margin-top: 0;
  }
  .btn-wrapper .btn {
    width: 327px;
  }
}

.service-bg-wrapper {
  background-image: url("../images/service_back1.png");
  background-position: center 247px;
  position: relative;
  width: 100vw;
  background-size: cover;
}
.service-bg-wrapper .service {
  display: flex;
  justify-content: center;
  gap: 259px;
  padding-top: 361px;
}
.service-bg-wrapper .service .service-left-square {
  position: absolute;
  left: 20%;
  top: 10%;
}
.service-bg-wrapper .service .service-right-circle {
  position: absolute;
  right: 10%;
  top: 15%;
}
.service-bg-wrapper .service .title-wrapper {
  width: 318px;
}
.service-bg-wrapper .service .service-image {
  margin: 50px 0;
  max-width: 400px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .service-bg-wrapper .service {
    gap: 10px;
  }
}
@media screen and (max-width: 480px) {
  .service-bg-wrapper {
    background-image: none;
  }
  .service-bg-wrapper .service {
    padding: 64px 24px;
    display: block;
    background-color: #fff;
  }
  .service-bg-wrapper .service .service-left-square {
    position: absolute;
    left: -7%;
    top: -7%;
    width: 87px;
  }
  .service-bg-wrapper .service .service-right-circle {
    position: absolute;
    right: -15%;
    top: -7%;
    width: 102px;
  }
  .service-bg-wrapper .service .service-image {
    width: 240px;
    height: 150px;
    display: block;
    margin: 32px auto;
  }
}

.content-wrapper {
  padding-top: 70px;
  margin: 0;
  width: 339px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .content-wrapper {
    font-size: 16px;
    padding-top: 0;
  }
  .content-wrapper p {
    padding-bottom: 24px;
  }
}

.dx-bg-wrapper {
  background-image: url("../images/dx_back1.png");
  background-position: center 80px;
  background-color: #fff;
  width: 100vw;
  background-size: cover;
}
.dx-bg-wrapper .dx {
  display: flex;
  justify-content: center;
  gap: 253px;
  padding: 304px 0 100px 0;
}
.dx-bg-wrapper .dx .dx-title {
  text-shadow: 4px 4px 0 #F4F4F4;
}
.dx-bg-wrapper .dx img {
  max-width: 400px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .dx-bg-wrapper .dx {
    gap: 10px;
  }
}
@media screen and (max-width: 480px) {
  .dx-bg-wrapper {
    background: none;
  }
  .dx-bg-wrapper .dx {
    flex-direction: column;
    padding: 64px 24px;
    background-color: #FAFF72;
  }
  .dx-bg-wrapper .dx .content-wrapper {
    order: 2;
    padding-top: 0;
  }
  .dx-bg-wrapper .dx .section-inner {
    order: 1;
  }
  .dx-bg-wrapper .dx .section-inner img {
    width: 240px;
    height: 150px;
    display: block;
    margin: 32px auto;
  }
}

.gallery {
  padding-top: 137px;
  padding-bottom: 40px;
  position: relative;
}
.gallery .v-line {
  width: 1px;
  height: 120px;
  background-color: #1F286F;
  margin: 0 auto;
  padding-top: 136px;
}
.gallery .sp-gallery-text {
  display: none;
}
@media screen and (max-width: 480px) {
  .gallery {
    padding: 63px 24px 0 24px;
  }
  .gallery .v-line {
    height: 60px;
    padding-top: 63px;
  }
  .gallery .sp-gallery-text {
    display: block;
    font-size: 18px;
    font-family: Poppins;
    font-weight: bold;
    color: #1F286F;
    text-align: center;
    padding-top: 33px;
  }
}

#sb_instagram #sbi_images {
  display: grid !important;
  grid-template-columns: repeat(6, 214px) !important;
  justify-content: center !important;
  gap: 30px !important;
  padding: 170px 0 90px 0 !important;
  overflow: visible !important;
  white-space: nowrap !important;
}

#sb_instagram .sbi_item,
.photo-inner .photo {
  border: 1px solid #707070;
  background: #fff;
  width: 214px;
  height: 214px;
  padding: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#sb_instagram .sbi_item .sbi_photo img {
  width: 200px !important;
  height: 200px !important;
  -o-object-fit: cover;
     object-fit: cover;
}

#sb_instagram .sbi_item:nth-child(even) {
  transform: translateY(-70px);
}

.insta-illust {
  border: 1px solid #707070;
}

.photo-inner .pc-gallery-text {
  font-size: 18px;
  font-family: Poppins;
  font-weight: bold;
  color: #1F286F;
  text-align: center;
  margin-bottom: 12px;
}

.bird-illust {
  max-width: 52px;
  width: 100%;
  height: 67px;
  position: absolute;
  right: 20%;
  top: 40%;
}

@media screen and (max-width: 1024px) {
  #sb_instagram #sbi_images {
    grid-template-columns: repeat(6, 152px) !important;
  }
  #sb_instagram .sbi_item,
  .photo-inner .photo {
    width: 152px !important;
    height: 152px !important;
    padding: 5px !important;
  }
  #sb_instagram .sbi_item .sbi_photo img {
    width: 142px !important;
    height: 142px !important;
  }
}
@media screen and (max-width: 786px) {
  #sb_instagram #sbi_images {
    gap: 10px !important;
  }
}
@media screen and (max-width: 480px) {
  #sb_instagram #sbi_images {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
    padding: 32px 0 !important;
  }
  #sb_instagram .sbi_item:nth-child(even) {
    transform: none;
  }
  #sb_instagram .sbi_item,
  .photo-inner .photo {
    width: 152px !important;
    height: 152px !important;
    padding: 5px !important;
  }
  #sb_instagram .sbi_item .sbi_photo img {
    width: 142px !important;
    height: 142px !important;
  }
  .pc-gallery-text {
    display: none;
  }
  .bird-illust {
    width: 25px;
    height: 31px;
    top: 72%;
    right: 73%;
  }
}
.recruit {
  padding-top: 97px;
}
.recruit p {
  font-size: 120px;
  font-weight: bold;
  font-family: Poppins;
  color: #1F286F;
  display: inline-block;
  white-space: nowrap;
  animation: scroll 100s linear infinite;
  margin-top: -30px;
}
.recruit .recruit-inner {
  display: flex;
  gap: 21px;
  align-items: flex-end;
}
.recruit .recruit-inner .recruit-illust {
  margin-left: 78px;
  max-width: 882px;
  width: 100%;
}
.recruit .recruit-btn {
  background-color: #faff72;
}
@media screen and (max-width: 1330px) {
  .recruit .recruit-inner {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .recruit .recruit-inner .recruit-illust {
    margin-left: 0;
  }
}
@media screen and (max-width: 480px) {
  .recruit {
    padding: 64px 0;
    overflow-x: hidden;
  }
  .recruit p {
    font-size: 50px;
    animation: none;
    transform: translateX(-150px);
  }
  .recruit .recruit-inner .recruit-illust {
    width: 327px;
    margin: 32px 24px;
  }
  .recruit .btn-wrapper {
    margin-top: 0;
  }
  .recruit .recruit-btn {
    margin: 0 24px;
  }
}

.news-bg-wrapper {
  background-image: url("../images/news_back1.png");
  background-position: center 200px;
  width: 100vw;
  background-size: cover;
}
.news-bg-wrapper .news {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 47px;
  padding: 402px 0 458px 0;
}
.news-bg-wrapper .news .news-illust {
  position: absolute;
  right: 13%;
  top: 16%;
}
.news-bg-wrapper .news .contact-illust {
  position: absolute;
  bottom: 24%;
  left: 43%;
  z-index: 2;
}
.news-bg-wrapper .news h2 {
  line-height: 0.8;
  padding-bottom: 16px;
}
.news-bg-wrapper .news .news-list {
  list-style: none;
  width: 600px;
  background-color: #FFFFFF;
}
.news-bg-wrapper .news .news-list .news-item:first-child {
  border-top: 1px solid #707070;
}
.news-bg-wrapper .news .news-list .news-item a {
  border-bottom: 1px solid #707070;
  padding: 30px 0;
  display: flex;
  align-items: center;
  gap: 40px;
  text-decoration: none;
  color: #333;
}
.news-bg-wrapper .news .news-list .news-item a:hover {
  background-color: #F4F4F4;
}
.news-bg-wrapper .news .news-list .news-item .date {
  font-size: 16px;
  font-weight: 500;
  flex-shrink: 0;
}
.news-bg-wrapper .news .news-list .news-item .title {
  font-size: 16px;
  font-weight: 400;
  word-break: break-all;
}
@media screen and (max-width: 480px) {
  .news-bg-wrapper {
    background: none;
  }
  .news-bg-wrapper .news {
    background-color: #fff;
    flex-direction: column;
    padding: 64px 24px;
  }
  .news-bg-wrapper .news h3 {
    padding-bottom: 24px;
  }
  .news-bg-wrapper .news .news-illust {
    display: none;
  }
  .news-bg-wrapper .news .contact-illust {
    display: none;
  }
  .news-bg-wrapper .news .news-list {
    width: 100%;
  }
  .news-bg-wrapper .news .news-list .news-item {
    padding-left: 5px;
  }
  .news-bg-wrapper .news .news-list .news-item a {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px 0 16px 5px;
  }
}

.fuwafuwa {
  animation: fuwafuwa 3s ease-in-out infinite alternate;
}

@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    transform: translate(0, -7px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(7deg);
  }
}
.company-block {
  padding-top: 182px;
  position: relative;
}
.company-block .company-block-bird-left {
  position: absolute;
  bottom: 15%;
  left: 11%;
  z-index: -1;
}
.company-block .company-block-bird-right {
  position: absolute;
  bottom: 38%;
  right: 10%;
  z-index: -1;
}
.company-block .company-block-img {
  display: block;
  margin: 38px auto 115px auto;
}
@media screen and (max-width: 480px) {
  .company-block {
    padding: 152px 0 72px 0;
  }
  .company-block .company-block-bird-left {
    width: 30px;
    bottom: 2%;
    left: 5%;
  }
  .company-block .company-block-bird-right {
    width: 25px;
    bottom: 63%;
    right: 5%;
  }
  .company-block .company-block-img {
    max-width: 240px;
    width: 100%;
    margin: 31px auto 64px auto;
  }
}

.logo-concept-block {
  padding-top: 245px;
  padding-bottom: 146px;
  background-image: url("../images/logo-back1.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.logo-concept-block img {
  max-width: 237px;
  width: 100%;
  display: block;
  margin: 0 auto 120px auto;
}
@media screen and (max-width: 480px) {
  .logo-concept-block {
    padding: 64px 0;
    background-image: none;
    background-color: #FAFF72;
  }
  .logo-concept-block img {
    max-width: 157px;
    width: 100%;
    margin-bottom: 63px;
  }
}

.profile-block {
  background-color: #fff;
  padding: 120px 184px;
}
.profile-block .profile-table {
  line-height: 2.6;
  margin: 15px auto 60px auto;
  max-width: 800px;
  width: 100%;
}
.profile-block .profile-table th {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 400;
  padding-right: 20px;
  white-space: nowrap;
}
.profile-block .profile-table th::before {
  content: "";
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-right: 8px;
  background: url("../images/graphic03.png") no-repeat center center;
  background-size: contain;
}
.profile-block .profile-table .sp-only-br {
  display: none;
}
.profile-block .google-map {
  max-width: 998px;
  width: 100%;
  height: 330px;
  border: 0;
}
@media screen and (max-width: 786px) {
  .profile-block {
    padding: 120px 34px;
  }
}
@media screen and (max-width: 480px) {
  .profile-block {
    padding: 64px 24px;
  }
  .profile-block .profile-table,
  .profile-block .profile-table tr,
  .profile-block .profile-table th,
  .profile-block .profile-table td {
    display: block;
    width: 100%;
  }
  .profile-block .profile-table {
    line-height: 1.5;
  }
  .profile-block .profile-table th {
    display: block;
    padding-right: 0;
    text-align: left;
    margin-bottom: 12px;
  }
  .profile-block .profile-table td {
    margin-bottom: 32px;
    letter-spacing: 0.12em;
  }
  .profile-block .profile-table tr:last-child td {
    margin-bottom: 0;
  }
  .profile-block .profile-table .sp-only-br {
    display: block;
  }
}

.page-contact .page-blue {
  top: -253px !important;
}

.contact {
  margin-top: 373px;
}

.service-block {
  padding-top: 182px;
}
.service-block img {
  display: block;
  margin: 40px auto 120px auto;
  max-width: 340px;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .service-block {
    padding-top: 156px;
  }
  .service-block img {
    max-width: 240px;
    margin: 32px auto 64px auto;
  }
}

.products-block {
  max-width: 1000px;
  width: 100%;
  margin: 125px auto;
}
.products-block .tabs-container {
  margin: 40px 0 30px 0;
}
@media screen and (max-width: 480px) {
  .products-block {
    margin: 64px 0;
  }
  .products-block .tabs-container {
    margin: 33px 24px;
  }
}

.tab-button-wrapper {
  display: flex;
  gap: 0;
}
.tab-button-wrapper .tab-button {
  background-color: #fff;
  font-size: 20px;
  font-weight: 400;
  cursor: pointer;
  border: #707070 solid 1px;
  width: 100%;
  height: 70px;
  padding: 7px 13px;
  color: #333 !important;
}
.tab-button-wrapper .tab-button:hover {
  background-color: #E0E0E0;
}
.tab-button-wrapper .tab-button.active {
  background-color: #1F286F;
  color: white !important;
}
@media screen and (max-width: 480px) {
  .tab-button-wrapper .tab-button {
    text-align: left;
  }
}

.tab-content {
  display: none;
}
.tab-content .photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.tab-content .photo-grid img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 480px) {
  .tab-content .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tab-content.active {
  display: block;
}

.equipmentlist-block {
  position: relative;
}
.equipmentlist-block .eq-bird {
  position: absolute;
  right: 3%;
  top: 43%;
  z-index: -1;
}
.equipmentlist-block .eq-right-circle-1 {
  position: absolute;
  right: 6%;
  top: 28%;
  max-width: 62px;
  width: 100%;
  z-index: -1;
}
.equipmentlist-block .eq-right-circle-2 {
  position: absolute;
  right: -1%;
  bottom: 26%;
  z-index: -1;
}
.equipmentlist-block .eq-right-square-1 {
  position: absolute;
  right: 5%;
  top: 36%;
  z-index: -1;
}
.equipmentlist-block .eq-right-square-2 {
  position: absolute;
  right: 8%;
  bottom: 44%;
  max-width: 96px;
  width: 100%;
  z-index: -1;
}
.equipmentlist-block .eq-left-triangular-1 {
  position: absolute;
  top: 35%;
  left: 8%;
  z-index: -1;
}
.equipmentlist-block .eq-left-triangular-2 {
  position: absolute;
  bottom: 28%;
  z-index: -1;
}
.equipmentlist-block .eq-left-circle-1 {
  position: absolute;
  top: 15%;
  left: 6%;
  z-index: -1;
}
.equipmentlist-block .eq-left-circle-2 {
  position: absolute;
  top: 45%;
  left: 5%;
  z-index: -1;
}
.equipmentlist-block .eq-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.equipmentlist-block .eq-photo-grid img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 480px) {
  .equipmentlist-block {
    margin-bottom: 64px;
  }
  .equipmentlist-block .eq-bird {
    display: none;
  }
  .equipmentlist-block .eq-right-circle-1 {
    display: none;
  }
  .equipmentlist-block .eq-right-circle-2 {
    display: none;
  }
  .equipmentlist-block .eq-right-square-1 {
    display: none;
  }
  .equipmentlist-block .eq-right-square-2 {
    display: none;
  }
  .equipmentlist-block .eq-left-triangular-1 {
    display: none;
  }
  .equipmentlist-block .eq-left-triangular-2 {
    display: none;
  }
  .equipmentlist-block .eq-left-circle-1 {
    display: none;
  }
  .equipmentlist-block .eq-left-circle-2 {
    display: none;
  }
  .equipmentlist-block .eq-photo-grid {
    margin: 0 24px;
    grid-template-columns: repeat(1, 1fr);
  }
  .equipmentlist-block .eq-photo-grid img {
    width: 100%;
    height: 264px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .equipmentlist-block .eq-photo-grid .img-1 {
    order: 3;
  }
  .equipmentlist-block .eq-photo-grid .img-2 {
    order: 4;
  }
  .equipmentlist-block .eq-photo-grid .img-3 {
    order: 5;
  }
  .equipmentlist-block .eq-photo-grid .img-4 {
    order: 6;
  }
  .equipmentlist-block .eq-photo-grid .img-5 {
    order: 1;
  }
  .equipmentlist-block .eq-photo-grid .img-6 {
    order: 2;
  }
}

.table-wrapper {
  position: relative;
  background-color: #fff;
  padding: 70px 100px;
  max-width: 1000px;
  width: 100%;
  margin: 40px auto 120px auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-wrapper .scroll-hint {
  display: none;
  position: absolute;
  top: 30%;
  background-color: #333333;
  opacity: 0.6;
  border-radius: 10px;
  width: 200px;
  height: 120px;
  text-align: center;
  align-content: center;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2235294118);
  pointer-events: none;
}
.table-wrapper .scroll-hint p {
  color: #fff;
}
.table-wrapper .equipmentlist {
  border-collapse: collapse;
  width: 800px;
  margin: 20px auto;
}
.table-wrapper .equipmentlist caption {
  color: #036EB8;
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: left;
}
.table-wrapper .equipmentlist th {
  font-size: 16px;
  font-weight: bold;
  border: 1px solid #707070;
  padding: 13px 0;
  text-align: center;
}
.table-wrapper .equipmentlist td {
  font-size: 16px;
  border-bottom: 1px solid #707070;
  padding: 18px;
  vertical-align: top;
}
@media screen and (max-width: 480px) {
  .table-wrapper {
    padding: 70px 35px;
    margin: 32px 24px;
  }
  .table-wrapper .scroll-hint {
    display: block;
  }
}

.dx-block {
  padding: 177px 0 120px 0;
  position: relative;
}
.dx-block .dx-ufo {
  position: absolute;
  right: 8%;
  bottom: 8%;
  z-index: -1;
}
.dx-block .dx-circle {
  position: absolute;
  bottom: 8%;
  left: 3%;
  width: 51px;
  z-index: -1;
}
.dx-block .dx-img {
  display: block;
  margin: 40px auto 120px auto;
}
@media screen and (max-width: 1024px) {
  .dx-block .dx-ufo {
    display: none;
  }
  .dx-block .dx-circle {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .dx-block {
    padding: 156px 0 64px 0;
  }
  .dx-block .dx-img {
    max-width: 240px;
    width: 100%;
    margin: 32px auto 64px auto;
  }
}

.feature-section {
  background-color: #1F286F;
  margin: 0 auto;
  padding: 130px 184px 120px 184px;
  position: relative;
  overflow-x: hidden;
}
.feature-section .dx-left-circle-1 {
  position: absolute;
  top: 3%;
  left: 5%;
  z-index: 1;
}
.feature-section .dx-left-circle-2 {
  position: absolute;
  left: 4%;
  bottom: 3%;
  z-index: 1;
}
.feature-section .dx-right-square {
  position: absolute;
  right: -3%;
  bottom: 38%;
  z-index: 1;
}
.feature-section .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 120px;
  position: relative;
  z-index: 2;
}
.feature-section .feature-item img {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
}
.feature-section .feature-item:last-child {
  margin-bottom: 0;
}
.feature-section .feature-item:nth-of-type(even) {
  flex-direction: row-reverse;
}
.feature-section .feature-item .feature-text {
  color: #fff;
}
.feature-section .feature-item .feature-text h3 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 22px;
}
.feature-section .feature-item .feature-text p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 339px;
  letter-spacing: 0;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .feature-section {
    padding: 64px 24px;
  }
  .feature-section .dx-left-circle-1 {
    display: none;
  }
  .feature-section .dx-left-circle-2 {
    display: none;
  }
  .feature-section .dx-right-square {
    display: none;
  }
  .feature-section .feature-item {
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
    gap: 16px;
  }
  .feature-section .feature-item img {
    height: 264px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .feature-section .feature-item:nth-of-type(even) {
    flex-direction: column;
  }
  .feature-section .feature-item .feature-text h3 {
    font-size: 20px;
    margin-bottom: 16px;
  }
}

.page-nav-wrapper {
  display: none;
}
@media screen and (max-width: 480px) {
  .page-nav-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 64px;
  }
  .page-nav-wrapper .navBtn {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .page-nav-wrapper .btn {
    display: flex;
    align-items: center;
    padding: 22px 19px;
    text-decoration: none;
    border: 2px solid #036EB8;
    border-radius: 9999px;
    color: #036EB8;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0;
    max-width: 327px;
    width: 100%;
    height: 70px;
    transition: all 0.3s ease;
  }
  .page-nav-wrapper .btn img {
    padding-right: 21px;
    transition: transform 0.3s ease;
  }
  .page-nav-wrapper .btn:hover {
    background-color: #036EB8;
    color: #fff;
  }
  .page-nav-wrapper .btn:hover img {
    transform: translateX(11px);
    filter: brightness(0) invert(1);
  }
}

.dx-inner {
  background-color: #fff;
  padding: 100px;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
.dx-inner h1 {
  color: #036EB8;
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 30px;
}
.dx-inner h2 {
  font-size: 20px;
  font-weight: bold;
}
.dx-inner p {
  font-size: 18px;
  line-height: 1.78;
  margin-bottom: 30px;
}
.dx-inner p:last-child {
  margin-bottom: 0;
}
.dx-inner ul {
  list-style: none;
  margin-bottom: 30px;
}
.dx-inner ul li {
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1.78;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 480px) {
  .dx-inner {
    padding: 63px 24px;
  }
  .dx-inner p {
    letter-spacing: 0;
  }
  .dx-inner h1 {
    font-size: 26px;
  }
  .dx-inner ul li {
    text-indent: 0;
    padding-left: 0;
  }
}

.headline::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 26px;
  background-color: #FAFF72;
  margin-right: 10px;
  vertical-align: -5px;
}

.vision {
  margin-top: 120px;
}

.strategy {
  margin-top: 40px;
  position: relative;
}
.strategy .daruma-img {
  position: absolute;
  bottom: 15%;
  left: 2%;
}

.kpi {
  margin-top: 40px;
}

.governance {
  position: relative;
  margin-top: 40px;
}
.governance .car-img {
  position: absolute;
  bottom: 24%;
  right: 5%;
}

@media screen and (max-width: 480px) {
  .vision {
    margin-top: 16px;
  }
  .strategy {
    margin-top: 16px;
  }
  .strategy .daruma-img {
    display: none;
  }
  .kpi {
    margin-top: 16px;
  }
  .governance {
    margin-top: 16px;
    margin-bottom: 64px;
  }
  .governance .car-img {
    display: none;
  }
}
html {
  scroll-behavior: smooth;
}

.recruit-block {
  margin-top: 177px;
}
.recruit-block img {
  display: block;
  margin: 46px auto 140px auto;
  max-width: 528px;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .recruit-block {
    margin-top: 156px;
  }
  .recruit-block img {
    max-width: 240px;
    width: 100%;
    margin: 32px auto 64px auto;
  }
}

.bg-wrapper {
  padding-top: 239px;
  background-image: url("../images/interview-back1.png");
  background-position: center top;
  position: relative;
  width: 100vw;
  background-size: cover;
}
.bg-wrapper .interview .title-wrapper .interview-block-title {
  text-align: center;
  font-family: Poppins;
  font-weight: bold;
  font-size: 50px;
  color: #fff;
}
.bg-wrapper .interview .title-wrapper p {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}
.bg-wrapper .interview .recruit-bg-wh {
  position: absolute;
  z-index: 2;
  font-size: 120px;
  font-weight: bold;
  font-family: Poppins;
  color: #fff;
  display: inline-block;
  white-space: nowrap;
  animation: scroll-wh 100s linear infinite;
}
@media screen and (max-width: 480px) {
  .bg-wrapper {
    background: none;
    padding-top: 0;
  }
  .bg-wrapper .interview {
    background-color: #1F286F;
    padding-top: 64px;
  }
  .bg-wrapper .interview .title-wrapper {
    text-align: center;
  }
  .bg-wrapper .interview .title-wrapper .interview-block-title {
    font-size: 30px;
  }
  .bg-wrapper .interview .recruit-bg-wh {
    font-size: 50px;
    animation: none;
    transform: translate(-390px, -22px);
  }
}

@keyframes scroll-wh {
  0% {
    transform: translate(0, -80px);
  }
  100% {
    transform: translate(-50%, -80px);
  }
}
.recruit-nav {
  margin-bottom: 64px;
}

.interview-container {
  background-color: #fff;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
.interview-container:not(:first-of-type) {
  margin-top: 40px;
}
.interview-container .bg-gray {
  display: block;
  background: #F4F4F4;
  width: 100%;
  height: 60px;
}
.interview-container .interview-inner {
  padding: 0 100px 120px 100px;
}
.interview-container .title-card {
  display: flex;
  margin-top: 50px;
  justify-content: space-between;
  gap: 26px;
}
.interview-container .title-card .interview-title {
  align-content: center;
}
.interview-container .title-card .interview-title h2 {
  font-size: 28px;
  font-weight: 500;
}
.interview-container .title-card .interview-title .br-class {
  letter-spacing: 0.08em;
}
.interview-container .title-card .interview-title p {
  font-size: 20px;
  font-weight: bold;
  color: #036EB8;
  margin-top: 6px;
}
.interview-container .title-card img {
  max-width: 320px;
  width: 100%;
}
.interview-container h3 {
  font-size: 28px;
  color: #036EB8;
  text-align: center;
  margin-top: 60px;
}
.interview-container p {
  font-size: 18px;
  margin-top: 21px;
  letter-spacing: 0;
  line-height: 1.7;
}
@media screen and (max-width: 480px) {
  .interview-container:not(:first-of-type) {
    margin-top: 32px;
  }
  .interview-container .bg-gray {
    height: 24px;
  }
  .interview-container .interview-inner {
    padding: 32px 24px;
  }
  .interview-container .title-card {
    flex-direction: column;
    margin-top: 0;
    gap: 24px;
  }
  .interview-container .title-card .interview-title h2 {
    font-size: 20px;
    letter-spacing: 0;
  }
  .interview-container .title-card .interview-title p {
    font-size: 18px;
  }
  .interview-container h3 {
    font-size: 20px;
    margin-top: 50px;
    text-align: left;
  }
}

.schedule-bg-wrapper {
  background-color: #1F286F;
  padding: 288px 0 100px 0;
  text-align: center;
  background-image: url("../images/schedule-back1.png");
  background-position: center top;
  width: 100vw;
  background-size: cover;
}
.schedule-bg-wrapper .schedule .schedule-title {
  font-size: 36px;
  margin-bottom: 60px;
  font-weight: bold;
}
@media screen and (max-width: 480px) {
  .schedule-bg-wrapper {
    background-image: none;
    padding: 64px 0 0 0;
  }
  .schedule-bg-wrapper .schedule .schedule-title {
    font-size: 20px;
    margin-bottom: 32px;
  }
  .schedule-bg-wrapper .schedule .schedule-bg {
    background-color: #FAFF72;
    padding: 64px 24px;
  }
}

.timeline {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100px;
  width: 3px;
  background-color: #1099D7;
}
.timeline .time-1 {
  position: absolute;
  right: -25%;
  top: 2%;
}
.timeline .time-2 {
  position: absolute;
  right: -20%;
  top: 35%;
}
.timeline .time-3 {
  position: absolute;
  right: -30%;
  bottom: 25%;
}
.timeline .time-4 {
  position: absolute;
  left: -31%;
  top: 17%;
}
.timeline .time-5 {
  position: absolute;
  left: -20%;
  top: 55%;
}
.timeline .time-6 {
  position: absolute;
  left: -7%;
  bottom: -6%;
}
@media screen and (max-width: 480px) {
  .timeline::before {
    left: 80px;
  }
  .timeline .time-1 {
    display: none;
  }
  .timeline .time-2 {
    display: none;
  }
  .timeline .time-3 {
    display: none;
  }
  .timeline .time-4 {
    display: none;
  }
  .timeline .time-5 {
    display: none;
  }
  .timeline .time-6 {
    max-width: 48px;
    width: 100%;
    bottom: -2%;
    left: 0;
    transform: translateY(15px);
  }
}

.timeline-item {
  display: flex;
  position: relative;
}
.timeline-item::after {
  content: "";
  position: absolute;
  left: 91px;
  top: 20px;
  width: 20px;
  height: 20px;
  background-color: #1099D7;
  border-radius: 50%;
}
.timeline-item .time {
  flex: 0 0 100px;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  margin-right: 30px;
  margin-top: 15px;
}
.timeline-item .time .time-separator {
  transform: rotate(90deg);
}
.timeline-item .content {
  background: #fff;
  padding: 20px;
  flex: 1;
  text-align: left;
  margin-bottom: 30px;
}
.timeline-item .content h3 {
  font-size: 20px;
  padding-bottom: 7px;
  line-height: 1.5;
}
.timeline-item .content p {
  font-size: 18px;
  line-height: 1.5;
}
.timeline-item:last-child .content {
  margin-bottom: 0;
}
@media screen and (max-width: 480px) {
  .timeline-item::after {
    left: 71px;
  }
  .timeline-item .time {
    flex: 0 0 54px;
    margin-right: 52px;
  }
  .timeline-item .content {
    margin-bottom: 24px;
  }
  .timeline-item .content p {
    letter-spacing: -0.02em;
  }
}

.recruit-info {
  margin: 120px auto;
}
.recruit-info .recruit-container {
  background-color: #fff;
  max-width: 1000px;
  width: 100%;
  padding: 100px 93px;
  margin: 0 auto;
}
.recruit-info .recruit-container h3 {
  font-size: 36px;
  text-align: center;
  font-weight: 500;
  margin-bottom: 50px;
}
.recruit-info .recruit-container h4 {
  font-size: 26px;
  color: #036EB8;
  font-weight: bold;
  margin-bottom: 30px;
}
.recruit-info .recruit-container p {
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .recruit-info {
    margin: 64px auto;
  }
  .recruit-info .recruit-container {
    padding: 64px 24px;
  }
  .recruit-info .recruit-container h3 {
    font-size: 20px;
    margin-bottom: 36px;
  }
  .recruit-info .recruit-container h4 {
    font-size: 22px;
    margin-bottom: 16px;
  }
  .recruit-info .recruit-container p {
    font-size: 16px;
    letter-spacing: 0;
  }
}

.recruit-message {
  padding-top: 120px;
  text-align: center;
  position: relative;
}
.recruit-message .recruit-img {
  position: absolute;
  z-index: 1;
  left: 12%;
}
.recruit-message p {
  font-size: 120px;
  font-weight: bold;
  font-family: Poppins;
  color: #1F286F;
  display: inline-block;
  white-space: nowrap;
  animation: scroll 100s linear infinite;
  margin-top: -30px;
}
.recruit-message h3 {
  font-size: 36px;
  font-weight: 500;
}
.recruit-message h4 {
  font-size: 20px;
  font-weight: bold;
}
.recruit-message .tel {
  margin-top: 20px;
  font-size: 30px;
  font-weight: bold;
  color: #333;
}
.recruit-message .recruit-btn {
  background-color: #faff72;
}
@media screen and (max-width: 480px) {
  .recruit-message {
    padding-top: 64px;
    text-align: left;
  }
  .recruit-message .recruit-img {
    position: static;
    max-width: 226px;
    width: 100%;
    display: block;
    margin: 0 auto 26px auto;
  }
  .recruit-message p {
    animation: none;
    font-size: 50px;
    margin-top: 0;
    transform: translateX(-360px);
  }
  .recruit-message h3 {
    font-size: 20px;
    padding: 0 24px;
    margin-top: 58px;
    font-weight: bold;
  }
  .recruit-message h4 {
    font-size: 16px;
    padding: 16px 24px 32px 24px;
  }
  .recruit-message .tel {
    text-align: center;
    margin-top: 48px;
  }
  .recruit-message .recruit-btn {
    padding-left: 55px;
  }
}

.recruit-photo {
  margin-top: 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.recruit-photo img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 480px) {
  .recruit-photo {
    margin-top: 64px;
    grid-template-columns: repeat(1, 1fr);
    padding: 0 24px;
  }
  .recruit-photo img {
    height: 264px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.news-block {
  margin-top: 177px;
  position: relative;
}
.news-block .news-line-img {
  position: absolute;
  right: 25%;
  top: 30px;
}
.news-block .news-bird {
  position: absolute;
  right: 21%;
  top: 0;
}
.news-block .news-list {
  margin: 88px auto 0 auto;
  list-style: none;
  max-width: 1000px;
  width: 100%;
}
.news-block .news-list .news-item:first-child {
  border-top: 1px solid #707070;
}
.news-block .news-list .news-item a {
  border-bottom: 1px solid #707070;
  padding: 30px 0 30px 12px;
  display: flex;
  align-items: center;
  gap: 37px;
  text-decoration: none;
  color: #333;
}
.news-block .news-list .news-item a:hover {
  background-color: #fff;
}
.news-block .news-list .news-item a:hover .date, .news-block .news-list .news-item a:hover .title {
  text-shadow: 0.2px 0 0 currentColor;
}
.news-block .news-list .news-item .date {
  font-size: 16px;
  font-weight: 500;
  flex-shrink: 0;
  transition: text-shadow 0.2s ease;
}
.news-block .news-list .news-item .title {
  font-size: 16px;
  font-weight: 400;
  transition: text-shadow 0.2s ease;
  word-break: break-all;
}
@media screen and (max-width: 480px) {
  .news-block {
    margin-top: 92px;
    flex-direction: column;
    padding: 64px 24px;
  }
  .news-block .news-line-img {
    top: 170px;
    right: 35%;
  }
  .news-block .news-bird {
    top: 160px;
  }
  .news-block .news-list {
    margin-top: 138px;
  }
  .news-block .news-list .news-item {
    padding-left: 5px;
  }
  .news-block .news-list .news-item a {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px 0 16px 5px;
  }
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
  padding-top: 40px;
  background-color: #f5f5f5;
}
.pagination .prev {
  margin-right: 12px;
}
.pagination .prev .prev-arrow {
  width: 16px;
}
.pagination .next {
  margin-left: 12px;
}
.pagination .next .next-arrow {
  width: 16px;
}
.pagination li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1607843137);
}
.pagination li a:hover {
  background-color: #2196f3;
  color: #fff;
}
.pagination li a:hover .prev-arrow,
.pagination li a:hover .next-arrow {
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 480px) {
  .pagination {
    padding-top: 64px;
  }
  .pagination li a {
    display: none;
  }
  .pagination a.prev,
  .pagination a.next {
    display: flex;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fff;
  }
  .pagination .prev,
  .pagination .next {
    margin: 0;
  }
}

.pagination li a.current {
  font-size: 22px;
  font-weight: bold;
}

.pagination li a:visited {
  color: #B7B7B7;
}

.privacy-policy {
  margin-top: 177px;
}
.privacy-policy .privacy-policy-text {
  margin-top: 100px;
}
@media screen and (max-width: 480px) {
  .privacy-policy {
    margin: 156px 0 64px 0;
  }
  .privacy-policy .privacy-policy-text {
    margin-top: 32px;
  }
}

.news-detail-block {
  margin-top: 177px;
  position: relative;
}
.news-detail-block .detail-line-img {
  position: absolute;
  top: -22px;
  right: 16%;
}
.news-detail-block .detail-bird {
  position: absolute;
  top: -45px;
  right: 13%;
}
.news-detail-block .news-container {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.news-detail-block .news-container .date {
  font-size: 16px;
  margin-top: 100px;
  margin-bottom: 10px;
}
.news-detail-block .news-container .title {
  font-size: 26px;
  color: #036EB8;
  margin-bottom: 40px;
  word-break: break-all;
}
.news-detail-block .news-container .image-area {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
  background-color: #fff;
}
.news-detail-block .news-container .image-area img {
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-detail-block .news-container .image-area.no-image {
  display: none;
}
.news-detail-block .news-container .content p {
  word-break: break-all;
}
.news-detail-block .news-detail-nav {
  gap: 32px;
}
.news-detail-block .news-detail-nav .prev {
  margin-right: 0;
}
.news-detail-block .news-detail-nav .next {
  margin-left: 0;
}
@media screen and (max-width: 480px) {
  .news-detail-block {
    margin: 156px 0 64px 0;
  }
  .news-detail-block .detail-line-img {
    top: 110px;
    right: 30%;
  }
  .news-detail-block .detail-bird {
    right: 17%;
    top: 80px;
  }
  .news-detail-block .news-container {
    padding: 0 24px;
  }
  .news-detail-block .news-container .date {
    margin-top: 145px;
    margin-bottom: 8px;
  }
  .news-detail-block .news-container .title {
    margin-bottom: 24px;
  }
  .news-detail-block .news-container .image-area {
    margin-bottom: 32px;
  }
  .news-detail-block .news-container .image-area img {
    height: 245px;
  }
}

.top-contact {
  position: relative;
  max-width: 100%;
}
.top-contact .nagai_moji {
  position: absolute;
  bottom: 10%;
  left: 15%;
  z-index: 2;
}
.top-contact .nagai_moji_2 {
  position: absolute;
  top: 33%;
  left: 17%;
  z-index: 2;
}
.top-contact .contact-inner {
  z-index: 2;
}
.top-contact .contact-inner .address p {
  font-size: 18px;
  color: #fff;
  margin-top: 80px;
}
.top-contact .contact-inner .address img {
  padding-top: 18px;
  transition: opacity 0.3s ease;
}
.top-contact .contact-inner .address a:hover img {
  opacity: 0.8;
}
.top-contact .contact-inner .logo_white {
  max-width: 233px;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .top-contact {
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
    background-color: #1F286F;
    margin-top: 0;
  }
  .top-contact .nagai_moji {
    display: none;
  }
  .top-contact .nagai_moji_2 {
    display: none;
  }
  .top-contact .contact-inner {
    display: flex;
    flex-direction: column;
    padding: 64px 24px 152px 24px;
  }
  .top-contact .contact-inner .address p {
    margin-top: 64px;
  }
  .top-contact .contact-inner .address img {
    margin: 0 auto;
    display: block;
  }
  .top-contact .contact-inner .logo_white {
    margin: 0 auto;
    width: 200px;
  }
}

.background {
  z-index: 1;
  background-color: #F4F4F4;
  position: relative;
}
.background .bg-layer {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background-position: center top;
  background-size: cover;
}
.background .bg-blue {
  top: -290px;
  height: 968px;
  background-image: url("../images/contact_back2.png");
}
.background .bg-gray {
  top: 380px;
  height: 800px;
  background-image: url("../images/footer_back1.png");
  background-position: center;
}
.background .bg-illustration {
  position: absolute;
  background-image: url("../images/footer.png");
  background-position: center;
  height: 852px;
  width: 1306px;
  left: 50%;
  top: 701px;
  transform: translateX(-50%);
}
@media screen and (max-width: 480px) {
  .background .bg-blue,
  .background .bg-gray,
  .background .bg-illustration {
    background: none;
  }
  .background .bg-layer {
    pointer-events: none !important;
  }
}

.contact-wrapper {
  display: flex;
  justify-content: center;
  gap: 163px;
}
@media screen and (max-width: 1024px) {
  .contact-wrapper {
    gap: 30px;
  }
}
@media screen and (max-width: 480px) {
  .contact-wrapper {
    display: block;
  }
}

.contact-form-container {
  background-color: #fff;
  border-radius: 40px;
  max-width: 600px;
  padding: 104px 100px 100px 100px;
  position: relative;
  z-index: 2;
}
.contact-form-container .line_w {
  position: absolute;
  top: -6%;
}
.contact-form-container .letter {
  position: absolute;
  top: -7%;
  left: 52%;
}
.contact-form-container p {
  font-size: 18px;
  margin-top: 30px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .contact-form-container {
    max-width: 450px;
    padding: 64px 30px;
  }
  .contact-form-container .contact-title {
    font-size: 70px;
  }
}
@media screen and (max-width: 480px) {
  .contact-form-container {
    width: 100%;
    border-radius: 0;
    padding: 66px 24px 64px 24px;
  }
  .contact-form-container .line_w {
    width: 117px;
    left: 25%;
  }
  .contact-form-container .letter {
    width: 55px;
    right: 25%;
    left: auto;
  }
  .contact-form-container p {
    font-size: 16px;
  }
  .contact-form-container .contact-title {
    font-size: 30px;
  }
}

.form-group label {
  display: block;
  margin-top: 30px;
  margin-bottom: 9px;
}
.form-group input[type=text],
.form-group input[type=email],
.form-group input[type=tel],
.form-group textarea {
  width: 100%;
  height: 50px;
  border: 1px solid #707070;
  border-radius: 25px;
  padding: 18px;
}
.form-group .has-error {
  border: 2px solid #c90000 !important;
}
.form-group textarea {
  height: 200px;
}

.radio-form .wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
  display: block;
  margin-bottom: 0.5em;
}
.radio-form label {
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
  cursor: pointer;
}
.radio-form input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0px;
  width: 30px;
  height: 30px;
  border: 1px solid #707070;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 5px;
  cursor: pointer;
  position: relative;
  outline: none;
  flex-shrink: 0;
  margin-top: 3px;
}
.radio-form input[type=radio]:checked::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-color: #1099d7;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.radio-form .privacy_policy {
  display: block;
}
.radio-form .privacy_policy .wpcf7-list-item label {
  margin: 0;
  padding: 0;
  display: flex !important;
  align-items: center;
}
.radio-form .privacy_policy .wpcf7-list-item-label {
  letter-spacing: 0;
}
@media screen and (max-width: 480px) {
  .radio-form .privacy-label {
    display: flex;
    align-items: center;
  }
  .radio-form .privacy-label input[type=radio] {
    margin-right: 8px;
    flex-shrink: 0;
  }
}

.wpcf7-not-valid-tip {
  display: none !important;
}

#inquiry_content {
  margin-bottom: 44px;
}

.label-error {
  color: #c90000;
}

.submit-btn-wrapper {
  text-align: center;
}
.submit-btn-wrapper .submit-btn {
  background-color: #faff72;
  border-radius: 9999px;
  border: 2px solid transparent;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  width: 350px;
  height: 90px;
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.1607843137);
  transition: border-color 0.3s ease, background-color 0.3s ease;
  margin-top: 43px;
  cursor: pointer;
}
.submit-btn-wrapper .submit-btn:hover {
  border: 2px solid #1f286f;
}
@media screen and (max-width: 480px) {
  .submit-btn-wrapper .submit-btn {
    width: 327px;
  }
}

.image-wrapper {
  overflow: hidden;
  background-color: #F4F4F4;
}
.image-wrapper .footer-bg {
  display: none;
}
@media screen and (max-width: 480px) {
  .image-wrapper .footer-bg {
    display: block;
    height: 611px;
    -o-object-position: left;
       object-position: left;
  }
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(244, 244, 244, 0.8);
  justify-content: center;
  align-items: flex-start;
  z-index: 1000;
  overflow-y: auto;
  padding: 100px 0;
}
.modal .modal-content {
  background: #fff;
  opacity: 1;
  padding: 100px;
  border-radius: 40px;
  width: 100%;
  max-width: 1000px;
}
.modal .modal-content .confirm-text {
  font-size: 16px;
  font-weight: 400;
}
.modal .modal-content .confirm-item {
  border-bottom: 1px solid #707070;
  padding: 20px 0;
}
.modal .modal-content .confirm-item .confirm-label {
  margin-bottom: 10px;
}
.modal .modal-content .confirm-item .confirm-value {
  font-size: 18px;
  min-height: 1.5em;
  word-break: break-all;
}
.modal .modal-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}
.modal .modal-buttons .back-btn {
  text-align: center;
  text-decoration: none;
  background-color: #fff;
  border-radius: 9999px;
  border: 2px solid transparent;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  width: 350px;
  height: 90px;
  line-height: 90px;
  box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.1607843137);
  transition: border 0.3s ease;
}
.modal .modal-buttons .back-btn:hover {
  border: 2px solid #1F286F;
}
.modal .modal-buttons .submit-btn {
  margin-top: 0;
}
@media screen and (max-width: 480px) {
  .modal {
    padding: 0;
  }
  .modal .modal-content {
    padding: 64px 24px;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    box-sizing: border-box;
  }
  .modal .modal-buttons {
    flex-direction: column;
    align-items: center;
    margin-top: 32px;
  }
  .modal .modal-buttons .back-btn {
    width: 327px;
  }
}

.modal .modal-content .complete-title {
  text-align: center;
}
.modal .modal-content .complete-text {
  text-align: center;
  padding-top: 20px;
}
@media screen and (max-width: 480px) {
  .modal .complete-content {
    height: 100%;
    min-height: 100vh;
    align-content: center;
  }
}

.title-wrapper {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
}
.title-wrapper .block-title {
  text-align: center;
  font-family: Poppins;
  font-weight: bold;
  font-size: 50px;
  text-shadow: -3px -3px 0 #faff72;
}
.title-wrapper .block-title .right-shadow {
  text-shadow: 3px 3px 0 #faff72;
}
.title-wrapper .block-subtitle {
  text-align: left;
  font-size: 16px;
  font-weight: 400;
}
@media screen and (max-width: 480px) {
  .title-wrapper .block-title {
    text-shadow: 2px 2px 0 #faff72;
  }
  .title-wrapper .right-shadow {
    text-shadow: 2px 2px 0 #faff72;
  }
}

.block-content .content-heading {
  font-size: 36px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 30px;
}
.block-content p {
  text-align: left;
  font-size: 18px;
  font-weight: 400;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  letter-spacing: 0.01em;
  line-height: 1.75;
}

@media screen and (max-width: 768px) {
  .block-content p {
    max-width: 700px;
  }
}
@media screen and (max-width: 480px) {
  .title-wrapper .block-title {
    font-size: 30px;
  }
  .title-wrapper .block-subtitle {
    text-align: center;
  }
  .block-content .content-heading {
    font-size: 20px;
  }
  .block-content p {
    font-size: 16px;
    padding: 0 24px 0 24px;
  }
}/*# sourceMappingURL=style.css.map */