@charset "UTF-8";
/* layout */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  background-color: #F1F1F1;
  height: 100%;
}

body {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  color: #333;
  font-size: 1.6rem;
  line-height: 250%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
    padding: 0;
    line-height: 200%;
  }
}

a {
  opacity: 1;
  transition: 0.3s all;
}
a:hover {
  opacity: 0.5;
}

img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .is-sp {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}

.l-wrapper {
  padding: 0 120px;
  max-width: 1040px;
  margin: 0 auto;
}

.c-h2Ttl {
  text-align: center;
  font-weight: 700;
}
.c-h2Ttl .en {
  font-size: 3.2rem;
  line-height: 100%;
  display: inline-block;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .c-h2Ttl .en {
    font-size: 3rem;
  }
}
.c-h2Ttl .en:after {
  content: "";
  position: absolute;
  height: 10px;
  width: 120%;
  background-color: #FFD1AB;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.c-h2Ttl h2 {
  font-size: 1.8rem;
  line-height: 150%;
  letter-spacing: 1.8px;
  padding-top: 14px;
}
@media screen and (max-width: 767px) {
  .c-h2Ttl h2 {
    font-size: 1.6rem;
    line-height: 100%;
  }
}

.header {
  position: relative;
  z-index: 999;
}
.header__left {
  position: absolute;
  top: 50px;
  left: 50px;
}
.header__left .contact {
  margin-top: -34px;
}
.header__left .contact a {
  position: relative;
  padding-top: 24px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-weight: 700;
  letter-spacing: 1.6px;
}
.header__left .contact a:before {
  content: "";
  position: absolute;
  background: url("../image/common/ic-message.svg") no-repeat;
  width: 20px;
  height: 20px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.header__left .link {
  display: flex;
  gap: 0 20px;
  padding-left: 64px;
}
.header__left .link img {
  width: 24px;
}
.header__right {
  position: fixed;
  top: 50px;
  right: 40px;
}
.header__right ul {
  display: flex;
  flex-direction: column;
  gap: 24px 0;
}
.header__right ul a {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-weight: 700;
  letter-spacing: 1.6px;
}
@media screen and (max-width: 767px) {
  .header__sp {
    position: relative;
  }
  .header__spLogo {
    text-align: left;
  }
  .header__spLogo img {
    width: 230px;
    object-fit: contain;
  }
  .header__nav {
    position: fixed;
    top: 40px;
    right: 30px;
    z-index: 999;
  }
  .header__navBtn {
    position: relative;
    cursor: pointer;
    width: 18px;
    height: 18px;
    z-index: 9999;
  }
  .header__navBtn span {
    display: inline-block;
    transition: all 0.4s; /*アニメーションの設定*/
    position: absolute;
    left: 1px;
    height: 2px;
    border-radius: 5px;
    background: #333;
    width: 100%;
  }
  .header__navBtn span:nth-of-type(1) {
    top: 2px;
  }
  .header__navBtn span:nth-of-type(2) {
    top: 9px;
  }
  .header__navBtn span:nth-of-type(3) {
    top: 16px;
  }
  .header__navBtn.active span:nth-of-type(1) {
    top: 4px;
    left: 1px;
    transform: translateY(6px) rotate(-45deg);
  }
  .header__navBtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .header__navBtn.active span:nth-of-type(3) {
    top: 16px;
    left: 1px;
    transform: translateY(-6px) rotate(45deg);
  }
  .header__navInner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #F1F1F1;
    padding: 40px 30px 50px;
    box-sizing: border-box;
    overflow: auto;
    opacity: 0;
    transform: translateY(-20px);
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
  }
  .header__navInner.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
  .header__navInner .logo img {
    width: 230px;
  }
  .header__navInner .nav {
    background-color: #fff;
    margin-top: 30px;
    border-radius: 12px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px 0;
  }
  .header__navInner .nav li {
    width: 130px;
    text-align: center;
    padding-bottom: 16px;
    border-bottom: 1px solid #CCC;
  }
  .header__navInner .nav a {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: 1.6px;
  }
  .header__navInner .contact {
    padding-top: 50px;
    text-align: center;
  }
  .header__navInner .contact a {
    position: relative;
    padding-left: 30px;
    font-size: 1.6rem;
    font-weight: 700;
  }
  .header__navInner .contact a:before {
    content: "";
    position: absolute;
    background: url("../image/common/ic-message.svg") no-repeat;
    width: 20px;
    height: 20px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .header__navInner .link {
    display: flex;
    justify-content: center;
    gap: 0 30px;
    padding-top: 30px;
  }
  .header__navInner .link img {
    width: 26px;
    height: 26px;
  }
}

.footer {
  max-width: 1040px;
  margin: 80px auto 0;
  position: sticky;
  top: 100vh;
}
@media screen and (max-width: 767px) {
  .footer {
    margin: 40px 30px 0;
  }
}
.footer__inner {
  background-color: #fff;
  padding: 40px;
  text-align: center;
  border-radius: 30px 30px 0px 0px;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    padding: 20px;
  }
}
.footer__copy {
  font-size: 1.2rem;
  line-height: 150%;
}

/* top */
.topPage section {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .topPage section {
    padding: 50px 30px;
  }
}

.main {
  background-color: #fff;
  border-radius: 0 0 30px 30px;
  height: 90vh;
  position: relative;
}
@media screen and (max-width: 767px) {
  .main {
    height: 76vh;
  }
}
.main h1 {
  position: absolute;
  bottom: 27%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .main h1 {
    bottom: initial;
    top: 20%;
  }
}
.main h1 img {
  width: 390px;
}
@media screen and (max-width: 767px) {
  .main h1 img {
    width: 325px;
  }
}
.main figure {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70vh;
}
@media screen and (max-width: 767px) {
  .main figure {
    height: 76vh;
  }
}
.main figure img {
  width: 540px;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .main figure img {
    width: 340px;
  }
}
.main .scroll {
  text-align: center;
  position: relative;
  bottom: -10%;
}
@media screen and (max-width: 767px) {
  .main .scroll {
    bottom: 16%;
  }
}
.main .scroll img {
  width: 50px;
  height: 50px;
}
.main .scroll p {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.6px;
  margin-top: -16px;
}

.about {
  max-width: 800px;
  margin: 0 auto;
}
.about__txt {
  padding-top: 56px;
}
@media screen and (max-width: 767px) {
  .about__txt {
    padding-top: 40px;
  }
}

.message {
  max-width: 800px;
  margin: 0 auto;
}
.message__inner {
  padding-top: 56px;
  display: flex;
  gap: 40px 56px;
}
@media screen and (max-width: 767px) {
  .message__inner {
    padding-top: 40px;
    flex-direction: column;
    align-items: center;
  }
}
.message__inner .img {
  flex: 0 0 25%;
}
@media screen and (max-width: 767px) {
  .message__inner .img {
    text-align: center;
    max-width: 200px;
  }
}
.message__inner .img img {
  border-radius: 10px;
}
.message__inner .img .name {
  line-height: 180%;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .message__inner .img .name {
    line-height: 150%;
  }
}
.message__inner .img .name span {
  font-size: 1.8rem;
  font-weight: 700;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .message__inner .img .name span {
    font-size: 1.6rem;
  }
}

.news__inner {
  display: flex;
  gap: 0 100px;
}
@media screen and (max-width: 767px) {
  .news__inner {
    flex-direction: column-reverse;
  }
}
.news__inner--left .c-h2Ttl {
  text-align: left;
}
.news__inner--left .catList {
  margin-top: 64px;
  padding: 9px;
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;
  display: flex;
  flex-direction: column;
  gap: 16px 40px;
  font-weight: 700;
  line-height: 280%;
  letter-spacing: 1.6px;
}
@media screen and (max-width: 767px) {
  .news__inner--left .catList {
    margin-top: 54px;
    padding: 20px;
    flex-direction: initial;
    flex-wrap: wrap;
  }
  .news__inner--left .catList li {
    width: calc(50% - 20px);
    line-height: 200%;
  }
}
.news__inner--left .btn {
  padding-top: 24px;
}
@media screen and (max-width: 767px) {
  .news__inner--left .btn {
    padding-top: 20px;
    text-align: center;
  }
}
.news__inner--left .btn a {
  padding: 9px 24px;
  border: 1px solid #666;
  border-radius: 6px;
  display: flex;
}
@media screen and (max-width: 767px) {
  .news__inner--left .btn a {
    padding: 5px 22px;
    display: inline-block;
  }
}
.news__inner--left .btn a img {
  width: 92px;
  height: 28px;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .news__inner--left .btn a img {
    width: 60px;
    height: 12px;
  }
}
.news__inner--right {
  width: 100%;
}
.news__inner--right .lead {
  line-height: 170%;
  padding-bottom: 16px;
  border-bottom: 1px solid #999;
}
@media screen and (max-width: 767px) {
  .news__inner--right .lead {
    padding-top: 40px;
  }
}
.news__inner--right .noteList {
  padding-top: 54px;
}
.news__inner--right .noteList .note__inner:not(:first-child) {
  padding-top: 24px;
}
.news__inner--right .noteList .link {
  padding-bottom: 24px;
  border-bottom: 1px solid #999;
  display: block;
}
.news__inner--right .noteList .date {
  font-size: 1.8rem;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .news__inner--right .noteList .date {
    font-size: 1.6rem;
  }
}
.news__inner--right .noteList .ttl {
  padding-top: 15px;
  line-height: 170%;
}
@media screen and (max-width: 767px) {
  .news__inner--right .noteList .ttl {
    padding-top: 10px;
    line-height: 150%;
  }
}

.promoters {
  background-color: #fff;
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .promoters {
    border-radius: 20px;
    margin: 0 30px;
    padding: 0 !important;
  }
}
.promoters__inner {
  padding: 0 40px 50px;
}
@media screen and (max-width: 767px) {
  .promoters__inner {
    padding: 50px 20px;
  }
}
.promoters__list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 56px;
}
@media screen and (max-width: 767px) {
  .promoters__list {
    padding-top: 40px;
    gap: 16px 24px;
  }
}
.promoters__list li {
  width: calc(25% - 30px);
}
@media screen and (max-width: 767px) {
  .promoters__list li {
    width: calc(50% - 12px);
  }
}
.promoters__list li figure {
  height: 130px;
  padding: 15px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  border: 1px solid #CCC;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .promoters__list li figure {
    height: 80px;
    padding: 10px;
  }
}
.promoters__list li p {
  font-size: 1.4rem;
  text-decoration: underline;
  padding-top: 8px;
  line-height: 150%;
}
@media screen and (max-width: 767px) {
  .promoters__list li p {
    padding-top: 6px;
  }
}

.main h1 img {
  animation: slideIn 3s cubic-bezier(0.25, 1, 0.5, 1) 2s forwards;
  opacity: 0;
}
.main figure img {
  animation: fadeIn 5s cubic-bezier(0.33, 1, 0.68, 1) 1s forwards;
  opacity: 0;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slideIn {
  0% {
    transform: translateY(180px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
.error {
  padding: 120px 120px 0;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .error {
    padding: 120px 30px 0;
  }
}
.error__logo {
  display: flex;
  justify-content: center;
}
.error__logo img {
  width: 390px;
}
@media screen and (max-width: 767px) {
  .error__logo img {
    width: 100%;
  }
}
.error__ttl {
  padding-top: 56px;
}
@media screen and (max-width: 767px) {
  .error__ttl {
    padding-top: 40px;
  }
}
.error__ttl .num {
  font-size: 8rem;
  line-height: 100%;
  display: inline-block;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .error__ttl .num {
    font-size: 4.8rem;
  }
}
.error__ttl .num:after {
  content: "";
  position: absolute;
  height: 10px;
  width: 120%;
  background-color: #FFD1AB;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.error__ttl .en {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1.8px;
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  .error__ttl .en {
    font-size: 1.6rem;
    line-height: 100%;
    letter-spacing: 1.6px;
    padding-top: 16px;
  }
}
.error__txt {
  padding-top: 56px;
}
@media screen and (max-width: 767px) {
  .error__txt {
    padding-top: 40px;
  }
}
.error__btn {
  padding-top: 24px;
}
@media screen and (max-width: 767px) {
  .error__btn {
    padding-top: 20px;
  }
}
.error__btn a {
  font-size: 2rem;
  font-weight: 700;
  line-height: 100%;
  padding: 14px 24px;
  border: 1px solid #666;
  border-radius: 8px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .error__btn a {
    font-size: 1.6rem;
  }
}/*# sourceMappingURL=style.css.map */