@charset "UTF-8";
/*
Theme Name: Emanon Premium child
Theme URI: https://wp-emanon.jp/emanon-premium/
Author: 株式会社イノ・コード
Author URI: https://innocord.co.jp/
Description: Emanon Premiumnの子テーマです。
Template: emanon-premium
Version: 1.0.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags:one-column, two-columns, three-columns, left-sidebar, right-sidebar, theme-options
*/
.home-sanluna-box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

/* 全幅用クラス */
.full-width {
  width: 100%;
  margin-left: calc(-50vw + 50%);
  position: relative;
}

/* レスポンシブ対応 */
@media screen and (max-width: 959px) {
  .full-width {
    width: 100%;
    margin-left: 0;
    left: 0;
    transform: none;
  }
}

/* epb-section-divider__contentの背景色のみ全幅にする */
.full-bg {
  position: relative;
  z-index: 1;
}

.full-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  background-color: inherit;
  transform: translateX(-50%);
  z-index: -1;
}
/* swiper */
/* 例：高さ250pxで統一 */
.swiper-slide img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

/* スマートフォン対応 */
@media screen and (max-width: 959px) {
  .swiper-slide img {
    width: 100%;
    height: 200px;
    /* スマートフォンでは少し小さく */
    object-fit: cover;
    display: block;
  }
}

/* より小さいスマートフォン対応 */
@media screen and (max-width: 599px) {
  .swiper-slide img {
    width: 100%;
    height: 150px;
    /* さらに小さく */
    object-fit: cover;
    display: block;
  }
}

/* スマートフォンでドロワーメニューがはみ出る問題を修正 */
@media screen and (max-width: 599px) {
  .drawer-menu.is-slide.is-active {
    width: 90vw;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .drawer-menu__inner {
    box-sizing: border-box;
  }
}
/*フッターメニュー*/
.footer-menu li {
  font-size: 1rem;
}

/* スマートフォン時のメインビジュアルオーバーレイ調整 */
@media screen and (max-width: 959px) {
  .main-visual__overlay {
    background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.5)) !important;
    opacity: 1 !important;
  }
}

/* より小さいスマートフォン対応 */
@media screen and (max-width: 599px) {
  .main-visual__overlay {
    background: linear-gradient(135deg, rgba(0,0,0,0.4), rgba(0,0,0,0.6)) !important;
    opacity: 1 !important;
  }
}

/* スマートフォン時のscroll-downとmain-visual__btnの重なり防止 */
@media screen and (max-width: 959px) {
  .main-visual__btn {
    margin-bottom: 60px !important;
  }
  
  .scroll-down {
    bottom: 20px !important;
    z-index: 200 !important;
  }
}

/* より小さいスマートフォン対応 */
@media screen and (max-width: 599px) {
  .main-visual__btn {
    margin-bottom: 80px !important;
  }
  
  .scroll-down {
    bottom: 15px !important;
  }
  
  /* scroll-down_lineの調整 */
  .scroll-down_line {
    height: 60px !important;
  }
}

/* scroll-down_lineの全体的な調整 */
@media screen and (max-width: 959px) {
  .scroll-down_line {
    height: 50px !important;
  }
}