@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: 6%;
 right: 13%;
 line-height: 0;
 -webkit-transition: top 0.3s ease;
 transition: transform 0.3s ease, opacity 0.3s ease;
}
@media screen and (min-width: 1024px) {
 .hamburger {
  display: none;
 }
}
/* ヘッダー＆ハンバーガーの隠れるアニメーション */
.l-header.is-hide,
#js-hamburger.is-hide {
 transform: translateY(-100%);
 opacity: 0;
 transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger button {
 position: relative;
 width: 22px;
 height: 15px;
}
.hamburger button span {
 position: absolute;
 left: 0;
 width: 22px;
 height: 3px;
 background: #339933;
 -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: #177c5f;
 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;
}
.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) {
}
/* ヘッダー共通 */
.l-header.logo-center-only {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: auto;
 z-index: 10;
 pointer-events: none;
}

.logo-wrapper {
 pointer-events: auto;
 position: absolute;
 top: 40px;
 left: 50%;
 transform: translateX(-50%);
 z-index: 11;
}

.logo-wrapper img {
 height: auto;
 width: auto;
}
@media screen and (min-width: 768px) {
 .logo-wrapper img {
  height: 160px;
 }
}

/* スクロール後ヘッダー */
.l-header.scroll-active {
 position: fixed;
 background-color: rgba(0, 0, 0, 0.7);
 box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
 pointer-events: auto;
 transition: all 0.3s ease;
 padding: 10px 0;
 z-index: 999;
}

/* 中央ロゴ＋ハンバーガーの入るコンテナ */
.header-inner {
 display: none;
 align-items: center;
 justify-content: center;
 max-width: 1500px;
 margin: 0 auto;
 padding: 0 20px;
 position: relative;
}
.l-header.scroll-active .header-inner {
 display: flex;
}

/* スクロール後の中央ロゴ */
.logo-center {
 display: flex;
 justify-content: center;
 flex: 1;
}
.logo-center img {
 height: 80px;
}

/* ハンバーガー右配置 */
.hamburger {
 display: none;
}
.l-header.scroll-active .hamburger {
 display: block;
 position: absolute;
 right: 20px;
 top: 50%;
 transform: translateY(-50%);
 z-index: 1000;
}
.hamburger button {
 width: 30px;
 height: 24px;
 position: relative;
}
.hamburger button span {
 position: absolute;
 left: 0;
 width: 100%;
 height: 4px;
 background: #fff;
 border-radius: 2px;
 transition: all 0.3s ease;
}
.hamburger button span:nth-child(1) {
 top: 0;
}
.hamburger button span:nth-child(2) {
 top: 10px;
}
.hamburger button span:nth-child(3) {
 top: 20px;
}

.hamburger.open button span:nth-child(1) {
 transform: translateY(10px) rotate(45deg);
}
.hamburger.open button span:nth-child(2) {
 opacity: 0;
}
.hamburger.open button span:nth-child(3) {
 transform: translateY(-10px) rotate(-45deg);
}

/* メインナビは使わないので非表示 */
.main-nav {
 display: none !important;
}

/* .logo-wrapper はスクロール後は非表示 */
.l-header.scroll-active .logo-wrapper {
 display: none;
}

.drawer {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100vh;
 opacity: 0;
 pointer-events: none;
 visibility: hidden;
 transition: opacity 0.3s ease, visibility 0.3s ease;
 z-index: 999;
 display: flex;
 flex-direction: row;
}

.drawer.active {
 opacity: 1;
 pointer-events: auto;
 visibility: visible;
}

.drawer__left {
 flex: 7;
 height: 100%;
 background: url("http://3rd-dandan.jp/wp-content/themes/theme-dandan2025/assets/images/common/drawer-bg02.jpeg")
  no-repeat center center / cover;
}

.drawer__right {
 flex: 3;
 height: 100%;
 display: flex;
 align-items: center;
 justify-content: center;
 flex-direction: column;
 background: rgb(0 0 0);
}

.drawer__list {
 display: flex;
 list-style: none;
 padding: 0;
 margin: 0;
 text-align: center;
 width: 100%;
 flex-direction: column;
 align-items: center;
}

.drawer__list__item {
 margin: 20px 0;
}

.drawer__list__item a {
 font-family: "Noto Serif JP", serif;
 color: #fff;
 font-size: 1.8rem;
 font-weight: bold;
 text-decoration: none;
 display: block;
}
@media screen and (max-width: 767px) {
 .drawer {
  flex-direction: column;
 }

 .drawer__left {
  display: none; /* ← スマホでは非表示 */
 }

 .drawer__right {
  flex: 1;
  width: 100%; /* ← 横幅100% */
  background: rgba(0, 0, 0, 0.95); /* ← 全画面を覆う黒背景 */
  justify-content: center;
  align-items: center;
 }

 .drawer__list__item a {
  font-size: 1.6rem; /* ← 文字サイズ少し小さめ */
 }
}

/* 下層ページ用の黒背景 */
.l-header.has-nav {
 background: #000;
 position: fixed;
 top: 0;
 width: 100%;
 z-index: 999;
}

/* メインナビ */
.main-nav ul {
 display: flex;
 gap: 30px;
}

.main-nav a {
 color: #fff;
 font-weight: bold;
 font-size: 1rem;
 text-decoration: none;
}
/* PC用ナビを非表示にする（スマホ） */
@media screen and (max-width: 767px) {
 .laptop {
  display: none !important;
 }
}
.l-header.is-hide {
 transform: translateY(-100%);
 opacity: 0;
 transition: transform 0.3s ease, opacity 0.3s ease;
}

/*
footer
================================*/

.site-footer {
 position: relative;
 height: 720px;
 background: url("http://3rd-dandan.jp/wp-content/themes/theme-dandan2025/assets/images/common/footer-bg02.png")
  no-repeat center center / cover;
 color: #fff;
 text-align: center;
 overflow: hidden;
}
@media screen and (min-width: 768px) {
 .site-footer {
  position: relative;
  height: 720px;
  background: url("http://3rd-dandan.jp/wp-content/themes/theme-dandan2025/assets/images/common/footer-bg02.png")
   no-repeat center center / cover;
  color: #fff;
  text-align: center;
  overflow: hidden;
 }
}
/* ロゴを上に浮かせる */
.footer-logo {
 position: absolute;
 top: 6%;
 left: 50%;
 transform: translateX(-50%);
 z-index: 3;
}
@media screen and (min-width: 768px) {
 /* ロゴを上に浮かせる */
 .footer-logo {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
 }
}
.footer-logo img {
 height: auto;
 width: auto;
}
@media screen and (min-width: 768px) {
 .footer-logo img {
  height: 180px;
  width: auto;
 }
}
/* 黒半透明背景 */
.footer-bg {
 position: absolute;
 bottom: 0;
 left: 0;
 width: 100%;
 height: 520px;
 background-color: rgba(0, 0, 0, 0.6);
 z-index: 1;
}
@media screen and (min-width: 768px) {
 .footer-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
 }
}
.footer-info p {
 text-align: center;
}
/* テキスト配置 */
.footer-info {
 display: flex;
 position: absolute;
 bottom: 5%;
 left: 50%;
 transform: translateX(-50%);
 z-index: 2;
 width: 100%;
 padding: 10px;
 box-sizing: border-box;
 line-height: 2;
 font-size: 0.9rem;
 flex-direction: column;
 gap: 10px;
}
@media screen and (min-width: 768px) {
 .footer-info {
  display: flex;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 30px;
  box-sizing: border-box;
  line-height: 2;
  font-size: 1.1rem;
  flex-direction: column;
  align-items: center;
 }
}
/* PCナビ内ロゴ */
.main-nav .nav-logo img {
 max-height: 40px;
 vertical-align: middle;
}
.main-nav .nav-logo {
 margin-right: 20px;
}

/* スマホドロワー内ロゴ */
.drawer-logo {
 text-align: center;
 padding: 0px 0 60px;
}
.drawer-logo img {
 max-width: 200px;
 height: auto;
}
