/* ---------------------------------------------------

    body

---------------------------------------------------- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

a {
  color: #007cb0;
  transition: .3s;
}

a:hover {
  opacity: .8;
}

.for-pc {
  display: block;
}

.for-sp {
  display: none;
}

.container {
  margin: 0 auto;
  max-width: 1000px;
  width: 100%;
}

.js-scrollEvent {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.6s;
}

.js-scrollEvent.is-active {
  opacity: 1;
  transform: translateX(0);
}

@media screen and (max-width: 767px) {
  .for-pc {
    display: none;
  }

  .for-sp {
    display: block;
  }

  .container {
    padding: 0 15px;
    width: auto;
  }
}

/* ---------------------------------------------------

    Header

---------------------------------------------------- */
.header {
  background: #000;
  height: 78px;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 900;
}

.header__inner {
  align-items: center;
  display: flex;
  height: 78px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1000px;
  width: 100%;
}

.headerLogo img {
  height: 42px;
  width: auto;
}

.headerNav {
  align-items: center;
  column-gap: 50px;
  display: flex;
}

.headerNav__list {
  align-items: center;
  column-gap: 50px;
  display: flex;
  font-size: 16px;
}

.headerNav__list li a {
  color: #fff;
  font-weight: bold;
  position: relative;
}

.headerNav__list li a:hover {
  color: #007cb0;
  opacity: 1;
}

.headerNav__list li a::after {
  display: inline-block;
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #007cb0;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.1s ease-in-out;
}

.headerNav__list li a:hover::after {
  transform: scaleX(100%);
}

.headerToggle {
  display: none;
}

.toggleMenu {
  display: none;
}

@media screen and (max-width: 767px) {
  .header {
    height: 67px;
  }

  .header__inner {
    height: 67px;
    padding: 0 0 0 15px;
    width: auto;
  }

  .headerLogo img {
    height: 35px;
  }

  .headerNav {
    display: none;
  }

  .headerToggle {
    cursor: pointer;
    display: block !important;
    height: 67px;
    position: relative;
    width: 67px;
  }

  .headerToggle span {
    background: #fff;
    height: 1px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 50%;
    transition: 0.4s;
    width: 32px;
  }

  .headerToggle span:nth-of-type(1) {
    top: 35%;
  }

  .headerToggle span:nth-of-type(3) {
    top: 65%;
  }

  .is-active .headerToggle span:nth-of-type(1) {
    top: 50%;
    transform: rotate(45deg);
  }

  .is-active .headerToggle span:nth-of-type(2) {
    display: none;
  }

  .is-active .headerToggle span:nth-of-type(3) {
    top: 50%;
    transform: rotate(-45deg);
  }

  .toggleMenu {
    background: #000;
    display: block;
    height: calc(100vh - 67px);
    left: 0;
    position: fixed;
    top: 67px;
    width: 100%;
    z-index: 900;
  }

  .toggleMenu__inner {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    row-gap: 40px;
  }

  .toggleMenu__list li {
    font-size: 20px;
    text-align: center;
  }

  .toggleMenu__list li a {
    color: #fff;
  }

  .toggleMenu__list li:nth-child(n + 2) {
    margin-top: 24px;
  }
}

/* ---------------------------------------------------

    Footer

---------------------------------------------------- */
.footer {
  padding: 0;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 0 0 86px;
  }
}

/* ---------------------------------------------------

    Button

---------------------------------------------------- */
.buttonApply {
  align-items: center;
  background: #26890d;
  border-radius: 100vmax;
  color: #fff;
  display: flex;
  font-size: 15px;
  height: 38px;
  justify-content: center;
  padding: 0 37px 0 28px;
  position: relative;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  background: linear-gradient(90deg, rgba(38, 137, 13, 1) 0%, rgba(0, 124, 176, 1) 100%);
  background-size: 200% 100%;
}

.buttonApply::before {
  content: "";
  border: 0;
  border-right: solid 2px #fff;
  border-top: solid 2px #fff;
  bottom: 0;
  content: "";
  height: 6px;
  margin: auto;
  position: absolute;
  right: 16px;
  top: 0;
  transform: rotate(45deg);
  width: 6px;
}

@media (min-width: 768px) {
  .buttonApply:hover {
    background-position: 100% 0;
    color: #fff;
    opacity: 1;
  }
}

.buttonApplyWrap {
  opacity: 0;
  z-index: 9;
  position: fixed;
  bottom: 1rem;
  right: 2rem;
}

.buttonApply.is-stuck {
  cursor: pointer;
  transition: .2scubic-bezier(0.45, 0, 0.55, 1);
  background: linear-gradient(90deg, rgba(38, 137, 13, 1) 0%, rgba(0, 124, 176, 1) 100%);
  background-size: 200% 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  border-radius: 50%;
  line-height: 1.25;
  padding: 0;
}

@media (min-width: 768px) {
  .buttonApply.is-stuck:hover {
    background-position: 100% 0;
    color: #fff;
  }

  .buttonApply.is-stuck::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .buttonApplyWrap {
    background-color: #fff;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 86px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, .2);
  }

  .buttonApply.is-stuck {
    width: 80%;
    height: 56px;
    border-radius: 100vmax;
  }
}

.buttonApply.is-w300 {
  font-weight: bold;
  height: 58px;
  padding: 0 72px;
  width: auto;
}

.buttonApply.is-w300::before {
  height: 8px;
  right: 24px;
  width: 8px;
}

@media (max-width: 767px) {
  .buttonApply.is-w300 {
    width: 80%;
    box-sizing: border-box;
    padding: 0;
  }
}

.buttonTotop {
  border: 1px solid #007cb0;
  padding: 20px 20px 10px;
  border-radius: 8px;
  color: #007cb0;
  position: relative;
  margin-bottom: 15px;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}

.buttonTotop::before {
  border: 0;
  border-right: solid 2px #007cb0;
  border-top: solid 2px #007cb0;
  bottom: 0;
  content: "";
  height: 6px;
  margin: auto;
  position: absolute;
  left: 50%;
  top: -15px;
  width: 6px;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  transform: translateX(-50%) rotate(-45deg);
}

@media (min-width: 768px) {
  .buttonTotop:hover {
    background-color: rgba(0, 124, 176, .2);
  }

  .buttonTotop:hover::before {
    top: -18px;
  }
}

.buttonTotop.is-stuck {
  position: fixed;
  bottom: 8rem;
  right: 2rem;
  font-size: 13px;
  font-weight: bold;
  border: 2px solid #007cb0;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 9;
}

@media (max-width: 767px) {
  .buttonTotop.is-stuck {
    bottom: 5rem;
    background-color: #fff;
    padding: 20px 10px 8px;
  }

  .buttonTotop.is-stuck::before {
    top: -27px;
  }
}

/* ---------------------------------------------------

    Headline

---------------------------------------------------- */
.headline {
  display: flex;
  justify-content: center;
}

.headline__inner {
  padding-bottom: 1.25rem;
  position: relative;
  text-align: center;
}

.headline__inner::after {
  background: #007cb0;
  bottom: 0;
  content: "";
  display: inline-block;
  height: 2px;
  left: 50%;
  position: absolute;
  width: 100px;
  transform: translateX(-50%) scaleX(0);
  transition: all 0.2s;
  transition-delay: 0.4s;
  transform-origin: left;
}

.headline.is-active .headline__inner::after {
  transform: translateX(-50%) scaleX(1);
  transform-origin: left;
}

.headline__title {
  color: #007cb0;
  font-size: 38px;
  font-weight: bold;
  letter-spacing: .025em;
}

.headline_lead {
  color: #007cb0;
  font-size: 16px;
  font-weight: bold;
  line-height: 30px;
  margin-top: 5px;
}

@media (max-width: 767px) {
  .headline_lead {
    margin-top: 0;
  }
}

/* ---------------------------------------------------

    modal

---------------------------------------------------- */
.js-modal-overlay {
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  height: 100%;
  justify-content: center;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.js-modal-content {
  background: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: calc(1000px - 90px);
  padding: 50px;
  position: relative;
  width: auto;
}

.js-close-modal {
  color: #707070;
  cursor: pointer;
  font-size: 30px;
  font-weight: 300;
  position: absolute;
  right: 30px;
  top: 30px;
}

.modalHead {
  align-items: center;
  column-gap: 16px;
  display: flex;
}

.modalHead__img img {
  height: auto;
  width: 190px;
}

.modalHead__name {
  font-size: 24px;
  font-weight: bold;
}

.modalHead__lead {
  color: #53565a;
  font-size: 16px;
  font-weight: 400;
  margin-top: 8px;
}

.modalMain {
  margin-top: 32px;
}

.modalMain__text {
  color: #53565a;
  font-size: 16px;
  line-height: 1.7;
}

.modalMain__text+.modalMain__text {
  margin-top: 16px;
}

@media screen and (max-width: 767px) {
  .js-modal-overlay {
    align-items: center;
    justify-content: center;
    padding: 20px;
    width: auto;
  }

  .js-modal-content {
    border-radius: 0;
    max-height: 80vh;
    overflow: auto;
    padding: 10px;
    width: auto;
  }

  .js-close-modal {
    font-size: 20px;
    right: 20px;
    top: 20px;
  }

  .modalHead {
    align-items: center;
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .modalHead__img img {
    width: 150px;
  }

  .modalMain {
    margin-top: 20px;
  }

  .modalHead__name {
    font-size: 18px;
    margin-top: 16px;
  }

  .modalHead__lead {
    font-size: 14px;
  }

  .modalMain__text {
    font-size: 14px;
    line-height: 1.6;
  }
}

.mx-auto {
  margin-left: auto;
  margin-right: auto
}

.mt-10 {
  margin-top: 2.5rem
}

.flex {
  display: flex
}

.max-w-5xl {
  max-width: 64rem
}

.flex-wrap {
  flex-wrap: wrap
}

.justify-center {
  justify-content: center
}

.space-x-5> :not([hidden])~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1.25rem * var(--tw-space-x-reverse));
  margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse)))
}

.space-y-3> :not([hidden])~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse))
}

.border-t {
  border-top-width: 1px;
  border-top-style: solid;
}

.border-gray-400 {
  --tw-border-opacity: 1;
  border-color: rgb(156 163 175 / var(--tw-border-opacity, 1));
}

.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1))
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem
}

.pt-4 {
  padding-top: 1rem
}

.text-center {
  text-align: center
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem
}

.font-medium {
  font-weight: 500
}

.leading-relaxed {
  line-height: 1.625
}

.text-blue-600 {
  --tw-text-opacity: 1;
  color: rgb(0 124 176 / var(--tw-text-opacity, 1))
}

.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1))
}

.text-gray-500 {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1))
}

.text-gray-600 {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1))
}

.underline {
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline
}

.hover\:underline:hover {
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline
}

@media (min-width: 768px) {
  .md\:px-0 {
    padding-left: 0px;
    padding-right: 0px
  }

  .md\:py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem
  }
}

/* 0319add */
.mb-4 {
  margin-bottom: 1rem
}
.mt-4 {
  margin-top: 1rem
}