@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Bodoni+Moda:wght@700&display=swap");
@font-face {
  font-family: "Nobel Book";
  font-style: normal;
  font-weight: normal;
  src: local("Nobel Book"), url("/files/css/fonts/Nobel Book.woff") format("woff");
}
@media screen and (min-width: 1025px) {
  .nav_list li:nth-child(1) a {
    position: relative;
  }
  .nav_list li:nth-child(1) a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #7AC0C5;
  }
}
img {
  width: 100%;
}

.aboutWrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 30px;
  background: #ECF6F7;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .aboutWrap {
    padding: 40px;
    margin: 0 auto 100px;
  }
}
.aboutWrap p:first-child {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 2rem;
  color: #7AC0C5;
  margin-bottom: 30px;
}
@media screen and (min-width: 769px) {
  .aboutWrap p:first-child {
    font-size: 3rem;
  }
}
.aboutWrap p:first-child strong {
  font-size: 2.6rem;
}
@media screen and (min-width: 769px) {
  .aboutWrap p:first-child strong {
    font-size: 3rem;
  }
}

.about_txt {
  margin-bottom: 60px;
}
@media screen and (min-width: 769px) {
  .about_txt {
    margin-bottom: 140px;
  }
}

.aboutLink {
  display: block;
}
@media screen and (min-width: 769px) {
  .aboutLink {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
  }
}
.aboutLink li {
  width: 100%;
  max-width: 330px;
  margin: 0 auto 20px;
}
@media screen and (min-width: 769px) {
  .aboutLink li {
    margin: 0;
  }
}
.aboutLink li a {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.8rem;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  border: 3px solid #C5B89C;
  transition: 0.5s;
}
.aboutLink li a::before, .aboutLink li a::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 1px solid #C5B89C;
  border-right: 1px solid #C5B89C;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.5s;
}
.aboutLink li a::before {
  right: 50px;
}
.aboutLink li a::after {
  right: 40px;
}
@media screen and (min-width: 1025px) {
  .aboutLink li a:hover {
    background: #C5B89C;
  }
  .aboutLink li a:hover::before, .aboutLink li a:hover::after {
    border-top: 1px solid #52392B;
    border-right: 1px solid #52392B;
  }
  .aboutLink li a:hover::before {
    right: 40px;
  }
  .aboutLink li a:hover::after {
    right: 30px;
  }
}
