/*あぷるくらぶスライド処理*/
.extCatList6.extCatList6_0 .swiper-button-next, .extCatList6.extCatList6_0 .swiper-container-rtl .swiper-button-prev {
    right: 12.5%;
    background-size: 25px 25px;
    background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23FFFFFF'%2F%3E%3C%2Fsvg%3E);
    display: none;
}


element.style {
    left: 226.715px;
}
.extCatList6.extCatList6_0 .swiper-button-prev, .extCatList6.extCatList6_0 .swiper-container-rtl .swiper-button-next {
    left: 12.5%;
    background-size: 25px 25px;
    background-image: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23FFFFFF'%2F%3E%3C%2Fsvg%3E);
    display: none;
}

.extCatList6.extCatList6_0 .swiper-slide .extCatList6Inner {
    width: 100%;
    background: -moz-linear-gradient(top, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.9) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.9) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.9) 100%);
    align-self: flex-end;
    padding: 60px 40px 40px 40px;
    transition: opacity .5s ease-out 0s;
    opacity: 0;
    display: none;
}


/*ボタン全体管理*/
/* ===== 共通：ボタン文字 ===== */
.button02,
.button04 {
  font-size: 18px !important;
  line-height: 1.6;
}

/* ===== 共通：ボタン本体 ===== */
.button02,
.button04 {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  background: linear-gradient(90deg, #e50012 0%, #c30012 50%, #e50012 100%);
  background-size: 200% 100%;
  background-position: 0% 50%;
  position: relative;
  transition: background-position 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  border-radius: 50px;
}

/* ===== 違い：横幅 ===== */
.button02 {
  width: 100%;
}
.button04 {
  width: 400px;
}

/* ===== 共通：hoverアニメーション ===== */
.button02:hover,
.button04:hover {
  background-position: 100% 50%;
}

/* ===== 共通：リンク内テキスト ===== */
.button02 a,
.button04 a {
  display: flex;
  padding: 0 30px;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #fff !important;
}

/* ===== 共通：矢印デザイン ===== */
.button02:before,
.button02:after,
.button04:before,
.button04:after {
  position: absolute;
  top: 50%;
  right: 30px;
  height: 1px;
  background: #fff;
  content: '';
}

.button02:before,
.button04:before {
  width: 20px;
  transform: translateY(-50%);
}

.button02:after,
.button04:after {
  width: 8px;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: right center;
}



/*フッターバナー画像処理*/

.life-footer-banners img {
    border: 1px solid #111!important;
    border-radius: 6px;
    display: block;
    max-width: 100%;
    height: auto;
}


/* フォント処理*/
body{
    margin: 0;
    padding: 0;
    -webkit-font-smomthing: subpixel-antialiased;
    /*font-family: "Noto Sans JP",sans-serif; */
    line-height: 2em;
    font-size: 100%;
    word-break: break-all;
}
h1,h2,h3,h4{
    font-weight: 600!important;
   /*font-family: "Noto Sans JP",sans-serif; */
}
.huto{
    font-weight: 600!important;
    /*font-family: "Noto Sans JP",sans-serif; */
}


p {
    font-size: 16px;
    line-height: 1.8em;
}

a {
  text-decoration: none;
}

a.cta-button {
  text-decoration: none;
}

/* jsアニメーション ページ切り替え */
body::before {
  content: '';
  position: fixed;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #ffffff; /* ホワイト背景 */
  z-index: 9999;
  pointer-events: none;
  left: -100%; /* 初期状態：画面外左側 */
  -webkit-transition: left 2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #ffffff; /* ホワイト背景 */
  z-index: 9999;
  pointer-events: none;
  right: -100%; /* 初期状態：画面外右側 */
  -webkit-transition: right 2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body.is-slide-in::before {
  left: 0; /* 左からスライドイン */
}

body.is-slide::after {
  right: 0; /* 右からスライドアウト */
}




