@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Noto+Sans+JP:wght@400;600&display=swap");
html {
  font-size: 10px;
  line-height: 1.5;
}

body {
  background: #fff;
  color: #1C1C1C;
  font-family: "Noto Sans JP", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

@media screen and (max-width: 1023px) {
  .spHide {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .pcHide {
    display: none;
  }
}

.m_contactBtn {
  background: #6A7693;
  color: #fff;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s ease;
}
@media screen and (min-width: 1024px) {
  .m_contactBtn {
    font-size: 1.6rem;
    height: 60px;
    line-height: 60px;
    padding: 0 30px;
    margin: 0 0 0 46px;
    border-radius: 100px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  }
}
@media screen and (max-width: 1023px) {
  .m_contactBtn {
    display: none;
  }
}
.m_contactBtn:hover {
  transform: translate(2px, 2px);
}
@media screen and (max-width: 1023px) {
  .m_contactBtn.fixed {
    display: block;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 60px;
    line-height: 60px;
    box-shadow: 0 -3px 6px rgba(0, 0, 0, 0.16);
    text-align: center;
    font-size: 1.6rem;
    z-index: -1;
  }
}

.m_btn {
  background: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  display: inline-block;
  border-radius: 100px;
  text-align: center;
  color: #374362;
  position: relative;
  transition: 0.3s ease;
}
@media screen and (min-width: 1024px) {
  .m_btn {
    font-size: 1.6rem;
    width: 250px;
    height: 60px;
    line-height: 60px;
  }
}
@media screen and (max-width: 1023px) {
  .m_btn {
    font-size: 1.4rem;
    width: 200px;
    height: 50px;
    line-height: 50px;
  }
}
.m_btn::after {
  content: "";
  position: absolute;
  border-top: 1px solid #374362;
  border-right: 1px solid #374362;
  transform: rotate(45deg);
  width: 10px;
  height: 10px;
}
@media screen and (min-width: 1024px) {
  .m_btn::after {
    right: 23px;
    top: 25px;
  }
}
@media screen and (max-width: 1023px) {
  .m_btn::after {
    right: 20px;
    top: 20px;
  }
}
.m_btn:hover {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}
.m_btn.prev::after {
  transform: rotate(-135deg);
  right: auto;
}
@media screen and (min-width: 1024px) {
  .m_btn.prev::after {
    top: 26px;
    left: 23px;
  }
}
@media screen and (max-width: 1023px) {
  .m_btn.prev::after {
    top: 21px;
    left: 20px;
  }
}

.m_breadCrumb {
  margin: 0 0 10px;
  padding: 0;
}
@media screen and (min-width: 1024px) {
  .m_breadCrumb {
    font-size: 1.2rem;
    margin: 120px 0 10px;
  }
}
@media screen and (max-width: 1023px) {
  .m_breadCrumb {
    font-size: 1.2rem;
    margin: 70px 0 10px;
  }
}
.m_breadCrumb > li {
  display: inline-block;
}
.m_breadCrumb > li::after {
  border-top: 1px solid #777;
  border-right: 1px solid #777;
  content: "";
  display: inline-block;
  transform: rotate(45deg);
}
@media screen and (min-width: 1024px) {
  .m_breadCrumb > li::after {
    width: 8px;
    height: 8px;
    margin: 0px 15px 1px 15px;
  }
}
@media screen and (max-width: 1023px) {
  .m_breadCrumb > li::after {
    width: 6px;
    height: 6px;
    margin: 0 10px 1px 8px;
  }
}
.m_breadCrumb > li:last-child {
  font-weight: 600;
}
.m_breadCrumb > li:last-child::after {
  display: none;
}
.m_breadCrumb > li a {
  position: relative;
}
.m_breadCrumb > li a::after {
  border-top: 1px solid currentColor;
  width: 0;
  position: absolute;
  left: 0;
  bottom: -2px;
  content: "";
  transition: 0.2s ease;
}
.m_breadCrumb > li a:hover::after {
  width: 100%;
}

.js-slide {
  transform: translateY(15px);
  opacity: 0;
  transition: 1s ease 0.5s;
}
.js-slide.is-fixed {
  transform: translateY(0);
  opacity: 1;
}

.gMenu {
  background: #fff;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .gMenu {
    padding: 0 70px;
  }
}
@media screen and (max-width: 1023px) {
  .gMenu {
    padding: 0 15px;
  }
}
.gMenu .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .gMenu .inner {
    height: 120px;
  }
}
@media screen and (max-width: 1023px) {
  .gMenu .inner {
    height: 60px;
  }
}
.gMenu .inner .logo {
  margin: 0;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  .gMenu .inner .logo {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1023px) {
  .gMenu .inner .logo {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1024px) {
  .gMenu .inner .openBtn {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .gMenu .inner .openBtn {
    position: relative;
    width: 18px;
    height: 20px;
    border-top: 1px solid #374362;
    border-bottom: 1px solid #374362;
  }
  .gMenu .inner .openBtn::before {
    position: absolute;
    display: block;
    content: "";
    border-top: 1px solid #374362;
    width: 100%;
    height: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .gMenu .inner .openBtn::after {
    content: "";
    display: block;
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
  }
}
@media screen and (min-width: 1024px) {
  .gMenu .inner .menu {
    display: flex;
  }
}
@media screen and (max-width: 1023px) {
  .gMenu .inner .menu {
    position: fixed;
    width: 250px;
    right: -250px;
    z-index: 10;
    top: 0;
    height: 100dvh;
    transition: 0.4s ease;
  }
}
.gMenu .inner .menu.is-open {
  right: 0;
  box-shadow: -3px 0 6px rgba(0, 0, 0, 0.16);
}
.gMenu .inner .menu .closeBtn {
  position: relative;
}
@media screen and (min-width: 1024px) {
  .gMenu .inner .menu .closeBtn {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .gMenu .inner .menu .closeBtn {
    position: absolute;
    right: 15px;
    top: 20px;
    width: 32px;
    height: 32px;
    z-index: 5;
  }
  .gMenu .inner .menu .closeBtn::before, .gMenu .inner .menu .closeBtn::after {
    position: absolute;
    display: block;
    content: "";
    border-top: 1px solid #707070;
    width: 40px;
    height: 0;
    top: 50%;
    right: -4px;
  }
  .gMenu .inner .menu .closeBtn::before {
    transform: rotate(45deg) translateY(-50%);
  }
  .gMenu .inner .menu .closeBtn::after {
    transform: rotate(-45deg) translateY(-50%);
  }
}
.gMenu .inner .menu .menuList {
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .gMenu .inner .menu .menuList {
    display: flex;
    gap: 0 50px;
  }
}
@media screen and (max-width: 1023px) {
  .gMenu .inner .menu .menuList {
    position: relative;
    z-index: 2;
    background: #fff;
    height: 100%;
    padding: 120px 0 0;
    margin: 0;
  }
}
.gMenu .inner .menu .menuList li {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.2rem;
}
.gMenu .inner .menu .menuList li:before {
  content: "";
}
@media screen and (max-width: 1023px) {
  .gMenu .inner .menu .menuList li + li {
    margin-top: 36px;
  }
}
.gMenu .inner .menu .menuList li a {
  transition: 0.3s ease;
}
.gMenu .inner .menu .menuList li a::before {
  content: attr(data-en);
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  display: block;
  text-align: center;
  font-size: 1.8rem;
}
@media screen and (min-width: 1024px) {
  .gMenu .inner .menu .menuList li a::before {
    margin: 0 0 1px;
  }
}
.gMenu .inner .menu .menuList li a:hover {
  color: #777;
}

@media screen and (min-width: 1024px) {
  .footer {
    padding: 0 70px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1023px) {
  .footer {
    padding: 0 15px;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1024px) {
  .footer .inner {
    padding: 110px 0 0;
  }
}
@media screen and (max-width: 1023px) {
  .footer .inner {
    padding: 55px 0 95px;
  }
}
.footer .logo {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  font-size: 2rem;
}
@media screen and (min-width: 1024px) {
  .footer .logo {
    margin: 0 0 3px;
  }
}
@media screen and (max-width: 1023px) {
  .footer .logo {
    margin: 0 0 40px;
  }
}
.footer .main {
  display: flex;
  border-bottom: 1px solid #1C1C1C;
  padding: 0 0 15px;
}
@media screen and (min-width: 1024px) {
  .footer .main {
    justify-content: space-between;
  }
}
@media screen and (max-width: 1023px) {
  .footer .main {
    justify-content: flex-start;
  }
}
.footer .main .mainList {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: flex-end;
}
@media screen and (min-width: 1024px) {
  .footer .main .mainList {
    gap: 0 24px;
  }
}
@media screen and (max-width: 1023px) {
  .footer .main .mainList {
    gap: 0 15px;
  }
}
@media screen and (min-width: 1024px) {
  .footer .sub {
    margin: 18px 0 0;
  }
}
@media screen and (max-width: 1023px) {
  .footer .sub {
    margin: 15px 0 0;
  }
}
.footer .sub .subList {
  margin: 0;
  padding: 0;
  display: flex;
}
@media screen and (min-width: 1024px) {
  .footer .sub .subList {
    font-size: 1.4rem;
    justify-content: center;
  }
}
@media screen and (max-width: 1023px) {
  .footer .sub .subList {
    font-size: 1.2rem;
    justify-content: flex-start;
  }
}
.footer .copyright {
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .footer .copyright {
    margin: 50px 0 20px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 1023px) {
  .footer .copyright {
    margin: 30px 0 0;
    font-size: 1rem;
  }
}

.cv {
  position: relative;
  background: url(../images/cv.jpg) no-repeat center/cover, rgba(28, 28, 28, 0.58);
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .cv {
    padding: 60px 0;
  }
}
@media screen and (max-width: 1023px) {
  .cv {
    padding: 70px 0;
  }
}
.cv::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(28, 28, 28, 0.58);
}
.cv .heading {
  position: relative;
}
@media screen and (min-width: 1024px) {
  .cv .heading {
    font-size: 2.8rem;
    margin: 0 0 25px;
  }
}
@media screen and (max-width: 1023px) {
  .cv .heading {
    font-size: 2.4rem;
    margin: 0 0 30px;
  }
}
.cv .heading::before {
  content: attr(data-en);
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  display: block;
}
@media screen and (min-width: 1024px) {
  .cv .heading::before {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1023px) {
  .cv .heading::before {
    font-size: 1.2rem;
  }
}
.cv .txt {
  position: relative;
}
@media screen and (min-width: 1024px) {
  .cv .txt {
    margin: 0 0 50px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1023px) {
  .cv .txt {
    margin: 0 0 40px;
    font-size: 1.4rem;
  }
}
.cv .btn {
  background: #fff;
  color: #374362;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  position: relative;
  display: block;
  margin: 0 auto;
  border-radius: 100px;
  font-weight: 600;
  transition: 0.3s ease;
}
@media screen and (min-width: 1024px) {
  .cv .btn {
    width: 350px;
    height: 80px;
    line-height: 80px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1023px) {
  .cv .btn {
    width: 200px;
    padding: 6px 0;
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
}
.cv .btn::after {
  content: "";
  position: absolute;
  border-top: 1px solid #374362;
  border-right: 1px solid #374362;
  transform: rotate(45deg);
  width: 10px;
  height: 10px;
}
@media screen and (min-width: 1024px) {
  .cv .btn::after {
    right: 30px;
    top: 35px;
  }
}
@media screen and (max-width: 1023px) {
  .cv .btn::after {
    right: 20px;
    top: 18px;
  }
}
.cv .btn:hover {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
  opacity: 0.75;
}

@media screen and (min-width: 1024px) {
  .content {
    margin: 120px 0 0;
  }
}
@media screen and (max-width: 1023px) {
  .content {
    margin: 60px 0 0;
  }
}
@media screen and (min-width: 1024px) {
  .content .contentInner {
    width: 1000px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1023px) {
  .content .contentInner {
    padding: 0 15px;
  }
}

.ttl {
  display: flex;
}
@media screen and (min-width: 1024px) {
  .ttl {
    justify-content: space-between;
    padding: 48px 0 0;
    align-items: flex-end;
    margin: 0 0 120px;
  }
}
@media screen and (max-width: 1023px) {
  .ttl {
    flex-direction: column-reverse;
    margin: 0 0 60px;
  }
}
.ttl .heading {
  color: #374362;
  letter-spacing: 0.07em;
  margin: 0;
  font-weight: 600;
}
@media screen and (min-width: 1024px) {
  .ttl .heading {
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 1023px) {
  .ttl .heading {
    font-size: 3rem;
    margin: 20px 0 0;
  }
}
.ttl .heading::before {
  display: block;
  content: attr(data-en);
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  margin: 0 0 -3px;
}
@media screen and (min-width: 1024px) {
  .ttl .heading::before {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1023px) {
  .ttl .heading::before {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 1023px) {
  .ttl .img {
    width: calc(100% + 15px);
    margin-right: -15px;
  }
}

.top .mv {
  opacity: 0;
  transition: 1.5s ease;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .top .mv {
    background: url(../images/index_mv.jpg) no-repeat center center/cover;
    margin: 0 70px;
    height: 560px;
  }
}
@media screen and (max-width: 1023px) {
  .top .mv {
    background: url(../images/index_mv_sp.jpg) no-repeat center center/cover;
    width: 100%;
    height: calc(100dvh - 120px);
  }
}
.top .mv .heading {
  color: #fff;
  font-weight: 700;
  position: absolute;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .top .mv .heading {
    font-size: 6rem;
    left: 0;
    bottom: 3px;
  }
}
@media screen and (max-width: 1023px) {
  .top .mv .heading {
    font-size: 3.8rem;
    left: 15px;
    bottom: 10%;
  }
}
.top .mv.is-visible {
  opacity: 1;
}
@media screen and (min-width: 1024px) {
  .top .contentInner {
    margin: 140px auto 0;
  }
}
@media screen and (max-width: 1023px) {
  .top .contentInner {
    margin: 90px auto 0;
  }
}
@media screen and (min-width: 1024px) {
  .top .sec {
    margin: 80px 0;
  }
}
@media screen and (max-width: 1023px) {
  .top .sec {
    margin: 70px 0;
  }
}
@media screen and (max-width: 1023px) {
  .top .sec .btnWrap {
    text-align: center;
    margin: 35px auto 0;
  }
}
.top .secHeading {
  color: #374362;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .top .secHeading {
    font-size: 2.8rem;
    margin: 0 0 50px;
  }
}
@media screen and (max-width: 1023px) {
  .top .secHeading {
    font-size: 2.4rem;
    margin: 0 0 40px;
  }
}
.top .secHeading::before {
  content: attr(data-en);
  display: block;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  margin: 0 0 -2px;
}
@media screen and (min-width: 1024px) {
  .top .secHeading::before {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1023px) {
  .top .secHeading::before {
    font-size: 1.2rem;
  }
}
.top .sec01 .heading {
  color: #374362;
  margin: 0 0 40px;
  font-weight: 600;
}
@media screen and (min-width: 1024px) {
  .top .sec01 .heading {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 1023px) {
  .top .sec01 .heading {
    font-size: 2.6rem;
  }
}
.top .sec01 .txt {
  line-height: 2;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .top .sec01 .txt {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1023px) {
  .top .sec01 .txt {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1024px) {
  .top .sec01 .btnWrap {
    text-align: right;
    margin: 50px 0 0;
  }
}
.top .sec02 .serviceList {
  counter-reset: count;
  list-style: none;
  margin: 0;
  padding: 0;
}
.top .sec02 .serviceList > li {
  counter-increment: count;
}
@media screen and (min-width: 1024px) {
  .top .sec02 .serviceList > li {
    display: flex;
    align-items: flex-end;
  }
}
@media screen and (min-width: 1024px) {
  .top .sec02 .serviceList > li + li {
    margin-top: 50px;
  }
}
@media screen and (max-width: 1023px) {
  .top .sec02 .serviceList > li + li {
    margin-top: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .top .sec02 .serviceList > li .img {
    width: 350px;
  }
}
.top .sec02 .serviceList > li .img > img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1024px) {
  .top .sec02 .serviceList > li .txt {
    margin: 0 0 0 50px;
  }
}
@media screen and (max-width: 1023px) {
  .top .sec02 .serviceList > li .txt {
    margin: 30px 0 0;
  }
}
.top .sec02 .serviceList > li .txt .heading {
  position: relative;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1024px) {
  .top .sec02 .serviceList > li .txt .heading {
    font-size: 2.2rem;
    margin: 0 0 30px;
  }
}
@media screen and (max-width: 1023px) {
  .top .sec02 .serviceList > li .txt .heading {
    font-size: 2rem;
    margin: 0 0 10px;
  }
}
.top .sec02 .serviceList > li .txt .heading::before {
  font-family: Montserrat, sans-serif;
  content: "0" counter(count);
  position: absolute;
  font-weight: 500;
  color: #374362;
  z-index: -1;
  opacity: 0.23;
}
@media screen and (min-width: 1024px) {
  .top .sec02 .serviceList > li .txt .heading::before {
    font-size: 7.3rem;
    top: -52px;
    left: -20px;
  }
}
@media screen and (max-width: 1023px) {
  .top .sec02 .serviceList > li .txt .heading::before {
    font-size: 6rem;
    top: -43px;
    left: -10px;
  }
}
.top .sec02 .serviceList > li .txt .body {
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .top .sec02 .serviceList > li .txt .body {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1023px) {
  .top .sec02 .serviceList > li .txt .body {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1024px) {
  .top .sec02 .btnWrap {
    margin: 50px 0 0;
    text-align: center;
  }
}
.top .sec03 .caseList {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 1024px) {
  .top .sec03 .caseList {
    display: flex;
    gap: 0 30px;
  }
}
@media screen and (min-width: 1024px) {
  .top .sec03 .caseList > li {
    width: calc(50% - 15px);
  }
}
@media screen and (min-width: 1024px) {
  .top .sec03 .caseList > li .img {
    margin: 0 0 20px;
  }
}
@media screen and (max-width: 1023px) {
  .top .sec03 .caseList > li .img {
    margin: 0 0 15px;
  }
}
.top .sec03 .caseList > li .img > img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1024px) {
  .top .sec03 .caseList > li .heading {
    font-size: 2rem;
    margin: 0 0 20px;
  }
}
@media screen and (max-width: 1023px) {
  .top .sec03 .caseList > li .heading {
    font-size: 1.8rem;
    margin: 0 0 15px;
  }
}
.top .sec03 .caseList > li .heading .name {
  color: #777;
  display: block;
  font-weight: 400;
}
@media screen and (min-width: 1024px) {
  .top .sec03 .caseList > li .heading .name {
    margin: 0 0 5px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1023px) {
  .top .sec03 .caseList > li .heading .name {
    margin: 0 0 7px;
    font-size: 1.2rem;
  }
}
.top .sec03 .caseList > li .body {
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .top .sec03 .caseList > li .body {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1023px) {
  .top .sec03 .caseList > li .body {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1023px) {
  .top .sec03 .caseList > li + li {
    margin-top: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .top .sec03 .btnWrap {
    margin: 50px 0 0;
    text-align: center;
  }
}
.top .sec04 .newsList {
  display: flex;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 1024px) {
  .top .sec04 .newsList {
    gap: 0 50px;
    margin: 0 0 50px;
  }
}
@media screen and (max-width: 1023px) {
  .top .sec04 .newsList {
    flex-wrap: wrap;
    gap: 15px 10px;
  }
}
.top .sec04 .newsList > li {
  background: #fff;
  position: relative;
  transition: 0.3s ease;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 1024px) {
  .top .sec04 .newsList > li {
    width: 300px;
  }
  .top .sec04 .newsList > li:nth-child(n+4) {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .top .sec04 .newsList > li {
    width: calc(50% - 5px);
  }
}
.top .sec04 .newsList > li .img {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .top .sec04 .newsList > li .img {
    height: 200px;
  }
}
@media screen and (max-width: 1023px) {
  .top .sec04 .newsList > li .img {
    height: auto;
    aspect-ratio: 3/2;
  }
}
.top .sec04 .newsList > li .img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1024px) {
  .top .sec04 .newsList > li .txt {
    padding: 15px 20px 45px;
  }
}
@media screen and (max-width: 1023px) {
  .top .sec04 .newsList > li .txt {
    padding: 10px 10px 30px;
  }
}
.top .sec04 .newsList > li .txt .heading {
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .top .sec04 .newsList > li .txt .heading {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1023px) {
  .top .sec04 .newsList > li .txt .heading {
    font-size: 1.2rem;
  }
}
.top .sec04 .newsList > li .txt .date {
  position: absolute;
  color: #777;
  margin: 0;
  font-family: Montserrat, sans-serif;
}
@media screen and (min-width: 1024px) {
  .top .sec04 .newsList > li .txt .date {
    bottom: 15px;
    right: 20px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 1023px) {
  .top .sec04 .newsList > li .txt .date {
    bottom: 10px;
    right: 10px;
  }
}
.top .sec04 .newsList > li:hover {
  transform: translate(2px, 2px);
}
.top .sec04 .btnWrap {
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .company .sec {
    margin: 120px 0;
  }
}
@media screen and (max-width: 1023px) {
  .company .sec {
    margin: 60px 0;
  }
}
.company .secHeading {
  color: #374362;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.07em;
}
@media screen and (min-width: 1024px) {
  .company .secHeading {
    font-size: 3.6rem;
    margin: 0 0 50px;
  }
}
@media screen and (max-width: 1023px) {
  .company .secHeading {
    font-size: 2.4rem;
    margin: 0 0 30px;
  }
}
.company .secHeading::before {
  content: attr(data-en);
  display: block;
  font-family: Montserrat, sans-serif;
  letter-spacing: 0;
  margin: 0 0 -2px;
  font-weight: 400;
}
@media screen and (min-width: 1024px) {
  .company .secHeading::before {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1023px) {
  .company .secHeading::before {
    font-size: 1rem;
  }
}
.company .sec01 .subHeading {
  color: #374362;
  font-weight: 600;
}
@media screen and (min-width: 1024px) {
  .company .sec01 .subHeading {
    font-size: 3rem;
    margin: 0 0 40px;
  }
}
@media screen and (max-width: 1023px) {
  .company .sec01 .subHeading {
    font-size: 2rem;
    margin: 0 0 25px;
  }
}
.company .sec01 .txt {
  line-height: 2;
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .company .sec01 .txt {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1023px) {
  .company .sec01 .txt {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1024px) {
  .company .sec02 .dataList {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1023px) {
  .company .sec02 .dataList {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1024px) {
  .company .sec02 .dataList > dt,
  .company .sec02 .dataList > dd {
    padding: 30px 20px;
  }
}
@media screen and (max-width: 1023px) {
  .company .sec02 .dataList > dt,
  .company .sec02 .dataList > dd {
    padding: 0;
  }
}
@media screen and (min-width: 1024px) {
  .company .sec02 .dataList > dt:first-of-type,
  .company .sec02 .dataList > dd:first-of-type {
    padding-top: 0;
  }
}
.company .sec02 .dataList > dt {
  font-weight: 600;
}
@media screen and (min-width: 1024px) {
  .company .sec02 .dataList > dt {
    text-align: right;
    float: left;
    width: 250px;
    border-bottom: 1px solid #374362;
  }
}
@media screen and (max-width: 1023px) {
  .company .sec02 .dataList > dt {
    margin: 0 0 10px;
  }
}
@media screen and (max-width: 1023px) {
  .company .sec02 .dataList > dt:not(:first-child) {
    margin-top: 25px;
  }
}
@media screen and (min-width: 1024px) {
  .company .sec02 .dataList > dd {
    border-bottom: 1px solid #A4ABBD;
    margin: 0 0 0 250px;
  }
  .company .sec02 .dataList > dd::after {
    content: "";
    clear: left;
  }
}
@media screen and (max-width: 1023px) {
  .company .sec02 .dataList > dd {
    margin: 0;
    padding: 0;
  }
}

.services .lead {
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .services .lead {
    font-size: 1.6rem;
    margin: 0 0 70px;
  }
}
@media screen and (max-width: 1023px) {
  .services .lead {
    font-size: 1.4rem;
    margin: 0 0 60px;
  }
}
.services .serviceList {
  counter-reset: service;
  list-style: none;
  padding: 0;
}
@media screen and (min-width: 1024px) {
  .services .serviceList {
    margin: 0 0 120px;
  }
}
.services .serviceList > li {
  counter-increment: service;
}
@media screen and (min-width: 1024px) {
  .services .serviceList > li {
    margin: 0 0 120px;
  }
}
@media screen and (max-width: 1023px) {
  .services .serviceList > li {
    margin: 0 0 60px;
  }
}
.services .serviceList > li .heading {
  padding: 0;
  position: relative;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: #374362;
}
@media screen and (min-width: 1024px) {
  .services .serviceList > li .heading {
    font-size: 3.6rem;
    margin: 0 0 50px;
  }
}
@media screen and (max-width: 1023px) {
  .services .serviceList > li .heading {
    font-size: 2.4rem;
    margin: 0 0 30px;
  }
}
.services .serviceList > li .heading::before {
  content: "0" counter(service);
  display: inline-block;
  position: absolute;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  color: rgba(55, 67, 98, 0.23);
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .services .serviceList > li .heading::before {
    bottom: -20px;
    left: -30px;
    font-size: 8.5rem;
  }
}
@media screen and (max-width: 1023px) {
  .services .serviceList > li .heading::before {
    bottom: -15px;
    left: -10px;
    font-size: 6rem;
  }
}
.services .serviceList > li .img {
  display: block;
}
@media screen and (min-width: 1024px) {
  .services .serviceList > li .img {
    margin: 0 0 30px;
  }
}
@media screen and (max-width: 1023px) {
  .services .serviceList > li .img {
    margin: 0 0 20px;
  }
}
@media screen and (min-width: 1024px) {
  .services .serviceList > li .txt {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1023px) {
  .services .serviceList > li .txt {
    font-size: 1.4rem;
  }
}

.cases .lead {
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .cases .lead {
    font-size: 1.6rem;
    margin: 0 0 70px;
  }
}
@media screen and (max-width: 1023px) {
  .cases .lead {
    font-size: 1.4rem;
    margin: 0 0 60px;
  }
}
.cases .caseList {
  list-style: none;
  padding: 0;
}
@media screen and (min-width: 1024px) {
  .cases .caseList {
    margin: 0 0 120px;
  }
}
@media screen and (max-width: 1023px) {
  .cases .caseList {
    margin: 0 0 60px;
  }
}
@media screen and (min-width: 1024px) {
  .cases .caseList > li + li {
    margin: 120px 0 0;
  }
}
@media screen and (max-width: 1023px) {
  .cases .caseList > li + li {
    margin: 60px 0 0;
  }
}
@media screen and (min-width: 1024px) {
  .cases .caseList .caseTtl {
    display: flex;
    align-items: center;
    margin: 0 0 30px;
  }
}
@media screen and (max-width: 1023px) {
  .cases .caseList .caseTtl .img > img {
    width: 100%;
    height: auto;
  }
}
.cases .caseList .caseTtl .heading {
  font-weight: 600;
  color: #374362;
}
@media screen and (min-width: 1024px) {
  .cases .caseList .caseTtl .heading {
    font-size: 2.2rem;
    margin: 0 0 0 30px;
  }
}
@media screen and (max-width: 1023px) {
  .cases .caseList .caseTtl .heading {
    font-size: 2rem;
    margin: 15px 0;
  }
}
.cases .caseList .caseTtl .heading .name {
  color: #777;
  display: block;
  font-weight: 400;
  margin: 0 0 5px;
}
@media screen and (min-width: 1024px) {
  .cases .caseList .caseTtl .heading .name {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1023px) {
  .cases .caseList .caseTtl .heading .name {
    font-size: 1.2rem;
  }
}
.cases .caseList .txt .subHeading {
  margin: 0 0 15px;
}
@media screen and (min-width: 1024px) {
  .cases .caseList .txt .subHeading {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1023px) {
  .cases .caseList .txt .subHeading {
    font-size: 1.6rem;
  }
}
.cases .caseList .txt .body {
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .cases .caseList .txt .body {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1023px) {
  .cases .caseList .txt .body {
    font-size: 1.4rem;
  }
}
.cases .caseList .txt .body:not(:last-of-type) {
  margin-bottom: 25px;
}

.news .newsList {
  display: flex;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
@media screen and (min-width: 1024px) {
  .news .newsList {
    gap: 60px 50px;
    margin: 0 0 60px;
  }
}
@media screen and (max-width: 1023px) {
  .news .newsList {
    gap: 15px 10px;
    margin: 0 0 50px;
  }
}
.news .newsList > li {
  background: #fff;
  position: relative;
  transition: 0.3s ease;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 1024px) {
  .news .newsList > li {
    width: 300px;
  }
}
@media screen and (max-width: 1023px) {
  .news .newsList > li {
    width: calc(50% - 5px);
  }
}
.news .newsList > li .img {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .news .newsList > li .img {
    height: 200px;
  }
}
@media screen and (max-width: 1023px) {
  .news .newsList > li .img {
    height: auto;
    aspect-ratio: 3/2;
  }
}
.news .newsList > li .img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1024px) {
  .news .newsList > li .txt {
    padding: 15px 20px 45px;
  }
}
@media screen and (max-width: 1023px) {
  .news .newsList > li .txt {
    padding: 10px 10px 30px;
  }
}
.news .newsList > li .txt .heading {
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .news .newsList > li .txt .heading {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1023px) {
  .news .newsList > li .txt .heading {
    font-size: 1.2rem;
  }
}
.news .newsList > li .txt .date {
  position: absolute;
  color: #777;
  margin: 0;
  font-family: Montserrat, sans-serif;
}
@media screen and (min-width: 1024px) {
  .news .newsList > li .txt .date {
    bottom: 15px;
    right: 20px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 1023px) {
  .news .newsList > li .txt .date {
    bottom: 10px;
    right: 10px;
  }
}
.news .newsList > li:hover {
  transform: translate(2px, 2px);
}
.news .pager {
  display: flex;
  justify-content: center;
  align-items: center;
}
.news .pager .arrow {
  font-size: 0;
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: block;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  position: relative;
  transition: 0.3s ease;
}
.news .pager .arrow::after {
  display: block;
  position: absolute;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  width: 10px;
  height: 10px;
  content: "";
  top: 14px;
}
.news .pager .arrow:hover {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}
.news .pager .arrow.prev::after {
  transform: rotate(-135deg);
  left: 17px;
}
.news .pager .arrow.next::after {
  transform: rotate(45deg);
  right: 17px;
}
.news .pager .pages {
  list-style: none;
  margin: 0 30px;
  padding: 0;
  font-family: Montserrat, sans-serif;
}
.news .pager .pages > li {
  margin: 0 10px;
  display: inline-block;
  font-size: 1.8rem;
}
.news .pager .pages > li > a {
  color: #777;
  position: relative;
  transition: 0.3s ease;
}
.news .pager .pages > li > a:hover {
  color: #1C1C1C;
}
.news .pager .pages > li.current {
  font-weight: 600;
}

.newsDetail .newsTtl {
  display: flex;
  color: #374362;
}
@media screen and (min-width: 1024px) {
  .newsDetail .newsTtl {
    padding: 48px 0 0;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
  }
}
@media screen and (max-width: 1023px) {
  .newsDetail .newsTtl {
    padding: 38px 0 0;
    flex-direction: column;
  }
}
.newsDetail .newsTtl .date {
  margin: 0;
  line-height: 1;
  font-family: Montserrat, sans-serif;
}
@media screen and (min-width: 1024px) {
  .newsDetail .newsTtl .date {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1023px) {
  .newsDetail .newsTtl .date {
    order: 2;
    margin: 15px 0 0;
  }
}
@media screen and (max-width: 1023px) {
  .newsDetail .newsTtl .img {
    order: 1;
  }
}
.newsDetail .newsTtl .heading {
  padding: 0;
  font-weight: 600;
  letter-spacing: 0.07em;
}
@media screen and (min-width: 1024px) {
  .newsDetail .newsTtl .heading {
    margin: 18px 0 0;
    width: 100%;
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 1023px) {
  .newsDetail .newsTtl .heading {
    order: 3;
    margin: 8px 0 0;
  }
}
@media screen and (min-width: 1024px) {
  .newsDetail .article {
    font-size: 1.6rem;
    margin: 60px 0 0;
  }
}
@media screen and (max-width: 1023px) {
  .newsDetail .article {
    font-size: 1.4rem;
    margin: 38px 0 0;
  }
}
.newsDetail .article h2,
.newsDetail .article h3,
.newsDetail .article h4,
.newsDetail .article h5,
.newsDetail .article h6 {
  font-weight: 600;
  letter-spacing: 0.07;
}
.newsDetail .article h2 {
  color: #374362;
}
@media screen and (min-width: 1024px) {
  .newsDetail .article h2 {
    margin: 30px 0;
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 1023px) {
  .newsDetail .article h2 {
    margin: 25px 0;
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 1024px) {
  .newsDetail .article h3 {
    margin: 25px 0;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 1023px) {
  .newsDetail .article h3 {
    margin: 20px 0;
    font-size: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .newsDetail .article h4 {
    margin: 20px 0;
    font-size: 2rem;
  }
}
@media screen and (max-width: 1023px) {
  .newsDetail .article h4 {
    margin: 15px 0;
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1024px) {
  .newsDetail .article h5 {
    margin: 20px 0;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1023px) {
  .newsDetail .article h5 {
    margin: 15px 0;
    font-size: 1.6rem;
  }
}
.newsDetail .article h6 {
  border-bottom: 1px solid currentColor;
  padding: 0 0 5px;
  margin: 15px 0;
}
@media screen and (min-width: 1024px) {
  .newsDetail .article h6 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1023px) {
  .newsDetail .article h6 {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1024px) {
  .newsDetail .article p {
    margin: 10px 0;
  }
}
@media screen and (max-width: 1023px) {
  .newsDetail .article p {
    margin: 7px 0;
  }
}
.newsDetail .article .table {
  overflow: auto;
}
@media screen and (min-width: 1024px) {
  .newsDetail .article .table {
    margin: 50px 0;
  }
}
@media screen and (max-width: 1023px) {
  .newsDetail .article .table {
    margin: 40px 0;
  }
}
.newsDetail .article table {
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .newsDetail .article table {
    white-space: nowrap;
  }
}
@media screen and (min-width: 1024px) {
  .newsDetail .article table tr th,
  .newsDetail .article table tr td {
    padding: 30px;
  }
}
@media screen and (max-width: 1023px) {
  .newsDetail .article table tr th,
  .newsDetail .article table tr td {
    padding: 20px;
  }
}
.newsDetail .article table tr th {
  font-weight: 600;
  text-align: center;
  border-bottom: 1px solid #374362;
}
.newsDetail .article table tr td {
  border-bottom: 1px solid #A4ABBD;
}
.newsDetail .article table tr:first-child th,
.newsDetail .article table tr:first-child td {
  padding-top: 0;
}
.newsDetail .article ul,
.newsDetail .article ol {
  line-height: 2;
  list-style: none;
  padding: 0 0 0 25px;
}
@media screen and (min-width: 1024px) {
  .newsDetail .article ul,
  .newsDetail .article ol {
    margin: 15px 0;
  }
}
.newsDetail .article ul > li,
.newsDetail .article ol > li {
  position: relative;
}
.newsDetail .article ul > li::before,
.newsDetail .article ol > li::before {
  position: absolute;
}
.newsDetail .article ul > li::before {
  content: "";
  width: 5px;
  height: 5px;
  background: #777;
  border-radius: 50%;
  display: block;
  left: -11px;
}
@media screen and (min-width: 1024px) {
  .newsDetail .article ul > li::before {
    top: 13px;
  }
}
@media screen and (max-width: 1023px) {
  .newsDetail .article ul > li::before {
    top: 12px;
  }
}
.newsDetail .article ol {
  counter-reset: list;
}
.newsDetail .article ol > li {
  counter-increment: list;
}
.newsDetail .article ol > li::before {
  content: counter(list);
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  left: -33px;
  top: 0;
  width: 25px;
  text-align: right;
  color: #777;
}
.newsDetail .article blockquote {
  background: rgba(55, 67, 98, 0.1);
  position: relative;
}
@media screen and (min-width: 1024px) {
  .newsDetail .article blockquote {
    padding: 30px;
    margin: 50px 0;
  }
}
@media screen and (max-width: 1023px) {
  .newsDetail .article blockquote {
    padding: 20px;
    margin: 40px 0;
  }
}
.newsDetail .article blockquote::before {
  font-family: Montserrat, sans-serif;
  position: absolute;
  content: "”";
  color: rgba(119, 119, 119, 0.2);
  font-weight: 600;
  font-size: 11.6rem;
}
@media screen and (min-width: 1024px) {
  .newsDetail .article blockquote::before {
    top: -10px;
    left: 20px;
  }
}
@media screen and (max-width: 1023px) {
  .newsDetail .article blockquote::before {
    top: -30px;
    left: 0;
  }
}
.newsDetail .article .card {
  display: block;
  background: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  transition: 0.3s ease;
}
@media screen and (min-width: 1024px) {
  .newsDetail .article .card {
    padding: 30px 30px 10px;
  }
}
@media screen and (max-width: 1023px) {
  .newsDetail .article .card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 20px;
  }
}
.newsDetail .article .card:hover {
  opacity: 0.75;
}
.newsDetail .article .card .img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1024px) {
  .newsDetail .article .card .img {
    width: 300px;
    height: 200px;
    float: left;
    margin: 0 20px 20px 0;
  }
}
@media screen and (max-width: 1023px) {
  .newsDetail .article .card .img {
    width: 160px;
    height: 107px;
    margin: 0 10px 10px 0;
    flex: 0;
  }
}
.newsDetail .article .card .heading {
  font-weight: 600;
}
@media screen and (min-width: 1024px) {
  .newsDetail .article .card .heading {
    margin: 0 0 25px;
    padding: 37px 0 0;
  }
}
@media screen and (max-width: 1023px) {
  .newsDetail .article .card .heading {
    flex: 1;
  }
}
.newsDetail .article .card .body {
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 1024px) {
  .newsDetail .article .card .body::after {
    display: block;
    content: "";
    clear: left;
    margin-top: 20px;
  }
}
.newsDetail .navigation {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 1024px) {
  .newsDetail .navigation {
    font-size: 1.6rem;
    margin: 80px 0 0;
  }
}
@media screen and (max-width: 1023px) {
  .newsDetail .navigation {
    margin: 60px 0 0;
  }
}
.newsDetail .navigation .prev,
.newsDetail .navigation .next {
  position: relative;
  color: #777;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
}
.newsDetail .navigation .prev:hover,
.newsDetail .navigation .next:hover {
  color: #1C1C1C;
}
.newsDetail .navigation .prev::before {
  content: "";
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: block;
  background: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  transition: 0.3s ease;
}
@media screen and (min-width: 1024px) {
  .newsDetail .navigation .prev::before {
    margin: 0 15px 0 0;
  }
}
@media screen and (max-width: 1023px) {
  .newsDetail .navigation .prev::before {
    margin: 0 10px 0 0;
  }
}
.newsDetail .navigation .prev::after {
  position: absolute;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid #1C1C1C;
  border-left: 1px solid #1C1C1C;
  transform: rotate(-45deg);
  top: 14.5px;
  left: 16px;
}
.newsDetail .navigation .prev:hover::before {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}
.newsDetail .navigation .next::before {
  position: absolute;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid #1C1C1C;
  border-right: 1px solid #1C1C1C;
  transform: rotate(45deg);
  top: 14.5px;
  right: 18px;
}
.newsDetail .navigation .next::after {
  content: "";
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: block;
  background: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  transition: 0.3s ease;
}
@media screen and (min-width: 1024px) {
  .newsDetail .navigation .next::after {
    margin: 0 0 0 15px;
  }
}
@media screen and (max-width: 1023px) {
  .newsDetail .navigation .next::after {
    margin: 0 0 0 10px;
  }
}
.newsDetail .navigation .next:hover::after {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}

.contact .contactTtl {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .contact .contactTtl {
    padding: 100px 0 0;
  }
}
@media screen and (max-width: 1023px) {
  .contact .contactTtl {
    padding: 80px 0 0;
  }
}
.contact .contactTtl .heading {
  color: #374362;
  letter-spacing: 0.07em;
  margin: 0;
  font-weight: 600;
}
@media screen and (min-width: 1024px) {
  .contact .contactTtl .heading {
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 1023px) {
  .contact .contactTtl .heading {
    font-size: 3rem;
    margin: 20px 0 0;
  }
}
.contact .contactTtl .heading::before {
  display: block;
  content: attr(data-en);
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  margin: 0 0 -3px;
}
@media screen and (min-width: 1024px) {
  .contact .contactTtl .heading::before {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1023px) {
  .contact .contactTtl .heading::before {
    font-size: 1.2rem;
  }
}
.contact .lead {
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .contact .lead {
    margin: 80px 0;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1023px) {
  .contact .lead {
    margin: 60px 0;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1024px) {
  .contact .note {
    margin: 0 7px 24px 200px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1023px) {
  .contact .note {
    margin: 0 0 18px;
    font-size: 1.4rem;
  }
}
.contact .note .mark {
  color: #EB3A6A;
}
.contact .form {
  margin: 0;
}
@media screen and (min-width: 1024px) {
  .contact .form {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1023px) {
  .contact .form {
    font-size: 1.4rem;
  }
}
.contact .form > dt {
  font-weight: 600;
}
@media screen and (min-width: 1024px) {
  .contact .form > dt {
    float: left;
    width: 200px;
    padding: 0 30px 30px 0;
    text-align: right;
    margin: 3px 0 0;
  }
}
@media screen and (max-width: 1023px) {
  .contact .form > dt {
    margin: 0 0 10px;
  }
}
.contact .form > dt.required::after {
  vertical-align: pre;
  content: "*";
  margin: 0 0 0 7px;
  color: #EB3A6A;
}
@media screen and (min-width: 1024px) {
  .contact .form > dd {
    margin: 0 0 0 200px;
    padding: 0 0 30px;
  }
}
@media screen and (max-width: 1023px) {
  .contact .form > dd {
    margin: 0 0 25px;
    padding: 0;
  }
}
@media screen and (min-width: 1024px) {
  .contact .form > dd:last-of-type {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 1023px) {
  .contact .form > dd:last-of-type {
    margin-bottom: 0;
  }
}
.contact .form .txt,
.contact .form .select,
.contact .form .txtArea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #777;
  font-size: 1.6rem;
  padding: 7px;
}
@media screen and (max-width: 1023px) {
  .contact .form .txt,
  .contact .form .select,
  .contact .form .txtArea {
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .contact .form .txt {
    width: 350px;
  }
}
.contact .form .selectWrap {
  position: relative;
}
@media screen and (min-width: 1024px) {
  .contact .form .selectWrap {
    width: 350px;
  }
}
.contact .form .selectWrap::after {
  position: absolute;
  border-right: 1px solid #777;
  border-bottom: 1px solid #777;
  transform: rotate(45deg);
  width: 10px;
  height: 10px;
  display: block;
  right: 15px;
  top: 8px;
  content: "";
}
@media screen and (min-width: 1024px) {
  .contact .form .select {
    width: 350px;
  }
}
.contact .form .txtArea {
  height: 300px;
}
@media screen and (min-width: 1024px) {
  .contact .form .txtArea {
    width: 100%;
    margin: 30px 0 0;
  }
}
@media screen and (max-width: 1023px) {
  .contact .form .txtArea {
    margin: 15px 0 0;
  }
}
.contact .btnWrap {
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .contact .btnWrap {
    margin: 50px 0 0;
  }
}
@media screen and (max-width: 1023px) {
  .contact .btnWrap {
    margin: 40px 0 0;
  }
}
@media screen and (min-width: 1024px) {
  .contact.confirm .form > dt {
    margin-top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .contact.confirm .form > dd {
    padding-bottom: 35px;
  }
}
.contact.confirm .form > dd:last-of-type {
  padding-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .contact.confirm .form > dd .genre {
    margin: 0 0 25px;
  }
}
@media screen and (max-width: 1023px) {
  .contact.confirm .form > dd .genre {
    margin: 0 0 10px;
  }
}
@media screen and (min-width: 1024px) {
  .contact.complete .btnWrap {
    margin-top: 100px;
  }
}/*# sourceMappingURL=styles.css.map */