@font-face {
  font-display: swap;
  font-family: Josefin Sans;
  font-style: normal;
  font-weight: 400;
  src: url(/fonts/JosefinSans-Regular.woff2)format("woff2")
}
@font-face {
  font-display: swap;
  font-family: Josefin Sans;
  font-style: bold;
  font-weight: 700;
  src: url(/fonts/JosefinSans-Bold.woff2)format("woff2")
}
*, :after, :before {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0
}
html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent
}
body {
  margin: 0
}
main {
  display: block
}
address, blockquote, dl, figure, form, iframe, p, pre, table {
  margin: 0
}
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0
}
ol, ul {
  margin: 0;
  padding: 0;
  list-style: none
}
dt {
  font-weight: 700
}
dd {
  margin-left: 0
}
hr {
  box-sizing: content-box;
  clear: both;
  color: inherit;
  border-top-width: 1px;
  height: 0;
  margin: 0;
  overflow: visible
}
pre {
  font-family: monospace;
  font-size: inherit
}
address {
  font-style: inherit
}
a {
  color: inherit;
  background-color: #0000;
  text-decoration: none
}
abbr[title] {
  text-decoration: underline dotted
}
b, strong {
  font-weight: bolder
}
code, kbd, samp {
  font-family: monospace;
  font-size: inherit
}
small {
  font-size: 80%
}
sub, sup {
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
  position: relative
}
sub {
  bottom: -.25em
}
sup {
  top: -.5em
}
embed, iframe, img, object {
  vertical-align: bottom
}
button, input, optgroup, select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: inherit;
  font: inherit;
  text-align: inherit;
  text-transform: inherit;
  vertical-align: middle;
  background: 0 0;
  border-radius: 0;
  margin: 0;
  padding: 0
}
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox
}
[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio
}
[type=button], [type=reset], [type=submit], button {
  cursor: pointer
}
[type=button]:disabled, [type=reset]:disabled, [type=submit]:disabled, button:disabled {
  cursor: default
}
:-moz-focusring {
  outline: auto
}
select:disabled {
  opacity: inherit
}
fieldset, option {
  padding: 0
}
fieldset {
  min-width: 0;
  margin: 0
}
legend {
  padding: 0
}
progress {
  vertical-align: baseline
}
textarea {
  overflow: auto
}
[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto
}
[type=search] {
  outline-offset: -2px
}
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit
}
label[for] {
  cursor: pointer
}
details {
  display: block
}
summary {
  display: list-item
}
[contenteditable]:focus {
  outline: auto
}
table {
  border-collapse: collapse;
  border-color: inherit
}
caption {
  text-align: left
}
td, th {
  vertical-align: top;
  padding: 0
}
th {
  text-align: left;
  font-weight: 700
}
.LowerVisual {
  opacity: 0;
  transform: matrix(1, 0, 0, 1, 0, 24)
}
:root {
  --base-color: #fff;
  --main-color: #0da7e0;
  --sub-color: #f5f8fa;
  --link-color: #00abeb;
  --main-font-color: #1a1a1a;
  --font-light-color: #969696;
  --line-color: #d9d9d9
}
html {
  background-color: var(--base-color);
  scroll-behavior: smooth;
  font-size: 62.5%
}
body {
  color: var(--main-font-color);
  -webkit-font-smoothing: antialiased;
  font-family: Helvetica, Helvetica Neue, Arial, Hiragino Kaku Gothic ProN, Hiragino Sans, Meiryo, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.8
}
.container, body {
  position: relative;
  overflow-x: hidden
}
.header {
  --gap-min: 24px;
  --gap-val: 50px;
  --gap-header: 80px;
  --gap-max: 160px;
  width: calc(100% - var(--gap-min));
  z-index: 10;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  display: grid;
  position: relative
}
@media (width>=688px) {
  .header {
    width: calc(100% - var(--gap-val))
  }
}
@media (width>=1280px) {
  .header {
    width: calc(100% - var(--gap-header))
  }
}
@media (width>=688px) {
  .header {
    align-items: flex-end;
    height: 100px;
    margin: 0 auto;
    padding-top: 0
  }
}
@media (width>=992px) {
  .header {
    height: 100px
  }
}
.header__inner {
  padding-top: 4.5%;
  padding-bottom: 4.5%;
  display: flex
}
@media (width>=688px) {
  .header__inner {
    padding-top: 0;
    padding-bottom: 0
  }
}
@media (width>=992px) {
  .header__inner {
    align-items: flex-end
  }
}
.header__logo {
  align-items: center;
  display: flex
}
.header .logo {
  width: calc(82vw - 24px);
  max-width: 360px;
  height: auto
}
@media (width>=688px) {
  .header .logo {
    width: 460px;
    max-width: none
  }
}
@media (width>=992px) {
  .header .logo {
    width: 460px
  }
}
.header .logo img {
  width: 100%;
  height: auto;
  display: block
}
.header .global-nav {
  background-color: var(--main-color);
  opacity: 0;
  height: 100lvh;
  min-height: 100lvh;
  display: none;
  position: fixed;
  inset: 0;
  overflow-y: auto
}
@media (width>=992px) {
  .header .global-nav {
    opacity: 1;
    background-color: #0000;
    height: auto;
    min-height: auto;
    margin-bottom: 8px;
    margin-left: auto;
    display: block;
    position: relative;
    overflow-y: hidden
  }
}
.header .global-nav__items {
  flex-direction: column;
  padding: 40px;
  display: flex
}
@media (width>=992px) {
  .header .global-nav__items {
    flex-direction: row;
    align-items: center;
    padding: 0
  }
}
.header .global-nav__item {
  opacity: 1;
  transition: opacity .3s ease-out
}
.header .global-nav__item:hover {
  opacity: .7
}
.header .global-nav__item:not(:first-child) {
  margin-top: 32px
}
@media (width>=992px) {
  .header .global-nav__item:not(:last-child) {
    margin-right: 36px
  }
  .header .global-nav__item:not(:first-child) {
    margin-top: 0
  }
}
.header .global-nav__item.sp-only {
  display: block
}
@media (width>=992px) {
  .header .global-nav__item.sp-only {
    display: none
  }
}
.header .global-nav__link {
  color: var(--base-color)
}
@media (width>=992px) {
  .header .global-nav__link {
    color: var(--main-color)
  }
}
.header .global-nav__link span {
  flex-direction: column;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  position: relative
}
@media (width>=992px) {
  .header .global-nav__link span {
    align-items: center
  }
}
.header .global-nav__link span:before {
  content: attr(data-en);
  margin-bottom: 4px;
  font-family: Josefin Sans, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1
}
.header__phone {
  color: var(--main-color);
  align-items: flex-end;
  margin-left: auto;
  font-family: Josefin Sans, sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
  display: flex
}
@media (width>=992px) {
  .header__phone {
    display: none
  }
}
.header__phoneNumber span {
  margin-right: 4px;
  font-size: 1.4rem;
  font-weight: 400
}
.header .extra-nav-sp {
  color: var(--base-color);
  padding: 24px 40px
}
@media (width>=992px) {
  .header .extra-nav-sp {
    display: none
  }
}
.header .nav-phone-sp {
  grid-gap: 0 12px;
  grid-template-columns: 1fr 1fr;
  padding: 10px 40px 0;
  display: grid;
  position: relative
}
.header .nav-phone-sp img {
  width: 64px;
  height: 64px;
  position: absolute;
  bottom: -24px;
  right: 32px
}
.header .nav-phone-sp li {
  background-color: var(--base-color);
  color: var(--main-color);
  border-radius: 10px;
  line-height: 1
}
.header .nav-phone-sp li a {
  flex-direction: column;
  align-items: center;
  padding: 12px;
  display: flex
}
.header .nav-phone-sp__text {
  margin-bottom: 8px;
  font-size: 1.1rem
}
.header .nav-phone-sp__number {
  font-family: Josefin Sans, sans-serif;
  font-size: 1.8rem;
  font-weight: 400
}
@media (width>=992px) {
  .header .nav-phone-sp {
    display: none
  }
}
.header .nav-button-sp {
  background-color: var(--main-color);
  color: #fff;
  border-radius: 24px;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 48px;
  display: flex;
  position: fixed;
  top: auto;
  bottom: 40px;
  left: calc(50% - 60px);
  box-shadow: 0 4px 16px #11111a1a, 0 8px 32px #11111a0d
}
.header .nav-button-sp.is-open {
  color: var(--main-color);
  background-color: #fff
}
.header .nav-button-sp span {
  letter-spacing: .05em;
  margin-top: 4px;
  font-family: Josefin Sans, sans-serif;
  font-size: 1.6rem;
  font-weight: 700
}
@media (width>=992px) {
  .header .nav-button-sp {
    display: none
  }
}
.footer {
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
  margin-bottom: 80px;
  display: flex;
  position: relative
}
@media (width>=688px) {
  .footer {
    margin-top: 200px;
    margin-bottom: 0
  }
}
.footer__copy {
  text-align: center;
  width: 160px;
  height: auto
}
@media (width>=688px) {
  .footer__copy {
    width: 160px;
    height: auto
  }
}
.footer__copy img {
  width: 100%;
  height: auto
}
.footer__logo {
  text-align: center;
  width: 320px;
  height: auto;
  margin-top: 32px;
  margin-bottom: 48px
}
@media (width>=688px) {
  .footer__logo {
    width: 460px;
    height: auto;
    margin-top: 40px;
    margin-bottom: 64px
  }
}
.footer__logo img {
  width: 100%;
  height: auto
}
.footer__capsule .icon-capsule {
  width: 18px;
  height: 18px;
  margin: 48px auto
}
@media (width>=688px) {
  .footer__capsule .icon-capsule {
    width: 24px;
    height: 24px;
    margin: 64px auto
  }
}
.footer__pelican {
  margin-bottom: 12px
}
.footer__pelican img {
  width: 82px;
  height: auto
}
.footer__linkItems {
  text-align: center
}
.footer__linkItem {
  letter-spacing: .05em;
  font-size: 1.4rem
}
.footer__linkItem a {
  color: #1a1a1ab3;
  opacity: 1;
  transition: opacity .3s
}
.footer__linkItem a:hover {
  opacity: .7
}
.footer__copyright {
  color: #1a1a1ab3;
  letter-spacing: .05em;
  margin: 40px auto
}
.arrow-link {
  color: var(--main-color);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1
}
@media (width>=688px) {
  .arrow-link {
    font-size: 1.4rem
  }
}
.arrow-link a {
  align-items: center;
  display: flex
}
.arrow-link a:hover .icon {
  transform: scale(1.1)
}
.arrow-link__text {
  margin-right: 20px
}
.arrow-link .icon {
  background-color: var(--main-color);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  transition: transform .3s;
  display: flex;
  transform: scale(1)
}
@media (width>=688px) {
  .arrow-link .icon {
    width: 40px;
    height: 40px
  }
}
.arrow-link .icon-arrow {
  fill: #fff;
  width: 20px;
  height: 20px
}
@media (width>=688px) {
  .arrow-link .icon-arrow {
    width: 24px;
    height: 24px
  }
}
.arrow-link-back {
  color: var(--main-color);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1
}
@media (width>=688px) {
  .arrow-link-back {
    font-size: 1.4rem
  }
}
.arrow-link-back a {
  align-items: center;
  display: flex
}
.arrow-link-back a:hover .icon {
  transform: scale(1.1)
}
.arrow-link-back__text {
  margin-left: 20px
}
.arrow-link-back .icon {
  background-color: var(--main-color);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  transition: transform .3s;
  display: flex;
  transform: scale(1)
}
@media (width>=688px) {
  .arrow-link-back .icon {
    width: 40px;
    height: 40px
  }
}
.arrow-link-back .icon-arrow {
  fill: #fff;
  width: 20px;
  height: 20px;
  transform: rotate(180deg)
}
@media (width>=688px) {
  .arrow-link-back .icon-arrow {
    width: 24px;
    height: 24px
  }
}
.arrow-link-goToTop {
  color: var(--main-color);
  font-family: Josefin sans, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  bottom: -32px;
  right: 5%
}
@media (width>=688px) {
  .arrow-link-goToTop {
    font-size: 1.8rem;
    bottom: 64px;
    right: 5%
  }
}
.arrow-link-goToTop a {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex
}
.arrow-link-goToTop a:hover .icon {
  transform: scale(1.1)
}
.arrow-link-goToTop__text {
  margin-bottom: 4px;
  display: block
}
.arrow-link-goToTop .icon {
  background-color: var(--main-color);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  transition: transform .3s;
  display: flex;
  transform: scale(1)
}
@media (width>=688px) {
  .arrow-link-goToTop .icon {
    width: 40px;
    height: 40px
  }
}
.arrow-link-goToTop .icon-arrow {
  fill: #fff;
  width: 20px;
  height: 20px;
  transform: rotate(-90deg)
}
@media (width>=688px) {
  .arrow-link-goToTop .icon-arrow {
    width: 24px;
    height: 24px
  }
}
.button-link {
  background-color: var(--base-color);
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  min-width: 248px;
  min-height: 60px;
  padding: 0 24px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  position: relative
}
.button-link:hover .icon {
  transform: scale(1.1)
}
.button-link__text {
  color: var(--main-color);
  font-weight: 700
}
.button-link .icon {
  background-color: var(--main-color);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  transition: transform .3s;
  display: flex;
  position: absolute;
  right: 16px;
  transform: scale(1)
}
.button-link .icon-arrow {
  fill: #fff;
  width: 18px;
  height: 18px
}
.fade-in {
  opacity: 0;
  transform: matrix(1, 0, 0, 1, 0, 18)
}
.zoom-out {
  opacity: 0;
  transform-origin: 50% 0;
  transform: scale(1.05)
}
.object-peliacn {
  z-index: -1;
  width: 46vw;
  height: 46vw;
  position: absolute;
  top: 20%;
  left: 64vw
}
@media (width>=688px) {
  .object-peliacn {
    width: 360px;
    top: 18%;
    left: 64vw
  }
}
@media (width>=992px) {
  .object-peliacn {
    width: 480px;
    top: 24%;
    left: 74vw
  }
}
.object-peliacn img {
  width: 100%;
  height: auto
}

.mailform__header {
  --gap-min: 24px;
  --gap-val: 50px;
  --gap-header: 80px;
  --gap-max: 160px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  width: calc(100% - var(--gap-min))
}

@media (min-width:688px) {
  .mailform__header {
    width: calc(100% - var(--gap-val))
  }
}

@media (min-width:1280px) {
  .mailform__header {
    width: calc(100% - var(--gap-header))
  }
}

@media (min-width:688px) {
  .mailform__header {
    padding-top: 0
  }
}

.mailform__title {
  color: var(--main-color);
  font-weight: 700;
  padding-top: 24px
}

@media (min-width:688px) {
  .mailform__title {
    padding-top: 100px
  }
}

.mailform__title span {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-size: 1.5rem;
  line-height: 1
}

@media (min-width:688px) {
  .mailform__title span {
    font-size: 1.8rem
  }
}

.mailform__title span:before {
  content: attr(data-en);
  font-family: Josefin Sans, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1;
  margin-bottom: 6px;
  margin-right: -.2em
}

@media (min-width:688px) {
  .mailform__title span:before {
    font-size: 4rem;
    letter-spacing: .1em;
    margin-bottom: 12px
  }
}

.mailform__content {
  margin-left: auto;
  margin-right: auto;
  padding-top: 60px;
  width: calc(100% - 24px)
}

@media (min-width:688px) {
  .mailform__content {
    max-width: 800px;
    padding-top: 120px;
    width: calc(100% - 50px)
  }
}

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  margin: 0
}

button {
  vertical-align: middle
}

button,
input {
  line-height: normal
}

input[type=password],
input[type=text] {
  height: 44px;
  width: 100%
}

input[type=password],
input[type=text],
textarea {
  background: #fff;
  border: 1px solid #cdcdcd;
  padding: 1px 10px
}

input[type=password]:focus,
input[type=text]:focus,
textarea:focus {
  border: 1px solid #209dd9
}

input[type=button] {
  cursor: pointer
}

.box__ttl input[type=button] {
  height: 26px;
  line-height: 26px;
  margin-right: 5px
}

input[type=checkbox] {
  cursor: pointer
}

input[type=button]:disabled,
input[type=checkbox]:disabled,
input[type=submit]:disabled {
  cursor: default
}

textarea {
  overflow: auto;
  vertical-align: top;
  width: 100%
}

select {
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
  border: 1px solid #cdcdcd;
  height: 40px;
  line-height: normal;
  padding: 1px 6px
}

label {
  cursor: pointer;
  padding-left: 30px;
  position: relative;
  vertical-align: middle
}

input[type=checkbox] {
  display: none
}

input[type=checkbox]+label {
  display: block
}

input[type=checkbox]+label:not(:first-child) {
  margin-top: 8px
}

input[type=checkbox]+label+br {
  display: none
}

input[type=checkbox]+label:before {
  border: 1px solid #ccc;
  content: "";
  display: block;
  height: 20px;
  left: 0;
  position: absolute;
  top: 2px;
  width: 20px
}

input[type=checkbox]:checked+label:before {
  background: #777
}

input[type=checkbox]:checked+label:after {
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
  display: block;
  height: 9px;
  left: 8px;
  position: absolute;
  top: 7px;
  transform: rotate(40deg);
  width: 5px
}

input[type=radio] {
  display: none
}

input[type=radio]+label {
  margin-right: 24px
}

input[type=radio]+label:before {
  border: 1px solid #999;
  border-radius: 50%;
  content: "";
  display: block;
  height: 19px;
  left: 0;
  position: absolute;
  top: -2px;
  width: 19px
}

input[type=radio]:checked+label:before {
  background: #fff
}

input[type=radio]:checked+label:after {
  background: #777;
  border-radius: 50%;
  content: "";
  display: block;
  height: 11px;
  left: 4px;
  position: absolute;
  top: 2px;
  width: 11px
}

.red_txt {
  color: #f33;
  font-size: 1.8rem;
}

#txt_explain {
  color: #1a1a1a
}

#txt_explain_complete {
  border-bottom: 1px solid #dadedf;
  padding-bottom: 40px
}

.table {
  margin: 20px auto;
  width: 100%
}

.table th {
  font-weight: 700;
  padding: 20px 0 0
}

.table td,
.table th {
  color: #1a1a1a;
  display: block;
  font-size: 14px;
  width: 100%
}

.table td {
  background: #fff;
  border-bottom: 1px solid #dadedf;
  padding: 10px 0 20px
}

@media (min-width:560px) {
  .table th {
    border-bottom: 1px solid #dadedf;
    width: 30%
  }

  .table td,
  .table th {
    display: table-cell;
    padding: 40px
  }

  .table td {
    width: 70%
  }
}

.red {
  color: #c02f1d
}

.buttonBox {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 60px;
  position: relative
}

.buttonBox .button {
  background-color: #00abeb;
  border-radius: 4px;
  color: #fff
}

.buttonBox .button,
.buttonBox .button-w {
  align-items: center;
  display: flex;
  font-size: 1.5rem;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  min-height: 60px;
  min-width: 248px;
  padding: 0 24px;
  position: relative
}

.buttonBox .button-w {
  background-color: #fff;
  border: 1px solid #00abeb;
  border-radius: 4px;
  color: #00abeb;
  margin-top: 24px
}