@charset "UTF-8";
@media (min-width: 1200px) {
  .pc_none {
    display: none !important;
  }
}
@media (max-width: 520px) {
  .sp_none {
    display: none !important;
  }
}
/* まずはリセット */
* {
  margin: 0;
  padding: 0;
  color: #393939;
}

html {
  scroll-behavior: smooth;
}

.title_all {
  position: relative;
  margin-top: 400px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1.3s 0s ease-out;
}
@media (min-width: 521px) {
  .title_all {
    margin-top: 450px;
  }
}
.title_all::before {
  content: "";
  position: absolute;
  top: -320px;
  left: 50%;
  transform: translateX(-50%);
  transform-origin: top;
  width: 1px;
  height: 240px;
  background: #58c3e0;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
@media (min-width: 521px) {
  .title_all::before {
    top: -360px;
  }
}
.title_all .wrap {
  position: relative;
  background-color: #efefef;
  padding: 4em 60px;
}
.title_all .wrap h2 {
  position: absolute;
  top: -0.8em;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(40px, 40px + (68 - 40) * (100vw - 320px)/(520 - 320), 68px);
  text-align: center;
  font-family: baskerville-display-pt, serif;
  width: 100%;
}
@media (min-width: 521px) {
  .title_all .wrap h2 {
    font-size: clamp(68px, 68px + (128 - 68) * (100vw - 521px)/(1199 - 521), 128px);
  }
}
.title_all .wrap ul {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
}
.title_all .wrap ul li {
  position: relative;
  border-left: solid 8px #58c3e0;
  background: #ffffff;
  border-radius: 0 15px 15px 0;
  padding: 0.5em;
  z-index: 1;
  transition: 0.3s;
}
.title_all .wrap ul li:not(:first-of-type) {
  margin-top: 20px;
}
.title_all .wrap ul li::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: rgba(88, 195, 224, 0.1);
  transform-origin: 0% 50%;
  transform: scaleX(0);
  transition: transform ease 0.3s;
}
.title_all .wrap ul li:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
.title_all .wrap ul li a {
  display: block;
  letter-spacing: 0.1em;
}/*# sourceMappingURL=title_ichiran.css.map */