@charset "UTF-8";
.intro-text {
  flex-direction: column;
  height: 300px;
}
@media screen and (max-width: 767px) {
  .intro-text {
    height: 200px;
  }
}
.intro-text p {
  line-height: 3.3;
}

.about {
  display: grid;
  box-sizing: border-box;
  gap: clamp(20px, 6vw, 120px);
  max-width: 1400px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .about {
    grid-template-columns: 1fr 40px 1fr;
  }
}
@media screen and (max-width: 767px) {
  .about {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.about-block {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-president figure {
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1vw, 30px);
}
.about-president figure img {
  height: 100vw;
  max-height: 600px;
  padding-left: 60px;
  object-fit: cover;
  object-position: center top;
}
@media screen and (max-width: 767px) {
  .about-president figure img {
    padding-left: 0px;
  }
}
.about-president figure figcaption p {
  margin-left: 60px;
  line-height: 1.5;
  font-size: 20px;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  .about-president figure figcaption p {
    text-align: right;
    padding-left: 0px;
    font-size: 16px;
  }
}
.about-president figure figcaption p small {
  font-size: 60%;
  display: block;
}

.about-slogan {
  padding-top: 46px;
}
@media screen and (max-width: 767px) {
  .about-slogan {
    display: none;
  }
}
.about-slogan p {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  writing-mode: vertical-rl;
  font-size: clamp(20px, 6vw, 40px);
  letter-spacing: 0.4em;
  font-weight: bold;
}
.about-slogan img {
  width: 30px;
}

.about-history,
.about-philosophy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-history h3,
.about-philosophy h3 {
  display: flex;
  align-items: center;
  gap: 1em;
  font-size: 24px;
}
.about-history h3 img,
.about-philosophy h3 img {
  width: 30px;
}
@media screen and (max-width: 767px) {
  .about-history h3,
  .about-philosophy h3 {
    justify-content: center;
    font-size: 20px;
  }
  .about-history h3 img,
  .about-philosophy h3 img {
    width: 25px;
  }
}
.about-history p, .about-history li,
.about-philosophy p,
.about-philosophy li {
  font-size: 14px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .about-history p, .about-history li,
  .about-philosophy p,
  .about-philosophy li {
    text-align: center;
    font-size: 12px;
  }
}

@keyframes circle-open {
  0% {
    width: 0;
    height: 0;
    border-radius: 50%;
  }
  20%, 80% {
    /*少し拡大して止まる*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
  }
  100% {
    /*ぎりぎりまで正円*/
    width: 200vw;
    height: clamp(400px, 120vw, 1800px);
    border-radius: 50%;
  }
}
.philosophy {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-top: clamp(100px, 18vw, 25vh);
  position: relative;
  width: 100%;
  overflow: hidden;
}
.philosophy figure {
  margin: 0;
}
.philosophy .text {
  position: relative;
  margin-left: 5vw;
  margin-right: 5vw;
}
.philosophy .text img {
  display: block;
  aspect-ratio: 1/1;
  max-width: 1400px;
  width: 90%;
  object-fit: contain;
  object-position: center;
  margin-left: auto;
  margin-right: auto;
  mix-blend-mode: multiply;
}
.philosophy .circle {
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: auto;
  width: 0;
  height: 0;
  background: #fff;
  transition: 0.5s;
}
.philosophy .circle.active {
  animation: circle-open 0.8s linear forwards;
}
.philosophy .figs {
  display: flex;
  flex-direction: row;
  gap: clamp(12px, 2vw, 70px);
  align-items: center;
  justify-content: center;
}
.philosophy .figs img:nth-of-type(1) {
  aspect-ratio: 366/293;
  width: clamp(80px, 25%, 250px);
}
.philosophy .figs img:nth-of-type(2) {
  aspect-ratio: 293/366;
  width: clamp(50px, 20%, 180px);
}
.philosophy .figs img:nth-of-type(3) {
  aspect-ratio: 366/293;
  width: clamp(80px, 25%, 250px);
}
/*# sourceMappingURL=maps/page-about.css.map */