html {
  scroll-padding-top: 161px;
}
@media screen and (max-width: 980px) {
  html {
    scroll-padding-top: 100px;
  }
}

main {
  padding-top: 117px;
}
@media screen and (max-width: 980px) {
  main {
    padding-top: 56px;
  }
}

header {
  box-shadow: 0px 4px 4px 0px rgba(51, 51, 51, 0.25);
  position: fixed;
  z-index: 5;
  width: 100%;
  height: 117px;
}
header nav {
  max-width: 1600px;
  margin-inline: auto;
  padding-inline: 16px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header nav img {
  width: 411px;
  height: 77px;
}
header nav ul {
  height: 100%;
  display: flex;
  align-items: center;
  gap: min(2dvw, 40px);
}
header nav ul li {
  font-size: 18px;
  line-height: 1.5;
}
header nav ul li .contact {
  border-radius: 8px;
  padding: 14px 47px;
}
header nav ul li.parent {
  display: flex;
  align-items: center;
  position: relative;
}
header nav ul li.parent::after {
  content: "";
  display: block;
  background-image: url(../img/header_open.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 27px;
  height: 27px;
  transition: transform 0.4s ease;
}
header nav ul li.parent .child {
  position: absolute;
  display: block;
  top: -100dvh;
  width: 240px;
  white-space: nowrap;
  transition: all 0.4s ease;
  padding-block: 16px;
  height: -moz-fit-content;
  height: fit-content;
}
header nav ul li.parent .child li {
  height: -moz-fit-content;
  height: fit-content;
}
header nav ul li.parent .child li a {
  display: block;
  font-size: 16px;
  padding: 8px 16px;
}
header nav ul li.parent.active::after {
  transform: rotate(180deg);
}
header nav ul li.parent.active .child {
  top: 22px;
}
header nav .header_logo {
  flex-shrink: 0;
}

footer {
  padding-block: 120px 63px;
}
footer .btn-wrap {
  max-width: 1280px;
  margin: 0 auto 120px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
footer .btn-wrap .btn {
  display: block;
  border-radius: 8px;
  padding: 42px 64px;
}
footer .btn-wrap .btn .text-en {
  font-size: 64px;
  line-height: 1.3;
  margin-bottom: 75px;
}
footer .btn-wrap .btn .text-jp {
  display: flex;
  align-items: center;
  font-size: 24px;
  line-height: 1.5;
  gap: 24px;
}
footer .btn-wrap .btn .text-jp span {
  display: block;
  width: 80px;
  height: 80px;
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.4s ease;
}
footer .btn-wrap .btn:hover .text-wrap .text-jp span {
  transform: rotate(360deg);
}
footer .btn-wrap .btn:nth-of-type(1) {
  width: 56%;
}
footer .btn-wrap .btn:nth-of-type(1) .text-wrap .text-jp span {
  background-image: url(../img/contact_icon.png);
}
footer .btn-wrap .btn:nth-of-type(2) {
  width: 40%;
}
footer .btn-wrap .btn:nth-of-type(2) .text-wrap .text-jp span {
  background-image: url(../img/recruit_icon.png);
}
footer .nav-wrap {
  max-width: 1280px;
  margin: 0 auto 120px;
  display: flex;
  justify-content: space-between;
  align-items: start;
}
footer .nav-wrap .info-wrap .logo {
  display: block;
  width: 411;
  height: auto;
  margin-bottom: 13px;
}
footer .nav-wrap .info-wrap .tel {
  display: block;
  font-size: 48px;
  margin-bottom: 80px;
}
footer .nav-wrap .info-wrap .sns {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
}
footer .nav-wrap .info-wrap .sns a {
  display: block;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: contain;
}
footer .nav-wrap .info-wrap .sns a:hover {
  transform: scale(1.1);
}
footer .nav-wrap .info-wrap .sns .ig {
  background-image: url(../img/ig_icon.png);
}
footer .nav-wrap .info-wrap .sns .fb {
  background-image: url(../img/fb_icon.png);
}
footer .nav-wrap .info-wrap .external a {
  display: flex;
  gap: 8px;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 14px;
  padding: 4px 16px;
  font-size: 12px;
  line-height: 1.5;
}
footer .nav-wrap .info-wrap .external a:first-child {
  margin-bottom: 12px;
}
footer .nav-wrap .info-wrap .external a::after {
  content: "";
  display: block;
  background-image: url(../img/extlink_icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  transition: transform 0.4s ease;
}
footer .nav-wrap .info-wrap .external a:hover {
  transform: scale(1.1);
}
footer .nav-wrap .nav {
  margin-top: 80px;
}
footer .nav-wrap .nav > ul {
  display: flex;
  align-items: start;
  gap: 64px;
}
footer .nav-wrap .nav > ul li {
  font-size: 16px;
  margin-bottom: 16px;
  margin-left: 8px;
}
footer .nav-wrap .nav > ul li:first-child {
  margin-left: 0px;
  font-size: 18px;
}
footer .nav-wrap .nav > ul > ul:last-of-type li {
  font-size: 18px;
  margin-left: 0px;
  margin-bottom: 40px;
}
footer .copyright-wrap {
  max-width: 1280px;
  margin: auto;
  display: flex;
  gap: 24px;
  justify-content: end;
  font-size: 12px;
  line-height: 1;
}
@media screen and (max-width: 980px) {
  footer {
    padding-block: 64px 13px;
  }
  footer .btn-wrap {
    margin: 20px;
    flex-wrap: wrap;
    gap: 16px;
  }
  footer .btn-wrap .btn {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  footer .btn-wrap .btn::before {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform 0.4s ease;
  }
  footer .btn-wrap .btn:hover::before {
    transform: rotate(360deg);
  }
  footer .btn-wrap .btn .text-en {
    font-size: 32px;
    margin-bottom: 0;
  }
  footer .btn-wrap .btn .text-jp {
    font-size: 14px;
  }
  footer .btn-wrap .btn .text-jp span {
    display: none;
  }
  footer .btn-wrap .btn:nth-of-type(1) {
    width: 100%;
  }
  footer .btn-wrap .btn:nth-of-type(1)::before {
    background-image: url(../img/contact_icon.png);
  }
  footer .btn-wrap .btn:nth-of-type(2) {
    width: 100%;
  }
  footer .btn-wrap .btn:nth-of-type(2)::before {
    background-image: url(../img/recruit_icon.png);
  }
  footer .nav-wrap {
    flex-wrap: wrap-reverse;
    margin-bottom: 0;
  }
  footer .nav-wrap .info-wrap {
    margin: 40px 16px 8px;
  }
  footer .nav-wrap .info-wrap .logo {
    width: 100%;
    margin-bottom: 24px;
  }
  footer .nav-wrap .info-wrap .tel {
    display: none;
  }
  footer .nav-wrap .info-wrap .sns {
    margin-bottom: 12px;
  }
  footer .nav-wrap .nav {
    margin-top: 44px;
    width: 100%;
  }
  footer .nav-wrap .nav > ul {
    display: block;
  }
  footer .nav-wrap .nav > ul > ul > li {
    margin-bottom: 0;
  }
  footer .nav-wrap .nav > ul > ul > li > a {
    pointer-events: none;
    display: block;
    width: 100%;
  }
  footer .nav-wrap .nav > ul > ul > li.fw7 a {
    padding: 16px;
    border-top: 2px solid #EDF1F2;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  footer .nav-wrap .nav > ul > ul > li.fw7 a::after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-image: url(../img/open_btn.png);
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform 0.4s ease;
  }
  footer .nav-wrap .nav > ul > ul > li.fw7.active a::after {
    transform: rotate(45deg);
  }
  footer .nav-wrap .nav > ul > ul > li.fw5 {
    transition: height 0.4s ease;
    opacity: 0;
    font-size: 0;
    height: 0;
  }
  footer .nav-wrap .nav > ul > ul > li.fw5.active {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 13px;
    opacity: 1;
    height: 20px;
    margin-left: 24px;
    margin-bottom: 8px;
  }
  footer .nav-wrap .nav > ul > ul > li.fw5.active a {
    pointer-events: unset;
  }
  footer .nav-wrap .nav > ul > ul > li.fw5:last-child.active {
    margin-bottom: 16px;
  }
  footer .nav-wrap .nav > ul > ul:last-of-type li {
    margin-bottom: 0;
  }
  footer .nav-wrap .nav > ul > ul:last-of-type li a {
    pointer-events: unset;
  }
  footer .nav-wrap .nav > ul > ul:last-of-type li a::after {
    background-image: url(../img/link_btn.png);
  }
  footer .nav-wrap .nav > ul > ul:last-of-type li:last-of-type a {
    border-bottom: 2px solid #EDF1F2;
  }
  footer .copyright-wrap {
    margin: 0 16px 13px;
    display: block;
    font-size: 10px;
  }
  footer .copyright-wrap > * {
    margin-left: auto;
    margin-bottom: 4px;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
  }
  footer .copyright-wrap > *:last-child {
    margin-bottom: 0;
  }
}

.fv-bg {
  width: 100%;
  background-image: url(../img/fv.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  height: 963px;
}
.fv-title {
  line-height: 1.2;
  font-size: 160px;
  margin-left: 34px;
  margin-bottom: 40px;
}
.fv-title span {
  font-size: 72px;
}
.fv-desc {
  line-height: 1.5;
  font-size: 24px;
  margin-bottom: 80px;
  margin-left: 34px;
}
.fv-links {
  display: flex;
  gap: 24px;
}
.fv-links-btn {
  border-radius: 8px;
  line-height: 1.5;
  padding: 40px 24px;
}
.fv-links-btn:nth-of-type(1):hover {
  color: #000;
}
.fv-links-btn p:nth-of-type(1) {
  font-size: 40px;
}
.fv-links-btn p:nth-of-type(2) {
  font-size: 16px;
}

.breadcrumbs {
  position: fixed;
  top: 117px;
  background: #F5F5F5;
  width: 100%;
  z-index: 4;
}
.breadcrumbs-wrap {
  padding-block: 12px;
  max-width: 1440px;
  margin: auto;
  font-size: 13px;
}
@media screen and (max-width: 980px) {
  .breadcrumbs {
    top: 56px;
  }
  .breadcrumbs-wrap {
    padding: 4px 20px;
    font-size: 10px;
  }
}

@media screen and (max-width: 980px) {
  header {
    height: 56px;
    padding-inline: 16px;
  }
  header nav {
    padding-inline: unset;
    gap: 24px;
  }
  header nav img {
    width: 183px;
    height: auto;
    margin-right: 10px;
  }
  header nav ul {
    position: absolute;
    top: -200dvh;
    display: block;
    width: 100dvw;
    text-align: center;
    transition: top ease 0.5s;
    height: auto;
  }
  header nav ul li a {
    display: block;
    width: 100%;
    height: auto;
    padding: 4px;
  }
  header nav ul li.parent {
    display: block;
  }
  header nav ul li.parent::after {
    display: none;
  }
  header nav ul li.parent > a {
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header nav ul li.parent > a::after {
    display: block;
    content: "";
    background-image: url(../img/header_open.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 28px;
    height: 28px;
    transition: all 0.4s ease;
  }
  header nav ul li.parent.active a::after {
    transform: rotate(180deg);
  }
  header nav ul li.parent.active .child {
    top: 0;
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
    opacity: 1;
    font-size: 14px;
  }
  header nav ul li.parent.active .child li {
    height: -moz-fit-content;
    height: fit-content;
  }
  header nav ul li.parent .child {
    position: relative;
    display: block;
    top: 0;
    width: 0;
    padding: unset;
    font-size: 0;
    height: 0;
    opacity: 0;
  }
  header nav ul li.parent .child li {
    line-height: 1;
    height: 0;
  }
  header nav ul.active {
    top: 56px;
    left: 0;
    right: 0;
  }
  header nav > .contact {
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 14px;
    line-height: 1.5;
  }
  header nav > .spMenuBtn {
    height: 14px;
  }
  header nav > .spMenuBtn span {
    transition: all ease 0.4s;
    display: block;
    width: 20px;
    height: 2px;
  }
  header nav > .spMenuBtn span:nth-of-type(1), header nav > .spMenuBtn span:nth-of-type(2) {
    margin-bottom: 4px;
  }
  header nav > .spMenuBtn.active span {
    margin-bottom: 0;
  }
  header nav > .spMenuBtn.active span:nth-of-type(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  header nav > .spMenuBtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  header nav > .spMenuBtn.active span:nth-of-type(3) {
    transform: rotate(-45deg) translate(-1px, 1px);
  }
  .fv-bg {
    height: auto;
    min-height: 321.286px;
    aspect-ratio: 375/321.286;
  }
  .fv-content {
    margin: 0 21px 40px;
  }
  .fv-title {
    font-size: 70px;
    margin-bottom: 16px;
    margin-left: 0;
  }
  .fv-title span {
    font-size: 32px;
  }
  .fv-desc {
    font-size: 16px;
    margin-bottom: 20px;
    margin-left: 0;
  }
  .fv-links {
    gap: 1%;
  }
  .fv-links-btn {
    padding: 16px;
    width: 49%;
  }
  .fv-links-btn:hover p:nth-of-type(2)::before {
    transform: rotate(360deg);
  }
  .fv-links-btn p:nth-of-type(1) {
    font-size: 24px;
  }
  .fv-links-btn p:nth-of-type(2) {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .fv-links-btn p:nth-of-type(2)::before {
    display: block;
    content: "";
    transition: transform 0.4s ease;
    background: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
  }
  .fv-links-btn:nth-of-type(1) p:nth-of-type(2)::before {
    background-image: url(../img/contact_icon.png);
    background-size: contain;
  }
  .fv-links-btn:nth-of-type(2) p:nth-of-type(2)::before {
    background-image: url(../img/recruit_icon.png);
    background-size: contain;
  }
}
@media screen and (min-width: 981px) {
  .fv {
    height: 963px;
    position: relative;
    display: flex;
    align-items: end;
  }
  .fv-bg {
    width: 1124px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }
  .fv-content {
    margin-left: 145px;
    margin-bottom: 55px;
  }
  .fv-links-btn {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .fv-links-btn:nth-of-type(1) {
    width: 400px;
  }
  .fv-links-btn:nth-of-type(1)::before {
    background-image: url(../img/contact_icon.png);
    background-size: contain;
  }
  .fv-links-btn:nth-of-type(2) {
    width: 330px;
  }
  .fv-links-btn:nth-of-type(2)::before {
    background-image: url(../img/recruit_icon.png);
    background-size: contain;
  }
  .fv-links-btn::before {
    display: block;
    content: "";
    background: #fff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    transition: transform 0.4s ease;
  }
  .fv-links-btn:hover::before {
    transform: rotate(360deg);
  }
}
.service-list {
  padding-block: 120px;
}
.service-list > div {
  max-width: 1280px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.service-list > div .logo {
  grid-column: span 2;
  padding: 8px 29px;
}
.service-list > div .service-list-content {
  display: flex;
  align-items: center;
  width: 314px;
  height: 128px;
  font-size: 24px;
  border-radius: 8px;
  line-height: 1.5;
  transition: transform 0.4s ease;
}
.service-list > div .service-list-content:hover {
  transform: scale(1.05);
}
.service-list > div .service-list-content::before {
  display: block;
  content: "";
  width: 128px;
  height: 128px;
  border-radius: 8px 0px 0px 8px;
  flex-shrink: 0;
}
.service-list > div .service-list-content p {
  width: 100%;
  padding-block: 21px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.service-list > div .service-list-content p .ext {
  width: 16px;
  height: 16px;
}
.service-list > div .service-list-content:nth-of-type(1) {
  color: #0E8FD9;
}
.service-list > div .service-list-content:nth-of-type(1)::before {
  background: linear-gradient(0deg, rgba(14, 143, 217, 0.3) 0%, rgba(14, 143, 217, 0.3) 100%), url(../img/service1.png) lightgray 50%/cover no-repeat;
}
.service-list > div .service-list-content:nth-of-type(2) {
  color: #D63A39;
}
.service-list > div .service-list-content:nth-of-type(2)::before {
  background: linear-gradient(0deg, rgba(214, 58, 57, 0.3) 0%, rgba(214, 58, 57, 0.3) 100%), url(../img/service2.png) lightgray 50%/cover no-repeat;
}
.service-list > div .service-list-content:nth-of-type(3) {
  color: #E28904;
}
.service-list > div .service-list-content:nth-of-type(3)::before {
  background: linear-gradient(0deg, rgba(226, 137, 4, 0.3) 0%, rgba(226, 137, 4, 0.3) 100%), url(../img/service3.png) lightgray 50%/cover no-repeat;
}
.service-list > div .service-list-content:nth-of-type(4) {
  color: #97C415;
}
.service-list > div .service-list-content:nth-of-type(4)::before {
  background: linear-gradient(0deg, rgba(151, 196, 21, 0.3) 0%, rgba(151, 196, 21, 0.3) 100%), url(../img/service4.png) lightgray 50%/cover no-repeat;
}
.service-list > div .service-list-content:nth-of-type(5) {
  color: #12A449;
}
.service-list > div .service-list-content:nth-of-type(5)::before {
  background: linear-gradient(0deg, rgba(18, 164, 73, 0.3) 0%, rgba(18, 164, 73, 0.3) 100%), url(../img/service5.png) lightgray 50%/cover no-repeat;
}
.service-list > div .service-list-content:nth-of-type(6) {
  color: #E6C534;
}
.service-list > div .service-list-content:nth-of-type(6)::before {
  background: linear-gradient(0deg, rgba(230, 197, 52, 0.3) 0%, rgba(230, 197, 52, 0.3) 100%), url(../img/service6.png) lightgray 50%/cover no-repeat;
}
.service-list > div .service-list-content:nth-of-type(7) {
  color: #EF86B2;
}
.service-list > div .service-list-content:nth-of-type(7)::before {
  background: linear-gradient(0deg, rgba(239, 134, 178, 0.4) 0%, rgba(239, 134, 178, 0.4) 100%), url(../img/service7.png) lightgray 50%/cover no-repeat;
}
.service-list > div .service-list-content:nth-of-type(8) {
  color: #1041A0;
}
.service-list > div .service-list-content:nth-of-type(8)::before {
  background: linear-gradient(0deg, rgba(16, 65, 160, 0.3) 0%, rgba(16, 65, 160, 0.3) 100%), url(../img/service8.png) lightgray 50%/cover no-repeat;
}
.service-list > div .service-list-content:nth-of-type(9) {
  color: #834E35;
}
.service-list > div .service-list-content:nth-of-type(9)::before {
  background: linear-gradient(0deg, rgba(131, 78, 53, 0.3) 0%, rgba(131, 78, 53, 0.3) 100%), url(../img/service9.png) lightgray 50%/cover no-repeat;
}
@media screen and (max-width: 980px) {
  .service-list {
    padding: 64px 21px;
  }
  .service-list > div {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }
  .service-list > div .logo {
    padding: 0;
  }
  .service-list > div .service-list-content {
    display: block;
    font-size: 16px;
    line-height: 1.2;
    width: 100%;
    min-width: 165px;
    height: 150px;
  }
  .service-list > div .service-list-content:hover {
    transform: translateY(5px);
  }
  .service-list > div .service-list-content p {
    gap: 4px;
    padding-block: 16.79px;
  }
  .service-list > div .service-list-content::before {
    content: "";
    width: 100%;
    height: 93;
    border-radius: 8px 8px 0px 0px;
  }
  .service-list > div .service-list-content:nth-of-type(1)::before {
    background: linear-gradient(0deg, rgba(14, 143, 217, 0.3) 0%, rgba(14, 143, 217, 0.3) 100%), url(../img/service1_sp.png) lightgray 50%/cover no-repeat;
  }
  .service-list > div .service-list-content:nth-of-type(2)::before {
    background: linear-gradient(0deg, rgba(214, 58, 57, 0.3) 0%, rgba(214, 58, 57, 0.3) 100%), url(../img/service2_sp.png) lightgray 50%/cover no-repeat;
  }
  .service-list > div .service-list-content:nth-of-type(3)::before {
    background: linear-gradient(0deg, rgba(226, 137, 4, 0.3) 0%, rgba(226, 137, 4, 0.3) 100%), url(../img/service3_sp.png) lightgray 50%/cover no-repeat;
  }
  .service-list > div .service-list-content:nth-of-type(4)::before {
    background: linear-gradient(0deg, rgba(151, 196, 21, 0.3) 0%, rgba(151, 196, 21, 0.3) 100%), url(../img/service4_sp.png) lightgray 50%/cover no-repeat;
  }
  .service-list > div .service-list-content:nth-of-type(5)::before {
    background: linear-gradient(0deg, rgba(18, 164, 73, 0.3) 0%, rgba(18, 164, 73, 0.3) 100%), url(../img/service5_sp.png) lightgray 50%/cover no-repeat;
  }
  .service-list > div .service-list-content:nth-of-type(6)::before {
    background: linear-gradient(0deg, rgba(230, 197, 52, 0.3) 0%, rgba(230, 197, 52, 0.3) 100%), url(../img/service6_sp.png) lightgray 50%/cover no-repeat;
  }
  .service-list > div .service-list-content:nth-of-type(7)::before {
    background: linear-gradient(0deg, rgba(239, 134, 178, 0.4) 0%, rgba(239, 134, 178, 0.4) 100%), url(../img/service7_sp.png) lightgray 50%/cover no-repeat;
  }
  .service-list > div .service-list-content:nth-of-type(8)::before {
    background: linear-gradient(0deg, rgba(16, 65, 160, 0.3) 0%, rgba(16, 65, 160, 0.3) 100%), url(../img/service8_sp.png) lightgray 50%/cover no-repeat;
  }
  .service-list > div .service-list-content:nth-of-type(9) p {
    padding-block: 9.39px;
  }
  .service-list > div .service-list-content:nth-of-type(9)::before {
    background: linear-gradient(0deg, rgba(131, 78, 53, 0.3) 0%, rgba(131, 78, 53, 0.3) 100%), url(../img/service9_sp.png) lightgray 50%/cover no-repeat;
  }
}

.news-list {
  position: relative;
  padding-block: 167px;
}
.news-list h1 {
  position: absolute;
  font-size: 200px;
  top: -18%;
  right: 80px;
  line-height: 1.3;
}
.news-list-wrapper {
  max-width: 1280px;
  margin: auto;
  align-items: start;
  display: flex;
  gap: 82px;
}
.news-list-wrapper .link {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 24px;
  line-height: 1.5;
  flex-shrink: 0;
}
.news-list-wrapper .link span {
  transition: transform 0.4s ease;
}
.news-list-wrapper .link:hover span {
  transform: translateY(-5px);
}
.news-list-wrapper .link:hover::before {
  transform: rotate(360deg);
}
.news-list-wrapper .link::before {
  display: block;
  content: "";
  background-image: url(../img/news_icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 80px;
  height: 80px;
  transition: transform 0.4s ease;
}
.news-list-content {
  width: 100%;
  border-radius: 8px;
  padding: 64px;
  font-size: 16px;
  line-height: 1.5;
}
.news-list-content a {
  display: flex;
  gap: 29px;
  padding: 24px 12px;
  border-bottom: solid 1px rgba(51, 51, 51, 0.25);
}
.news-list-content a p {
  transition: all 0.5s ease;
}
.news-list-content a:hover p {
  transform: translateY(-5px);
}
@media screen and (max-width: 980px) {
  .news-list {
    padding-block: 100px;
  }
  .news-list h1 {
    font-size: 80px;
    top: -7.5%;
    right: 8px;
  }
  .news-list-wrapper {
    gap: 24px;
    flex-wrap: wrap-reverse;
    padding-inline: 20px;
  }
  .news-list-wrapper .link {
    justify-content: end;
    gap: 16px;
    margin-left: auto;
    font-size: 16px;
  }
  .news-list-wrapper .link::before {
    width: 40px;
    height: 40px;
  }
  .news-list-content {
    padding: 40px 16px;
  }
  .news-list-content a {
    display: block;
  }
  .news-list-content a:first-child {
    padding-top: 0;
  }
}

.about {
  padding-block: 200px;
  height: 984px;
  background-image: url(../img/about_bg_pc.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.about h1 {
  position: absolute;
  font-size: 200px;
  line-height: 1.3;
  top: -13.5%;
  left: 80px;
}
.about-content {
  max-width: 1280px;
  margin: auto;
}
.about-content .text {
  margin-inline: 160px;
  margin-bottom: 120px;
}
.about-content .text h2 {
  font-size: 62px;
  line-height: 1.5;
  margin-bottom: 40px;
}
.about-content .text .desc {
  font-size: 20px;
  line-height: 2.8;
}
.about-content .link {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.about-content .link a {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 40px 64px;
  border-radius: 8px;
  font-size: 24px;
}
.about-content .link a span {
  transition: transform 0.4s ease;
}
.about-content .link a:hover span {
  transform: translateY(-5px);
}
.about-content .link a:hover::before {
  transform: rotate(360deg);
}
.about-content .link a::before {
  transition: transform 0.4s ease;
  display: block;
  content: "";
  background-image: url(../img/about_icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 80px;
  height: 80px;
}
@media screen and (max-width: 980px) {
  .about {
    padding-block: 100px;
    background-image: url(../img/about_bg_sp.png);
    height: 762px;
  }
  .about h1 {
    font-size: 80px;
    left: 8px;
    top: -6.8%;
  }
  .about-content {
    margin-inline: 20px;
  }
  .about-content .text {
    margin: 0 0 64px;
  }
  .about-content .text h2 {
    font-size: 32px;
    margin-bottom: 24px;
  }
  .about-content .text .desc {
    font-size: 16px;
    line-height: 2;
  }
  .about-content .link {
    display: block;
  }
  .about-content .link a {
    padding: 24px;
    font-size: 16px;
  }
  .about-content .link a:first-child {
    margin-bottom: 8px;
  }
  .about-content .link a::before {
    width: 40px;
    height: 40px;
  }
}

.service {
  position: relative;
}
.service h1 {
  position: absolute;
  font-size: 200px;
  line-height: 1.3;
  top: -3%;
  right: 80px;
}
.service-wrap {
  padding-top: 200px;
  padding-bottom: 75px;
}
.service-wrap .head {
  max-width: 1280px;
  width: 100%;
  height: auto;
  margin: 0 auto 120px;
}
.service-content {
  max-width: 1280px;
  margin: auto;
}
.service-content > .title {
  line-height: 1;
  font-size: 40px;
  margin-bottom: 80px;
}
.service-content > .title span:nth-of-type(1) {
  font-size: 120px;
  position: relative;
  z-index: 2;
}
.service-content > .title span:nth-of-type(1)::after {
  content: "10";
  position: absolute;
  color: #66A3D1;
  top: 25px;
  left: 3px;
  z-index: -1;
  font-size: 125px;
}
.service-content > .title span:nth-of-type(2) {
  font-size: 64px;
}
.service-content .grid-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.service-content .grid-content {
  position: relative;
  margin-bottom: 64px;
}
.service-content .grid-content:nth-of-type(1) .image::after {
  background-image: url(../img/s1_icon.png);
}
.service-content .grid-content:nth-of-type(2) .image::after {
  background-image: url(../img/s2_icon.png);
}
.service-content .grid-content:nth-of-type(3) .image::after {
  background-image: url(../img/s3_icon.png);
}
.service-content .grid-content:nth-of-type(4) .image::after {
  background-image: url(../img/s4_icon.png);
}
.service-content .grid-content:nth-of-type(5) .image::after {
  background-image: url(../img/s5_icon.png);
}
.service-content .grid-content:nth-of-type(6) .image::after {
  background-image: url(../img/s6_icon.png);
}
.service-content .grid-content:nth-of-type(7) .image::after {
  background-image: url(../img/s7_icon.png);
}
.service-content .grid-content:nth-of-type(8) .image::after {
  background-image: url(../img/s8_icon.png);
}
.service-content .grid-content:nth-of-type(9) .image::after {
  background-image: url(../img/s9_icon.png);
}
.service-content .grid-content .image {
  position: relative;
}
.service-content .grid-content .image::after {
  content: "";
  display: block;
  position: absolute;
  left: 40px;
  bottom: 40px;
  width: 80px;
  height: 80px;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 3;
  transition: transform 0.4s ease;
}
.service-content .grid-content .image:hover::after {
  transform: rotate(360deg);
}
.service-content .grid-content .en-title {
  position: absolute;
  right: 0;
  top: -47px;
  font-size: 60px;
  z-index: 1;
}
.service-content .grid-content .title {
  font-size: 32px;
  line-height: 1.5;
  margin-bottom: 8px;
}
.service-content .grid-content .desc {
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (max-width: 980px) {
  .service h1 {
    font-size: 80px;
    top: -1.11%;
    right: 8px;
  }
  .service-wrap {
    padding-top: 100px;
  }
  .service-wrap .head {
    width: auto;
    margin-inline: 20px;
  }
  .service-content > .title {
    font-size: 18px;
  }
  .service-content > .title span:nth-of-type(1) {
    font-size: 80px;
  }
  .service-content > .title span:nth-of-type(1)::after {
    top: 25px;
    left: 3px;
    font-size: 80px;
  }
  .service-content > .title span:nth-of-type(2) {
    font-size: 32px;
  }
  .service-content .grid-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
  .service-content .grid-content {
    margin-inline: 20px;
    margin-bottom: unset;
    font-size: 18px;
  }
  .service-content .grid-content .en-title {
    top: -25px;
    font-size: 32px;
  }
  .service-content .grid-content .title {
    font-size: 24px;
  }
  .service-content .grid-content .desc {
    font-size: 14px;
  }
  .service-content .grid-content .image::after {
    width: 40px;
    height: 40px;
    left: 16px;
    bottom: 16px;
  }
}

.top-staff {
  position: relative;
  padding-block: 200px;
}
.top-staff h1 {
  position: absolute;
  font-size: 200px;
  line-height: 1.3;
  top: -10.5%;
  left: 80px;
}
.top-staff-head {
  margin: auto;
  align-items: center;
  display: flex;
  justify-content: center;
  gap: 16px;
}
.top-staff-head p {
  font-size: 32px;
  line-height: 150%;
}
.top-staff-head .head_img {
  width: 541px;
  height: auto;
  aspect-ratio: 541/230;
  background-image: url(../img/staff_head_img.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.top-staff-head .scroll_btn {
  display: flex;
  gap: 16px;
}
.top-staff-head .scroll_btn a {
  width: 80px;
  height: 80px;
}
.top-staff-wrap {
  display: flex;
  padding-left: 320px;
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  gap: 40px;
}
.top-staff-content {
  width: 400px;
  flex-shrink: 0;
}
.top-staff-content .image-wrap {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  margin-bottom: 16px;
}
.top-staff-content .image-wrap::after {
  display: block;
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  background-image: url(../img/staff_link_icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  bottom: 40px;
  left: 64px;
  transition: transform 0.4s ease;
}
.top-staff-content .image-wrap:hover::after {
  transform: rotate(360deg);
}
.top-staff-content .image-wrap .image {
  width: 400px;
  height: 600px;
}
.top-staff-content .name {
  font-size: 32px;
  line-height: 1.5;
}
@media screen and (max-width: 980px) {
  .top-staff {
    padding-block: 100px;
  }
  .top-staff h1 {
    font-size: 80px;
    left: 8px;
    top: -8%;
  }
  .top-staff-head {
    flex-wrap: wrap;
  }
  .top-staff-head p {
    font-size: 16px;
  }
  .top-staff-head .head_img {
    width: 218px;
  }
  .top-staff-head .scroll_btn a {
    width: 40px;
    height: 40px;
  }
  .top-staff-wrap {
    gap: 8px;
    padding-left: 20px;
  }
  .top-staff-content {
    width: 165px;
    flex-shrink: 0;
  }
  .top-staff-content .image-wrap {
    margin-bottom: 16px;
  }
  .top-staff-content .image-wrap::after {
    width: 40px;
    height: 40px;
    bottom: 16px;
    left: 16px;
  }
  .top-staff-content .image-wrap .image {
    width: 165px;
    height: 249px;
  }
}

.top-blog {
  position: relative;
  padding-block: 200px;
}
.top-blog h1 {
  position: absolute;
  font-size: 200px;
  line-height: 1.3;
  top: -11.7%;
  right: 80px;
}
.top-blog-wrap {
  display: flex;
  align-items: start;
  max-width: 1280px;
  justify-content: space-between;
  gap: 140px;
  margin: auto;
}
.top-blog-wrap .archive-link {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 24px;
  line-height: 1.5;
  white-space: nowrap;
}
.top-blog-wrap .archive-link span {
  display: block;
  width: 80px;
  height: 80px;
  background-image: url(../img/btn_icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.4s ease;
}
.top-blog-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  width: 100%;
}
.top-blog-content .post img {
  border-radius: 8px;
  aspect-ratio: 460/307;
  width: 100%;
  height: auto;
}
.top-blog-content .post .date {
  font-size: 18px;
  line-height: 1.5;
}
.top-blog-content .post .title {
  font-size: 24px;
  line-height: 1.5;
}
.top-blog-content .post:hover {
  transform: translateY(-4px);
}
@media screen and (max-width: 980px) {
  .top-blog {
    padding-block: 100px;
  }
  .top-blog h1 {
    font-size: 80px;
    top: -7.7%;
    right: 8px;
  }
  .top-blog-wrap {
    margin-inline: 20px;
    flex-wrap: wrap-reverse;
    gap: 24px;
    justify-content: end;
  }
  .top-blog-wrap .archive-link {
    font-size: 16px;
  }
  .top-blog-wrap .archive-link span {
    width: 40px;
    height: 40px;
  }
  .top-blog-content {
    display: block;
  }
  .top-blog-content .post {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
  }
  .top-blog-content .post img {
    width: 134px;
  }
  .top-blog-content .post .date {
    font-size: 14px;
  }
  .top-blog-content .post .title {
    font-size: 16px;
  }
  .top-blog-content .post:last-child {
    margin-bottom: 0;
  }
}

.top-recruit .head {
  display: flex;
  align-items: center;
}
.top-recruit .head img {
  aspect-ratio: 1124/963;
  max-width: 1124px;
  width: 60%;
}
.top-recruit .head-text {
  width: 640px;
  margin: auto;
}
.top-recruit .head-text .title {
  font-size: 64px;
}
.top-recruit .head-text .desc {
  font-size: 20px;
  line-height: 2.8;
}
.top-recruit-wrap {
  display: flex;
  align-items: start;
  max-width: 1280px;
  justify-content: space-between;
  gap: 92px;
  margin: auto;
  padding-block: 80px 200px;
}
.top-recruit-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
}
.top-recruit-content > div {
  border-radius: 8px;
  border: 3px solid #333;
  padding: 40px;
}
.top-recruit-content > div .title {
  font-size: 32px;
  line-height: 1.5;
  margin-bottom: 8px;
}
.top-recruit-content > div span {
  display: block;
  height: 2;
  width: 82%;
  margin-bottom: 16px;
}
.top-recruit-content > div .desc {
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 980px) {
  .top-recruit .head {
    flex-wrap: wrap;
  }
  .top-recruit .head img {
    width: 100%;
  }
  .top-recruit .head-text {
    margin: 40px 20px;
  }
  .top-recruit .head-text .title {
    font-size: 32px;
    margin-bottom: 24px;
  }
  .top-recruit .head-text .desc {
    font-size: 16px;
    line-height: 2;
  }
  .top-recruit-wrap {
    flex-wrap: wrap-reverse;
    justify-content: end;
    margin-inline: 20px;
    gap: 24px;
    padding-block: 40px 100px;
  }
  .top-recruit-content {
    gap: 8px;
  }
  .top-recruit-content > div {
    padding: 24px 16px;
  }
  .top-recruit-content > div .title {
    font-size: 18px;
  }
  .top-recruit-content > div span {
    width: 100%;
  }
  .top-recruit-content > div .desc {
    font-size: 14px;
    line-height: 1.8;
  }
  .top-recruit-content > div:nth-of-type(4) .title {
    margin-top: 10px;
    margin-bottom: 24px;
  }
}

.archive-link {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 24px;
  line-height: 1.5;
  white-space: nowrap;
}
.archive-link span {
  display: block;
  width: 80px;
  height: 80px;
  background-image: url(../img/btn_icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.4s ease;
}
.archive-link:hover span {
  transform: rotate(360deg);
}
@media screen and (max-width: 980px) {
  .archive-link {
    font-size: 16px;
  }
  .archive-link span {
    width: 40px;
    height: 40px;
  }
}

.page-title {
  max-width: 1440px;
  margin: 84px auto 0;
}
.page-title h2 {
  font-size: 200px;
  line-height: 1.3;
}
.page-title h3 {
  font-size: 40px;
  line-height: 1.5;
}
@media screen and (max-width: 980px) {
  .page-title {
    margin-top: 43px;
    margin-left: 16px;
  }
  .page-title h2 {
    font-size: 64px;
  }
  .page-title h3 {
    font-size: 18px;
  }
}

.page-about .head {
  background-image: url(../img/page-about_bg_pc.png);
  aspect-ratio: 1920/704;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-about .head .text {
  width: 960px;
}
.page-about .head .text h2 {
  font-size: 64px;
  margin-bottom: 40px;
  line-height: 1.5;
}
.page-about .head .text p {
  font-size: 20px;
  line-height: 2.8;
}
.page-about .message {
  padding-block: 200px 136px;
}
.page-about .message-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 68px;
  margin-block: 64px;
}
.page-about .message-content .text {
  width: 640px;
}
.page-about .message-content .text h3 {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 24px;
}
.page-about .message-content .text p {
  font-size: 16px;
  line-height: 2;
}
.page-about .message-content .img {
  text-align: right;
  line-height: 1.5;
}
.page-about .message-content .img img {
  width: 309px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 8px;
}
.page-about .message-content .img .dep {
  font-size: 14px;
  margin-bottom: 4px;
}
.page-about .message-content .img .name {
  font-size: 24px;
}
.page-about .mission {
  padding-block: 200px;
}
.page-about .mission-wrap {
  max-width: 1280px;
  margin: 64px auto 0;
}
.page-about .mission-content {
  border-radius: 8px;
  padding: 64px;
  margin-bottom: 40px;
  position: relative;
}
.page-about .mission-content .title {
  font-size: 40px;
  line-height: 1.5;
  margin-bottom: 24px;
}
.page-about .mission-content .desc {
  font-size: 18px;
  line-height: 2;
}
.page-about .mission-content img {
  position: absolute;
  width: 350px;
  height: auto;
  bottom: 0;
  right: 0;
}
.page-about .mission-bottom {
  display: flex;
  align-items: center;
  font-size: 32px;
  line-height: 3;
}
.page-about .mission-bottom .staff-img {
  max-width: 384px;
  width: 100%;
  aspect-ratio: 384/163;
  background-image: url(../img/staff_head_img.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.page-about .mission-bottom p {
  text-decoration: underline;
  text-underline-offset: 8px;
}
.page-about .company {
  padding-block: 200px;
}
.page-about .company table {
  max-width: 960px;
  margin: 64px auto 0;
  font-size: 16px;
  border-collapse: collapse;
}
.page-about .company table th {
  vertical-align: top;
  white-space: nowrap;
}
.page-about .company table td, .page-about .company table th {
  border-bottom: 1px solid rgba(51, 51, 51, 0.25);
  padding: 24;
}
.page-about .company table td.hp, .page-about .company table th.hp {
  text-decoration: underline;
}
.page-about .history {
  padding-block: 200px;
}
.page-about .history-wrap {
  max-width: 1280px;
  margin: 122px auto 0;
}
.page-about .history-content {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 40px;
}
.page-about .history-content .items {
  line-height: 1.5;
  padding-top: 40px;
}
.page-about .history-content .items-box {
  margin-bottom: 76px;
}
.page-about .history-content .items .date {
  color: rgba(255, 255, 255, 0.25);
  font-size: 18px;
  margin-bottom: 16px;
}
.page-about .history-content .items .desc {
  font-size: 24px;
}
.page-about .history-content .year {
  font-size: 150px;
  line-height: 1;
}
@media screen and (max-width: 980px) {
  .page-about .head {
    margin-top: 40px;
    background-image: url(../img/page-about_bg_sp.png);
    aspect-ratio: 785/424;
    padding: 64px 20px;
  }
  .page-about .head .text h2 {
    font-size: 32px;
  }
  .page-about .head .text p {
    font-size: 16px;
  }
  .page-about .message {
    padding: 100px 20px;
  }
  .page-about .message-content {
    flex-wrap: wrap;
    gap: 0;
    margin-block: 40px 0;
  }
  .page-about .message-content .img {
    margin-top: 24px;
    margin-inline: 13px;
  }
  .page-about .mission {
    padding: 100px 20px;
  }
  .page-about .mission-wrap {
    margin-top: 40px;
  }
  .page-about .mission-content {
    padding: 24px;
    height: 288px;
  }
  .page-about .mission-content .title {
    font-size: 18px;
  }
  .page-about .mission-content .desc {
    font-size: 13px;
  }
  .page-about .mission-content img {
    width: 271px;
  }
  .page-about .mission-bottom {
    flex-wrap: wrap;
    justify-content: center;
  }
  .page-about .mission-bottom .staff-img {
    width: 267px;
  }
  .page-about .mission-bottom p {
    font-size: 16px;
  }
  .page-about .company {
    padding: 100px 20px;
  }
  .page-about .company table {
    font-size: 14px;
  }
  .page-about .company table th {
    text-align: left;
  }
  .page-about .company table th, .page-about .company table td {
    padding: 16px 8px;
  }
  .page-about .history {
    padding: 100px 20px 69px;
  }
  .page-about .history-wrap {
    margin-top: 42px;
  }
  .page-about .history-content {
    margin-bottom: 16px;
  }
  .page-about .history-content .items {
    padding: 0;
  }
  .page-about .history-content .items-box {
    margin-bottom: 10px;
  }
  .page-about .history-content .items .date {
    font-size: 12px;
    margin-bottom: 8px;
  }
  .page-about .history-content .items .desc {
    font-size: 14px;
  }
  .page-about .history-content .year {
    font-size: 64px;
  }
}

.page-service .service-wrap {
  max-width: 1280px;
  margin: auto;
}
.page-service .service-wrap .head {
  border-radius: 8px;
  border: 2px solid #0065B2;
}
.page-service .service-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.page-service .service-content .grid-content:nth-of-type(1) .en-title {
  color: #0E8FD9;
}
.page-service .service-content .grid-content:nth-of-type(2) .en-title {
  color: #D63A39;
}
.page-service .service-content .grid-content:nth-of-type(3) .en-title {
  color: #E28904;
}
.page-service .service-content .grid-content:nth-of-type(4) .en-title {
  color: #97C415;
}
.page-service .service-content .grid-content:nth-of-type(5) .en-title {
  color: #12A449;
}
.page-service .service-content .grid-content:nth-of-type(6) .en-title {
  color: #E6C534;
}
.page-service .service-content .grid-content:nth-of-type(7) .en-title {
  color: #EF86B2;
}
.page-service .service-content .grid-content:nth-of-type(8) .en-title {
  color: #1041A0;
}
.page-service .service-content .grid-content:nth-of-type(9) .en-title {
  color: #834E35;
}
@media screen and (max-width: 980px) {
  .page-service .service-content {
    grid-template-columns: repeat(1, 1fr);
  }
}

.page-recruit {
  margin-top: 80px;
}
.page-recruit .recruit-fv .image {
  width: 100%;
  height: auto;
  aspect-ratio: 1920/963;
  background-image: url(../img/recruit_fv.jpg);
  background-size: contain;
  background-repeat: no-repeat;
}
.page-recruit .recruit-fv .text {
  max-width: 1280px;
  padding-block: 200px;
  display: flex;
  align-items: start;
  gap: 64px;
  margin: auto;
}
.page-recruit .recruit-fv .text h2 {
  font-size: 64px;
  line-height: 1.5;
  white-space: nowrap;
}
.page-recruit .recruit-fv .text p {
  font-size: 20px;
  line-height: 2.8;
}
.page-recruit .point {
  padding-block: 200px;
  max-width: 1280px;
  margin: auto;
}
.page-recruit .point-wrap {
  margin-top: 64px;
}
.page-recruit .point-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 16px;
}
.page-recruit .point-item .title {
  padding-bottom: 8px;
  font-size: 32px;
  line-height: 1.5;
  border-bottom: 2px solid #333333;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 16px;
}
.page-recruit .point-item .desc {
  font-size: 18px;
  line-height: 2;
}
.page-recruit .point-item .image {
  width: 620px;
  aspect-ratio: 620/412;
  flex-shrink: 0;
}
.page-recruit .point-item .image img {
  width: 100%;
  height: auto;
}
.page-recruit .voice {
  padding-block: 200px;
}
.page-recruit .voice-wrap {
  max-width: 1280px;
  margin: 64px auto 0;
}
.page-recruit .voice-item {
  padding-block: 52px;
  display: flex;
  align-items: start;
  gap: 64px;
  border-radius: 8px;
  margin-bottom: 40px;
}
.page-recruit .voice-item .profile-wrap {
  position: relative;
}
.page-recruit .voice-item .profile-wrap img {
  width: 410px;
  height: 272px;
  aspect-ratio: 410/272;
}
.page-recruit .voice-item .profile-item {
  position: absolute;
  left: 0;
  bottom: 24px;
  padding: 16px 24px;
  border-radius: 0px 8px 8px 0px;
  line-height: 1.5;
}
.page-recruit .voice-item .profile-item .name {

  margin-bottom: 8px;
}
.page-recruit .voice-item .profile-item .name .jp {
  font-size: 18px;
}
.page-recruit .voice-item .profile-item .name .en {
  font-size: 12px;
}
.page-recruit .voice-item .profile-item .dep {
  color: rgba(51, 51, 51, 0.5);
  font-size: 12px;
  margin-bottom: 4px;
}
.page-recruit .voice-item .profile-item .career {
  font-size: 14px;
}
.page-recruit .voice-item .text .title {
  font-size: 24px;
  border-bottom: solid 2px #333333;
  line-height: 1.5;
  padding-bottom: 8px;
  margin-bottom: 16px;
  width: -moz-fit-content;
  width: fit-content;
}
.page-recruit .voice-item .text .desc {
  max-width: 742px;
  font-size: 18px;
  line-height: 2;
}
.page-recruit .requirements {
  padding-block: 200px;
}
.page-recruit .requirements-wrap {
  max-width: 1280px;
  margin: 64px auto 0;
}
.page-recruit .requirements-wrap table {
  width: 100%;
  border-collapse: collapse;
}
.page-recruit .requirements-wrap th {
  width: 25%;
  text-align: left;
  padding: 30px;
  border-bottom: #999999 1px solid;
  border-right: #999999 1px solid;
}
.page-recruit .requirements-wrap td {
  text-align: left;
  padding: 30px;
  border-bottom: #999999 1px solid;
  border-left: #999999 1px solid;
}
.page-recruit p {
	margin: 30px 0 0;
	font-size: 16px;
}
.page-recruit .bottom {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.page-recruit .bottom img {
  aspect-ratio: 1124/963;
  max-width: 1124px;
  width: 60%;
  flex-shrink: 0;
}
.page-recruit .bottom-text {
  width: 100%;
}
.page-recruit .bottom-text .title {
  width: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 64px;
  text-align: center;
}
.page-recruit .bottom::before {
  content: "JOIN US";
  color: #FFF;
  opacity: 0.1;
  font-family: Lato;
  font-size: 200px;
  font-weight: 900;
  line-height: 1.3;
  position: absolute;
  top: -60px;
  right: 80px;
}
.page-recruit .bottom::after {
  content: "JOIN US";
  color: #FFF;
  opacity: 0.1;
  font-family: Lato;
  font-size: 200px;
  font-weight: 900;
  line-height: 1.3;
  position: absolute;
  bottom: -53px;
  right: -38px;
}
@media screen and (max-width: 980px) {
  .page-recruit {
    margin-top: 40px;
  }
  .page-recruit .recruit-fv .text {
    flex-wrap: wrap;
    gap: 24px;
    padding: 40px 20;
  }
  .page-recruit .recruit-fv .text h2 {
    font-size: 32px;
  }
  .page-recruit .recruit-fv .text p {
    font-size: 16px;
  }
  .page-recruit .point {
    padding: 100px 20px;
  }
  .page-recruit .point-wrap {
    margin-top: 40px;
  }
  .page-recruit .point-item {
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
  }
  .page-recruit .point-item .text .title {
    font-size: 18px;
    width: 100%;
  }
  .page-recruit .point-item .text .desc {
    font-size: 14px;
  }
  .page-recruit .point-item .image {
    width: 100%;
  }
  .page-recruit .point-item:last-child {
    margin-bottom: 0;
  }
  .page-recruit .voice {
    padding: 100px 20px;
  }
  .page-recruit .voice-wrap {
    margin: 40px auto 0;
  }
  .page-recruit .voice-item {
    flex-wrap: wrap;
    padding-top: 0;
    gap: 24px;
    padding-block: 0 24px;
  }
  .page-recruit .voice-item .profile-wrap img {
    border-radius: 8px 8px 0px 0px;
    aspect-ratio: 335/223;
    width: 100%;
    height: auto;
  }
  .page-recruit .voice-item .profile-item {
    padding: 8px 16px;
    bottom: 16px;
  }
  .page-recruit .voice-item .profile-item .name .jp {
    font-size: 14px;
  }
  .page-recruit .voice-item .profile-item .name .en {
    font-size: 8px;
  }
  .page-recruit .voice-item .profile-item .dep {
    font-size: 10px;
  }
  .page-recruit .voice-item .profile-item .career {
    font-size: 12px;
  }
  .page-recruit .voice .text {
    padding-inline: 16px;
  }
  .page-recruit .voice .text .title {
    font-size: 18px;
  }
  .page-recruit .voice .text .desc {
    font-size: 14px;
  }
  .page-recruit .requirements {
    padding: 100px 20px;
  }
  .page-recruit .requirements-wrap {
    margin: 40px auto 0;
  }
  .page-recruit .requirements-wrap th {
    padding: 15px;
  }
  .page-recruit .requirements-wrap td {
    padding: 15px;
  }
  .page-recruit .bottom {
    flex-wrap: wrap;
  }
  .page-recruit .bottom img {
    width: 100%;
  }
  .page-recruit .bottom-text {
    padding-block: 100px;
    position: relative;
  }
  .page-recruit .bottom-text .title {
    width: 100%;
    font-size: 32px;
  }
  .page-recruit .bottom-text::before {
    content: "JOIN US";
    color: #FFF;
    opacity: 0.1;
    font-family: Lato;
    font-size: 80px;
    font-weight: 900;
    line-height: 1.3;
    position: absolute;
    top: -24px;
    left: -14px;
  }
  .page-recruit .bottom::before {
    content: "";
  }
  .page-recruit .bottom::after {
    font-size: 80px;
    right: -14px;
    bottom: -20px;
  }
}

.page-faq {
  margin: 80px auto 200px;
}
.page-faq .faq {
  margin: auto;
  max-width: 960px;
  margin-bottom: 8px;
}
.page-faq .faq.active .faq-q::after {
  transform: rotate(45deg);
}
.page-faq .faq.active .faq-a {
  display: block;
}
.page-faq .faq-q {
  padding: 20px;
  font-size: 16px;
  line-height: 1.5;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.page-faq .faq-q::after {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../img/faq_btn.png);
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.4s ease;
  flex-shrink: 0;
}
.page-faq .faq-a {
  display: none;
  padding: 8px 20px;
  padding-right: 60px;
  font-size: 16px;
}
@media screen and (max-width: 980px) {
  .page-faq {
    margin: 40px 20px 100px;
  }
  .page-faq .faq {
    margin-bottom: 16px;
  }
  .page-faq .faq-q {
    padding: 12px;
    font-size: 14px;
  }
  .page-faq .faq-a {
    font-size: 14px;
    padding: 8px 12px;
  }
}

.subtitle {
  max-width: 1280px;
  margin: auto;
}
.subtitle h2 {
  font-size: 100px;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 20px;
}
.subtitle h2 span {
  width: 100%;
  height: 4px;
}
.subtitle p {
  font-size: 24px;
  line-height: 1.3;
}
@media screen and (max-width: 980px) {
  .subtitle h2 {
    font-size: 40px;
  }
  .subtitle h2 span {
    height: 2px;
  }
  .subtitle p {
    font-size: 12px;
  }
}

.archive-staff .staff-cates {
  max-width: 1280px;
  margin: 80 auto 200;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.archive-staff .staff-cates a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
  border-radius: 8px;
  font-size: 18px;
  line-height: 1.5;
  filter: drop-shadow(4px 4px 4px rgba(51, 51, 51, 0.25));
}
.archive-staff .staff-cates a::before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
}
.archive-staff .staff-cates a:nth-of-type(1) {
  background: #0E8FD9;
}
.archive-staff .staff-cates a:nth-of-type(1)::before {
  background-image: url(../img/staff_cat_icon1.png);
}
.archive-staff .staff-cates a:nth-of-type(2) {
  background: #D63A39;
}
.archive-staff .staff-cates a:nth-of-type(2)::before {
  background-image: url(../img/staff_cat_icon2.png);
}
.archive-staff .staff-cates a:nth-of-type(3) {
  background: #E28904;
}
.archive-staff .staff-cates a:nth-of-type(3)::before {
  background-image: url(../img/staff_cat_icon3.png);
}
.archive-staff .staff-cates a:nth-of-type(4) {
  background: #97C415;
}
.archive-staff .staff-cates a:nth-of-type(4)::before {
  background-image: url(../img/staff_cat_icon4.png);
}
.archive-staff .staff-cates a:nth-of-type(5) {
  background: #12A449;
}
.archive-staff .staff-cates a:nth-of-type(5)::before {
  background-image: url(../img/staff_cat_icon5.png);
}
.archive-staff .staff-cates a:nth-of-type(6) {
  background: #E6C534;
}
.archive-staff .staff-cates a:nth-of-type(6)::before {
  background-image: url(../img/staff_cat_icon6.png);
}
.archive-staff .staff-cates a:nth-of-type(7) {
  background: #EF86B2;
}
.archive-staff .staff-cates a:nth-of-type(7)::before {
  background-image: url(../img/staff_cat_icon7.png);
}
.archive-staff .staff-cates a:nth-of-type(8) {
  background: #1041A0;
}
.archive-staff .staff-cates a:nth-of-type(8)::before {
  background-image: url(../img/staff_cat_icon8.png);
}
.archive-staff .staff-cates a:nth-of-type(9) {
  background: #834E35;
}
.archive-staff .staff-cates a:nth-of-type(9)::before {
  background-image: url(../img/staff_cat_icon9.png);
}
.archive-staff .staff-cates-title {
  max-width: 1280px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 40px;
  line-height: 1.3;
  white-space: nowrap;
  margin-bottom: 64px;
}
.archive-staff .staff-cates-title span {
  width: 100%;
  height: 4px;
}
.archive-staff .staff-cates-title:nth-of-type(1) {
  color: #0E8FD9;
}
.archive-staff .staff-cates-title:nth-of-type(1) span {
  background: #0E8FD9;
}
.archive-staff .staff-cates-title:nth-of-type(2) {
  color: #D63A39;
}
.archive-staff .staff-cates-title:nth-of-type(2) span {
  background: #D63A39;
}
.archive-staff .staff-cates-title:nth-of-type(3) {
  color: #E28904;
}
.archive-staff .staff-cates-title:nth-of-type(3) span {
  background: #E28904;
}
.archive-staff .staff-cates-title:nth-of-type(4) {
  color: #97C415;
}
.archive-staff .staff-cates-title:nth-of-type(4) span {
  background: #97C415;
}
.archive-staff .staff-cates-title:nth-of-type(5) {
  color: #12A449;
}
.archive-staff .staff-cates-title:nth-of-type(5) span {
  background: #12A449;
}
.archive-staff .staff-cates-title:nth-of-type(6) {
  color: #E6C534;
}
.archive-staff .staff-cates-title:nth-of-type(6) span {
  background: #E6C534;
}
.archive-staff .staff-cates-title:nth-of-type(7) {
  color: #EF86B2;
}
.archive-staff .staff-cates-title:nth-of-type(7) span {
  background: #EF86B2;
}
.archive-staff .staff-cates-title:nth-of-type(8) {
  color: #1041A0;
}
.archive-staff .staff-cates-title:nth-of-type(8) span {
  background: #1041A0;
}
.archive-staff .staff-cates-title:nth-of-type(9) {
  color: #834E35;
}
.archive-staff .staff-cates-title:nth-of-type(9) span {
  background: #834E35;
}
.archive-staff .staff-list-wrap {
  max-width: 1280px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 120px;
}
.archive-staff .staff-list-content .staff-image {
  margin-bottom: 16px;
}
.archive-staff .staff-list-content .name-wrap {
  display: flex;
  align-items: baseline;
  line-height: 1.5;
}
.archive-staff .staff-list-content .name-jp {
  font-size: 24px;
}
.archive-staff .staff-list-content .name-en {
  font-size: 16px;
}
.archive-staff .staff-list-content .dep {
  color: rgba(51, 51, 51, 0.5);
  font-size: 16px;
  line-height: 150%;
}
@media screen and (max-width: 980px) {
  .archive-staff {
    margin-inline: 16px;
  }
  .archive-staff .staff-cates {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    margin-top: 40px;
    margin-bottom: 100px;
  }
  .archive-staff .staff-cates a {
    gap: 4px;
    height: 56px;
    padding: 0px;
    font-size: 16px;
  }
  .archive-staff .staff-cates a:nth-of-type(9) {
    line-height: 1.2;
  }
  .archive-staff .staff-cates a::before {
    width: 16px;
    height: 16px;
  }
  .archive-staff .staff-cates-title {
    font-size: 24px;
  }
  .archive-staff .staff-cates-title span {
    height: 2px;
  }
  .archive-staff .staff-list-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
	margin-top: 30px;
    margin-bottom: 40px;
  }
  .archive-staff .staff-list-content .staff-image {
    margin-bottom: 8px;
  }
  .archive-staff .staff-list-content .name-wrap {
    display: block;
    line-height: 1.2;
    margin-bottom: 8px;
  }
  .archive-staff .staff-list-content .name-jp {
    font-size: 16px;
  }
  .archive-staff .staff-list-content .name-en {
    font-size: 12px;
  }
  .archive-staff .staff-list-content .dep {
    color: rgba(51, 51, 51, 0.5);
    font-size: 12px;
  }
}

.archive-facility .facility-list-wrap {
  max-width: 1280px;
  margin: 80px auto 200px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.archive-facility .facility-item .image {
  border-radius: 8px;
  margin-bottom: 16px;
}
.archive-facility .facility-item .detail-wrap {
  line-height: 1.5;
}
.archive-facility .facility-item .detail-wrap .name {
  font-size: 32px;
  margin-bottom: 8px;
}
.archive-facility .facility-item .detail-wrap .postNum {
  font-size: 18px;
}
.archive-facility .facility-item .detail-wrap .address {
  font-size: 18px;
  margin-bottom: 8px;
}
.archive-facility .facility-item .detail-wrap .tel {
  font-size: 18px;
  margin-bottom: 16px;
}
@media screen and (max-width: 980px) {
  .archive-facility .facility-list-wrap {
    margin: 40px 20 100px;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
  .archive-facility .facility-list-wrap .name {
    font-size: 24px;
    margin-bottom: 8px;
  }
  .archive-facility .facility-list-wrap .postNum {
    font-size: 14px;
  }
  .archive-facility .facility-list-wrap .address {
    font-size: 14px;
    margin-bottom: 4px;
  }
  .archive-facility .facility-list-wrap .tel {
    font-size: 14px;
    margin-bottom: 8px;
  }
}

.archive-news {
  margin-bottom: 120px;
}
.archive-news .item {
  max-width: 832px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 29px;
  border-bottom: solid 1px rgba(51, 51, 51, 0.3);
  padding: 24px 12px;
  font-size: 16px;
}
.archive-news .item p {
  transition: 0.4s transform ease;
}
.archive-news .item:hover p {
  transform: translateY(-10px);
}
@media screen and (max-width: 980px) {
  .archive-news {
    margin-top: 40px;
    margin-inline: 20px;
  }
}

.paginate {
  font-size: 16px;
  text-align: center;
  align-items: center;
}
.paginate .current {
  color: #0065B2;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.paginate .page-numbers {
  height: -moz-fit-content;
  height: fit-content;
}
.paginate .next, .paginate .prev {
  font-size: 25px;
  width: 40px;
  height: 40px;
  color: #fff;
  background: #0065B2;
  border-radius: 50%;
}

.categories {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.categories p {
  display: block;
  padding: 8px 16px;
  font-size: 18px;
  white-space: nowrap;
}
.categories .cat1 {
  background: #0E8FD9;
}
.categories .cat2 {
  background: #D63A39;
}
.categories .cat3 {
  background: #E28904;
}
.categories .cat4 {
  background: #97C415;
}
.categories .cat5 {
  background: #12A449;
}
.categories .cat6 {
  background: #E6C534;
}
.categories .cat7 {
  background: #EF86B2;
}
.categories .cat8 {
  background: #1041A0;
}
.categories .cat9 {
  background: #834E35;
}
@media screen and (max-width: 980px) {
  .categories .categories {
    margin-bottom: 8px;
  }
  .categories .categories p {
    font-size: 14px;
    padding: 8px;
  }
}

.single-facility {
  margin-top: 45px;
}
.single-facility .header {
  position: relative;
}
.single-facility .header h2 {
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 100px;
}
.single-facility-content {
  max-width: 1280px;
  margin: 200px auto;
}
.single-facility-content .info-wrap {
  margin-bottom: 200px;
}
.single-facility-content .info-content {
  margin-top: 64px;
  display: flex;
  gap: 40px;
  align-items: start;
}
.single-facility-content .info-content .image {
  max-width: 620px;
  width: 100%;
}
.single-facility-content .info-content .detail-wrap {
  width: 100%;
}
.single-facility-content .info-content .detail-wrap p {
  font-size: 18px;
  font-weight: 500;
}
.single-facility-content .info-content .detail-wrap p.c3 {
  line-height: 1.5;
  margin-bottom: 8px;
}
.single-facility-content .info-content .detail-wrap > div {
  border-bottom: solid 1px rgba(51, 51, 51, 0.25);
  padding: 24px 12px;
}
.single-facility-content .info-content .detail-wrap > div .textarea {
  white-space: pre-line;
}
.single-facility-content .info-content .detail-wrap > div:first-child {
  padding-top: 0;
}
.single-facility-content .gallery {
  margin-bottom: 200px;
}
.single-facility-content .gallery-wrap {
  display: flex;
  align-items: start;
  gap: 44px;
  margin-top: 64px;
}
.single-facility-content .gallery-slick {
  height: -moz-fit-content;
  height: fit-content;
  aspect-ratio: 824/549;
  max-width: 824px;
}
.single-facility-content .gallery-content {
  position: relative;
}
.single-facility-content .gallery-content .desc {
  font-size: 18px;
  padding: 8px 49px;
  position: absolute;
  right: 0;
  bottom: 0;
}
.single-facility-content .gallery-content img {
  width: 100%;
  aspect-ratio: 824/549;
  max-width: 824px;
}
.single-facility-content .gallery-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.single-facility-content .access-content {
  aspect-ratio: 1280/622;
  margin-top: 64px;
}
.single-facility-content .access-content iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 980px) {
  .single-facility {
    margin-top: 23px;
  }
  .single-facility .gallery {
    margin-bottom: 100px;
  }
  .single-facility .gallery-wrap {
    flex-wrap: wrap;
  }
  .single-facility .gallery-slick {
    width: 100%;
  }
  .single-facility .gallery-nav {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .single-facility .header h2 {
    font-size: 40px;
  }
  .single-facility-content {
    margin: 100px 20px;
  }
  .single-facility-content .info-wrap {
    margin-bottom: 100px;
  }
  .single-facility-content .info-content {
    flex-wrap: wrap;
    margin-top: 40px;
  }
  .single-facility-content .info-content .detail-wrap > div {
    padding: 16px 8px;
  }
  .single-facility-content .info-content .detail-wrap > div p {
    font-size: 14px;
  }
}

.single-news {
  max-width: 936px;
  margin: auto;
}
.single-news .title {
  font-size: 40px;
  line-height: 1.5;
  border-bottom: 1px solid rgba(51, 51, 51, 0.3);
  padding: 24px 12px;
}
.single-news .title .date {
  font-size: 24px;
}
.single-news .content {
  margin-top: 64px;
  font-size: 18px;
  line-height: 2;
  margin-bottom: 120px;
}
.single-news .post-navigation {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 200px;
}
.single-news .post-navigation .wrap {
  width: 40px;
  height: 40px;
}
.single-news .post-navigation .wrap a {
  display: block;
  width: 100%;
  height: 100%;
}
.single-news .post-navigation .next-link {
  width: 40px;
  height: 40px;
  display: block;
  background-image: url(../img/next_btn.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.single-news .post-navigation .prev-link {
  width: 40px;
  height: 40px;
  display: block;
  background-image: url(../img/prev_btn.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 980px) {
  .single-news {
    margin: 40px 20px;
  }
  .single-news .title {
    padding: 16px 12px;
    font-size: 18px;
  }
  .single-news .title .date {
    font-size: 14px;
  }
  .single-news .content {
    font-size: 14px;
    margin-block: 40px 64px;
  }
  .single-news .post-navigation {
    margin-bottom: 100px;
  }
}

.service-header {
  margin-top: 44px;
}
.service-header .image {
  position: relative;
}
.service-header .image h2 {
  position: absolute;
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 100px;
}
@media screen and (max-width: 980px) {
  .service-header {
    margin-top: 24px;
  }
  .service-header .image h2 {
    font-size: 40px;
  }
}

.single.service {
  margin-block: 200px;
}
.single .service-content {
  margin-top: 64px;
}
.single .service-content > h3 {
  font-size: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}
.single .service-content > h3 p {
  flex-shrink: 1;
  white-space: pre;
}
.single .service-content > h3 span {
  width: 100%;
  height: 2px;
  flex-shrink: 10000000;
}
.single .service-content > .desc {
  font-size: 18px;
  margin-bottom: 64px;
  white-space: pre-wrap;
}
.single .service-content > .box-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.single .service-content > .box-wrap > div {
  padding: 40px;
  border-radius: 8px;
}
.single .service-content > .box-wrap > div .title {
  font-size: 32px;
  margin-bottom: 16px;
  line-height: 1.5;
}
.single .service-content > .box-wrap > div .desc {
  font-size: 18px;
  line-height: 1.7;
  white-space: pre-wrap;
}
.single .service-content .link {
  width: 100%;
  font-size: 24px;
  max-width: 620px;
  padding: 40px 64px;
  display: flex;
  align-items: center;
  border: 2px solid #000;
  border-radius: 8px;
  gap: 24px;
  margin-left: auto;
}
.single .service-content .link:hover::before {
  transform: rotate(360deg);
}
.single .service-content .link::before {
  content: "";
  background-image: url(../img/btn_icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 80px;
  height: 80px;
  transition: transform 0.4s ease;
}
.single .service-content .link::after {
  content: "";
  background-image: url(../img/extlink_icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 23px;
  height: 23px;
}
@media screen and (max-width: 980px) {
  .single .service-content {
    margin-top: 40px;
  }
  .single .service-content > h3 {
    font-size: 24px;
    gap: 8px;
  }
  .single .service-content > h3 p {
    white-space: pre-line;
  }
  .single .service-content > h3 span {
    height: 1px;
  }
  .single .service-content > .desc {
    font-size: 14px;
    line-height: 2;
  }
  .single .service-content > .box-wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
  .single .service-content > .box-wrap > div {
    padding: 24px;
  }
  .single .service-content > .box-wrap > div .title {
    font-size: 18px;
  }
  .single .service-content > .box-wrap > div .desc {
    font-size: 14px;
  }
  .single .service-content .link {
    padding: 24px;
    font-size: 16px;
    gap: 16px;
  }
  .single .service-content .link::before {
    width: 40px;
    height: 40px;
  }
  .single .service-content .link::after {
    width: 16px;
    height: 16px;
  }
}
.single.archive-facility {
  padding-block: 200px;
}
.single.archive-facility .facility-list-wrap {
  margin-bottom: 0;
}
.single.service-staff {
  margin-block: 200px;
}
.single.service-staff .staff-list-wrap {
  max-width: 1280px;
  margin: 64px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 120px;
}
.single.service-staff .staff-list-wrap .name-jp {
  font-size: 32px;
}
.single.service-staff .staff-list-wrap .image-wrap {
  position: relative;
  width: 100%;
  height: auto;
  margin-bottom: 16px;
}
.single.service-staff .staff-list-wrap .image-wrap .image {
  width: 100%;
}
.single.service-staff .staff-list-wrap .image-wrap::after {
  display: block;
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  background-image: url(../img/staff_link_icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  bottom: 40px;
  left: 64px;
  transition: transform 0.4s ease;
}
.single.service-staff .staff-list-wrap .image-wrap:hover::after {
  transform: rotate(360deg);
}
.single.service-staff .service-staff-btn {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 620px;
  padding: 40px 64px;
  border-radius: 8px;
  border: 2px solid #000;
  margin: auto;
  font-size: 24px;
  line-height: 1.5;
}
.single.service-staff .service-staff-btn::before {
  transition: transform 0.4s ease;
  display: block;
  content: "";
  background-image: url(../img/about_icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 80px;
  height: 80px;
}
.single.service-staff .service-staff-btn:hover span {
  transform: translateY(-5px);
}
.single.service-staff .service-staff-btn:hover::before {
  transform: rotate(360deg);
}
.single.news {
  margin-bottom: 200px;
}
.single.news .news-list {
  padding-block: 0;
}
.single.news .news-list-content {
  padding: 0;
}
.single.news .news-list-content a:first-child {
  padding-top: 0;
}
.single.news .news-list-wrapper {
  margin-top: 64px;
}
.single.news .news-list-wrapper .link::before {
  background-image: url(../img/btn_icon.png);
}
@media screen and (max-width: 980px) {
  .single.service {
    margin: 100px 20px;
  }
  .single.archive-facility {
    padding-block: 100px;
    padding-inline: 20px;
  }
  .single.archive-facility .facility-list-wrap {
    margin-inline: 0;
    margin-bottom: 0;
  }
  .single.service-staff {
    margin: 100px 20px;
  }
  .single.service-staff .service-staff-btn {
    padding: 24px;
    font-size: 16px;
  }
  .single.service-staff .service-staff-btn::before {
    width: 40px;
    height: 40px;
  }
  .single.service-staff .staff-list-wrap {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 24px;
  }
  .single.service-staff .staff-list-wrap .name-jp {
    font-size: 16px;
  }
  .single.service-staff .staff-list-wrap .image-wrap::after {
    width: 40px;
    height: 40px;
    left: 16px;
    bottom: 16px;
  }
  .single.news {
    margin-bottom: 100px;
  }
  .single.news .subtitle {
    margin-inline: 20px;
  }
}

.etc {
  padding-block: 200px;
}
.etc h3 {
  max-width: 1280px;
  margin: auto;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 40px;
}
.etc h3 span {
  display: block;
  width: 100%;
  height: 4px;
}
.etc-wrap {
  display: flex;
  gap: 24px;
  align-items: start;
  max-width: 1280px;
  margin: 64px auto 0;
  overflow-x: auto;
}
.etc-item {
  width: 410px;
  font-size: 18px;
  flex-shrink: 0;
}
.etc-item .image {
  margin-bottom: 16px;
}
.etc-item .name {
  font-size: 32px;
  margin-bottom: 8px;
}
.etc-item .address {
  margin-bottom: 8px;
}
.etc-item .tel {
  margin-bottom: 16px;
}
.etc .scroll_btn {
  display: flex;
  justify-content: end;
  max-width: 1280px;
  margin: auto;
  gap: 16px;
}
.etc .scroll_btn a {
  width: 80px;
  height: 80px;
}
@media screen and (max-width: 980px) {
  .etc {
    padding-inline: 20px;
    padding-block: 100px;
  }
  .etc h3 {
    font-size: 24px;
  }
  .etc h3 span {
    height: 2px;
  }
  .etc-wrap {
    width: 100%;
    margin-top: 40px;
  }
  .etc-item {
    width: 335px;
  }
  .etc .scroll_btn a {
    width: 40px;
    height: 40px;
  }
}

.slick-prev, .slick-next {
  background: #0065B2;
  background-size: 11px 20px;
  background-repeat: no-repeat;
  z-index: 10;
  top: 0;
  bottom: 0;
  margin-block: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transform: translateY(-50%);
  background-position: center;
}
.slick-prev::before, .slick-next::before {
  content: "";
}
.slick-prev:hover, .slick-next:hover {
  background: #0065B2 !important;
}

.slick-next {
  background-image: url(../img/arrow_next.png);
}

.slick-prev {
  background-image: url(../img/arrow_prev.png);
  background-position-x: 12px;
}

@media screen and (max-width: 980px) {
  .slick-prev, .slick-next {
    background-size: 5px 10px;
    width: 20px;
    height: 20px;
  }
  .slick-next {
    right: -10px;
  }
  .slick-prev {
    background-position-x: 7px;
    left: -10px;
  }
}
.page-contact {
  max-width: 960px;
  margin: auto;
  font-size: 18px;
  font-weight: 500;
}
.page-contact .df {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.page-contact .df span {
  width: 100%;
  display: block;
}
.page-contact .df span input {
  display: block;
  width: 100%;
}
.page-contact .wpcf7-form-control-wrap {
  width: 100%;
}
.page-contact .wpcf7-form-control-wrap textarea {
  width: 100%;
}
.page-contact .bg3 {
  border: none;
  color: #fff;
  border-radius: 8px;
  padding: 12px 47px;
  display: block;
  margin: 12px auto;
}
@media screen and (max-width: 980px) {
  .page-contact {
    font-size: 14px;
    margin: 20px;
  }
  .page-contact .df {
    grid-template-columns: repeat(1, 1fr);
  }
}/*# sourceMappingURL=style.css.map */