@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/* ------------------------------------------------------
 * ヘッダーの設定
 * ------------------------------------------------------ */
 /* ヘッダーを固定 */
 @media (min-width: 960px) {
  .l-header {
    position: fixed!important;
    background: #fff;
  }
  .p-breadcrumb {
    margin-top: calc(var(--logo_size_pc) + 32px);
  }
}


/* ------------------------------------------------------
 * PCでハンバーガーボタンを表示させる設定 
 * ------------------------------------------------------ */
.l-header__menuBtn.sp_ {
  display: block!important; /* ハンバーガーボタンを表示 */
}
.-series .l-header__inner {
  align-items: center;  /* ハンバーガーボタンの上下位置調整 */
}
.p-spMenu {
  display: block; /* 開閉メニューを有効 */
}
/* ------------------------------------------------------
 * 開閉メニューのフルスクリーン設定
 * ------------------------------------------------------ */
.p-spMenu__inner {
	--color_menu_text: #000000; /* メニューテキストの色 */
	--color_menu_bg: rgba(255 255 255 / 85%); /* フルスクリーンメニューの背景色 */
  width: 100vw;
}
.p-spMenu__overlay {
  background: transparent;
}
.-right .p-spMenu__inner {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 0;
  transition: opacity .45s;
}
[data-spmenu=opened] .p-spMenu__inner {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}
.p-spMenu__inner::before {
  background: var(--color_menu_bg);
  opacity: 1;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
/* ------------------------------------------------------
 * フルスクリーンメニュー内の設定
 * ------------------------------------------------------ */
.p-spMenu__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 24px;  /* PCのフォントサイズ */
  font-weight: 700;
  color: var(--color_menu_text);
}
@media (max-width: 599px) {
  .p-spMenu__body {
    font-size: 5vw; /* スマホのフォントサイズ */
  }
}
/* 開閉メニュー内のタイトルを非表示 */
.c-widget__title.-spmenu {
  display: none;  
}
/* メニューリンクの設定 */
.c-spnav a {
  border-bottom: none;
}
.c-gnav .sub-menu a:before, .c-listMenu a:before {
  content: none;
}
.p-spMenu__inner a {
  padding: 1em 0;
  text-align: center;
  transition: transform .5s;
}
.p-spMenu__inner a:hover {
  padding-left: inherit;
  padding-right: inherit;
  background-color: inherit;
  transform: scale(1.1)
}
/* 閉じるボタンの設定 */
.c-iconBtn {
  color: var(--color_menu_text);
}
@media (min-width: 960px) {
  .-right .p-spMenu__closeBtn {
    right: var(--swl-pad_container,0);
    height: calc(var(--logo_size_pc) + 32px);
  }
}

/* XO Event Calendar ------------------------- */
 
.xo-event-calendar {
    margin: 0 auto;
}
.xo-months {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.xo-month-wrap {
    width: 47%; //カレンダーの横幅の最大を47%とする
}
@media screen and (max-width: 599px) {
    .xo-event-calendar {
        width: 70%; //カレンダー全体の表示幅の最大を70%とする
    }
    .xo-months {
        display: block; //カレンダーを縦に並べる
    }
    .xo-month-wrap {
        width: 100%; //カレンダーの横幅の最大を100%とする
    }
}
/* フッター調整 */
.l-footer {
   z-index: 1;
}
.l-footer__nav > li {
  position: relative;
}
.l-footer__nav li li {
    height: 0;
    overflow: hidden;
}
.l-footer .sub-menu {
    position: absolute;
}
.l-footer__nav> li:hover ul {
    bottom: 1.5em; /*サブメニューの高さを調整*/
    white-space: nowrap;
    background-color: #f5f5f5;
    padding: 10px 10px 10px 10px;
}
.l-footer__nav li:hover > ul > li {
    height: 2.5rem;
    overflow: visible;
}
@media (min-width: 600px){
	.l-footer__nav .sub-menu a {
		border-right: none;
	}
	.l-footer__nav .sub-menu li:first-child a {
		border-left: none;
	}
}