@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  line-height: 1.7;
}

.inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .inner {
    max-width: 100%;
    padding: 0 16px;
  }
}

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

.pc-hidden {
  display: none;
}
@media (max-width: 767px) {
  .pc-hidden {
    display: block;
  }
}

/*==============================
header
==============================*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  background-color: #fff;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 125px;
  max-width: 1260px;
}
@media (max-width: 767px) {
  .header__inner {
    height: 60px;
  }
}

.header__logo {
  transition: all ease 0.3s;
}
.header__logo a img {
  width: 280px;
}
@media (max-width: 767px) {
  .header__logo a img {
    width: 200px;
  }
}
.header__logo:hover {
  opacity: 0.7;
}

@media (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

.header__nav-lists {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header__nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: color ease 0.3s;
}
.header__nav-link img {
  width: 40px;
}
.header__nav-link:hover {
  color: #001ca9;
}
.header__nav-link.is-active {
  color: #001ca9;
}

.header__nav-link__en {
  font-weight: bold;
}

.header__nav-link__ja {
  font-size: 12px;
  font-weight: bold;
  margin-top: -5px;
}

.header-button {
  padding: 10px 30px;
  color: #001ca9;
  background-color: #fff;
  border: 1px solid currentColor;
  border-radius: 30px;
  font-size: 12px;
  font-weight: bold;
  transition: all ease 0.3s;
  display: inline-block;
}
.header-button:hover {
  color: #fff;
  background-color: #001ca9;
}

.header-nav-icons {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.header-nav-icons a {
  transition: all ease 0.3s;
}
.header-nav-icons a:hover {
  opacity: 0.7;
}
.sp-bg {
  width: 100%;
  height: 600px;
  background: url(../img/sp-bg.png) no-repeat center center/cover;
}

.drawer-button {
  width: 40px;
  height: 26px;
  position: relative;
}
@media (min-width: 768px) {
  .drawer-button {
    display: none;
  }
}
.drawer-button.is-open .drawer-button-bar:nth-of-type(1) {
  top: 10px;
  transform: rotate(45deg);
}
.drawer-button.is-open .drawer-button-bar:nth-of-type(2) {
  display: none;
}
.drawer-button.is-open .drawer-button-bar:nth-of-type(3) {
  top: 10px;
  transform: rotate(-45deg);
}

.drawer-button-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #001ca9;
  transition: all ease 0.3s;
}
.drawer-button-bar:nth-of-type(1) {
  top: 0;
}
.drawer-button-bar:nth-of-type(2) {
  top: 10px;
}
.drawer-button-bar:nth-of-type(3) {
  top: 20px;
}

.drawer-icons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}
.drawer-icons a img {
  width: 40px;
}

/*==============================
ドロワーメニュー
==============================*/
.drawer-contents {
  position: fixed;
  top: 0;
  left: 110%;
  width: 100%;
  z-index: 10;
  background-color: #fff;
  height: 100vh;
  transition: all ease 0.3s;
}
.drawer-contents.is-open {
  left: 0;
}

.drawer-nav {
  padding-top: 120px;
}

.drawer-nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.drawer-nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.drawer-nav-link-en {
  font-size: 18px;
  font-weight: bold;
}

.drawer-nav-link-ja {
  font-size: 14px;
}

.drawer-nav-link {
  width: 200px;
}

/*==============================
fv
==============================*/
.fv {
  width: 100%;
  height: 800px;
  position: relative;
  margin-top: 125px;
}
@media (max-width: 767px) {
  .fv {
    margin-top: 60px;
    height: 600px;
  }
}

.fv__bg {
  width: 100%;
  height: 800px;
  -o-object-fit: cover;
     object-fit: cover;
}

.fv__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
@media (max-width: 767px) {
  .fv__inner {
    top: 40%;
  }
}

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

.fv__text {
  font-size: 48px;
  font-weight: bold;
  color: #fff;
}
@media (max-width: 767px) {
  .fv__text {
    text-align: center;
  }
}

.fv__image {
  margin-top: 29px;
}
.fv__image img {
  width: 530px;
}
@media (max-width: 767px) {
  .fv__image img {
    width: 100%;
  }
}

.fv__button {
  margin-top: 30px;
}
.fv__button a {
  font-size: 21px;
  color: #001ca9;
  border: 1px solid currentColor;
  background-color: #fff;
  padding: 15px 57px;
  border-radius: 80px;
  font-weight: bold;
  transition: all ease 0.3s;
  display: inline-block;
}
@media (max-width: 767px) {
  .fv__button a {
    padding: 5px 20px;
    width: 80%;
    font-size: 18px;
  }
}
.fv__button a:hover {
  color: #fff;
  background-color: #001ca9;
}

/*==============================
section共通
==============================*/
.section {
  padding: 120px 0;
}
@media (max-width: 767px) {
  .section {
    padding: 50px 0;
  }
}

.section-title {
  text-align: center;
  display: flex;
  flex-direction: column;
  padding-bottom: 40px;
  position: relative;
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .section-title {
    padding-bottom: 10px;
    margin-bottom: 50px;
  }
}
.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #001ca9;
}
@media (max-width: 767px) {
  .section-title::after {
    height: 2px;
  }
}

.section-title__en {
  font-size: 48px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .section-title__en {
    font-size: 40px;
    line-height: 1;
  }
}

.section-title__ja {
  font-weight: bold;
  line-height: 1;
  margin-top: 10px;
}

/*==============================
top-message
==============================*/
.top-message {
  margin-top: 80px;
  background-color: #f3fbff;
}
@media (max-width: 767px) {
  .top-message {
    margin-top: 0;
  }
}

.top-message__contents {
  display: flex;
  justify-content: space-between;
  gap: 100px;
  align-items: center;
}
@media (max-width: 767px) {
  .top-message__contents {
    flex-direction: column;
    gap: 20px;
  }
}

.top-message__logo {
  width: 42%;
}
@media (max-width: 767px) {
  .top-message__logo {
    width: 100%;
  }
}

.top-message__text-contents {
  flex: 1;
}

.top-message__text {
  line-height: 30px;
}

.top-message__button {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .top-message__button {
    text-align: center;
  }
}
.top-message__button .button {
  padding: 10px 50px;
  color: #001ca9;
  background-color: #fff;
  border: 1px solid currentColor;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  transition: all ease 0.3s;
  display: inline-block;
}
.top-message__button .button:hover {
  color: #fff;
  background-color: #001ca9;
}

/*==============================
top-works
==============================*/
.top-works__items {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
@media (max-width: 767px) {
  .top-works__items {
    gap: 50px;
  }
}

.top-works-item {
  display: flex;
  gap: 65px;
  align-items: center;
}
@media (max-width: 767px) {
  .top-works-item {
    flex-direction: column;
    gap: 20px;
  }
}
.top-works-item:nth-child(2n) {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .top-works-item:nth-child(2n) {
    flex-direction: column;
  }
}

.top-works-item__image {
  max-width: 47%;
}
@media (max-width: 767px) {
  .top-works-item__image {
    max-width: 100%;
  }
}

.top-works-item__text-contents {
  flex: 1;
}

.top-works-item__text {
  line-height: 30px;
}

/*==============================
fotter
==============================*/
.footer-contact {
  padding: 110px 0;
  background: url(../img/bg.png) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .footer-contact {
    padding: 30px 0;
  }
}

.footer-contact-contens {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 120px;
}
@media (max-width: 767px) {
  .footer-contact-contens {
    flex-direction: column;
    gap: 10px;
  }
}

.footer-contact__text {
  line-height: 30px;
  font-weight: bold;
  color: #fff;
}
@media (max-width: 767px) {
  .footer-contact__text {
    text-align: center;
  }
}

.footer-contact__button .button {
  padding: 10px 50px;
  color: #001ca9;
  background-color: #fff;
  border: 1px solid currentColor;
  border-radius: 50px;
  font-size: 32px;
  font-weight: bold;
  transition: all ease 0.3s;
  display: inline-block;
}
@media (max-width: 767px) {
  .footer-contact__button .button {
    font-size: 18px;
  }
}
.footer-contact__button .button:hover {
  color: #fff;
  background-color: #001ca9;
}

.footer-access {
  margin-top: 120px;
  display: flex;
  flex-direction: row;
  gap: 130px;
  justify-content: center;
}
@media (max-width: 767px) {
  .footer-access {
    flex-direction: column;
    padding-left: 16px;
    padding-right: 16px;
    margin-top: 50px;
    gap: 50px;
  }
}

.footer-access__left {
  padding-right: 130px;
  border-right: 1px solid #001ca9;
}
@media (max-width: 767px) {
  .footer-access__left {
    padding-right: 0;
    border-right: none;
  }
}

.footer-access__main {
  font-size: 18px;
  font-weight: bold;
}

.footer-access__map {
  margin-top: 30px;
}
.footer-access__map iframe {
  width: 370px;
  height: auto;
  aspect-ratio: 370/288;
}
@media (max-width: 767px) {
  .footer-access__map iframe {
    width: 100%;
    aspect-ratio: initial;
  }
}

.footer-access__info {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 767px) {
  .footer-access__info {
    margin-top: 5px;
    gap: 5px;
  }
}

.footer-tel {
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-tel__icon img {
  width: 14px;
  height: 14px;
}

.footer-tel__text a {
  font-weight: bold;
  color: #001ca9;
  text-decoration: underline;
  display: inline-block;
  font-size: 18px;
  transition: all ease 0.3s;
}
.footer-tel__text a:hover {
  opacity: 0.7;
}

.footer__copyright {
  padding: 10px 0;
  margin-top: 120px;
  background-color: #001164;
  text-align: right;
}
@media (max-width: 767px) {
  .footer__copyright {
    margin-top: 100px;
  }
}

.copyright {
  color: #fff;
  font-size: 12px;
}

/*==============================
page-head
==============================*/
.page-head {
  background: url(../img/bg.png) no-repeat center center/cover;
  margin-top: 125px;
}
@media (max-width: 767px) {
  .page-head {
    margin-top: 60px;
  }
}

.page-title {
  display: flex;
  padding: 110px 0;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .page-title {
    padding: 40px 0;
  }
}

.page-title__en {
  font-size: 72px;
  font-weight: bold;
  color: #fff;
  line-height: 1;
  border-bottom: 3px solid #fff;
  padding-bottom: 10px;
}
@media (max-width: 767px) {
  .page-title__en {
    font-size: 32px;
  }
}

.page-title__ja {
  line-height: 1;
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  border-bottom: 3px solid #fff;
  padding-left: 10px;
  padding-bottom: 10px;
}
@media (max-width: 767px) {
  .page-title__ja {
    font-size: 18px;
  }
}

.page-section {
  padding: 120px 0;
}
@media (max-width: 767px) {
  .page-section {
    padding: 60px 0;
  }
}

/*==============================
works&company&contact
==============================*/
.works__items,
.company__items,
.contact__items {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
@media (max-width: 767px) {
  .works__items,
  .company__items,
  .contact__items {
    gap: 50px;
  }
}

.works-item__title,
.company-item__title,
.contact-item__title {
  font-size: 32px;
  font-weight: bold;
  padding-left: 15px;
  border-left: 3px solid #001ca9;
  line-height: 1;
}
@media (max-width: 767px) {
  .works-item__title,
  .company-item__title,
  .contact-item__title {
    font-size: 21px;
  }
}

.works-item__text,
.company-item__text,
.contact-item__text {
  margin-top: 50px;
  line-height: 30px;
}
@media (max-width: 767px) {
  .works-item__text,
  .company-item__text,
  .contact-item__text {
    margin-top: 20px;
  }
}

.works-item__images {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}

.works-item__image {
  width: 290px;
}

.message__logo {
  width: 280px;
  margin-top: 30px;
}

.message__name {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.message__name-position {
  font-size: 18px;
  font-weight: bold;
}

.message__name-name {
  font-size: 24px;
  font-weight: bold;
}

.company-table {
  margin-top: 50px;
  border-collapse: collapse;
  width: 100%;
}
.company-table tr th {
  vertical-align: middle;
  border-bottom: 1px solid #c2c2c2;
  padding: 15px 0;
  width: 90px;
  font-weight: bold;
  text-align: right;
}
.company-table tr td {
  border-bottom: 1px solid #c2c2c2;
  vertical-align: middle;
  padding: 15px 0 15px 50px;
}

.contact-attention {
  margin-top: 10px;
  font-size: 14px;
}
.contact-attention span {
  color: #f00000;
}

/*==============================
コンタクトフォーム
==============================*/
.contact__form {
  background: #f6f4f4;
  padding: 100px 0;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .contact__form {
    padding: 50px 0;
  }
}

.contact-form {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .contact-form {
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}

.contact-form__items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-form__item {
  display: flex;
  gap: 60px;
}
@media (max-width: 767px) {
  .contact-form__item {
    flex-direction: column;
    gap: 10px;
  }
}

.contact-name {
  width: 115px;
  font-weight: bold;
}
.contact-name span {
  color: #f00000;
}

.contact-input {
  flex: 1;
}

.input-text {
  width: 100%;
  border: 2px solid #001ca9;
  border-radius: 4px;
}

.input-textarea {
  width: 100%;
  height: 200px;
  border: 2px solid #001ca9;
  border-radius: 4px;
}

.radio-wrapper {
  display: flex;
  flex-direction: row;
  gap: 30px;
}
@media (max-width: 767px) {
  .radio-wrapper {
    flex-direction: column;
    gap: 5px;
  }
}

.form-radio {
  display: flex;
  align-items: center;
  flex-direction: row;
}

.form-radio__input {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .form-radio__input {
    align-items: start;
    flex-direction: column;
  }
}

.contact__button {
  margin-top: 50px;
  text-align: center;
}

.contact-button {
  border: 2px solid currentColor;
  border-radius: 4px;
  padding: 10px 80px;
  background-color: #fff;
  color: #001ca9;
  transition: all ease 0.3s;
}
.contact-button:hover {
  color: #fff;
  background-color: #001ca9;
}/*# sourceMappingURL=style.css.map */