/*
Theme Name: メルティンググッズ
Theme URI:
Template: lightning
Description:
Author:
Tags:
Version: 0.6.1
*/

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 * general　全体的な設定
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* WordPressコアのカラムブロックが782px未満で段落ちするのを防ぐ調整 */
@media screen and (min-width: 768px) and (max-width: 781px) {
  .wp-block-columns {
    flex-wrap: nowrap !important; /* カラムの折り返しを強制的に禁止 */
  }

  .wp-block-column {
    flex-basis: 0 !important;
    flex-grow: 1;
  }
  /* 2カラム（50%）の場合 */
  .wp-block-column[style*="flex-basis: 50%"] {
      flex-basis: 50% !important;
  }

  /* 3カラム（33.33%）の場合 */
  .wp-block-column[style*="flex-basis: 33.33%"] {
      flex-basis: 33.33% !important;
  }
}
/*パンくずは非表示*/
.breadcrumb {
  display: none !important;
}
/*ページヘッダーを非表示*/
.page-header {
	display: none !important;
}
/**/
.no-gap {
	gap: 0!important;
}
.rem5-gap {
    gap: 0.5rem!important;
}
/*リンク*/
a,li a, p a {
    text-decoration: underline;
    -webkit-text-decoration-style: solid;
    text-decoration-style: solid;
    text-underline-offset: 10%;
    -webkit-text-decoration-color: rgba(0, 0, 0, .5);
    text-decoration-color: inherit;
    text-decoration-thickness: 5%;
    transition: all 0.4s ease;
}

a:hover {
    color: #F2157F!important;
    text-decoration: none;
}
/*ボタンのリンクホバー時テキスト*/
.vk_button.is-style-shine .btn.has-background:not(.has-text-color) {
    color: #fff!important;
}
/*テキストを開ける*/
.kan {
	letter-spacing: 0.5rem;
}
/* Mediaとテキスト */
.wp-block-media-text:not(.has-media-on-the-right) .wp-block-media-text__content {
    padding-right: 0;
}
.wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
    padding-left: 0;
}

@media (max-width: 768px) {
	.wp-block-media-text .wp-block-media-text__content {
		padding:0;
		margin-top:1em;
	}
}
/* 背景固定がスマホで効かないバグ修正 */
.wp-block-cover.has-parallax {
    position: relative;
    clip-path: inset(1px -1px);
}
.wp-block-cover__image-background.has-parallax {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw !important;
  height: 100vh !important;
}
/*headerとの空きをなくす*/
.site-body {
    padding: 0 0 4rem;
}
/*フェイドイン*/
.fade-in-up {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-up.show {
	opacity: 1;
	transform: translateY(0);
}
.fade-delay-1.show {
	transition-delay: 0.2s;
}
.fade-delay-2.show {
	transition-delay: 0.6s;
}
.fade-delay-3.show {
	transition-delay: 1s;
}
.fade-delay-4.show {
	transition-delay: 1.4s;
}

/*画像の色を変える*/
.img-color.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  filter: grayscale(100%);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out,
    filter 0.8s ease-out;
}
.img-color.fade-in-up.show {
  opacity: 1;
  transform: translateY(0);
  filter: grayscale(0%);
}
.img-color.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  filter: grayscale(100%); /* 最初はモノクロ */
  transition: 
    opacity 0.8s ease-out,
    transform 0.8s ease-out,
    filter 0.8s ease-out 0.8s; /* 遅らせてカラー化 */
}
.img-color.fade-in-up.show {
  opacity: 1;
  transform: translateY(0);
  filter: grayscale(0%); /* カラーに */
}
/* 遅延1：全体に0.2秒遅延、filterに+0.8sで1.0秒後にカラー */
.img-color.fade-delay-1.show {
  transition-delay: 0.2s, 0.2s, 1s;
}

/* 遅延2：全体に0.6秒遅延、filterに+0.8sで1.4秒後にカラー */
.img-color.fade-delay-2.show {
  transition-delay: 0.6s, 0.6s, 1.4s;
}

/**/
.sp-only {
    display: none;
}
@media (max-width: 991.98px) {
    .sp-only {
        display: block;
    }
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 * common 汎用パーツ系
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

/* 繰り返しボタン・見出し、余白設計など */
/*スマホメニューの背景色と文字*/
.vk-mobile-nav {
    background-color: #333;
}
.vk-mobile-nav .widget_nav_menu ul li a, .vk-mobile-nav nav ul li a {
    color: #ccc;
}
/*ハンバーガーナビのデザイン*/
#vk-mobile-nav-menu-btn {
    background: none;
    background-color: unset;
    border: none;
}
#vk-mobile-nav-menu-btn {
    position: fixed;
    top: 20px;
}
.mobile-nav-btn-right .vk-mobile-nav-menu-btn, .vk-mobile-nav-menu-btn.position-right {
    left: inherit;
    right: 20px;
}
#vk-mobile-nav-menu-btn::after {
    content: '\f0c9';
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    font-size: 34px;
    color: #ddd;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 34px;
    width: 34px;
    text-align: center;
    text-indent: 0;
}
#vk-mobile-nav-menu-btn.menu-open::after {
    content: '\f00d';
}
.vk-menu-acc .acc-btn {
    aspect-ratio: 1;
    height: 34px;
    width: auto;
    top: 0;
    background: none;
    display: grid;
    justify-content: center;
    border: none;
}
.vk-menu-acc .acc-btn::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: '\f107';
    font-size: 20px;
}
.vk-menu-acc .acc-btn.acc-btn-close {
    transform: rotate(-180deg);
}
/*viewボタン*/
.btn-view a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #555;
  transition: all 0.4s ease;
  position: relative;
}
.btn-view .btn-ttl {
  font-size: 1rem;
  font-weight: 400;
  margin-right: 3rem;
  position: relative;
  display: inline-block;
  transition: 
    color 0.4s ease,
    transform 0.6s ease 0.2s,
    margin-right 0.4s ease 0.2s;
  transform-origin: center center;
}
.btn-view .btn-ttl::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem; /* ← 初期の線の長さ */
  height: 1px;
  background-color: #777;
  transition: width 0.4s ease;
}
.btn-view .btn-block {
  width: 160px;
  height: 44px;
  background-color: #F2157F;
  border-radius: 100px;
  position: relative;
}
.btn-view .btn-block::before {
  content: "\f111";
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  font-size: 0.56rem;
  color: #fff;
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
.btn-view .btn-block::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
.btn-view a:hover .btn-ttl {
  color: #F2157F;
  transform: rotateX(360deg);
  margin-right: 6rem; /* テキスト左に移動 */
}
.btn-view a:hover .btn-ttl::after {
  width: 100px; /* ← 線が長く伸びてボタンに近づく */
}
/* 通常時（hover解除後） */
.btn-view .btn-ttl {
  transition:
    color 0.4s ease,
    transform 0.6s ease,
    margin-right 0.4s ease;
}
/* hover時のみdelayをかける */
.btn-view a:hover .btn-ttl {
  color: #F2157F;
  transform: rotateX(360deg);
  margin-right: 4rem;
  transition:
    color 0.4s ease,
    transform 0.6s ease 0.2s,
    margin-right 0.4s ease 0.2s;
}

.btn-view .btn-block {
  width: 160px;
  height: 44px;
  background: linear-gradient(to right, #000 50%, #F2157F 50%);
  background-size: 200% 100%;
  background-position: right; /* 初期はピンクが見える */
  border-radius: 100px;
  position: relative;
  transition: background-position 0.3s ease;
  overflow: hidden;
}

.btn-view a:hover .btn-block {
  background-position: left; /* ホバーで黒が左から右に現れる */
}

/*下に英字が入る見出し*/
.hd-line-area {
	display: flex;
	align-items: center;
	margin-bottom: 2.875rem !important;
    max-width: 1110px !important;
}
.hd-line-area.first-ttl {
    margin-top: -25px;
}
.hd-line {
	font-size: 2.6rem;
	line-height: 1.4;
	display: flex;
	flex-direction: column;
	color: #222222;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 1110px !important;
    width: 100%;
}
.hd-line span {
	font-size: 1.125rem;
    padding-top: 4px;
	color: #E40065;
	position: relative;
	font-weight: 400;
}
.hd-line span::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: #000;
  width: 100vw;
}
/*英字背景*/
.bg-ttl {
    margin-bottom: 0!important;
}
.bg-ttl img {
    margin-top: -4px!important;
}

/*テーブル*/

.tb_under-line table {
  border-color: #bfbfbf;
  border-width: 1px;
  font-size: 1rem;
}
.tb_under-line :is(td,th) {
  border: none;
  padding: 1.2rem;
  text-align: left;
}
.tb_under-line th {
  width: 15%;
  padding-left: 0;
}
.tb_under-line :is(td,th) {
  border-bottom:1px solid #bfbfbf;
}

/*電話ボタン*/
.btn-tel-contact .vk_button_link.btn-lg {
    font-size: 3rem;
    font-weight: 900;
    padding: .6rem 1.5rem;
    max-width: 500px;
    width: 100%;
}
@media (max-width: 991.98px) {
    .hd-line {
        font-size: 2.6rem;
    }
}
@media (max-width: 767.98px) {
    .hd-line {
        font-size: 2.2rem;
    }
}
@media (max-width: 575.98px) {
    .btn-view .btn-block {
      background: #F2157F;
      background-size: 100%;
      background-position: unset;
      transition: auto;
      overflow: hidden;
    }

    .btn-view a:hover .btn-block {
      background-position: unset;
    }
    /*電話ボタン*/
    .btn-tel-contact .vk_button_link.btn-lg {
        font-size: 2.8rem;
    }
    /*テーブル*/
    .tb_under-line th {
      width: 25%;
    }
}

/*topに戻るボタン*/
.page_top_btn {
    width: 40px;
    height: 40px;
    background: rgb(242 22 127);
    box-shadow: unset; 
    background-image: var(--ver_page_top_button_url);
    background-position: center;
    background-size: 50%;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity .3s;
    border-radius: 100px;
    font-size: 0;
}

/*-- CTAレイアウト調整 --------------------------------------------------*/

.cta-btnarea {
	max-width: 1200px!important;
	padding-left: 30px;
	padding-right: 30px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	/*gap: 60px!important;*/
}
/* 電話・メールボタン共通サイズ */
	.btn-tel.vk_button,
	.btn-mail.vk_button,
	.btn-tel.vk_button a,
	.btn-mail.vk_button a {
	max-width: 500px;
	width: 100%;
}
.btn-tel.vk_button a,
.btn-mail.vk_button a {
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	position: relative;
}
/* 電話ボタンデザイン */
.btn-tel.vk_button a.vk_button_link {
	font-size: 2.5rem;
}
.btn-tel.vk_button a.has-text-color.is-style-outline:hover {
	background-color: transparent;
}
/* メールボタンデザイン */
.btn-mail.vk_button a.vk_button_link {
	font-size: 1.5rem;
	opacity: 1;
}
.btn-mail.vk_button {
	position: relative;
}
.btn-mail.vk_button::before {
	content: "\f111";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 1rem;
	color: #fff;
	position: absolute;
	left: 1rem;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
}
.btn-mail.vk_button::after {
	content: "\f061";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	font-size: 1.5rem;
	color: #fff;
	position: absolute;
	right: 1.5rem;
	top: 50%;
	transform: translateY(-50%);
}
@media (min-width: 992px) {
    .cta {
        height: 600px;
    }
}
@media (min-width: 769px) {
	.cta {
		height: 500px;
	}
    /* PCサイズでは電話リンクを無効に */
	.btn-tel {
		pointer-events: none;
		cursor: default;
	}
	.btn-tel:hover {
		background-color: inherit;
		color: inherit;
	}
}
@media (max-width: 991.98px) {
    .cta-txt {
        font-size: 1.3rem!important;
    }
}
@media (max-width: 781.98px) {
  .cta-btnarea {
    padding-left: 15px;
    padding-right: 15px;
    justify-content: center;
  }
  .cta-btnarea .wp-block-column {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .btn-tel.vk_button,
  .btn-mail.vk_button {
    width: 100%;
    max-width: 500px;
    min-width: 320px;
  }
}
@media (max-width: 575.98px) {
    .top-pageheader .btn-mail.vk_button,
    .contact-box .btn-mail.vk_button {
        min-width: unset;
    }
    .top-pageheader .btn-mail.vk_button .vk_button_link_txt,
    .contact-box .btn-mail.vk_button .vk_button_link_txt {
        font-size: 1.3rem;
    }
    .cta h2 {
        font-size: 2.2rem!important;
    }
    .cta-txt {
        font-size: 1.15rem !important;
    }
}

/* モバイル時のタップ時文字色補正 */
@media (max-width: 768px) {
	.cta-btnarea {
		width: 100%;
		max-width: 500px!important;
		padding-left: 15px;
		padding-right: 15px;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		gap: 30px!important;
	}
	.vk_button.btn-tel .has-text-color.is-style-outline.has-white-color:hover .vk_button_link_txt,
	.vk_button.btn-tel .has-text-color.is-style-outline.has-white-color .vk_button_link_txt,
	.vk_button.btn-tel .has-text-color.is-style-outline:hover.has-white-color .vk_button_link_before,
	.vk_button.btn-tel .has-text-color.is-style-outline:hover.has-white-color .vk_button_link_txt {
		color: #fff !important;
	}
	.cta-btnarea.wp-block-columns {
	    align-items: center !important;
	  }
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 * header ヘッダーまわり
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

/* ヘッダーウィジェット・グローバルナビ */
.site-header-container.container {
	max-width: 100%;
	background-color: rgb(34 34 34 / 75%);
}
.site-header,
.header_scrolled .site-header {
    background-color: unset;
}
.site-header .nav li a, nav li a {
    color: #fff;
}
.site-header-logo img {
    max-width: 256px;
}
.header_scrolled .site-header-logo {
    display: block;
}
.header_scrolled .global-nav-list {
    height: auto;
}

@media (min-width: 992px) {
    .header_scrolled .site-header .global-nav {
        display: flex;
        align-items: center;
    }
}

@media (max-width: 991.98px) {
    .site-header-logo {
        padding-top: .5rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    .site-header-logo img {
        max-height: 35px;
        margin-left: 10px;
    }
}
/*グローバルナビ*/
.global-nav-list>li .global-nav-name {
    font-size: 1rem;
    font-weight: 400;
}
.device-pc .global-nav-list li.contact a {
	background-color: #F2157F;
	border-radius: 100px;
	width: 240px;
	padding: 1rem 0;
	margin-left: 2rem;
}
.device-pc .global-nav-list li.contact .global-nav-name {
	font-size: 1.25rem;
}
.global-nav-list>li:before {
    content: unset;
}
.device-pc .global-nav-list>li>a {
    padding: 0;
}
.device-pc .global-nav-list li strong {
    border-right: 1px solid #fff;
    padding: 0 2em;
    line-height: 1.2;
    transition: all .3s ease-out;
}
.device-pc .global-nav-list li:nth-last-child(2) strong,
.device-pc .global-nav-list li:last-child strong {
    border-right: unset;
}
.device-pc .global-nav-list li:hover strong {
    color: #F2157F;
}
.device-pc .global-nav-list li:last-child:hover strong {
    color: #fff;
}
@media (min-width:992px) and (max-width:1200px) {
	.global-nav-list>li .global-nav-name {
	    font-size: 0.875rem;
	}
	.device-pc .global-nav-list li.contact a {
		background-color: #F2157F;
		border-radius: 100px;
		width: 170px;
		padding: 1rem 0;
		margin-left: 1rem;
	}
	.device-pc .global-nav-list li.contact .global-nav-name {
		font-size: 1rem;
	}
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 * footer フッターまわり
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

/* フッターウィジェット、フッターロゴ、コピーライト */
.footer-nav {
	max-width: 1260px;
	margin: auto;
}
.footer-logo {
	max-width: 256px;
	margin: 0 auto 2.5rem;
}
.site-footer {
    border-top: unset;
}
.footer-nav {
    border-bottom: 2px solid #000;
    padding: 0 0 2.5rem;
}
/**/

/* 基本構造 */
.footer-nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav-list li {
  padding: 0;
  margin-bottom: 1rem;
}
.footer-nav-list li a {
  font-size: 1rem;
  padding: 0 2rem;
}
.footer-nav-list li a:hover {
  color: #e40065;
}


/**/
.footer-nav-list li:first-child {
    border-left: unset;
}
.footer-nav-list li {
    border-right: 1px solid #777;
}
.footer-nav-list li:last-child {
    border-right: unset;
}
/**/
.site-footer-copyright {
  display: none;
}
.copyright {
  text-align: center;
  padding: 2em 0;
  font-size: 0.875em;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
    .footer-nav-list li {
        border-bottom: unset;
    }
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 * pageheader,breadcrumb 下層ページヘッダー
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

/* 下層ページのページヘッダー*/
.page-header {
	margin-top: -84px;
}
.page-ttl {
	display: inline-block;
	padding: 0.2em 2em;
	border: 2px solid #F2157F;
	border-radius: 50px;
	color: #F2157F;
	font-size: 1.5rem;
	white-space: nowrap;
}
/*ご注文の流れ*/
.bg-cover {
    align-items: flex-start;
    background-position: 50%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    min-height: 430px;
    overflow: hidden;
    overflow: clip;
    padding: 0;
    position: relative;
}
.bg-area {
    position: relative;
}
.step-area {
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1110px;
    width: 100%;
}
.step-area .wp-block-column:not(.num) p {
    text-shadow: 1px 1px 1px #ffffffa6;
}
.step-ttl {
    font-size: 2rem;
    line-height: 1.4;
}
.step-ttl mark {
    display: block;
    font-weight: 400;
    font-size: 0.875rem;
}
.step-block {
    margin; auto;
    min-height: 260px;
    max-width: 100%;
    width: 100%;
    padding: 0 1rem;
}
.step-box.wp-block-group {
    border-style: none;
    border-width: 0px;
    border-radius: 99px!important;
    background-color: #222222;
    padding: 0!important;
    color: #F2157F!important;
    font-weight: 900;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.num {
    max-width: 100px;
}
.step-no {
    font-size: 3rem;
    line-height: 1;
}
.step-box {
    position: relative;
}
.step-box::after {
    content: '';
    background: #000;
    width: 2px;
    height: 210%;
    position: absolute;
    left: 50px;
    top: 100%;
}
.step-box.six::after {
    content: unset;
}
/**/
.bg-cover .wp-block-cover__background {
    width: 100%!important;
    height: 100%!important;
    opacity: 1!important;
    background: linear-gradient(to right, #fff 30%, rgba(255, 255, 255, 0.7) 43%, transparent 60%) !important;
}
.section-txt .wp-block-cover__background {
    position: relative;
}
@media (max-width: 767.98px) {
    .step-box.wp-block-group {
        width: 80px;
        height: 80px;
    }
    .num {
        max-width: 80px;
    }
    .step-box::after {
        height: 220%;
        left: 40px;
    }
    .step-no {
        font-size: 3rem;
        line-height: 1;
    }
}

@media (max-width: 575.98px) {
    .step-ttl {
        font-size: 1.8rem;
    }
    .step-box.wp-block-group {
        width: 60px;
        height: 60px;
    }
    .num {
        max-width: 60px;
    }
    .step-box::after {
        height: 350%;
        left: 30px;
    }
    .step-block {
        min-height: 250px;
    }
    .step-no {
        font-size: 2rem;
    }
}

/*よくある質問*/
.faq-navi-area.is-layout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(10rem, 10rem));
    justify-content: center;
    gap: 1rem;
}
.faq-navi {
    position: relative;
    gap: 0!important;
    padding: 0.8rem;
}
.faq-navi p {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: .5rem;
}
.faq-navi::after {
    position: absolute;
    bottom: -12px;
    content: "";
    display: block;
    width: 0;
    height: 0;
    margin: 0 auto;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #F2157F;
}
/*FAQ*/
.smb-accordion__item__title {
    align-items: center;
    background-color: #fff;
    display: flex;
    font-size: 1.25rem;
    font-weight: 600;
    padding: calc(var(--_padding-1) * .5) var(--_padding-1);
}
.smb-accordion__item__title::before {
    content: "Q";
    font-size: 2.4rem;
    margin-right: 2rem;
    line-height: 1;
    border-radius: 99px!important;
    background-color: #222222;
    color: #F2157F;
    font-weight: 900;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.smb-accordion__item__body {
    padding: calc(var(--_padding-1) * .5) var(--_padding-1);
}
.smb-accordion__item__body p {
    color: #707070;
    display: flex;
    align-items: center;
}
.smb-accordion__item__body p::before {
    content: "A";
    font-size: 2.4rem;
    margin-right: 2rem;
    line-height: 1;
    color: #F2157F;
    font-weight: 900;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.smb-accordion {
    border-bottom: 1px solid #707070;
    padding: 1em 4em;
}
.smb-accordion__item__title__label {
    flex: auto;
    width: min-content;
}
.bd-top {
    border-top: 1px solid #707070;
}
.faq-ttl {
    text-align: center;
    margin: 0 auto 2rem;
}
.faq-ttl h3 {
    font-size: 1.7rem;
    border-bottom: 2px solid #f2167f;
    display: inline-block;
    padding-bottom: 10px;
    width: 190px;
}
@media (max-width: 767.98px) {
    .smb-accordion {
        padding: 0.5em 1em;
        font-size: 1.1rem;
    }
    .smb-accordion__item__title::before {
        font-size: 2rem;
        margin-right: 2rem;
        width: 50px;
        height: 50px;
    }
    .smb-accordion__item__body p::before {
        font-size: 2rem;
        margin-right: 2rem;
        min-width: 50px;
        height: 50px;
    }
}
@media (max-width: 575.98px) {
    .smb-accordion__item__title::before,
    .smb-accordion__item__body p::before {
        margin-right: 1.5rem;
    }
    .smb-accordion {
        padding: 0.5em 0;
    }
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 * Toppage トップページ
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

/* メインスライダー */
.swiper {
    margin-top: -84px;
}
.ltg-slide-text-title {
	font-size: 96px;
	line-height: 1.2;
    font-weight: 900;
}

/* スライダー画像の基本スタイル ------------------------------------------------*/


@keyframes zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}

.swiper-slide-active picture img,
.swiper-slide-duplicate-active picture img,
.swiper-slide-prev picture img {
  animation: zoom-in 10s linear 0s 1 normal both;
}
/* Lightning トップスライドページネーションを非表示 */
.swiper-pagination {
    display:none!important;
}

/*------------------------------------------------------------------------------*/
@media (min-width: 576px) {
    .lightning_swiper .container {
        max-width: 700px;
    }
}
@media (min-width: 768px) {
    .lightning_swiper .container {
        max-width: 900px;
    }
}
@media (min-width: 992px) {
    .lightning_swiper .container {
        max-width: 1100px;
    }
}
@media (min-width: 1200px) {
    .ltg-slide-text-set .container {
        max-width: 1400px;
    }
}
@media (max-width: 991px) {
	.swiper-wrapper {
	  height: 80vh;
	}
	.ltg-slide picture {
	  width: aut !important;
	  height: 100% !important;
	}
	.ltg-slide picture img {
	  width: auto !important;
	  height: 100% !important;
	  object-fit: cover !important;
	}
    .ltg-slide-text-title {
        font-size: 72px;
    }
}
@media (max-width: 768px) {
    .ltg-slide-text-title {
        font-size: 60px;
    }
}
@media (max-width: 575px) {
    .ltg-slide-text-title {
        font-size: 48px;
        line-height: 1.8;
    }
}

/*スライダー下*/
.top-pageheader {
	position: relative;
	margin: 0 auto 50px;
    z-index: 10;
}
.top-header-txt {
	position: absolute;
    z-index: 100;
    top: -32px;
    padding: 0 2em;
}
.top-header-ttl {
	font-size: 3rem;
	border-bottom: 2px solid #fff;
	display: flex;
	justify-content: center;
	max-width: 580px;
	margin: auto;
}

/*取扱商品*/
@media (max-width: 767.98px) {
    .clm3img{
        object-fit: cover;
    }
    .clm3img.wp-block-image img:not([style*=object-fit]) {
        height: 380px !important;
        object-fit: cover;
        border-radius: 10px;
    }
    .clm3img.wp-block-image.img-right img:not([style*=object-fit]) {
        object-position: right;
    }
}
@media (max-width: 576.98px) {
    .clm3img.wp-block-image img:not([style*=object-fit]) {
        height: 330px !important;
    }
}
/*工場見学*/

.contact-box {
	max-width: 800px;
	margin: 0 auto 3rem;
	padding: 2rem;
}
@media (max-width: 575.98px) {
    .top-pageheader {
        min-height: 300px!important;
        max-width: 400px;
        padding: 0 2.8rem;
    }
    .top-pageheader img {
        width: 100%!important;
        max-width: 350px;
    }
    .top-header-ttl {
        font-size: 1.8rem;
        max-width: 400px;
    }
    .top-pageheader p {
        font-size: 1rem!important;
        max-width: 400px;
    }
}

/* お問い合わせボタン：初期状態（チェックなし） */
.smf-button-control__control {
    font-size: 1.25rem;
    border-radius: 16px!important;
    background: #808080 !important;
    color: #fff !important;
    padding: 0.5em 2em;
    max-width: 520px;
    height: 100px;
    width: 100%;
    border: unset !important;
    transition: background-color 0.3s ease;
    cursor: not-allowed; /* チェック前にマウスを通常に */
}

/* チェックが入ったときに有効状態＋ピンクに変更 */
.smf-button-control__control.active {
    background: #F2157F !important;
    cursor: pointer;
}

/* アイコンのスタイル（変更なし） */
.smf-button-control {
    position: relative;
}
.smf-button-control::before {
    content: "\f111";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.8rem;
    color: #fff;
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}
.smf-button-control::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.5rem;
    color: #fff;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 575.98px) {
    .top-header-txt {
        top: -40px;
    }
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 * page 下層ページ
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ページごと、パーツごとにコメントアウトで注釈を入れてください。 */

/*スライダー下（アイキャッチ）*/
.veu_autoEyeCatchBox {
	display: block;
	overflow: hidden;
	width: auto;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	margin-bottom: 2em;
}

/*セクション切替の画像*/
.section-img.wp-block-image img:not([style*=object-fit]) {
    height: 360px !important;
}
.section-img img {
    object-fit: cover;
}
@media (max-width: 767.98px) {
    .section-img.wp-block-image img:not([style*=object-fit]) {
        height: 280px !important;
    }
    .section-txt {
        min-height: 100px!important;
    }
    .section-img.img-left img {
        object-position: left;
    }
    .section-img.img-right img {
        object-position: right;
    }
}
@media (max-width: 575.98px) {
    /*ページタイトル*/
    .page-ttl-en {
        font-size: 4rem!important;
    }
    .page-ttl {
        font-size: 1.2rem!important;
    }
    .page-ttl-bg {
        min-height: 320px!important;
    }
    .section-img.wp-block-image img:not([style*=object-fit]) {
        height: 160px !important;
    }
    .section-txt {
        min-height: 70px!important;
    }
}

/*会社案内*/
.comp-area_ttl {
    font-size: 2rem;
}
.comp-area_box_ttl span {
        font-size: 1.4rem!important;
    }
.comp-area_box {
    padding: 0 1.5rem;
}
.comp-area_box_ttl {
    font-size: 2rem;
    line-height: 1.1;
}
.comp-area_box p {
    font-size: 1rem;
    line-height: 2.2;
    color: #707070;
}
.comp-area_box h4 {
    font-size: 1.25rem;
}
.message-box {
    max-width: 600px;
}

@media (max-width: 575.98px) {
    .comp-area_ttl {
        font-size: 2rem;
    }
    .comp-area_box_ttl {
        font-size: 2rem;
        line-height: 1.4;
    }
    .comp-area_box_ttl span {
        font-size: 1.4rem!important;
    }
    .comp-area_box .wp-block-group {
        gap: 0!important;
    }
    .comp-area_box h4 {
        font-size: 1.4rem;
    }
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 * Archive / Single ブログ一覧ページ、ブログ詳細ページ
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

	/* パーツごとにコメントアウトで注釈を入れてください。 */



/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 * メモ用
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

	/* メモの内容用 */



