

/* ========================================================================== */
/* 共通 */
/* ========================================================================== */
* {
	font-family: 'Noto Serif JP', "Yu Mincho", "YuMincho", "BIZ UDPMincho", "BIZ UDP明朝", serif;
	font-family: 'Noto Sans JP', "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "YuGothic", "Meiryo", "BIZ UDPGothic", sans-serif;
	box-sizing: border-box;
}
h1, h2, h3, h4, h4, h5, h6, #header #site-title, #pageTitBnr #pageTitInner #pageTit, #content .leadTxt, #sideTower .localHead {
	font-family: 'Noto Serif JP', "Yu Mincho", "YuMincho", "BIZ UDPMincho", "BIZ UDP明朝", serif;
	font-family: 'Noto Sans JP', "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "YuGothic", "Meiryo", "BIZ UDPGothic", sans-serif;
}
html {
	/*overflow-x: hidden;*/
}
body {
	font-size: 100%;
	/*overflow-x: hidden;*/
}

a, .content .infoList ul li .infoTxt a, .content .infoList ul li a {
	color: #222;
}
#main {
	overflow-x: hidden;
}
a:hover img {
	opacity: 0.8;
}
a img {
	transition: 0.3s !important;
}



/* ========================================================================== */
/* メインビジュアル */
/* ========================================================================== */
/* -------------------------------------------------------------------------- */
/* レイアウト */
/* -------------------------------------------------------------------------- */
#mainvisual {
	display: flex;
	overflow: hidden;
}
.mainvisual_sidebar {
	flex: 0 0 290px;
	padding: 0 0.5em;
	background-color: #F0EFEC;
}
.mainvisual_mainarea {
	flex: 1 1 auto;
	max-width: calc(100% - 290px);
	position: relative;
}
.main_slide {
	position: relative;
}

/* -------------------------------------------------------------------------- */
/* スライドショー */
/* -------------------------------------------------------------------------- */
.slider-pro, .sp-slides-container, .sp-mask, .sp-slides, .sp-slide, .sp-image-container, .slider-pro img.sp-image {
	min-height: 780px !important;
	max-height: 100vh;
}
.slider-pro img.sp-image {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	object-position: center !important;
	margin-left: 0 !important;
	margin-top: 0 !important;
	left: 50% !important;
	top: 50% !important;
	transform: translate(-50%, -50%) !important;
	max-width: none !important;
}
.sp-buttons {
	display: flex;
	padding-top: 0;
}

/* */
/* コントロールボタン */
/* */
.slide_nav_wrap {
	position: absolute;
	right: 1em;
	bottom: 1em;
	display: flex;
	align-items: center;
}
.sp-button {
	width: 24px;
	height: 24px;
	border: 2px solid #fff;
	box-shadow: 0 0 6px 1px rgba(0,0,0,0.8);
	margin: 0 0.5em;
	padding: 0;
}
.slide_nav_wrap > button {
	width: 24px;
	height: 24px;
	text-indent: -9999px;
	position: relative;
	margin: 0 0 0 0.5em;
	padding: 0;
	border: none;
	background-color: transparent;
	cursor: pointer;
	filter: drop-shadow(0 0 4px rgba(0,0,0,0.8));
}
.slide_nav_wrap > button.play-pause-btn::before {
	content: '';
	position: absolute;
	left: 2px;
	top: 0;
	display: block;
	width: 6px;
	height: 24px;
	background-color: #fff;
}
.slide_nav_wrap > button.play-pause-btn::after {
	content: '';
	position: absolute;
	right: 2px;
	top: 0;
	display: block;
	width: 6px;
	height: 24px;
	background-color: #fff;
}

.slide_nav_wrap > button.play-pause-btn.is-paused::before {
    /* 位置の微調整（三角形は視覚的に少し左に寄って見えるので調整） */
    left: 2px; 
    top: 0;
    width: 20px; /* 三角形の横幅 */
    height: 24px;
    background-color: #fff;
    clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
}

.slide_nav_wrap > button.play-pause-btn.is-paused::after {
    display: none; /* 右側の棒を消す */
}


.sp-selected-button {
	background-color: #fff;
}

/* */
/* スライド中央ふくしまDCテキスト */
/* */
.fukushima_dc_txt {
	background-image: url(/wp-content/themes/biz-vektor-child/images/top/fukushima_dc_bg.svg);
	aspect-ratio: 730/344;
	width: 700px;
	background-size: cover;
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 2.375em;
	line-height: 1.75;
	font-family: "Zen Kaku Gothic New", "BIZ UDPGothic", "Meiryo", "メイリオ", sans-serif;
	font-weight: 700;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* */
/* スライド右下ふくしまDCロゴ */
/* */
.main_slide::after {
	content: '';
	position: absolute;
	right: 2em;
	bottom: 4em;
	background-image: url(/wp-content/themes/biz-vektor-child/images/top/fukushimaDC_logo.svg);
	display: block;
	width: calc(368px * 0.7);
	height: calc(290px * 0.7);
	background-size: cover;
	filter: drop-shadow(0 0 4px rgba(0,0,0,0.8));
}



/* */
/* スライドショー Safari用 object-fit 修正 */
/* */
.sp-image-container a {
    display: block;
    width: 100%;
    height: 100%;
}

.slider-pro img.sp-image {
    display: block !important; /* ブロック要素化を念押し */
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    margin-left: 0 !important;
    margin-top: 0 !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    max-width: none !important;
}




/* -------------------------------------------------------------------------- */
/* サイドバー */
/* -------------------------------------------------------------------------- */
/* */
/* メインロゴ */
/* */
#site-title a img {
	max-width: 135px;
	margin: 2.25em 0;
}
/* */
/* 検索ボックス */
/* */
.search {
	display: flex;
	justify-content: center;
}
form#searchform {
	float: none;
}
#searchform div input {
	height: 40px;
	border: 1px solid #001843 !important;
}
#searchform div input + input {
	border-left: none !important;
}
#searchsubmit {
	text-indent: -9999px;
	width: 40px !important;
	background-image: url(/wp-content/themes/biz-vektor-child/images/top/search.svg), linear-gradient(180deg, #1C4768 0%, #0C2F5D 50%, #4F7595 100%);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 18px auto, cover;
}
form#searchform input#s {
	width: 170px;
}

/*
 * SNS
 */
.header_sns {
	width: 230px;
	margin: 2em auto 1em;
	padding: 0 0.75em;
}
.header_sns > div {
	margin: 0 0 1.5em;
}
.header_sns > div.facebook, .header_sns > div.twitter_x {
	text-align: left;
	padding: 0 0 0 2em;
	position: relative;
}
.header_sns > div.facebook::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background-image: url(/wp-content/themes/biz-vektor-child/images/top/Facebook_Logo.svg);
	width: 24px;
	height: 24px;
}
.header_sns > div.twitter_x::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background-image: url(/wp-content/themes/biz-vektor-child/images/top/x_logo.svg);
	width: 23px;
	height: 24px;
}
.header_sns > div.instagram {
	position: relative;
	margin: 2em 0 0;
}
.header_sns > div.instagram::before {
	content: '';
	position: absolute;
	left: -50%;
	top: 20%;
	background-image: url(/wp-content/themes/biz-vektor-child/images/top/instagram_bg.webp);
	display: block;
	width: calc(250%);
	height: 75%;
}
.header_sns > div.instagram > div:nth-child(1) {
	position: relative;
	padding: 0 2em 0.75em;
}
.header_sns > div.instagram > div:nth-child(1)::before {
	content: '';
	position: absolute;
	top: 0;
	left: 2em;
	background-image: url(/wp-content/themes/biz-vektor-child/images/top/instagram_logo.png);
	width: 24px;
	height: 24px;
}
.instagram_link {
	position: relative;
	z-index: 1;
	margin: 1em 0 0;
}
.instagram_link a {
	display: block;
	background-image: linear-gradient(180deg, #1C4768 0%, #0C2F5D 50%, #4F7595 100%);
	padding: 0.5em 1em;
	color: #fff;
	text-decoration: none;

	position: relative;
	z-index: 1;
    transition: color 0.3s;
}
.instagram_link a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    box-shadow: inset 0 0 0 1px #333333;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}
.instagram_link a:hover {
    color: #222 !important;
	text-decoration: none !important;
}
.instagram_link a:hover::before {
    opacity: 1;
}




/* -------------------------------------------------------------------------- */
/* グローバルナビゲーション */
/* -------------------------------------------------------------------------- */
.nav-toggle-checkbox,
.nav-toggle-label,
.nav-overlay {
    display: none;
}
.main_menu {
	display: flex;
	position: absolute;
	width: 100%;
	background-color: #000b;
	z-index: 1;
	height: 80px;
	align-items: center;
}
.navigation {
	color: #fff;
	font-size: initial;
	line-height: 1.5em;
	overflow: visible;
	border-top: none;
	padding: 0;
	clear: both;
	z-index: 1;
	width: 100%;
	
}
.navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
	justify-content: right;
}

.navigation li {
    position: relative;  /* サブメニューの基準位置にする */
}

.navigation li a, .navigation a:link, .navigation a:visited {
    display: block;
    padding: 1em 1.5em;
    text-decoration: none;
    color: #fff;
	font-size: 1.125em;
	display: grid;
}
.navigation > ul > li > a > span {
	display: block;
	font-size: calc(1em / 1.125);
}



/* --- サブメニュー（子要素）の初期状態 --- */
.navigation ul.sub-menu {
    position: absolute;  /* 親liを基準に浮かせる */
    top: 100%;           /* 親の真下に配置 */
    left: 50%;
    width: auto;        /* サブメニューの幅 */
    display: none;       /* 最初は隠しておく */
    z-index: 999;
    flex-direction: column; /* 縦に並べる */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	transform: translateX(-50%);
}

/* --- マウスオン（hover）時の挙動 --- */
.navigation li:hover > .sub-menu {
	display: block;
	white-space: nowrap;
}

/* サブメニューを持つときクリックできない */
.navigation li a:has(+ ul.sub-menu) {
    pointer-events: none;
    /* 念のため、クリックできないことがわかるようカーソルも調整しておくと親切です */
    cursor: default; 
}

/* サブメニュー内のリンク装飾 */
.navigation .sub-menu li a {
    padding: 0.5em 1.2em;
    background: #000b;
    border: 1px solid #eee;
}
.navigation .sub-menu li:nth-child(n+2) a {
	border-top: none;
}

.navigation .sub-menu li a:hover {
    color: #fff;
}

/* 翻訳ボタン */
.language-dropdown {
	position: relative;
}

.language-dropdown-wrapper {
	z-index: 1;
	padding: 0 1.5em;
}
.language-dropdown > summary {
	display: inline-flex;
	align-items: baseline;
	padding: 0.5em 2.5em 0.75em 1em;
	border: 1px solid #fff;
	outline: 1px solid #fff;
	outline-offset: -1px;
	border-radius: 999px;
	cursor: pointer;
	background-color: #fff2;
	color: #fff;
	font-size: 1rem;
	position: relative;
}
.language-dropdown > summary::after {
	content: '';
	position: absolute;
	border-style: solid;
	border-width: 10px 7px 0 7px;
	border-color: currentColor transparent transparent transparent;
	right: 1em;
	top: 50%;
	transform: translateY(-50%);
}
.language-dropdown > summary + ul {
	position: absolute;
	top: calc(100% + 0.5em);
	left: 0;
	width: 100%;
	padding: 0.75em 0.5em;
	border: 1px solid #fff;
	background-color: #000a;
	border-radius: 1em;
}
.language-dropdown > summary + ul li {
	margin: 0.25em 0;
}
.language-dropdown > summary + ul li a {
	color: #fff;
}

.submenu-toggle {
	display: none;
}




/* ========================================================================== */
/* 見出し */
/* ========================================================================== */
/* -------------------------------------------------------------------------- */
/* 見出しwrap要素 */
/* -------------------------------------------------------------------------- */
.news_h2, .destination_h2, .recommend_h2, .link_h2 {
	position: relative;
	margin: 6.5em 0 4.5em;
}

/* -------------------------------------------------------------------------- */
/* 見出し上画像 */
/* -------------------------------------------------------------------------- */
.news_h2::before, .destination_h2::before, .recommend_h2::before, .link_h2::before {
	content: '';
	position: absolute;
	top: -65%;
	left: 50%;
	width: calc(300px * 0.7);
	height: calc(41px * 0.7);
	transform: translateX(-50%);
	background-repeat: no-repeat;
}
.news_h2::before, .recommend_h2::before {
	background-image: url(/wp-content/themes/biz-vektor-child/images/top/title_top_red.svg);
}
.destination_h2::before, .link_h2::before {
	background-image: url(/wp-content/themes/biz-vektor-child/images/top/title_top_kon.svg);
}

/* -------------------------------------------------------------------------- */
/* 見出し下画像 */
/* -------------------------------------------------------------------------- */
.news_h2::after, .destination_h2::after, .recommend_h2::after, .link_h2::after {
	content: '';
	position: absolute;
	bottom: -70%;
	left: 50%;
	width: calc(300px * 0.75);
	height: calc(51px * 0.75);
	transform: translateX(-50%) scaleY(0.55);
	background-repeat: no-repeat;
}
.news_h2::after, .recommend_h2::after {
	background-image: url(/wp-content/themes/biz-vektor-child/images/top/title_bottom_red.svg);
}
.destination_h2::after, .link_h2::after {
	background-image: url(/wp-content/themes/biz-vektor-child/images/top/title_bottom_kon.svg);
}

/* -------------------------------------------------------------------------- */
/* 見出しメイン文字 */
/* -------------------------------------------------------------------------- */
.news_h2 h2, .destination_h2 h2, .recommend_h2 h2, .link_h2 h2 {
	position: relative;
	font-weight: 600;
	font-weight: 500;
	font-size: 2.625em;
}

/* -------------------------------------------------------------------------- */
/* 見出し英字 */
/* -------------------------------------------------------------------------- */
.news_h2 h2::after, .destination_h2 h2::after, .recommend_h2 h2::after, .link_h2 h2::after {
	font-size: calc(1.5em/2.625);
	display: block;
	margin: 1em 0 0;
}
.news_h2 h2::after {
	content: 'News';
}
.destination_h2 h2::after {
	content: 'Destination';
}
.recommend_h2 h2::after {
	content: 'Recommend';
}
.link_h2 h2::after {
	content: 'Link';
}




/* ========================================================================== */
/* お知らせ */
/* ========================================================================== */
/* -------------------------------------------------------------------------- */
/* レイアウト */
/* -------------------------------------------------------------------------- */
.news_area {
	margin: 0;
	padding: 5em 1em 5em;
	background-color: #f0efec;
}
.news_inner {
	width: 1100px;
	max-width: 100%;
	margin: 0 auto;
}




/* -------------------------------------------------------------------------- */
/* タブ切り替え */
/* -------------------------------------------------------------------------- */
/* タブ全体の枠組み */
.news-tabs {
	position: relative;
	display: flex;
	list-style: none;
	margin: 0 auto 1em;
	padding: 0;
	font-size: 1.125em;
	max-width: 700px;
}
.news-tabs::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 100vw;
	height: 1px;
	background-color: #00163c;
}

/* 各タブの文字部分 */
.tab-item {
	
    appearance: none;
    background: transparent;
    border: none;
    
    flex: 1;
    text-align: center;
    padding: 1em 0;
    cursor: pointer;
    color: #555;
    transition: color 0.3s;
}

/* アクティブなタブは少し文字を強調 */
.tab-item.is-active {
    font-weight: bold;
    color: #111;
}

/* スライドする太い下線 */
.tab-line {
    position: absolute;
    bottom: -1px; /* グレーのborder-bottomの上にぴったり重ねる */
    left: 0;
    height: 3px; /* 線の太さ */
    background-color: #00163c; /* 画像に合わせた濃いネイビー */
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1); /* なめらかに追従するアニメーション */
    z-index: 1;
}

/* --- コンテンツの切り替えスタイル --- */
.news-panel {
    display: none;
    /* フワッと表示させるアニメーション */
    animation: fadeIn 0.4s ease;
}
.news-panel.is-active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}


/* アウトライン（フォーカス時の枠線）の視認性を確保 */
.tab-item:focus-visible {
    outline: 2px solid #00163c;
    outline-offset: -2px;
}

/* -------------------------------------------------------------------------- */
/* タブ内コンテンツ */
/* -------------------------------------------------------------------------- */
.news-content-wrapper {
	text-align: left;
}
.news-content-wrapper ul li {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 0.25em 0;
	margin: 0em 0;
	padding: 1.125em 0;
	background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="7" height="1"><rect x="0" y="0" width="1" height="1" fill="%23333333"/></svg>');
	background-repeat: repeat-x;
	background-position: left bottom;
	background-size: 7px 1px;
}
.news-content-wrapper ul li span.news-date {
	flex: 0 0 8em;
}
.news-content-wrapper ul li span.news-category {
	flex: 0 0 auto;
}

.news-content-wrapper ul li span.news-category.news a {
	background-image: linear-gradient(180deg, #1C4768 0%, #0C2F5D 50%, #4F7595 100%);
}
.news-content-wrapper ul li span.news-category.event a {
	background-image: linear-gradient(180deg, #AC2D1E 0%, #A22512 50%, #D95A48 100%);
}
.news-content-wrapper ul li span.news-category a {
	padding: 0.125em 0.5em;
	display: inline-flex;
	color: #fff;
	text-decoration: none;
	position: relative;
	z-index: 1;
    transition: color 0.3s;
}
.news-content-wrapper ul li span.news-category a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #fff;
	box-shadow: inset 0 0 0 1px #333333;
	z-index: -1;
	opacity: 0;
	transition: opacity 0.3s;
}
.news-content-wrapper ul li span.news-category a:hover {
	color: #333 !important;
	text-decoration: none !important;
}
.news-content-wrapper ul li span.news-category a:hover::before {
	opacity: 1;
}
.news-content-wrapper ul li a.news-title {
	flex: 1 0 100%;
	text-decoration: none;
}

/* -------------------------------------------------------------------------- */
/* 一覧リンク */
/* -------------------------------------------------------------------------- */
.btn_category_link {
	text-align: right;
	margin: 2em 0;
}
.btn_category_link a {
    position: relative;
    display: inline-block;
    padding: 0.75em 1.5em;
    background-image: linear-gradient(180deg, #1C4768 0%, #0C2F5D 50%, #4F7595 100%);
    color: #fff;
    text-decoration: none;
    z-index: 1;
    transition: color 0.3s;
}

.btn_category_link a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    box-shadow: inset 0 0 0 1px #333333;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.btn_category_link a:hover {
    color: #222 !important;
	text-decoration: none !important;
}

.btn_category_link a:hover::before {
    opacity: 1;
}



/* ========================================================================== */
/* 観光スポット */
/* ========================================================================== */
/* -------------------------------------------------------------------------- */
/* レイアウト */
/* -------------------------------------------------------------------------- */
.destination_area {
	margin: 0;
	padding: 5em 1em 8em;
	background-color: #fff;
	border-top: 7px solid #001843;
	position: relative;
}
.destination_area_inner {
	width: 1100px;
	max-width: 100%;
	margin: 0 auto;
	position: relative;
}



/* -------------------------------------------------------------------------- */
/* 4つ並びコンテンツ */
/* -------------------------------------------------------------------------- */
.destination_contents {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em;
	position: relative;
	isolation: isolate;

	/* ▼追加：ウィンドウの縦幅が縮んだら、全体の横幅も縮ませる */
	width: 100%;
	max-width: 150vh; /* この数値を調整して、縮み始めるタイミングを決めます */
	margin: 0 auto;   /* 縮んだ際に中央に配置するため */
}
.destination_contents::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	background-image: url(/wp-content/themes/biz-vektor-child/images/top/bg_matsu.webp);
	background-size: cover;
	display: block;
	width: 100vw;
	height: 80%;
	transform: translate(-50%, -50%);
	z-index: -1;
}

.destination_contents > div {
    min-width: 0;
    position: relative;
}

/* 1枚目と4枚目（幅が広い方） */
.destination_contents > div:nth-child(1), 
.destination_contents > div:nth-child(4) {
    flex: 0 0 calc((100% - 0.5em) * 660 / 1090);
    aspect-ratio: 660 / 320; /* 実際の画像の比率に合わせる */
}

/* 2枚目と3枚目（幅が狭い方） */
.destination_contents > div:nth-child(2), 
.destination_contents > div:nth-child(3) {
    flex: 0 0 calc((100% - 0.5em) * 430 / 1090);
    aspect-ratio: 430 / 320; /* 正方形に近い比率にするなど */
}

.destination_contents > div a {
	position: relative;
	display: block;
	width: 100%;
    height: 100%; /* max-heightで縮んだ際に高さを合わせる */
    overflow: hidden; /* トリミングをきれいに行うための保険 */
}
.destination_contents > div a::before {
	content: '';
	background-color: #000a;
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	opacity: 0;
	transition: 0.3s;
}
.destination_contents > div a:hover::before {
	opacity: 1;
}
.destination_contents > div span {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	/* background-color: #000a; */
	opacity: 0;
	color: #fff;
	padding: 50px 0 0;
	font-size: 1.25em;
	border: 1px solid #fff;
	padding: 1.25em 3em;
	margin: 0 auto;
	transform: translate(-50%, -50%);
	z-index: 2;
	transition: 0.3s;
	white-space: nowrap;
}
.destination_contents > div a:hover span {
	opacity: 1;
}
/* 画像が親要素いっぱいに広がるようにする */
.destination_contents > div img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 隙間を作らないためにcover推奨 */
}



/* -------------------------------------------------------------------------- */
/* 菊松くん */
/* -------------------------------------------------------------------------- */
.destination_area::before {
	content: '';
	position: absolute;
	top: 7em;
	left: 3em;
	background-image: url(/wp-content/themes/biz-vektor-child/images/top/kikumatsu_kun_g.svg);
	background-size: cover;
	width: calc(246px*0.7);
	height: calc(295px*0.7);
	z-index: 1;
	transform-origin: bottom center;
	animation: charaAction 8s ease-in-out infinite;
	/* 左下をL字にカットするクリップパス */
	clip-path: polygon(
		0% 0%,        /* 左上 */
		100% 0%,      /* 右上 */
		100% 100%,    /* 右下 */
		48% 100%,     /* 名前枠の右端（足の左側）*/
		48% 82%,      /* 名前枠の上端高さ */
		0% 82%        /* 左端（名前枠の上） */
	);
}

/* ▼ 揺れ ⇒ ジャンプのアニメーション ▼ */
@keyframes charaAction {
    /* 0% 〜 60%：まっすぐ静止（待機時間） */
    0%, 50%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    
    /* 65% 〜 75%：左右にコテン、コテンと揺れる */
    55% {
        transform: translateY(0) rotate(3deg); /* 右に傾く */
    }
    60% {
        transform: translateY(0) rotate(-3deg); /* 左に傾く */
    }
    65% {
        transform: translateY(0) rotate(0deg); /* 一旦まっすぐに戻る */
    }
    
    /* 80% 〜 90%：真上にジャンプして着地 */
    80% {
        transform: translateY(0) rotate(0deg); /* ジャンプ直前のタメ（静止） */
    }
    85% {
        transform: translateY(-15px) rotate(0deg); /* 上へ40pxピョーンと跳ねる */
    }
    90% {
        transform: translateY(0) rotate(0deg); /* トンッと着地 */
    }
}
.destination_area::after {
	content: '';
	position: absolute;
	top: 4em;
	left: 1em;
	background-image: url(/wp-content/themes/biz-vektor-child/images/top/kikumatsu_kun_g.svg);
	background-size: cover;
	width: calc(246px * 0.9);
	height: calc(289px * 0.9);
	z-index: 1;
	clip-path: polygon(15% 90%, 45% 90%, 45% 100%, 15% 100%);
}







/* ========================================================================== */
/* おすすめ情報 */
/* ========================================================================== */
/* -------------------------------------------------------------------------- */
/* レイアウト */
/* -------------------------------------------------------------------------- */
.recommend_area {
	margin: 0;
	padding: 5em 1em;
	background-image: url(/wp-content/themes/biz-vektor-child/images/top/bg_osusume.svg);
	background-color: #f0efec;
	border-top: 10px solid #B9965F;
	border-bottom: 10px solid #B9965F;
}
.recommend_area_inner {
	width: 1100px;
	max-width: 100%;
	margin: 0 auto;
	padding: 0;
}



/* -------------------------------------------------------------------------- */
/* 常設エリア */
/* -------------------------------------------------------------------------- */
.recommend_contents {
	display: flex;
	gap: 5em;
	margin: 6em 0 10em;
}
.recommend_contents > div {
	min-width: 0;
	position: relative;
	isolation: isolate;
}
.recommend_contents > div::before {
	content: '';
	position: absolute;
	top: -0.5em;
	left: -0.5em;
	display: block;
	width: 100%;
	height: 100%;
	border: 1px solid #333;
	z-index: -1;
}
.recommend_contents > div::after {
	content: '';
	position: absolute;
	top: 0.5em;
	left: 0.5em;
	display: block;
	width: 100%;
	height: 100%;
	border: 1px solid #333;
	z-index: -1;
}
.recommend_contents > div a {
	position: relative;
	display: block;
	overflow: visible;
}
.recommend_contents > div a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	vertical-align: bottom;
}
.recommend_contents > div a span {
	position: absolute;
	left: -2em;
	bottom: -1.5em;
	z-index: 1;
	display: block;
	max-width: 100%;
	padding: 1.2em 0.75em;
	background-color: #fffc;
	width: 10em;
	text-align: left;
	border-left: 10px solid #001843;
	font-size: 1.5em;
	font-weight: 600;
	font-weight: 500;
}

/* -------------------------------------------------------------------------- */
/* ピックアップエリア */
/* -------------------------------------------------------------------------- */
.recommend_h3 {
	margin: 5em 0;
}
.recommend_h3 h3 {
	font-size: 1.75em;
	position: relative;
	font-weight: 600;
}
.recommend_h3 h3::after {
	content: '';
	position: absolute;
	top: auto;
	left: 50%;
	bottom: -1.2em;
	background-image: url(/wp-content/themes/biz-vektor-child/images/top/title_sub_bottom.png);
	width: 138px;
	height: 12px;
	transform: translateX(-50%);
	background-repeat: no-repeat;
}
.pickup_1 {
	display: flex;
	justify-content: space-between;
	gap: 1em;
	margin: 3em 0;
}
.pickup_contents img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	vertical-align: bottom;
}
.pickup_1 div a {
	position: relative;
}
.pickup_1 div a span {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 0.5em;
	background-color: #000a;
	color: #fff;
}
.pickup_2 {
	display: flex;
	justify-content: space-between;
	gap: 1em;
	margin: 3em 0;
}




/* ========================================================================== */
/* パララックス */
/* ========================================================================== */
/* -------------------------------------------------------------------------- */
/* 上アニメーション */
/* -------------------------------------------------------------------------- */
.top_animation {
	width: 100%;
	height: 100px;
	background-image: url(/wp-content/themes/biz-vektor-child/images/top/nihonmastu-txt.png);
	background-repeat: repeat-x;
	background-position: 0 center;
	animation: scrollRight 8s linear infinite;
	background-color: #fff;
}

/* ▼ アニメーションの定義 ▼ */
@keyframes scrollRight {
    from {
        background-position-x: 0;
    }
    to {
        /* 画像の幅（246px）分だけ右へ移動させる */
        background-position-x: 575px;
    }
}

/* -------------------------------------------------------------------------- */
/* パララックス（Safari対応版） */
/* -------------------------------------------------------------------------- */
.parallax_area {
    position: relative;
    /* もしparallax_area_innerより外に背景を出したくない場合は適宜 overflow: hidden; を追加してください */
}

/* 元の背景指定を削除し、コンテナの高さのみ確保 */
.parallax_main {
    height: 400px;
    position: relative;
	clip-path: inset(0);
}

/* 疑似要素で背景画像を画面全体に固定表示して最背面に置く */
.parallax_main::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100lvh;
    background-image: url(/wp-content/themes/biz-vektor-child/images/top/bg_matsu.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1; /* 最背面に配置 */
    will-change: transform; /* スクロール時のガタつきを軽減 */
	pointer-events: none;
	opacity: 0.7;
}
.parallax_main::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100lvh;
    background-image: url(/wp-content/themes/biz-vektor-child/images/top/bg_kikumatsu.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1; /* 最背面に配置 */
    will-change: transform; /* スクロール時のガタつきを軽減 */
	pointer-events: none;
}

/* -------------------------------------------------------------------------- */
/* 下アニメーション */
/* -------------------------------------------------------------------------- */
.bottom_animation {
	width: 100%;
	height: 100px;
	background-image: url(/wp-content/themes/biz-vektor-child/images/top/nihonmastu-txt.png);
	background-repeat: repeat-x;
	background-position: 0 center;
	animation: scrollLeft 8s linear infinite;
	background-color: #fff;
	margin: 0 0 -1px;
}

/* ▼ アニメーションの定義 ▼ */
@keyframes scrollLeft {
    from {
        background-position-x: 0;
    }
    to {
        /* 画像の幅（246px）分だけ右へ移動させる */
        background-position-x: -575px;
    }
}

   



/* ========================================================================== */
/* 関連リンク */
/* ========================================================================== */
/* -------------------------------------------------------------------------- */
/* レイアウト */
/* -------------------------------------------------------------------------- */
.link_area {
	margin: 0;
	padding: 3em 1em 8em;
	background-color: #fff;
	border-top: 9px solid #102043;
}
.link_area_inner {
	width: 1100px;
	max-width: 100%;
	margin: 0 auto;
	position: relative;
}



 /* バナーを囲む親要素 */
.link_contents {
    display: grid;
    /* 1fr（同じ幅）の列を5つ作るという指定 */
    grid-template-columns: repeat(5, 1fr); 
    gap: 1em; /* バナー同士の縦横の隙間 */
}

/* 中のリンクと画像の設定 */
.link_contents a {
    display: block; /* リンクエリアを画像全体に広げる */
}

.link_contents a img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); /* お好みで少し影をつけるとバナーっぽくなります */
}

/* ▼ スマホサイズの時は2列（または3列）にするレスポンシブ対応 ▼ */




  



/* ========================================================================== */
/* フッター */
/* ========================================================================== */
/* -------------------------------------------------------------------------- */
/* レイアウト */
/* -------------------------------------------------------------------------- */
#footer {
	margin: 0;
	padding: 3em;
	display: block;
	background-color: transparent;
	background-image: url(/wp-content/themes/biz-vektor-child/images/top/footer_bg.webp);
	background-position: 100% 80%;
	background-size: cover;
	color: #222;
	font-weight: 500;
	font-weight: 400;
}
#footerInner {
	width: 100%;
	margin: 0;
	padding: 5em 3em 2em;
	background-color: #fffd;
}
.footer_inner_box {
	width: 1100px;
	max-width: 100%;
	margin: 0 auto;
	display: flex;
	gap: 1em;
	flex-wrap: wrap;
	justify-content: space-between;
}

/* -------------------------------------------------------------------------- */
/* 連絡先エリア */
/* -------------------------------------------------------------------------- */
.footer_left {
	flex: 0 1 calc(45% - 1em);
}
.footer_title_area {
	display: flex;
	font-size: 1.75em;
	justify-content: space-between;
	align-items: center;
	margin: 0 0 0.75em;
	border-bottom: 1px solid #333;
	padding: 0 0 0.5em;
}
.footer_sns {
	display: flex;
	gap: 0.5em;
}
.contact_info {
	font-size: 1.25em;
}
.contact_info > div {
	margin: 0.5em 0;
	padding: 0 0 0 1.5em;
	position: relative;
}
.contact_info > div.tel::before {
	content: '';
	position: absolute;
	left: 0;
	top: calc(50% - 20px / 2);
	background-image: url(/wp-content/themes/biz-vektor-child/images/top/phone.svg);
	width: 20px;
	height: 20px;
}
.contact_info > div.fax::before {
	content: '';
	position: absolute;
	left: 0;
	top: calc(50% - 20px / 2);
	background-image: url(/wp-content/themes/biz-vektor-child/images/top/fax.svg);
	width: 20px;
	height: 20px;
}
.contact_info > div.adress {
	margin: 1em 0 0;
}



/* -------------------------------------------------------------------------- */
/* お問合せボタン */
/* -------------------------------------------------------------------------- */
.footer_right {
	flex: 0 1 calc(45% - 1em);
	display: flex;
	justify-content: right;
}
.btn_form {
	display: flex;
	width: 350px;
	max-width: 100%;
	height: 150px;
	max-height: 100%;
	/* 枠線(1px) + 隙間(5px) の合計6px分の余白を親に持たせ、見切れを防ぐ */
	padding: 6px; 
	box-sizing: border-box;
}

.btn_form a {
	/* aタグをブロック/フレックス化して親の領域いっぱいに広げる */
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 1.5em;
	background-image: linear-gradient(180deg, #1C4768 0%, #0C2F5D 50%, #4F7595 100%);
	border-radius: 10px; /* 内側の角丸 */
	color: #fff;
	position: relative;
	box-sizing: border-box;
	text-decoration: none;
	overflow: visible;
	z-index: 1;
	transition: color 0.3s;
}

.btn_form a::after {
	content: '';
	position: absolute;
	/* aタグの外側に隙間5px + 枠線1px = 6px 分広げる */
	top: -6px;
	left: -6px;
	display: block;
	width: calc(100% + 12px);
	height: calc(100% + 12px);
	border: 1px solid #001843;
	border-radius: 10px; 
	box-sizing: border-box;
	pointer-events: none; 
}

.btn_form a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #fff;
	box-shadow: inset 0 0 0 1px #333333;
	z-index: -1;
	opacity: 0;
	transition: opacity 0.3s;
	border-radius: 10px;
}
.btn_form a:hover {
	color: #333 !important;
	text-decoration: none !important;
}
.btn_form a:hover::before {
	opacity: 1;
}
.news-content-wrapper ul li a.news-title {
	flex: 1 0 100%;
	text-decoration: none;
}
.btn_form a span:nth-child(2) {
	display: block;
	margin: 0.75em 0 0;
	padding: 0 0 0 1em;
	font-size: 1.375em;
	position: relative;
}
.btn_form a span:nth-child(2)::before {
    content: '';
    position: absolute;
    left: -0.5em;
    top: calc(50% - 20px / 2);
    background-image: url(/wp-content/themes/biz-vektor-child/images/top/footer_mail.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 24px;
    height: 20px;
}
.btn_form a span:nth-child(2)::after {
    content: '';
    position: absolute;
    left: -0.5em; 
    top: calc(50% - 20px / 2);
    background-image: url(/wp-content/themes/biz-vektor-child/images/top/footer_mail_b.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 24px;
    height: 20px;
    opacity: 0; 
    transition: opacity 0.3s ease; 
}
.btn_form a:hover span:nth-child(2)::after {
    opacity: 1;
}


/* -------------------------------------------------------------------------- */
/* スペシャルリンク */
/* -------------------------------------------------------------------------- */
.bnr_special_link {
	display: block;
	max-width: 90%;
	position: fixed;
	left: 1em;
	bottom: 1em;
	z-index: 998;
	padding: 0.25em;
	border: 1px solid #000;
	background-color: #fff;
	box-shadow: 0 0px 5px rgba(0,0,0,0.5);
}
.bnr_special_link img {
	width: 280px;
	max-width: 100%;
}
.btn_close {
	display: block;
	width: 30px;
	height: 30px;
	background-color: #00163c;
	border-radius: 50%;
	position: absolute;
	top: -0.75em;
	right: -0.75em;
	cursor: pointer;
}
.btn_close::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 3px;
	background-color: #fff;
	transform: translate(-50%, -50%) rotate(45deg);
}
.btn_close::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 3px;
	background-color: #fff;
	transform: translate(-50%, -50%) rotate(-45deg);
}



/* -------------------------------------------------------------------------- */
/* フッターメニュー */
/* -------------------------------------------------------------------------- */
#footer-menu {
	flex: 0 1 100%;
	display: flex;
	justify-content: center;
	gap: 2em;
	text-align: center;
	font-size: 1em;
	margin: 3em 0 0;
}
#footer-menu a {
	color: #333;
	position: relative;
	padding: 0 0 0 1.5em;
}
#footer-menu a::before {
	content: '';
	position: absolute;
	top: calc(50% - 1px / 2);
	top: 50%;
	left: 0;
	width: 1em;
	height: 1px !important;
	background-color: #333;
}
#footer-menu a:hover::before {
	background-color: #cd960f;
}

/* -------------------------------------------------------------------------- */
/* コピーライト */
/* -------------------------------------------------------------------------- */
#siteBottom {
	background-color: #001843;
	color: #fff;
	padding: 0.25em 0;
	font-size: 0.875em;
}
#siteBottomInner {
	text-align: center;
	max-width: 100%;
}

/* -------------------------------------------------------------------------- */
/* トップへ戻るボタン */
/* -------------------------------------------------------------------------- */
#back-top_new #pagetop_new {
	width: 100px;
	height: 126px;
}
#back-top_new {
    position: fixed; /* 画面に固定 */
    bottom: 1.25em;    /* 下からの距離 */
    right: 1.25em;     /* 右からの距離 */
    z-index: 9999;   /* 最前面へ */
}



/* ========================================================================== */
/* メディアクエリここから */
/* ========================================================================== */

/* -------------------------------------------------------------------------- */
/* 1500px以下ここから */
/* -------------------------------------------------------------------------- */
@media all and (max-width: 1500px){

	/**/
	/* 見出しwrap要素 */
	/**/
	.news_h2, .destination_h2, .recommend_h2, .link_h2 {
		margin: 6.5em 0 2.5em;
	}

	/**/
	/* 見出し上画像 */
	/**/
	.news_h2::before, .destination_h2::before, .recommend_h2::before, .link_h2::before {
		top: -50%;
		width: calc(300px * 0.5);
		height: calc(41px * 0.5);
	}

	/**/
	/* 見出し下画像 */
	/**/
	.news_h2::after, .destination_h2::after, .recommend_h2::after, .link_h2::after {
		bottom: -55%;
		width: calc(300px * 0.55);
		height: calc(51px * 0.55);
	}
	.news_h2::after, .recommend_h2::after {
		background-image: url(/wp-content/themes/biz-vektor-child/images/top/title_bottom_red.svg);
	}
	.destination_h2::after, .link_h2::after {
		background-image: url(/wp-content/themes/biz-vektor-child/images/top/title_bottom_kon.svg);
	}

	/**/
	/* 見出しメイン文字 */
	/**/
	.news_h2 h2, .destination_h2 h2, .recommend_h2 h2, .link_h2 h2 {
		position: relative;
		font-weight: 600;
		font-size: 1.8em;
	}

	/**/
	/* 見出し英字 */
	/**/
	.news_h2 h2::after, .destination_h2 h2::after, .recommend_h2 h2::after, .link_h2 h2::after {
		font-size: calc(1.5em/1.8);
		margin: 0.5em 0 0;
	}


	
	/**/
	/* スライドショー */
	/**/
	.mainvisual_mainarea {
		max-width: calc(100% - 220px);
	}
	.fukushima_dc_txt {
		width: 600px;
		font-size: 2em;
	}
	.main_slide::after {
		width: calc(368px * 0.5);
		height: calc(290px * 0.5);
	}

	/**/
	/* サイドバー */
	/**/
	.mainvisual_sidebar {
		flex: 0 0 220px;
		padding: 0 0.5em;
		background-color: #F0EFEC;
	}
	form#searchform input#s {
		width: 130px;
	}
	#searchform div input {
		height: 30px;
	}
	#searchsubmit {
		width: 30px !important;
		background-size: 20px auto, cover;
	}
	.header_sns {
		width: 160px;
		font-size: 0.9em;
	}
	.header_sns > div.instagram > div:nth-child(1)::before {
		left: 0;
	}

	/**/
	/* ナビゲーション */
	/**/
	.navigation li a, .navigation a:link, .navigation a:visited {
		padding: 1em;
		font-size: 1em;
	}
	.language-dropdown > summary {
		font-size: 0.8em;
	}


	/**/
	/* 新着情報 */
	/**/
	.news-tabs {
		margin: 0 auto 0.5em;
	}
	.news-content-wrapper ul li span.news-date {
		font-size: 0.9em;
	}
	.news-content-wrapper ul li span.news-category a {
		font-size: 0.875em;
		padding: 0em 0.5em;
	}
	.news-content-wrapper ul li {
		gap: 0.125em 0;
		padding: 0.825em 0;
		background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="7" height="1"><rect x="0" y="0" width="1" height="1" fill="%23333333"/></svg>');
		background-repeat: repeat-x;
		background-position: left bottom;
		background-size: 7px 1px;
	}
	.btn_category_link {
		margin: 1em 0;
	}
	.btn_category_link a {
		padding: 0.65em 1.5em;
	}


	/**/
	/* 観光スポット */
	/**/
	.destination_contents {
		margin: 5em auto 0;
	}


}
/* -------------------------------------------------------------------------- */
/* 1500px以下ここまで */
/* -------------------------------------------------------------------------- */



/* -------------------------------------------------------------------------- */
/* 1200px以下ここから */
/* -------------------------------------------------------------------------- */
@media all and (max-width: 1200px){
	/**/
	/* スライドショー */
	/**/
	.mainvisual_mainarea {
		max-width: calc(100% - 200px);
	}

	/**/
	/* サイドバー */
	/**/
	.mainvisual_sidebar {
		flex: 0 0 200px;
		padding: 0 0.5em;
		background-color: #F0EFEC;
	}
	.header_sns {
		width: 140px;
		font-size: 0.9em;
	}

	/**/
	/* グローバルナビゲーション */
	/**/
	.navigation li a, .navigation a:link, .navigation a:visited {
		padding: 0.8em;
		font-size: 1em;
	}
	
	/**/
	/* 新着情報 */
	/**/
	.news_inner {
		width: 900px;
		max-width: 100%;
		margin: 0 auto;
	}

	/**/
	/* おすすめ情報 */
	/**/
	.recommend_contents {
		display: flex;
		gap: 3.5em;
		margin: 10em 0 10em;
	}
	.recommend_contents > div a span {
		left: 0em;
	}

	/**/
	/* フッター */
	/**/
	#footer {
		padding: 2em;
	}
	#footerInner {
		padding: 2.5em 2em 2em;
	}
	.footer_left {
		flex: 0 1 calc(50% - 1em);
	}
	.footer_title_area {
		font-size: 1.5em;
	}
	.btn_form {
		width: 300px;
	}
	.footer_sns img {
		max-width: 28px;
	}
	.contact_info {
		font-size: 1em;
		display: flex;
		gap: 2em;
	}
	.adress {
		margin: 0.5em 0 0;
	}
	#footer-menu {
		margin: 1em 0 0;
	}


}
/* -------------------------------------------------------------------------- */
/* 1200px以下ここまで */
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/* 991px以下ここから */
/* -------------------------------------------------------------------------- */
@media all and (max-width: 991px) {
	/**/
	/* スライドショー */
	/**/
	#mainvisual {
		padding-top: 80px;
		background-color: #fff;
	}
	.fukushima_dc_txt {
		width: 600px;
		font-size: 2em;
	}
	.main_slide::after {
		width: calc(368px * 0.45);
		height: calc(290px * 0.45);
	}

	/**/
	/* サイドバー */
	/**/
	.mainvisual_sidebar {
		flex: 0;
		padding: 0;
		background-color: #F0EFEC;
		display: none;
	}


	/**/
	/* サイトロゴ */
	/**/
	.sp_logo {
		position: fixed;
		z-index: 999;
		display: flex;
		justify-content: left;
		align-items: center;
		width: 100%;
		height: 80px;
		padding: 0 1em;
	}
	.sp_logo::before {
		content: '';
		background-color: #f0efec;
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		z-index: -1;
		opacity: 0.9;
	}
	.sp_logo picture {
		display: block;
		width: 300px;
		height: auto;
		text-align: left;
	}
	.sp_logo #site-title a img {
		max-width: 280px;
	}

	/**/
	/* グローバルナビゲーション */
	/**/
	.nav-toggle-label {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed; /* スクロールしても常に表示 */
        top: 15px;
        right: 15px; /* 右上に配置 */
        width: 50px;
        height: 50px;
        background-color: #001843; /* ボタンの背景色 */
        border-radius: 5px;
        cursor: pointer;
        z-index: 9999; /* 一番手前に表示 */
    }

    /* ハンバーガーの3本線 */
    .nav-toggle-label span {
        display: block;
        width: 26px;
        height: 2px;
        background-color: #fff;
        margin: 4px 0;
        transition: all 0.3s ease;
    }

    /* ③ チェック（タップ）されたらボタンを「×」に変形させるアニメーション */
    .nav-toggle-checkbox:checked ~ .nav-toggle-label span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }
    .nav-toggle-checkbox:checked ~ .nav-toggle-label span:nth-child(2) {
        opacity: 0;
		border-color: #001843;
		width: 0;
    }
    .nav-toggle-checkbox:checked ~ .nav-toggle-label span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    /* ④ メニュー本体（左に隠しておく） */
    .main_menu {
        position: fixed;
        top: 0;
        left: -100%; /* 画面の左外に配置して隠す */
        width: 80%; /* スマホ画面の80%の幅 */
        max-width: 320px;
        height: 100vh; /* 画面いっぱいの高さ */
        flex-direction: column; /* 要素を縦並びに */
        align-items: flex-start;
        justify-content: flex-start;
        background-color: #001843; /* メニューの背景色 */
        padding: 3em 1.25em 1.25em;
        transition: left 0.3s cubic-bezier(0.25, 1, 0.5, 1); /* スライドのアニメーション */
        z-index: 9998; /* ボタンの1つ下に */
        overflow-y: auto; /* メニューが長い場合はスクロール可能に */
    }

    /* ⑤ チェック（タップ）されたら左からスライドイン */
    .nav-toggle-checkbox:checked ~ .main_menu {
        left: 0;
    }

    /* ⑥ スマホ内のナビゲーションリストを縦並びに調整 */
    .navigation {
        width: 100%;
    }
    .navigation ul {
        flex-direction: column; /* 縦並び */
        justify-content: flex-start;
    }
    .navigation li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* 区切り線 */
    }
    .navigation li a {
        padding: 1.2em 0.5em; /* タップしやすいように余白を調整 */
    }

    /* スマホでのサブメニュー表示（常に表示させておき、階層をインデントで表現） */
    .navigation ul.sub-menu {
        position: static; /* 浮かせるのをやめる */
        display: block; /* 常に表示 */
        transform: none;
        width: 100%;
        background: rgba(0,0,0,0.2);
        box-shadow: none;
    }
    .navigation .sub-menu li a {
        padding: 1em 1em 1em 2em; /* サブメニューだとわかるように少し右にずらす */
        border: none;
        background: transparent;
    }
    
    /* PC用で設定したサブメニュー展開時の「親クリック無効化」をスマホでは解除 */
    .navigation li a:has(+ ul.sub-menu) {
        pointer-events: auto;
    }

    /* 翻訳ボタンの位置調整 */
    .language-dropdown-wrapper {
        margin-top: 2em;
        padding: 0;
        width: 100%;
    }
    .language-dropdown > summary + ul {
        position: static; /* 浮かせるのをやめて下にそのまま展開させる */
        margin-top: 1em;
    }

	/* --- ① オーバーレイの設定 --- */
    .nav-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6); /* 半透明のグレー */
        z-index: 9997; /* メニュー(9998)の1つ下 */
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    /* メニュー展開時にオーバーレイをフワッと表示 */
    .nav-toggle-checkbox:checked ~ .nav-overlay {
        opacity: 1;
        visibility: visible;
    }

    /* --- ② サブメニューのアコーディオン設定 --- */
    .navigation li {
        position: relative; /* プラスボタンの絶対配置の基準にするため追加 */
    }

    /* JSで自動追加される「＋」ボタンのスタイル */
    .submenu-toggle {
        position: absolute;
        top: 0;
        right: 0;
        width: 50px;
        /* aタグのpaddingに合わせて高さを調整（おおよそこれくらいで合うはずです） */
        height: 50px; 
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
        font-size: 1.5em;
        cursor: pointer;
        z-index: 2;
        border-left: 1px solid rgba(255, 255, 255, 0.2); /* 左側にうっすら線を入れる */
    }

    /* 前回の .navigation ul.sub-menu の display: block; を none; に変更します */
    .navigation ul.sub-menu {
        position: static;
        display: none; /* 最初は隠しておく */
        transform: none;
        width: 100%;
        background: rgba(0,0,0,0.2);
        box-shadow: none;
    }

    /* JSで .is-open クラスが付与されたら表示する */
    .navigation ul.sub-menu.is-open {
        display: block;
        animation: fadeIn 0.3s ease; /* フワッと表示させる */
    }

	/* PC用のホバー展開をスマホでは無効化する */
    .navigation li:hover > .sub-menu {
        display: none;
    }

    /* JSで .is-open が付与された時「だけ」表示するように強制する */
    .navigation li > .sub-menu.is-open,
    .navigation li:hover > .sub-menu.is-open {
        display: block;
    }

	.navigation li a, .navigation a:link, .navigation a:visited {
		padding: 0.8em;
		text-align: left;
		font-size: 0.95em;
		display: flex;
		flex-wrap: nowrap;
		align-items: baseline;
	}
	.navigation > ul > li > a > span {
		padding: 0 0 0 0.75em;
		font-size: calc(1em / 1.125 * 0.9);
	}
	.search {
		margin: 1em 0 0;
	}
	.header_sns {
		width: 250px;
		margin: 1em auto;
	}
	.header_sns a {
		color: #fff;
	}
	.header_sns > div.twitter_x::before {
		filter: drop-shadow(0 0 1px rgba(255, 255, 255, 1)) drop-shadow(0 0 1px rgba(255, 255, 255, 1));
	}
	.instagram div {
		color: #fff;
	}
	.header_sns > div.instagram::before {
		display: none;
	}
	.header_sns > div.instagram > div:nth-child(1)::before {
		left: 3.5em;
	}
	.language-dropdown > summary {
		width: 250px;
	}

	form#searchform {
		padding: 1em;
    	border: none;
	}
	form#searchform input#s {
		width: 85% !important;
	}

	/**/
	/* スライドショー */
	/**/
	.mainvisual_mainarea {
		max-width: 100%;
	}
	
	/**/
	/* 各見出し */
	/**/
	.news_h2::before, .destination_h2::before, .recommend_h2::before, .link_h2::before {
		top: -50%;
		width: calc(300px * 0.5);
		height: calc(41px * 0.5);
	}
	.news_h2::after, .destination_h2::after, .recommend_h2::after, .link_h2::after {
		width: calc(300px * 0.55);
		height: calc(51px * 0.55);
		bottom: -50%;
	}
	.news_h2 h2, .destination_h2 h2, .recommend_h2 h2, .link_h2 h2 {
		font-size: 1.75em;
	}


	/**/
	/* お知らせ */
	/**/
	.news_area {
		margin: 0;
		padding: 3em 1em 5em;
	}
	.news_h2 {
		margin: 6em 0;
	}
	

	/**/
	/* 観光スポット */
	/**/
	.destination_area {
		margin: 0;
		padding: 1em 1em 8em;
	}
	.destination_area::before {
		top: 5em;
		left: 3em;
		width: calc(246px*0.6);
		height: calc(295px*0.6);
	}
	.destination_area::after {
		top: 0em;
	}

	

	/**/
	/* おすすめ情報 */
	/**/
	.recommend_area {
		padding: 3em 1em;
	}	
	.recommend_contents {
		margin: 10em 0 8em;
	}
	.recommend_contents > div a span {
		font-size: 1.25em;
	}

	/**/
	/* Pickup */
	/**/
	.pickup_1, .pickup_2 {
		flex-wrap: wrap;
		justify-content: center;
	}

	/**/
	/* パララックス */
	/**/
	.top_animation, .bottom_animation {
		background-size: 300px;
		height: 60px;
	}
	.parallax_main {
		height: 300px;
	}

	/**/
	/* 関連リンク */
	/**/
	.link_area {
		padding: 1em 1em 7em;
	}
	.link_contents {
		grid-template-columns: repeat(4, 1fr);
	}
	

}
/* -------------------------------------------------------------------------- */
/* 991px以下ここまで */
/* -------------------------------------------------------------------------- */




/* -------------------------------------------------------------------------- */
/* 767px以下ここから */
/* -------------------------------------------------------------------------- */
@media all and (max-width: 767px) {
    
	/**/
	/* スライドショー */
	/**/
	.slider-pro, .sp-slides-container, .sp-mask, .sp-slides, .sp-slide, .sp-image-container, .slider-pro img.sp-image {
		min-height: 600px !important;
	}
	.fukushima_dc_txt {
		width: 400px;
		font-size: 1.25em;
		max-width: 100%;
	}
	.main_slide::after {
		width: calc(368px * 0.35);
		height: calc(290px * 0.35);
	}

	/**/
	/* 観光スポット */
	/**/
	.destination_contents > div:nth-child(1), .destination_contents > div:nth-child(4) {
		flex: 100%;
	}
	.destination_contents > div:nth-child(2), .destination_contents > div:nth-child(3) {
		flex: calc(50% - 1em);
	}
	.destination_contents > div span {
		padding: 1.25em 2em;
	}

	/**/
	/* おすすめ情報 */
	/**/
	.recommend_contents {
		gap: 2em;
		margin: 10em 0 7em;
	}
	.recommend_contents > div a span {
		font-size: 1.125em;
	}

	/**/
	/* 関連リンク */
	/**/
	.link_contents {
        grid-template-columns: repeat(3, 1fr); /* スマホは2列に */
        gap: 10px; /* スマホは隙間を少し狭く */
    }
	
	/**/
	/* フッター */
	/**/
	.footer_left, .footer_right {
		flex: 100%;
	}
	.footer_right {
		justify-content: center;
	}
	.btn_form {
		height: 100px;
	}
	.btn_form a {
		padding: 0.5em;
	}
	.btn_form a span:nth-child(2) {
		font-size: 1.125em;
	}
}
/* -------------------------------------------------------------------------- */
/* 767px以下ここまで */
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/* 601px以上ここから */
/* -------------------------------------------------------------------------- */
@media all and (min-width:601px){
	body {
		line-height: 150%;
	}
}
/* -------------------------------------------------------------------------- */
/* 601px以上ここまで */
/* -------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */
/* 600px以下ここから */
/* -------------------------------------------------------------------------- */
@media all and (max-width: 600px) {


	/**/
	/* スライドショー */
	/**/
	.fukushima_dc_txt {
		width: 280px;
		font-size: 1em;
		max-width: 100%;
		line-height: 1.5;
	}
	.main_slide::after {
		width: calc(368px * 0.3);
		height: calc(290px * 0.3);
		right: 0.5em;
		bottom: 3em;
	}
	.sp-button {
		width: 15px;
		height: 15px;
	}
	.slide_nav_wrap > button {
		width: 18px;
		height: 18px;
	}
	.slide_nav_wrap > button.play-pause-btn::before, .slide_nav_wrap > button.play-pause-btn::after {
		width: 4px;
		height: 18px;
	}

	/**/
	/* 各見出し */
	/**/
	.news_h2 h2, .destination_h2 h2, .recommend_h2 h2, .link_h2 h2 {
		font-size: 1.5em;
	}
	.news_h2 h2::after, .destination_h2 h2::after, .recommend_h2 h2::after, .link_h2 h2::after {
		margin: 0.25em 0 0;
	}
	.news_h2::before, .destination_h2::before, .recommend_h2::before, .link_h2::before {
		top: -55%;
		left: 50%;
		width: calc(300px * 0.4);
  		height: calc(41px * 0.4);
	}
	.news_h2::after, .destination_h2::after, .recommend_h2::after, .link_h2::after {
		left: 50%;
		bottom: -55%;
		width: calc(300px * 0.425);
		height: calc(51px * 0.425);
	}


	


	/**/
	/* お知らせ */
	/**/
	.news_area {
		padding: 3em 1em 3em;
	}
	.news_h2 {
		margin: 3em 0;
	}
	
	/**/
	/* 観光スポット */
	/**/
	.destination_area {
		padding: 3em 1em 5em;
	}
	.destination_area::before {
		top: 3em;
		left: 2em;
		width: calc(246px*0.5);
		height: calc(295px*0.5);
	}
	.destination_area::after {
		top: -2em;
		left: -0.5em;
		width: calc(246px * 0.8);
		height: calc(289px * 0.8);
	}
	.destination_h2 {
		margin: 2.5em 0 4.5em;
	}
    .destination_contents > div:nth-child(n) {
    }
	.pickup_1 div {
		flex: 1 0 calc(50% - 1em);
		max-width: 50%;
	}
	.destination_contents > div span {
		font-size: 1em;
	}
	

	/**/
	/* おすすめ情報 */
	/**/
	.recommend_area {
		padding: 2em 1em;
	}
	.recommend_h2 {
		position: relative;
		margin: 3.5em 0 4.5em;
	}
	.recommend_contents {
		gap: 2em;
		margin: 4em 0 5em;
	}
	.recommend_contents > div a span {
		font-size: 1em;
	}
	.recommend_h3 {
		margin: 5em 0 3.5em;
	}
	.recommend_h3 h3 {
		font-size: 1.25em;
	}

	/**/
	/* 関連リンク */
	/**/
	.link_h2 {
		margin: 5em 0;
	}

	/**/
	/* トップへ戻るボタン */
	/**/
	#back-top_new {
		right: 0.5em;
		bottom: 0.5em;
	}
	#back-top_new #pagetop_new {
		width: calc(100px*0.65);
		height: calc(126px*0.65);
	}

	/**/
	/* フッター */
	/**/
	#footer-menu {
		display: grid;
		gap: 0.75em 2em;
	}
	#footer-menu a {
		text-align: left;
	}

	
}
/* -------------------------------------------------------------------------- */
/* 600px以下ここまで */
/* -------------------------------------------------------------------------- */





/* -------------------------------------------------------------------------- */
/* 480px以下ここから */
/* -------------------------------------------------------------------------- */
@media all and (max-width: 480px) {
	/**/
	/* ヘッダー */
	/**/
	.sp_logo #site-title a img {
		max-width: 250px;
	}

	/**/
	/* スライドショー */
	/**/
	.slider-pro, .sp-slides-container, .sp-mask, .sp-slides, .sp-slide, .sp-image-container, .slider-pro img.sp-image {
		min-height: 350px !important;
	}
	.main_slide::after {
		width: calc(368px * 0.20);
		height: calc(290px * 0.20);
		right: 0.5em;
		bottom: 3em;
	}
	.fukushima_dc_txt {
		width: 250px;
		font-size: 0.9em;
		background-size: contain;
	}

	/**/
	/* お知らせ */
	/**/
	.news_area {
		padding: 3em 1em;
	}
	.news-tabs {
		font-size: 1em;
		margin: 0 auto 1em;
	}
	.news-content-wrapper ul li {
		padding: 1em 0;
		gap: 0.25em 0;
	}
	.news-content-wrapper ul li span.news-date {
		font-size: 0.9em;
	}
	.news-content-wrapper ul li span.news-category a {
		font-size: 0.8em;
		padding: 0.125em 0.75em;
	}
	.btn_category_link a {
		font-size: 0.9em;
	}
	

	/**/
	/* 観光スポット */
	/**/
	.destination_area::before {
		top: 3em;
		left: 0.5em;
		width: calc(246px*0.4);
		height: calc(295px*0.4);
	}
	.destination_area::after {
		top: -2em;
		left: -1.5em;
		width: calc(246px * 0.7);
		height: calc(289px * 0.7);
	}
	.destination_contents > div span {
		padding: 1em;
		white-space: nowrap;
	}
	
	
	/**/
	/* おすすめ情報 */
	/**/
	.recommend_contents {
		gap: 5em;
		flex-wrap: wrap;
		justify-content: center;
		padding: 0 2.5em;
	}

	/**/
	/* 関連リンク */
	/**/
	.link_area {
		padding: 1em 1em 5em;
	}
	.link_contents {
		grid-template-columns: repeat(2, 1fr);
	}

	/**/
	/* フッター */
	/**/
	.footer_title_area {
		flex-wrap: wrap;
		gap: 0.5em;
	}
	.footer_title_area > div {
		flex: 1 0 100%;
	}
	.btn_form {
		width: auto;
		max-width: 100%;
	}
	.btn_form a {
		padding: 0.5em 1em;
	}
	.btn_form a span:nth-child(1) {
		font-size: 0.8em;
	}
	.btn_form a span:nth-child(2) {
		font-size: 1em;
		margin: 0.5em 0 0 0;;
		padding: 0 0 0 1.5em;
	}

	.bnr_special_link img {
		width: 250px;
		max-width: 100%;
	}

	#siteBottom #copy {
		font-size: 0.85em;
	}
	.contact_info {
		flex-wrap: wrap;
		gap: 0 2em;
	}
}
/* -------------------------------------------------------------------------- */
/* 480px以下ここまで */
/* -------------------------------------------------------------------------- */




