@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
/* 色設定 */
/* ============================================ */
/* 共通 */
html {
  font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  overflow-x: hidden;
  font-size: 1px;
}

body {
  overflow-x: hidden;
  font-size: 16rem;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

p,
td,
th,
li {
  font-size: 16rem;
  line-height: 1.6;
}

.no-scroll {
  overflow: hidden;
}

.viewport-s {
  max-width: 860px;
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  box-sizing: content-box;
}

.viewport-m {
  max-width: 1080px;
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  box-sizing: content-box;
}

.viewport-l {
  width: 100%;
}

.flex-container {
  display: flex;
}

.is-bold {
  font-weight: 700;
}

.is-underlined {
  text-decoration: underline;
}

img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.inline-link {
  text-decoration: underline;
  color: blue;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.btn {
  display: flex;
  width: 100%;
  max-width: 300rem;
  margin: 0rem auto;
  height: 48rem;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  font-size: 16rem;
  color: white;
  border: solid 2px #0b0549;
  box-shadow: #0b0549 0px 2px 0px 0px;
  position: relative;
}

.btn:hover {
  background: white;
  color: #0b0549;
  transition: 0.3s;
  box-shadow: #0b0549 0px 0px 0px 0px;
  transform: translateY(2px);
}

.btn-lightblue {
  background-color: #bce8f3;
  color: #0b0549;
}

.btn-lightblue::after {
  color: #0b0549;
}

.btn-lightblue:hover {
  background: white;
  color: #0b0549;
  transition: 0.3s;
  box-shadow: #0b0549 0px 0px 0px 0px;
  transform: translateY(2px);
}

.btn-blue {
  background-color: #73b8e2;
}

.btn::after {
  position: absolute;
  content: "▶";
  top: 50%;
  right: 16rem;
  transform: translateY(-50%);
  font-size: 10rem;
}

.h2-common {
  line-height: 1.3;
  text-align: center;
  font-weight: 500;
  color: #0b0549;
}

.h2-common .en {
  font-size: 40rem;
}

.h2-common .ja {
  font-size: 18rem;
  color: #f2ae31;
}

/* スクロールCSS */
.fade-in {
  opacity: 0;
  transition-duration: 2000ms;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 50px);
}

.fade-in-down {
  transform: translate(0, -50px);
}

.fade-in-left {
  transform: translate(-50px, 0);
}

.fade-in-right {
  transform: translate(50px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

.pagination {
  color: #0b0549;
  margin: 20rem auto 100rem;
  line-height: 2em;
  text-align: center;
}

span.page-numbers,
.pagination .current {
  color: #0b0549;
  padding: 10rem 20rem;
  border: solid 1px #ccc;
  text-decoration: none;
}

span.page-numbers:hover {
  color: white;
  background: #0b0549;
}

a.page-numbers,
.pagination .current {
  color: #0b0549;
  padding: 10rem 20rem;
  border: solid 1px #ccc;
  text-decoration: none;
}

a.page-numbers:hover {
  color: white;
  background: #0b0549;
}

.pagination .current {
  color: white;
  background: #0b0549;
  border: #0b0549;
}

.next,
.prev {
  border: 0 none;
  background: transparent;
}

/* ============================================ */
/* ヘッダー */
header {
  border-top: solid 8px #0b0549;
  height: 90rem;
  padding-top: 16rem;
  padding-bottom: 24rem;
  position: relative;
  margin-bottom: 16rem;
  background: white;
}

header .viewport-m {
  display: flex;
  justify-content: space-between;
  border-bottom: solid 2px #0b0549;
  align-items: flex-end;
}

header .viewport-m h1 {
  display: flex;
  height: 56rem;
  padding-bottom: 5rem;
}

header .viewport-m h1 a {
  display: flex;
}

header .viewport-m h1 a img {
  height: 100%;
  width: auto;
}

header .viewport-m nav {
  justify-content: space-between;
}

header .viewport-m nav .menu-container {
  display: flex;
  justify-content: flex-end;
}

header .viewport-m nav .menu-container .sns-list {
  display: flex;
  justify-content: flex-end;
  padding-top: 4rem;
  padding-bottom: 4rem;
  padding-right: 8rem;
}

header .viewport-m nav .menu-container .sns-list figure {
  width: 26rem;
  margin-left: 8rem;
}

header .viewport-m nav .menu-container .contact-list {
  display: flex;
}

header .viewport-m nav .menu-container .contact-list .btn {
  height: 30rem;
  width: 180rem;
  margin-bottom: 6rem;
  font-size: 14rem;
}

header .viewport-m nav .menu-container .contact-list .contact-btn {
  background: #bce8f3;
  color: #0b0549;
  margin-right: 8rem;
}

header .viewport-m nav .menu-container .contact-list .contact-btn:hover {
  background: white;
}

header .viewport-m nav .menu-container .contact-list .magazine-btn {
  background: #73b8e2;
}

header .viewport-m nav .menu-container .contact-list .magazine-btn:hover {
  background: white;
}

header .viewport-m nav .menu-list {
  display: flex;
  font-weight: 500;
  font-size: 14rem;
  color: #0b0549;
}

header .viewport-m nav .menu-list > li {
  padding: 0 0px 8rem;
  transition: 1s;
}

header .viewport-m nav .menu-list > li a {
  position: relative;
}

header .viewport-m nav .menu-list > li a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -4rem;
  height: 2rem;
  width: 0;
  background-color: #0b0549;
  transition: all 0.2s;
}

header .viewport-m nav .menu-list > li a:hover::after {
  width: 100%;
}

header .viewport-m nav .menu-list > li:not(:first-child) {
  margin-left: 22rem;
}

header .viewport-m nav .menu-list > li .service-list {
  display: flex;
  background: #73b8e2;
  position: absolute;
  bottom: -6rem;
  left: 0;
  width: 100vw;
  max-width: 1112px;
  justify-content: center;
  padding: 20rem 0;
  left: 50%;
  color: white;
  transform: translate(-50%, 100%);
  transform-origin: center;
  transition: 0.5s;
  opacity: 0;
  z-index: -10;
}

header .viewport-m nav .menu-list > li .service-list > li {
  padding: 20rem 60rem;
  border: white 2px solid;
  margin: 8rem;
  color: white;
  transition: 0.5s;
}

header .viewport-m nav .menu-list > li .service-list > li a::after {
  background-color: white;
}

header .viewport-m nav .menu-list > li:hover .service-list {
  opacity: 1;
  z-index: 10;
}

/* ============================================ */
/* セクション */
/* ============================================ */
/* セクション */
footer {
  background: #0b0549;
  padding-top: 56rem;
}

footer .footer-container {
  text-align: center;
}

footer .footer-container .footer-logo {
  margin-bottom: 48rem;
}

footer .footer-container .footer-logo figure {
  width: 220rem;
  margin: 0 auto;
  margin-top: 6rem;
}

footer .footer-container .sns-list {
  display: flex;
  justify-content: center;
  margin-bottom: 24rem;
}

footer .footer-container .sns-list a {
  margin: 0 4rem;
}

footer .footer-container .sns-list a figure {
  width: 40rem;
}

footer .footer-container .footer-btn {
  display: flex;
  justify-content: center;
  margin-bottom: 64rem;
}

footer .footer-container .footer-btn .btn {
  margin: 0 5rem;
}

footer .footer-container .footer-btn .contact-btn {
  background: #bce8f3;
  color: #0b0549;
}

footer .footer-container .footer-btn .contact-btn:hover {
  background: white;
}

footer .footer-container .footer-btn .magazine-btn {
  background: #73b8e2;
}

footer .footer-container .footer-btn .magazine-btn:hover {
  background: white;
}

footer .footer-menu {
  display: flex;
  justify-content: center;
  background: white;
}

footer .footer-menu > li {
  padding-top: 10rem;
  padding-bottom: 10rem;
  margin: 0 10rem;
  color: #0b0549;
  font-size: 16rem;
  font-weight: 500;
  position: relative;
}

footer .footer-menu > li .service-list {
  display: none;
  position: absolute;
  top: -90rem;
  left: 0;
  width: 136rem;
  transform: translateX(-10rem);
}

footer .footer-menu > li .service-list > li {
  padding: 10rem;
}

footer .footer-menu > li:hover .service-list {
  display: block;
}

footer .copy-right {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

footer .copy-right p {
  text-align: center;
  color: white;
}

/* SP */
@media screen and (max-width: 1080px) {
  html {
    position: relative;
    font-size: 0.82px;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .viewport-s {
    box-sizing: border-box;
  }
  .viewport-m {
    box-sizing: border-box;
  }
  .h2-common .en {
    font-size: 32rem;
  }
  .h2-common .ja {
    font-size: 14rem;
  }
  .hamburger-menu {
    width: 80rem;
    height: 84rem;
    background-color: #0b0549;
    position: fixed;
    right: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    z-index: 1000;
  }
  .hamburger-menu span {
    display: block;
    width: 26px;
    height: 2px;
    background-color: white;
    opacity: 1;
    position: absolute;
    transition: all 0.2s linear;
  }
  .hamburger-menu span:nth-child(1) {
    top: 32rem;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .hamburger-menu span:nth-child(2) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .hamburger-menu span:nth-child(3) {
    bottom: 32rem;
    left: 50%;
    transform: translate(-50%, 50%);
  }
  .hamburger-menu.is-open {
    background-color: #ffffff00;
  }
  .hamburger-menu.is-open span {
    background-color: #0b0549;
  }
  .hamburger-menu.is-open span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
    top: 50%;
  }
  .hamburger-menu.is-open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger-menu.is-open span:nth-child(3) {
    transform: translate(-50%, 50%) rotate(-45deg);
    bottom: 50%;
  }
  /* ============================================ */
  /* ヘッダー */
  header {
    margin-bottom: 24rem;
    height: 80rem;
    padding-top: 8rem;
  }
  header .viewport-m {
    align-items: flex-end;
    padding-bottom: 8rem;
  }
  header .viewport-m h1 {
    display: flex;
    height: 56rem;
    padding-bottom: 0rem;
    padding-left: 8rem;
  }
  header .viewport-m h1 a img {
    height: 100%;
    width: auto;
  }
  header .viewport-m nav {
    display: flex;
    justify-content: space-between;
  }
  header .viewport-m nav .menu-container {
    margin-right: 16rem;
  }
  header .viewport-m nav .menu-container .sns-list {
    display: none;
  }
  header .viewport-m nav .menu-container .contact-list {
    display: none;
  }
  header .viewport-m nav .menu-list {
    z-index: 100;
    right: 0;
    left: 0;
    top: 0;
    width: 100vw;
    height: calc(100vh);
    background-color: white;
    position: fixed;
    color: black;
    font-weight: 500;
    flex-direction: column;
    transform: translateX(100%);
    transition: all 0.2s linear;
  }
  header .viewport-m nav .menu-list.is-open {
    transform: translateX(0);
  }
  header .viewport-m nav .menu-list > li {
    width: 100%;
    border-bottom: #cccccc solid 1px;
    font-size: 22rem;
    text-align: center;
    padding: 0;
    margin-right: 0 !important;
  }
  header .viewport-m nav .menu-list > li > a {
    padding: 22rem;
    width: 100%;
    height: auto;
    display: block;
  }
  header .viewport-m nav .menu-list > li .pc {
    display: none;
  }
  header .viewport-m nav .menu-list > li:not(:first-child) {
    margin-left: 0;
  }
  header .viewport-m nav .menu-list > li:hover .service-list {
    display: none;
  }
  /* ============================================ */
  /* ============================================ */
  /* セクション */
  footer .footer-container .footer-btn {
    display: block;
  }
  footer .footer-container .footer-btn .btn {
    margin: 0 auto 16rem;
  }
  footer .footer-container .footer-btn .contact-btn {
    background: #bce8f3;
  }
  footer .footer-menu {
    display: none;
  }
}
