@charset "UTF-8";
html {
  font-size: 62.5%;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #333;
  line-height: 1.6;
  letter-spacing: 1px;
}

body {
  font-size: 100%;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 3.7333333333vw;
  }
}

.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

h2 {
  box-sizing: border-box;
  position: relative;
  display: block;
  padding: 12px;
  font-size: 34px;
  text-align: center;
  font-weight: 300;
  width: 460px;
  margin: 0 auto 60px;
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 20px;
    width: 80%;
    margin: 0 auto 10.6666666667vw;
  }
}

h2::before,
h2::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 100%;
}

h2::before {
  box-sizing: border-box;
  border-left: solid 1px #50AFEC;
  border-top: solid 1px #50AFEC;
  top: 0;
  left: 0;
}

h2::after {
  box-sizing: border-box;
  border-right: solid 1px #50AFEC;
  border-bottom: solid 1px #50AFEC;
  bottom: 0;
  right: 0;
}

h2::before {
  border-bottom: solid 1px #50AFEC;
}

h2::after {
  border-top: solid 1px #50AFEC;
}

h2.none {
  width: auto;
}
h2.none::before, h2.none::after {
  content: none;
}

h2 .h2_en {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  color: #68BDF3;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  h2 .h2_en {
    font-size: 5.3333333333vw;
    line-height: 1.4;
  }
}

.header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: 20;
}
.header__inner {
  display: flex;
  align-items: center;
  z-index: 5;
  transition: 0.8s;
}
.header__inner-logo {
  background: #fff;
  border-radius: 0 0 20px 0;
  padding: 50px 100px;
  transition: 0.8s;
  width: 365px;
}
@media screen and (max-width: 768px) {
  .header__inner-logo {
    padding: 5.3333333333vw 2.6666666667vw;
    width: 21.3333333333vw;
  }
}
.header__inner-logo img {
  width: 165px;
  margin: 0 auto;
  transition: 0.8s;
}
@media screen and (max-width: 768px) {
  .header__inner-logo img {
    width: 100%;
  }
}
.header h1 {
  margin-left: 30px;
  color: #fff;
  font-size: 20px;
  transform: translateY(-50px);
  transition: 0.8s;
}
@media screen and (max-width: 768px) {
  .header h1 {
    transform: translateY(0);
    font-size: 3.7333333333vw;
  }
}

header {
  position: relative;
  /* 必要なら高さや背景色など */
}

header::before {
  content: "";
  position: absolute;
  inset: 0;
  /* 出したいグラデーション */
  background: linear-gradient(180deg, rgba(0, 100, 194, 0.6) 30%, rgba(14, 244, 255, 0));
  opacity: 0;
  /* 最初は非表示 */
  transition: opacity 0.5s ease;
  /* フェード時間 */
  pointer-events: none;
  /* クリックを透過 */
}

header.show::before {
  opacity: 0.6;
  /* スクロール後にフェードイン */
}

.nav {
  display: flex;
  color: #fff;
  align-items: center;
  margin-right: 30px;
  transform: translateY(-50px);
  transition: 0.8s;
}
.nav ul {
  display: flex;
}
.nav ul img {
  width: 100%;
}
.nav ul .nav-item {
  align-content: center;
  font-size: 14px;
  padding: 0 20px 0 0;
  margin-right: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 768px) {
  .nav ul .nav-item {
    border-right: none;
  }
}
.nav ul .nav-item:last-of-type {
  border-right: none;
}
.nav ul .nav-item a {
  display: block;
  align-content: center;
  line-height: 1;
}
.nav ul .nav-inq {
  color: #333;
  font-size: 14px;
  background: #fff;
  border-radius: 100px;
  padding: 5px 15px;
  margin-right: 20px;
}
.nav ul .nav-x {
  display: flex;
  align-items: center;
  width: 18px;
  margin-right: 20px;
}
.nav ul .nav-note {
  display: flex;
  align-items: center;
  width: 53px;
}

.nav-item a {
  padding-bottom: 3px;
  /* テキストと下線の間隔 */
  background-image: linear-gradient(#fff, #fff);
  background-repeat: no-repeat;
  background-position: bottom right;
  /* 下線の初期位置 */
  background-size: 0 1px;
  /* 下線のサイズ（横幅、高さ） */
  transition: background-size 0.3s;
}

.nav-item a:hover {
  background-position: bottom left;
  /* 下線のホバー時位置 */
  background-size: 100% 1px;
  /* 下線の横幅を100%にする */
}

@media screen and (max-width: 768px) {
  .show.header::before {
    content: none;
  }
}
.show .header__inner-logo {
  border-radius: 0 0 10px 0;
  padding: 10px 0;
  width: 160px;
  z-index: 2;
  transition: 0.8s;
}
.show .header__inner-logo img {
  width: 70px;
  margin: 0 auto;
  transition: 0.8s;
}
@media screen and (max-width: 768px) {
  .show .header__inner-logo img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .show .header__inner-logo {
    width: 16vw;
    padding: 2.6666666667vw;
    opacity: 0;
  }
}
.show h1 {
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .show h1 {
    opacity: 0;
  }
}
.show .nav {
  transform: translateY(0);
}

.footer .nav {
  transform: translateY(0);
  color: #333;
}
.footer .nav .nav-item {
  border-right: 1px solid rgba(0, 0, 0, 0.5);
}
.footer__inner {
  padding: 80px 20px;
  text-align: center;
}
.footer__wrap {
  display: flex;
  align-items: center;
  text-align: left;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  gap: 20px;
  font-size: 18px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .footer__wrap {
    font-size: 3.7333333333vw;
  }
}
.footer .nav {
  margin: 0 auto;
  margin-bottom: 40px;
}
.footer__copy {
  text-align: center;
  font-size: 14px;
}
.footer__logo {
  width: 110px;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    width: 16vw;
  }
}
.footer__logo img {
  width: 100%;
}

@media screen and (max-width: 1360px) {
  .header .nav {
    margin-right: 10px;
  }
  .header .nav ul .nav-item {
    align-content: center;
    font-size: 12px;
    padding: 0 5px 0 0;
    margin-right: 10px;
  }
  .header .nav ul .nav-inq {
    font-size: 12px;
    border-radius: 100px;
    padding: 3px 10px;
    margin-right: 20px;
    margin-left: 10px;
  }
}
.inquiry {
  padding: 60px;
  background: rgba(238, 255, 255, 0.5);
}
@media screen and (max-width: 768px) {
  .inquiry {
    padding: 5.3333333333vw;
  }
}
.inquiry__inner {
  max-width: 1060px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .inquiry__inner {
    padding-top: 8vw;
    padding-bottom: 8vw;
  }
}
.inquiry__inner > p {
  padding-bottom: 60px;
}
.inquiry table {
  text-align: left;
  margin: 0 auto;
}
.inquiry table th,
.inquiry table td {
  padding: 10px;
  border-bottom: 1px solid #eee;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .inquiry table th,
  .inquiry table td {
    display: block;
    font-size: 3.7333333333vw;
  }
}
.inquiry table th {
  font-weight: 400;
  width: 30%;
  margin-right: 5%;
}
@media screen and (max-width: 768px) {
  .inquiry table th {
    width: 100%;
  }
}
.inquiry table th .re {
  color: #ee6807;
}
.inquiry table td {
  width: 65%;
}
@media screen and (max-width: 768px) {
  .inquiry table td {
    width: 100%;
  }
}
.inquiry table td input,
.inquiry table td select,
.inquiry table td textarea {
  width: 100%;
  padding: 10px;
  background: #fff;
  border-radius: 5px;
  border: 1px solid #eee;
}
.inquiry table [data-name=choice] {
  position: relative;
}
.inquiry table [data-name=choice]::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 16px;
  width: 12px;
  height: 12px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
}
.inquiry table select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.inquiry .wpcf7-submit {
  margin-top: 40px;
  border-radius: 50px;
  color: #fff;
  background: linear-gradient(101deg, rgb(0, 100, 194), rgb(143, 244, 200));
  font-size: 16px;
  text-align: center;
  padding: 10px 60px;
}

.footer__inner {
  border-top: #2B9BE2 5px solid;
  background: rgba(43, 155, 226, 0.1);
  text-align: center;
}

.background {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  z-index: -1;
  mix-blend-mode: hard-light;
  background-image: linear-gradient(180deg, rgb(190, 190, 190), rgb(255, 255, 255) 50%);
  /* background: #fff; */
  height: 100%;
}

#page-top {
  position: fixed;
  right: 0;
  bottom: 0;
}

.nav__sp {
  display: none;
}

@media screen and (max-width: 1160px) {
  .footer .nav {
    display: none;
  }
  .nav__pc {
    display: none;
  }
  .nav__sp {
    display: block;
    visibility: hidden;
    transform: translateY(0);
  }
  /*メニューボタン　展開前*/
  #nav_toggle {
    display: block;
    position: fixed;
    z-index: 30;
    right: 10px;
    top: 10px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
    background: #fff;
    border-radius: 50px;
  }
  #nav_toggle span {
    display: block;
    position: absolute;
    width: 20px;
    height: 1px;
    left: 11px;
    background: #0064C2;
    transition: 0.3s ease-in-out;
    margin-top: 8px;
  }
  #nav_toggle span:nth-of-type(1) {
    top: 5px;
  }
  #nav_toggle span:nth-of-type(2) {
    top: 12px;
  }
  #nav_toggle span:nth-of-type(3) {
    top: 19px;
  }
  /*メニューボタン　展開後*/
  #nav_toggle.active span {
    margin-top: 5px;
  }
  #nav_toggle.active span:nth-child(1) {
    top: 15px;
    left: 11px;
    transform: rotate(-45deg);
  }
  #nav_toggle.active span:nth-child(2),
  #nav_toggle.active span:nth-child(3) {
    top: 15px;
    transform: rotate(45deg);
  }
  /*スマホ用のメニュー*/
  .nav__sp {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.3) 1px, transparent 1px), radial-gradient(circle at 50% 100%, rgb(143, 244, 200), rgb(43, 155, 255));
    background-size: 20px 20px, 100%;
    text-align: center;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    visibility: hidden;
  }
  .nav__sp ul {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    display: block;
  }
  .nav__sp ul li {
    display: block;
    list-style-type: none;
    padding: 0;
    width: 100%;
    transition: 0.4s all;
  }
  .nav__sp ul li:last-of-type {
    padding-bottom: 0;
  }
  .nav ul .nav-x,
  .nav ul .nav-note {
    margin: 0 auto;
  }
  .nav__sp ul li a {
    display: block;
    padding: 15px 0;
    text-decoration: none;
    font-size: 2rem;
  }
  .nav ul .nav-inq {
    width: -moz-fit-content;
    width: fit-content;
    margin: 15px auto 15px auto !important;
    padding: 0 100px;
  }
  .nav ul .nav-inq a {
    padding: 5px 30px;
  }
  .nav ul .nav-x {
    width: 36px;
    padding: 0;
  }
  .nav ul .nav-x a {
    width: 100%;
  }
  .nav ul .nav-note {
    width: 100px;
    padding: 0;
  }
  .nav ul .nav-note a {
    width: 100%;
  }
  .nav__sp.active {
    opacity: 1;
    visibility: visible;
  }
}
.wpcf7-response-output {
  font-size: 12px;
  border: none !important;
  color: #c00;
}/*# sourceMappingURL=common.css.map */