﻿
@import url("css2-NotoSansJPwght400700900_swap.css");
/*----------------------------------------------
 html,body
----------------------------------------------*/
html {
  height: 100%;
}

body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  color: #000000;
  font-size: 16px;
  line-height: 1.875;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  background: #ffffff;
  padding-top: 97px;
}
@media (max-width: 767px) {
  body {
    padding-top: 71px;
  }
}

/*----------------------------------------------
 input
----------------------------------------------*/
input[type=text],
input[type=password],
input[type=search],
input[type=tel],
input[type=url],
input[type=email] {
  border-radius: 0;
  border: 1px solid #707070;
}
input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=search]::placeholder,
input[type=tel]::placeholder,
input[type=url]::placeholder,
input[type=email]::placeholder {
  color: #D1D1D1;
}

/*----------------------------------------------
 PC，SP出し分け
----------------------------------------------*/
.is-pc {
  display: block;
}
@media (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

.is-sp {
  display: none;
}
@media (max-width: 767px) {
  .is-sp {
    display: block;
  }
}

/*----------------------------------------------
 header
----------------------------------------------*/
.header {
  z-index: 100;
  position: fixed;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background: #ffffff;
  height: 97px;
  border-bottom: 1px solid #707070;
  width: 100%;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .header {
    height: 71px;
  }
}
.header .header__logoWrapper {
  margin: 0 auto;
  padding: 8px 0 0 24px;
}
.header .header__logoLink {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: inherit;
}
@media (hover: hover) {
  .header .header__logoLink:hover {
    opacity: 0.7;
  }
}
.header .header__logo {
  margin-bottom: 10px;
}
.header .header__title {
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  text-align: left;
}
@media (max-width: 767px) {
  .header .header__title {
    font-size: 18px;
  }
}
.header .header__subTitle {
  font-size: 17px;
  font-weight: bold;
  line-height: 1;
  padding-left: 10px;
  margin-top: 10px;
  text-align: left;
}
@media (max-width: 767px) {
  .header .header__subTitle {
    font-size: 10px;
    padding-left: 3px;
  }
}

/*----------------------------------------------
 simpleHeader
----------------------------------------------*/
.simpleHeader {
  text-align: center;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  height: 255px;
  width: 100%;
  padding: 54px 0;
}
@media (max-width: 767px) {
  .simpleHeader {
    height: 156px;
    padding: 42px 19px;
  }
}
.simpleHeader .simpleHeader__logoWrapper {
  margin: 0 auto;
}
.simpleHeader .simpleHeader__logoLink {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
@media (hover: hover) {
  .simpleHeader .simpleHeader__logoLink:hover {
    opacity: 0.7;
  }
}
.simpleHeader .simpleHeader__logo {
  margin-bottom: 10px;
  width: 55px;
}
@media (max-width: 767px) {
  .simpleHeader .simpleHeader__logo {
    width: 41px;
  }
}
.simpleHeader .simpleHeader__logo > img {
  width: 100%;
  height: auto;
}
.simpleHeader .simpleHeader__titleWrapper {
  padding-top: 10px;
}
@media (max-width: 767px) {
  .simpleHeader .simpleHeader__titleWrapper {
    padding-top: 4px;
  }
}
.simpleHeader .simpleHeader__title {
  font-size: 35px;
  font-weight: 900;
  line-height: 1;
  text-align: left;
}
@media (max-width: 767px) {
  .simpleHeader .simpleHeader__title {
    font-size: 23px;
  }
}
.simpleHeader .simpleHeader__subTitle {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  padding-left: 32px;
  margin-top: 22px;
  text-align: left;
}
@media (max-width: 767px) {
  .simpleHeader .simpleHeader__subTitle {
    font-size: 15px;
    padding-left: 3px;
    margin-top: 8px;
  }
}

/*----------------------------------------------
 menuButton
----------------------------------------------*/
.menuButton {
  z-index: 100;
  width: 40px;
  left: 30px;
  top: 27px;
  height: 30px;
  position: absolute;
  border: none;
  background: none;
  cursor: pointer;
}
@media (max-width: 767px) {
  .menuButton {
    width: 30px;
    left: 22px;
    top: 20px;
  }
}
.menuButton.is-open {
  width: 50px;
}
@media (max-width: 767px) {
  .menuButton.is-open {
    width: 35px;
  }
}
.menuButton.is-open .menuButton__line {
  width: 50px;
  height: 3px;
  opacity: 0;
}
@media (max-width: 767px) {
  .menuButton.is-open .menuButton__line {
    width: 35px;
    height: 2px;
  }
}
.menuButton.is-open .menuButton__line:first-child {
  transform: rotate(145deg);
  opacity: 1;
}
.menuButton.is-open .menuButton__line:last-child {
  transform: rotate(-145deg);
  opacity: 1;
}
.menuButton .menuButton__line {
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  background: #000000;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  opacity: 1;
}
@media (max-width: 767px) {
  .menuButton .menuButton__line {
    height: 2px;
  }
}
.menuButton .menuButton__line:first-child {
  opacity: 1;
  transform: translateY(-15px);
}
@media (max-width: 767px) {
  .menuButton .menuButton__line:first-child {
    transform: translateY(-12px);
  }
}
.menuButton .menuButton__line:last-child {
  opacity: 1;
  transform: translateY(15px);
}
@media (max-width: 767px) {
  .menuButton .menuButton__line:last-child {
    transform: translateY(12px);
  }
}

/*----------------------------------------------
 headerNav
----------------------------------------------*/
.headerNav {
  position: absolute;
  z-index: 1;
  top: 16px;
  right: 0;
  left: 0;
  margin: 0 auto;
  padding-left: 18vw;
}
.headerNav.is-open .headerNav__container {
  transition-delay: 0s;
  opacity: 1;
  visibility: visible;
}
.headerNav .headerNav__container {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0s ease 0.5s;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  background-color: rgba(255, 255, 255, 0);
}
.headerNav .headerNav__logoWrapper {
  height: 97px;
  border-bottom: 1px solid #707070;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .headerNav .headerNav__logoWrapper {
    height: 71px;
  }
}
.headerNav .headerNav__logoLink {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 0 0 24px;
  text-decoration: none;
  color: inherit;
}
@media (hover: hover) {
  .headerNav .headerNav__logoLink:hover {
    opacity: 0.7;
  }
}
.headerNav .headerNav__logo {
  margin-bottom: 10px;
}
.headerNav .headerNav__title {
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  text-align: left;
}
@media (max-width: 767px) {
  .headerNav .headerNav__title {
    font-size: 18px;
  }
}
.headerNav .headerNav__subTitle {
  font-size: 17px;
  font-weight: bold;
  line-height: 1;
  padding-left: 10px;
  margin-top: 10px;
  text-align: left;
}
@media (max-width: 767px) {
  .headerNav .headerNav__subTitle {
    font-size: 10px;
    padding-left: 3px;
  }
}
.headerNav .headerNav__navList {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 51px;
  padding: 133px 19px;
  justify-content: center;
}
.headerNav .headerNav__navItem {
  pointer-events: auto;
}

/*----------------------------------------------
 main
----------------------------------------------*/
.main {
  flex: 1;
}

/*----------------------------------------------
 footer
----------------------------------------------*/
.footer {
  position: relative;
  text-align: center;
  height: 106px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  background: #F4F4F4;
  padding: 0 26px 0 50px;
}
@media (max-width: 767px) {
  .footer {
    padding: 49px 19px 39px;
    height: auto;
    flex-direction: column;
  }
}
.footer .footer__linkList {
  display: flex;
  flex-wrap: nowrap;
  gap: 54px;
}
@media (max-width: 767px) {
  .footer .footer__linkList {
    flex-direction: column;
    gap: 24px;
  }
}
.footer .footer__link {
  font-size: 18px;
  color: #000000;
  display: block;
  line-height: 1.5;
}
@media (hover: hover) {
  .footer .footer__link:hover {
    opacity: 0.7;
  }
}
@media (max-width: 767px) {
  .footer .footer__logo > img {
    width: 100%;
    height: auto;
  }
}
.footer .footer__logoLink {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 166px;
}
@media (max-width: 767px) {
  .footer .footer__logoLink {
    width: 120px;
    position: relative;
    left: auto;
    right: auto;
    margin-top: 113px;
  }
}
@media (hover: hover) {
  .footer .footer__logoLink:hover {
    opacity: 0.7;
  }
}
.footer .footer__copyright {
  font-size: 16px;
}
@media (max-width: 767px) {
  .footer .footer__copyright {
    font-size: 12px;
    margin-top: 16px;
  }
}

/*----------------------------------------------
 button
----------------------------------------------*/
.button {
  text-decoration: none;
  border-radius: 36px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  border: 4px solid #000000;
  font-size: 25px;
  color: #ffffff;
  height: 70px;
  padding: 0 35px;
  min-width: 279px;
}
@media (max-width: 767px) {
  .button {
    height: 60px;
    min-width: 270px;
    font-size: 21px;
    padding: 0 15px;
  }
}
.button.button--primary {
  min-width: 279px;
  transition: transform 0.3s;
}
@media (max-width: 767px) {
  .button.button--primary {
    min-width: 206px;
    height: 53px;
  }
}
@media (hover: hover) {
  .button.button--primary:hover {
    transform: scale(1.2);
  }
}
.button.button--secondary {
  background: #ffffff;
  color: #000000;
  transition: border 0.3s, font-size 0.3s;
}
@media (hover: hover) {
  .button.button--secondary:hover {
    border: 6px solid #000000;
    font-size: 28px;
    font-weight: 900;
  }
}

/*----------------------------------------------
 アニメーション
----------------------------------------------*/
.js-scrollTarget {
  opacity: 0;
}

.js-scrollTarget-sp {
  opacity: 1;
}
@media (max-width: 767px) {
  .js-scrollTarget-sp {
    opacity: 0;
  }
}

.js-scrollTarget-pc {
  opacity: 0;
}
@media (max-width: 767px) {
  .js-scrollTarget-pc {
    opacity: 1;
  }
}

.animate__fadeInUpSmall {
  -webkit-animation-name: fadeInUpSmall;
  animation-name: fadeInUpSmall;
}

@-webkit-keyframes fadeInUpSmall {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInUpSmall {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

#valid_email {
  margin-top: 14px;
}


input:invalid {
  box-shadow: none;
}

/*# sourceMappingURL=common.css.map */
