@charset "UTF-8";
.cnt {
  width: 100%;
  max-width: 1180px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
}

:root {
  --admin-bar-height: 0px;
  --global-nav-height: 100px;
  --global-navi-height-for-anchor: 0px;
}
:root .admin-bar {
  --admin-bar-height: 32px;
}
@media only screen and (max-width: 767px) {
  :root .admin-bar {
    --admin-bar-height: 46px;
  }
}
@media (max-width: 768px) {
  :root {
    --global-nav-height: 60px;
  }
}
@media (max-width: 768px) {
  :root {
    --global-navi-height-for-anchor: 0px;
  }
}

body, main {
  z-index: -100;
  position: relative;
  color: #444;
}

.header-padding {
  padding-top: 100px;
}
@media (max-width: 768px) {
  .header-padding {
    padding-top: 60px;
  }
}

.no-scroll {
  overflow: hidden;
}

.cnt-large {
  max-width: 1366px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.btn-circle {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding-left: 80px;
  padding-right: 45px;
  height: 60px;
}
@media (max-width: 768px) {
  .btn-circle {
    height: 50px;
    padding-left: 70px;
    padding-right: 40px;
  }
}
.btn-circle:hover i {
  background-color: #243044;
  width: 100%;
  border-radius: 30px;
}
@media (max-width: 768px) {
  .btn-circle:hover i {
    border-radius: 25px;
  }
}
.btn-circle:hover i::before {
  -webkit-filter: brightness(0%) invert(100%);
  filter: brightness(0%) invert(100%);
  left: 12%;
}
.btn-circle:hover label::before {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  opacity: 0;
}
.btn-circle:hover label::after {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.btn-circle i {
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  background-color: #fff;
  display: block;
  width: 60px;
  height: 60px;
  border: 1px solid #243044;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media (max-width: 768px) {
  .btn-circle i {
    width: 50px;
    height: 50px;
  }
}
.btn-circle i::before {
  background: url(../images/btn_arrow.svg) no-repeat 0 0;
  background-size: 100% 100%;
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.btn-circle label {
  font-size: 16px;
  font-weight: 400;
  position: relative;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  display: block;
}
.btn-circle label::before, .btn-circle labelafter {
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  display: block;
  text-align: left;
}
.btn-circle label::before {
  content: attr(data-text);
}
.btn-circle label::after {
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  color: #fff;
}

.ttl-box-center {
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  text-align: center;
}
.ttl-box-center .ttl-en {
  position: relative;
}
.ttl-box-center .ttl-en::before {
  position: absolute;
  content: "";
  background-image: url(../images/ttl_stars.svg);
  background-repeat: no-repeat;
  background-size: contain;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 37px;
  height: 12px;
}

.ttl-box-left {
  width: fit-content;
}
.ttl-box-left .ttl-en {
  position: relative;
}
.ttl-box-left .ttl-en::before {
  position: absolute;
  content: "";
  background-image: url(../images/ttl_stars.svg);
  background-repeat: no-repeat;
  background-size: contain;
  top: 0;
  left: 0;
  width: 37px;
  height: 12px;
}

.ttl-en {
  padding-top: clamp(24px, 3.2vw, 32px);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.3em;
  color: #09285F;
}

.ttl-ja {
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #898989;
}

.copy24 {
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 1.45;
}

.dl {
  display: grid;
  grid-template-columns: 26% 1fr;
  max-width: 880px;
  width: 100%;
  margin: min(7.3vw, 100px) auto;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}
.dl::before {
  position: absolute;
  content: "";
  border-top: 1px solid #cfcfcf;
  height: 1px;
  width: calc(100% - 30px);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.dl dt {
  border-bottom: 1px solid #CFCFCF;
  color: #898989;
  font-weight: 400;
  padding: 25px 0;
}
.dl dd {
  border-bottom: 1px solid #CFCFCF;
  font-weight: 400;
  padding: 25px 0;
}
@media (max-width: 768px) {
  .dl {
    grid-template-columns: auto;
    margin: 20px auto;
  }
  .dl::before {
    display: none;
  }
  .dl dt {
    border-bottom: none;
    padding-top: 13px;
    padding-bottom: 4px;
  }
  .dl dd {
    padding-top: 0;
    padding-bottom: 16px;
  }
  .dl dd:last-of-type {
    border-bottom: 0;
    padding-bottom: 0;
  }
}

.section-padding {
  padding-top: clamp(70px, 8.3vw, 113px);
}

.section_bg_gray {
  background-image: url(../images/bg_gray.png);
  background-size: contain;
  background-repeat: repeat;
}

.object-cover {
  object-fit: cover;
  height: 100%;
}

.c-hamburger {
  display: none;
}
@media (max-width: 768px) {
  .c-hamburger {
    display: flex;
    position: fixed;
    top: 0;
    top: var(--admin-bar-height);
    right: 20px;
    width: 40px;
    height: var(--global-nav-height);
    z-index: 10000;
    flex-direction: column;
    gap: 10px;
    cursor: pointer;
  }
  .c-hamburger span {
    display: block;
    background-color: #243044;
    width: 40px;
    height: 1px;
    transition: all 0.5s;
  }
  .c-hamburger.on span:nth-child(1) {
    transform: translateY(6px) rotate(20deg);
  }
  .c-hamburger.on span:nth-child(2) {
    transform: translateY(-5px) rotate(-20deg);
  }
}

.breadcrumbs span:not(:first-child) {
  padding-left: 24px;
  position: relative;
}
.breadcrumbs span:not(:first-child)::before {
  position: absolute;
  content: "";
  background-image: url(../images/arrow_right.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 4px;
  height: 4px;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}

.slick-list {
  height: 100%;
}

.slick-track {
  height: 100%;
}

.slick-slide {
  -webkit-transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
}

.scrolled .header-top-fv {
  opacity: 1;
}

.header-top-fv {
  opacity: 0;
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}

.header-scroll .header_wrap {
  background-color: transparent;
  padding-left: 0;
}
@media (max-width: 768px) {
  .header-scroll .header_wrap {
    padding-left: 40px;
    margin-top: 20px;
  }
}
.header-scroll .header-logo {
  width: clamp(165px, 18.8vw, 180px);
  height: 160%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-scroll .header-logo a {
  aspect-ratio: 4/3;
  width: 66.6%;
}
.header-scroll .header-logo a img {
  height: 100%;
  object-fit: contain;
}
@media (max-width: 768px) {
  .header-scroll .header-logo {
    width: 120px;
    height: 100%;
    background-color: transparent;
  }
  .header-scroll .header-logo a {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
  }
}
.header-scroll .c-hamburger {
  top: 20px;
  right: 40px;
}
.header-scroll .c-hamburger span {
  background-color: #fff;
}
.header-scroll .header-nav_wrap {
  padding-bottom: 0px;
}
.header-scroll .header-nav-list {
  gap: 40px;
}
.header-scroll .header-nav-list a {
  color: #fff;
}
@media (max-width: 959px) {
  .header-scroll .header-nav-list {
    gap: 25px;
  }
}
.header-scroll .header-logo-img-fv {
  top: 0;
}
.header-scroll .header-logo-img {
  top: -200px;
}

.header {
  position: fixed;
  width: 100%;
  height: var(--global-nav-height);
}

.header_wrap {
  height: 100%;
  padding-left: 100px;
  padding-right: 20px;
  background-color: #fff;
  transition-duration: 0.5s;
}
@media (max-width: 959px) {
  .header_wrap {
    padding-left: 50px;
  }
}
@media (max-width: 768px) {
  .header_wrap {
    padding-left: 20px;
  }
}

.header-logo {
  width: min(14%, 190px);
  height: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-logo a {
  aspect-ratio: 19/4;
  width: 100%;
  transition-duration: 1s;
  z-index: 100;
}
.header-logo a img {
  height: 100%;
  object-fit: contain;
}
@media (max-width: 768px) {
  .header-logo {
    width: 120px;
  }
}

.header-logo-img-fv {
  top: -200px;
  transition-duration: 1s;
}

.header-logo-img {
  top: 0;
  transition-duration: 1s;
}

@media (max-width: 768px) {
  .header-nav {
    width: 300px;
  }
}

.header-nav_wrap {
  gap: 40px;
  padding-top: 20px;
  padding-bottom: 20px;
  transition-duration: 1s;
}
@media (max-width: 959px) {
  .header-nav_wrap {
    gap: 25px;
  }
}
@media (max-width: 768px) {
  .header-nav_wrap {
    gap: 40px;
    top: -200vh;
    flex-direction: column;
    background-color: #F6F6F6;
    z-index: 10;
    width: 100vw;
    height: 100svh;
    position: fixed;
    left: 0;
    padding-top: calc(var(--global-nav-height) + 40px);
    background-image: url(../images/nav_list_bg.svg);
    background-position-x: center;
    background-position-y: bottom;
  }
  .header-nav_wrap.on {
    top: 0;
  }
}

.header-nav-list {
  gap: 1em;
}
.header-nav-list a {
  color: #231816;
  font-weight: 400;
  font-size: 14px;
}
.header-nav-list li span {
  display: none;
}
@media (max-width: 768px) {
  .header-nav-list {
    flex-direction: column;
  }
  .header-nav-list li {
    border-bottom: 1px solid #B9C3D3;
    display: flex;
    align-items: center;
    position: relative;
  }
  .header-nav-list li .before-line {
    display: block;
    background-color: #09285f;
    width: 10px;
    height: 1px;
  }
  .header-nav-list li .after-arrow {
    position: absolute;
    display: block;
    width: 6px;
    height: 6px;
    right: 0;
    background-image: url(../images/header-arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
  }
  .header-nav-list li a {
    width: 100%;
    color: #09285F;
    padding: 20px 0 20px 14px;
  }
}

.header-nav-btn {
  height: 100%;
  width: 200px;
  background-color: #243044;
}
@media (max-width: 959px) {
  .header-nav-btn {
    width: 175px;
  }
}
@media (max-width: 768px) {
  .header-nav-btn {
    width: 240px;
    height: 50px;
  }
}
.header-nav-btn a {
  color: #fff;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #243044;
  position: relative;
  z-index: 10;
  overflow: hidden;
}
.header-nav-btn a span {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  top: 0;
  left: -100%;
  z-index: -10;
  transition-duration: 0.3s;
}
.header-nav-btn a:hover {
  color: #231816;
}
.header-nav-btn a:hover span {
  left: 0;
}

.page-header {
  padding-top: 40px;
}

.bred .current-item {
  color: #09285F;
}

.page-header-ttl-box {
  padding-top: 80px;
}
.page-header-ttl-box p {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.3em;
  color: #09285F;
}
.page-header-ttl-box h2 {
  padding-top: 10px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.2em;
  color: #898989;
}

.page-bg {
  background-image: url(../images/page_bg_gray.png);
  background-size: cover;
}

.contact {
  padding-top: clamp(70px, 7.3vw, 100px);
  padding-bottom: clamp(28px, 4.7vw, 64px);
  background-image: url(../images/contact_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 768px) {
  .contact {
    background-image: url(../images/contact_bg_sp.jpg);
  }
}
.contact::before {
  position: absolute;
  content: "";
  background-image: url(../images/contact_bg_cover.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.contact .cnt {
  z-index: 10;
}

.contact-ttl .ttl-en {
  padding-top: 0;
  padding-bottom: 10px;
  color: #fff;
}
.contact-ttl .ttl-ja {
  color: #CFCFCF;
}

.contact-text {
  color: #fff;
  margin-top: 30px;
}

.contact_inner {
  justify-content: center;
  gap: 4px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .contact_inner {
    flex-direction: column;
    gap: 10px;
  }
}

.contact-contents {
  width: max(360px, 35%);
  background-color: #fff;
  padding-top: 38px;
  padding-bottom: 38px;
}
@media (max-width: 768px) {
  .contact-contents {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
  }
}

.contact-tel {
  pointer-events: none;
}
@media (max-width: 768px) {
  .contact-tel {
    pointer-events: all;
    padding-top: 20px;
    padding-bottom: 24px;
  }
}

@media (max-width: 768px) {
  .contact-tel-ttl {
    font-size: 14px;
  }
}

.contact-tel-num {
  font-size: 32px;
  line-height: 1.4;
  letter-spacing: 0.2em;
  padding-top: 10px;
}
@media (max-width: 768px) {
  .contact-tel-num {
    font-size: 26px;
    padding-top: 5px;
  }
}
.contact-tel-num span {
  font-size: 16px;
}

.contact-tel-time {
  line-height: 1.4;
  letter-spacing: 0.1em;
  padding-top: 6px;
}
@media (max-width: 768px) {
  .contact-tel-time {
    display: inline-block;
  }
}

.contact-tel-date {
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .contact-tel-date {
    display: inline-block;
    font-size: 14px;
  }
}

.contact-form {
  padding: 0;
}
.contact-form a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 10;
  font-size: 18px;
}
.contact-form a span {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #243044;
  top: 0;
  left: -100%;
  transition-duration: 0.3s;
  z-index: -10;
}
.contact-form a:hover {
  color: #fff;
}
.contact-form a:hover span {
  left: 0;
}
@media (max-width: 768px) {
  .contact-form {
    height: 140px;
  }
}

.btn-404 {
  padding-bottom: clamp(70px, 8.3vw, 113px);
}
.btn-404 a {
  width: fit-content;
  padding: 10px 15px;
  position: relative;
  overflow: hidden;
  z-index: 10;
  background-color: #243044;
  border: 1px solid #243044;
  color: #fff;
}
.btn-404 a span {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  top: 0;
  left: -100%;
  transition-duration: 0.3s;
  z-index: -10;
}
.btn-404 a:hover {
  color: #243044;
}
.btn-404 a:hover span {
  left: 0;
}

.footer {
  padding-top: 50px;
  color: #fff;
  background-image: url(../images/footer_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}

.footer-link_wrap {
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 450px) {
  .footer-link_wrap {
    flex-direction: column;
    align-items: center;
  }
}

.footer-link {
  color: #fff;
}

.footer-company-info {
  column-gap: 50px;
  row-gap: 20px;
  margin-top: 46px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .footer-company-info {
    margin-top: 50px;
  }
}
@media (max-width: 450px) {
  .footer-company-info {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 450px) {
  .footer-line-link_sp {
    display: block !important;
    padding-bottom: 20px;
  }
}

@media (max-width: 450px) {
  .footer-line-link {
    display: none;
  }
}

.footer-company-logo {
  aspect-ratio: 110/23;
  width: 220px;
  margin-top: 46px;
}
@media (max-width: 450px) {
  .footer-company-logo {
    width: 160px;
    margin-top: 30px;
  }
}
.footer-company-logo img {
  height: 100%;
  object-fit: cover;
}

.copyright {
  border-top: 1px solid #fff;
  margin-top: 54px;
  padding-top: 5px;
  padding-bottom: 10px;
}
@media (max-width: 768px) {
  .copyright {
    margin-top: 40px;
    padding-top: 15px;
    padding-bottom: 20px;
  }
}
.copyright p {
  font-size: 14px;
}

.scrolled .top-fv {
  height: clamp(700px, 53vw, 100svh);
}
@media (max-width: 768px) {
  .scrolled .top-fv {
    height: min(173vw, 1050px);
  }
}
.scrolled .top-fv::after {
  border-width: 20px;
}
.scrolled .top-fv-logo {
  opacity: 0;
}
.scrolled .top-fv-text-box {
  opacity: 1;
}
.scrolled .top-fv-line {
  bottom: 20px;
}

.top-fv {
  overflow: hidden;
  height: 100svh;
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
  -webkit-transition-property: height;
  transition-property: height;
}
.top-fv::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 1px solid #fff;
  -webkit-transition-timing-function: ease-in;
  transition-timing-function: ease-in;
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
  -webkit-transition-property: border;
  transition-property: border;
  pointer-events: none;
}

.top-fv-logo {
  width: max(250px, 26.3%);
  aspect-ratio: 4/3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  transition: 1.2s;
}
.top-fv-logo img {
  object-fit: contain;
  height: 100%;
}

.top-fv-bg-box {
  width: 100%;
  height: 100%;
}
.top-fv-bg-box .top-fv-bg {
  width: 100%;
  height: 100%;
}
.top-fv-bg-box .top-fv-bg img {
  width: 100%;
  height: 100%;
}

.top-fv-text-box {
  opacity: 0;
  width: 100%;
  top: 52%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
  -webkit-transition-delay: 1.8s;
  transition-delay: 1.8s;
}
@media (max-width: 768px) {
  .top-fv-text-box {
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.top-fv-text-box h2 {
  color: #fff;
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 0.3em;
}
.top-fv-text-box p {
  color: #CFCFCF;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  margin-top: 30px;
}

.dots-wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 70px;
  z-index: 10;
}
@media (max-width: 768px) {
  .dots-wrap {
    left: 30px;
  }
}

.dots-wrap li {
  width: 6px;
  height: 6px;
  margin-bottom: 16px;
  background: #CFCFCF;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid #CFCFCF;
}

.dots-wrap li:hover,
.dots-wrap li.slick-active {
  background: transparent;
}

.dots-wrap li button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}

.top-fv-line {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}
.top-fv-line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 60px;
  background-color: #fff;
  animation: liner 4s infinite;
}

@keyframes liner {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.top-concept {
  margin-top: clamp(60px, 11vw, 150px);
  margin-bottom: 44vw;
  padding-bottom: 100px;
  background-color: #fff;
}
@media (max-width: 768px) {
  .top-concept {
    padding-bottom: 80px;
    margin-bottom: 400px;
  }
}

.top-concept-copy {
  line-height: 1.6;
}

.top-concept-text_wrap {
  width: 79%;
}
.top-concept-text_wrap p {
  width: min(100%, 680px);
  letter-spacing: 0.06em;
  margin-top: clamp(30px, 4.4vw, 60px);
}
@media (max-width: 768px) {
  .top-concept-text_wrap {
    width: 100%;
  }
  .top-concept-text_wrap p {
    width: 100%;
  }
}

.top-concept-img_wrap {
  max-width: 1366px;
  width: 100%;
  aspect-ratio: 683/215;
  margin-top: -58px;
}
@media (max-width: 1080px) {
  .top-concept-img_wrap {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .top-concept-img_wrap {
    margin-top: 50px;
    aspect-ratio: 380/509;
  }
}

.top-concept-img:first-of-type {
  aspect-ratio: 4/5;
  width: 14.3%;
  top: 28%;
  left: 0;
}
@media (max-width: 768px) {
  .top-concept-img:first-of-type {
    aspect-ratio: 13/18;
    width: 34.2%;
    top: 0;
  }
}
.top-concept-img:nth-of-type(2) {
  aspect-ratio: 14/19;
  width: 10%;
  bottom: 0;
  left: 20.9%;
}
@media (max-width: 768px) {
  .top-concept-img:nth-of-type(2) {
    aspect-ratio: 3/4;
    width: 31.6%;
    top: 12%;
    bottom: auto;
    left: auto;
    right: 10.5%;
  }
}
.top-concept-img:nth-of-type(3) {
  aspect-ratio: 5/6;
  width: 14.6%;
  top: 32.5%;
  left: 41.4%;
}
@media (max-width: 768px) {
  .top-concept-img:nth-of-type(3) {
    aspect-ratio: 6/7;
    width: 31.6%;
    top: 40%;
    left: 18.4%;
  }
}
.top-concept-img:nth-of-type(4) {
  aspect-ratio: 8/9;
  width: 13.1%;
  top: 48.8%;
  left: 64.8%;
}
@media (max-width: 768px) {
  .top-concept-img:nth-of-type(4) {
    aspect-ratio: 11/13;
    width: 28.9%;
    top: auto;
    bottom: 0;
    left: 0.5%;
  }
}
.top-concept-img:nth-of-type(5) {
  aspect-ratio: 11/13;
  width: 16.1%;
  top: 0;
  right: 0;
}
@media (max-width: 768px) {
  .top-concept-img:nth-of-type(5) {
    aspect-ratio: 7/9;
    width: 36.8%;
    top: 58.1%;
  }
}

.top-concept-parallax-clip {
  bottom: -44vw;
  left: 0;
  width: 100%;
  height: 44vw;
  clip-path: inset(0);
  z-index: -1;
}
@media (max-width: 768px) {
  .top-concept-parallax-clip {
    bottom: -400px;
    height: 400px;
  }
}

.top-concept-parallax-fixed {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/top_fixed_bg.jpg);
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  .top-concept-parallax-fixed {
    background-image: url(../images/top_fixed_bg_sp.jpg);
  }
}

.top-service {
  z-index: -10;
  padding-bottom: clamp(113px, 11vw, 150px);
}
.top-service .ttl-box {
  padding-bottom: clamp(50px, 8vw, 110px);
}

@media (max-width: 768px) {
  .top-service-bg {
    padding-top: 10px;
  }
}
.top-service-bg::before {
  position: absolute;
  content: "";
  background-image: url(../images/bg_blue.png);
  background-size: contain;
  background-repeat: repeat;
  width: max(769px, 91%);
  height: 70%;
  top: 11%;
  left: 0;
  z-index: -1;
}
@media (max-width: 768px) {
  .top-service-bg::before {
    width: 100%;
    height: 96.5%;
    top: 0;
  }
}

.top-service-cont_wrap {
  width: max(754px, 86.4%);
}
@media (max-width: 768px) {
  .top-service-cont_wrap {
    width: 100%;
  }
}

.top-service-cont {
  margin-bottom: min(5.9vw, 80px);
}
@media (max-width: 768px) {
  .top-service-cont {
    margin-bottom: 0;
    padding-top: 100px;
  }
}
.top-service-cont:nth-of-type(3) .top-service-num_pc {
  color: #09285F;
  border-bottom: 1px solid #09285F;
}

.top-service-cont-img {
  position: relative;
  aspect-ratio: 59/22;
}
@media (max-width: 768px) {
  .top-service-cont-img {
    aspect-ratio: 3/2;
    width: 100%;
    max-height: 320px;
  }
}
.top-service-cont-img::before {
  position: absolute;
  content: "";
  background-image: url(../images/service_noise.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.top-service-text-box {
  position: relative;
  background-color: #F6F6F6;
  background-color: #fff;
  padding: clamp(40px, 5.9vw, 80px) clamp(30px, 7.4vw, 100px) clamp(30px, 5.9vw, 80px);
  margin-top: -140px;
  width: clamp(600px, 67.8%, 800px);
}
@media (max-width: 768px) {
  .top-service-text-box {
    margin-top: -100px;
    width: 89.5%;
  }
}

.top-service-head-group {
  width: 475px;
  gap: 40px;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .top-service-head-group {
    flex-direction: column;
    align-items: start !important;
    gap: 10px;
    width: 100%;
  }
}
.top-service-head-group h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.top-service-head-group p {
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: #CFCFCF;
}

.top-service-text {
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.06em;
}

.top-service-num_pc {
  bottom: 13.3%;
  left: max(658px, 82.5%);
  color: #fff;
  font-size: 24px;
  line-height: 1.4;
  letter-spacing: 0.3em;
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
}
@media (max-width: 768px) {
  .top-service-num_pc {
    display: none;
  }
}

.top-service-num_sp {
  display: none;
}
@media (max-width: 768px) {
  .top-service-num_sp {
    display: block;
    color: #fff;
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: 0.3em;
    border-bottom: 1px solid #fff;
    left: 8%;
    top: 36px;
    padding-bottom: 10px;
  }
}

.top-works {
  background-image: url(../images/bg_gray_right.png);
  background-size: contain;
  background-repeat: repeat;
  padding-bottom: clamp(80px, 11.4vw, 155px);
}
@media (max-width: 768px) {
  .top-works .cnt {
    padding: 0;
  }
}
.top-works .btn-circle_wrap {
  margin-top: 40px;
}

.top-works-exam {
  margin-top: clamp(50px, 5vw, 70px);
}
@media (max-width: 768px) {
  .top-works-exam {
    padding: 0 20px;
  }
}

.top-works_wrap {
  gap: 3px;
  margin-top: clamp(40px, 5vw, 70px);
}

@media (max-width: 768px) {
  .top-works_wrap_pc {
    display: none !important;
  }
}

.top-works_wrap_sp {
  display: none !important;
}
@media (max-width: 768px) {
  .top-works_wrap_sp {
    display: flex !important;
    margin-bottom: 10px;
  }
}
.top-works_wrap_sp li {
  width: 33%;
  margin-left: 10px;
  margin-right: 10px;
}
.top-works_wrap_sp .top-works-cont {
  width: 100%;
}

.top-works-cont {
  width: 33%;
}
.top-works-cont:hover .top-works-img img {
  transform: scale(1.15);
}
.top-works-cont:hover .top-works-btn {
  background-color: #243044;
  border: 1px solid #fff;
}
.top-works-cont:hover .top-works-btn::before, .top-works-cont:hover .top-works-btn::after {
  background-color: #fff;
}

.top-works-img {
  overflow: hidden;
  aspect-ratio: 189/95;
}
.top-works-img img {
  transition: 0.3s;
}

.top-works-info-box {
  padding: 15px 20px 20px;
}

.top-workd-category {
  line-height: 1.5;
  padding: 0 10px;
  border: 1px solid #09285F;
  border-radius: 20px;
}

.top-works-ttl {
  padding-top: 14px;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.06em;
  font-weight: 500;
}
@media (max-width: 768px) {
  .top-works-ttl {
    font-size: 18px;
  }
}

.top-works-btn {
  width: 24px;
  height: 24px;
  border: 1px solid #09285F;
  border-radius: 50%;
  margin-left: auto;
  transition: 0.3s;
}
.top-works-btn::before {
  position: absolute;
  content: "";
  width: 7px;
  height: 1px;
  background-color: #09285F;
  rotate: 28deg;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.top-works-btn::after {
  position: absolute;
  content: "";
  width: 7px;
  height: 1px;
  background-color: #09285F;
  rotate: -28deg;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}

.top-recruit {
  padding-bottom: clamp(90px, 11vw, 150px);
  background-image: url(../images/bg_blue.png);
  background-size: contain;
  background-repeat: repeat;
}
.top-recruit .ttl-en {
  color: #fff;
}
@media (max-width: 600px) {
  .top-recruit {
    padding-top: 0;
  }
  .top-recruit .cnt {
    margin-top: 60px;
  }
}

.top-recruit-president-img {
  aspect-ratio: 40/47;
  width: min(29.5%, 400px);
  top: 0;
  right: 3.7%;
}
@media (min-width: 1366px) {
  .top-recruit-president-img {
    left: 67%;
    right: auto;
  }
}
@media (max-width: 768px) {
  .top-recruit-president-img {
    aspect-ratio: 13/11;
    width: max(260px, 37vw);
  }
}
@media (max-width: 600px) {
  .top-recruit-president-img {
    position: relative !important;
    margin-left: auto;
    width: 68.4%;
  }
}

.top-recruit-cont-box {
  color: #fff;
  max-width: 460px;
  width: 100%;
  margin-top: 70px;
  margin-left: 21%;
}
@media (max-width: 768px) {
  .top-recruit-cont-box {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .top-recruit-cont-head br {
    display: none;
  }
}

.top-recruit-cont-text {
  text-align: justify;
  padding-top: 30px;
}

.top-recruit-cont-ttl h3 {
  color: #fff;
  font-size: 24px;
  line-height: 1.45;
  letter-spacing: 0.2em;
  font-weight: 500;
  padding-left: 80px;
  position: relative;
}
.top-recruit-cont-ttl h3::before {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 50px;
  height: 1px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.top-recruit-img-box {
  max-width: 1366px;
  width: 100%;
  aspect-ratio: 683/203;
  margin-top: -50px;
}
@media (max-width: 959px) {
  .top-recruit-img-box {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .top-recruit-img-box {
    aspect-ratio: 19/23;
    margin-top: 50px;
  }
}

.top-recruit-img:first-of-type {
  aspect-ratio: 11/14;
  width: 16.1%;
  top: 0;
  left: 50px;
}
@media (max-width: 768px) {
  .top-recruit-img:first-of-type {
    aspect-ratio: 11/14;
    width: 42.1%;
    left: 0;
  }
}
.top-recruit-img:nth-of-type(2) {
  aspect-ratio: 8/9;
  width: 13.1%;
  bottom: 11%;
  left: 27%;
}
@media (max-width: 768px) {
  .top-recruit-img:nth-of-type(2) {
    aspect-ratio: 6/7;
    width: 31.6%;
    top: 23.9%;
    bottom: auto;
    left: auto;
    right: 7.9%;
  }
}
.top-recruit-img:nth-of-type(3) {
  aspect-ratio: 14/19;
  width: 10.2%;
  top: 32%;
  left: 48.3%;
}
@media (max-width: 768px) {
  .top-recruit-img:nth-of-type(3) {
    aspect-ratio: 10/13;
    width: 26.3%;
    top: 53.7%;
    left: 8.4%;
  }
}
.top-recruit-img:last-of-type {
  aspect-ratio: 4/5;
  width: 14.3%;
  bottom: 0;
  left: 68.8%;
}
@media (max-width: 768px) {
  .top-recruit-img:last-of-type {
    aspect-ratio: 29/36;
    width: 38.2%;
    bottom: 0;
    left: 46.1%;
  }
}

.top-recruit-person {
  margin-top: 50px;
}

@media (max-width: 959px) {
  .top-recruit-person-ttl {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .top-recruit-person-ttl {
    gap: 50px;
  }
}
.top-recruit-person-ttl .top-recruit-cont-ttl {
  left: 0;
}
@media (max-width: 959px) {
  .top-recruit-person-ttl .top-recruit-cont-ttl {
    position: relative;
    margin-right: auto;
  }
}

.top-recruit-person-img {
  width: max(400px, 38.6%);
}
@media (max-width: 768px) {
  .top-recruit-person-img {
    width: clamp(340px, 52vw, 400px);
  }
}

.top-recruit-person-cont-box {
  gap: 0.08%;
  justify-content: space-between;
  margin-top: 70px;
}
@media (max-width: 768px) {
  .top-recruit-person-cont-box {
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
  }
}

.top-recruit-person-cont {
  width: 28%;
  color: #fff;
}
@media (max-width: 768px) {
  .top-recruit-person-cont {
    width: 100%;
  }
}
.top-recruit-person-cont p {
  letter-spacing: 0.06em;
  padding-top: 30px;
}
@media (max-width: 768px) {
  .top-recruit-person-cont p {
    padding-top: 20px;
  }
}

.top-recruit-person-cont-num {
  width: fit-content;
  border-bottom: 1px solid #fff;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.2em;
  padding-bottom: 10px;
}
@media (max-width: 768px) {
  .top-recruit-person-cont-num {
    margin-left: inherit !important;
  }
}

.top-recruite-detail_wrap {
  margin-top: clamp(80px, 11vw, 150px);
}

.top-recruite-detail_inner {
  overflow: hidden;
  margin-top: 50px;
  background-color: #fff;
}

.top-company {
  padding-bottom: clamp(100px, 11vw, 150px);
}

.top-company-detail {
  background-color: #fff;
  overflow: hidden;
  margin-top: 70px;
}

.works-list {
  margin-top: 70px;
  margin-bottom: 120px;
}

.works-category {
  gap: 16px;
  padding-top: 20px;
  flex-wrap: wrap;
}
.works-category a {
  line-height: 1.5;
  padding: 0 10px;
  border: 1px solid #243044;
  border-radius: 20px;
  color: #243044;
}
.works-category .active-category {
  background-color: #243044;
  color: #fff;
}

.works-list_wrap {
  column-gap: 0.5%;
  row-gap: 40px;
  flex-wrap: wrap;
  margin-top: 70px;
}
@media (max-width: 768px) {
  .works-list_wrap {
    gap: 2%;
  }
}
@media (max-width: 600px) {
  .works-list_wrap {
    gap: 20px;
  }
}

.works-list-li {
  width: 33%;
}
@media (max-width: 768px) {
  .works-list-li {
    width: 49%;
  }
}
@media (max-width: 600px) {
  .works-list-li {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 0 6px rgba(51, 51, 51, 0.14);
  }
}
.works-list-li:hover .top-works-img img {
  transform: scale(1.15);
}
.works-list-li:hover .top-works-btn {
  background-color: #243044;
  border: 1px solid #fff;
}
.works-list-li:hover .top-works-btn::before, .works-list-li:hover .top-works-btn::after {
  background-color: #fff;
}

.work-detail {
  margin-top: 28px;
}

.wrok-detail-outside {
  justify-content: end;
  color: #09285F;
  gap: 20px;
}

.wrok-detail-outside-category {
  padding: 0 10px;
  border: 1px solid #09285F;
  border-radius: 20px;
}

.wrok-detail-outside-date {
  letter-spacing: 0.1em;
}

.work-detail-cont {
  background-color: #F6F6F6;
  margin-top: 36px;
  padding-bottom: 82px;
}

.work-detail-ttl {
  border-bottom: 1px solid #CFCFCF;
  padding: 55px 30px 52px;
  font-size: 20px;
}

.work-detail-cont_wrap {
  max-width: 990px;
  width: 100%;
  padding: 60px 15px 0;
}

@media (max-width: 768px) {
  .work-detail-cont_inner {
    flex-direction: column;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    gap: 24px;
  }
}

.work-detail-cont-img-box {
  width: 45.8%;
}
@media (max-width: 768px) {
  .work-detail-cont-img-box {
    width: 100%;
  }
}
.work-detail-cont-img-box p {
  padding-left: 30px;
  padding-bottom: 16px;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.3em;
}
@media (max-width: 768px) {
  .work-detail-cont-img-box p {
    padding-left: 0;
    text-align: center;
  }
}

.work-detail-arrow {
  width: 20px;
  height: 20px;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .work-detail-arrow {
    transform: rotate(90deg);
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
  }
}

.work-detail-cont-addition {
  width: 45.8%;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .work-detail-cont-addition {
    max-width: 500px;
    width: 100%;
    margin-top: 50px;
  }
}
.work-detail-cont-addition p {
  padding-bottom: 16px;
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

.work-detail-cont-text-box {
  background-color: #fff;
  padding: 40px 60px;
  margin-top: 70px;
}
@media (max-width: 768px) {
  .work-detail-cont-text-box {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.work-detail-cont-ttl-head {
  font-size: 20px;
  color: #898989;
}

.work-detail-cont-text {
  padding-top: 20px;
}

.works-others {
  margin-top: 80px;
  margin-bottom: 150px;
}
.works-others .btn-circle_wrap {
  margin-top: 30px;
}

.works-other-ttl {
  font-size: 24px;
  letter-spacing: 0.2em;
  color: #09285F;
}

.page-numbers {
  display: flex;
  gap: 14px;
}
.page-numbers .page-numbers {
  width: 40px;
  height: 40px;
  border: 1px solid #231816;
  border-radius: 50%;
  color: #243044;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1;
}
.page-numbers .page-numbers.current {
  background-color: #231816;
  color: #fff;
}
.page-numbers .page-numbers.next, .page-numbers .page-numbers.prev {
  background-color: #898989;
  border: 1px solid #898989;
}
.page-numbers .page-numbers.next img, .page-numbers .page-numbers.prev img {
  width: 10px;
  height: 10px;
}

*, * before, * after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  font-family: "Montserrat", "Zen Kaku Gothic New", "Barlow", sans-serif;
  font-feature-settings: "palt";
  line-height: 1.8;
  letter-spacing: 0.06em;
  height: 100%;
  color: #231816;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p {
  font-weight: 400;
  font-size: 16px;
}

a {
  text-decoration: none;
  color: #444;
}

li {
  list-style: none;
  font-weight: 500;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

/*display*/
.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.dis-none {
  display: none;
}

.grid {
  display: grid;
}

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

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

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

@media (max-width: 768px) {
  .sp-none {
    display: none !important;
  }
}

@media (max-width: 450px) {
  .sp-ss-none {
    display: none !important;
  }
}

/*font & text*/
.text-center {
  text-align: center;
}

.nowrap {
  white-space: nowrap;
}

.fw-100 {
  font-weight: 100;
}

.fw-200 {
  font-weight: 200;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

/*position*/
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

/*flex*/
.flex {
  display: flex;
}

.jus-al-center {
  justify-content: center;
  align-items: center;
}

.jus-center {
  justify-content: center;
}

.jus-bet {
  justify-content: space-between;
}

@media (max-width: 768px) {
  .sp-der-col {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .sp-der-col-rev {
    flex-direction: column-reverse;
  }
}

.al-center {
  align-items: center;
}

.row-rev {
  flex-direction: row-reverse;
}

/* margin & padding*/
.margin-center {
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 768px) {
  .sp-margin-center {
    margin-left: auto;
    margin-right: auto;
  }
}

.margin-top-text {
  margin-top: 0.8em;
}

.margin-top3 {
  margin-top: 3%;
}

.margin-top5 {
  margin-top: 5%;
}

.margin-top10 {
  margin-top: 10%;
}

.mb0 {
  margin-bottom: 0;
}

.mb3 {
  margin-bottom: 3%;
}

.mb5 {
  margin-bottom: 5%;
}

.mb10 {
  margin-bottom: 10%;
}

.pb-8 {
  padding-bottom: 8%;
}

.pt5 {
  padding-top: 5%;
}

.pt3 {
  padding-top: 3%;
}

/*transition*/
.transition03 {
  transition: 0.3s;
}

.main {
  height: auto;
  width: 100%;
}

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

@media (max-width: 768px) {
  .sp-non-br {
    display: none;
  }
}

@media (max-width: 768px) {
  .sp-justify {
    text-align: justify;
  }
}

.notfound {
  margin-bottom: clamp(50px, 10.2vw, 138px);
}

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

.notfound-desc-main {
  font-size: 24px;
  line-height: 2;
}
@media (max-width: 768px) {
  .notfound-desc-main {
    font-size: 18px;
  }
}

.notfound-desc-sub {
  font-size: 16px;
  line-height: 2;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .notfound-desc-sub {
    font-size: 14px;
    padding: 0 20px;
  }
  .notfound-desc-sub br {
    display: none;
  }
}

.contactform-system {
  padding-top: 70px;
  padding-bottom: 120px;
}

.contactform-table {
  margin-top: 50px;
}

/*デフォルトのスタイルを無効化する*/
.input[type=submit] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

span.wpcf7-spinner {
  display: none;
}

.wpcf7 form.invalid .wpcf7-response-output {
  border-style: none;
  color: #09285F;
  text-align: center;
}

.wpcf7 form.spam .wpcf7-response-output {
  border-style: none;
  color: #09285F;
  text-align: center;
}

.wpcf7-not-valid-tip {
  color: #09285F;
}

.contact-table {
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
}

.contact-table-row:last-child th {
  vertical-align: top;
  padding-top: 2em;
}
@media (max-width: 768px) {
  .contact-table-row:last-child th {
    padding-top: 1em;
  }
}

.contact-table-title {
  font-weight: normal;
  width: 35%;
  padding: 1em 0;
  text-align: left;
}
@media (max-width: 768px) {
  .contact-table-title {
    display: block;
    width: 90%;
  }
}

.contact-table-required-mark {
  font-size: 12px;
  padding: 0.5em 1em;
  color: #fff;
  background-color: #09285F;
}

.any-text {
  font-size: 12px;
  padding: 0.5em 1em;
  color: #fff;
  background-color: #efefef;
}

.contact-table-label {
  display: inline-block;
  width: 65%;
}
.contact-table-label span {
  letter-spacing: 0.1em;
}

.contact-table-input {
  padding: 1.5em 0;
  width: 60%;
  word-break: break-all;
}
@media (max-width: 768px) {
  .contact-table-input {
    display: block;
    padding: 0 0 1em;
    width: 100%;
  }
}

.contact-table-input-text {
  display: block;
  width: 100%;
  height: auto;
  padding: 1em;
  border: 1px solid transparent;
  border-radius: 5px;
  background-color: #f0f0f0;
}
.contact-table-input-text .wpcf7-list-item:first-of-type {
  margin-left: 0;
}

::-webkit-input-placeholder {
  color: #A0A0A0;
}

:-ms-input-placeholder {
  color: #A0A0A0 !important;
}

::-moz-placeholder {
  color: #A0A0A0;
  opacity: 1;
}

::placeholder {
  color: #A0A0A0;
  opacity: 1;
}

:focus::-webkit-input-placeholder {
  color: transparent;
}

:focus:-ms-input-placeholder {
  color: transparent;
}

:focus::-moz-placeholder {
  color: transparent;
}

:focus::placeholder {
  color: transparent;
}

.contact-table-input-textbox {
  width: 100%;
  height: 200px;
  padding: 1em;
  border: 1px solid transparent;
  border-radius: 5px;
  background-color: #f0f0f0;
}

.contact-privacy {
  line-height: 2;
  margin-top: 30px;
  padding: 2em;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .contact-privacy {
    margin-top: 0;
  }
}
.contact-privacy p {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .contact-privacy p {
    font-size: 14px;
  }
}

.contact-privacy-link {
  color: #09285F;
}

.wpcf7-list-item-label {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.15em;
}
@media (max-width: 768px) {
  .wpcf7-list-item-label {
    font-size: 16px;
  }
}

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

.acc {
  width: 1em;
  height: 1em;
}
.acc:checked {
  background-color: #09285F;
}

.contact-btn-next {
  display: inline-block;
  margin-top: 7%;
  margin-bottom: 1em;
  position: relative;
}
.contact-btn-next:hover input {
  color: #ff8000;
}
.contact-btn-next p {
  font-size: 14px;
}
.contact-btn-next input {
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  padding: 1.2em 4.5em;
  color: #fff;
  align-items: center;
}

.contact-btn-next1 {
  width: 180px;
  margin-top: 0;
  margin-bottom: 0;
}

.contactpage-btn-wrapper {
  display: flex;
  justify-content: center;
  gap: 3%;
  padding-bottom: 1px;
}
@media (max-width: 768px) {
  .contactpage-btn-wrapper {
    flex-direction: column;
    align-items: center;
    margin-top: 0;
    gap: 1em;
  }
}

.btn-contact {
  position: relative;
  width: 200px;
  margin-top: 60px;
  text-align: center;
  background-color: #243044;
  border: 1px solid #243044;
  color: #fff;
  overflow: hidden;
  z-index: 10;
}
.btn-contact:hover {
  color: #243044;
}
.btn-contact:hover .btn-contact-before {
  left: 0;
}
.btn-contact input {
  width: 100%;
  height: 100%;
  padding: 15px 0;
}

.btn-contact-before {
  position: absolute;
  background-color: #fff;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  transition-duration: 0.3s;
  z-index: -1;
}

.btn-contact-thanks {
  padding: 15px 0;
}

.contact-thanks-text {
  color: #243044;
}

.archive-container {
  display: grid;
  grid-template-columns: 3fr 1fr;
  justify-content: center;
  align-items: flex-start;
  gap: 4%;
  padding-bottom: 100px;
}
@media (max-width: 1080px) {
  .archive-container {
    display: block;
  }
}

.archive-wrapper {
  width: 100%;
}

.archive-list {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}

.archive-list-item {
  width: 100%;
  padding-right: 15px;
  border-bottom: 1px solid #efefef;
}
.archive-list-item:nth-child(n+2) {
  padding-top: 7%;
}
.archive-list-item:last-child {
  border-bottom: none;
}
@media (max-width: 1080px) {
  .archive-list-item {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 768px) {
  .archive-list-item {
    padding-left: 0;
    padding-right: 0;
  }
}

.archive-list-link {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3%;
  margin-bottom: 7%;
}
.archive-list-link:hover .archive-list-thumbnail::after {
  opacity: 0;
}
.archive-list-link:hover .archive-list-thumbnail-img {
  transform: scale(1.1, 1.1);
}
.archive-list-link:hover .archive-list-date {
  color: #ff8000;
}

.archive-list-thumbnail {
  position: relative;
  overflow: hidden;
  width: 35%;
  transition: 0.3s;
  box-shadow: 1px 1px 6px 0px rgb(224, 223, 223);
}
.archive-list-thumbnail::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0.05;
  background-color: #000;
  transition: 0.3s;
}
@media (max-width: 1080px) {
  .archive-list-thumbnail {
    width: 37%;
  }
}

.archive-list-thumbnail-img {
  width: 100%;
  transition: 0.3s;
  object-fit: cover;
  aspect-ratio: 3/2;
}

.archive-list-body {
  display: flex;
  flex-direction: column;
  width: 58%;
}
@media (max-width: 1080px) {
  .archive-list-body {
    width: 60%;
  }
}

.archive-list-ttl {
  font-size: 16px;
  padding-top: 10px;
}
@media (max-width: 600px) {
  .archive-list-ttl {
    font-size: 16px;
  }
}

.archive-list-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 3%;
}
@media (max-width: 768px) {
  .archive-list-info {
    display: none;
  }
}

.archive-list-info1 {
  display: flex;
  flex-wrap: wrap;
  gap: 10%;
  line-height: 1.6;
}

.archive-list-date {
  font-size: 14px;
  color: #a0a0a0;
}

.archive-list-category {
  font-size: 14px;
  color: #fff;
  background-color: #f8b164;
  width: fit-content;
  text-align: center;
  padding: 0 1em;
}

.archive-list-tag {
  font-size: 14px;
  color: #a0a0a0;
}

.archive-list-excerpt {
  font-size: 14px;
  text-align: justify;
}

.archive-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3%;
  margin-bottom: 3%;
}

.archive-sidebar {
  width: 100%;
}
@media (max-width: 1080px) {
  .archive-sidebar {
    width: 80%;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 10%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 768px) {
  .archive-sidebar {
    max-width: 630px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.archive-no-item-txt {
  text-align: center;
}

@media (max-width: 1080px) {
  .sidebar-box:last-child .sidebar-box-ttl {
    margin-bottom: 2em;
  }
}

.sidebar-box:not(:first-of-type) {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .sidebar-box:not(:first-of-type) {
    margin-top: 25px;
  }
}

.sidebar-box-ttl {
  font-size: 14px;
  padding-bottom: 3%;
}
@media (max-width: 1080px) {
  .sidebar-box-ttl {
    border-bottom: 1px solid #f8b164;
  }
}

.sidebar-box-ttl-eng {
  font-size: 24px;
  margin-right: 1.5em;
  color: #f8b164;
}
@media (max-width: 768px) {
  .sidebar-box-ttl-eng {
    font-size: 22px;
  }
}

.sidebar-box-list li {
  padding-top: 15px;
}
.sidebar-box-list li a {
  font-size: 14px;
}

.sidebar-box-list-item {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
  margin-bottom: 5px;
  border-bottom: 1px solid #efefef;
  transition: all 0.3s;
}
.sidebar-box-list-item a {
  transition: all 0.3s;
}
.sidebar-box-list-item a:hover {
  opacity: 0.8;
}
.sidebar-box-list-item a:hover .archive-list-date {
  color: #ff8000;
}
.sidebar-box-list-item:last-child {
  border-bottom: none;
}

.sidebar-box-list-item-category a {
  transition: all 0.3s;
  display: block;
}
.sidebar-box-list-item-category a:hover {
  color: #ff8000;
}

.sidebar-box-title {
  padding-bottom: 1%;
}

.archive-select {
  width: 100%;
  border: 1px solid #efefef;
  padding-left: 1em;
}

.select-wrapper {
  position: relative;
}
.select-wrapper::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 16px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
  transform-origin: center;
}

select {
  -webkit-appearance: none;
  appearance: none;
}

select:invalid {
  color: #cdcdcd;
}

select option {
  color: black;
}

.single-container {
  display: grid;
  grid-template-columns: 3fr 1fr;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: clamp(80px, 10.7vw, 145px);
  gap: 4%;
}
@media (max-width: 768px) {
  .single-container {
    display: block;
  }
}

@media (max-width: 768px) {
  .single-main {
    margin-bottom: 100px;
  }
}

.sidebar-main {
  width: 100%;
}

.single-info {
  display: flex;
  gap: 5%;
  flex-wrap: wrap;
  align-items: center;
}

.time.single-date {
  width: 20%;
}

.category-wrapper {
  display: flex;
  gap: 3%;
  width: 75%;
}
@media (max-width: 768px) {
  .category-wrapper {
    width: fit-content;
  }
}

.single-category {
  font-size: 14px;
  background-color: #f8b164;
  color: #fff;
  padding: 0 1em;
}

.sinlge-category {
  font-size: 14px;
  padding: 0.2em 1em;
}

.single-ttl {
  font-weight: bold;
  width: 100%;
  margin-top: 1em;
  font-size: 28px;
  padding-bottom: 3%;
  border-bottom: 1px solid #ff8000;
}
@media (max-width: 768px) {
  .single-ttl {
    font-size: 24px;
  }
}

.single-thumbnail {
  width: 100%;
  margin: 30px auto 0 auto;
}

.single-thumbnail-img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 280/180;
}

.single-content {
  margin-top: 5%;
}
.single-content li {
  list-style: disc;
  list-style-position: inside;
}
.single-content p {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 2;
  margin-bottom: 2.5em;
  letter-spacing: 0.06em;
  font-feature-settings: initial;
}
.single-content a {
  color: #4f87c7;
}
.single-content strong {
  font-weight: 700;
}
.single-content h2 {
  font-size: 24px;
  padding: 0.3em 1em;
  margin-bottom: 1.5em;
  margin-top: 2.5em;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-left: 3px solid #09285F;
}
.single-content h3 {
  font-size: 21px;
  padding-bottom: 0.5em;
  padding-left: 0.3em;
  margin-top: 2em;
  margin-bottom: 1.5em;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-bottom: 2px solid #09285F;
}
.single-content h4 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding-left: 0.3em;
  margin-top: 0.5em;
  margin-bottom: 1em;
}
.single-content h5, .single-content h6 {
  font-weight: 700;
  letter-spacing: 0.1em;
  padding-left: 0.3em;
  margin-top: 0.5em;
  margin-bottom: 1em;
}

.archive-contents {
  width: 100%;
}

.single-contents {
  margin-bottom: 10%;
}

.pagination {
  margin: 60px auto 0;
  display: flex;
  gap: 5%;
  transition: all 0.3s;
  justify-content: center;
}
@media (max-width: 450px) {
  .pagination {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 1em;
  }
}

.single-pagination {
  gap: 10%;
}

.kiji-content {
  width: 45%;
  padding: 0.8em 0.5em;
  text-align: center;
  margin: 0 auto;
  border: 1px solid #231816;
}
.kiji-content:hover .kiji-info a, .kiji-content:hover .kiji-link a {
  color: #ff8000;
}
.kiji-content:hover .kiji-non-text {
  color: #ff8000;
}

.kiji-info a {
  display: block;
  line-height: 1.2;
  font-size: 12px;
  padding-bottom: 3%;
  color: #231816;
}

.kiji-link a {
  font-size: 14px;
  display: block;
  line-height: 1.8;
  color: #231816;
}

.kiji-non-text {
  color: #231816;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.home-pagination {
  display: inline-block;
}

.pagination-pager {
  font-size: 20px;
  line-height: 1.5;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 5px 1em;
  color: #efefef;
  transition: 0.3s;
}

@media (hover: hover) {
  .home-pagination a {
    position: relative;
  }
  .home-pagination a::after {
    position: absolute;
    bottom: 0;
    content: "";
    width: 100%;
    height: 1px;
    background-color: #ff8000;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: 0.3s;
  }
  .home-pagination a:hover::after {
    transform: scale(1);
  }
}
.pagination-pager--current {
  color: #09285F;
}

.privacy {
  margin-top: 60px;
  padding-bottom: 120px;
}

.privacy-ttl {
  margin: 2em 0 0.5em;
  font-size: 24px;
  line-height: 1;
}

.privacy-info {
  margin-top: 2em;
}