/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 25 2026 | 07:39:54 */
/* 
@media (max-width: 640px) 
@media (min-width: 960px) 
var(--color_main)
サブカラーの設定
var(--color_deep01)
var(--color_deep02)
var(--color_deep03)
var(--color_deep04)
--color_deep01: #e44141;
--color_deep02: #3d79d5;
--color_deep03: #63a84d;
--color_deep04: #f09f4d;
--color_pale01: #fff2f0;
--color_pale02: #f3f8fd;
--color_pale03: #f1f9ee;
--color_pale04: #fdf9ee;
*/
/* -------------
○○〇の設定
-----------------------------*/
/*---------------------------------*/
/*ヘッダー*/
/*---------------------------------*/


/* ▼ サブメニューを持つ親メニューのみに矢印を表示 */
.menu-item-has-children a > .ttl {
  position: relative;
  padding-right: 1.2em;
}
.menu-item-has-children > a >.ttl::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8em;
  color: currentColor;
  pointer-events: none;
font-size: 11px;
}
.menu-item-has-children:hover a > .ttl::after {
  transform: translateY(-50%) rotate(180deg);
  transition: transform 0.3s ease;
}
.l-fixHeader__gnav .menu-item-has-children > a >.ttl::after {
    top: 50%;
}
/* =========================================================
   スマホ ナビゲーション設定（アプリグリッド風）
========================================================= */
.c-iconBtn__icon.icon-menu-thin {
  display: block;
  position: relative;
  width: 28px;
  height: 28px;
}

/* 9ドット風 */
.c-iconBtn__icon.icon-menu-thin::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 6px;
  height: 6px;
  background: var(--color_main);
  border-radius: 50%;

  box-shadow:
    10px 0 var(--color_main),
    20px 0 var(--color_main),

    0 10px var(--color_main),
    10px 10px var(--color_main),
    20px 10px var(--color_main),

    0 20px var(--color_main),
    10px 20px var(--color_main),
    20px 20px var(--color_main);
}

.l-header__customBtn, .l-header__menuBtn {
width: 90px;
}
/* 開閉設定内のメニュー */
@media (max-width: 960px) {
.p-spMenu__nav .c-spnav {
    display: flex;
    flex-wrap: wrap;
}
.p-spMenu__nav .c-spnav .menu-item {
width: calc(100% / 1);
}
}
.p-spMenu__nav .c-listMenu a {
  font-size: 16px;
  border: 1px solid #fff !important;
  text-align: center;
  padding: 1.3rem 1.4px;
  width: 100%;
  flex-grow: 1;
  background: #e1e1e15e;
  color: #333;
  transition:.3s;
}
.p-spMenu__nav .c-listMenu a:hover {
    background-color: #fff;
	transition:.3s;
}
.p-spMenu__nav .c-listMenu a:before {
  display: none;
}
@media (max-width: 960px) {
.p-spMenu__nav .c-listMenu a {
  font-size: 14px;
}
}
/*--------- 開閉メニュー：ズームイン --*/
.p-spMenu__inner {
  --color_menu_text: #000000;
  --color_menu_bg: #ffffff;
  width: 100vw;
  max-width: 100%;
  overflow: hidden;
}

.p-spMenu__overlay {
  background: rgba(0, 0, 0, .25);
}

.-right .p-spMenu__inner {
  transform: scale(.94);
  opacity: 0;
  transition:
    opacity .35s ease,
    transform .45s cubic-bezier(.22, 1, .36, 1);
}

[data-spmenu=opened] .p-spMenu__inner {
  transform: scale(1);
  opacity: 1;
}

.p-spMenu__inner::before {
  background: var(--color_menu_bg);
  opacity: 1;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
/* -------------
フッターメニュー設定
-----------------------------*/
#nav_menu-2 {
    max-width: 700px;
    margin: 2em auto;
}
#nav_menu-2 a{
    border-bottom: none;
	    font-size: 12px;
}
#nav_menu-2 ul{
    display: flex;
    flex-wrap: wrap;
}
#nav_menu-2 li {
    width: calc(94% / 3);
    margin: 0 1%;
}
@media (min-width: 960px) {
    .w-footer__box {
width: 50%;
    }
}
@media (max-width: 600px) {
#nav_menu-2 li {
    width: calc(96% / 2);
}
}
/* =========================
フッター全体（背景画像）
========================= */
@media (min-width: 768px){
    .l-footer{
     width: 100%;
    }
}
.l-footer__inner{
    padding: 1em;
}
.l-footer .l-footer__widgetArea{
    max-width: 97%;
    margin: auto;
    border-radius: 40px;
    padding: 10px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
       .w-footer {
 width: 100%;
        padding: 0;
		          align-items: center;
    }
.w-footer__box svg:not([fill]){
    fill: rgb(255 255 255);
}
/* ----------------------------------- */
/* 追従設定 固定フッター*/
/* ----------------------------------- */
.floating {
	position: fixed;
	bottom:0;
	z-index: 1000; 
	left: 50%;
	transform: translate(-50%, 0%);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
	display: none;
	transition: opacity 0.6s ease;
	max-width: 600px;
	animation: floatUp 3s ease-in-out infinite;
}

/* ふわっと浮く */
@keyframes floatUp {
	0%, 100% {
		transform: translateX(-50%) translateY(0);
	}
	50% {
		transform: translateX(-50%) translateY(-6px);
	}
}
.floating.show {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	display: block;
	transition: opacity 0.6s ease;
}
.icon-black svg:not([fill]) {
	fill: rgb(0 0 0);
}
.post_content .floating .bg-btn{
	border-radius: 0 50px 0 0;
	padding: 10px;
}
.post_content .floating .bg-btn-r{
	border-radius: 50px 0 0 0 ;
	padding: 10px;
}
@media (max-width: 670px) {
	.floating{
		min-width: 100%;
	}
	.floating .swell-block-button .swell-block-button__link[data-has-icon] {
		font-size: 11px;
		line-height: 2;
	}
}

/*---------------------------------*/
/*メニュー横に斜線*/
/*---------------------------------*/
@media (min-width: 960px) {

    #header .menu-item::before,
	.l-fixHeader__inner .menu-item::before{
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        height: 15px;
        width: 1px;
        transform: translateY(-50%);
        background: #343433;
    }
    #header .menu-item:first-child::before,
	.l-fixHeader__inner .menu-item:first-child::before{
        content: none;
    }
}

