.mainimage {
  height: calc(100svh - 100px);
  min-height: 750px;
  margin-bottom: 100px;
  position: relative;
}
@media screen and (max-width: 960px) {
  .mainimage {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .mainimage {
    height: calc(100svh - 80px);
    min-height: calc(100svh - 80px);
  }
}
.mainimage .logo {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: logo 6.3s forwards;
  position: relative;
  z-index: 3;
}
.mainimage .logo p {
  width: 100px;
}
.mainimage .skyBg {
  width: 100%;
  position: absolute;
  left: 0;
  background-color: #82C6E7;
  animation: skyBg 5.5s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  animation-delay: 1.2s;
  z-index: 2;
}
.mainimage .copy {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  max-width: calc(100% - 80px);
  animation: copy 5.8s forwards;
  animation-delay: 0.8s;
  opacity: 0;
  z-index: 1;
}
@keyframes logo {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  84% {
    opacity: 1;
  }
  86% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes skyBg {
  0% {
    height: 0%;
    bottom: 0;
    top: auto;
  }
  20% {
    height: 49.5%;
    bottom: 0;
    top: auto;
  }
  60% {
    height: 49.5%;
    bottom: 0;
    top: auto;
  }
  83% {
    height: 100%;
    bottom: 0;
    top: auto;
  }
  85% {
    height: 100%;
    bottom: auto;
    top: 0;
  }
  100% {
    height: 0%;
    bottom: auto;
    top: 0;
  }
}
@keyframes copy {
  0% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
  83% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
.mainimage .blue {
  animation: logoMove 0.5s forwards;
  opacity: 0;
}
.mainimage .b2 {
  animation-delay: 0.1s;
}
.mainimage .b3 {
  animation-delay: 0.2s;
}
.mainimage .b4 {
  animation-delay: 0.3s;
}
.mainimage .b5 {
  animation-delay: 0.4s;
}
.mainimage .b6 {
  animation-delay: 0.5s;
}
.mainimage .b7 {
  animation-delay: 0.6s;
}
@keyframes logoMove {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.mainimage .wh {
  animation: logoMoveW 1s forwards;
}
.mainimage .w1 {
  animation-delay: 4.8s;
}
.mainimage .w2 {
  animation-delay: 4.95s;
}
.mainimage .w3 {
  animation-delay: 5.1s;
}
@keyframes logoMoveW {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.aboutArea {
  padding: 0 max(2.5vw, 20px);
  margin-bottom: 200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .aboutArea {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 960px) {
  .aboutArea {
    margin-bottom: 70px;
  }
}
.aboutArea .photo {
  width: 46%;
}
.aboutArea .photo img {
  clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
}
@media screen and (max-width: 668px) {
  .aboutArea .photo {
    width: 100%;
    margin-bottom: 40px;
  }
}
.aboutArea > div {
  width: 45%;
  padding-top: 100px;
}
@media screen and (max-width: 1200px) {
  .aboutArea > div {
    width: 48%;
    padding-top: 0;
  }
}
@media screen and (max-width: 668px) {
  .aboutArea > div {
    width: 100%;
  }
}
.aboutArea > div h2 {
  padding-bottom: 30px;
}
@media screen and (max-width: 1200px) {
  .aboutArea > div h2 {
    padding-bottom: 0;
  }
}
.aboutArea > div .text {
  margin: 40px 0 0 3vw;
  line-height: 2.2;
}
@media screen and (max-width: 960px) {
  .aboutArea > div .text {
    line-height: 1.8;
  }
}
@media screen and (max-width: 1200px) {
  .aboutArea > div .text {
    margin: 30px 0 0 3vw;
  }
}

.newsArea {
  padding: 0 max(5vw, 20px) 0 18vw;
  margin-bottom: 200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 1367px) {
  .newsArea {
    padding: 0 max(5vw, 20px);
  }
}
@media screen and (max-width: 960px) {
  .newsArea {
    margin-bottom: 70px;
  }
}
.newsArea > div {
  display: table;
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .newsArea > div {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
  }
}
.newsArea > div .textBtn {
  text-align: right;
  margin-top: 50px;
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .newsArea > div .textBtn {
    margin-top: 0;
  }
}
.newsArea > div .textBtn a {
  text-align: left;
}
.newsArea > article {
  width: calc(100% - 370px);
}
@media screen and (max-width: 1200px) {
  .newsArea > article {
    width: calc(100% - 250px);
  }
}
@media screen and (max-width: 960px) {
  .newsArea > article {
    width: calc(100% - 200px);
  }
}
@media screen and (max-width: 668px) and (orientation: portrait) {
  .newsArea > article {
    width: 100%;
  }
}
.newsArea > article > div {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid rgba(34, 34, 34, 0.2);
  padding: 35px 0;
}
@media screen and (max-width: 960px) {
  .newsArea > article > div {
    flex-wrap: wrap;
    padding: 20px 0;
  }
}
.newsArea > article > div .date {
  margin-top: 3px;
  white-space: nowrap;
}
.newsArea > article > div .cate {
  font-size: 1.4rem;
  border: 1px solid rgba(34, 34, 34, 0.2);
  border-radius: 20px;
  margin: 0 30px;
  padding: 5px 20px;
  white-space: nowrap;
}
@media screen and (max-width: 960px) {
  .newsArea > article > div .cate {
    margin: 0 0 0 10px;
    font-size: 1.3rem;
    padding: 4px 20px;
  }
}
.newsArea > article > div .tit {
  margin-top: 3px;
}
@media screen and (max-width: 960px) {
  .newsArea > article > div .tit {
    width: 100%;
    margin-top: 10px;
  }
}

.messageArea {
  padding: 0 max(2.5vw, 20px);
  margin-bottom: 200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 1200px) {
  .messageArea {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 960px) {
  .messageArea {
    margin-bottom: 70px;
  }
}
.messageArea > div {
  width: 50%;
}
@media screen and (max-width: 668px) {
  .messageArea > div {
    width: 100%;
    margin-bottom: 20px;
  }
}
.messageArea > div h2 {
  padding-bottom: 50px;
}
@media screen and (max-width: 1200px) {
  .messageArea > div h2 {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 668px) {
  .messageArea > div h2 {
    display: table;
    margin-left: auto;
  }
}
.messageArea > div .read {
  font-size: 3.3rem;
  line-height: 120%;
  margin: 0 0 25px 3vw;
}
@media screen and (max-width: 1200px) {
  .messageArea > div .read {
    font-size: clamp(14px, 2.75vw, 100px);
  }
}
@media screen and (max-width: 668px) {
  .messageArea > div .read {
    font-size: calc(3.3rem * 0.75);
  }
}
@media screen and (max-width: 668px) {
  .messageArea > div .read {
    margin-left: 0;
  }
}
.messageArea > div .name {
  margin: 0 0 40px 3vw;
}
@media screen and (max-width: 960px) {
  .messageArea > div .name {
    margin: 0 0 20px 3vw;
  }
}
@media screen and (max-width: 668px) {
  .messageArea > div .name {
    margin-left: 0;
  }
}
.messageArea > div .name::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background-color: #222;
  vertical-align: middle;
  margin-right: 10px;
}
.messageArea > div .text {
  margin-left: 3vw;
  line-height: 2.2;
}
@media screen and (max-width: 960px) {
  .messageArea > div .text {
    line-height: 1.8;
  }
}
@media screen and (max-width: 668px) {
  .messageArea > div .text {
    margin-left: 0;
  }
}
.messageArea .photo {
  width: 44%;
}
.messageArea .photo img {
  clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
}
@media screen and (max-width: 668px) {
  .messageArea .photo {
    width: 90%;
    margin-left: auto;
  }
}

.linkArea {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.linkArea > section {
  width: 25%;
  margin: 0 2.2vw;
}
@media screen and (max-width: 1200px) {
  .linkArea > section {
    width: 28%;
  }
}
@media screen and (max-width: 668px) {
  .linkArea > section {
    width: 100%;
    margin: 0 25px;
  }
}
.linkArea > section:nth-child(2) {
  margin-top: 150px;
}
@media screen and (max-width: 960px) {
  .linkArea > section:nth-child(2) {
    margin-top: 80px;
  }
}
@media screen and (max-width: 668px) {
  .linkArea > section:nth-child(2) {
    margin: 30px 25px;
  }
}
.linkArea > section .photo {
  margin-bottom: 40px;
}
.linkArea > section .photo img {
  clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
}
@media screen and (max-width: 960px) {
  .linkArea > section .photo {
    margin-bottom: 20px;
  }
}
.linkArea > section h2 {
  font-size: 3.2rem;
  line-height: 120%;
  font-weight: 700;
  margin-bottom: 40px;
}
@media screen and (max-width: 1200px) {
  .linkArea > section h2 {
    font-size: clamp(14px, 2.6666666667vw, 100px);
  }
}
@media screen and (max-width: 668px) {
  .linkArea > section h2 {
    font-size: calc(3.2rem * 0.75);
  }
}
@media screen and (max-width: 960px) {
  .linkArea > section h2 {
    margin-bottom: 20px;
  }
}
.linkArea > section .read {
  border-left: 2px solid #222;
  font-size: 2.2rem;
  padding-left: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1200px) {
  .linkArea > section .read {
    font-size: clamp(16px, 1.8333333333vw, 100px);
  }
}
@media screen and (max-width: 960px) {
  .linkArea > section .read {
    margin-bottom: 20px;
  }
}
.linkArea > section .text {
  margin-bottom: 40px;
  line-height: 2;
}
@media screen and (max-width: 960px) {
  .linkArea > section .text {
    margin-bottom: 20px;
  }
}/*# sourceMappingURL=index.css.map */