@charset "UTF-8";
[data-ani] {
  --ani-delay: 0s;
  --ani-duration: 1s;
  pointer-events: none;
}
[data-ani].is-animated-done {
  pointer-events: auto;
}

.ani-width {
  width: 0;
  transition: width var(--ani-duration) cubic-bezier(0.42, 0, 0.58, 1) var(--ani-delay);
}
.ani-width.is-animated {
  width: 100%;
}

.ani-fade, .ani-fade-left, .ani-fade-right, .ani-fade-down-full, .ani-fade-down, .ani-fade-up {
  opacity: 0;
  transition: opacity var(--ani-duration) cubic-bezier(0.42, 0, 0.58, 1) var(--ani-delay), transform var(--ani-duration) cubic-bezier(0.42, 0, 0.58, 1) var(--ani-delay);
}
.ani-fade.is-animated, .is-animated.ani-fade-left, .is-animated.ani-fade-right, .is-animated.ani-fade-down-full, .is-animated.ani-fade-down, .is-animated.ani-fade-up {
  opacity: 1;
}
.ani-fade-up {
  transform: translateY(30px);
}
.ani-fade-up.is-animated {
  transform: translateY(0);
}
.ani-fade-down {
  transform: translateY(-10px);
}
.ani-fade-down.is-animated {
  transform: translateY(0);
}
.ani-fade-down-full {
  transform: translateY(-100%);
}
.ani-fade-down-full.is-animated {
  transform: translateY(0);
}
.ani-fade-right {
  transform: translateX(-10px);
}
.ani-fade-right.is-animated {
  transform: translateX(0);
}
.ani-fade-left {
  transform: translateX(10px);
}
.ani-fade-left.is-animated {
  transform: translateX(0);
}

.ani-scale {
  transform: scale(0.6);
  transform-origin: center;
  transition: opacity var(--ani-duration) cubic-bezier(0.42, 0, 0.58, 1) var(--ani-delay), transform var(--ani-duration) cubic-bezier(0.42, 0, 0.58, 1) var(--ani-delay);
}
.ani-scale.is-animated {
  transform: scale(1);
}

.ani-zoom {
  transform: scale(1.2);
  transform-origin: center;
  transition: transform var(--ani-duration) cubic-bezier(0.07, 0.09, 0.09, 0.62) var(--ani-delay);
}
.ani-zoom.is-animated {
  transform: scale(1);
}

.ani-clip, .ani-clip-full {
  clip-path: inset(0 100% 0 0);
  opacity: 0;
  transition: all var(--ani-duration) ease-in-out var(--ani-delay);
  will-change: clip-path;
}
@media (max-width: 768px) {
  .ani-clip-full {
    transition: all calc(var(--ani-duration) / 2) cubic-bezier(0.07, 0.09, 0.09, 0.62) calc(var(--ani-delay) / 2);
  }
}
.ani-clip.is-animated, .is-animated.ani-clip-full {
  opacity: 1;
  clip-path: inset(0);
}

.ani-blur, .ani-blur-up {
  opacity: 0;
  filter: blur(12px);
  transition: opacity var(--ani-duration) cubic-bezier(0.42, 0, 0.58, 1) var(--ani-delay), filter var(--ani-duration) cubic-bezier(0.42, 0, 0.58, 1) var(--ani-delay);
}
.ani-blur.is-animated, .is-animated.ani-blur-up {
  opacity: 1;
  filter: blur(0);
}
.ani-blur-up {
  transform: translateY(20px);
  transition: opacity var(--ani-duration) cubic-bezier(0.42, 0, 0.58, 1) var(--ani-delay), filter var(--ani-duration) cubic-bezier(0.42, 0, 0.58, 1) var(--ani-delay), transform var(--ani-duration) cubic-bezier(0.42, 0, 0.58, 1) var(--ani-delay);
}
.ani-blur-up.is-animated {
  transform: translateY(0);
}

/* ================================
メインビジュアル
   ================================ */
.p-top i {
  display: inline-block;
  font-style: initial;
}
.p-top .p-mv {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1200/750;
}
@media (max-width: 440px) {
  .p-top .p-mv {
    height: 100%;
    aspect-ratio: 310/464;
  }
}
.p-top .p-mv__txtWrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 3s;
  position: absolute;
  z-index: 1;
  top: 25%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
  font-size: 3.3rem;
  letter-spacing: 0.4em;
  color: #ffffff;
}
@media (max-width: 768px) {
  .p-top .p-mv__txtWrap {
    width: 100%;
    top: 30%;
    left: 50%;
    color: #ffffff;
    font-size: 2.4rem;
    white-space: nowrap;
  }
}
@media (max-width: 440px) {
  .p-top .p-mv__txtWrap {
    font-size: 1.8rem;
  }
}
@media (max-width: 1200px) {
  .p-top .p-mv__txtWrap {
    top: 30%;
  }
}
.p-top .p-mv__logo {
  margin-bottom: 3rem;
}
.p-top .p-mv__ttl {
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #ffffff;
  text-shadow: 0 0 8px #333, 0 0 8px #333, 0 0 16px #333, 0 0 16px #333, 0 0 16px #333;
  display: block;
  width: 100%;
}
@media (max-width: 768px) {
  .p-top .p-mv__ttl {
    color: #ffffff;
    text-align: left;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.p-top .p-mv__ttl span {
  font-size: 0.5em;
  font-family: "Crimson Text", serif;
}
.p-top .p-mv__ttl small {
  font-size: 0.5em;
  line-height: 1.7;
  display: block;
}
.p-top .p-mv__ttl em {
  font-size: 1.5em;
}
.p-top .p-mv__txt {
  font-size: 0.75em;
}
@media (max-width: 440px) {
  .p-top .p-mv__txt {
    font-size: 0.6em;
  }
}
.p-top .p-mv__img {
  position: absolute;
  width: 100%;
  height: 100%;
}
.p-top .p-mv__img picture {
  width: 100%;
  height: 100%;
}
.p-top .p-mv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top .p-mv__inner {
  width: 100%;
  height: 100%;
  position: relative;
  background: rgba(255, 255, 255, 0.5);
}
.p-top .p-mv__inner.js-mv-slide, .p-top .p-mv__inner.mod--intro {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.p-top .p-mv__inner.js-mv-slide.is-active, .p-top .p-mv__inner.mod--intro.is-active {
  opacity: 1;
}
.p-top .p-mv__inner {
  /* ------------------
  	スライドごとの設定
  -------------------*/
}
.p-top .p-mv__inner.mod--intro .p-mv__txtWrap {
  top: 50%;
  bottom: 50%;
}
.p-top .p-mv__inner.mod--intro .p-mv__logo {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  width: 28rem;
}
@media (max-width: 768px) {
  .p-top .p-mv__inner.mod--intro .p-mv__logo {
    width: 16rem;
  }
}
.p-top .p-mv__inner.mod--intro .p-mv__logo.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.p-top .p-mv__inner.mod--intro .p-mv__ttl {
  opacity: 0;
  color: #231815;
  transition: opacity 1.4s ease, transform 1.4s ease;
  text-shadow: none;
  font-size: 3.4rem;
}
@media (max-width: 768px) {
  .p-top .p-mv__inner.mod--intro .p-mv__ttl {
    font-size: 2rem;
    text-align: center;
  }
}
.p-top .p-mv__inner.mod--intro .p-mv__ttl.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.p-top .p-mv__inner.mod--01 .p-mv__cap {
  right: 50%;
}
@media (max-width: 768px) {
  .p-top .p-mv__inner.mod--01 .p-mv__cap {
    right: 0;
    bottom: 40% !important;
  }
}
.p-top .p-usp {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
}
.p-top .p-usp__line {
  display: inline-block;
  width: 1px;
  height: 2em;
  background: #b2975a;
  margin-inline: 0.5em;
  margin-bottom: -0.25em;
}
.p-top .p-usp__main {
  color: #ffffff;
  background: #362e64;
}
@media (max-width: 768px) {
  .p-top .p-usp__main {
    padding: 1em 0;
    text-align: center;
  }
}
.p-top .p-usp__main__item {
  width: 90%;
  max-width: 1440px;
  margin-inline: auto;
  font-size: 3.2rem;
}
@media (max-width: 768px) {
  .p-top .p-usp__main__item {
    font-size: 1.8rem;
  }
}
.p-top .p-usp__main p {
  text-align: center;
}
.p-top .p-usp__main p em {
  font-size: 2em;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .p-top .p-usp__main p em {
    line-height: 0.5;
  }
}
.p-top .p-usp__main p b {
  font-size: 1.5em;
  line-height: 1.5;
}
.p-top .p-usp__en {
  font-size: 1.25em;
}
.p-top .p-usp__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding-block: 3em;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
}
@media (max-width: 440px) {
  .p-top .p-usp__list {
    width: 95%;
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-top .p-usp__list__item {
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0.25em;
  position: relative;
  z-index: 2;
  font-size: 1.6em;
  padding: 0 1em;
  border-right: 1px solid #231815;
}
.p-top .p-usp__list__item:last-of-type {
  border-right: none;
}
@media (max-width: 768px) {
  .p-top .p-usp__list__item {
    font-size: 1.34em;
    padding: 0.5em 0;
  }
}
@media (max-width: 440px) {
  .p-top .p-usp__list__item {
    font-size: 1.8em;
    padding: 0.5em 0;
    border-right: unset;
    border-bottom: 1px solid #231815;
    padding: 0.8em;
  }
}
.p-top .p-usp__list small {
  font-size: 0.5em;
  display: block;
  line-height: 1.2;
}
.p-top .p-usp__list small small {
  font-size: 0.75em;
}
.p-top .p-usp__list em {
  font-size: 1.7em;
  line-height: 1;
}
.p-top .p-usp__list b {
  font-size: 1.1em;
}
.p-top .p-usp__list span {
  font-size: 0.75em;
  line-height: 1;
  display: inline-block;
}
.p-top .p-usp__list i.p-usp__flex {
  font-size: 1.3em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-top .p-usp__list i.p-usp__flex span {
  line-height: 0.8;
  display: inline-block;
}
.p-top .p-usp__list strong {
  color: #86352d;
}
.p-top .p-usp__list strong b {
  font-size: 1.25em;
  line-height: 1;
}
.p-top .p-con {
  color: #ffffff;
}
.p-top .p-con__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 768px) {
  .p-top .p-con__inner {
    grid-template-columns: 1fr;
  }
}
.p-top .p-con__txtBox {
  background-color: #362e64;
  display: flex;
  align-items: stretch;
}
.p-top .p-con__txtWrap {
  width: 100%;
  display: flex;
  align-items: stretch;
  background-image: url(../../img/home/con_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.p-top .p-con__label {
  writing-mode: vertical-lr;
  letter-spacing: 0.4em;
  font-size: 3rem;
  padding: 2em 0.5em;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-family: "Crimson Text", serif;
}
.p-top .p-con__label::after {
  content: "";
  display: block;
  width: 1px;
  flex: 1;
  background: rgba(255, 255, 255, 0.7);
  margin-top: 1.5em;
}
@media (max-width: 440px) {
  .p-top .p-con__label {
    padding: 2em 0em;
  }
}
.p-top .p-con__body {
  padding: 5em 3em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2em;
  flex: 1;
}
@media (max-width: 768px) {
  .p-top .p-con__body {
    padding: 3em 2em;
  }
}
@media (max-width: 440px) {
  .p-top .p-con__body {
    padding: 2.5em 0.5em;
  }
}
.p-top .p-con__body .c-line {
  border-color: rgba(255, 255, 255, 0.4);
}
.p-top .p-con__ttl {
  font-size: clamp(2.8rem, 22.2222222222px + 1.4814814815vw, 4rem);
  letter-spacing: 0.15em;
  line-height: 1.8;
  font-weight: normal;
}
.p-top .p-con__txt {
  font-size: 1.5rem;
  line-height: 1.7;
}
@media (max-width: 440px) {
  .p-top .p-con__txt {
    font-size: 1.4rem;
  }
}
.p-top .p-con__map {
  margin: 0;
  max-width: 500px;
}
.p-top .p-con__map img {
  width: 100%;
}
.p-top .p-con__map figcaption {
  font-size: 1.1rem;
  text-align: right;
  margin-top: 0.3em;
  color: rgba(255, 255, 255, 0.6);
}
.p-top .p-con__imgBox {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}
.p-top .p-con__img {
  overflow: hidden;
  position: relative;
}
.p-top .p-con__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-top .p-con__img.mod--btm {
  grid-column: span 2;
}
.p-top .p-con__img.mod--04 {
  grid-area: 1/2/3/3;
}
.p-top .p-loc {
  position: relative;
  padding-block: clamp(50px, 25.9259259259px + 6.1728395062vw, 100px);
  overflow: hidden;
}
.p-top .p-loc__wrap {
  position: relative;
}
.p-top .p-loc__inner {
  position: relative;
}
.p-top .p-loc__bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60%;
  z-index: 0;
}
.p-top .p-loc__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-top .p-loc__bg .c-imgBox__cap {
  right: auto;
  left: 0;
  text-align: left;
}
@media (max-width: 768px) {
  .p-top .p-loc__bg {
    position: relative;
    width: 130%;
  }
}
.p-top .p-loc .u-inner {
  position: relative;
  z-index: 1;
}
.p-top .p-loc__top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4em;
  align-items: start;
}
@media (max-width: 768px) {
  .p-top .p-loc__top {
    grid-template-columns: 1fr;
    gap: 2em;
  }
}
.p-top .p-loc__ttl {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Crimson Text", serif;
  font-size: 6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #362e64;
  padding-top: 0.1em;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .p-top .p-loc__ttl {
    position: relative;
  }
}
.p-top .p-loc__topBody {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2em;
  width: 70%;
  margin: 0 0 0 auto;
}
@media (max-width: 768px) {
  .p-top .p-loc__topBody {
    width: 100%;
  }
}
.p-top .p-loc__lead {
  font-size: clamp(1.8rem, 16.0740740741px + 0.4938271605vw, 2.2rem);
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #362e64;
}
.p-top .p-loc__txt {
  font-size: 1.5rem;
  line-height: 2.4;
}
@media (max-width: 768px) {
  .p-top .p-loc__txt {
    font-size: 1.4rem;
  }
}
.p-top .p-loc__grid01 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em 1em;
  padding-block: clamp(30px, 15.5555555556px + 3.7037037037vw, 60px);
  width: 70%;
  margin: 0 0 0 auto;
}
@media (max-width: 768px) {
  .p-top .p-loc__grid01 {
    grid-template-columns: 1fr;
    gap: 2.5em;
    width: 100%;
  }
}
.p-top .p-loc__grid01__item {
  display: flex;
  flex-direction: column;
}
.p-top .p-loc__grid01__img {
  overflow: hidden;
}
.p-top .p-loc__grid01__img img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-top .p-loc__grid01__ttl {
  font-size: 1.6rem;
  font-weight: bold;
  margin-top: 1em;
  line-height: 1;
}
.p-top .p-loc__grid01__ttl small {
  font-size: 0.85em;
  font-weight: normal;
}
.p-top .p-loc__grid01__cap {
  font-size: 1.3rem;
  color: #4D4947;
}
.p-top .p-loc__grid02 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em 1em;
  width: 70%;
  margin: 0 0 0 auto;
}
@media (max-width: 768px) {
  .p-top .p-loc__grid02 {
    grid-template-columns: 1fr;
    gap: 3em;
    width: 100%;
  }
}
.p-top .p-loc__grid02__item {
  display: flex;
  flex-direction: column;
  gap: 1em;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
}
.p-top .p-loc__grid02__ttl {
  color: #ffffff;
  font-size: clamp(1.4rem, 13.037037037px + 0.2469135802vw, 1.6rem);
  line-height: 1.5;
  font-weight: 500;
  padding: 0.5em 1em;
  position: relative;
  overflow: hidden;
  z-index: 3;
}
.p-top .p-loc__grid02__ttl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 97%;
  height: 100%;
  background: linear-gradient(to right, #907b65, #907b65 50%, rgba(144, 123, 101, 0.5) 100%);
  clip-path: polygon(0 0, 100% 0, calc(100% - 2em) 100%, 0 100%);
  pointer-events: none;
  z-index: -1;
}
.p-top .p-loc__grid02__ttl::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to right, #907b65, rgba(144, 123, 101, 0.5) 50%, rgba(144, 123, 101, 0.25) 100%);
  z-index: -2;
}
.p-top .p-loc__grid02__txt {
  font-size: 1.5rem;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .p-top .p-loc__grid02__txt {
    font-size: 1.4rem;
  }
}
.p-top .p-loc__grid02__img img {
  width: 100%;
  display: block;
}
.p-top .p-loc__cap {
  margin-top: 0.5em;
  font-size: 1.3rem;
  line-height: 1.5;
}
.p-top .p-loc__life {
  margin-top: 10rem;
}
@media (max-width: 768px) {
  .p-top .p-loc__life {
    margin-top: 5rem;
  }
}
.p-top .p-loc__lifeTtl {
  background-color: #362e64;
  color: #ffffff;
  font-size: 2.2rem;
  letter-spacing: 0.2em;
  padding: 0.25em 1.2em;
  font-weight: 400;
  font-family: "Crimson Text", serif;
  margin-bottom: 1em;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .p-top .p-loc__lifeTtl {
    text-align: center;
    font-size: 2rem;
    padding: 0.5em 0.5em;
  }
}
.p-top .p-loc__lifeTxt {
  font-size: 1.8rem;
  line-height: 1.9;
  margin-bottom: 3em;
}
@media (max-width: 768px) {
  .p-top .p-loc__lifeTxt {
    font-size: 1.6rem;
  }
}
.p-top .p-loc__lifeImg {
  text-align: center;
}
.p-top .p-loc__lifeImg img {
  width: 80%;
  max-width: 800px;
  display: block;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .p-top .p-loc__lifeImg img {
    width: 100%;
  }
}
.p-top .p-loc__lifeGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1em;
  margin-top: 4em;
}
@media (max-width: 768px) {
  .p-top .p-loc__lifeGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5em;
  }
}
.p-top .p-loc__lifeGItem {
  display: flex;
  flex-direction: column;
}
.p-top .p-loc__lifeGImg {
  overflow: hidden;
}
.p-top .p-loc__lifeGImg img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-top .p-loc__lifeGTtl {
  font-size: 1.5rem;
  line-height: 1.2;
  margin-top: 0.5em;
}
.p-top .p-loc__lifeGTtl small {
  font-size: 0.85em;
  font-weight: normal;
}
.p-top .p-loc__lifeGtxt {
  font-size: 1.3rem;
  color: #4D4947;
  line-height: 1.2;
}
.p-top .p-loc__lifeList {
  margin-top: 2em;
}
.p-top .p-loc__lifeListInner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
}
@media (max-width: 768px) {
  .p-top .p-loc__lifeListInner {
    grid-template-columns: 1fr;
  }
}
.p-top .p-loc__lifeListCol {
  display: flex;
  flex-direction: column;
  gap: 2em;
}
.p-top .p-loc__lifeListDt {
  font-size: clamp(13px, 12.5185185185px + 0.1234567901vw, 14px);
  font-weight: bold;
  letter-spacing: 0.05em;
  padding-bottom: 0.5em;
  border-bottom: 2px solid currentColor;
}
.p-top .p-loc__lifeListDt::before {
  content: "■";
  margin-right: 0.3em;
}
.p-top .p-loc__lifeListDt--access {
  color: #e7a100;
}
.p-top .p-loc__lifeListDt--shop {
  color: #d56269;
}
.p-top .p-loc__lifeListDt--edu {
  color: #8b9a5b;
}
.p-top .p-loc__lifeListDt--med {
  color: #ac6e77;
}
.p-top .p-loc__lifeListDt--fin {
  color: #646997;
}
.p-top .p-loc__lifeListDt--park {
  color: #005c23;
}
.p-top .p-loc__lifeListDd {
  display: flex;
  align-items: center;
  padding: 0.3em 0;
  font-size: 1.3rem;
  letter-spacing: 0;
}
.p-top .p-loc__lifeListDd small {
  font-size: 0.8em;
}
@media (max-width: 768px) {
  .p-top .p-loc__lifeListDd {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0.5rem;
  }
}
.p-top .p-loc__lifeListName {
  min-width: 0;
  line-height: 1.5;
  letter-spacing: -0.08em;
}
.p-top .p-loc__lifeListName b {
  font-weight: 300;
  letter-spacing: -0.25em;
}
.p-top .p-loc__lifeListDots {
  flex: 1;
  border-bottom: 1px dotted #b0a090;
  margin: 0 0.5em 0.25em;
  min-width: 0.5em;
}
@media (max-width: 768px) {
  .p-top .p-loc__lifeListDots {
    display: none;
  }
}
.p-top .p-loc__lifeListDist {
  flex-shrink: 0;
  color: #4D4947;
  font-size: clamp(12px, 11.5185185185px + 0.1234567901vw, 13px);
  line-height: 1.5;
}
.p-top .p-acc__top {
  display: grid;
  grid-template-columns: 40% 1fr;
}
@media (max-width: 768px) {
  .p-top .p-acc__top {
    grid-template-columns: 1fr;
  }
}
.p-top .p-acc__topL {
  display: grid;
  grid-template-columns: 2fr 3fr;
  grid-template-rows: 1fr 1fr;
}
@media (max-width: 768px) {
  .p-top .p-acc__topL {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    height: 220px;
  }
}
.p-top .p-acc__topLImg {
  overflow: hidden;
  position: relative;
}
.p-top .p-acc__topLImg:first-child {
  grid-row: 1/3;
}
@media (max-width: 768px) {
  .p-top .p-acc__topLImg:first-child {
    display: none;
  }
}
.p-top .p-acc__topLImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-top .p-acc__topR {
  background-color: #362e64;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 15.5555555556px + 3.7037037037vw, 60px) clamp(40px, 20.7407407407px + 4.9382716049vw, 80px);
  overflow: hidden;
}
.p-top .p-acc__topRbg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.p-top .p-acc__topRbg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-top .p-acc__topTtl {
  font-family: "Crimson Text", serif;
  font-size: 6rem;
  font-weight: 400;
  color: #ffffff;
  position: relative;
  z-index: 1;
  margin-bottom: 0.3em;
  letter-spacing: 0.02em;
}
.p-top .p-acc__topLead {
  font-size: 2.6rem;
  color: #ffffff;
  line-height: 2;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .p-top .p-acc__topLead {
    font-size: 2rem;
  }
}
.p-top .p-acc__topLead small {
  display: block;
  font-size: 0.6em;
  margin-top: 1.5em;
  line-height: 1.8;
}
.p-top .p-acc__train__ttl {
  font-size: 1.8rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.p-top .p-acc__train__ttl em {
  color: #86352d;
}
.p-top .p-acc__train__ttl::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #231815;
}
.p-top .p-acc__train {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-bottom: 5rem;
  gap: 2rem;
  width: 100%;
}
@media (max-width: 768px) {
  .p-top .p-acc__train {
    grid-template-columns: repeat(1, 1fr);
    gap: 2em 0;
  }
}
@media (max-width: 768px) {
  .p-top .p-acc__trainItem:nth-child(2n) {
    border-right: none;
    padding-right: 0;
  }
  .p-top .p-acc__trainItem:nth-child(2n+1) {
    padding-left: 0;
  }
}
.p-top .p-acc__trainRow {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5em;
  margin-bottom: 0.5em;
}
@media (max-width: 768px) {
  .p-top .p-acc__trainRow {
    margin-bottom: 0;
  }
}
.p-top .p-acc__trainSta {
  font-weight: bold;
  letter-spacing: 0em;
  font-size: 1.6rem;
  line-height: 1;
}
@media (max-width: 768px) {
  .p-top .p-acc__trainSta {
    font-size: 1.8rem;
  }
}
.p-top .p-acc__trainSta em {
  font-size: 1.5em;
}
.p-top .p-acc__trainTime {
  display: flex;
  align-items: baseline;
  white-space: nowrap;
  font-size: 2.2rem;
}
@media (max-width: 768px) {
  .p-top .p-acc__trainTime {
    font-size: 2.4rem;
  }
}
.p-top .p-acc__trainLabel {
  font-size: 0.8em;
  letter-spacing: 0.05em;
  margin-right: 0.2em;
  color: #86352d;
}
.p-top .p-acc__trainNum {
  color: #86352d;
  font-family: "Crimson Text", serif;
  font-size: 2em;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
}
.p-top .p-acc__trainTxt {
  font-size: clamp(12px, 11.5185185185px + 0.1234567901vw, 13px);
  color: #4D4947;
  line-height: 1.8;
}
.p-top .p-acc__trainNote {
  font-size: clamp(11px, 10.5185185185px + 0.1234567901vw, 12px);
  color: #4D4947;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .p-top .p-acc__trainNote {
    grid-column: 1/-1;
  }
}
.p-top .p-acc__map {
  margin-block: 5rem;
}
@media (max-width: 768px) {
  .p-top .p-acc__map {
    margin-block: 2.5rem;
  }
}
.p-top .p-acc__area {
  padding-block: clamp(40px, 30.3703703704px + 2.4691358025vw, 60px);
}
.p-top .p-acc__area__ttl {
  font-size: 1.8rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  margin-bottom: clamp(16px, 12.1481481481px + 0.987654321vw, 24px);
}
.p-top .p-acc__area__ttl em {
  color: #86352d;
}
.p-top .p-acc__area__ttl::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #231815;
  margin-left: 0.5em;
}
.p-top .p-acc__areaGrid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(16px, 9.2592592593px + 1.7283950617vw, 30px);
  align-items: start;
}
@media (max-width: 960px) {
  .p-top .p-acc__areaGrid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .p-top .p-acc__areaGrid {
    grid-template-columns: 1fr;
  }
}
.p-top .p-acc__areaItem {
  display: flex;
  flex-direction: column;
}
.p-top .p-acc__areaImg {
  overflow: hidden;
}
.p-top .p-acc__areaImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-top .p-acc__areaImgDbl {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.p-top .p-acc__areaBadge {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.2em 1em;
  margin-top: 1rem;
  padding-right: 5rem;
}
.p-top .p-acc__areaBadge.mod--gotanda {
  background: linear-gradient(90deg, #792252 50%, rgba(121, 34, 82, 0.1529411765) 100%);
}
.p-top .p-acc__areaBadge.mod--kamata {
  background: linear-gradient(90deg, #3a95b8 50%, rgba(58, 148, 184, 0.2) 100%);
}
.p-top .p-acc__areaBadge__img {
  position: absolute;
  transform: translateY(-50%);
  top: 40%;
  right: -5%;
  width: 8rem;
}
.p-top .p-acc__areaBadge__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-top .p-acc__areaBadgeEn {
  font-family: "Crimson Text", serif;
  color: #ffffff;
  letter-spacing: 0.08em;
  font-size: clamp(2rem, 20px + 0vw, 2rem);
}
.p-top .p-acc__areaBadgeSep {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.1em;
}
.p-top .p-acc__areaBadgeJp {
  color: #ffffff;
  letter-spacing: 0.1em;
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  .p-top .p-acc__areaBadgeJp {
    font-size: 1.8rem;
  }
}
.p-top .p-acc__areaBody {
  padding: 1.2em 0;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.p-top .p-acc__areaLead {
  font-weight: bold;
  line-height: 1.7;
  letter-spacing: 0.03em;
  font-size: clamp(1.8rem, 18px + 0vw, 1.8rem);
}
.p-top .p-acc__areaLead.mod--gotanda {
  color: #792252;
}
.p-top .p-acc__areaLead.mod--kamata {
  color: #3a95b8;
}
.p-top .p-acc__areaTxt {
  font-size: clamp(12px, 11.5185185185px + 0.1234567901vw, 13px);
  color: #4D4947;
  line-height: 2;
}
.p-top .p-acc__areaInfo {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 8.1481481481px + 0.987654321vw, 20px);
}
@media (max-width: 960px) {
  .p-top .p-acc__areaInfo {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .p-top .p-acc__areaInfo {
    display: flex;
    grid-column: auto;
  }
}
.p-top .p-acc__areaInfoBox {
  display: flex;
  flex-direction: column;
  position: relative;
}
.p-top .p-acc__areaInfoHdg {
  position: relative;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.03em;
  padding: 1em 1rem;
  background: linear-gradient(90deg, #1d2b57 50%, rgba(29, 42, 87, 0.2274509804) 100%);
  font-size: 1.4rem;
}
@media (max-width: 768px) {
  .p-top .p-acc__areaInfoHdg {
    font-size: 1.4rem;
  }
}
.p-top .p-acc__areaInfoHdg.mod--air {
  background: linear-gradient(90deg, #8a6694 50%, rgba(138, 102, 148, 0.2) 100%);
}
.p-top .p-acc__areaInfoHdg__img {
  position: absolute;
  transform: translateY(-50%);
  top: 5%;
  right: -5%;
  width: 8rem;
}
.p-top .p-acc__areaInfoHdg__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-top .p-acc__areaInfoBody {
  position: relative;
  background: #dde3eb;
  padding: 1rem;
}
.p-top .p-acc__areaInfoText {
  width: 50%;
  padding-bottom: 2em;
}
.p-top .p-acc__areaInfoText.mod--air {
  width: 70%;
}
.p-top .p-acc__areaInfoImg {
  position: absolute;
  bottom: 0;
  right: 0;
}
.p-top .p-acc__areaInfoImg.mod--air {
  width: 100%;
  height: 100%;
}
.p-top .p-acc__areaInfoImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-top .p-acc__areaNote {
  font-size: clamp(10px, 9.5185185185px + 0.1234567901vw, 11px);
  color: #4D4947;
  line-height: 1.8;
  margin-top: clamp(12px, 8.1481481481px + 0.987654321vw, 20px);
}
.p-top .p-acc__feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 768px) {
  .p-top .p-acc__feature {
    grid-template-columns: 1fr;
  }
}
.p-top .p-acc__featureL, .p-top .p-acc__featureR {
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 20.3703703704px + 2.4691358025vw, 50px);
}
.p-top .p-acc__featureHead {
  display: flex;
  align-items: stretch;
}
@media (max-width: 768px) {
  .p-top .p-acc__featureHead {
    flex-direction: column;
  }
}
.p-top .p-acc__featureBadge {
  background: #182F2A;
  padding: 0em 1.4em;
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .p-top .p-acc__featureBadge {
    padding: 0.5em 1.4em 0;
    justify-content: flex-start;
  }
}
.p-top .p-acc__featureBadge::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  bottom: 0;
  width: 3rem;
  background: #182F2A;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
@media (max-width: 768px) {
  .p-top .p-acc__featureBadge::after {
    left: 0%;
    top: unset;
    bottom: 0%;
    transform: translateY(100%);
    width: 100%;
    height: 1.5rem;
  }
}
.p-top .p-acc__featureBadge span {
  display: block;
  font-family: "Crimson Text", serif;
  color: #ffffff;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: left;
  white-space: nowrap;
  font-size: 2rem;
  padding: 0.25em 0;
}
@media (max-width: 768px) {
  .p-top .p-acc__featureBadge span {
    font-size: 1.8rem;
  }
}
.p-top .p-acc__featureHdg {
  flex: 1;
  color: #182F2A;
  line-height: 1.2;
  padding: 0.8em 1.8em;
  letter-spacing: 0em;
  background: #c6d5d0;
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .p-top .p-acc__featureHdg {
    padding: 1.4em 1.2em 0.8em;
    font-size: 1.6rem;
  }
}
.p-top .p-acc__featureLead {
  font-size: 1.8rem;
  color: #182F2A;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 1em;
  margin-bottom: 0.5em;
  letter-spacing: 0;
  display: flex;
}
@media (max-width: 768px) {
  .p-top .p-acc__featureLead {
    font-size: 1.6rem;
  }
}
.p-top .p-acc__featureLead em {
  font-style: normal;
  margin-right: 0.3em;
}
.p-top .p-acc__featureTxt {
  font-size: 1.4rem;
  color: #4D4947;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .p-top .p-acc__featureTxt {
    font-size: 1.3rem;
  }
}
.p-top .p-acc__featureTxt sup {
  font-size: 0.8em;
  vertical-align: top;
}
.p-top .p-acc__featureNote {
  font-size: clamp(10px, 9.5185185185px + 0.1234567901vw, 11px);
  color: #4D4947;
  line-height: 1.2;
  margin-top: 0.5em;
}
.p-top .p-acc__ikegamiBody {
  display: grid;
  grid-template-columns: 1fr 38%;
  align-items: start;
  gap: 1rem;
}
@media (max-width: 768px) {
  .p-top .p-acc__ikegamiBody {
    grid-template-columns: 1fr;
  }
}
.p-top .p-acc__ikegamiImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-top .p-acc__freq {
  margin-top: 1rem;
}
.p-top .p-acc__freqItem {
  text-align: center;
  flex: 0 0 auto;
}
.p-top .p-acc__freqTime {
  font-size: clamp(11px, 10.5185185185px + 0.1234567901vw, 12px);
  color: #4D4947;
  letter-spacing: 0.02em;
}
.p-top .p-acc__freqNum {
  font-size: clamp(12px, 11.5185185185px + 0.1234567901vw, 13px);
  color: #4D4947;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1em;
}
.p-top .p-acc__freqNum em {
  font-family: "Crimson Text", serif;
  font-style: normal;
  font-size: 2.8em;
  color: #182F2A;
  line-height: 1;
  letter-spacing: -0.02em;
}
.p-top .p-acc__freqNum span {
  font-size: 0.9em;
}
.p-top .p-acc__freqArrow {
  color: #b2975a;
  font-size: clamp(12px, 10.0740740741px + 0.4938271605vw, 16px);
  flex: 0 0 auto;
}
.p-top .p-acc__freqTotal {
  margin-left: auto;
  background: #182F2A;
  padding: 0.8em 1.2em;
  text-align: center;
}
.p-top .p-acc__freqTotal .p-acc__freqNum em {
  color: #b2975a;
}
.p-top .p-acc__freqTotalLabel {
  font-size: clamp(10px, 9.5185185185px + 0.1234567901vw, 11px);
  color: #ffffff;
  line-height: 1.5;
  white-space: nowrap;
}
.p-top .p-acc__freqTotalLabel small {
  display: block;
  font-size: 0.9em;
}
.p-top .p-acc__newlineBody {
  padding: 1em 1.5em 0;
  display: grid;
  gap: clamp(12px, 10.0740740741px + 0.4938271605vw, 16px);
}
@media (max-width: 440px) {
  .p-top .p-acc__newlineBody {
    padding: 1em 0 0;
  }
}
.p-top .p-acc__newlineMap img {
  width: 100%;
  display: block;
}
.p-top .p-acc__newlinePhotos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(8px, 6.0740740741px + 0.4938271605vw, 12px);
}
.p-top .p-acc__newlinePhotos .c-imgBox {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.p-top .p-acc__newlinePhotos .c-imgBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-top .p-bra {
  padding-block: clamp(60px, 40.7407407407px + 4.9382716049vw, 100px);
  text-align: center;
  padding-block: 10rem;
}
@media (max-width: 440px) {
  .p-top .p-bra {
    padding-block: 5rem;
  }
}
.p-top .p-bra__logo {
  max-width: 360px;
  margin-inline: auto;
  margin-bottom: clamp(3rem, 20.3703703704px + 2.4691358025vw, 5rem);
}
.p-top .p-bra__logo img {
  width: 100%;
}
.p-top .p-bra__lead {
  font-size: clamp(1.8rem, 16.0740740741px + 0.4938271605vw, 2.2rem);
  letter-spacing: 0.2em;
  font-family: YakuHanMP, "Crimson Text", "Shippori Mincho B1", sans-serif;
  margin-bottom: clamp(2rem, 15.1851851852px + 1.2345679012vw, 3rem);
}
.p-top .p-bra__txt {
  font-size: clamp(1.4rem, 13.5185185185px + 0.1234567901vw, 1.5rem);
  line-height: 1.7;
  margin-bottom: clamp(4rem, 30.3703703704px + 2.4691358025vw, 6rem);
}
@media (max-width: 768px) {
  .p-top .p-bra__txt {
    text-align: left;
  }
}
.p-top .p-bra__img {
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: clamp(4rem, 30.3703703704px + 2.4691358025vw, 6rem);
}
.p-top .p-bra__img img {
  width: 100%;
}
.p-top .p-bra__btn {
  display: inline-flex;
  align-items: center;
  gap: 1.5em;
  border: 1px solid #231815;
  padding: 1.2em 2.5em;
  font-family: "Crimson Text", serif;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  color: #231815;
  text-decoration: none;
  transition: background-color 0.3s cubic-bezier(0.42, 0, 0.58, 1), color 0.3s cubic-bezier(0.42, 0, 0.58, 1);
}
.p-top .p-bra__btn::before {
  content: "≫";
  font-size: 1em;
}
.p-top .p-bra__btn::after {
  content: "";
  display: block;
  width: 50px;
  height: 10px;
  background: currentColor;
  transition: width 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  clip-path: polygon(0 45%, calc(100% - 8px) 45%, calc(100% - 8px) 0%, 100% 50%, calc(100% - 8px) 100%, calc(100% - 8px) 55%, 0 55%);
}
@media (hover: hover) and (pointer: fine) and (min-width: 789px) {
  .p-top .p-bra__btn:hover {
    background-color: #231815;
    color: #ffffff;
  }
  .p-top .p-bra__btn:hover::after {
    width: 62px;
  }
}
.p-top .p-out {
  padding-block: 10rem;
}
@media (max-width: 440px) {
  .p-top .p-out {
    padding-block: 5rem;
  }
}
.p-top .p-btmInfo__ttl {
  padding-block: 0.5em;
  color: #ffffff;
  background: #b2975a;
  text-align: center;
  line-height: 1;
  margin-bottom: 1em;
}

.l-Bottom-ad {
  padding-block: 10rem;
  background-image: url(../../img/home/bg_info.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  .l-Bottom-ad {
    padding-block: 5rem;
  }
}

/* ================================
    インフォメーションセクション
   ================================ */
.l-information {
  padding-block: 30px;
}
.l-information__inner {
  padding: 40px;
}

.l-information .u-inner {
  margin: 40px auto;
  background-color: rgba(255, 255, 255, 0.8);
  max-width: 1080px;
}

.c-news-lists {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .c-news-lists {
    margin-top: 20px;
    padding-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .g-news {
    width: 100%;
    height: calc(100% - 60px);
    top: auto;
    bottom: 0;
    z-index: 3500;
  }
  .g-news-scroll {
    max-height: 200px;
    overflow-x: scroll;
    padding-bottom: 10px;
  }
  .g-news-inner {
    padding: 20px;
  }
  .g-news-pickup {
    font-size: 1.7rem;
    line-height: 1.5;
    padding: 10px 0;
  }
  .g-news dl {
    padding: 20px 0;
  }
  .g-news dl dt {
    font-size: 1.4rem;
  }
  .g-news-button .e-button {
    width: 100%;
  }
  .l-information {
    padding-right: 20px;
    padding-left: 20px;
  }
  .l-information .u-inner {
    margin: 0 auto;
    padding: 15px;
    width: 100%;
  }
}
/* ニュース */
.c-news-tumb {
  display: block;
}
.c-news-tumb > .c-news_data:nth-child(1) {
  width: 100%;
}
.c-news-tumb > .c-news_data:nth-child(2) {
  width: 100%;
}

.c-news_data > a {
  text-decoration: underline;
}

.c-news-lists .c-news-lists_items {
  margin-bottom: 1rem;
  line-height: 1.4;
  font-size: 1.4rem;
}

.c-news-lists .c-news-lists_items:last-child {
  margin-bottom: 0;
}

/* ================================
    バナーエリア
   ================================ */
/* サブタイトル */
.l-subtitle_min {
  color: #333;
  font-size: 2rem;
  text-align: left;
  padding-bottom: 10px;
  margin-bottom: 15px;
  display: block;
  width: 100%;
  border-bottom: 1px solid #b59639;
}

/* スライドバナー */
.l-slide__banner {
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .l-slide__banner {
    width: 100%;
    margin: 0 auto;
    padding: 0px;
  }
}

.l-slide__banner .slick-list {
  margin: 0 -0.5rem;
}

.l-slide__banner .slick-slide {
  width: auto;
  position: relative;
  overflow: hidden;
  margin: 0 0.5rem;
}

.l-slide__banner .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right center;
     object-position: right center;
}

.l-slide__banner .slick-next,
.l-slide__banner .slick-prev {
  position: absolute;
  width: 36px;
  height: 100%;
  border-radius: 0;
  background-color: rgba(35, 35, 35, 0.6);
  cursor: pointer;
  border: none;
  outline: none;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  font-size: 0;
  color: transparent;
}
@media (max-width: 440px) {
  .l-slide__banner .slick-next,
  .l-slide__banner .slick-prev {
    width: 20px;
  }
}
.l-slide__banner .slick-next::before,
.l-slide__banner .slick-prev::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border: 2px solid #ffffff;
  border-width: 2px 2px 0 0;
  position: absolute;
  top: 50%;
  opacity: 1;
}

.l-slide__banner .slick-next {
  right: 0;
}
.l-slide__banner .slick-next::before {
  left: 0px;
  transform: translateY(-50%) rotate(45deg);
}

.l-slide__banner .slick-prev {
  left: 0;
}
.l-slide__banner .slick-prev::before {
  right: 0px;
  transform: translateY(-50%) rotate(-135deg);
}

.l-slide__banner .slick-track {
  display: flex;
}

.l-banner_area {
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .l-banner_area {
    margin-top: 5rem;
  }
}

.l-banner-cp {
  margin: 50px auto 0px auto;
  text-align: center;
  display: block;
}
/*# sourceMappingURL=../../map/home/home.css.map */