@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);
}

/* ================================
メインビジュアル
   ================================ */
.p-top .c-line {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 1px;
  background: #3d562d;
}
.p-top .c-line::after {
  content: "";
  position: absolute;
  top: 0%;
  left: 50%;
  width: 50%;
  max-width: 13rem;
  height: 4px;
  transform: translateX(-50%);
  background: #3d562d;
}
.p-top .c-line.mod--blk {
  background: #231815;
}
.p-top .c-line.mod--blk::after {
  background: #231815;
}
.p-top .p-mv {
  width: 100%;
  height: calc(100vh - 64px);
  max-width: 1920px;
  margin-inline: auto;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .p-top .p-mv {
    height: calc(100vh - 60px - 70px);
  }
}
.p-top .p-mv__txtWrap {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 3s;
  position: absolute;
  z-index: 1;
}
@media (max-width: 1200px) {
  .p-top .p-mv__txtWrap {
    top: 35%;
  }
}
@media (max-width: 768px) {
  .p-top .p-mv__txtWrap {
    color: #ffffff;
    width: 70%;
    font-size: 2rem;
    top: 30%;
    left: 50%;
  }
}
.p-top .p-mv__txtWrap__ttl {
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #3d562d;
}
@media (max-width: 768px) {
  .p-top .p-mv__txtWrap__ttl {
    color: #ffffff;
  }
}
.p-top .p-mv__txtWrap__line {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 1px;
  background: #3d562d;
  margin-block: 3.2rem;
}
@media (max-width: 768px) {
  .p-top .p-mv__txtWrap__line {
    background: #ffffff;
    margin-block: 1.6rem;
    box-shadow: 0 0 4px #146693, 0 0 8px #146693, 0 0 12px #146693, 0 0 16px #146693;
  }
}
.p-top .p-mv__txtWrap__line::after {
  content: "";
  position: absolute;
  top: 0%;
  left: 50%;
  width: 50%;
  height: 4px;
  transform: translateX(-50%);
  background: #3d562d;
}
@media (max-width: 768px) {
  .p-top .p-mv__txtWrap__line::after {
    box-shadow: 0 0 4px #146693;
    background: #ffffff;
  }
}
.p-top .p-mv__txtWrap__txt {
  font-size: 0.75em;
}
@media (max-width: 440px) {
  .p-top .p-mv__txtWrap__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 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.p-top .p-mv__inner.js-mv-slide.is-active {
  opacity: 1;
}
.p-top .p-mv__inner {
  /* ------------------
  	スライドごとの設定
  -------------------*/
}
.p-top .p-mv__inner.mod--01 .p-mv__txtWrap {
  top: 45%;
  left: 25%;
  text-align: center;
  transform: translate(-50%, -50%);
  font-size: clamp(2rem, 3vw, 4rem);
}
@media (max-width: 1200px) {
  .p-top .p-mv__inner.mod--01 .p-mv__txtWrap {
    top: 35%;
  }
}
@media (max-width: 768px) {
  .p-top .p-mv__inner.mod--01 .p-mv__txtWrap {
    color: #ffffff;
    width: 70%;
    font-size: 1.6rem;
    top: 30%;
    left: 50%;
    text-shadow: 0 0 4px #146693, 0 0 8px #146693, 0 0 12px #146693, 0 0 16px #146693;
  }
}
.p-top .p-mv__inner.mod--02 .p-mv__txtWrap, .p-top .p-mv__inner.mod--03 .p-mv__txtWrap {
  top: 50%;
  left: 5%;
  text-align: left;
  transform: translateY(-50%);
  font-size: clamp(2rem, 2.5vw, 3.2rem);
  background: #231815;
}
@media (max-width: 1200px) {
  .p-top .p-mv__inner.mod--02 .p-mv__txtWrap, .p-top .p-mv__inner.mod--03 .p-mv__txtWrap {
    top: 50%;
  }
}
@media (max-width: 768px) {
  .p-top .p-mv__inner.mod--02 .p-mv__txtWrap, .p-top .p-mv__inner.mod--03 .p-mv__txtWrap {
    transform: translateX(-50%);
    color: #ffffff;
    width: -moz-fit-content;
    width: fit-content;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    top: 10%;
    left: 49%;
    background: none;
  }
}
.p-top .p-mv__inner.mod--02 .p-mv__txtWrap .p-mv__ttl, .p-top .p-mv__inner.mod--03 .p-mv__txtWrap .p-mv__ttl {
  color: #ffffff;
  line-height: 1;
  padding: 0.5em 1.5em 0.35em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25em;
}
@media (max-width: 768px) {
  .p-top .p-mv__inner.mod--02 .p-mv__txtWrap .p-mv__ttl, .p-top .p-mv__inner.mod--03 .p-mv__txtWrap .p-mv__ttl {
    padding: 0.5em 1.5em 0.5em;
    writing-mode: vertical-rl;
    text-orientation: upright;
    /* 日本語・英数字を自然に表示 */
    text-shadow: 0 0 4px #146693, 0 0 8px #146693, 0 0 12px #146693, 0 0 16px #146693;
  }
}
.p-top .p-mv__inner.mod--02 .p-mv__txtWrap .p-mv__ttl::after, .p-top .p-mv__inner.mod--03 .p-mv__txtWrap .p-mv__ttl::after {
  content: "";
  width: 3.5em;
  height: 1px;
  background: #ffffff;
  display: inline-block;
  margin-bottom: 0.2em;
}
@media (max-width: 768px) {
  .p-top .p-mv__inner.mod--02 .p-mv__txtWrap .p-mv__ttl::after, .p-top .p-mv__inner.mod--03 .p-mv__txtWrap .p-mv__ttl::after {
    width: 1px;
    height: 3.5em;
    box-shadow: 0 0 4px #146693, 0 0 8px #146693;
    margin-left: 0.3em;
  }
}
.p-top .p-mv__inner.mod--02 .p-mv__txtWrap .p-mv__ttl small, .p-top .p-mv__inner.mod--03 .p-mv__txtWrap .p-mv__ttl small {
  font-size: 0.6em;
}
@media (max-width: 768px) {
  .p-top .p-mv__inner.mod--02 .p-mv__txtWrap .p-mv__ttl small, .p-top .p-mv__inner.mod--03 .p-mv__txtWrap .p-mv__ttl small {
    font-size: 0.75em;
  }
}
.p-top .p-mv__inner.mod--02 .p-mv__txtWrap .p-mv__ttl small em, .p-top .p-mv__inner.mod--03 .p-mv__txtWrap .p-mv__ttl small em {
  font-size: 1.6em;
  line-height: 1;
}
@media (max-width: 440px) {
  .p-top .p-mv__inner.mod--02 .p-mv__txtWrap .p-mv__ttl small em, .p-top .p-mv__inner.mod--03 .p-mv__txtWrap .p-mv__ttl small em {
    vertical-align: middle;
  }
}
.p-top .p-mv__inner.mod--03 .p-mv__ttl {
  align-items: flex-start !important;
  line-height: 1.25 !important;
}
@media (max-width: 768px) {
  .p-top .p-mv__inner.mod--03 .p-mv__ttl {
    line-height: 1.5 !important;
    align-items: center !important;
    justify-content: center;
  }
}
.p-top .p-mv__inner.mod--03 .p-mv__ttl::after {
  content: "";
  margin-top: 0.6em;
}
@media (max-width: 768px) {
  .p-top .p-mv__inner.mod--03 .p-mv__ttl::after {
    width: 1px;
    height: 3.5em;
    box-shadow: 0 0 4px #146693, 0 0 8px #146693;
    margin-left: 0.3em;
    display: none;
  }
}
.p-top .p-usp {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
}
.p-top .p-usp__main {
  color: #ffffff;
  background: #3d562d;
}
@media (max-width: 768px) {
  .p-top .p-usp__main {
    padding: 1em 0;
    font-size: 2rem;
    text-align: center;
  }
}
.p-top .p-usp__main__item {
  width: 90%;
  max-width: 1440px;
  margin-inline: auto;
  font-size: 3.2rem;
}
.p-top .p-usp__main p {
  text-align: center;
}
.p-top .p-usp__main p em {
  font-size: 2.5em;
  color: #b2975a;
  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(4, 1fr);
  padding-block: 3em;
  width: 90%;
  max-width: 1200px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .p-top .p-usp__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-top .p-usp__list__item {
  height: 100%;
  text-align: center;
  font-size: 2em;
  color: #b2975a;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0.25em;
  border-right: solid 1px #231815;
}
@media (max-width: 768px) {
  .p-top .p-usp__list__item {
    font-size: 2.4em;
    padding: 0.5em 0;
    border-right: unset;
    border-bottom: solid 1px #231815;
  }
}
.p-top .p-usp__list__item:nth-last-of-type(1) {
  border-right: unset;
}
@media (max-width: 768px) {
  .p-top .p-usp__list__item:nth-last-of-type(1) {
    border-bottom: unset;
  }
}
.p-top .p-usp__list small {
  color: #231815;
  font-size: 0.5em;
  display: block;
  line-height: 1.2;
}
.p-top .p-usp__list em {
  font-size: 1.75em;
}
.p-top .p-usp__list b {
  font-size: 1.1em;
}
.p-top .p-usp__list i {
  font-size: 1.3em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.p-top .p-usp__list i span {
  line-height: 0.8;
  display: inline-block;
}
.p-top .p-usp__list strong {
  font-size: 0.8em;
  line-height: 1.2;
  color: #231815;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.p-top .p-posi {
  margin-top: 10rem;
}
.p-top .p-posi__wrap {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 28% 1fr 28%;
}
@media (max-width: 768px) {
  .p-top .p-posi__wrap {
    grid-template-columns: 1fr;
    gap: 5rem;
    margin-top: 5rem;
  }
}
.p-top .p-posi__center {
  width: 90%;
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-rows: 40% 1fr 30%;
  gap: 0;
}
@media (max-width: 768px) {
  .p-top .p-posi__center {
    grid-template-rows: 26% 1fr 0.8fr;
    width: 90%;
  }
}
.p-top .p-posi__center__ttl {
  color: #3d562d;
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-inline: 1em;
  width: 100%;
  font-size: 4rem;
}
@media (max-width: 768px) {
  .p-top .p-posi__center__ttl {
    font-size: 3.4rem;
  }
}
.p-top .p-posi__center__sub {
  color: #3d562d;
  text-align: center;
  font-size: 3rem;
}
@media (max-width: 768px) {
  .p-top .p-posi__center__sub {
    font-size: 2.6rem;
  }
}
.p-top .p-posi__center__sub sup {
  font-size: 0.5em;
  vertical-align: text-top;
}
.p-top .p-posi__center__sub b {
  font-size: 1.25em;
}
.p-top .p-posi__center__txt {
  color: #3d562d;
  text-align: center;
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .p-top .p-posi__center__txt {
    font-size: 1.8rem;
  }
}
.p-top .p-posi__center__txt small {
  font-size: 0.8em;
  display: block;
  text-align: right;
}
.p-top .p-posi__center__img {
  width: 100%;
  height: 100%;
}
.p-top .p-posi__center__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-top .p-posi__left {
  display: grid;
  grid-template-rows: 30% 25% 1fr;
  gap: 4px;
}
@media (max-width: 768px) {
  .p-top .p-posi__left {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
}
.p-top .p-posi__left__img {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .p-top .p-posi__left__img.mod--01 {
    grid-area: 1/1/2/2;
  }
  .p-top .p-posi__left__img.mod--02 {
    grid-area: 2/1/3/2;
  }
  .p-top .p-posi__left__img.mod--03 {
    grid-area: 1/2/3/3;
  }
}
.p-top .p-posi__left__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top .p-posi__right {
  display: grid;
  grid-template-rows: 30% 30% 1fr;
  gap: 4px;
}
@media (max-width: 768px) {
  .p-top .p-posi__right {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
}
.p-top .p-posi__right__img {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .p-top .p-posi__right__img.mod--01 {
    grid-area: 1/1/2/2;
  }
  .p-top .p-posi__right__img.mod--02 {
    grid-area: 2/1/3/2;
  }
  .p-top .p-posi__right__img.mod--03 {
    grid-area: 1/2/3/3;
  }
}
.p-top .p-posi__right__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top .p-links {
  margin-top: 20rem;
  width: 100%;
  height: 100%;
  max-width: 1920px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .p-top .p-links {
    margin-top: 10em;
  }
}
.p-top .p-links__imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
@media (max-width: 768px) {
  .p-top .p-links__imgs {
    grid-template-columns: 1fr;
  }
}
.p-top .p-links__img {
  width: 100%;
  height: 100%;
}
.p-top .p-links__img img {
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top .p-links__ttl {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #231815;
  color: #ffffff;
  text-align: center;
  padding: 0 1em;
  max-width: 38rem;
  width: 80%;
}
.p-top .p-links__txtwrap {
  padding: 3rem 0;
}
.p-top .p-links__txt {
  text-align: center;
  font-size: 1.6rem;
}
.p-top .p-links__btn {
  width: 80%;
  max-width: 25rem;
  margin-inline: auto;
  border-radius: 2rem;
  font-size: 1.6rem;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  background: #ffffff;
  border: solid 1px #231815;
  color: #231815;
  margin-top: 2em;
}
@media (hover: hover) and (pointer: fine) and (min-width: 789px) {
  .p-top .p-links__btn:hover:hover {
    background: #231815;
    border: solid 1px #231815;
    color: #ffffff;
  }
}
.p-top .p-links__arw {
  position: relative;
  width: 0.6em;
  height: 0.6em;
}
.p-top .p-links__arw::after, .p-top .p-links__arw::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  position: absolute;
  display: inline-block;
  content: "";
  width: 100%;
  height: 100%;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
}
.p-top .p-links__arw::before {
  left: calc(50% - 0.25em);
}
.p-top .p-btmInfo__ttl {
  text-align: center;
  line-height: 1;
}

.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-top: 30px;
}

.l-information .u-inner {
  margin: 40px auto;
  padding: 40px;
  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-slide {
  margin: 0 20px;
  width: auto;
  position: relative;
  overflow: hidden;
}

.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-arrow {
  width: 50px;
  height: 100%;
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
  border: none;
  outline: none;
  font-size: 0;
  position: absolute;
  top: 0;
  z-index: 1;
}

.l-slide__banner .slick-arrow::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid #ffffff;
  border-width: 1px 1px 0 0;
  position: absolute;
  top: 48%;
  transform: rotate(45deg);
}

.l-slide__banner .slick-next {
  right: 0;
}

.l-slide__banner .slick-prev {
  left: 0;
}

.l-slide__banner .slick-next::before {
  left: 20px;
}

.l-slide__banner .slick-prev::before {
  border-width: 0 0 1px 1px;
  right: 22px;
}

.dots-2 .slick-dots {
  text-align: center;
}

.dots-2 .slick-dots li {
  display: inline-block;
}

.dots-2 .slick-dots button {
  display: block;
  width: 10px;
  height: 10px;
  margin: 6px;
  font-size: 0;
  padding: 0;
  border: 0;
  outline: none;
  cursor: pointer;
  background: #bcbcbc;
  border-radius: 50%;
}

.dots-2 .slick-dots .slick-active button {
  background: #0a467d;
}

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

.l-slide__banner .slick-slide {
  height: auto !important;
}

.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 */