@charset "UTF-8";
/*===============================
reset
================================*/
*,
*:before,
*:after {
 -webkit-box-sizing: border-box;
 box-sizing: border-box;
 text-align: justify;
 word-break: break-all;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
 margin: 0;
 padding: 0;
 border: 0;
 vertical-align: baseline;
}

body {
 line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
 display: block;
}

button {
 padding: 0;
 background: transparent;
 border: none;
 outline: none;
}

nav ul {
 list-style: none;
}

blockquote,
q {
 quotes: none;
}

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

ol,
ul {
 list-style: none;
}

a {
 margin: 0;
 padding: 0;
 color: #333;
 vertical-align: baseline;
 background: transparent;
 text-decoration: none;
}

img {
 max-width: 100%;
 height: auto;
 vertical-align: middle;
}

blockquote,
q {
 quotes: none;
}

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

table,
td,
th {
 border-collapse: collapse;
 border-spacing: 0;
}

textarea {
 resize: vertical;
}

/*===============================
base
================================*/
html {
 font-weight: 500;
 letter-spacing: 2px;
 line-height: 1.8em;
 color: #333;
 font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans",
  Meiryo, sans-serif;
}

body {
 position: relative;
 z-index: 100;
 background: #fff;
 font-size: 13px;
 margin-inline: auto;
 line-height: 1.6;
 overflow-x: hidden;
}
@media screen and (min-width: 768px) {
 body {
  font-size: 14px;
 }
}
@media screen and (min-width: 1200px) {
 body {
  font-size: 15px;
 }
}
.body02 {
 position: relative;
 z-index: 100;
 background: #004680;
 font-size: 13px;
 max-width: 1500px;
 margin-inline: auto;
}
@media screen and (min-width: 768px) {
 .body02 {
  font-size: 14px;
 }
}
@media screen and (min-width: 1200px) {
 .body02 {
  font-size: 15px;
 }
}
.dc_css_js_dsp {
 position: fixed;
 bottom: 10px;
 right: 10px;
 z-index: 500;
 padding: 30px;
 background: #fff;
 border: 1px solid #1a5887;
}
.dc_css_js_dsp .scripts {
 margin-top: 20px;
}
.dc_css_js_dsp dd ul {
 margin-top: 15px;
}
.dc_css_js_dsp dd ul li {
 position: relative;
 padding-left: 20px;
}
@media screen and (min-width: 768px) {
 .dc_css_js_dsp dd ul li {
  font-size: 1.4rem;
 }
}
.dc_css_js_dsp dd ul li:before {
 content: "・";
 position: absolute;
 top: 0;
 left: 0;
}
.dc_css_js_dsp dd ul li:not(:first-child) {
 margin-top: 10px;
}

.wrap-s,
.wrap,
.wrap-l {
 width: calc(100% - 40px);
 margin: auto;
}
@media screen and (min-width: 768px) {
 .wrap-s,
 .wrap,
 .wrap-l {
  width: calc(100% - 60px);
  margin: auto;
 }
}

.wrap-s {
 max-width: 1000px;
}

.wrap {
 max-width: 1200px;
}

.wrap-l {
 max-width: 1500px;
}

.palmtop {
 display: block !important;
}
@media screen and (min-width: 768px) {
 .palmtop {
  display: none !important;
 }
}
@media screen and (min-width: 1024px) {
 .palmtop {
  display: none !important;
 }
}

.laptop {
 display: none !important;
}
@media screen and (min-width: 768px) {
 .laptop {
  display: block !important;
 }
}
@media screen and (min-width: 1024px) {
 .laptop {
  display: block !important;
 }
}

.sclNone {
 overflow-y: hidden;
}

.is-hide {
 top: -100% !important;
}
/*
hamburger
================================*/
.hamburger {
 position: fixed;
 z-index: 120;
 top: 32px;
 right: 25px;
 line-height: 0;
 -webkit-transition: top 0.3s ease;
 transition: top 0.3s ease;
}
@media screen and (min-width: 1024px) {
 .hamburger {
  display: none;
 }
}
.hamburger button {
 position: relative;
 width: 22px;
 height: 15px;
}
.hamburger button span {
 position: absolute;
 left: 0;
 width: 22px;
 height: 3px;
 background: #51443a;
 -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
 transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
 transition: transform 0.3s ease, opacity 0.3s ease;
 transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.hamburger button span:first-child {
 top: 0;
}
.hamburger button span:nth-child(2) {
 top: 6px;
}
.hamburger button span:nth-child(3) {
 top: 12px;
}

.hamburgerActive button span {
 background: #fff;
}
.hamburgerActive button span:first-child {
 -webkit-transform: translateY(6px) rotate(45deg);
 transform: translateY(6px) rotate(45deg);
}
.hamburgerActive button span:nth-child(2) {
 opacity: 0;
}
.hamburgerActive button span:nth-child(3) {
 -webkit-transform: translateY(-6px) rotate(-45deg);
 transform: translateY(-6px) rotate(-45deg);
}

/*
 drawer
 ================================*/
.drawer {
 position: fixed;
 z-index: 110;
 top: 0;
 left: 0;
 width: 100%;
 height: 100vh;
 height: 100dvh;
 background: #4a3d34;
 overflow-y: auto;
 opacity: 0;
 pointer-events: none;
 -webkit-transition: opacity 0.3s ease;
 transition: opacity 0.3s ease;
}
@media screen and (min-width: 1024px) {
 .drawer {
  display: none;
 }
}
.drawer__list {
 padding: 60px 0 40px 0;
 display: flex;
 flex-direction: column;
 align-items: center;
}
.drawer__list__item {
 text-align: center;
}
.drawer__list__item:not(:first-child) {
 margin-top: 55px;
}
.drawer__list__item a {
 color: #fff;
 font-weight: bold;
 font-size: 16px;
}

.drawerActive {
 opacity: 1;
 pointer-events: auto;
}
/*===============================
layout
================================*/
@media screen and (min-width: 768px) {
}
.header-nav .nav-item {
 position: relative;
}

.header-nav .dropdown {
 display: none;
 position: absolute;
 top: 100%;
 left: 0;
 background: #4a3d2d;
 z-index: 999;
 min-width: 220px;
 border-top: 2px solid #fff;
}

.header-nav .dropdown li {
 border-bottom: 1px solid #fff;
}

.header-nav .dropdown li a {
 display: block;
 padding: 12px 16px;
 color: #fff;
 font-size: 14px;
 text-align: left;
 background: #4a3d2d;
 transition: background 0.3s;
}

.header-nav .dropdown li a:hover {
 background: #6b4f3b;
}

.header-nav .nav-item:hover .dropdown {
 display: block;
}
.drawer-sublist {
 display: none;
 padding: 10px 20px;
}

.drawer-sublist li a {
 color: #fff;
 text-align: center;
 font-size: 14px;
 display: block;
 padding: 10px 0;
}

.js-drawer-toggle {
 color: #fff;
 font-size: 16px;
 font-weight: bold;
 cursor: pointer;
 padding: 15px 20px;
 background: #4a3d34;
}
.js-drawer-toggle.open::after {
 content: "▲";
 float: right;
}
.js-drawer-toggle::after {
 content: "▼";
 float: right;
}

/*
header
================================*/
/* ====== 基本レイアウト ====== */
/* PCデフォルト：追従しない */
.l-header {
 width: 100%;
 background: #fff;
 border-bottom: 1px solid #ccc;
 font-family: "Noto Sans JP", sans-serif;
 z-index: 1000;
 position: relative; /* 固定ではない状態 */
}

/* スマホだけ追従 */
@media screen and (max-width: 768px) {
 .l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
 }
}

/* ====== 上部：ロゴとお問い合わせ ====== */
.header-top {
 display: flex;
 justify-content: flex-start;
 align-items: center;
 padding: 24px;
 flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
 .header-top {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 24px;
  flex-wrap: wrap;
 }
}

.header-logo {
 display: flex;
 align-items: center;
}

.header-logo img {
 max-height: 25px;
}
@media screen and (min-width: 768px) {
 .header-logo img {
  max-height: 40px;
 }
}

.header-slogan {
 font-size: 14px;
 color: #333;
 white-space: nowrap;
}

/* ====== お問い合わせボタン群 ====== */
.header-contact {
 display: flex;
 gap: 10px;
}

.contact-item {
 display: flex;
 align-items: center;
 background: #fff;
}

.contact-item img {
}

/* ====== ナビゲーションメニュー ====== */
.header-nav-background {
 background: repeating-linear-gradient(
  to bottom,
  #9f6f47,
  #9f6f47 2px,
  #8a6032 2px,
  #8a6032 6px
 );
}
.header-nav {
 background: #5c4534;
}

.header-nav-list {
 display: flex;
 margin: 0;
 padding: 0;
 list-style: none;
 justify-content: center;
}

.nav-item {
 flex: 1;
 text-align: center;
 background: repeating-linear-gradient(
  to bottom,
  #51443b,
  #5c4534 2px,
  #4a3a2e 2px,
  #4a3a2e 6px
 );
 border-left: 2px solid #ffffff;
 border-right: 2px solid #ffffff;
}

.nav-item:first-child {
 border-left: 4px solid #ffffff;
}

.nav-item:last-child {
 border-right: 4px solid #ffffff;
}

.nav-item a {
 text-align: center;
 display: block;
 padding: 18px 0;
 color: #fff;
 text-decoration: none;
 font-weight: bold;
 font-size: 15px;
}

/*
footer（カテゴリごとに見出し＋縦並び）
================================
*/

/* ================================
   フッター全体
================================ */
.footer {
 background: #fff;
 padding: 20px 0 40px;
 /* border-top: 1px solid #ccc; */
 font-family: "Noto Sans JP", sans-serif;
}

/* ================================
   フッターメニュー：カテゴリ構造
================================ */
.footer-menus {
 display: flex;
 flex-wrap: nowrap;
 justify-content: space-between;
 gap: 10px;
 margin-bottom: 40px;
}

.footer-menu-block {
 width: auto;
 min-width: 160px;
}

.footer-menu-title {
 font-weight: bold;
 font-size: 18px;
 color: #333;
 margin-bottom: 8px;
}

/* リスト形式のリンク */
.footer-menu-block ul {
 padding: 0;
 margin-left: 15px;
 list-style: none;
}

.footer-menu-block li {
 margin-bottom: 6px;
}

.footer-menu-block li a {
 font-size: 14px;
 color: #333;
 text-decoration: none;
}

.footer-menu-block li a:hover {
 text-decoration: underline;
}
.footer-menu-title a {
 font-weight: bold;
 font-size: 17px;
 color: #333;
 text-decoration: none;
 display: inline-block;
}

.footer-menu-title a:hover {
 text-decoration: underline;
}
/* ================================
   ロゴ・住所
================================ */
.footer-logo {
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 10px;
 text-align: center;
}

.footer-logo-image {
 max-width: 300px;
 height: auto;
}

.footer-address {
 font-size: 15px;
 padding-top: 15px;
 color: #333;
 line-height: 1.6;
}

/* ================================
   COPYRIGHT
================================ */
.copyright {
 background: #4a3d34;
 color: #fff;

 padding: 30px 0;
}

.copyright-text {
 font-size: 13px;
 text-align: center;
 margin: 0;
}

/* ================================
   モバイル対応
================================ */
@media screen and (max-width: 768px) {
 .footer-menus {
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
 }

 .footer-menu-block {
  min-width: 100%;
 }

 .footer-logo-image {
  max-width: 240px;
 }

 .footer-address {
  font-size: 14px;
 }
}
@media screen and (max-width: 768px) {
 .js-footer-toggle {
  position: relative;
  cursor: pointer;
  padding-right: 1.5em;
 }

 .js-footer-toggle::after {
  content: "＋";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 16px;
  line-height: 1;
 }

 .js-footer-toggle.open::after {
  content: "−";
 }

 .footer-sublist {
  display: none;
  margin-top: 8px;
  padding-left: 16px;
 }
}
.bottomNav {
 display: flex;
 justify-content: space-around;
 gap: 0; /* gap を消す（線との間が空くのを防ぐ） */
 align-items: center;
 background: #fff;
 box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
 border-top: 1px solid #ccc;
 position: fixed;
 bottom: 0;
 left: 0;
 width: 100%;
 z-index: 9999;
 padding: 5px 0;
}

.bottomNav .item {
 flex: 1;
 text-align: center;
 position: relative;
}

.bottomNav .item img {
 width: 40px;
 height: auto;
 margin-bottom: 5px;
}

.bottomNav .item p {
 font-size: 13px;
 margin: 0;
 color: #333;
 text-align: center;
}

/* 縦線を追加：最後の要素以外に */
.bottomNav .item:not(:last-child)::after {
 content: "";
 position: absolute;
 top: 25%;
 right: 0;
 height: 50%;
 width: 1px;
 background-color: #ccc;
}
.bottomNav {
 transition: transform 0.3s ease;
 transform: translateY(100%);
}
