.l-header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
}

.l-header__inner {
  height: 60px;
  padding: 0 16px;
  background-color: #fff;
}

.l-header__inner .c-header__logo {
  width: 124px;
  margin: 0 auto;
  padding: 10px 0 0;
}

.l-header__inner .c-header__logo img {
  width: 100%;
}

.l-header__inner .c-hamburgermenu__btn {
  position: fixed;
  z-index: 90;
  top: 5px;
  right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 50px;
  width: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
}

.l-header__inner .c-hamburgermenu__btn:hover {
  cursor: pointer;
}

.l-header__inner .c-hamburgermenu__btn span {
  content: '';
  position: absolute;
  display: block;
  height: 2px;
  width: 20px;
  border-radius: 3px;
  background-color: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.l-header__inner .c-hamburgermenu__btn span::before, .l-header__inner .c-hamburgermenu__btn span::after {
  content: '';
  display: block;
  height: 2px;
  width: 20px;
  border-radius: 3px;
  background-color: #000;
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.l-header__inner .c-hamburgermenu__btn span::before {
  bottom: 6px;
}

.l-header__inner .c-hamburgermenu__btn span::after {
  top: 6px;
}

.l-header__inner .c-hamburgermenu .p-gnavSp {
  position: fixed;
  top: 60px;
  right: -100%;
  width: 100%;
  height: calc(100vh - 60px);
  background: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.l-header__inner .c-hamburgermenu .p-gnavSp.active {
  right: 0;
}

.l-header__inner .c-hamburgermenu .p-gnavSp__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: calc(100vh - 60px);
}

.l-header__inner .c-hamburgermenu .p-gnavSp__listItem {
  width: 30%;
  height: 400px;
}

.l-header__inner .c-hamburgermenu .p-gnavSp__listItem a {
  color: #000;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.l-header__inner .c-hamburgermenu .p-gnavSp__listItem a:hover {
  opacity: 0.7;
}

.l-header__inner .c-hamburgermenu .p-gnavSp__listTitle {
  margin-bottom: 26px;
  font-size: 12px;
}
.l-header__inner .c-hamburgermenu .p-gnavSp__list .c-menu__listItem {
   text-align: center;
}
.l-header__inner .c-hamburgermenu .p-gnavSp__list .c-menu__listItem:nth-last-child(n+2) {
  margin-bottom: 24px;
}

.l-header__inner .c-hamburgermenu .p-gnavSp__list .c-ec__listItem:nth-last-child(n+2) {
  margin-bottom: 24px;
}

.l-header__inner .c-hamburgermenu .p-gnavSp__list .c-ec__listItem i {
  margin-left: 2px;
  font-size: 12px;
}

.l-header__inner .c-hamburgermenu #menu-btn-check {
  display: none;
}

.l-header__inner .c-hamburgermenu #menu-btn-check:checked ~ .c-hamburgermenu__btn span {
  background-color: rgba(255, 255, 255, 0);
}

.l-header__inner .c-hamburgermenu #menu-btn-check:checked ~ .c-hamburgermenu__btn span::before {
  bottom: 0;
}

.l-header__inner .c-hamburgermenu #menu-btn-check:checked ~ .c-hamburgermenu__btn span::after {
  top: 0;
}

.l-header__inner .p-gnavPc {
  display: none;
}

.l-main__visual {
  height: 100vh;
}

.l-main__visual video {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.l-main__visual img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.l-main .c-scrolldown {
  position: absolute;
  right: 16px;
  bottom: 60px;
  height: 60px;
}

.l-main .c-scrolldown span {
  position: absolute;
  left: -26px;
  top: -16px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  color: #fff;
  font-size: 0.8rem;
  font-weight: bold;
}

.l-main .c-scrolldown::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 60px;
  background: #fff;
  -webkit-animation: pathmove 1.4s infinite;
          animation: pathmove 1.4s infinite;
  opacity: 0;
}

@-webkit-keyframes pathmove {
  0% {
    height: 30px;
    top: 20px;
    opacity: 1;
  }
  20% {
    height: 60px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 100px;
    opacity: 0;
  }
}

@keyframes pathmove {
  0% {
    height: 30px;
    top: 20px;
    opacity: 1;
  }
  20% {
    height: 60px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 100px;
    opacity: 0;
  }
}

.l-main__section {
  padding: 90px 0;
}

.c-sectionTitle {
  margin-bottom: 46px;
  font-size: 24px;
  text-align: center;
}

.c-sectionText {
  margin-bottom: 46px;
  font-size: 14px;
  text-align: center;
  line-height: 1.8;
}

.c-moreBtn {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.c-moreBtn a {
  display: block;
  padding: 10px 30px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  color: #000;
}

.c-moreBtn::before, .c-moreBtn::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background: #000;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.c-moreBtn::before {
  right: 0;
  top: 0;
}

.c-moreBtn::after {
  left: 0;
  bottom: 0;
}

.c-moreBtn span {
  display: block;
}

.c-moreBtn span::before,
.c-moreBtn span::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 0;
  background: #000;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.c-moreBtn span::before {
  left: 0;
  top: 0;
}

.c-moreBtn span::after {
  right: 0;
  bottom: 0;
}

.c-moreBtn:hover::before, .c-moreBtn:hover::after {
  width: 100%;
}

.c-moreBtn:hover span::before,
.c-moreBtn:hover span::after {
  height: 100%;
}

.p-news__list {
  list-style: none;
}

.p-news__listItem {
  margin-bottom: 32px;
  padding: 0 2.5%;
}

.p-news__listItem:last-child {
  margin-bottom: 64px;
}

.p-news__listItem a {
  text-decoration: none;
}

.p-news__listItem a:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.p-news__image {
  overflow: hidden;
}

.p-news__image img {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 8s;
  transition: 8s;
}

.p-news__title {
  padding: 0.5em 0.5em 0;
  color: #000;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
}

.p-news__heading {
  line-height: 1.5;
}

.p-news__inner {
  background-color: #fff;
}

.p-news .c-news__image {
  position: -webkit-sticky;
  position: sticky;
  top: 60px;
  left: 0;
  z-index: -1;
  text-align: center;
}

.p-news .c-news__image img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-news .c-news__title {
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
  font-size: 32px;
}

.p-news .c-news__date {
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
  font-size: 12px;
}

.p-news .c-news__contents {
  max-width: 864px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 60px 16px;
  font-size: 14px;
  line-height: 2;
}

.nav-links {
  text-align: center;
  font-size: 18px;
}

.nav-links a {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}

.nav-links .page-numbers {
  padding: 0 16px;
}

.nav-links .page-numbers.current {
  text-decoration: underline;
  text-underline-offset: 6px;
}

.p-about {
  background-color: #eee;
}

.p-about__image {
  position: relative;
  width: 85%;
  aspect-ratio: 1 / 1;
  margin: 0 0 90px 15%;
  background: center/contain no-repeat url("../img/about.jpg");
}

.p-about__img {
  position: absolute;
  top: 38%;
  left: -15%;
  width: 60%;
}

.p-about__title {
  margin-bottom: 28px;
  font-size: 24px;
  text-align: center;
}

.p-about__list {
  width: 80%;
  margin: 0 auto;
  padding-top: 90px;
  font-size: 14px;
}

.p-about__listTitle {
  height: 36px;
  font-weight: bold;
  line-height: 36px;
}

.p-about__listTitle:nth-of-type(n+2) {
  margin-top: 22px;
}

.p-about__listData {
  min-height: 36px;
  line-height: 1.6;
}

.p-contact {
  width: 100%;
}

.p-form {
  width: 80%;
  margin: 0 auto;
}

.p-formItem {
  margin-bottom: 44px;
}

.p-formItem__label {
  font-size: 14px;
  font-weight: bold;
  line-height: 50px;
}

.p-formItem__label--required {
  margin-left: 10px;
  color: #d50f0f;
}

.p-formItem__input {
  width: 100%;
  padding: 0.7em 0.5em;
  font-size: 14px;
}

.p-formItem__textarea {
  width: 100%;
  padding: 0.7em 0.5em;
  font-size: 14px;
}

.p-formBtn {
  display: block;
  width: 100px;
  height: 32px;
  margin: 0 auto;
  border: none;
  border-radius: 16px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  background-color: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-formBtn:hover {
  cursor: pointer;
  opacity: 0.7;
}

.wpcf7 form .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output {
  border: none;
  text-align: center;
}

.l-footer {
  padding: 90px 0;
  border-top: 1px solid #eee;
  text-align: center;
}

.l-footer__logo {
  width: 120px;
  margin: 0 auto 48px;
}

.l-footer__tel {
  margin-bottom: 64px;
}

.l-footer__tel a {
  padding: 4px 16px;
  border-radius: 16px;
  background-color: #eee;
  color: #000;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
}

.l-footer__tel a:hover {
  opacity: 0.7;
}

.l-footer .p-footer__list {
  margin-bottom: 90px;
  list-style: none;
}

.l-footer .p-footer__listItem:nth-last-child(n+2) {
  margin-bottom: 32px;
}

.l-footer .p-footer__listItem a {
  color: #000;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.l-footer .p-footer__listItem a:hover {
  opacity: 0.7;
}

.l-footer .p-footer__listItem a img {
  width: 160px;
}

.l-footer .p-footer__listItem a i {
  font-size: 28px;
}

.l-footer .p-footer__listItem .c-ill__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  margin-bottom: 64px;
}

.l-footer .p-footer__listItem .c-ill__listItem:first-child {
  margin-right: 32px;
}

.l-footer .p-footer__listItem .c-ec__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
}

.l-footer .p-footer__listItem .c-ec__listItem {
  width: 48%;
  text-align: left;
}

.l-footer .p-footer__listItem .c-ec__listItem:nth-child(-n+2) {
  margin-bottom: 8px;
}

.l-footer .p-footer__listItem .c-ec__listItem:nth-child(odd) {
  text-align: right;
}

.l-footer .p-footer__listTitle {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: bold;
}

.l-footer__copy {
  font-size: 10px;
  font-weight: bold;
}

@media (min-width: 960px) {
  .l-header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 72px;
    padding: 0 28px;
  }
  .l-header__inner .c-header__logo {
    width: 150px;
    margin: 0;
  }
  .l-header__inner .c-hamburgermenu {
    display: none;
  }
  .l-header__inner .p-gnavPc {
    display: block;
  }
  .l-header__inner .p-gnavPc__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .l-header__inner .p-gnavPc__listItem:nth-child(n+2) {
    margin: 0 0 0 24px;
  }
  .l-header__inner .p-gnavPc__listItem a, .l-header__inner .p-gnavPc__listItem p {
    color: #000;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .l-header__inner .p-gnavPc__listItem a:hover, .l-header__inner .p-gnavPc__listItem p:hover {
    opacity: 0.7;
  }
  .l-header__inner .p-gnavPc .c-ec__list {
    position: fixed;
    top: 72px;
    right: -50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 20%;
    height: calc(100vh - 72px);
    padding: 0 28px;
    background-color: #fff;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .l-header__inner .p-gnavPc .c-ec__list.active {
    right: 0;
  }
  .l-header__inner .p-gnavPc .c-ec__listItem {
    text-align: right;
  }
  .l-header__inner .p-gnavPc .c-ec__listItem:nth-last-child(n+2) {
    margin-bottom: 24px;
  }
  .l-header__inner .p-gnavPc .c-ec__listItem i {
    margin-left: 6px;
    font-size: 14px;
  }
  .l-main__section {
    padding: 144px 0;
  }
  .c-sectionTitle {
    margin-bottom: 72px;
    font-size: 32px;
  }
  .c-sectionText {
    margin-bottom: 72px;
    font-size: 16px;
  }
  .c-moreBtn a {
    font-size: 18px;
  }
  .p-news__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: left;
  }
  .p-news__listItem {
    width: calc(85% / 3);
    margin-bottom: 64px;
  }
  .p-news__image img {
    width: 100% !important;
  }
  .p-news .c-news__image {
    top: 72px;
  }
  .p-news .c-news__title {
    max-width: 1024px;
    padding: 36px;
    font-size: 46px;
  }
  .p-news .c-news__date {
    padding: 36px;
    font-size: 14px;
  }
  .p-news .c-news__contents {
    padding: 110px 0;
    font-size: 16px;
  }
  .p-about__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 72px;
  }
  .p-about__image {
    width: 50%;
    margin: 0;
  }
  .p-about__img {
    position: absolute;
    top: -5%;
    left: 0;
    right: 0;
    width: 60%;
    margin: 0 auto;
  }
  .p-about__title {
    margin-bottom: 48px;
    font-size: 28px;
    text-align: center;
  }
  .p-about__text {
    width: 40%;
    margin: 0 auto;
  }
  .p-about__list {
    width: 60%;
    padding-top: 144px;
    font-size: 16px;
  }
  .p-contact .p-form {
    width: 60%;
  }
  .p-contact .p-formItem {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 72px;
  }
  .p-contact .p-formItem__label {
    width: 30%;
    font-size: 16px;
  }
  .p-contact .p-formItem__input {
    font-size: 16px;
  }
  .p-contact .p-formItem__textarea {
    font-size: 16px;
  }
  .p-contact .p-formBtn {
    width: 120px;
    height: 40px;
    border-radius: 20px;
    font-size: 18px;
  }
  .wpcf7 input[type="text"],
  .wpcf7 input[type="url"],
  .wpcf7 input[type="email"],
  .wpcf7 input[type="tel"],
  .wpcf7 textarea[name="message"] {
    width: 100%;
    min-width: 380px;
  }
  .l-footer {
    padding: 144px 0;
  }
  .l-footer__logo {
    width: 150px;
  }
  .l-footer .p-footer__listItem a {
    font-size: 16px;
  }
  .l-footer .p-footer__listItem a img {
    width: 200px;
  }
  .l-footer .p-footer__listItem a i {
    font-size: 32px;
  }
  .l-footer .p-footer__listItem .c-ec__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .l-footer .p-footer__listItem .c-ec__listItem {
    width: 90px;
    text-align: center;
  }
  .l-footer .p-footer__listItem .c-ec__listItem:nth-child(-n+2) {
    margin-bottom: 0;
  }
  .l-footer .p-footer__listItem .c-ec__listItem:nth-child(odd) {
    text-align: center;
  }
  .l-footer .p-footer__listTitle {
    margin-bottom: 12px;
  }
  .l-footer .p-footer__list__copy {
    font-size: 12px;
  }
}
/*# sourceMappingURL=style.css.map */