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

/* ================================
    グローバルコンテナ・ラッパー
   ================================ */
.g-container {
  padding-top: 60px;
}
@media (max-width: 768px) {
  .g-container {
    padding: 60px 0 0 0;
  }
}

.g-wrap {
  position: relative;
}

/* ================================
    ホームページ専用スタイル
   ================================ */
.is-home .g-footer-inner {
  display: none;
}
.is-home .g-footer-nav_button {
  display: inline-block;
}
.is-home .g-footer-pagetop {
  bottom: 75px;
}
@media (max-width: 768px) {
  .is-home .g-container {
    padding: 0;
    position: relative;
  }
  .is-home .u-content {
    position: relative;
  }
  .is-home .u-show__mobile .g-footer-info-merchant-wrap {
    display: block;
  }
}

/* ================================
   メインビジュアル
   ================================ */
/* キービジュアル */
.l-kv {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.l-kv img {
  width: 100%;
}

/* ホームメインビジュアル */
.home-mv {
  width: 100%;
}
.home-mv > p {
  position: absolute;
  writing-mode: vertical-rl;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(35px, 27.7777777778px + 1.8518518519vw, 50px);
  letter-spacing: 0.25em;
  white-space: nowrap;
  font-feature-settings: initial;
}
@media (max-width: 768px) {
  .home-mv > img {
    aspect-ratio: 1/1.1;
    object-fit: cover;
  }
}

/* ガイドページ用メインビジュアル */
.l-mv {
  font-family: "Shippori Mincho B1";
  position: relative;
  background: #ffffff;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  z-index: 1;
}
@media (max-width: 960px) {
  .l-mv {
    height: auto;
  }
}
.l-mv img {
  width: 100%;
}

.l-mv-copy {
  font-size: 5rem;
  letter-spacing: 0.05rem;
  color: #ffffff;
  background: #AC8D35;
  line-height: 1.4;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  padding: 20px;
  margin: 0 auto;
}
@media (max-width: 960px) {
  .l-mv-copy {
    font-size: 2.6rem;
    padding: 20px;
  }
  .l-mv-copy img {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .l-mv-copy {
    font-size: 2.6rem;
    padding: 20px;
  }
}
.l-mv-copy em {
  font-size: 1.5rem;
  display: block;
  width: 100%;
  padding-top: 5px;
}
.l-mv-copy img {
  width: 80%;
  margin: 0 auto;
}

/* メインビジュアルポイント */
.l-mv-point {
  background: linear-gradient(0deg, rgb(199, 167, 136) 0%, rgb(210, 179, 149) 30%, rgb(223, 196, 169) 65%, rgb(238, 215, 191) 100%);
  padding: 30px;
}
.l-mv-point .point-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media (max-width: 960px) {
  .l-mv-point .point-wrap {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.l-mv-point .point-item {
  text-align: center;
  font-size: clamp(18px, 16.5555555556px + 0.3703703704vw, 21px);
  letter-spacing: 0.05em;
}
.l-mv-point .point-item > em {
  font-size: 1.5em;
  line-height: 1.2;
}
.l-mv-point .point-item > strong {
  font-size: 1.3em;
}
.l-mv-point .point-item > small {
  font-size: 0.8em;
}
.l-mv-point .point-item > sup {
  font-size: 1.2rem;
  vertical-align: super;
}
.l-mv-point .divider {
  font-size: 48px;
  color: #231815;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.l-mv-point .note {
  text-align: center;
  margin-top: 18px;
  font-size: 1.2rem;
}

/* メインビジュアル機能セクション */
.l-mv-feature {
  margin: 0 auto;
  text-align: center;
  padding: 40px 20px;
  max-width: 1080px;
}
@media (max-width: 960px) {
  .l-mv-feature {
    padding: 40px 20px;
  }
}
@media (max-width: 768px) {
  .l-mv-feature {
    padding: 40px 20px;
  }
}

.l-mv-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  padding: 30px;
  margin: 0 auto;
  background: url(../../img/home/l-copy_bg.jpg) repeat center/cover;
  text-align: center;
}
.l-mv-action img {
  width: 35%;
  margin: 0 auto;
}
@media (max-width: 960px) {
  .l-mv-action img {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .l-mv-action img {
    width: 100%;
  }
}

/* ================================
    コンセプトセクション
   ================================ */
.l-cnpt {
  background-image: url(../../img/common/l-bg.png);
  background-size: cover;
  background-position: center;
}
.l-cnpt .cnpt-wrap {
  padding-top: 60px;
  padding-bottom: clamp(80px, 60.7407407407px + 4.9382716049vw, 120px);
}
.l-cnpt .cnpt-info {
  display: flex;
  align-items: stretch;
  background-color: #ffffff;
  padding: 30px clamp(30px, 20.3703703704px + 2.4691358025vw, 50px);
  text-align: center;
  max-width: 90%;
  margin: 0 auto;
  width: fit-content;
}
@media screen and (max-width: 1366px) {
  .l-cnpt .cnpt-info {
    flex-direction: column;
    align-items: stretch;
  }
}
.l-cnpt .info__main {
  font-size: 2.1rem;
  padding-right: 5rem;
  margin-right: 3rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.l-cnpt .info__main::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 1px;
  background-color: #231815;
}
@media screen and (max-width: 1366px) {
  .l-cnpt .info__main {
    padding-right: 0;
    margin-right: 0;
  }
  .l-cnpt .info__main::after {
    display: none;
  }
}
@media (max-width: 768px) {
  .l-cnpt .info__main {
    padding-right: 0;
    margin-right: 0;
    font-size: 1.8rem;
  }
}
.l-cnpt .info__main > p {
  max-width: fit-content;
  margin: 0 auto;
  line-height: 1;
}
@media screen and (max-width: 1366px) {
  .l-cnpt .info__main > p {
    margin-bottom: 20px;
    line-height: 1.5;
  }
}
.l-cnpt .info__main > p > em {
  font-size: 1.3em;
}
.l-cnpt .info__main > p > strong {
  font-size: 1.8em;
  color: #B2975A;
  letter-spacing: 0.1;
}
.l-cnpt .info__main > small {
  font-size: 0.6em;
  display: block;
  margin-top: 5px;
}
@media screen and (max-width: 1366px) {
  .l-cnpt .info__main > small {
    margin-bottom: 20px;
  }
}
.l-cnpt .info__other {
  display: flex;
  flex: 1;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .l-cnpt .info__other {
    display: grid;
    grid-template-columns: repeat(2, auto);
    row-gap: 15px;
  }
}
@media (max-width: 768px) and (max-width: 440px) {
  .l-cnpt .info__other {
    grid-template-columns: repeat(1, 1fr);
  }
}
.l-cnpt .info__other .other-item {
  font-size: 1.1rem;
  padding-right: 3rem;
  margin-right: 3rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.l-cnpt .info__other .other-item::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 1px;
  background-color: #231815;
}
.l-cnpt .info__other .other-item:last-child {
  margin-right: 0;
  padding-right: 0;
}
.l-cnpt .info__other .other-item:last-child::after {
  display: none;
}
@media (max-width: 768px) {
  .l-cnpt .info__other .other-item {
    padding-right: 3rem;
    margin-right: 0;
  }
}
@media (max-width: 768px) and (max-width: 440px) {
  .l-cnpt .info__other .other-item {
    padding-right: 0;
  }
  .l-cnpt .info__other .other-item::after {
    display: none;
  }
}
@media (max-width: 768px) {
  .l-cnpt .info__other .other-item:nth-child(even) {
    border-right: none;
    padding-right: 0;
    padding-left: 3rem;
  }
  .l-cnpt .info__other .other-item:nth-child(even)::after {
    display: none;
  }
}
@media (max-width: 768px) and (max-width: 440px) {
  .l-cnpt .info__other .other-item:nth-child(even) {
    padding-left: 0;
  }
}
.l-cnpt .info__other .other-item > em {
  color: #B2975A;
  font-size: 1.5em;
}
.l-cnpt .cnpt-txt {
  margin-top: clamp(50px, 25.9259259259px + 6.1728395062vw, 100px);
  text-align: center;
}
.l-cnpt .cnpt-txt .txt-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.l-cnpt .cnpt-txt .txt-wrap > h2 {
  writing-mode: vertical-rl;
  font-size: clamp(40px, 25.5555555556px + 3.7037037037vw, 70px);
  letter-spacing: 0.3em;
  color: #4D4947;
  font-weight: 500;
  border-inline: 5px double #4D4947;
  padding-inline: 15px 5px;
}
.l-cnpt .cnpt-txt .txt-wrap > p {
  font-size: clamp(36px, 29.2592592593px + 1.7283950617vw, 50px);
  margin-top: 60px;
  letter-spacing: 0.3em;
}
.l-cnpt .cnpt-txt .txt-wrap > p > small {
  font-size: 0.5em;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .l-cnpt .cnpt-txt .txt-wrap > p > small {
    display: block;
    margin-top: 10px;
  }
}
.l-cnpt .cnpt-txt .txt-wrap .txt__desc {
  margin-top: 60px;
  line-height: 2;
  letter-spacing: 0.1em;
}

/* ================================
    コンテンツセクション
   ================================ */
.l-cont {
  margin-top: 100px;
}
.l-cont .cont-loc {
  background-image: url(../../img/home/bg_location.jpg);
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  position: relative;
}
@media (max-width: 768px) {
  .l-cont .cont-loc {
    aspect-ratio: 1/1;
  }
}
.l-cont .cont-loc .loc-dox {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  bottom: 30%;
  padding: 45px 50px 25px 150px;
}
@media (max-width: 1200px) {
  .l-cont .cont-loc .loc-dox {
    bottom: 15%;
    padding-left: 100px;
  }
}
@media (max-width: 768px) {
  .l-cont .cont-loc .loc-dox {
    top: 100%;
    width: 100%;
    padding: 0;
    max-width: 90%;
    justify-self: center;
  }
}
@media (max-width: 768px) {
  .l-cont .cont-loc .loc-dox .btn-more.mod-loc {
    float: right;
  }
}
.l-cont .cont-pos {
  margin-top: 200px;
  position: relative;
  display: flex;
}
@media (max-width: 768px) {
  .l-cont .cont-pos {
    margin-top: 280px;
    display: block;
  }
}
.l-cont .cont-pos .pos-txt {
  flex: 2;
}
.l-cont .cont-pos .pos-txt .btn-more.mod-pos {
  position: absolute;
  bottom: -15%;
  left: 20%;
}
@media (max-width: 1200px) {
  .l-cont .cont-pos .pos-txt .btn-more.mod-pos {
    bottom: -25%;
  }
}
@media (max-width: 768px) {
  .l-cont .cont-pos .pos-txt .btn-more.mod-pos {
    position: inherit;
    float: right;
  }
}
.l-cont .cont-pos .pos-img {
  flex: 8;
  order: 2;
}
@media (max-width: 768px) {
  .l-cont .cont-pos .pos-img {
    aspect-ratio: 1/1;
  }
  .l-cont .cont-pos .pos-img > img {
    height: 100%;
    object-fit: cover;
    object-position: 36% center;
  }
}
.l-cont .cont-acc {
  margin-top: 200px;
  position: relative;
  display: flex;
}
@media (max-width: 768px) {
  .l-cont .cont-acc {
    display: inherit;
    margin-top: 200px;
  }
}
.l-cont .cont-acc .acc-img {
  flex: 7;
  margin-left: 10%;
}
@media (max-width: 1200px) {
  .l-cont .cont-acc .acc-img {
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .l-cont .cont-acc .acc-img {
    aspect-ratio: 1/1;
  }
  .l-cont .cont-acc .acc-img > img {
    height: 100%;
    object-fit: cover;
  }
}
.l-cont .cont-acc .acc-txt {
  flex: 3;
}
.l-cont .cont-acc .acc-txt .btn-more.mod-acc {
  position: absolute;
  bottom: 0;
  right: 10%;
}
@media (max-width: 768px) {
  .l-cont .cont-acc .acc-txt .btn-more.mod-acc {
    position: initial;
  }
}
.l-cont .cont-dsgn {
  margin-top: 130px;
  position: relative;
  display: flex;
  padding-bottom: 150px;
}
@media (max-width: 768px) {
  .l-cont .cont-dsgn {
    display: block;
  }
}
.l-cont .cont-dsgn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 950px;
  background: url(/assets/img/common/l-bg.png) no-repeat center bottom;
  background-size: cover;
  transform: scaleY(-1);
  z-index: -1;
}
.l-cont .cont-dsgn .dsgn-txt {
  flex: 2.5;
}
.l-cont .cont-dsgn .dsgn-txt .btn-more.mod-dsgn {
  position: absolute;
  bottom: 10%;
  left: 8%;
}
@media (max-width: 1200px) {
  .l-cont .cont-dsgn .dsgn-txt .btn-more.mod-dsgn {
    bottom: 20%;
    left: 4vw;
  }
}
@media (max-width: 768px) {
  .l-cont .cont-dsgn .dsgn-txt .btn-more.mod-dsgn {
    position: initial;
  }
}
.l-cont .cont-dsgn .dsgn-img {
  order: 2;
  flex: 7.5;
}
@media (max-width: 768px) {
  .l-cont .cont-dsgn .dsgn-img {
    aspect-ratio: 1/1;
  }
  .l-cont .cont-dsgn .dsgn-img > img {
    height: 100%;
    object-fit: cover;
    object-position: right;
  }
}
.l-cont .cont__bar {
  position: absolute;
  background-color: #ffffff;
  color: #B2975A;
  writing-mode: vertical-rl;
  padding-inline: 45px;
  padding-block: 15px;
}
@media (max-width: 768px) {
  .l-cont .cont__bar {
    padding-inline: 15px;
    padding-block: 10px;
  }
}
.l-cont .cont__bar.mod-loc {
  right: 10%;
  top: -4%;
  background-color: #182F2A;
}
@media (max-width: 768px) {
  .l-cont .cont__bar.mod-loc {
    top: -10%;
    right: 5%;
  }
}
.l-cont .cont__bar.mod-pos {
  top: -100px;
  left: 5%;
}
@media (max-width: 768px) {
  .l-cont .cont__bar.mod-pos {
    top: -10%;
  }
}
.l-cont .cont__bar.mod-acc {
  top: -7%;
  right: 5%;
}
.l-cont .cont__bar.mod-dsgn {
  background-color: #B2975A;
  color: #ffffff;
  top: -3%;
  left: 10%;
}
@media (max-width: 768px) {
  .l-cont .cont__bar.mod-dsgn {
    left: 5%;
  }
}
@media (max-width: 1200px) {
  .l-cont .cont__bar {
    writing-mode: initial;
  }
}
.l-cont .cont__bar > h3 {
  font-size: clamp(30px, 17.4814814815px + 3.2098765432vw, 56px);
  line-height: 1;
  font-family: "Cinzel", serif;
  font-weight: 400;
  letter-spacing: 0.075em;
}
@media (max-width: 768px) {
  .l-cont .cont__bar > span {
    font-size: 1.1rem;
  }
}
.l-cont .cont__desc {
  line-height: 1.9;
  font-size: clamp(16px, 12.1481481481px + 0.987654321vw, 24px);
  letter-spacing: 0.1em;
  position: absolute;
  writing-mode: vertical-rl;
}
@media (max-width: 768px) {
  .l-cont .cont__desc {
    position: initial;
    writing-mode: initial;
    margin-top: 20px;
    margin-bottom: 25px;
  }
}
.l-cont .cont__desc.mod-loc {
  position: initial;
  margin-bottom: 35px;
  writing-mode: initial;
}
@media (max-width: 768px) {
  .l-cont .cont__desc.mod-loc {
    margin-bottom: 25px;
  }
}
.l-cont .cont__desc.mod-pos {
  left: 5%;
  bottom: -100px;
}
@media (max-width: 1200px) {
  .l-cont .cont__desc.mod-pos {
    bottom: 0;
    left: 4%;
  }
}
.l-cont .cont__desc.mod-acc {
  top: 0;
  right: 15%;
}
@media (max-width: 1200px) {
  .l-cont .cont__desc.mod-acc {
    top: 26%;
    right: 12%;
  }
}
.l-cont .cont__desc.mod-dsgn {
  left: 11%;
  top: 28vw;
}
@media (max-width: 1200px) {
  .l-cont .cont__desc.mod-dsgn {
    top: 15vw;
  }
}
.l-cont .cont__desc.mod-dsgn > span {
  writing-mode: horizontal-tb;
  line-height: 1.2;
}

/* ================================
    アクションボタンエリア
   ================================ */
.l-action {
  display: block;
  width: 100%;
  padding: 35px 20px 25px 20px;
  text-align: center;
  background: #DACCBB;
  background: -webkit-gradient(linear, left top, right top, from(rgb(218, 204, 187)), color-stop(50%, rgb(163, 133, 77)), to(rgb(218, 204, 187)));
  background: linear-gradient(90deg, rgb(218, 204, 187) 0%, rgb(163, 133, 77) 50%, rgb(218, 204, 187) 100%);
  color: #201f1e;
  font-size: 3.8rem;
  line-height: 1.1;
}
@media (max-width: 768px) {
  .l-action {
    font-size: 2.2rem;
  }
}

a.l-action_button {
  text-decoration: none;
  color: #ffffff;
  max-width: 750px;
  margin: 0 auto;
  display: block;
  height: auto;
}
@media (max-width: 768px) {
  a.l-action_button {
    width: 100%;
    font-size: 1.8rem;
  }
}
a.l-action_button img {
  width: 75%;
}
@media (max-width: 768px) {
  a.l-action_button img {
    width: 100%;
  }
}

/* ================================
    ボトムエリア
   ================================ */
.l-Bottom-ad {
  background: url(../../img/common/bg_01.jpg?_) repeat center/100% auto;
  z-index: -1;
  padding-bottom: clamp(20px, 10.3703703704px + 2.4691358025vw, 40px);
}

/* ボトムナビゲーション */
@media (max-width: 960px) {
  .l-Bottom-nav .u-inner {
    padding: 40px 20px;
  }
}

/* ================================
    インフォメーションセクション
   ================================ */
.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;
}

.section-title {
  text-align: center;
  border: 3px double #050f1e;
  padding: 15px 0;
  color: #050f1e;
  background-image: url(../../img/common/corner_rt.png), url(../../img/common/corner_lt.png), url(../../img/common/corner_rb.png), url(../../img/common/corner_lb.png);
  background-position: right 2px top 2px, left 2px top 2px, right 2px bottom 2px, left 2px bottom 2px;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  margin: 0 0px 40px 0;
  line-height: 1.4;
  position: relative;
}

.section-title_eng {
  font-size: 3rem;
  letter-spacing: 0.15em;
  padding-bottom: 3px;
}

.section-title_jp {
  font-size: 1rem;
  letter-spacing: 0.5em;
}

@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;
  }
  .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%;
  }
  .g-header-inquiry-sp li .e-link {
    padding: 32px 7px 6px 7px !important;
    font-size: 0.95rem !important;
    border-left: 2px solid #ededed !important;
    display: block;
    text-align: center;
    background: transparent !important;
    color: #050f1e !important;
  }
  .l-information {
    padding-right: 20px;
    padding-left: 20px;
  }
  .l-information .u-inner {
    margin: 0 auto;
    padding: 15px;
    width: 100%;
  }
  .section-title {
    padding: 10px 0 10px 0;
    margin-bottom: 20px;
  }
}
/* ニュース */
.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.5;
  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: cover;
  object-fit: cover;
  -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%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  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: -webkit-box;
  display: -ms-flexbox;
  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;
}

/* ================================
    注釈
   ================================ */
.u-note {
  font-size: 1.2rem;
  margin-top: clamp(20px, 10.3703703704px + 2.4691358025vw, 40px);
}

/* ================================
    フッター情報（モバイル）
   ================================ */
@media (max-width: 768px) {
  .g-footer-info-merchant-wrap {
    border-top: 2px solid #ddd;
    background: #ffffff;
  }
  .g-footer-info-merchant-item {
    width: 100%;
    border-bottom: 1px solid #ddd;
  }
  .g-footer-info-merchant-item .e-link {
    min-height: 0;
    padding: 10px 0;
  }
  .g-footer-info-merchant-item.is-hapia-link .e-link {
    padding: 15px 0;
  }
}/*# sourceMappingURL=home.css.map */