/* --------------------------------------------------------------------------------
 * web fonts
-------------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

:root {
  --color-text: #036eb8;

  --color-blue: #036eb8;
  --color-orange: #F08337;

  --font-josefin: 'Josefin Sans', sans-serif;

  --grad-blue: linear-gradient(to bottom, #00A8E8 0%, #004EAB 100%);
  --grad-blue-r: linear-gradient(to right, #00A8E8 0%, #004EAB 100%);
  --grad-blue-l: linear-gradient(to left, #00A8E8 0%, #004EAB 100%);
}

/* ----------------------------------------------------------------------
 reset (exculding 'sup')
---------------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

input, textarea {
  margin: 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

img {
  vertical-align: middle;
}

/* ----------------------------------------------------------------------
 basic setting
---------------------------------------------------------------------- */
body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--color-text);
  line-height: 1.5;
  /*
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  */
}

body * {
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
}

input, button, textarea, select {
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
}

textarea {
  vertical-align: top;
}

*:focus {
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-orange);
}

a:hover {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/* ----------------------------------------------------------------------
 common class
---------------------------------------------------------------------- */
@media only screen and (min-width: 751px) {
  .pc-non {
    display: none !important;
  }
}
@media only screen and (max-width: 750px) {
  .sp-non {
    display: none !important;
  }
}
.mb-0 {
  margin-bottom: 0;
}

.mt-2 {
  margin-top: 1em;
}

.tCenter {
  text-align: center;
}

.font-josefin {
  font-family: var(--font-josefin);
  letter-spacing: -0.02em;
}

.color-orange {
  color: var(--color-orange);
}

.link-tel {
  color: inherit;
  text-decoration: none;
}
@media only screen and (min-width: 751px) {
  .link-tel {
    pointer-events: none;
  }
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}
@media only screen and (max-width: 750px) {
  .container {
    width: auto;
  }
}

.hover {
  transition: 0.3s;
}
@media only screen and (min-width: 751px) {
  .hover:hover {
    opacity: 0.7;
  }
}

.title-primary {
  font-size: 80px;
  font-family: var(--font-josefin);
  font-weight: bold;
  letter-spacing: -.02em;
  color: var(--color-blue);
  text-align: center;
  @media screen and (max-width: 750px){
    font-size: 48px;
  }
}
.title-secondary {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.34em;
  color: var(--color-blue);
  text-align: center;
  @media screen and (max-width: 750px){
    font-size: 20px;
  }
  span {
    display: inline-block;
    position: relative;
    padding-left: 0.17em;
    padding-bottom: 16px;
    @media screen and (max-width: 750px){
      padding-bottom: 12px;
    }
    &:after {
      content: "";
      position: absolute;
      left: 0.17em;
      bottom: 0;
      width: calc(100% - 0.34em);
      height: 3px;
      background-color: var(--color-blue);
    }
  }
}

.btn-primary {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  font-weight: bold;
  color: var(--color-blue);
  text-decoration: none;
  transition: opacity 0.3s ease-in-out;
  @media screen and (max-width: 750px){
    font-size: 11px;
  }
  &:after {
    content: "";
    width: 44px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: var(--color-blue) url(../img/arrow_link.svg) no-repeat center / 16px;
    @media screen and (max-width: 750px){
      width: 32px;
      background-size: 12px;
    }
  }
  &:hover {
    opacity: 0.7;
  }
  &.-white {
    color: #fff;
    &:after {
      background: #fff url(../img/arrow_link_blue.svg) no-repeat center / 16px;
    }
  }
  /*
  &.-large {
    font-size: 27px;
    @media screen and (max-width: 750px){
      font-size: 14px;
    }
    &:after {
      width: 80px;
      background-size: 30px;
      @media screen and (max-width: 750px){
        width: 50px;
        background-size: 18px;
      }
    }
  }
    */
}

.table-primary {
  width: 100%;
  color: var(--color-blue);
  word-break: break-all;
  @media screen and (max-width: 750px){
    display: block;
    tbody,
    tr,
    th,
    td {
      display: block;
    }
  }
  tr {
    border-bottom: 1px solid var(--color-blue);
  }
  th {
    width: 28%;
    padding: 24px 0;
    font-size: 16px;
    font-weight: 500;
    vertical-align: middle;
    letter-spacing: 0.18em;
    @media screen and (max-width: 750px){
      padding: 20px 0 0;
      width: 100%;
    }
  }
  td {
    padding: 24px 0;
    vertical-align: middle;
    font-size: 14px;
    letter-spacing: 0.18em;
    font-weight: 500;
    line-height: 2;
    font-feature-settings: "palt";
    @media screen and (max-width: 750px){
      padding: 0 0 20px;
    }
    .large {
      font-size: 16px;
      @media screen and (max-width: 750px){
        font-size: 14px;
      }
    }
  }
}

.list-indent {
  li {
    margin-left: 1em;
    text-indent: -1em;
  }
}

.header {
  position: relative;
  height: 100px;
  background: #fff;
  @media screen and (max-width: 750px){
    height: 72px;
  }
}
.header__inner {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100px;
  padding: 0 35px;
  background: #fff;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
  @media screen and (max-width: 750px){
    padding: 0 20px;
    height: 72px;
  }
  &.is-fixed {
    position: fixed;
    height: 70px;
    @media screen and (max-width: 750px){
      height: 72px;
    }
  }
}
.header__logo {
  width: 162px;
  @media screen and (max-width: 750px){
    width: 98px;
  }
}
.header__right {
  display: flex;
  align-items: center;
}
.header__navi {
  display: flex;
  gap: 2em;
  align-items: center;
  li {
    a {
      color: #3e6eb4;
      text-decoration: none;
      font-size: 13px;
      letter-spacing: 0.14em;
      font-weight: 500;
    }
  }
  @media screen and (max-width: 750px){
    display: none;
  }
}
.header__contact {
  margin-left: 24px;
  @media screen and (max-width: 750px){
    margin: 0;
  }
  a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-blue);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    @media screen and (max-width: 750px){
      width: 40px;
      height: 40px;
    }
    img {
      width: 12px;
      @media screen and (max-width: 750px){
        width: 15px;
      }
    }
  }
}
.header__menu {
  @media screen and (min-width: 751px){
    display: none;
  }
  position: relative;
  width: 24px;
  height: 28px;
  margin-left: 21px;
  span {
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: var(--color-blue);
    &:nth-child(1) {
      top: 0;
    }
    &:nth-child(2) {
      top: 50%;
      transform: translateY(-50%);
    }
    &:nth-child(3) {
      bottom: 0;
    }
  }
}
.spMenu {
  position: fixed;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden;
  pointer-events: none;
  &.is-show {
    pointer-events: auto;
  }
}
.spMenu__inner {
  width: 240px;
  height: 100%;
  margin-left: auto;
  background-color: rgba(1, 77, 171, 0.8);
  padding: 100px 36px 0;
  color: #fff;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  position: relative;
  .is-show & {
    transform: translateX(0);
  }
}
.spMenu__navi {
  display: flex;
  flex-direction: column;
  gap: 20px;
  li {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.14em;
    a {
      color: #fff;
      text-decoration: none;
    }
  }
}
.spMenu__contact {
  margin-top: 20px;
  a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    color: #fff;
    width: 100%;
    height: 48px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-josefin);
    text-decoration: none;
    padding-top: 0.2em;
  }
}
.spMenu__close {
  position: absolute;
  width: 24px;
  height: 28px;
  top: 22px;
  right: 20px;
  span {
    position: absolute;
    width: 148%;
    height: 1px;
    background-color: #fff;
    &:nth-child(1) {
      top: 0;
      transform-origin: left top;
      transform: rotate(48deg);
    }
    &:nth-child(2) {
      bottom: 0;
      transform-origin: left bottom;
      transform: rotate(-48deg);
    }
  }
}

.bottomContact {
  padding: 80px 0 70px;
  background: var(--grad-blue);
  position: relative;
  z-index: 2;
}
.bottomContact__loop {
  display: block;
  position: relative;
  height: 90px;
  overflow: hidden;
  cursor: none;
  @media screen and (max-width: 750px){
    height: 54px;
  }
  div {
    display: inline-block;
    position: relative;
    animation: stream 30s linear infinite;
    img {
      width: auto;
      height: 90px;
      max-width: initial;
      @media screen and (max-width: 750px){
        height: 54px;
      }
      &.copy {
        position: absolute;
        left: 100%;
      }
    }
  }
}
.bottomContact__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1460px;
  padding: 0 35px;
  margin: 120px auto 0;
  @media screen and (max-width: 750px) {
    flex-direction: column;
    align-items: center;
    margin: 60px auto 0;
  }
}
.bottomContact__logo {
  width: 360px;
  @media screen and (max-width: 750px){
    width: 100%;
  }
}
.bottomContact__address {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.18em;
  color: #fff;
  margin-top: 1em;
  @media screen and (max-width: 750px){
    font-size: 12px;
  }
}
.bottomContact__right {
  width: 300px;
  @media screen and (max-width: 750px){
    width: 268px;
    margin-top: 40px;
  }
}
@keyframes stream {
  100% {
    transform: translateX(-100%);
  }
}
.footer {
  padding: 30px 35px 40px;
  background-color: #fff;
  position: relative;
  z-index: 2;
  @media screen and (max-width: 750px){
    overflow: hidden;
    padding: 24px 20px 30px;
  }
}
.footer__message {
  width: 66.2%;
  @media screen and (max-width: 750px){
    width: 100%;
  }
}
.copyright {
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-josefin);
  color: var(--color-blue);
  letter-spacing: -0.02em;
  text-align: right;
  margin-top: 15px;
  @media screen and (max-width: 750px){
    font-size: 10px;
    text-align: center;
  }
}
.pageHero {
  padding: 100px 0;
  text-align: center;
  @media screen and (max-width: 750px){
    padding: 20px 0 40px;
  }
}
.pageHero__title {
  font-size: 80px;
  font-weight: bold;
  font-family: var(--font-josefin);
  letter-spacing: -0.02em;
  color: var(--color-blue);
  @media screen and (max-width: 750px){
    font-size: 40px;
  }
}

.contactConfirm {
  padding: 120px 0;
  max-width: 1000px;
  margin: 0 auto;
  @media screen and (max-width: 750px){
    padding: 80px 20px;
  }
}
.contactForm {
  margin-top: 90px;
  @media screen and (max-width: 750px){
    margin-top: 60px;
  }
}
.contactForm__table {
  width: 100%;
  font-weight: 500;
  letter-spacing: 0.18em;
  @media screen and (max-width: 750px){
    display: block;
    tbody,
    tr,
    th,
    td {
      display: block;
    }
  }
  th {
    padding: 20px 0;
    font-size: 18px;
    width: 27%;
    position: relative;
    border-bottom: 1px solid var(--color-blue);
    @media screen and (max-width: 750px){
      width: 100%;
      padding: 20px 0 0;
      font-size: 16px;
      border-style: none;
    }
  }
  td {
    padding: 20px 0;
    padding-left: 1em;
    font-size: 16px;
    border-bottom: 1px solid var(--color-blue);
    position: relative;
    @media screen and (max-width: 750px){
      padding: 10px 0 20px;
      font-size: 14px;
    }
    .formErrorContent {
      letter-spacing: normal;
    }
  }
}
.form-text {
  width: 100%;
  background-color: #f0f4fa;
  height: 44px;
  border-style: none;
  padding: 0 0.5em;
  &.-zip {
    width: 240px;
    @media screen and (max-width: 750px){
      width: 180px;
    }
  }
}
.form-textarea {
  width: 100%;
  background-color: #f0f4fa;
  height: 320px;
  border-style: none;
  padding: 0.25em 0.5em;
  @media screen and (max-width: 750px){
    height: 12em;
  }
}
.required {
  position: absolute;
  top: 27px;
  right: 0px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.18em;
  background-color: var(--color-orange);
  padding: 3px 1.2em;
  @media screen and (max-width: 750px){
    font-size: 12px;
    top: 21px;
  }
}
.contactForm__human {
  text-align: center;
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--color-blue);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.18em;
}
.form-checkbox {
  width: 20px;
  height: 20px;
  margin-right: 0.6em;
  vertical-align: -3px;
}
.contactForm__btn {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  display: none;
  @media screen and (max-width: 750px){
    margin-top: 40px;
    gap: 20px;
  }
  &.is-show {
    display: flex !important;
  }
}
.btn-send {
  -webkit-appearance: none;
  border-style: none;
  color: #fff;
  background-color: var(--color-blue);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.18em;
  position: relative;
  width: 374px;
  height: 93px;
  text-decoration: none;
  cursor: pointer;
  @media screen and (max-width: 750px){
    width: 100%;
  }
  &:after {
    content: "";
    background: url(../img/arrow_link.svg) no-repeat center / contain;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
  }
}
.btn-back {
  -webkit-appearance: none;
  border-style: none;
  background-color: #f0f4fa;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.18em;
  width: 374px;
  height: 93px;
  text-decoration: none;
  cursor: pointer;
  @media screen and (max-width: 750px){
    width: 100%;
  }
}
.naka {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2em;
}

.cursor-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 120px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translate(16px, 16px);
  transition: opacity 0.1s, visibility 0.1s;
  z-index: 9999;
}
.cursor-image.is-show {
  opacity: 1;
  visibility: visible;
}
.cursor-image span {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  img {
    width: 36px;
  }
}

.ani-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}
.ani-delay-0 {
  transition-delay: 0s;
}
.ani-delay-1 {
  transition-delay: 0.3s;
}
.ani-delay-2 {
  transition-delay: 0.6s;
}
.ani-delay-3 {
  transition-delay: 0.9s;
}
.ani-delay-4 {
  transition-delay: 1.2s;
}

.is-animation .ani-fade-up,
.ani-fade-up.is-animation {
  opacity: 1;
  transform: translateY(0);
}