/* stylesheet */
/*------------------------------------------------------

    BASE

------------------------------------------------------*/
body {
  color: #333;
  width: 100%;
  font-size: 16px;
  line-height: 1.6;
  word-wrap: break-word;
  font-family: "Noto Sans JP", sans-serif;
}

.en {
  font-family: "Cinzel", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 2px;
}

.jp {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.5em;
}

h3 {
  font-size: 1.17em;
}

h4 {
  font-size: 1.12em;
}

h5 {
  font-size: 0.83em;
}

h6 {
  font-size: 0.75em;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  line-height: 1.4;
}

a {
  display: block;
  text-decoration: none;
  color: #141e60;
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}

img {
  vertical-align: bottom;
}

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

.arrow-link,
.arrow-link2 {
  position: relative;
  display: block;
}

.arrow-link::after {
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  content: "";
  width: 4px;
  height: 4px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg) translateY(-50%);
}

.arrow-link2::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: -4%;
  width: 120%;
  height: 50%;
  border-bottom: 1px solid #141e60;
  border-right: 1px solid #141e60;
  transform: skew(45deg);
}

.back-link {
  position: relative;
  display: block;
}

.back-link:after {
  position: absolute;
  top: 50%;
  left: 2rem;
  display: block;
  content: "";
  width: 6px;
  height: 6px;
  margin-top: -4px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(223deg);
}

.container {
  width: 1160px;
  margin: 0 auto;
  padding: 20px;
}

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

.d-sp {
  display: none;
}

/*------------------------------------------------------

    HEADER

------------------------------------------------------*/
header {
  position: relative;
  padding: 15px;
}
header .logo {
  display: flex;
  gap: 0 10px;
}
header .logo .company-img {
  width: 40px;
  height: auto;
}
header .logo .company-name {
  line-height: 1;
}
header .logo .company-name p.en {
  font-size: 28px;
  font-weight: 500;
}
header .logo .company-name h1 {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 5px;
  color: #141e60;
}

/*------------------------------------------------------

    NAV

------------------------------------------------------*/
.menu {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
  width: 40px;
  height: 20px;
  z-index: 99;
  cursor: pointer;
}

.menu__line {
  background: #333;
  display: block;
  height: 1px;
  position: absolute;
  transition: transform 0.3s;
  width: 100%;
}

.menu__line--center {
  top: 9px;
}

.menu__line--bottom {
  bottom: 0;
}

.menu__line--top.active {
  top: 8px;
  transform: rotate(45deg);
  background: #fff;
}

.menu__line--center.active {
  transform: scaleX(0);
  opacity: 0;
}

.menu__line--bottom.active {
  bottom: 10px;
  transform: rotate(135deg);
  background: #fff;
}

/*gnav*/
.gnav {
  background: rgba(5, 10, 43, 0.9);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 98;
}

.gnav__wrap {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  position: absolute;
  width: 100%;
}

.gnav__menu__item {
  margin: 40px 0;
  text-align: center;
}

.gnav__menu__item a {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 0 40px;
  text-decoration: none;
  transition: 0.5s;
}

.gnav__menu__item a:hover {
  color: #666;
}

/*------------------------------------------------------

    HERO

------------------------------------------------------*/
.hero {
  background-image: url("images/hero.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
}
.hero .hero__txt {
  padding: 200px 0;
  letter-spacing: 2px;
}
.hero .hero__txt h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  padding: 10px 0;
}
.hero .hero__txt h2 span {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.8;
  position: sticky;
  z-index: 1;
}
.hero .hero__txt h2::after {
  content: "";
  position: absolute;
  top: 0;
  left: -15%;
  width: 120%;
  height: 100%;
  background-color: #fff;
  transform: skewX(28deg);
}
.hero .hero__txt p {
  color: #141e60;
  font-size: 20px;
  font-weight: 900;
  margin: 12px 0 20px;
  text-shadow: 5px 5px 5px #fff, -5px -5px 5px #fff, -5px 5px 5px #fff, 5px -5px 5px #fff, 5px 0 5px #fff, -5px 0 5px #fff, 0 5px 5px #fff, 0 -5px 5px #fff;
}
.hero .hero__txt a {
  background-color: #141e60;
  color: #fff;
  padding: 8px 36px 8px 20px;
  border-radius: 2px;
  display: inline-block;
  font-size: 13px;
  font-weight: 200;
}

#service-header {
  background-image: url("images/service-header.png");
}
#service-header .hero__txt {
  padding: 100px 0;
}
#service-header .hero__txt h2 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
#service-header .hero__txt h2::after {
  content: none;
}
#service-header .hero__txt p {
  font-size: 56px;
  font-weight: 100;
  color: #141e60;
  line-height: 1;
  margin: 0;
  padding: 0;
}

/*------------------------------------------------------

    MAIN
    SECTION

------------------------------------------------------*/
main {
  margin: 0px 0;
  position: relative;
}
main::before {
  content: "";
  background-image: url(images/bg.svg);
  background-repeat: no-repeat;
  position: absolute;
  display: block;
  z-index: 0;
  top: 0;
  right: 0;
  background-size: cover;
  height: 100%;
  width: 1000px;
  z-index: 1;
}
main::after {
  content: "";
  background-image: url(images/bg.svg);
  background-repeat: no-repeat;
  position: absolute;
  display: block;
  z-index: 0;
  top: 0;
  left: 0;
  background-size: cover;
  height: 100%;
  width: 1000px;
  transform: rotate(180deg);
  z-index: 0;
}

main#page::before {
  width: 824px;
}
main#page::after {
  width: 500px;
}

section {
  position: relative;
  background-color: #eef4f7;
  padding: 100px 0;
  border-bottom: 40px solid #fff;
}
section .section__title {
  position: sticky;
  z-index: 1;
  margin: 0 0 80px;
}
section .section__title h3 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 2px;
}
section .section__title p {
  line-height: 1.8;
}
section .section__title span {
  font-size: 56px;
  font-weight: 100;
  color: #141e60;
  line-height: 1.2;
}
section .section__title a {
  position: absolute;
  top: 40px;
  right: 36px;
}
section .section__contents {
  position: sticky;
  z-index: 1;
}
section .section__contents--item {
  position: relative;
  margin: 40px 0 0;
}
section .section__contents--item .item-img {
  width: 70%;
  margin-left: 30%;
}
section .section__contents--item .item-txt {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
section .section__contents--item .item-txt h4 {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 20px;
}
section .section__contents--item .item-txt p {
  line-height: 1.8;
}
section .section__contents--item .item-txt span {
  font-size: 16px;
  font-weight: 500;
  color: #141e60;
}
section .section__contents--item .item-txt a {
  color: #141e60;
  margin: 20px 0 0;
  display: inline-block;
  font-size: 14px;
}

/*------------------------------------------------------

    ABOUT

------------------------------------------------------*/
#about::after {
  content: "";
  position: absolute;
  bottom: -86px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 1px;
  height: 140px;
  background-color: #141e60;
  z-index: 1;
}
#about .section__contents h3 {
  font-size: 40px;
  font-weight: 100;
  text-align: center;
  margin: 0px 0 40px;
}
#about .section__contents p.catch {
  position: absolute;
  top: 2%;
  right: -16%;
  writing-mode: vertical-rl;
  font-size: 60px;
  font-weight: 100;
  color: #e9e9e9;
  white-space: nowrap;
}
#about .section__contents .about-img {
  position: relative;
  margin: 40px 0 0;
}
#about .section__contents .about-img p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.65);
  font-size: 28px;
  white-space: nowrap;
}

/*------------------------------------------------------

    SERVICE

------------------------------------------------------*/
#service {
  background-color: #f7f7f7;
}
#service::after {
  content: "";
  position: absolute;
  bottom: -86px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 1px;
  height: 140px;
  background-color: #141e60;
  z-index: 1;
}
#service .section__title {
  position: relative;
}
#service .section__title p.catch {
  position: absolute;
  top: 2%;
  left: -16%;
  writing-mode: vertical-rl;
  font-size: 60px;
  font-weight: 100;
  color: #e9e9e9;
  white-space: nowrap;
}

#page #service::after {
  content: none;
}
#page #service .section__title {
  margin: 0 0 100px;
}
#page #service .section__contents--item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 80px 0 0;
}
#page #service .section__contents--item .item-img {
  margin-left: 0;
  width: 40%;
}
#page #service .section__contents--item .item-txt {
  position: inherit;
  top: auto;
  transform: none;
  width: 55%;
}

/*------------------------------------------------------

    COMPANY

------------------------------------------------------*/
#company {
  background-color: #f5f6fb;
}
#company .section__title {
  text-align: center;
}
#company .section__title h5 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 2px;
  margin: 0;
}
#company .section__title p {
  font-size: 56px;
  font-weight: 100;
  color: #141e60;
  line-height: 1.2;
}
#company .section__contents {
  display: flex;
  justify-content: space-between;
}
#company .section__contents--item {
  width: 48%;
}
#company .section__contents table {
  border-collapse: collapse;
  border-top: 1px solid #ccc;
  width: 100%;
}
#company .section__contents table th, #company .section__contents table td {
  text-align: left;
  font-weight: 400;
  padding: 20px 40px;
  border-bottom: 1px solid #ccc;
}
#company .section__contents table th {
  border-right: 1px dotted #ccc;
}
#company .section__contents .gmap {
  position: relative;
}
#company .section__contents .gmap::before {
  content: "";
  display: block;
  padding-top: 100%;
}
#company .section__contents .gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/*------------------------------------------------------

    PRIVACY

------------------------------------------------------*/
#privacy .section__contents {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 80px;
  border: 1px solid #fff;
}
#privacy h3 {
  margin: 80px 0 10px;
  font-size: 20px;
}
#privacy p {
  margin-bottom: 20px;
}
#privacy p.text-right {
  text-align: right;
}
#privacy ul {
  margin-left: 20px;
}
#privacy ul li {
  list-style: decimal;
  margin-bottom: 20px;
}
#privacy ul li ul {
  margin: 20px 0 0 20px;
}

/*------------------------------------------------------

    CONTACT

------------------------------------------------------*/
#contact .section__contents {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 80px;
  border: 1px solid #fff;
}
#contact form table {
  width: 100%;
}
#contact form table th, #contact form table td {
  display: block;
  text-align: left;
  padding: 5px 0;
}
#contact form table th {
  color: #141e60;
}
#contact form table th span {
  background-color: #141e60;
  color: #fff;
  font-size: 11px;
  padding: 2px 14px 4px;
  margin-right: 10px;
  font-weight: 300;
  border-radius: 3px;
  vertical-align: 2px;
}
#contact form table td {
  padding-bottom: 40px;
}
#contact form input,
#contact form textarea {
  width: 100%;
  padding: 10px 20px;
}
#contact form .btn {
  display: flex;
  gap: 15px;
}
#contact form .btn input.confirmation-btn {
  background-color: #141e60;
  border-color: #141e60;
  color: #fff;
  padding: 15px 0;
  border-radius: 4px;
  width: 65%;
  margin: 0 auto;
}

/*------------------------------------------------------

    FOOTER

------------------------------------------------------*/
footer {
  border-top: 1px solid rgba(238, 238, 238, 0.9333333333);
  background-color: #fafafa;
}
footer .footer__contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
}
footer .footer__contents .logo {
  display: flex;
  gap: 0 10px;
}
footer .footer__contents .logo .company-img {
  width: 40px;
  height: auto;
}
footer .footer__contents .logo .company-name {
  line-height: 1;
}
footer .footer__contents .logo .company-name p.en {
  font-size: 28px;
  font-weight: 500;
}
footer .footer__contents .logo .company-name h6 {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 5px;
  color: #141e60;
  margin: 0 0 2px;
}
footer .footer__contents nav ul {
  display: flex;
  gap: 15px;
}
footer .footer__contents nav ul li {
  font-size: 13px;
  font-weight: 400;
}
footer p#copyright {
  background-color: #fff;
  text-align: center;
  padding: 20px 0;
  font-size: 12px;
  font-weight: 200;
}

/****************************************

    RESPO

*****************************************/
@media (max-width: 599px) {
  body .container {
    width: 94%;
    padding: 0;
  }
  .d-pc {
    display: none;
  }
  .d-sp {
    display: inline-block;
  }
  p {
    font-size: 15px;
    font-weight: 300;
  }
  /* HERO */
  .hero {
    background-image: url("images/hero-sp.png");
  }
  .hero .hero__txt {
    padding: 100px 0;
  }
  .hero .hero__txt h2 span {
    font-size: 5vw;
  }
  .hero .hero__txt p {
    font-size: 3vw;
  }
  #service-header {
    max-height: 418px;
  }
  #service-header .hero__txt {
    padding: 50px 0;
	padding-bottom: 20px;
  }
  #service-header .hero__txt h2 {
    font-size: 16px;
  }
  #service-header .hero__txt p {
    font-size: 12vw;
  }
  /* SECTION */
  main {
    margin: 0px 0;
    overflow-x: hidden;
  }
  main::before {
    width: 24%;
  }
  main::after {
    width: 500px;
  }
  main#page::before {
    width: 84px;
  }
  main#page::after {
    width: 500px;
  }
  section {
    padding: 50px 0;
    border-bottom: 20px solid #fff;
  }
  section .section__title {
    margin: 0 0 0px;
  }
  section .section__title h3 {
    font-size: 14px;
  }
  section .section__title span {
    font-size: 8vw;
    font-weight: 500;
  }
  section .section__title a {
    font-size: 11px;
  }
  section .section__contents--item .item-img {
    width: 60%;
    margin-left: 40%;
  }
  section .section__contents--item .item-txt h4 {
    font-size: 5vw;
    font-weight: 800;
    margin: 0 0 5px;
    text-shadow: 5px 5px 5px #fff, -5px -5px 5px #fff, -5px 5px 5px #fff, 5px -5px 5px #fff, 5px 0 5px #fff, -5px 0 5px #fff, 0 5px 5px #fff, 0 -5px 5px #fff;
  }
  section .section__contents--item .item-txt span {
    font-size: 10px;
  }
  section .section__contents--item .item-txt a {
    margin: 0;
    font-size: 11px;
  }
  /* ABOUT */
  #about {
    padding-right: 10%;
  }
  #about::after {
    bottom: -44px;
    height: 70px;
  }
  #about .section__contents h3 {
    font-size: 8vw;
    text-align: left;
    margin: 0 0 20px;
  }
  #about .section__contents p.catch {
    top: 1%;
    right: -13%;
    font-size: 5vw;
  }
  #about .section__contents .about-img p {
    font-size: 3vw;
  }
  /* SERVICE */
  #service {
    padding-left: 10%;
  }
  #service::after {
    bottom: -44px;
    height: 70px;
  }
  #service .section__title p {
    margin: 20px 0 0;
  }
  #service .section__title p.catch {
    margin: 0;
    top: 1%;
    left: -13%;
    font-size: 5vw;
  }
  #service .section__contents {
    transform: translateX(-10%);
    width: 110%;
  }
  #page #service .section__title {
    margin: 0 0 40px;
  }
  #page #service .section__contents--item {
    flex-direction: column;
    margin: 40px 0 0;
  }
  #page #service .section__contents--item .item-img {
    width: 100%;
  }
  #page #service .section__contents--item .item-txt {
    width: 100%;
    text-align: center;
  }
  #page #service .section__contents--item .item-txt h4 {
    font-size: 6vw;
    font-weight: 700;
  }
  #page #service .section__contents--item .item-txt p {
    text-align: left;
  }
  /* COMPANY */
  #company .section__title h5 {
    font-size: 14px;
  }
  #company .section__title p {
    font-size: 8vw;
    font-weight: 500;
  }
  #company .section__contents {
    flex-direction: column;
  }
  #company .section__contents--item {
    width: 100%;
  }
  #company .section__contents table th, #company .section__contents table td {
    padding: 12px 20px;
    font-size: 13px;
  }
  #company .section__contents .gmap::before {
    padding-top: 75%;
  }
  /* PRIVACY */
  #privacy .section__contents {
    padding: 30px;
  }
  /* CONTACT */
  #contact .section__contents {
    padding: 30px;
  }
  #contact form .btn input.confirmation-btn {
    width: 100%;
  }
  /* FOOTER */
  footer .footer__contents {
    flex-direction: column;
    gap: 30px;
  }
  footer .footer__contents nav ul {
    gap: 10px;
  }
  footer .footer__contents nav ul li {
    font-size: 10px;
  }
  footer p#copyright {
    font-size: 10px;
  }
}/*# sourceMappingURL=style.css.map */