@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;
}
.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;
  top: 45%;
  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%;
    font-size: 1.4rem;
    top: 50%;
    left: 50%;
    color: #ffffff;
    font-size: 1.8rem;
    white-space: nowrap;
  }
}
@media (max-width: 1200px) {
  .p-top .p-mv__txtWrap {
    top: 35%;
  }
}
.p-top .p-mv__ttl {
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #ffffff;
}
@media (max-width: 768px) {
  .p-top .p-mv__ttl {
    color: #ffffff;
  }
}
.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__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 {
  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 {
  text-shadow: 0 0 4px #596674, 0 0 8px #596674, 0 0 16px #596674, 0 0 16px #596674, 0 0 16px #596674;
}
.p-top .p-mv__inner.mod--02 .p-mv__txtWrap {
  text-shadow: 0 0 8px #333, 0 0 8px #333, 0 0 16px #333, 0 0 16px #333, 0 0 16px #333;
}
.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: #37393c;
  background: #ffffff;
}
@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: 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(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  padding-block: 3em;
  width: 90%;
  max-width: 1200px;
  margin-inline: auto;
  gap: 2em;
}
@media (max-width: 768px) {
  .p-top .p-usp__list {
    gap: 1em;
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-top .p-usp__list__item {
  width: 100%;
  height: 100%;
  text-align: center;
  color: #b2975a;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0.25em;
  background: #ffffff;
  position: relative;
  z-index: 2;
  padding: 0.5em 0.25em 0.25em;
  border: solid 1px #b2975a;
  font-size: 1.6em;
}
@media (max-width: 768px) {
  .p-top .p-usp__list__item {
    font-size: 1.4em;
    padding: 0.5em 0;
  }
}
.p-top .p-usp__list small {
  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-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;
  }
}

/* ================================
	コンセプト
   ================================ */
.p-concept {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
}
.p-concept__txtWrap {
  color: #ffffff;
  width: 100% !important;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 2.6rem;
  text-shadow: 0 0 5px #333, 0 0 10px #333, 0 0 10px #333, 0 0 10px #333, 0 0 10px #333, 0 0 10px #333, 0 0 10px #333;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .p-concept__txtWrap {
    font-size: 1.3rem;
  }
}
.p-concept__ttl {
  font-size: 2em;
  line-height: 1.5;
  display: block;
}
.p-concept__ttl span {
  font-family: "Crimson Text", serif;
  font-size: 0.5em;
}
.p-concept__txt {
  margin-top: 1em;
}
.p-concept__txt small {
  display: block;
  font-size: 0.8em;
  margin-top: 1em;
}
.p-concept__img {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
  .p-concept__img {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-concept__img__item {
  aspect-ratio: 4/3;
}
@media (max-width: 768px) {
  .p-concept__img__item {
    aspect-ratio: 16/9;
  }
}
.p-concept__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ================================
リンク集
  ================================ */
.p-links__item {
  padding-block: 5rem;
}
.p-links__item.mod--loca {
  background: linear-gradient(90deg, #dbe7ed 0%, #fff 100%);
}
.p-links__item.mod--acc {
  background: linear-gradient(90deg, #fff 0%, #e2e8de 100%);
}
.p-links__item.mod--acc .p-links__cont {
  grid-template-columns: 1fr minmax(260px, 360px) max(5%, (100% - 1080px) / 2);
}
@media (max-width: 768px) {
  .p-links__item.mod--acc .p-links__cont {
    grid-template-columns: 1fr;
  }
}
.p-links__item.mod--acc .p-links__cont__txt {
  padding-left: 4rem;
  padding-right: 0;
}
@media (max-width: 768px) {
  .p-links__item.mod--acc .p-links__cont__txt {
    padding: 3rem 5%;
  }
}
.p-links__item.mod--acc .p-links__cont__imgs {
  grid-column: 1;
  grid-row: 1;
}
@media (max-width: 768px) {
  .p-links__item.mod--acc .p-links__cont__imgs {
    grid-row: auto;
  }
}
@media (max-width: 768px) {
  .p-links .u-inner {
    padding-top: 4rem;
    padding-bottom: 2rem;
  }
}
.p-links__ttl {
  color: #9f987f;
  text-align: center;
  font-size: 2.4rem;
  font-family: "Crimson Text", serif;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .p-links__ttl {
    font-size: 1.8rem;
  }
}
.p-links__ttl::after {
  content: "";
  width: 100%;
  height: 6px;
  position: absolute;
  z-index: -1;
  bottom: 0.5em;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #e9e0cc 50%, rgba(255, 255, 255, 0) 100%);
}
.p-links__sub {
  text-align: center;
  font-size: 2rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .p-links__sub {
    font-size: 1.8rem;
  }
}
.p-links__cont {
  display: grid;
  grid-template-columns: max(5%, (100% - 1080px) / 2) minmax(260px, 360px) 1fr;
  align-items: center;
  max-width: 1920px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .p-links__cont {
    grid-template-columns: 1fr;
  }
}
.p-links__cont__txt {
  grid-column: 2;
  padding-right: 4rem;
  padding-block: 3rem;
  font-size: 1.5rem;
  line-height: 2;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .p-links__cont__txt {
    grid-column: 1;
    order: 2;
    padding: 3rem 5%;
  }
}
.p-links__cont__imgs {
  margin-top: 4rem;
  grid-column: 3;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .p-links__cont__imgs {
    grid-column: 1;
    order: 1;
    margin-top: 0;
    gap: 0.5rem;
  }
}
.p-links__cont__img {
  aspect-ratio: 4/3;
}
.p-links__cont__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .p-links__cont__img {
    aspect-ratio: 4/3;
  }
}
.p-links__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: 1.4rem;
  font-family: "Crimson Text", serif;
  letter-spacing: 0.15em;
  color: #231815;
  text-decoration: none;
  border: 1px solid #b2975a;
  padding: 0.7em 1.4em;
  transition: background 0.2s cubic-bezier(0.42, 0, 0.58, 1), color 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  color: #b2975a;
}
.p-links__btn.mod--soon {
  pointer-events: none;
  opacity: 0.8;
}
.p-links__btn::before {
  content: "›";
  font-size: 1.3em;
  line-height: 1;
}
@media (hover: hover) and (pointer: fine) and (min-width: 789px) {
  .p-links__btn:hover {
    background: #b2975a;
    color: #ffffff;
  }
}

/* ================================
    インフォメーションセクション
   ================================ */
.l-information {
  padding-block: 30px;
  background: #f7f4ee;
}
.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-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 */