/*
Theme Name: bousai-move
Theme URI: https://bousai-move.koyo-ad.com/
Author: Koyo
Author URI: https://www.koyo-ad.jp/
Description:  防災ムーブサイト用のカスタムテーマ
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bousai-move
Tags: custom, responsive, flexible, original
*/

/** CSS RESET START*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  box-sizing: border-box;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
html {
  line-height: 1.5;
  overflow-y: scroll;
}
body {
  width: 100%;
  min-height: auto;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic",
    "メイリオ", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #45443a;
  background-color: #fff;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

caption,
th {
  text-align: left;
}

img {
  vertical-align: middle;
  width: 100%;
  height: auto;
  object-fit: contain;
}
a {
  color: #3c3c3c;
  text-decoration: none;
  transition: 0.6s;
}

a:hover {
  opacity: 0.6;
}
h4,
h3,
h2,
h1 {
  font-weight: 500;
}

.sp_only {
  display: none;
}

.pc_only {
  display: block;
}

.title_tuning {
  position: relative;
  background-color: #eb6100;
  color: #fff;
  padding: 30px;
  text-align: center;
  line-height: 0.3;
  margin-bottom: 25px;
}
.title_tuning2 {
  position: relative;
  background-color: #eb6100;
  color: #fff;
  padding: 15px;
  text-align: center;
  line-height: 0.3;
}

.title_top {
  display: block;
  font-size: 0.8em;
  margin: 12px 0px 2px;
  font-weight: normal;
}
.title_bottom {
  font-size: 1.1em;
  font-weight: bold;
  line-height: 1.2;
}

@media screen and (max-width: 480px) {
  .sp_only {
    display: block;
  }

  .pc_only {
    display: none;
  }
  .title_tuning {
    font-size: 20px;
  }
}

header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  transition-duration: 300ms;
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  height: 95px;
}

.header-logo img {
  width: auto; /* 元の比率を保つ */
  max-width: 300px; /* 適宜調整 */
  margin-left: 10px;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: nowrap; /* ここでメニューを1行に強制 */
}
.nav-menu {
  display: flex;
  margin-left: auto;
}
.menu-list {
    display: flex;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 790px;
}
.menu-item {
  display: inline-block;
	    margin-top: 14px;
}
.menu-item a {
  color: #464647;
}

#header-nav {
  width: 80%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  margin-left: 39vw;
  z-index: -1;
  display: none;
}
#header-nav .bg_overflow {
  padding: 280px 30px 30px;
}
.header-nav_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-items: flex-start;
  margin: 100px 0px 0 20px;
}
.header-nav_list li {
  text-align: center;
  margin-bottom: 20px;
}
.header-nav_list a {
  color: #464647;
  text-decoration: none;
  font-size: 19px;
  font-weight: bold;
}
#header-nav {
  background-color: #fff;
}
.bg_over {
  display: none;
}
.menu-link {
  display: block;
  color: #000;
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
}

.menu-link:hover {
  opacity: 0.6;
}

.nav-menu.active .menu-link {
  color: #fff;
}
/* --▼ ハンバーグメニュー ▼--*/
.hamburger-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.hamburger {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: background 0.3s ease;
  margin-right: 10px;
}

.hamburger span {
  position: absolute;
  width: 37px;
  height: 4px;
  background-color: #eb6100;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
  top: 8px;
}
.hamburger span:nth-child(2) {
  top: 18px;
}
.hamburger span:nth-child(3) {
  top: 28px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 18px;
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 18px;
}

.menu-label {
  margin-top: 0px;
}
.hamburger-wrapper,
#header-nav,
.bg_over {
  display: none;
}
.menu-contact-pc {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffd700;
    border: none;
    box-shadow: 3px 3px 0 #eb6100;
    text-decoration: none;
    margin: 0 auto;
    width: 24%;
    transition: transform 0.2s ease;
    font-size: 20px;
	font-weight:bold;
	padding: 6px 0;
}
.menu-contact-icon{
	width: 32px;
    height: 32px;
    margin-right: 5px;
}
.menu-contact-text{
    color: #48484a;
    text-shadow: -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff, 0px -2px 0 #fff, 0px 2px 0 #fff, -2px 0px 0 #fff, 2px 0px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}


@media screen and (min-width: 800px) {
	.soliloquy-container{
		max-width:600px!important;
		margin:auto!important;
	}

	.soliloquy-container .soliloquy-image{
	max-width:600px!important;
	}
	}	

@media screen and (max-width: 1024px) {
  header {
    height: 70px;
  }

  .nav-menu {
    display: none;
  }
  .header-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
  }

  .header-logo img {
    width: 250px;
  }
  .hamburger-wrapper {
    display: flex !important; /* ハンバーガーアイコンだけ表示 */
  }
  .hamburger {
    margin-top: 0;
    width: 45px;
    height: 45px;
  }

  .hamburger span:nth-child(1) {
    top: 11px;
  }
  .hamburger span:nth-child(2) {
    top: 21px;
  }
  .hamburger span:nth-child(3) {
    top: 31px;
  }
  .hamburger.active span:nth-child(1) {
    top: 20px;
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    top: 20px;
  }

  .menu-label {
    width: 54px;
  }
}

@media screen and (max-width: 780px) {
  .top img {
    width: 100% !important;
    margin-top: 90px !important;
  }
  .key-sp img {
    margin-top: 26px;
  }
  .icon_right {
    margin-top: 0px !important;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .map_icon_a {
    margin-top: 0;
  }
  .hamburger-wrapper {
    margin-top: 4px;
  }
  .hamburger {
    margin-top: 0;
    width: 35px;
    height: 35px;
  }
  .hamburger span:nth-child(1) {
    top: 7px;
  }
  .hamburger span:nth-child(2) {
    top: 16px;
  }
  .hamburger span:nth-child(3) {
    top: 25px;
  }
  .hamburger.active span:nth-child(1) {
    top: 15px;
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    top: 15px;
  }
  .menu-label {
    width: 44px;
  }
}
/* --▲ ハンバーグメニュー ▲-- */

.top {
  background-color: #fffaea;
}
.top img {
  width: 68%;
  margin: 0 auto;
  margin-top: 108px;
}

/** パンくず */
ol.pankuzu {
  display: flex;
  flex-wrap: wrap;
  padding: 64px 0 6px;
  list-style: none;
}

/*footer------------------------------------------------*/
.contact-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffd700; /* 鮮やかな黄色 */
  padding: 16px 24px;
  border: none;
  box-shadow: 6px 6px 0 #eb6100; /* 影：下に4px、ぼかしなし、くっきり */
  text-decoration: none;
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
  transition: transform 0.2s ease;
  margin-bottom: 5px;
  margin-top: 10px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  margin-right: 10px;
}

.contact-text {
  font-size: 25px;
  font-weight: 900;
  color: #48484a;
  text-shadow: -3px -3px 0 #fff, 3px -3px 0 #fff, -3px 3px 0 #fff,
    3px 3px 0 #fff, 0px -3px 0 #fff, 0px 3px 0 #fff, -3px 0px 0 #fff,
    3px 0px 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff,
    2px 2px 0 #fff;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .contact-button {
    margin-bottom: 10px;
    margin-top: 10px;
    margin-left: 1px;
    width: 97%;
    border-radius: 0;
    box-shadow: 6px 6px 0 #eb6100;
   margin: 0 auto;
  }
}
p.copyright {
  font-size: 1em;
  text-align: center;
  color: #000;
  padding: 20px 0;
  background: #fffaea;
}
.contact-sp {
  display: none;
}
/* --- フローティングボタン --- */
.floating-contact {
  position: fixed;
  left: 50%;  
  bottom: 10px;
	 transform: translateX(-50%); 
    align-items: center;
    justify-content: center;
    background-color: #ffd700;
    padding: 16px 24px;
    border: none;
    box-shadow: 6px 6px 0 #eb6100;
    text-decoration: none;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
    transition: transform 0.2s ease;
    margin-bottom: 5px;
    margin-top: 10px;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 999;
}


/* 非表示状態用 */
.floating-contact.hide {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 50px);
}

/* スマホ（768px以下など）の場合はPC用を非表示 */
@media screen and (max-width: 768px) {
  .contact-pc {
    display: none;
  }
  .contact-sp {
    display: inline-block;
  }
    .floating-contact {
        width: 100%;
        bottom: 0px;
                padding: 6px 24px 0px;
        box-shadow: 0px 0px 0 #eb6100;
        margin-bottom: 0px;
    }
	.contact-icon {
    margin-bottom: 10px;
}
}

/*トップページ------------------------------------------------*/

/*トップページ下*/
.mv-text h1 {
  font-size: 2em;
  color: #eb6100;
  font-weight: 700;
  text-align: center;
  margin-top: 30px;
}

.mv-text p {
  font-size: 1.2rem;
  color: #333;
  line-height: 1.8;
  text-align: center;
}
.marker {
  background: #fffaea;
  color: #ed7964;
  padding: 5px 10px;
}

.trouble-images {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
}
.trouble-images img {
  width: 35%;
  height: auto;
  max-width: 500px;
}
.trouble-images2 {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
}
.trouble-images2 img {
  width: 35%;
  height: auto;
  max-width: 500px;
}

.section-title {
  position: relative;
  max-width: 1300px;
  margin: 80px auto 50px;
  text-align: center;
}

.section-title .title-bg {
  background-color: #ed7964;
  height: 40px;
  width: 100%;
}

.section-title h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  padding: 0 10px;
  white-space: nowrap;
}

.necessity_title {
  background-color: #ed7964;
  color: #fff;
  padding: 10px 16px;
  width: 400px;
  border-radius: 60px;
  font-size: 1.3em;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.necessity_description {
  border: 5px dotted #ed7964;
  width: 600px;
  padding: 20px 60px 12px 60px;
  margin: -50px auto 0 auto;
  border-radius: 50px;
  position: relative;
  z-index: 1;
  text-align: left !important;
}

.merchandise-images {
  text-align: center;
}
.merchandise-images img {
  width: 50%;
  max-width: 600px;
}

/* おすすめ商品 */
.bg-yellow{
	background-color:rgb(255, 250, 234);
	width:100%!important;
}
.recommend {
  background-color: #fffaea;
  border-radius: 8px;
  box-sizing: border-box;
  margin-top: -50px;
  padding: 20px 0 0;
}
.recommend-inner {
  max-width: 600px;
  margin: 0 auto;
  align-items: stretch;
}

.product-heading {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 16px;
  border-bottom: 3px solid #fabe00;
  padding: 12px 30px 5px;
  font-size: 1.2rem;
  position: relative;
  margin-top: 8px;
}
.product-heading::before,
.product-heading::after {
  content: "";
  position: absolute;
  bottom: -3px;
  width: 10px;
  height: 10px;
  background: #fabe00;
}

.product-heading::before {
  left: 0;
  transform: translateY(30%);
}

.product-heading::after {
  right: 0;
  transform: translateY(30%);
}

.product-thumb {
  width: 72px;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 6px;
}

.product-title {
  flex: 1;
  font-weight: 600;
  line-height: 1.3;
}

.product-price {
  white-space: nowrap;
  font-weight: 700;
  text-align: right;
  line-height: 1.2;
  color: #ea1318;
}
.emphasis {
  font-size: 1.4em;
  font-weight: 700;
}
.emphasis-price {
  font-size: 2.5em;
  font-weight: 900;
}
.small {
  font-size: 1rem;
  margin-right: -10px;
}

.product-info {
  max-width: 530px;
  margin: 0 auto;
  text-align: left;
  margin-top: -15px;
}

.donation-note {
   margin-top: -10px;
  font-size: 0.9rem;
  color: #444;
}

.product-points {
  list-style: none;
  max-width: 410px;
  padding: 10px 20px;
  margin: 10px auto;
  background-color: #ffffff;
}
.product-points li {
  list-style: none;
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  font-size: 1rem;
}

.product-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 60%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  background-image: url("http://bousai-move.jp/wp-content/uploads/2025/09/check.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.btn-detail {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 80px;
  background-color: #eb6100;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.3s;
  margin-bottom: 90px;
}

.btn-detail:hover {
  background-color: #d95400;
}

.product-button {
  text-align: center;
  margin-top: 10px;
}


/* ▼ 8つの特長レイアウト------------------------------------------------*/
.tokucho_title{
    width: 40%;
    padding-bottom: 20px;
    margin: 0 auto;
}

/* セクションタイトル下の見出し画像 */
/* --- グリッド全体 --- */
.tokucho-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

/* --- 上段：1と2を中央寄せ --- */
.tokucho-grid .tokucho-item:nth-child(1) {
  grid-column: 2 / span 2;
  grid-row: 1;
}
.tokucho-grid .tokucho-item:nth-child(2) {
  grid-column: 4 / span 2;
  grid-row: 1;
}

/* --- 「さらに！」を上段2つの真下中央に配置 --- */
.tokucho-grid .sarani {
  grid-column: 3 / span 2; /* 中央2カラムに配置 */
  grid-row: 2;
  justify-self: center;
  text-align: center;
  margin-top: 0;
}
.tokucho-grid .sarani img {
  width: 500px;
  height: auto;
  display: inline-block;
}

/* --- 下段（3〜8）を整列 --- */
.tokucho-grid .tokucho-item:nth-child(n+4) {
  grid-row: 3; /* 下段を3行目に固定 */
}

/* --- 共通スタイル --- */

.tokucho-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- SP表示時：2カラム --- */
@media screen and (max-width: 768px) {
	 .tokucho-grid {
    grid-template-columns: repeat(2, 1fr); /* 2カラム表示 */
    gap: 16px;
		 padding: 0 16px;
  }
	  .tokucho-grid .tokucho-item {
    grid-column: auto !important;
    grid-row: auto !important;
  }
	  .tokucho-grid .sarani {
    grid-column: 1 / -1;
    grid-row: auto;
    text-align: center;
    margin: 20px 0;
  }
.tokucho-grid .sarani img {
  width: 90%;
        max-width: 320px;
        height: auto;
        margin: -20px 0;
  }

  .tokucho_title {
    width: 93%;
  }
}

/*商品の安心ポイント*/
.points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}
.point-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}
.points-section{
	margin: -20px 0 0;
	font-size: 20px;
}

/*使用シーン紹介*/
.scenes {
  background-color: #fffcf2;
  padding: 50px 0;
  margin-top: -50px;
}

.scenes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* PCは2列 */
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}

.scene-item {
  text-align: center;
  padding: 20px;
  border-right: 2px solid #ed7964;
  border-bottom: 2px solid #ed7964;
}
.scenes-grid .scene-item:nth-child(3),
.scenes-grid .scene-item:nth-child(4) {
  border-bottom: none;
}

.scene-item:nth-child(2n) {
  border-right: none;
}

.scene-item img {
  width: 100%;
  height: auto;
  margin-top: 10px;
  border-radius: 6px;
}

.scene-item p {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}
.pink-circle {
  color: #ed7964;
  margin-right: 5px;
}

/*新着商品*/
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center; /* ← 中央揃え */
}
.filter-btn {
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 4px;
  color: #000;
}
.filter-btn:hover {
  opacity: 0.85;
}

/* 各ボタンカラー */
.filter-btn.all {
  background-color: #d8d8d8;
}
.filter-btn.bosai {
  background-color: #fedc71;
}
.filter-btn.hinan {
  background-color: #89d0fa;
}
.filter-btn.toilet {
  background-color: #89d58a;
}

/* アクティブ状態の色調整（明るく） */
.filter-btn.active {
  color: #fff;
}
.filter-btn.active.all {
  background-color: #757575;
}
.filter-btn.active.bosai {
  background-color: #ed904e;
}
.filter-btn.active.hinan {
  background-color: #357ABD;
}
.filter-btn.active.toilet {
  background-color: #5e9630;
}

.product-list2 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
	padding: 0 120px;
}

.product-item2 {
  width: calc(33.333% - 13.33px); /* 横3つ並べるため */
  text-align: center;
}

.product-excerpt2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* ← ここが「2行」の指定 */
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  height: 3.2em; /* line-height × 行数 */
}

/* レスポンシブ対応：タブレット以下で2列、スマホで1列 */
@media screen and (max-width: 1024px) {
  .product-item2 {
    width: calc(50% - 10px);
  }
}

@media screen and (max-width: 600px) {
  .product-item2 {
    width: 100%;
  }
	.product-list2 {
    gap: 40px;
    padding: 0 10px;
}
}



/*.new-products .button-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.new-products .btn-new {
  display: inline-block;
  text-align: center;
  color: #000;
  padding: 10px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.new-products .btn-new:nth-child(1) {
  background-color: #fedc71;
}
.new-products .btn-new:nth-child(2) {
  background-color: #89d0fa;
}
.new-products .btn-new:nth-child(3) {
  background-color: #89d58a;
}
.new-products .btn-new:nth-child(4) {
  background-color: #ec9561;
}
.new-products .btn-new:nth-child(5) {
  background-color: #d8d8d8;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 20px auto 0 auto;
  padding: 0 10px;
}

.product-item {
  text-align: center;
}

.product-item img {
  width: 100%;
  height: auto;
}

.product-text {
  background-color: #fffaea;
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #333;
}*/

.btn-detail2 {
  display: inline-block;
  margin-top: 10px; /* 上の余白 */
  padding: 10px 80px;
  background-color: #eb6100;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.3s;
  margin-bottom: 30px;
}

.more-products {
  text-align: center;
}

.btn-more {
  display: inline-block;
  padding: 20px 50px;
  background-color: #fabe00;
  color: #48484a;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  border-radius: 6px;
  position: relative;
  border: none;
  margin-bottom: 50px;
}

.btn-more::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  border: 2px solid #48484a;
  border-radius: 6px;
  pointer-events: none;
}

/*東京都条例でも“3日分の備蓄”が推奨されています*/
.stock-content h3,
section h3 {
  position: relative;
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0px 0 5px 0;
  color: #333;
  margin-top: -30px;
}

.stock-content,
section {
  text-align: center;
    clear: both;
    max-width: 1300px;
    margin: 0 auto;
}

section h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0.8em;
  width: 100%;
  background-color: #fabe00;
  z-index: -1;
  border-radius: 3px;
}

.stock-recommend {
  padding: 50px 0;
  background-color: #fff;
}

.stock-content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  max-width: 1100px;
  flex-wrap: wrap;
}
.stock-content p {
  text-align: left;
  margin-top: 10px;
}

.stock-img {
  width: 350px;
  height: auto;
}

.stock-text {
  max-width: 500px;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}
.catalog-content {
  max-width: 1100px;
  margin: 20px auto 0 auto;
  text-align: center; /* 中央揃え */
}
.catalog-title{
	font-size:20px;
	text-align:center;
	font-weight: bold;
}
.catalog-content p {
  text-align: center;
  margin-top: 10px;
}

.catalog-img {
  width: 460px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.catalog-text {
  max-width: 610px;
  margin: 10px auto 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}
.btn-more2 {
  padding: 20px 100px;
  background-color: #fabe00;
  font-size: 1.1rem;
  margin-top: 40px;
  margin-bottom: 0;
}
.btn-more3 {
  padding: 15px 92px;
  background-color: #fcdbda;
  margin: 80px 0 0;
  font-size: 1.1rem;
}
.difference img {
  width: 40%;
}
.difference-title {
  font-size: 1.5rem;
  color: #464647;
  font-weight: 800;
  margin-bottom: 10px;
}
.difference p {
  margin: 15px 0 30px;
}
.bg-red {
  background-color: #ff0000 !important;
  height: 50px !important;
}

.emphasis h2 {
  font-size: 1.7rem !important;
  font-weight: 700 !important;
}
.preparation-wrapper {
  display: flex;
  align-items: flex-end; /* 下揃え */
  max-width: 300px; /* 全体の横幅制限（例600px） */
  margin: 0 auto 10px; /* 横中央寄せ */
  gap: 16px; /* 要素間の隙間 */
	align-items: center;
}

.preparation-img {
  width: 80px;
  height: auto;
  object-fit: contain;
}

.preparation {
	 position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
    color: #fff;
    font-size: 1.5em;
    background-color: #a6a6a6;
	 text-align: center;
    border: 3px solid #4c4c4c;
    padding: 3px 45px;
    line-height: 1;
    white-space: nowrap;
    font-weight: 800;
    max-width: 300px;
	margin-bottom: 5px;
}
.small2 {
  font-size: 1rem;
}
.stock-image-wrapper {
  position: relative;
  display: inline-block;
}

.stock-img {
  display: block;
  max-width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  body {
    font-feature-settings: "palt";
  }
  header {
    max-width: 100% !important;
    overflow-x: hidden;
  }
  #header-nav {
    margin-left: 0 !important;
  }

  .mv-text h1 {
    font-size: 1.5em;
    margin-top: 10px;
  }
  .marker {
    padding: 7px 10px;
    font-size: 1rem;
    font-weight: 700;
  }
  .mv-text p {
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 10px;
  }
  .section-titl-sp .title-bg {
    height: 60px;
    font-size: 1.2rem;
  }
  .section-title h2 {
    font-size: 1.2rem;
    line-height: 1.2;
  }
  .trouble-images {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .section-title {
    margin: 30px auto 30px;
  }
  .necessity_title {
    padding: 10px 7px;
    width: 310px;
  }
  .necessity_description {
    width: 374px;
    padding: 20px 30px 12px 30px;
    margin: -50px auto 0 auto !important;
  }

  .trouble-images img {
    width: 90%;
  }
  .trouble-images2 img {
    width: 80%;
    margin-top: -24px;
  }
  .trouble-images2 {
    margin-bottom: 0px;
  }
  .merchandise-images img {
    width: 95%;
    margin: 0px 0;
  }
  .product-button {
    margin-top: -9px;
  }

  .recommend {
    margin-top: -60px;
    padding: 1px 0 0;
  }
  .recommend-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 0 10px;
    gap: 0px;
  }
  .product-thumb {
    width: 60px;
    margin-bottom: 4px;
  }
  .product-heading {
    flex: none;
    padding: 12px 0px 3px;
    gap: 2px;
  }
  .emphasis {
    font-size: 1.13em;
  }
  .small {
    margin-right: -2px;
  }
  .sp_product {
            margin: 60px 27% -62px 0px;
        padding-bottom: 13px;
        font-size: 14px;
  }
  .product-title {
    font-size: 1.2rem;
    text-align: left;
    margin-left: 10px;
    margin-right: -6px;
  }
  .product-price {
    font-size: 1rem;
  }
  .emphasis-price {
    font-size: 2.8em;
  }
  .donation-note {
    margin-top: -20px !important;
    font-size: 0.8rem;
    padding: 0 20px;
  }
  .merchandise-images2 {
    margin-top: 10px;
  }
  .btn-detail {
    margin-top: 25px;
    padding: 10px 60px;
    margin-bottom: 35px;
  }
  .btn-more {
    padding: 17px 60px;
    margin: -20px 0 30px;
  }
  .more-products {
    margin-top: 48px;
  }
  .points-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0px 10px;
  }

  .scenes {
    padding: 20px 0 0px;
  }

  .scenes-grid {
    display: grid;
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .scene-item {
    border-right: none;
    border-bottom: 2px solid #ed7964;
    margin: 0;
  }
  .scene-item p {
    font-size: 1.3rem;
  }
  .scenes-grid .scene-item:nth-child(3) {
    border-bottom: 2px solid #ed7964;
  }
  .scenes-grid .scene-item:nth-child(4) {
    border-bottom: none;
  }

  .new-products .button-list {
    justify-content: flex-start;
    gap: 6px;
    margin-bottom: 10px;
    padding: 0 10px;
  }

  .new-products .btn-new {
    padding: 10px 20px;
    margin-bottom: 10px;
  }
  .btn-detail2 {
    margin-top: 0px;
  }
  .product-grid {
    grid-template-columns: 1fr; /* 1列 */
    gap: 0px;
  }
  .stock-content {
    flex-direction: column;
    align-items: center;
  }

  .stock-text {
    max-width: 90%;
    text-align: center;
  }

 .stock-img {
        width: 100%;
        margin-bottom: 15px;
        margin-top: -17px;
        padding: 0 10px;
    }
  .stock-content p {
    margin-top: -20px;
    margin-bottom: 23px;
  }
  .btn-more2 {
    padding: 18px 68px;
    margin: -10px 0 14px;
  }
  .btn-more3 {
    padding: 9px 62px;
    font-size: 1.1rem;
    margin: -3px 0 0;
  }
  .emphasis h2 {
    font-size: 1.3rem !important;
  }
  .difference img {
    width: 95%;
  }
  .difference-title {
    font-size: 1.2rem;
    margin-top: -20px;
  }
  .difference p {
    margin: 10px 9px 20px;
    text-align: left;
  }
  .preparation-wrapper {
    gap: 5px;
    margin: 0 auto 8px;
    padding: 0 10px;
  }
  .preparation {
    padding: 2px 68px;
  }
	.preparation_note{
		padding: 0 10px;
		text-align: left;
		margin: 0 0 12px;
	}
  .preparation-img {
    width: 70px;
  }
	.catalog-img {
    width: 380px;
}
	.catalog-content {
    margin: 0px auto -25px auto;
}
	.catalog-content p {
		text-align: left;
        margin-bottom: 10px;
        padding: 0 10px;
    }
}



	/* 利用ガイド CSS
----------------------------------------------- */
.flex {
  display: flex;
}
.flex_between {
  -webkit-justify-content: space-between;
  justify-content: center;
  gap: 90px;
}
.flow-guide .flow-list .ttl span {
  display: inline-block;
  color: #ffffff;
  font-size: 16px;
  padding: 5px 10px;
  text-align: center;
  margin-left: 10px;
}
.flow-guide .flow-list .ttl span.company {
  background: #85837d;
}
.flow-guide .flow-list .ttl span.guest {
  background: #eb6100;
}
.flow-guide .flow-list .flow-items.company h3 {
  background: #85837d;
}
.flow-guide .flow-list .flow-items h3 {
  position: relative;
  font-weight: 500;
  background: #eb6100;
  color: #ffffff;
  font-size: 25px;
  padding: 10px 0;
  text-align: center;
  width: 100%;
  line-height: 1.2;
  margin: 30px 0 6px;
}
.flow-guide .flow-list .flow-items h3::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #eb6100;
  background-color: #fff;
}
.flow-guide .flow-list .flow-items.company h3::after {
  border-top-color: #85837d; /* グレー */
}
.contentArea p {
  margin: 30px;
}
.contentArea a {
  border-bottom: 1px solid #45443a;
}
.p-text {
  margin: 0 auto 50px;
}
.p-note {
  border: 3px solid #ff7924;
  color: #ff7924;
  padding: 15px 20px;
  background-color: #fff;
  border-radius: 4px;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.contentArea {
  position: relative;
  padding-bottom: 50px;
	    margin: 30px 0 0;
}

.arrows {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
   gap: 0px;
  font-size: 32px;
  color: #e50010;
  line-height: 1;
}
.arrows span + span {
  margin-top: -20px;
}

.arrows span {
  display: block;
  font-weight: 900;
  transform: rotate(90deg) scaleX(0.6) scaleY(1.5);
}
.tel-link {
  color: orange;
  text-decoration: none;
}
.tel-link:hover {
  text-decoration: underline;
}
@media (max-width: 767px) {
.p-text {
    margin: -40px auto 40px;
}
	.flex_between {
    gap: 50px;
}
	.flow-guide .flow-list .flow-items h3 {
    margin: 10px 0 6px;
}
	.contentArea {
    margin: 20px 0 0;
	text-align: left;
}
}



/* 会社概要ページ
----------------------------------------------- */
section.page-guide {
  margin: 60px 0;
}
.message-text {
  text-align: start;
  width: 100%;
  margin: 20px auto;
  padding: 30px;
  background: #fffaea;
}
.message img {
  max-width: 300px;
  display: block;
  text-align: center;
  margin: 50px auto;
}

@media (max-width: 767px) {
  .message-text {
    width: 100%;
    padding: 20px 10px;
  }
  .message img {
    margin: 40px auto;
  }
}

.inner {
  max-width: 1120px;
  margin: auto;
  padding: 0 20px;
}
span.tittle_bold {
  margin-bottom: 20px;
  display: block;
}
.tittle_bold {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0px 0 5px 0;
  color: #333;
}
.rink_style {
  color: orange;
  text-decoration: underline;
}

/* table CSS
----------------------------------------------- */

.page-guide table {
  table-layout: fixed;
  overflow-wrap: break-word;
  /* IE11 にも改行させる場合 */
  word-wrap: break-word;
  text-align: start;
}
.page-guide table.tbl-r th {
  width: 200px;
  background: #ffeaba;
  font-size: 16px;
  padding: 20px;
  border: solid 1px #d1cfcd;
}
.page-guide table.tbl-r td {
  font-size: 16px;
  font-weight: 500;
  padding: 20px;
  border: solid 1px #d1cfcd;
}
.page-guide table.tbl-r td p {
  line-height: 1.8;
}
@media only screen and (max-width: 735px) {
  .page-guide table.tbl-r {
    border: solid 1px #d1cfcd;
  }
  .page-guide table.tbl-r th,
  .page-guide table.tbl-r td {
    display: block;
    width: 100%;
    padding: 3%;
    font-size: 3.4vw;
    border: none;
  }
  .page-guide table.tbl-r th {
    border-bottom: solid 1px #d1cfcd;
    text-align: center;
  }
  .page-guide table.tbl-r td {
    border-bottom: solid 1px #d1cfcd;
  }
  .page-guide table.tbl-r tr:last-child td {
    border-bottom: none;
  }
}
@media only screen and (min-width: 736px) and (max-width: 1024px) {
  .page-guide table.tbl-r th,
  .page-guide table.tbl-r td {
    font-size: 15px;
    padding: 15px;
  }
}
/* デフォルト（PCなど）は改行を無効化 */
.sp-br {
  display: none;
}

/* SPの時だけ改行を有効化 */
@media screen and (max-width: 768px) {
  .sp-br {
    display: inline;
  }
}
/* 特定商取引に基づく表記 CSS
----------------------------------------------- */
.low-guide .low-grid .low-tbl h4 {
  font-size: 18px;
  font-weight: bold;
}
.low-guide .low-grid .low-tbl p {
  font-size: 16px;
  padding: 10px 0;
  margin-bottom: 20px;
  line-height: 1.8;
}
.low-guide .low-grid .low-tbl ol {
  margin-bottom: 20px;
  padding: 10px 0;
}
.low-guide .low-grid .low-tbl ol li {
  list-style: decimal;
  margin-left: 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  padding-left: 0.5em;
}
@media only screen and (max-width: 735px) {
  .low-guide .low-grid .low-tbl h4 {
    font-size: 3.6vw;
  }
  .low-guide .low-grid .low-tbl p {
    font-size: 3.4vw;
    padding: 2% 0;
    margin-bottom: 3%;
  }
  .low-guide .low-grid .low-tbl ol {
    padding: 2% 0;
    margin-bottom: 3%;
  }
  .low-guide .low-grid .low-tbl ol li {
    list-style: decimal;
    margin-left: 5%;
    font-size: 3.4vw;
    padding-left: 0.5em;
  }
}
@media only screen and (min-width: 736px) and (max-width: 1024px) {
  .low-guide .low-grid .low-tbl h4 {
    font-size: 17px;
  }
  .low-guide .low-grid .low-tbl p {
    font-size: 15px;
    padding: 10px 0;
    margin-bottom: 10px;
  }
  .low-guide .low-grid .low-tbl ol {
    padding: 10px 0;
    margin-bottom: 10px;
  }
  .low-guide .low-grid .low-tbl ol li {
    font-size: 15px;
  }
}
section.page_under_contents_sec a {
  margin-bottom: 30px;
}
	
	}
/* 最新情報 CSS
----------------------------------------------- */

.itiran_null {
  display: none;
}

/* 投稿一覧（flexベース→3カラム化） */
#all_contents {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; /* 左詰めに変更 */
  gap: 30px;
  margin-top: 20px;
}

/* 各投稿カード */
#all_contents article {
  width: calc(33.333% - 20px); /* 3カラム */
  background-color: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}
#all_contents article:hover {
  transform: translateY(-3px);
}

/* サムネイル部分 */
#all_contents .item_img {
  height: 200px; /* 高さ統一 */
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid #eee;
}
#all_contents .item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 画像をトリミングして中央寄せ */
  display: block;
}

/* カテゴリラベル */
#all_contents .cat_name {
  position: absolute;
  top: 10px;
  left: 10px;
}
#all_contents .cat_name a {
  background-color: #eb6100;
  color: #fff;
  font-size: 0.8rem;
  padding: 4px 8px;
  border-radius: 3px;
   margin-right: 5px;
}



.cat_name a.cat_blog{
  background-color: #3bcf76 !important;
}

.cat_name a.cat_column{
  background-color: #f168d3 !important;
}

.news_tab_contents_box .cat_name a.cat_news {
  background-color: #eb6100 !important;
}

/* ================================
   タブのカテゴリー別カラー設定
================================ */

/* 最新情報（青） */
.tab_list .tab a.all {
  background-color: #62b5fb;  /* 青 */
  border-right: 3px solid #fff;
}

/* スタッフブログ（緑） */
.tab_list .tab a.blog {
  background-color: #3bcf76;  /* 緑 */
  border-right: 3px solid #fff;
}

/* 防災コラム（ピンク） */
.tab_list .tab a.column {
  background-color: #f168d3;  /* ピンク */
  border-right: 3px solid #fff;
}



/* 日付・タイトル・本文 */
#all_contents .item_date {
  font-size: 0.9rem;
  color: #777;
  margin: 10px 15px 0;
}
#all_contents .item_title {
  font-size: 1rem;
  font-weight: 600;
  margin: 5px 15px;
  color: #333;
}
#all_contents .item_text_cintent {
  font-size: 0.9rem;
  color: #444;
  margin: 0 15px 15px;
  line-height: 1.5;
}


.contents_area {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.news_tab_contents_box.newspage_contents {
  margin-top: 54px;
}

.tab_list {
  display: flex;
  flex-wrap: wrap;
  color: #fff;
}

.tab#all {
  background-color: #62b5fb;
}

.news .tab_list .tab {
  width: 15%;
}

.tab_all_contens_box {
  padding: 30px;
  border: 2px solid #e2e2e2;
}

.tab_contens_box.active {
  display: flex;
 flex-wrap: wrap;

}

.item_img {
  height: 170px;
  background-color: #e2e2e2;
  border: 2px solid #e2e2e2;
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  position: relative;
  overflow: hidden;
}

.cat_name {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.cat_name a,
.tab {
  background-color: #f98500;
}

.cat_name a {
  padding: 4px 10px;
  color: #fff;
  font-size: 0.8em;
  display: inline-block;
  text-align: center;
}

.news_tab_contents_box article .item_img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.news .tab_list .tab a {
  padding: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 500;
  /* border: 1px solid #fff; */
}



/* ====== 投稿一覧：全カテゴリ共通で #all_contents と同じ見た目に統一 ======
==================================================================== */

/* 一覧コンテナ（3カラム・gap 30・上余白20） */
.news_tab_contents_box [id$="_contents"] {
   display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; /* 左詰めに変更 */
  gap: 30px;
  margin-top: 20px;
}

/* 各カード（#all_contents article と同一） */
.news_tab_contents_box [id$="_contents"] article {
  width: calc(33.333% - 20px);           /* 3カラム */
  background-color: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
}
.news_tab_contents_box [id$="_contents"] article:hover {
  transform: translateY(-3px);
}

/* サムネイル部分（高さ200・cover・下線） */
.news_tab_contents_box [id$="_contents"] .item_img {
  height: 200px;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid #eee;
}
.news_tab_contents_box [id$="_contents"] .item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* カテゴリラベル */
.news_tab_contents_box [id$="_contents"] .cat_name {
  position: absolute;
  top: 10px;
  left: 10px;
}
.news_tab_contents_box [id$="_contents"] .cat_name a {
  background-color: #eb6100;
  color: #fff;
  font-size: 0.8rem;
  padding: 4px 8px;
  border-radius: 3px;
   margin-right: 5px;
}

/* 日付・タイトル・本文（#all_contents と同一） */
.news_tab_contents_box [id$="_contents"] .item_date {
  font-size: 0.9rem;
  color: #777;
  margin: 10px 15px 0;
}
.news_tab_contents_box [id$="_contents"] .item_title {
  font-size: 1rem;
  font-weight: 600;
  margin: 5px 15px;
  color: #333;
}
.news_tab_contents_box [id$="_contents"] .item_text_cintent {
  font-size: 0.9rem;
  color: #444;
  margin: 0 15px 15px;
  line-height: 1.5;
}



/* ページネーション全体 */
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px; /* 間隔調整 */
  padding: 30px 0;
}

/* 各ページ番号（a と span の共通スタイル） */
.nav-links .page-numbers {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #ed904e;
  border-radius: 50%;
  text-decoration: none;
  color: #ed904e;
  font-size: 16px;
  line-height: 1;
  transition: all 0.3s ease;
  background-color: #fff;
}

/* hover時 */
.nav-links .page-numbers:hover {
  background-color: #eee;
}

/* 現在ページ */
.nav-links .page-numbers.current {
  background-color: #ed904e;
  color: #fff;
  font-weight: bold;
  border-color: #ed904e;
}


/* 「前へ」を非表示にして矢印表示 */
.nav-links .page-numbers.prev {
  position: relative;
  color: transparent;
}

.nav-links .page-numbers.prev::before {
  content: "←";
  color: #ed904e;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* 「次へ」を非表示にして矢印表示 */
.nav-links .page-numbers.next {
  position: relative;
  color: transparent;
}

.nav-links .page-numbers.next::before {
  content: "→";
  color: #ed904e;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ul のデフォルトリセット（WordPress出力時） */
.nav-links ul.page-numbers {
  list-style: none;
  display: flex;
  gap: 15px;
  padding: 0;
  margin: 0;
}



/* ==========================================
   レスポンシブ対応
   ========================================== */

/* タブレット時：2カラム */
@media screen and (max-width: 768px) {
  #all_contents article {
    width: calc(50% - 15px);
  }
}

/* スマホ時（480px以下）：1カラム */
@media screen and (max-width: 480px) {
  #all_contents {
    gap: 20px;
  }
  #all_contents article {
    width: 100%;
  }
  #all_contents .item_img {
    height: 180px; /* モバイルで少し低めに調整 */
  }
  .tab_list {
    width: 94%;
  }
  .news .tab_list .tab a{
        padding: 8px;
    width: 102%;
  }
}

/* SPは2カラム（必要なら 480px以下で1カラムに） */
@media screen and (max-width: 768px) {
  .news_tab_contents_box [id$="_contents"] article {
      width: calc(50% - 15px);
  }
}
@media screen and (max-width: 480px) {
  .news_tab_contents_box [id$="_contents"] article {
    width: 100%;
  }

  .news .tab_list .tab {
  width: 22%;
}

}

/* 商品 CSS
----------------------------------------------- */
.product_archive .tab_list {
  /* max-width: 735px; */
  margin: 38px auto 30px;
  flex-wrap: wrap;
}

.product_archive .tab_list a {
  margin-right: 13.5px;
  width: 11.6rem;
}

.product_archive .tab_list a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #48484a;
  background-color: #fabe00;
  padding: 7px 20px;
  margin-right: 15px;
  margin-bottom: 15px;
  box-shadow: 3px 3px 5px #c7d5ce;
  border-radius: 8px;
}

.product_list.itiran_list {
  justify-content: space-between;
}

.product_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.product_list.product_list li {
  height: 600px;
  margin-right: 0;
  overflow: hidden;
}

.product_list li {
  width: 32%;
  margin-bottom: 20px;
  box-sizing: border-box;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.product.product_list.itiran_list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: initial;
}

.product_list li a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product-title2 {
  font-size: 17px;
  font-weight: bold;
  margin: 10px 0;
  color: #333;
  text-align: center;
}

.product-excerpt.short {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-button {
  text-align: center;
  margin-top: auto;
}

.product-button span {
  display: inline-block;
  background-color: #eb6100;
  color: #fff;
  padding: 6px 70px;
  border-radius: 5px;
  font-size: 18px;
  transition: background-color 0.3s;
  margin: 10px 0 0;
}

.product-button span:hover {
  background-color: #7f7733;
}

.fl_wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px; /* 幅を広めに */
  margin: 0 auto; /* 中央に寄せる */
  padding: 40px 20px; /* 上下左右の余白 */
  gap: 40px; /* 画像と本文の間隔 */
}

.fl_img_wrap {
  flex: 0 0 40%; /* 幅40%で固定 */
  max-width: 500px; /* 画像の最大幅 */
	margin:auto;
}

.fl_img_wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* 本文側のスタイル */
.product-excerpt {
  flex: 1;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  max-width: 100%;
}

.product-price {
  margin: 5px 0;
}

.price-amount {
  color: red;
  font-size: 2.3em;
  font-weight: bold;
}

.price-note {
  font-size: 1.3em;
  color: #666;
  margin-left: -10px;
}
.product-spec {
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  padding: 15px;
  margin-top: 15px;
  font-size: 0.95em;
  line-height: 1.6;
}
.spec-heading {
  border-left: 4px solid #333;
  padding-left: 5px;
  font-weight: bold;
  color: #333;
  margin: 6px 0 0;
}

/* 元のボタン */
.purchase {
  text-align: center;
  font-size: 1.5rem;
}

.btn-purchase {
  display: inline-block;
  padding: 10px 80px;
  background-color: #eb6100;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.3s;
  margin: 50px 0 0;
  cursor: pointer;
}

.btn-purchase:hover {
  background-color: #d95400;
}

/* オーバーレイ背景 */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* オーバーレイ内のコンテンツ */
.overlay-content {
  position: relative;
  text-align: center;
}
.btn-final {
  display: inline-block;
  padding: 15px 60px;
  background-color: #eb6100;
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn-final:hover {
  background-color: #b54b00;
}

/* 閉じるボタン */
.btn-close {
  position: absolute;
  top: -40px;
  right: 0px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #333;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.product-price2 {
  text-align: center;
  margin-top: 60px;
}
.product-title2 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 2px;
  color: #333;
  text-align: left;
}
.product-title2 .title-sub {
  font-size: 0.9em;
  color: #666;
  display: block;
}

/* メインタイトル（下の段） */
.product-title2 .title-main {
  font-size: 1.05em;
  font-weight: bold;
  color: #000;
}
.special-note {
  font-size: 0.9rem;
  color: red;
  margin-top: 10px;
}
ol.pankuzu {
  margin-top: 40px;
}

@media (max-width: 767px) {
  ol.pankuzu {
    padding-top: 35px;
    font-size: 13px;
  }
  .product_archive .tab_list {
    margin: 10px auto 0px;
  }
  .product_archive .tab_list a {
    width: 10.6rem;
  }
  .product_archive .tab_list a {
    padding: 7px 10px;
  }
  .product_list {
    justify-content: center; /* 中央寄せ */
  }

  .product_list li {
    width: 100%; /* ← 縦1列に変更 */
    max-width: 480px; /* （任意）横幅を制限したい場合 */
    margin-bottom: 30px;
  }

  .product-image img {
    width: 100%;
    height: auto; /* 縦横比を保つ */
    object-fit: cover;
  }

  .product-content {
    padding: 0px;
  }
  .product_list.product_list li {
    height: 620px;
  }

  .title_top {
    display: block;
    font-size: 0.6em;
    margin: 12px 0px 0;
    font-weight: normal;
  }
  .title_bottom {
    font-size: 0.7em;
  }
  .title_tuning2 {
    padding: 5px;
    text-align: center;
  }
  .fl_wrap {
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 10px 5px;
  }

  .fl_img_wrap img {
    width: 100%;
    height: auto;
  }
  .product-price {
    margin: 5px 0 5px;
  }
  .product-price2 {
    text-align: left;
	 margin-top: 20px;
  }

  .price-amount {
    font-size: 1.3em;
  }
  .price-note {
    font-size: 0.9em;
    margin-left: 0px;
  }
  .product-spec {
    padding: 6px 10px;
  }
  .purchase {
    font-size: 1.2rem;
  }
  .btn-purchase {
    padding: 13px 40px;
    margin: 30px 0 0;
  }
  .special-note {
    font-size: 0.8rem;
  }
}

	

/*----------------------




blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

input,
textarea {
    margin: 0;
    padding: 0;
    outline: none;
}



.clearfix {
    min-height: 1px;
}

.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
}

.both {
    clear: both;
}

/*----------------------------------------------- */

共通 .anchor-section {
  scroll-margin-top: 100px;
}

.anchor-section::before {
  content: "";
  display: block;
  height: 100px;
  margin-top: -100px;
}

:root {
  --light_green: #9cc948;
  --line_green: #36bf36;
  --orange: #fb950c;
  --margin-l: 60px;
  --margin-s: 40px;
  --margin-title: 20px;
  --header-h: 0px;

  @media screen and (max-width: 480px) {
    --margin-l: 40px;
    --margin-s: 20px;
    --margin-title: 10px;
  }
}

.zen-maru-gothic-regular {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 400;
  font-style: normal;
}

ol,
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

p {
  overflow-wrap: break-word;
  padding-bottom: 10px;
}

.text_color_brown {
  color: #502200;
}
.inline_block {
  display: inline-block;
}

.flex_sb,
.flex_sb_c {
  display: flex;
  justify-content: space-between;
}
.flex_sb_c .num_img img {
  width: 80px;
}
@media screen and (max-width: 768px) {
  .flex_sb_c .num_img img {
    width: 50px;
  }
}
/* .flex_sb {
  align-items: flex-end;
} */

.marker_y {
  background: linear-gradient(transparent 50%, #fbf8a6 50%);
}

.bg_ec642f {
  color: #fff;
  background-color: #ec642f;
  margin-bottom: var(--margin-title);
  text-align: center;
  padding: 10px;
  font-size: 20px;
}

.margin_of_top {
  margin-top: 4rem;
}

.margin_of_top_a {
  margin-top: -130px;
  padding-top: 130px;
}

a[href=""] {
  pointer-events: none;
  text-decoration: none;
}

.contents_area {
  width: 95%;
  max-width: 1000px;
  margin: 0 auto;
}

.sec {
  margin-bottom: var(--margin-l);
}

/*space-between横並びの調整
.itiran_null {
    display: block;
}

.itiran_list li:nth-of-type(3n)+.itiran_null {
    display: none;
}

.menu_beauty_list.itiran_list li:nth-of-type(3n)+.itiran_null {
    border: none;
}

img.alignleft {
    float: left;
    margin: 10px 10px 10px 0;
    max-width: 300px;
}

img.alignright {
    float: right;
    margin: 10px 0 10px 10px;
    max-width: 300px;
}

img.aligncenter {
    margin: 10px auto;
    display: block;
    max-width: 500px;
    width: auto;
}*/

@media screen and (min-width: 769px) {
img.alignleft {
    float: left;
    margin: 10px 10px 10px 0;
    max-width: 300px;
}

img.alignright {
    float: right;
    margin: 10px 0 10px 10px;
    max-width: 300px;
}

img.aligncenter {
    margin: 10px auto;
    display: block;
    max-width: 500px;
    width: auto;
}

}


@media (max-width: 768px) {
  .single_text img.alignleft,
  .single_text img.alignright,
  .single_text figure.alignleft,
  .single_text figure.alignright,
  .single_text [style*="float:left"],
  .single_text [style*="float:right"],
  .single_text .wp-block-image {
    float: none !important;
    display: block !important;
    margin: 0 auto !important;
    clear: both !important;
    max-width: 100% !important;
    padding-bottom: 10px;
  }
}

/** TOPへ戻る
.pagetop {
    position: fixed;
    bottom: 30px;
    right: 15px;
    z-index: 100;

    @media screen and (max-width: 480px) {
        bottom: 90px;
        z-index: 100;
    }
}

.pagetop span {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #9e923d;
    border: #fff 1px solid;
    font-size: 20px;
    font-weight: 600;
    padding: 0 0 7px;
    line-height: 1;
    color: #fff;
    cursor: pointer;

    @media screen and (max-width: 480px) {
        width: 45px;
        height: 45px;
        font-size: 18px;
        padding: 0 0 6px;
    }
} */

@media screen and (max-width: 768px) {
  .check_list {
    font-size: 18px;
  }

@media screen and (max-width: 480px) {
  .check_list {
    font-size: 1em;
    width: 100%;
  }
}
*/


/** ページャ 

.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-numbers li {
    margin-right: 7px;
}

.page-numbers li:last-child {
    margin-right: 0;
}

.page-numbers.current {
    width: 35px;
    height: 35px;
    background-color: #9e923d;
    color: #fff;
    border-radius: 5px;
}

a.page-numbers {
    width: 35px;
    height: 35px;
    border: 1px solid #9e923d;
    border-radius: 5px;
}

.prev.page-numbers,
.next.page-numbers {
    width: 40px;
    font-size: 0.8rem;
}*/

/**-------------------- header -----------------------*/
  /* header 


    @media (max-width: 768px) and (orientation: landscape) {
      .header-logo {
        width: clamp(70px, 17.991004497751124vw, 140px);
      }
    }

    .logo-link {
      display: block;
      -webkit-transition-duration: 300ms;
      transition-duration: 300ms;
    }

    .logo-link:hover {
      opacity: 0.6;
    }

    @media (max-width: 1024px) {
      .nav-menu {
        font-weight:bold;
        position: fixed;
        z-index: -1;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        height: calc(var(--vh, 1vh) * 100);
        padding-right: clamp(30px, 8vw, 60px);
        padding-bottom: clamp(30px, 8vw, 60px);
        padding-left: clamp(30px, 8vw, 60px);
        transition-duration: 300ms;
        transform: translateX(200%);
        overflow: auto;
        background-color: rgba(0, 0, 0, .6);
      }

      .nav-menu.active {
        transform: translateX(0);
      }
    }

    @media (min-width: 1025px) {
      .nav-menu {
        font-weight:bold;
        padding-top: 0 !important;
        padding-right:25px;
      }
    }

    @media (min-width: 1025px) {
      .menu-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -ms-flex-align: center;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        gap: clamp(20px, 2.0833333333333335vw, 40px);
      }
    }

    @media (max-width: 1024px) {
      .menu-item {
        border-style: solid;
        border-color: #fff;
        border-bottom-width: 1px;
      }
    }

   

    @media (max-width: 1024px) {
      .menu-link {
        font-size: clamp(14px, 1.0416666666666667vw, 20px);
        padding-top: clamp(10px, 2.6666666666666665vw, 20px);
        padding-bottom: clamp(10px, 2.6666666666666665vw, 20px);
        text-align: center;
        color: #000;
      }
    }

    @media (min-width: 1025px) {
      .menu-link {
        font-size: clamp(14px, 1.0416666666666667vw, 20px);
      }
    }*/



/*-------------------- header -----------------------**/


/** header -----------------------------------------------------

#header-nav {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
	    margin-left: 39vw;
       background-color: rgba(251, 255, 255, 0.6);
    z-index: -1;
    display: none;
}
#header-nav .bg_overflow{
	padding: 280px 30px 30px;
}
@media screen and (max-width: 768px){
  #header-nav {
    padding: 120px 0px 30px;
  } 
}

.openbtn.active + .bg_over {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    height: 100rem;
    position: absolute;
    z-index: -5;
	    top: 0;
    right: 0;
display:block;
}
.header-nav_list a {
    color: #fff;
	text-decoration: none;
 }
.header-nav_list li a{
    text-align: center;
    margin-bottom: 0px;
    border-bottom: solid 2px #fff;
    width: 100%;
    text-align: left;
    padding-left: 14px;
    display: flex;
    align-items: center;
    align-content: center;
    padding-bottom: 9px;
    padding-top: 10px;
position:relative;
}
#header-nav {
    padding: 0px 0px 30px;
    position: absolute;
    top: 100%;
}


.openbtn {
  position: relative;
  width: 85px;
  height: auto;
  cursor: pointer;
  background-color: #f7f3ed;
  padding: 10px;
  padding-left: 6px;
}
@media screen and (max-width: 780px) {
	header {
		height: 85px;
		
	}
.openbtn {
width: 78px;
    height: 41px;
    margin-right: -12px;
    margin-top: 2px;
	}
}
.openbtn span {
  width: 52%;
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  height: 4px;
  background-color: #7c5a31;
}

.openbtn span:nth-of-type(1) {
  top: 23px;
}

.openbtn span:nth-of-type(2) {
  top: 36px;
}

.openbtn span:nth-of-type(3) {
  top: 49px;
}

.openbtn span.text {
  height: 0;
  color: #09a89c;
  font-size: 16px;
  top: 35px;
}

.openbtn.active {
  background-color: transparent;
}

.openbtn.active span:nth-of-type(1) {
  top: 28px;
  left: 16px;
  transform: translateY(6px) rotate(-45deg);
  width: 35%;
  background-color: #7c5a31;
}

.openbtn.active span:nth-of-type(2) {
  top: 41px;
  left: 16px;
  transform: translateY(-6px) rotate(45deg);
  width: 35%;
  background-color: #7c5a31;
}

.openbtn.active span:nth-of-type(3) {
 display: none;
}

.openbtn.active span.text {
  color: #fff;
}

@media screen and (max-width: 768px) {
	
header {
background-color:#f7f3ed;
}
  .bn-flex-box {
    flex-direction: column;
  }

  .bn-flex-box a {
    width: 100%;
    margin-bottom: 20px;
  }

  .bn-flex-box {
    margin-bottom: 30px;
  }

  .header-logo-img {
    height: 100px;
    width: 140px;
  }

  #bg-cover {
    background-color: rgb(140 141 140 / 73%);
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 100;
    transition: 0.3s;
    visibility: hidden;
    opacity: 0;
  }

  #bg-cover.active {
    visibility: visible;
    opacity: 1;
  }

  p.copyright {
    font-size: 0.6em;
    text-align: center;
    color: #fff;
    padding: 21px 3px 75px 3px !important;
  }
}*/

/** key_section 
.slick-dots li button:before {
  content: "●";
}

.key_section {
  position: relative;
  margin-top:0px;
  padding-top: var(--header-h);
}
@-moz-document url-prefix() {

  .key_section {
  margin-top:0px;
  }
}

.is-chrome .key_section {
  margin-top:0px;
}
.key_list .slick-dots li {
  margin: 0;
}
.key_text_box {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
}
.key_text_box img {
  max-width: 768px;
}

@media screen and (max-width: 480px) {
  .key_list li.slick-slide,
  .key_list {
    height: 380px;
  }
  .key_list li img {
    height: 100%;
  }
}
  p.copyright {
    font-size: 0.6em;
    text-align: center;
    color: #fff;
    padding: 20px;
  }
}


@media screen and (max-width: 1100px) {
    header .logo_contact_contents {
        padding: 5px 10px;
    }

    header .time {
        max-width: 162px;
        margin-right: 20px;
        align-content: center;
    }

    header .time li {
        margin-right: 0;
        margin-bottom: 5px;
    }

    header .web_line_btn {
        flex-direction: column;
        width: 150px;
    }

    header .web_line_btn li {
        margin-bottom: 4px;
        width: 100%;
    }

    header .web_line_btn li a {
        font-size: 0.8em;
        padding: 6px 10px;
        padding-right: 28px;
    }
}

@media screen and (max-width: 840px) {
    header .web_line_btn {
        width: 200px;
    }
}


	header .time_tel_btn {
        display: none;
    }

    header nav {
        display: none;
    }

    #header_nav {
        width: 100%;
        height: 100lvh;
        position: fixed;
        top: 0;
        padding: 120px 30px 30px;
        background-color:#ffefef;
        z-index: 1;
    }

    header .header_nav_list {
        justify-content: flex-start;
        flex-direction: column;
    }

    header .header_nav_list li {
        display: block;
        width: 100%;
    }

    header .header_nav_list a {
font-weight:bold;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 1px dotted #9e923d;
        font-size: 16px;
        color:#9e923d;
        font-weight: 600;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    header .header_nav_list a::after {
        content: "\025b6";
        width: 1.8em;
        height: 1.8em;
        font-size: 0.4em;
        padding: 3px;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color:#9e923d;
        border-radius: 50%;
    }

    .bn_flex_box a {
        width: 100%;
        margin-bottom: 20px;
    }

    .bn_flex_box {
        margin-bottom: 30px;
    }

    .sp_btn_ham {
        display: flex;
    }

    .sp_btn {
        margin-left:9px;
        display: flex;
        align-items: center;
    }

    header .logo_img {
        width: 65%;
        display: flex;
        align-items: center;
    }

    header {
        height: 75px;
    }

    #bg_cover {
        background-color: rgb(140 141 140 / 73%);
        width: 100%;
        height: 100%;
        position: fixed;
        z-index: 100;
        transition: 0.3s;
        visibility: hidden;
        opacity: 0;
    }

    #bg_cover.active {
        visibility: visible;
        opacity: 1;
    }

    .header_nav.active {
        right: 0;
    }
}*/
/** headerここまで -----------------------------------------------------*/



/** footer---------------------------------------------

footer .logo_line_btn_box {
    margin-bottom: var(--margin-s);
}

footer .logo_address_tel {
    width: 220px;
    margin-right: 20px;
}

footer .logo_img {
    margin-bottom: 10px;
}

footer .logo_address_tel p {
    padding-left: 20px;
}

footer .logo_address_tel p a {
    text-decoration: underline;
    text-underline-offset: 5px;
}

footer .time_table {
    width: 68%;
    max-width: 550px;
    height: 120px;
    margin-right: 20px;
}

footer .time_table td,
footer .time_table th {
    text-align: center;
    border: 1px solid var(--orange);
    font-weight: 600;
    vertical-align: middle;
}

footer .time_table th {
    background-color: var(--orange);
    color: #fff;
}

footer .time_table td {
    background-color: #fff;
    color: var(--orange);
}

footer .time_table td:first-child,
footer .time_table th:first-child {
    width: 140px;
}

footer .tel_web_line_btn_list {
    width: 170px;
}

footer .tel_web_line_btn_list li {
    margin-bottom: 10px;
}

footer .tel_web_line_btn_list a {
    display: flex;
    width: 170px;
    position: relative;
    border-radius: 50px;
    padding: 7px 10px;
    padding-right: 23px;
    box-shadow: 0px 0px 8px #b3b3b3;
    align-items: center;
    line-height: 1;
    font-size: 16px;
    background-color: #fff;
}

footer .tel_web_line_btn_list .tel a {
    color: #74bdfc;
    padding-left: 33px;
    border: 2px solid #74bdfc;
}

footer .tel_web_line_btn_list .web a {
    color: var(--orange);
    padding-left: 40px;
    border: 2px solid var(--orange);
}

footer .tel_web_line_btn_list .line a {
    color: var(--line_green);
    padding-left: 38px;
    border: 2px solid var(--line_green);
}

footer .tel_web_line_btn_list a::before {
    content: "";
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

footer .tel_web_line_btn_list .tel a::before {
    width: 1em;
    height: 1.2em;
    left: 14px;
    background-image: url(img/icon_tel_footer.png);
}

footer .tel_web_line_btn_list .web a::before {
    width: 1.3em;
    height: 1.2em;
    left: 10px;
    background-image: url(img/icon_calendar.png);
}

footer .tel_web_line_btn_list .line a::before {
    width: 1.4em;
    height: 1.3em;
    left: 9px;
    background-image: url(img/icon_line.png);
}

footer .tel_web_line_btn_list a::after {
    content: "\025b6";
    font-size: 0.5em;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.1em;
    height: 1.1em;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    right: 0px;
    padding: 2px;
    line-height: 0;
}

footer .tel_web_line_btn_list .tel a::after {
    background-color: #74bdfc;
}

footer .tel_web_line_btn_list .web a::after {
    background-color: var(--orange);
}

footer .tel_web_line_btn_list .line a::after {
    background-color: var(--line_green);
}

.footer_nav {
    max-width: 700px;
    margin: 0 auto 10px;
    font-size: 0.9em;
}

footer .copy {
    text-align: center;
    font-size: 0.7em;
}

.footer_float {
    display: none;
}

@media screen and (max-width: 768px) {

    footer .footer_nav.flex_sb_c,
    footer .logo_line_btn_box.flex_sb_c {
        flex-direction: column;
    }

    footer .footer_nav.flex_sb_c li {
        margin-bottom: 10px;
    }

    footer .time_table,
    footer .logo_address_tel {
        width: 100%;
    }

    footer .logo_address_tel,
    footer .time_table {
        width: 100%;
        margin-bottom: 20px;
        margin-right: 0;
    }
}

@media screen and (max-width: 480px) {
    footer {
        padding:0px;
    }

    .footer_float {
        width: 100%;
        position: fixed;
        left: 0;
        bottom: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px;
        background-color: #ffffffab;
        z-index: 100;
    }

    .footer_float li {
        width: 48%;
    }
} */
/** footerここまで -----------------------------------------------------*/


/*ベース
.toggle_acd {
    display: none;
}
.toggle_acd:checked+.Label_acd+.content_acd {
    /*開閉時
    height: auto;
    padding: 20px 0px;
    transition: all .3s;
}

.toggle_acd:checked+.Label_acd::before {
    transform: rotate(-45deg) !important;
}









.sp_footer {
  display: none;
}

.logo {
  width: 377px;
  height: auto;
}

.flow_icon {
    width: 4%;
    margin: 0 auto;
} 


.logo a{
display: block;
margin-top: 27px;
margin-left: 30px;
}

@media screen and (max-width: 480px) {
  main {
    margin-top: 10%;
  }

  section {
    margin-bottom: 0px;
  }
  .sp_footer {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: fixed;
    bottom: -1px;
	  z-index: 999999;
    padding: 10px;
    background:rgba(255,255,255,0.7);
  }

  .sp_footer li {
    width: 33%;
  }
}

@media screen and (max-width: 320px) {
  body {
    font-size: 14px;
  }

  .header-nav_list a {
    font-size: 15px;
  }

.flow_icon {
  width: 10%;
}

p.copyright {
  font-size: 0.6em;
  text-align: center;
  color: #fff;
  padding: 20px;
}
}




/* パンくず CSS
----------------------------------------------- 
.breadcrumb {
  padding: 20px 0;
	margin-top:6%;
}
.breadcrumb .breadcrumb-list li {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
}
.breadcrumb .breadcrumb-list li a {
  color: #244b55;
}
.breadcrumb .breadcrumb-list li a:hover {
  color: #244b55;
}
.breadcrumb .breadcrumb-list li span {
  padding: 0 5px;
}
@media only screen and (max-width: 767px) {
  .breadcrumb {
    padding: 2% 0;
  }
  .breadcrumb .breadcrumb-list li {
    font-size: 2.8vw;
  }
  .breadcrumb .breadcrumb-list li span {
    padding: 0 5px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .breadcrumb {
    padding: 10px 0;
  }
  .breadcrumb .breadcrumb-list li {
    font-size: 13px;
  }
  .breadcrumb .breadcrumb-list li span {
    padding: 0 10px;
  }
}
/* パンくず CSS　ここまで
----------------------------------------------- */





/* 
.icon_right {
    display: none;
}
@media screen and (max-width: 1024px) {
	.header-container {
    display: flex;
    width: 98%;
    margin: 0 auto;
    }
    .icon_right {
    display:flex;
    margin-top: -30px;
    }
	.openbtn::before {
    bottom: -3px;
    }
}
@media only screen and (max-width: 780px) {
    .openbtn::before {
        bottom: -37px;
    }
	header {
		padding-bottom: 28px;
	}
	.openbtn {
		margin-top: -19px;
		}
	a:has(.map_icon_a) {
		margin-top: 0.4px;
		}
	.openbtn {
		padding-left: 6px;
		margin-right: -19px;
		}
}

@media screen and (max-width: 780px) {
	header {
    height: 65px;
    padding-bottom: 5px;
    padding-top: 5px;
	}
	.header-logo{
    width: 60vw;		
	}
}

@media screen and (max-width: 500px) {
    .header-logo {
        width: 65vw;
        margin-top: 46px;
    }
}


@media screen and (max-width: 780px) {
.header-logo{
	margin-top: -1.3vw;
}
a:has(.map_icon_a) {
    width: 44px;
    margin-right: 7px;
}
.openbtn {
    width: 70px;
    height: 59px;
    margin-right: -12px;
    margin-top: 0.3%;
}
.openbtn {
    margin-top: -23px;
}
.openbtn::before {
    bottom: -11px;
       left: 3px;
    display: block;
    width: 50px;
    height: 9.9px;
    }
}
ol.pankuzu {
    display: flex;
    flex-wrap: wrap;
    padding-top: 108px;
    list-style: none;
}



@media screen and (max-width: 780px) {
ol.pankuzu {
    display: flex;
    flex-wrap: wrap;
    padding-top: 65px;
    list-style: none;
}
.key-first img {
    padding-top: 48px;
	background-color:#ebd8b7;
}
.top.key.padding_of_top{
    padding-top: 22px;
	background-color:#fff;
}*/



/* ========== 改行設定 ========== 
 .br-pc {
	display: inline !important;
  }

 .br-sp {
   display: none !important;
 }

@media screen and (max-width: 768px) {
  .br-pc {
	display: none  !important;
  }
	
  .br-sp {
    display: inline !important;
  }
	
}

html, body { overflow-x: hidden; }

------------------------- */


@media screen and (max-width: 768px) {
  /* 投稿内画像の回り込みを解除 */
  .single_img_text img.alignleft,
  .single_img_text img.alignright,
  .single_text img.alignleft,
  .single_text img.alignright,
  .single_sec img.alignleft,
  .single_sec img.alignright {
    float: none !important;
    clear: both !important;
    display: block !important;
    width: 100% !important;
    margin: 1.5em auto !important;
  }

  /* 画像の回り込み解除後に文章をブロック配置 */
  .single_img_text p,
  .single_text p {
    display: block !important;
    clear: both !important;
  }
}
	
