@charset "UTF-8";
body {
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  color: #000000;
}

h1, h2, h3, p, a, div {
  font-weight: 500;
}

* {
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header, footer, nav, section, article, aside, figure, figcaption {
  display: block;
}

body, h1, h2, h3, h4, p, ul, ol, figure, blockquote, dl, dd {
  margin: 0;
}

body {
  line-height: 1;
  font-size: 16px;
  background: #fff;
}

ol, ul {
  list-style: none;
  list-style-type: none;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  font-family: inherit;
  display: block;
}

a, div, p, dt, dd, li {
  -webkit-tap-highlight-color: transparent;
}

body.is-fixed {
  overflow: hidden;
  padding-right: 16px;
}

body.is-fixed-sp {
  overflow: hidden;
}

.hamburger-menu.is-fixed {
  transform: translateX(-16px);
}

.header.is-fixed {
  width: calc(100vw - 16px);
}

@media screen and (min-width: 1200px) {
  .pc-none {
    display: none;
  }
  .pc-show {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .tab-none {
    display: none;
  }
  .tab-show {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .sp-none {
    display: none;
  }
  .sp-show {
    display: block;
  }
}
.all-none {
  display: none;
}

.all-show {
  display: block;
}

.large-text {
  text-transform: uppercase;
}

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

/* ------------------------------ 共通パーツ --------------------------*/
.inner {
  margin: 0 auto;
  width: 100%;
  padding: 0 40px;
  max-width: 1180px;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .inner {
    max-width: 900px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0 20px;
    max-width: 600px;
  }
}

.text {
  line-height: 2;
  font-weight: 400;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .text {
    line-height: 1.8;
  }
}

.btn {
  display: flex;
  justify-content: flex-end;
}
.btn a {
  padding: 10px 20px 10px 10px;
  color: #001E63;
  font-family: "Roboto", sans-serif;
  position: relative;
  font-weight: 500;
}
.btn a::after {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  right: 5px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  border: 2px solid #001E63;
  border-top: none;
  border-left: none;
  transition: right 0.3s ease 0s;
}
.btn a::before {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  bottom: 5px;
  background-color: #001E63;
  transition: width 0.3s ease 0s;
}
.btn a:hover::after {
  right: 0;
}
.btn a:hover::before {
  width: 95%;
}

.section__heading {
  font-size: 70px;
  font-weight: 700;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .section__heading {
    font-size: 58px;
  }
}
@media screen and (max-width: 768px) {
  .section__heading {
    font-size: 38px;
  }
}

/* ------------------------------ header --------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .header {
    background-color: #FFFFFF;
  }
}

@media screen and (max-width: 768px) {
  .header.is-header-color-change {
    background-color: #FFFFFF;
  }
}

.header,
.header__inner,
.header__nav,
.header__items {
  height: 80px;
}

.header__inner {
  padding: 0;
  max-width: 100%;
  display: flex;
}

.header__title {
  width: 258px;
  height: 180px;
  transition: opacity 0.3s ease 0s;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .header__title {
    width: 186px;
    height: 130px;
  }
}
@media screen and (max-width: 768px) {
  .header__title {
    width: 115px;
    height: 80px;
  }
}
.header__title:hover {
  opacity: 0.6;
}

.header__logo,
.header__link,
.header__link img {
  width: 100%;
  height: 100%;
}

.header__nav {
  margin-left: auto;
}

.header__items {
  display: flex;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.header__items a {
  padding: 20px 10px;
  font-family: "Roboto", sans-serif;
  position: relative;
}
.header__items a::before {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #000000;
  transition: width 0.3s ease 0s;
}
.header__items a:hover::before {
  width: 90%;
}

.header__item.header__item--contact a {
  padding: 0 41px 0 74px;
  background-color: #011950;
  color: #FFFFFF;
  height: 80px;
  display: flex;
  align-items: center;
  position: relative;
  transition: color 0.3s, background 0.3s ease 0s;
}
.header__item.header__item--contact a:hover {
  color: #011950;
  background-color: #E2E2E2;
}
.header__item.header__item--contact a:hover::after {
  color: #011950;
}
.header__item.header__item--contact a::after {
  position: absolute;
  content: "\f0e0";
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  color: #FFFFFF;
  font-size: 25px;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  transition: color 0.3s ease 0s;
}
.header__item.header__item--contact a::before {
  width: 0;
}

/* ------------------- hamburger-menu ----------------------------------------*/
@media screen and (max-width: 1200px) {
  .hamburger-menu {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 40px;
    z-index: 150;
    cursor: pointer;
  }
  .hamburger-menu span {
    position: absolute;
    width: 30px;
    height: 3px;
    left: 10px;
    background-color: black;
    border-radius: 10px;
    transition: transform 0.5s, background 0.5s ease 0s;
  }
  .hamburger-menu span:nth-child(1) {
    top: 11px;
  }
  .hamburger-menu span:nth-child(2) {
    top: 19px;
  }
  .hamburger-menu span:nth-child(3) {
    top: 27px;
  }
  .hamburger-menu.is-open {
    z-index: 200;
  }
  .hamburger-menu.is-open span {
    top: 19px;
    background-color: #fff;
  }
  .hamburger-menu.is-open span:nth-child(1) {
    transform: rotate(135deg);
  }
  .hamburger-menu.is-open span:nth-child(2) {
    display: none;
  }
  .hamburger-menu.is-open span:nth-child(3) {
    transform: rotate(-135deg);
  }
}

/* ------------------- drawer-menu ----------------------------------------*/
.drawer-menu {
  display: block;
  position: fixed;
  z-index: 100;
  width: 0;
  height: 0;
  transform: translate(50%, 50%);
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background-color: #001135;
  transition: width 0.7s, height 0.7s ease 0s;
}
.drawer-menu.is-open {
  width: 4000px;
  height: 4000px;
}
.drawer-menu::-webkit-scrollbar {
  display: none;
}

.drawer-menu-text {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120vh;
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease 0s;
  overflow: scroll;
}
.drawer-menu-text.is-open {
  opacity: 1;
  visibility: visible;
}

.drawer__logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 115px;
  height: 80px;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .drawer__logo {
    width: 186px;
    height: 130px;
  }
}

.drawer-menu__items {
  margin: 100px auto 0;
  width: 70%;
  color: #FFFFFF;
  height: 450px;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .drawer-menu__items {
    width: 30%;
    top: 20%;
  }
}

.drawer-menu__item a {
  font-size: 14px;
  padding: 12px 0;
  border-top: 2px solid #011950;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  transition: opacity 0.3s ease 0s;
}
.drawer-menu__item a:hover {
  opacity: 0.5;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .drawer-menu__item a {
    padding: 15px 0;
    font-size: 18px;
  }
}

.drawer-menu__item:nth-child(7) a {
  border-bottom: 2px solid #011950;
}

.drawer-menu__sns {
  display: flex;
  margin-top: 50px;
  -moz-column-gap: 20px;
       column-gap: 20px;
}

.drawer-menu__fb,
.drawer-menu__twitter,
.drawer-menu__instagram {
  transition: opacity 0.3s ease 0s;
}
.drawer-menu__fb i,
.drawer-menu__twitter i,
.drawer-menu__instagram i {
  font-size: 22px;
}
.drawer-menu__fb:hover,
.drawer-menu__twitter:hover,
.drawer-menu__instagram:hover {
  opacity: 0.5;
}

.bread {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 10px;
  font-size: 15px;
}

.bread span a span {
  color: #A9A9A9;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  transition: color 0.3s ease 0s;
}
@media screen and (max-width: 768px) {
  .bread span a span {
    font-size: 10px;
  }
}
.bread span a span:hover {
  color: #000000;
  text-decoration: underline;
}

.bread span span {
  color: #000000;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 768px) {
  .bread span span {
    font-size: 10px;
  }
}

.bread .bread__bar {
  width: 20px;
  height: 1px;
  background-color: #A9A9A9;
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .bread .bread__bar {
    margin-top: 10px;
    width: 15px;
  }
}

.bread.single-bread {
  margin-top: 180px;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .bread.single-bread {
    margin-top: 150px;
  }
}
@media screen and (max-width: 768px) {
  .bread.single-bread {
    margin-top: 100px;
  }
}

/* --------------------------------- section-top ---------------------------------*/
.section-top {
  margin-top: 200px;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .section-top {
    padding-left: 40px;
    margin-top: 160px;
  }
}
@media screen and (max-width: 768px) {
  .section-top {
    margin-top: 110px;
    padding-left: 20px;
  }
}

.section-top__container {
  width: calc(50vw + 550px);
  margin-left: auto;
  height: 514px;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .section-top__container {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .section-top__container {
    height: 280px;
    width: 100%;
  }
}

.section-top__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.section-top__heding {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #FFFFFF;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .section-top__heding {
    padding: 20px;
  }
}

.section__title {
  letter-spacing: 0.01em;
  font-size: 100px;
  font-weight: 700;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .section__title {
    font-size: 60px;
  }
}
@media screen and (max-width: 768px) {
  .section__title {
    font-size: 44px;
  }
}

.section__sub-title {
  margin-top: 25px;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .section__sub-title {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .section__sub-title {
    font-size: 12px;
  }
}

.section-top__bread {
  margin-top: 20px;
  padding-right: 60px;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .section-top__bread {
    padding-right: 10px;
  }
}

/* ----------------------------lead --------------------------------*/
.lead {
  padding-top: 60px;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .lead {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}

.inner.lead__inner {
  max-width: 840px;
}

.lead__nav {
  display: flex;
  justify-content: center;
  -moz-column-gap: 120px;
       column-gap: 120px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .lead__nav {
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
@media screen and (max-width: 374px) {
  .lead__nav {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}

.lead__link a {
  color: #011950;
  padding-right: 20px;
  position: relative;
}
.lead__link a::after {
  position: absolute;
  content: "";
  right: 0;
  top: 4px;
  transform: rotate(45deg);
  width: 5px;
  height: 5px;
  border: 2px solid #011950;
  border-top: none;
  border-left: none;
  transition: top 0.3s ease 0s;
}
.lead__link a::before {
  position: absolute;
  content: "";
  height: 0;
  width: 2px;
  right: 2.5px;
  top: 5px;
  background-color: #011950;
  transition: height 0.3s ease 0s;
}
.lead__link a:hover::after {
  top: 9px;
}
.lead__link a:hover::before {
  height: 10px;
}
@media screen and (max-width: 768px) {
  .lead__link a {
    font-size: 12px;
    padding-right: 15px;
  }
}

.lead__heading {
  margin-top: 100px;
  font-size: 40px;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .lead__heading {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .lead__heading {
    margin-top: 60px;
    font-size: 24px;
  }
}

.lead__text {
  margin-top: 40px;
  font-weight: 400;
  line-height: 2.375;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .lead__text {
    font-size: 14px;
    line-height: 2;
  }
}

/* --------------------------taxonomy -----------------------------------------*/
.taxonomy-heading {
  margin: 0 auto 50px;
  font-size: 20px;
  max-width: 1180px;
  width: 100%;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .taxonomy-heading {
    max-width: 600px;
  }
}

/* ------------------------------ footer --------------------------*/
.footer {
  color: #FFFFFF;
}

.footer__up {
  display: flex;
}
@media screen and (max-width: 768px) {
  .footer__up {
    flex-direction: column-reverse;
  }
}

.footer__img {
  width: 56.9444444444%;
  height: 446px;
}
.footer__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .footer__img {
    width: 100%;
    height: 240px;
  }
}

.footer__info {
  width: 43.0555555556%;
  height: 446px;
  background-color: #011950;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .footer__info {
    width: 100%;
    height: 415px;
  }
}

.footer__lead {
  font-size: 18px;
  line-height: 1.6666666667;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .footer__lead {
    font-size: 14px;
    line-height: 2;
  }
}

.footer__contact,
.footer__tel {
  width: 235px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer__contact,
.footer__tel {
    width: 227px;
  }
}
.footer__contact a,
.footer__tel a {
  width: 100%;
  font-size: 22px;
  font-weight: 400;
  padding: 18px 0;
  border: 1px solid #FFFFFF;
  border-radius: 4px;
  padding-left: 37px;
  position: relative;
  transition: color 0.3s, border 0.3s, background 0.3s ease 0s;
}
.footer__contact a:hover,
.footer__tel a:hover {
  color: #011950;
  border: 1px solid #011950;
  background-color: #FFFFFF;
}
.footer__contact a:hover::after,
.footer__tel a:hover::after {
  color: #011950;
}
@media screen and (max-width: 768px) {
  .footer__contact a,
.footer__tel a {
    font-size: 16px;
  }
}
.footer__contact a::after,
.footer__tel a::after {
  position: absolute;
  font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands";
  font-weight: 400;
  color: #FFFFFF;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  transition: color 0.3s ease 0s;
}
@media screen and (max-width: 768px) {
  .footer__contact a::after,
.footer__tel a::after {
    left: 50px;
    top: 30px;
  }
}

.footer__contact {
  margin-top: 32px;
}
.footer__contact a::after {
  content: "\f0e0";
}

.footer__tel {
  margin-top: 20px;
}
.footer__tel a::after {
  content: "\f095";
  font-weight: 900;
}

.footer__time {
  font-size: 14px;
  font-weight: 400;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .footer__time {
    font-size: 12px;
  }
}

.footer__dowm {
  background-color: #001135;
  padding: 57px 0;
}

.inner.footer__inner {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .inner.footer__inner {
    -moz-column-gap: 100px;
         column-gap: 100px;
    padding: 0 0 0 60px;
    row-gap: 50px;
    justify-content: flex-end;
  }
}

.footer__icons {
  display: flex;
  align-items: center;
  -moz-column-gap: 46px;
       column-gap: 46px;
}
@media screen and (max-width: 768px) {
  .footer__icons {
    align-items: flex-start;
    flex-direction: column;
    row-gap: 55px;
  }
}

.footer__logo {
  width: 258px;
  height: 180px;
  transition: opacity 0.3s ease 0s;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    width: 115px;
    height: 80px;
  }
}
.footer__logo:hover {
  opacity: 0.6;
}

.footer__sns {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
}

.footer__fb,
.footer__twitter,
.footer_instagram {
  transition: opacity 0.3s ease 0s;
}
.footer__fb i,
.footer__twitter i,
.footer_instagram i {
  font-size: 22px;
}
.footer__fb:hover,
.footer__twitter:hover,
.footer_instagram:hover {
  opacity: 0.5;
}

.footer__copy {
  margin-top: 20px;
  font-size: 12px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .footer__copy {
    margin-top: 50px;
  }
}

.footer__right {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .footer__right {
    margin-left: 0;
  }
}

.footer__items {
  display: flex;
  flex-direction: column;
  row-gap: 0;
}
@media screen and (max-width: 768px) {
  .footer__items {
    row-gap: 0;
  }
}

.footer__item a {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  transition: opacity 0.3s ease 0s;
  display: inline-block;
  padding: 10px 0;
  position: relative;
}
.footer__item a::after {
  position: absolute;
  content: "";
  height: 1px;
  width: 0;
  background-color: #FFFFFF;
  left: 50%;
  transform: translateX(-50%);
  bottom: 5px;
  transition: width 0.3s ease 0s;
}
.footer__item a:hover::after {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer__item a {
    padding: 12px 0;
    border-top: 2px solid #011950;
    font-size: 14px;
  }
}

/* ----------------------------about-common --------------------------------*/
.about__subtitle {
  color: #001E63;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .about__subtitle {
    font-size: 12px;
  }
}

.about__title {
  letter-spacing: -0.01em;
  font-size: 40px;
  font-weight: 700;
  padding-right: 80px;
  display: inline-block;
  position: relative;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .about__title {
    font-size: 26px;
  }
}
.about__title::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 60px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #000000;
}

/* ----------------------------about-philosophy --------------------------------*/
.inner.about-philosophy__inner {
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .inner.about-philosophy__inner {
    flex-direction: column;
    padding-top: 60px;
  }
}

.about-philosophy__bg {
  position: absolute;
  top: 0;
  right: 40px;
  height: 100%;
  width: calc(50vw + 550px);
  background-color: #F8F8F8;
  z-index: -10;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .about-philosophy__bg {
    right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .about-philosophy__bg {
    width: 100%;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

.about-philosophy__img {
  width: 32.7272727273%;
  aspect-ratio: 360/560;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .about-philosophy__img {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  .about-philosophy__img {
    width: 100%;
    aspect-ratio: 335/306;
    margin: 30px auto 0;
    max-width: 400px;
  }
}

.about-plilosophy__body {
  width: 67.2727272727%;
  padding-right: 60px;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .about-plilosophy__body {
    padding-right: 40px;
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  .about-plilosophy__body {
    width: 100%;
    padding-right: 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .about-philosophy__sub-title {
    font-size: 12px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .about-philosophy__title {
    font-size: 26px;
  }
}

.about-philosophy__text {
  margin-top: 65px;
  font-weight: 400;
  line-height: 2.375;
  text-align: justify;
}
@media screen and (max-width: 1200px) {
  .about-philosophy__text {
    font-size: 14px;
    line-height: 2;
    margin-top: 30px;
  }
}

.about-philosophy__name {
  margin-top: 40px;
  text-align: right;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .about-philosophy__name {
    margin-top: 20px;
  }
}

/* ----------------------------about-access --------------------------------*/
.about-access {
  padding-top: 100px;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .about-access {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.about-access__address {
  margin-top: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .about-access__address {
    margin-top: 20px;
  }
  .about-access__address span {
    margin-top: 5px;
    display: block;
  }
}

.about-access__map {
  margin-top: 60px;
  width: calc(50vw + 540px);
  height: 400px;
  margin-left: auto;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .about-access__map {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .about-access__map {
    margin-top: 20px;
    width: 100%;
  }
}
.about-access__map iframe {
  width: 100%;
  height: 100%;
}

/* ----------------------------about-profile --------------------------------*/
.about-profile {
  background-color: #F8F8F8;
  padding-top: 70px;
}

.about-profile__info {
  margin-top: 20px;
}

.about-profile__qa {
  border-bottom: 1px solid #E2E2E2;
  padding: 40px 0;
  display: flex;
}
@media screen and (max-width: 768px) {
  .about-profile__qa {
    flex-direction: column;
    row-gap: 16px;
    padding: 20px 0;
  }
}

.about-profile__q {
  width: 170px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

.about-profile__a {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.4285714286;
}

.about-profile__items {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

/* ----------------------------about-slide --------------------------------*/
.about-slide {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #F8F8F8;
}

.about__swiper,
.about__swiper-wrapper,
.about__swiper-slide {
  height: 400px;
}
@media screen and (max-width: 768px) {
  .about__swiper,
.about__swiper-wrapper,
.about__swiper-slide {
    height: 150px;
  }
}

.about__swiper-wrapper {
  transition-timing-function: linear;
}

.service-contents__inner {
  width: calc(50vw + 550px);
  margin-left: auto;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .service-contents__inner {
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 768px) {
  .service-contents__inner {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
  }
}

/*------------------------- service-content (support) ---------------------*/
.content__head {
  display: flex;
  align-items: flex-start;
  position: relative;
}
@media screen and (max-width: 768px) {
  .content__head {
    flex-direction: column;
  }
}

.content__bg {
  position: absolute;
  width: 100vw;
  height: 100%;
  top: 0;
  right: 0;
  background-color: #F8F8F8;
  z-index: -10;
}
@media screen and (max-width: 768px) {
  .content__bg {
    left: 50%;
    transform: translateX(-50%);
  }
}

.content__heading {
  width: 510px;
  margin-top: 70px;
  padding-right: 110px;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .content__heading {
    padding-right: 40px;
    width: 45%;
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .content__heading {
    width: 100%;
    padding-right: 0;
    margin-top: 40px;
  }
}

.content__img {
  width: calc(100% - 510px);
  height: 500px;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .content__img {
    width: 55%;
    height: 350px;
  }
}
@media screen and (max-width: 768px) {
  .content__img {
    width: 100%;
    height: auto;
    aspect-ratio: 5/4;
    max-width: 400px;
    margin: 0 auto;
    margin-top: 30px;
  }
}

.content__number {
  font-size: 40px;
  font-weight: 700;
  color: #001E63;
  padding-right: 20px;
  display: inline-block;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .content__number {
    font-size: 36px;
  }
}
@media screen and (max-width: 768px) {
  .content__number {
    font-size: 32px;
  }
}
.content__number::after {
  position: absolute;
  content: "";
  right: 0;
  top: calc(50% + 2px);
  transform: translateY(-50%);
  height: 80%;
  width: 2px;
  background-color: #001E63;
}

.content__title {
  margin-top: 20px;
  font-weight: 700;
  font-size: 28px;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .content__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .content__title {
    font-size: 20px;
  }
}

.content__text {
  margin-top: 20px;
  font-size: 22px;
  line-height: 2.0909090909;
  font-weight: 500;
  text-align: justify;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .content__text {
    line-height: 2;
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .content__text {
    font-size: 14px;
    line-height: 2;
  }
}

.content__body {
  padding: 80px 0 160px;
  max-width: 1100px;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .content__body {
    padding: 60px 0 120px;
    max-width: 900px;
  }
}
@media screen and (max-width: 768px) {
  .content__body {
    padding: 40px 0 80px;
  }
}

.content__feature-title {
  font-weight: 500;
  font-size: 28px;
  display: inline-block;
  padding-right: 35px;
  position: relative;
}
.content__feature-title::after {
  position: absolute;
  content: "特徴";
  font-size: 12px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #626262;
  font-weight: 500;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .content__feature-title {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .content__feature-title {
    font-size: 20px;
  }
}

.content__feature-text {
  margin-top: 20px;
  line-height: 2.375;
  font-size: 22px;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .content__feature-text {
    font-size: 18px;
    line-height: 2;
  }
}
@media screen and (max-width: 768px) {
  .content__feature-text {
    font-size: 14px;
    line-height: 2;
  }
}

.two-column.news-archive {
  background-color: #FFFFFF;
  padding-top: 62px;
}

.two-column__all-tax.news-archive__all-tax {
  margin-top: 0;
}

.two-column__tax-wrapper {
  position: -webkit-sticky;
  position: sticky;
  top: 220px;
}

.item__tax.item__tax-archive {
  background-color: #F8F8F8;
}

/* --------------------------- pagination --------------------*/
.pagination-archive {
  margin-top: 60px;
  display: flex;
  -moz-column-gap: 12px;
       column-gap: 12px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .pagination-archive {
    justify-content: center;
  }
}

.page-numbers {
  font-size: 14px;
  width: 40px;
  height: 40px;
  background-color: #F8F8F8;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: color 0.3s, background 0.3s ease 0s;
}
.page-numbers:hover {
  background-color: #001E63;
  color: #FFFFFF;
}

.page-numbers.prev,
.page-numbers.next {
  background-color: #FFFFFF;
  font-size: 40px;
  margin-top: -10px;
  transition: transform 0.3s ease 0s;
}

.page-numbers.prev:hover {
  transform: translateX(-5px);
  color: #000000;
}

.page-numbers.next:hover {
  transform: translateX(5px);
  color: #000000;
}

.page-numbers.current {
  background-color: #001E63;
  color: #FFFFFF;
}

.page-numbers.dots:hover {
  background-color: #F8F8F8;
  color: #000000;
}

.single-wrapper {
  max-width: 1140px;
  padding: 0 40px;
  padding-bottom: 120px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .single-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 0;
    row-gap: 80px;
    max-width: 600px;
    margin-top: 40px;
  }
}

.mainbar {
  width: 64.1509433962%;
}
@media screen and (max-width: 768px) {
  .mainbar {
    width: 100%;
    max-width: 800px;
    padding: 0 30px;
  }
}

.sidebar {
  width: 35.8490566038%;
  padding-left: 80px;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .sidebar {
    padding-left: 40px;
  }
}
@media screen and (max-width: 768px) {
  .sidebar {
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
  }
}

/* ---------------------------- single-news ----------------------------*/
.single__title {
  margin-top: 30px;
  font-size: 26px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.9230769231;
}
@media screen and (max-width: 768px) {
  .single__title {
    font-size: 18px;
    line-height: 1.6666666667;
  }
}

.single__time {
  margin-top: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: #A9A9A9;
}
@media screen and (max-width: 1200px) {
  .single__time {
    font-size: 10px;
  }
}

.single__img {
  margin-top: 40px;
  width: 100%;
  aspect-ratio: 680/380;
}
@media screen and (max-width: 768px) {
  .single__img {
    max-width: 400px;
    margin: 40px auto 0;
  }
}

.single-news__heading-second {
  margin-top: 48px;
  font-size: 22px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  padding-left: 15px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .single-news__heading-second {
    font-size: 16px;
  }
}
.single-news__heading-second::after {
  position: absolute;
  content: "";
  height: 200%;
  width: 4px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #001E63;
}

.single-news__text-second {
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 48px;
  line-height: 2;
  text-align: justify;
}
@media screen and (max-width: 1200px) {
  .single-news__text-second {
    font-size: 14px;
  }
}

.single-news__heading-third {
  margin-top: 40px;
  font-size: 18px;
  padding-bottom: 15px;
  position: relative;
  font-weight: 500;
  padding-left: 15px;
}
.single-news__heading-third::after, .single-news__heading-third::before {
  position: absolute;
  content: "";
  bottom: 0;
  height: 1px;
  width: 100%;
}
.single-news__heading-third::after {
  background-color: #001E63;
  left: 0;
}
.single-news__heading-third::before {
  background-color: #F8F8F8;
  width: 60%;
  left: 40%;
  z-index: 10;
}

.single-news__text-third {
  margin-top: 40px;
  line-height: 2;
  text-align: justify;
}
@media screen and (max-width: 1200px) {
  .single-news__text-third {
    font-size: 14px;
  }
}

.single-news__items {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  padding-bottom: 40px;
  position: relative;
}
.single-news__items::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #F8F8F8;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 1200px) {
  .single-news__items::after {
    width: 0;
  }
}
@media screen and (max-width: 1200px) {
  .single-news__items {
    padding-bottom: 0;
  }
}

.single-news__item {
  padding-left: 15px;
  position: relative;
}
.single-news__item::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #001E63;
}
@media screen and (max-width: 1200px) {
  .single-news__item {
    font-size: 14px;
  }
}

/* ----------------------pagination-single -------------------------------*/
.pagination-single {
  margin-top: 40px;
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
}

.pagination-prev a,
.pagination-next a {
  border: 1px solid #001E63;
  border-radius: 4px;
  position: relative;
  transition: color 0.3s, background 0.3s ease 0s;
}
.pagination-prev a::after,
.pagination-next a::after {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  top: calc(50% + 2px);
  border: 1px solid #001E63;
  border-top: none;
  border-left: none;
  transition: border 0.3s ease 0s;
}
.pagination-prev a:hover,
.pagination-next a:hover {
  background-color: #001E63;
  color: #FFFFFF;
}
.pagination-prev a:hover::after,
.pagination-next a:hover::after {
  border: 1px solid #FFFFFF;
  border-top: none;
  border-left: none;
}
@media screen and (max-width: 768px) {
  .pagination-prev a,
.pagination-next a {
    font-size: 14px;
  }
}

.pagination-prev a {
  padding: 12px 24px 12px 39px;
}
@media screen and (max-width: 768px) {
  .pagination-prev a {
    padding: 12px 20px 12px 39px;
  }
}
.pagination-prev a::after {
  left: 25px;
  transform: translateY(-50%) rotate(135deg);
  transition: left 0.3s ease 0s;
}
.pagination-prev a:hover::after {
  left: 20px;
}

.pagination-next a {
  padding: 12px 39px 12px 24px;
}
@media screen and (max-width: 768px) {
  .pagination-next a {
    padding: 12px 39px 12px 20px;
  }
}
.pagination-next a::after {
  right: 25px;
  transform: translateY(-50%) rotate(-45deg);
  transition: right 0.3s ease 0s;
}
.pagination-next a:hover::after {
  right: 20px;
}

/*-------------------------------------- sidebar ----------------------------------*/
.sidebar-heading {
  width: 100%;
  height: 50px;
  background-color: #001135;
  color: #FFFFFF;
  font-size: 14px;
  display: flex;
  align-items: center;
  padding-left: 15px;
}

/*-------------------------------------- recent-article ----------------------------------*/
.recent-article__item {
  padding: 18px;
  display: flex;
  flex-shrink: 0;
}
@media screen and (min-width: 1200px) {
  .recent-article__item {
    position: relative;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .recent-article__item {
    padding: 18px 0;
  }
}

.recent-article li:not(:last-child) .recent-article__item {
  border-bottom: 1px solid #F3F3F3;
}

.recent-article__img {
  width: 100px;
  height: 100px;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .recent-article__img {
    width: 80px;
    height: 80px;
  }
}

.recent-article__body {
  width: calc(100% - 100px);
  padding-left: 18px;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .recent-article__body {
    width: calc(100% - 80px);
  }
}

.recent-article__title {
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2.3333333333;
  padding-bottom: 2px;
  background: linear-gradient(#000000, #000000);
  background-position: bottom left;
  background-size: 0 1px;
  background-repeat: no-repeat;
  transition: background 0.3s ease 0s;
  text-decoration: none;
  display: inline;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .recent-article__title {
    line-height: 1.5;
  }
}
@media screen and (max-width: 768px) {
  .recent-article__title {
    line-height: 1.5;
  }
}

.recent-article__item:hover > .recent-article__body > .recent-article__title {
  background-size: 100% 1px;
}

.recent-article__time {
  font-size: 10px;
  color: #A9A9A9;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  position: absolute;
  bottom: 0;
}

/*-------------------------------------- archive ----------------------------------*/
.sidebar-archive {
  margin-top: 40px;
}

.sidebar-items {
  padding: 0 18px;
}

.sidebar-items li a {
  padding: 18px 0;
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  transition: opacity 0.3s ease 0s;
}
.sidebar-items li a:hover {
  opacity: 0.5;
}

.sidebar-items li:not(:last-child) a {
  border-bottom: 1px solid #F3F3F3;
}

.sidebar-category {
  margin-top: 40px;
  margin-bottom: 80px;
}

.two-column.works-archive {
  background-color: #FFFFFF;
  padding-top: 62px;
}

.two-column__all-tax.works-archive__all-tax {
  margin-top: 40px;
}

.item__tax.item__tax-archive {
  background-color: #F8F8F8;
}

.article.works-article {
  padding: 30px 0;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media screen and (min-width: 1200px) {
  .article.works-article {
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  .article.works-article {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}

.two-column__items li:first-child .works-article {
  padding-top: 0;
}

.article__title.works-article__title {
  font-size: 18px;
  line-height: 1.7777777778;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .article__title.works-article__title {
    font-size: 14px;
  }
}

@media screen and (min-width: 1200px) {
  .article__date.works-article__date {
    position: absolute;
    bottom: 30px;
  }
}

.single-works.single {
  padding-top: 60px;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .single-works.single {
    padding-top: 40px;
  }
}

.inner.single-works__inner {
  max-width: 920px;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .inner.single-works__inner {
    max-width: 800px;
    padding: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .inner.single-works__inner {
    max-width: 500px;
  }
}

.single__img.single-works__img {
  aspect-ratio: 840/470;
  max-width: 700px;
  margin: 40px auto 0;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .single__img.single-works__img {
    max-width: 600px;
  }
}

.single-works__inner p {
  margin-top: 40px;
  line-height: 2;
  text-align: justify;
}

.single-works__btn {
  margin: 60px auto 0;
  width: 280px;
  text-align: center;
}
.single-works__btn a {
  display: inline-block;
  width: 100%;
  padding: 12px 0;
  border: 1px solid #001E63;
  border-radius: 4px;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  position: relative;
  padding-left: 15px;
  transition: border 0.3s, color 0.3s, background 0.3s ease 0s;
}
.single-works__btn a:hover {
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  background-color: #001E63;
}
.single-works__btn a:hover::after {
  border: 2px solid #FFFFFF;
  border-top: none;
  border-left: none;
  left: 80px;
}
.single-works__btn a::after {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  left: 85px;
  top: 50%;
  transform: translateY(-50%) rotate(135deg);
  border: 2px solid #001E63;
  border-top: none;
  border-left: none;
  transition: left 0.3s, border 0.3s ease 0s;
}

/* ------------------------共通パーツ (contact-btn) -------------------------------*/
.contact__btn {
  margin: 40px auto 0;
  position: relative;
}
.contact__btn::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border: 2px solid #FFFFFF;
  border-top: none;
  border-left: none;
  transform: rotate(-45deg);
  transition: left 0.3s, right 0.3s, border 0.3s ease 0s;
}
.contact__btn:hover::after {
  right: 160px;
  border: 2px solid #011950;
  border-top: none;
  border-left: none;
}
@media screen and (max-width: 768px) {
  .contact__btn {
    width: 275px;
  }
  .contact__btn::after {
    right: 70px;
  }
  .contact__btn:hover::after {
    right: 65px;
    border: 2px solid #011950;
    border-top: none;
    border-left: none;
  }
}

.contact__btn .btn-contact {
  padding: 20px 16px 20px 0;
  height: 100%;
  width: 100%;
  font-size: 18px;
  color: #FFFFFF;
  background-color: #011950;
  font-weight: 500;
  border: 2px solid transparent;
  border-radius: 4px;
  transition: color 0.3s, background 0.3s, border 0.3s ease 0s;
}
.contact__btn .btn-contact:hover {
  background-color: #FFFFFF;
  color: #011950;
  border: 2px solid #011950;
}
@media screen and (max-width: 768px) {
  .contact__btn .btn-contact {
    padding: 12px 16px 12px 0;
    font-size: 14px;
  }
}

/* -------------------------------------------------------*/
.contact {
  padding-top: 60px;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .contact {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}

.inner.contact__inner {
  max-width: 720px;
}
@media screen and (max-width: 768px) {
  .inner.contact__inner {
    max-width: 600px;
  }
}

.contact__lead {
  line-height: 2.375;
}
@media screen and (max-width: 768px) {
  .contact__lead {
    font-size: 14px;
  }
}

.contact__form {
  margin-top: 100px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .contact__form {
    margin-top: 40px;
  }
}

[type=text],
[type=email],
[type=tel],
[type=submit],
[type=button],
select,
textarea {
  box-shadow: none;
  border: 1px solid #E2E2E2;
  background-color: #FFFFFF;
  border-radius: 4px;
  padding: 15px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: inherit;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  width: 100%;
  height: 50px;
}

.wpcf7-not-valid-tip {
  margin-top: 10px;
}

.form__items {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}

.form__item {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.form__item dt {
  font-size: 15px;
}
.form__item dt p {
  font-size: 14px;
}
.form__item dt span {
  color: #E20000;
}

.company__heading,
.name__heading {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media screen and (max-width: 768px) {
  .company__heading,
.name__heading {
    flex-direction: column;
    row-gap: 10px;
  }
}

.select__body {
  position: relative;
}
.select__body::after {
  position: absolute;
  content: "";
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: #000000 transparent transparent transparent;
  top: 22px;
  right: 15px;
}

.textarea__body textarea {
  height: 160px;
  resize: none;
}

/* -------------------- checkbox -----------------------------------*/
.form__checkbox {
  margin-top: 40px;
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7-form-control.wpcf7-acceptance {
  position: relative;
}
.wpcf7-form-control.wpcf7-acceptance::after {
  position: absolute;
  content: "*";
  color: #E20000;
  top: 0;
  left: 0;
}

[type=checkbox] {
  position: absolute;
  left: 0;
  opacity: 0;
  visibility: hidden;
}

[type=checkbox]:checked + .wpcf7-list-item-label {
  position: relative;
}
[type=checkbox]:checked + .wpcf7-list-item-label::after {
  position: absolute;
  content: "";
  width: 14px;
  height: 7px;
  left: 13px;
  top: 3px;
  border: 3px solid #000000;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
}

.wpcf7-list-item-label {
  padding-left: 37px;
  font-size: 14px;
  position: relative;
}
.wpcf7-list-item-label::before {
  position: absolute;
  content: "";
  width: 17px;
  height: 17px;
  border: 1px solid #E2E2E2;
  left: 12px;
}
@media screen and (max-width: 374px) {
  .wpcf7-list-item-label {
    font-size: 12px;
  }
}

/* -------------------- btn -----------------------------------*/
.contact__btn.form__btn {
  width: 460px;
}
.contact__btn.form__btn::after {
  right: 165px;
  top: 32px;
}
.contact__btn.form__btn:hover::after {
  right: 160px;
}
@media screen and (max-width: 768px) {
  .contact__btn.form__btn {
    width: 275px;
  }
  .contact__btn.form__btn::after {
    right: 90px;
    top: 20px;
  }
  .contact__btn.form__btn:hover::after {
    right: 85px;
  }
}

.wpcf7-spinner {
  display: none;
}

/* ------------------ contact confirm ---------------*/
.form__items .form__item.confirm {
  flex-direction: row;
}
@media screen and (max-width: 768px) {
  .form__items .form__item.confirm {
    flex-direction: column;
    row-gap: 10px;
  }
}
.form__items .form__item.confirm dt {
  width: 192px;
}
@media screen and (max-width: 768px) {
  .form__items .form__item.confirm dt {
    width: 100%;
  }
}
.form__items .form__item.confirm dd {
  width: calc(100% - 192px);
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .form__items .form__item.confirm dd {
    width: 100%;
  }
}

.company__heading.heading-confirm,
.name__heading.heading-confirm {
  -moz-column-gap: 0;
       column-gap: 0;
}
@media screen and (max-width: 768px) {
  .company__heading.heading-confirm,
.name__heading.heading-confirm {
    flex-direction: row;
  }
}

.select__body.body-confirm::after {
  display: none;
}

.confirm-btns {
  margin-top: 40px;
  display: flex;
  -moz-column-gap: 80px;
       column-gap: 80px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .confirm-btns {
    -moz-column-gap: 23px;
         column-gap: 23px;
  }
}

.contact__btn.confirm-prev {
  width: 280px;
}
.contact__btn.confirm-prev::after {
  border: 2px solid #011950;
  border-top: none;
  border-left: none;
  left: 110px;
  top: 31px;
  transform: rotate(135deg);
}
@media screen and (max-width: 768px) {
  .contact__btn.confirm-prev::after {
    left: 50px;
    top: 19px;
  }
}
@media screen and (max-width: 374px) {
  .contact__btn.confirm-prev::after {
    left: 40px;
  }
}
.contact__btn.confirm-prev:hover::after {
  left: 105px;
  border: 2px solid #FFFFFF;
  border-top: none;
  border-left: none;
}
@media screen and (max-width: 768px) {
  .contact__btn.confirm-prev:hover::after {
    left: 45px;
  }
}
@media screen and (max-width: 374px) {
  .contact__btn.confirm-prev:hover::after {
    left: 35px;
  }
}
@media screen and (max-width: 768px) {
  .contact__btn.confirm-prev {
    width: 151px;
  }
}
@media screen and (max-width: 374px) {
  .contact__btn.confirm-prev {
    width: 120px;
  }
}

.contact__btn.confirm-prev [type=button] {
  padding: 20px 0 20px 16px;
  color: #011950;
  font-weight: 500;
  border: 2px solid #011950;
  background-color: #FFFFFF;
}
.contact__btn.confirm-prev [type=button]:hover {
  background-color: #011950;
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .contact__btn.confirm-prev [type=button] {
    padding: 12px 0 12px 15px;
    font-size: 14px;
  }
}

.contact__btn.confirm-submit {
  width: 280px;
}
.contact__btn.confirm-submit::after {
  right: 90px;
  top: 31px;
}
@media screen and (max-width: 768px) {
  .contact__btn.confirm-submit::after {
    right: 38px;
    top: 19px;
  }
}
@media screen and (max-width: 374px) {
  .contact__btn.confirm-submit::after {
    right: 25px;
  }
}
.contact__btn.confirm-submit:hover::after {
  right: 85px;
}
@media screen and (max-width: 768px) {
  .contact__btn.confirm-submit:hover::after {
    right: 33px;
  }
}
@media screen and (max-width: 374px) {
  .contact__btn.confirm-submit:hover::after {
    right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .contact__btn.confirm-submit {
    width: 151px;
  }
}
@media screen and (max-width: 374px) {
  .contact__btn.confirm-submit {
    width: 120px;
  }
}

.contact__btn.confirm-submit [type=submit] {
  padding: 20px 16px 20px 0;
}
@media screen and (max-width: 768px) {
  .contact__btn.confirm-submit [type=submit] {
    padding: 12px 15px 12px 0;
    font-size: 14px;
  }
}

/* ------------------ contact complete ---------------*/
.complete__lead {
  font-size: 40px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .complete__lead {
    font-size: 24px;
  }
}

.complete__lead-ja {
  margin-top: 25px;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .complete__lead-ja {
    margin-top: 15px;
    font-size: 14px;
  }
}

.complete__text {
  margin-top: 40px;
  line-height: 2.375;
}
@media screen and (max-width: 768px) {
  .complete__text {
    margin-top: 30px;
    font-size: 14px;
    line-height: 2.2857142857;
  }
}

.contact__btn.complete__btn {
  width: 460px;
  text-align: center;
}
.contact__btn.complete__btn::after {
  left: 180px;
  top: 26px;
  transform: rotate(135deg);
}
@media screen and (max-width: 768px) {
  .contact__btn.complete__btn::after {
    left: 90px;
  }
}
.contact__btn.complete__btn:hover::after {
  left: 175px;
}
@media screen and (max-width: 768px) {
  .contact__btn.complete__btn:hover::after {
    left: 85px;
  }
}
@media screen and (max-width: 768px) {
  .contact__btn.complete__btn {
    width: 275px;
  }
}

.contact__btn.complete__btn .btn-contact {
  padding: 20px 0 20px 16px;
  display: inline-block;
}

.not-found {
  margin-top: 250px;
  margin-bottom: 120px;
  height: 600px;
  background-image: url(../img/404-top.jpg);
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  .not-found {
    align-items: center;
    height: 243px;
    margin-bottom: 0;
    margin-top: 100px;
  }
}

@media screen and (min-width: 1200px) {
  .not-found__container {
    transform: translateX(45%);
  }
}

.not-found__heading {
  font-size: 70px;
  font-weight: 700;
  color: #FFFFFF;
}
@media screen and (max-width: 1200px) {
  .not-found__heading {
    font-size: 35px;
  }
}

.not-found__text {
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 40px;
  line-height: 2.375;
  color: #FFFFFF;
}
@media screen and (max-width: 1200px) {
  .not-found__text {
    color: #000000;
    font-size: 14px;
    font-weight: 400;
  }
}

.not-found__btn {
  width: 140px;
  margin-top: 20px;
  text-align: center;
  border: 1px solid #FFFFFF;
  border-radius: 4px;
}
@media screen and (max-width: 1200px) {
  .not-found__btn {
    color: #000000;
    border: 1px solid #011950;
    margin: 40px auto 80px;
  }
}

.not-found__btn a {
  display: inline-block;
  color: #FFFFFF;
  padding: 12px 0 12px 14px;
  font-size: 14px;
  position: relative;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}
.not-found__btn a::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border: 2px solid #FFFFFF;
  border-top: none;
  border-left: none;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(135deg);
  transition: left 0.3s ease 0s;
}
@media screen and (max-width: 1200px) {
  .not-found__btn a::after {
    border: 2px solid #011950;
    border-top: none;
    border-left: none;
  }
}
@media screen and (max-width: 1200px) {
  .not-found__btn a {
    color: #011950;
  }
}

.not-found__btn:hover > a::after {
  left: -5px;
}

/* ------------------------------ top --------------------------*/
.top {
  margin-top: 80px;
}

.top__swiper,
.top__swiper-wrapper,
.top__swiper-slide,
.top__swiper-slide img {
  aspect-ratio: 4/3;
}

.inner.top__inner {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .inner.top__inner {
    flex-direction: column;
  }
}

.top__swiper {
  width: 80%;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .top__swiper {
    width: 75%;
  }
}
@media screen and (max-width: 768px) {
  .top__swiper {
    width: 100%;
  }
}

.top__heading {
  width: 20%;
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.5;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .top__heading {
    font-size: 48px;
    width: 25%;
  }
}
@media screen and (max-width: 768px) {
  .top__heading {
    -ms-writing-mode: lr-tb;
        writing-mode: horizontal-tb;
    font-size: 30px;
    width: 100%;
    align-items: flex-start;
    margin-top: 10px;
  }
}
@media screen and (max-width: 374px) {
  .top__heading br {
    display: block;
  }
}

/* ------------------------------ main-lead --------------------------*/
.main-lead-container {
  width: 100%;
  overflow: hidden;
}

.main-lead {
  width: 100%;
  font-size: 150px;
  padding-top: 80px;
  color: #011950;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  -webkit-animation: flowing 10s linear infinite;
          animation: flowing 10s linear infinite;
  transform: translateX(100%);
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .main-lead {
    font-size: 120px;
  }
}
@media screen and (max-width: 768px) {
  .main-lead {
    font-size: 84px;
    padding-top: 60px;
  }
}

@-webkit-keyframes flowing {
  100% {
    transform: translateX(-100%); /*終了の位置*/
  }
}

@keyframes flowing {
  100% {
    transform: translateX(-100%); /*終了の位置*/
  }
}
/* ------------------------------ about --------------------------*/
.about {
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .about {
    padding-top: 60px;
  }
}

.inner.about__inner {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .inner.about__inner {
    flex-direction: column;
    row-gap: 30px;
  }
}

.about__img {
  width: 50%;
  aspect-ratio: 5/4;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .about__img {
    width: 45%;
    aspect-ratio: 1/1;
  }
}
@media screen and (max-width: 768px) {
  .about__img {
    width: 100%;
    max-width: 400px;
  }
}

.about__body {
  width: 50%;
  padding-left: 60px;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .about__body {
    padding-left: 40px;
    width: 55%;
  }
}
@media screen and (max-width: 768px) {
  .about__body {
    width: 100%;
    padding: 0;
  }
}

.about__text {
  margin-top: 30px;
  text-align: justify;
}

.about__btn {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .about__btn {
    margin-top: 20px;
  }
}

/* ------------------------------ service --------------------------*/
.service {
  padding-top: 140px;
  padding-bottom: 84px;
}
@media screen and (max-width: 768px) {
  .service {
    padding-top: 80px;
  }
}

.service__heading {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .service__heading {
    text-align: left;
  }
}

.service__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(334px, 1fr));
  -moz-column-gap: 48px;
       column-gap: 48px;
  row-gap: 60px;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .service__items {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-top: 40px;
  }
}

.card__head {
  position: relative;
}

.card__heading {
  position: absolute;
  top: 30%;
  left: 10%;
}

.card__section {
  color: #FFFFFF;
  font-weight: 700;
}

.card__title {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 26px;
  margin-top: 20px;
}

.card__body {
  margin-top: 30px;
}

.card__btn {
  margin-top: 20px;
  margin-left: auto;
  width: 140px;
  text-align: center;
}
.card__btn a {
  display: inline-block;
  width: 100%;
  padding: 12px 0;
  border: 1px solid #001E63;
  border-radius: 4px;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  padding-right: 15px;
  position: relative;
  transition: border 0.3s, color 0.3s, background 0.3s ease 0s;
}
.card__btn a:hover {
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  background-color: #001E63;
}
.card__btn a:hover::after {
  border: 2px solid #FFFFFF;
  border-top: none;
  border-left: none;
  right: 15px;
}
.card__btn a::after {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  border: 2px solid #001E63;
  border-top: none;
  border-left: none;
  transition: right 0.3s, border 0.3s ease 0s;
}

/* ------------------------------ works --------------------------*/
.works {
  padding-top: 140px;
  background-color: #F8F8F8;
}
@media screen and (max-width: 768px) {
  .works {
    padding-top: 60px;
  }
}

@media screen and (max-width: 768px) {
  .works__inner {
    padding: 0;
  }
}

.works__heading {
  padding-left: 20px;
}

.works__container {
  margin-top: 50px;
  padding: 0 40px 60px 40px;
  background-color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .works__container {
    margin-top: 20px;
    padding: 0 20px 60px 20px;
  }
}

.article {
  padding: 50px 0;
  border-bottom: 1px solid #E2E2E2;
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 50px;
       column-gap: 50px;
}
@media screen and (max-width: 768px) {
  .article {
    -moz-column-gap: 18px;
         column-gap: 18px;
    padding: 30px 0;
    align-items: stretch;
  }
}

@media screen and (min-width: 1200px) {
  .article__body:hover > .article__title {
    background-size: 100% 1px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .article__body:hover > .article__title {
    background-size: 100% 1px;
  }
}

.article__img {
  width: 28.431372549%;
  aspect-ratio: 5/4;
}
@media screen and (max-width: 768px) {
  .article__img {
    width: 40.6779661017%;
  }
}

.article__body {
  width: 66.6666666667%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .article__body {
    width: 53.2203389831%;
    display: flex;
    flex-direction: column;
    height: auto;
  }
}

.article__tax-container {
  margin-bottom: 20px;
  transition: opacity 0.3s ease 0s;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .article__tax-container {
    margin-bottom: 12px;
  }
}
.article__tax-container:hover {
  opacity: 0.5;
}

.article__tax {
  padding: 5px 18px;
  display: inline-block;
  background-color: #F3F3F3;
  color: #626262;
  font-size: 11px;
}
@media screen and (max-width: 768px) {
  .article__tax {
    font-size: 10px;
  }
}

.article__title {
  font-size: 24px;
  font-family: "Noto Sans JP", sans-serif;
  padding-bottom: 2px;
  background: linear-gradient(#000000, #000000);
  background-position: bottom left;
  background-size: 0 1px;
  background-repeat: no-repeat;
  text-decoration: none;
  display: inline;
  transition: background 0.3s ease 0s;
  line-height: 2;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .article__title {
    line-height: 1.5;
  }
}
@media screen and (max-width: 768px) {
  .article__title {
    font-size: 14px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
}

.article__text {
  margin-top: 30px;
  line-height: 2;
  color: #626262;
  font-weight: 400;
}

.article__date {
  margin-top: 30px;
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #A9A9A9;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .article__date {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .article__date {
    margin-top: auto;
  }
}

.works__btn {
  margin-top: 20px;
}

/* ------------------------------ news --------------------------*/
.two-column {
  padding-top: 150px;
  padding-bottom: 171px;
  background-color: #F8F8F8;
}
@media screen and (max-width: 768px) {
  .two-column {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}

.two-column__inner {
  display: flex;
}
@media screen and (max-width: 768px) {
  .two-column__inner {
    flex-direction: column;
    max-width: 600px;
    padding: 0 20px;
  }
}

.two-column__sidebar {
  width: 20%;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .two-column__sidebar {
    width: 27%;
  }
}
@media screen and (max-width: 768px) {
  .two-column__sidebar {
    width: 100%;
  }
}

.two-column__main {
  width: 80%;
  padding-left: 60px;
  border-left: 1px solid #E2E2E2;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .two-column__main {
    width: 73%;
    padding-left: 40px;
  }
}
@media screen and (max-width: 768px) {
  .two-column__main {
    border-left: none;
    padding-left: 0;
    width: 100%;
    margin-top: 30px;
  }
}

.two-column__all-tax {
  margin-top: 55px;
  padding-left: 15px;
  position: relative;
  font-size: 14px;
}
.two-column__all-tax::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #001E63;
}

.two-column__taxs {
  margin-top: 20px;
  padding-left: 5px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .two-column__taxs {
    flex-direction: row;
    flex-wrap: wrap;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}

.two-column__tax {
  color: #A9A9A9;
}
.two-column__tax a {
  transition: color 0.3s ease 0s;
  font-size: 14px;
  padding: 10px;
  display: inline-block;
}
.two-column__tax a:hover {
  color: #000000;
}
@media screen and (max-width: 768px) {
  .two-column__tax a {
    font-size: 12px;
  }
}

.item {
  padding: 30px 0;
  border-bottom: 1px solid #E2E2E2;
}
@media screen and (max-width: 768px) {
  .item {
    padding: 30px 0;
    border-top: 1px solid #E2E2E2;
  }
}

.item:hover > .item__title {
  background-size: 100% 1px;
}

.item__info {
  display: flex;
  -moz-column-gap: 30px;
       column-gap: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .item__info {
    -moz-column-gap: 12px;
         column-gap: 12px;
  }
}

.item__date {
  font-size: 12px;
  color: #A9A9A9;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  margin-top: 5px;
}

.item__taxs {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media screen and (max-width: 768px) {
  .item__taxs {
    -moz-column-gap: 6px;
         column-gap: 6px;
    row-gap: 12px;
    flex-wrap: wrap;
  }
}

.item__tax {
  font-size: 11px;
  background-color: #FFFFFF;
  padding: 5px 18px;
  transition: opacity 0.3s ease 0s;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .item__tax {
    font-size: 10px;
  }
}
.item__tax:hover {
  opacity: 0.5;
}

.item__title {
  padding-bottom: 5px;
  background: linear-gradient(#000000, #000000);
  background-position: bottom left;
  background-size: 0 1px;
  background-repeat: no-repeat;
  transition: background 0.3s ease 0s;
  text-decoration: none;
  line-height: 2;
  display: inline;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .item__title {
    font-size: 14px;
    line-height: 2;
  }
}

.news__btn {
  margin-top: 30px;
}/*# sourceMappingURL=style.css.map */