/*
Theme Name: jftheme-child
Version: 1.0
Template: jftheme
*/

/*--------------------------------------------------------------
# 【 jftheme-child original】
--------------------------------------------------------------*/
/* link
--------------------------------------------- */
a,a:hover,a:visited{
  color: inherit;
  text-decoration: none;

}

/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea,
h1,
h2,
h3,
h4,
h5,
h6 {
	color: #040404;
    font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "BIZ UDPGothic",
    Meiryo,
    sans-serif;
    word-wrap:break-word; 
}
/* ページ構成
--------------------------------------------- */
/* 768px以下では非表示 */
@media screen and (max-width: 768px) {
  .resp-dispnone {
  display:none!important;
 }
}

html, body {
  overflow-x: hidden;  /* フロントページのスライダーによるオーバーフロー対策 */
}


/* 内容が少ないページでもfooterをブラウザ下部に表示*/
html, body {
  /*height: 100%;*/
  height: auto;
  min-height: 100vh;
  margin: 0;
}

#page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

.page .entry-content {
  margin: 0;
}


body.search main,
body.error404 main {
  padding: 1rem;
}

.post, .page {
  margin: 0;
}

/* デフォルト状態で header は main に重なる */
/* 未使用
#masthead {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
*/


/* アイキャッチ画像 */
.header-thumbnail {
  width: 100%;
  height: 400px;
  display: block;
  position: relative;
  z-index: 1;
  object-fit: cover;
  object-position: bottom center;
}

/* デフォルト状態で header は main に重なる */
/* 未使用
.header-widgets {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}
*/

/* ページタイトル */
/* サムネイルと重ねる場合*/
/*未使用
.page-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 100%;
}
*/

/* main の開始位置をアイキャッチ画像の高さに応じて変更 */
main {
    margin-top: 0; /* 初期状態 */
}

.widget {
  margin: 0;
}

/* 下に固定
footer#colophon {
  width: 100%;
  padding: 0;
  position: absolute;
  bottom: 0;
}
*/
.entry-content {/* 固定ページ内コンテンツ */
	margin-top: 0;
}

/* mainとfooterのスペース */
main {
  margin-bottom: 0;
}

/* Navigation
--------------------------------------------- */
/* 外観でメニューにメニュー名「Primary」、メニューに位置「Primary」を追加・設定する */
/* ウィジェット「Header Widget」にメニューブロックで上記を追加すること */
header ul#menu-primary ul {
	display: none;
}
header ul#menu-primary {
  display: flex;
  gap: 2rem;
  justify-content: end;
  list-style: none;
  margin: 0;
  padding-left: 0;

}
.header-widgets .wp-block-columns
{
  margin-bottom: 0;
  padding: 0.5rem 1rem;
}

footer ul.menu {
  display: flex;
  gap: 2rem;
  justify-content: start;
  list-style: none;
  margin: 0;
  padding-left: 0;
  color: #fff;
}


/* Small menu. */


@media screen and (max-width: 768px) {
    .header-widgets {
		display: none;
    }
}

@media screen and (min-width: 769px) {
	.header-widgets {
    	position: fixed;
    	top: 0;
    	z-index: 9999;
    	width: 100%;
	}

/* jsで「fixed」クラスを付けてヘッダーを固定する
	.header-widgets.fixed {
    	position: fixed;
    	top: 0;
    	z-index: 9999;
    	width: 100%;
	}
*/
	.main-navigation {
		position: relative;
	}
	body.home .main-navigation {
		position: relative;
		background-color: transparent;
	}
	.main-navigation ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: center; 
		margin-top: 10px;
		width: 100%;
	}
}

/* ハンバーガーメニュー */
/* 外観でメニューにメニュー名「Hamburger Menu」、メニューに位置「Hamburger Menu」を追加・設定する */
/*============
nav
=============*/
nav {
  display: block;
  position: fixed;
  top: 0;
  left: -300px;
  bottom: 0;
  width: 300px;
  /*background: #ffffff;*/
  background-image: url("../../uploads/2025/07/bg2-scaled.jpg");
  background-color:rgba(255,255,255,0.1);
  background-blend-mode:lighten;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all .5s;
  z-index: 3;
  opacity: 0;
}
.open nav {
  left: 0;
  opacity: 1;
}
nav .inner {
  padding: 25px;
}
nav .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav .inner ul li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #333;
}
nav .inner ul li a {
  display: block;
  color: #333;
  font-size: 14px;
  padding: 1em;
  text-decoration: none;
  transition-duration: 0.2s;
}
nav .inner ul li a:hover {
  background: #e4e4e4;
}
@media screen and (max-width: 767px) {
  nav {
    left: -220px;
    width: 220px;
  }
}
/*============
.toggle_btn
=============*/
.toggle_btn {
  display: none;
  position: fixed;
  top: 30px;
  right: 30px;
  width: 30px;
  height: 30px;
  transition: all .5s;
  cursor: pointer;
  z-index: 3;
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #333;
  border-radius: 4px;
  transition: all .5s;
}
.toggle_btn span:nth-child(1) {
  top: 4px;
}
.toggle_btn span:nth-child(2) {
  top: 14px;
}
.toggle_btn span:nth-child(3) {
  bottom: 4px;
}
.open .toggle_btn span {
  background-color: #fff;
}
.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
}

@media screen and (max-width: 768px) {
    .toggle_btn {
        display: block;
    }
}
/*============
#mask
=============*/
#mask {
  display: none;
  transition: all .5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .8;
  z-index: 2;
  cursor: pointer;
}

/* ハンバーガーメニュー内サブメニュー */
#hamburger-menu .sub-menu-toggle {
  flex: 1;
    display: flex;
    align-items: center;
}

#hamburger-menu .menu-item-has-children {
  display: flex;
  justify-content: left;
  position: relative;
  flex-wrap: wrap;
}

#hamburger-menu .menu-item-has-children .sub-menu {
  display: none;
  margin-top: 0;
  width: 100%;
 }
 
#hamburger-menu .menu-item-has-children .sub-menu li {
  /*margin: 0 50px;*/
  padding-left: 10px;
  padding-right: 0;
 }

#hamburger-menu .menu-item-has-children .sub-menu li:last-child {
  border-bottom: 0;
 }

/* 共通
--------------------------------------------- */
/* カバーブロック　背景固定 safari対策*/
.cover-fix {
  position: relative;
  width: 100%;
  height: 100%;
  /*範囲外の背景画像を隠す*/
  clip-path: inset(0);
}
.cover-fix .wp-block-cover__image-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
