@charset "utf-8";

/*
Theme Name: Holiday_ver2
Theme URI: http://minimalwp.com/category/gallery/
Description: PC、タブレット、スマートフォンと見ているデバイスに自動最適化されるレスポンシブデザインに対応したミニマルでシンプルなWordPressテーマです。
Version: 20260423
Author: Minimal WP
Author URI: http://minimalwp.com
License: 
License URI:
Tags: custom-menu
Text Domain: minimalwp
*/


/* ***************************************************************** 
*	基本設定
* ***************************************************************** */

body {
font-family: "Hiragino Kaku Gothic ProN","游ゴシック",YuGothic,"メイリオ",Meiryo,sans-serif;
font-weight: 500;
font-size: 16px;
background: #fff;
color: #444;
line-height: 190%;
word-wrap:break-word;
overflow-wrap:break-word;
}


/* リンク
---------------------------------------------------- */

a{
color:#45AAB8;
text-decoration:none;
transition: 0.5s;
-webkit-transition: 0.5s;
-moz-transition: 0.5s;
-o-transition: 0.5s;
-ms-transition: 0.5s;
}

a:hover{
color:#666;
}

a:active, a:focus {
outline: 0;
}


/* 画像
---------------------------------------------------- */

img{
border:0;
padding:0px;
margin:0px
}

img.aligncenter {
display: block;
margin-left: auto;
margin-right: auto;
}

img.alignright {
padding:4px;
margin: 0 0 10px 20px;
display: inline;
}

img.alignleft {
padding: 4px;
margin: 0 20px 10px 0;
display: inline;
}


/* フロート
---------------------------------------------------- */

.alignright, .right { 
float: right; 
margin: 0 0 10px 20px;
}

.alignleft, .left { 
float: left; 
margin: 0 20px 10px 0;
}

.clear { 
clear:both; 
}

.aligncenter { display: block; margin: 0 auto; }


/* リスト
---------------------------------------------------- */

ol{
margin: 7px 0 7px 10px;
padding: 0 0 0 0;
list-style: decimal;
}

ul{
margin: 7px 0 7px 4px;
padding: 0 0 0 0;
list-style: disc;
}

li{
margin: 2px 0 2px 15px;
padding: 0;
}

li a{
color:#45AAB8;
transition: 0.5s;
-webkit-transition: 0.5s;
-moz-transition: 0.5s;
-o-transition: 0.5s;
-ms-transition: 0.5s;

}

li a:hover{
color:#666;
}



/* *****************************************************************
*	全体Wrapper
* ***************************************************************** */

.wrapper {
margin: 0 auto; 
max-width: 960px;
padding: 30px 30px 50px 30px;
width: 90%;
}



/* ***************************************************************** 
*	ヘッダー
* ***************************************************************** */

#header {
width: 100%;
}

.header-inner {
max-width: 960px;
overflow: hidden;
margin: 0px auto 0 auto;
padding: 70px 0 60px 0;
}

#header h1 {
text-align:center;
margin: 0;	
}

.logo {
text-align:center;
margin: 0px 0px 0px 0px;
padding:0px 0px 0px 0px;
}



/* *****************************************************************
*	トップナビゲーション
* ***************************************************************** */	

#nav {
width: 960px;
margin: 0 auto 50px auto;
z-index: 9999;
padding: 0;
text-align: center;
border-top: 0px solid #dedede;
border-bottom: 0px solid #dedede;
}

#nav ul {
list-style: none;
margin: auto;
}

.main-navigation {
clear: both;
margin: 0 auto;
position: relative;
}

ul.nav-menu,
div.nav-menu > ul {
margin: 0;
padding: 0;
}

.nav-menu li {
display: inline-block;
position: relative;
margin: 0 0;
}

.nav-menu li a {
color: #333;
display: block;
font-size: 14px;
text-decoration: none;
padding: 12px 30px 12px 30px;
}

.nav-menu li:hover > a,
.nav-menu li a:hover {
background: #eee;
}

.nav-menu .sub-menu,
.nav-menu .children {
background: #eee;
display: none;
padding: 0;
position: absolute;
z-index: 99999;
}

.nav-menu .sub-menu ul,
.nav-menu .children ul {
border-left: 0;
left: 100%;
top: 0;
}

ul.nav-menu ul a,
.nav-menu ul ul a {
color: #333;
margin: 0;
width: 200px;
}

ul.nav-menu ul a:hover,
.nav-menu ul ul a:hover {
background: #f5f5f5;
}

ul.nav-menu li:hover > ul,
.nav-menu ul li:hover > ul {
display: block;
background: #eee;
}

.nav-menu .current_page_item > a,
.nav-menu .current_page_ancestor > a,
.nav-menu .current-menu-item > a,
.nav-menu .current-menu-ancestor > a,
.nav-menu .current-post-ancestor > a {
color: #333;
background: #f5f5f5;
}

.toggle {
display: none;
}



/* ハンバーガーメニュー
---------------------------------------------------- */

.hamburger { display: none; }

/*!
* Hamburgers
* @description Tasty CSS-animated hamburgers
* @author Jonathan Suh @jonsuh
* @site https://jonsuh.com/hamburgers
* @link https://github.com/jonsuh/hamburgers
*/
.hamburger {
padding: 10px 2px;
display: inline-block;
cursor: pointer;
transition-property: opacity, -webkit-filter;
transition-property: opacity, filter;
transition-property: opacity, filter, -webkit-filter;
transition-duration: 0.15s;
transition-timing-function: linear;
font: inherit;
color: inherit;
text-transform: none;
background-color: transparent;
border: 0;
margin: 0;
overflow: visible; }
.hamburger:hover {
opacity: 0.7; }

.hamburger-box {
width: 40px;
height: 24px;
display: inline-block;
position: relative; }

.hamburger-inner {
display: block;
top: 50%;
margin-top: -2px; }
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
width: 35px;
height: 3px;
background-color: #000;
border-radius: 4px;
position: absolute;
transition-property: -webkit-transform;
transition-property: transform;
transition-property: transform, -webkit-transform;
transition-duration: 0.15s;
transition-timing-function: ease; }
.hamburger-inner::before, .hamburger-inner::after {
content: "";
display: block; }
.hamburger-inner::before {
top: -10px; }
.hamburger-inner::after {
bottom: -10px; }

/*
* Spin
*/
.hamburger--spin .hamburger-inner {
transition-duration: 0.3s;
transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--spin .hamburger-inner::before {
transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in; }
.hamburger--spin .hamburger-inner::after {
transition: bottom 0.1s 0.34s ease-in, -webkit-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin.is-active .hamburger-inner {
-webkit-transform: rotate(225deg);
transform: rotate(225deg);
transition-delay: 0.14s;
transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
.hamburger--spin.is-active .hamburger-inner::before {
top: 0;
opacity: 0;
transition: top 0.1s ease-out, opacity 0.1s 0.14s ease-out; }
.hamburger--spin.is-active .hamburger-inner::after {
bottom: 0;
-webkit-transform: rotate(-90deg);
transform: rotate(-90deg);
transition: bottom 0.1s ease-out, -webkit-transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1); }




/* *****************************************************************
*	スライドショー
* ***************************************************************** */	

#top-slide-max {
width: 100%;
max-height: auto;
overflow: hidden;
padding: 0px;
margin: 0px auto 20px auto;
}

#top-slide-max .cycle-slideshow {
overflow: hidden;
width: auto;
height: auto;
margin: 0px auto;
}



/* ***************************************************************** 
*	メイン（本文）コンテンツ
* ***************************************************************** */	

#main {
margin:0 0 0 0;
padding: 0 0 0 0;
word-break:break-all;
}


/* ギャラリーレイアウト
---------------------------------------------------- */

li.item {
height: 200px;
margin-bottom: 50px;
}

.item-img {
margin: 0 0 10px 0;
height: 200px;
overflow: hidden;
text-align:center;
}

.item-cat {
font-family: arial,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ","Meiryo",Osaka,"ＭＳ Ｐゴシック","MS PGothic",Sans-Serif;
font-size: 84%;
color: #999;
padding: 0 0 0px 0;
margin: 0 0 10px 0;
}
.item-cat a{
color: #444;
}

.item-date {
font-size: 80%;
color: #ccc;
padding: 0 0 0 0;
margin: 0 0 0 0;
}

.item-title {
font-size: 15px;
line-height: 150%;
font-weight: normal;
letter-spacing: 0.03em;
color: #333;
margin: 0px 0px 0px 0px;
padding: 15px 0px 15px 0px;
border-bottom: 0px solid;
}

.item-title a {
color: #444;
}

.item-title a:hover {
color: #999;
}

.item-text {
font-size: 12px;
color: #444;
line-height: 170%;
}


/* マウスオーバーでタイトルスライド表示
---------------------------------------------------- */

.slidebase {
position: relative;
}

.slidetext {
width: 100%;
display: none;
position: absolute;
color: #fff;
background: rgba(0, 0, 0, 0.5);
}

.slidetext a {
padding: 10px 10px;
display: block;
color: #fff;
}

.slidetext a:hover {
color: #ccc;
}


/* ブログ記事部分
---------------------------------------------------- */

.single-contents {
margin: 0 0 70px 0;
}

p {
font-size: 16px; 
color: #444;
line-height: 190%;
padding: 15px 0px 15px 0px;
}

p a {
color:#45AAB8;
text-decoration:none;
transition: 0.5s;
-webkit-transition: 0.5s;
-moz-transition: 0.5s;
-o-transition: 0.5s;
-ms-transition: 0.5s;
}

p a:hover {
color:#666;
}

p a:active, a:focus {
outline: 0;
}


/* ページタイトル
---------------------------------------------------- */

.pagedate {
font-family:arial,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ","Meiryo",Osaka,"ＭＳ Ｐゴシック","MS PGothic",Sans-Serif;
font-size: 12px;
font-weight: normal;
text-align: left;
padding: 0 0 0 0;
margin: 0 0 -10px 0;
color:#999;
letter-spacing: 0.02em;
}

.pagetitle {
font-family:'century','Times New Roman','Baskerville','Optima','Palatino','Georgia','ヒラギノ明朝 Pro W3','Hiragino Mincho Pro','HGS明朝E','ＭＳ Ｐ明朝','MS PMincho',serif;
font-size: 18px;
font-weight: normal;
letter-spacing: 0.01em;
font-style: italic;
padding: 0px 0px 10px 0px;
margin: 0px auto 50px auto;
border-bottom: dotted 1px #ccc;
color: #888;
max-width: 380px;
text-align: center;
}

.pagetitle a {
font-style: italic;
color: #888;
transition: 0.5s;
-webkit-transition: 0.5s;
-moz-transition: 0.5s;
-o-transition: 0.5s;
-ms-transition: 0.5s;
}

.pagetitle a:hover {
color: #666;
}

.blog-title {
font-size: 24px;
line-height: 130%;
font-weight: bold;
color: #333;
margin: 20px 0px 20px 0px;
padding: 18px 0px 15px 0px;
border-top: 3px double #ccc;
border-bottom: 1px solid #ccc;
}

.blog-title a {
color:#333;
text-decoration:none;
transition: 0.5s;
-webkit-transition: 0.5s;
-moz-transition: 0.5s;
-o-transition: 0.5s;
-ms-transition: 0.5s;
}

.blog-title a:hover {
color:#666;
}


/* パンくずリスト
---------------------------------------------------- */

.breadcrumb {
margin: 0 0 30px 0;
line-height: 120%;
}
.breadcrumb div {
display: inline;
font-size: 11px;
color: #999;
}
.breadcrumb span,
.breadcrumb span a {
color: #45aab8;
}

.breadcrumb ol {
margin: 0px;	
}

.breadcrumb li {
margin: 0px;	
display: inline;
}


/* 見出し
---------------------------------------------------- */

h1 {
font-size: 24px;
margin: 40px 0px 20px 0px;
}

h2 {
font-size: 22px;
line-height: 130%;
font-weight: bold;
color: #333;
margin: 40px 0px 20px 0px;
padding: 18px 0px 15px 0px;
border-top: 1px solid #ccc;
border-bottom: 1px solid #ccc;
}

h3 {
font-size: 20px;
line-height: 130%;
font-weight: bold;
color: #333;
padding: 0 0 5px 0;
margin: 40px 0 15px 0;
border-bottom:1px solid #ccc;
}

h4 {
font-size: 18px;
line-height: 130%;
font-weight: bold;
color: #555;
padding: 0 0 5px 0;
margin: 30px 0 10px 0;
border-bottom:1px dotted #ccc;
}

h5 {
font-size: 16px;
line-height: 1.3em;
margin: 30px 0 0px 0;
}

h6 {
font-size: 14px;
line-height: 1.3em;
margin: 30px 0 0px 0;
}


/* 記事フッター
---------------------------------------------------- */

.blog-foot {
clear:both;
font-size:75%;
text-align: left;
margin: 0px 0 50px 0;
font-weight:normal;
color:#999;
border-bottom:0px dotted #ccc;
}

.blog-foot span {
color:#999;
}


/* 次の記事・前の記事
---------------------------------------------------- */

#next {
font-size: 90%;
line-height: 150%;
margin: 50px 0 20px 0;
}

.next-left {
float: left;
text-align: left;
margin: 0 0 10px 0;
background: url(images/left.gif) no-repeat left; 
}

.next-left a {
padding: 20px 20px 20px 50px;
display: block;
border: 1px solid #fff;
}

.next-left a:hover {
border: 1px solid #eee;
}

.next-right {
float: right;
text-align: right;
margin: 0 0 10px 0;
background: url(images/right.gif) no-repeat right; 
}

.next-right a {
padding: 20px 50px 20px 20px;
display: block;
border: 1px solid #fff;
}

.next-right a:hover {
border: 1px solid #eee;
}


/* ページャー
---------------------------------------------------- */

.pager {
text-align:center;
margin: 50px 0 50px 0;
}

a.page-numbers,
.pager .current{
background: #f0f0f0;
border:solid 1px #ddd;
border-radius:2px;
padding:5px 8px;
margin:0 2px;
}

.pager .current{
background: #ccc;
border:solid 1px 999;
color: #fff;
}


/* 関連記事
---------------------------------------------------- */

.similar-head {
color: #333;
font-size: 18px;
font-weight: bold;
letter-spacing: 0.05em;
font-style:normal;
margin: 0px 0px 10px 0px;
padding: 0 0 3px 0;
border-bottom:1px solid #ccc;
}

.similar ul{
margin: 0 0 0 0;
padding: 0 0 0 0;
}

.similar li{
font-size: 14px;
margin: 0 0 0 0;
padding: 0 0 0 0;
list-style: none;
}

.similar li a{
color:#555;
}

.similar li a:hover{
color:#888;
}

table.similar-text {
width: 100%;
color: #444;
margin: 0 0 0 0;
padding: 0 0 0 0;
border-bottom: dotted 1px #ccc;
border-collapse: collapse;
border-spacing: 0;
}

table.similar-text img {
width: 150px;
}

table.similar-text th {
text-align: left;
width: 150px;
vertical-align: middle;
}

table.similar-text td {
font-size: 14px;
text-align: left;
white-space: normal;
vertical-align: middle;
}


/* コメント欄
---------------------------------------------------- */

.comment-head {
color: #333;
font-size: 18px;
font-weight: bold;
letter-spacing: 0.05em;
font-style:normal;
margin: 0px 0px 10px 0px;
padding: 0 0 3px 0;
border-bottom:1px solid #ccc;
}

.commentlist li{
list-style: none;
font-size:90%;
color:#888;
}

.commentlist {
margin: 0 0 50px 0;
padding: 0 0 0 0;
}

li.comment {
list-style: none;
font-size:90%;
color:#888;
margin: 30px 0px 30px 0px;
}

.comment p {
font-size: 14px;
}


/* WP必須
---------------------------------------------------- */

.wp-caption {
max-width:100%;
}

.wp-caption-text {
font-size:90%;
text-align: center;
}

.sticky {
}

.gallery-caption {
}

.bypostauthor {
}

/* Text meant only for screen readers. */
.screen-reader-text {
clip: rect(1px, 1px, 1px, 1px);
position: absolute !important;
height: 1px;
width: 1px;
overflow: hidden;
}

.screen-reader-text:focus {
background-color: #f1f1f1;
border-radius: 3px;
box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
clip: auto !important;
color: #21759b;
display: block;
font-size: 14px;
font-size: 0.875rem;
font-weight: bold;
height: auto;
left: 5px;
line-height: normal;
padding: 15px 23px 14px;
text-decoration: none;
top: 5px;
width: auto;
z-index: 100000; /* Above WP toolbar. */
}



/* *****************************************************************
*	サイドバー
* ***************************************************************** */

.sidebar {
width: 100%;
margin: 0px 0px 40px 0px;
padding: 0 0 0 0;
}


/* 新着表示
---------------------------------------------------- */

.sidebox-new {
color:#666;
margin: 0 0 50px 0 ;
padding: 0 0 0 0 ;
}

.sidebox-new ul{
margin: 0 0 0 0;
padding: 0 0 0 0;
}

.sidebox-new li{
font-size: 13px;
list-style: none;
margin: 0 0 0 0;
padding: 0px 0 0px 0px;
border-bottom: 1px dotted #ddd;
}

.sidebox-new li a{
color:#666;
list-style: none;
transition: 0.5s;
-webkit-transition: 0.5s;
-moz-transition: 0.5s;
-o-transition: 0.5s;
-ms-transition: 0.5s;
}

.sidebox-new li a:hover{
color:#999;
}


table.similar-side {
width: 100%;
color: #444;
margin: 0 0 0 0;
padding: 0 0 0 0;
border-collapse: collapse;
border-spacing: 0;
}

table.similar-side img {
width: 80px;
}

table.similar-side th {
text-align: left;
width: 80px;
vertical-align: middle;
}

table.similar-side td {
font-size: 13px;
text-align: left;
white-space: normal;
vertical-align: middle;
}


/* *****************************************************************
*	フッター
* ***************************************************************** */	

html {
  height: 100%;
}
body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.wrapper {
  flex: 1;
}

#footer {
background: #F5F5F5;
clear: both;
width: 100%;
font-size: 80%;
margin: 0px auto 0px auto;
position: sticky;
top: 100vh;
}

.footer-inner {
display: none;
margin: 0px auto 0px auto;
padding: 0px 0px;
max-width: 960px;
}

#sociallink {
text-align:center;
position: relative;
margin: 0 auto 10px auto;
padding: 0 0 0 0;
}

#copyright {
font-size: 10px;
line-height: 11px;
color: #999;
text-align: center;
position: relative;
margin: 0;
padding: 10px;
background: #444;
height: 100%;
}



/* *****************************************************************
*	ウィジット
* ***************************************************************** */

/* 基本形
---------------------------------------------------- */

.widget{
margin: 0 0 50px 0;
}

.widget ul{
margin: 0 0 0 0;
padding: 0 0 0 0;
}

.widget li{
list-style: none;
}

.widget li a{
color: #666;
}

.widget li a:hover{
color: #999;
}

.widget_recent_entries li a,
.widget_archive li a,
.widget_categories li a,
.widget_nav_menu li a{
margin: 0 0 0 0;
}

.textwidget, .textwidget p {
font-size: 13px;
color: #444;
line-height:160%;
margin: 0 0 0px 0;
padding: 5px 0 0 0;
}

.widget-title{
color: #333;
font-size: 16px;
font-weight: bold;
letter-spacing: 0.05em;
font-style:normal;
margin: 0px 0px 10px 0px;
padding: 0 0 3px 0;
border-bottom:1px solid #ccc;
}

.widget_block h2 {
font-size: 16px !important;
border-bottom: 3px double #ccc;
border-top: none;
margin: 0px 0px 10px 0px !important;
padding: 0px 0 3px 0 !important;
}


/* ウィジェットボックストップページ用
---------------------------------------------------- */

.topbox{
margin: 0 0 0 0;
padding: 0 0 0 0;
}

.topbox ul{

margin: 0 0 0 0;
padding: 0 0 0 0;
}

.topbox li{

margin: 0 0 0 0;
padding: 7px 0px 6px 0px;
list-style: none;
border-bottom:1px dotted #ddd;
}

.topbox li a{
font-size: 13px;
line-height: 160%;
color: #444;
margin: 0 0 0 0;
padding: 7px 0px 6px 0px;
list-style: none;
transition: 0.5s;
-webkit-transition: 0.5s;
-moz-transition: 0.5s;
-o-transition: 0.5s;
-ms-transition: 0.5s;
}

.topbox li a:hover{
color:#999;
}

.topbox h2{
font-size: 14px;
margin: 0 0 0 0;
padding: 0 0 0 0;
}

.topbox h3{
font-size: 13px;
margin: 0 0 0 0;
padding: 0 0 0 0;
}

.topbox h4{
font-size: 12px;
margin: 0 0 0 0;
padding: 0 0 0 0;
}

.topbox ul.children{
margin-bottom: 0px;
display: block;
padding: 5px 0 0 0;
}

.topbox ul.children li{
padding-left: 15px;
padding-top: 5px;
border-top: 1px dotted #ccc;
border-bottom: 0px dotted #ccc;
}

.topbox ul.sub-menu{
margin-bottom: 0px;
display: block;
padding: 5px 0 0 0;
}

.topbox ul.sub-menu li{
padding-left: 15px;
padding-top: 5px;
border-top: 1px dotted #ccc;
border-bottom: 0px dotted #ccc;
}

.top-widget-title {
font-family:'century','Times New Roman','Baskerville','Optima','Palatino','Georgia','ヒラギノ明朝 Pro W3','Hiragino Mincho Pro','HGS明朝E','ＭＳ Ｐ明朝','MS PMincho',serif;
font-size: 18px;
font-weight: normal;
letter-spacing: 0.01em;
font-style: italic;
padding: 0px 0px 10px 0px;
margin: 0px auto 40px auto;
border-bottom: dotted 1px #ccc;
color: #888;
max-width: 380px;
text-align: center;
}


/* ウィジェットボックスフッター用
---------------------------------------------------- */

.footerbox .widget {
margin: 0 0 0 0;
padding: 50px 0 50px 0;
}

.footerbox{
margin: 0 0 0 0;
padding: 0 0 0 0;
}

.footerbox ul{

margin: 0 0 0 0;
padding: 0 0 0 0;
}

.footerbox li{

margin: 0 0 0 0;
padding: 7px 0px 6px 0px;
list-style: none;
border-bottom:1px dotted #ddd;
}

.footerbox li a{
font-size: 13px;
line-height: 160%;
color: #444;
margin: 0 0 0 0;
padding: 7px 0px 6px 0px;
list-style: none;
transition: 0.5s;
-webkit-transition: 0.5s;
-moz-transition: 0.5s;
-o-transition: 0.5s;
-ms-transition: 0.5s;
}

.footerbox li a:hover{
color:#999;
}

.footerbox h2{
font-size: 14px;
margin: 0 0 0 0;
padding: 0 0 0 0;
}

.footerbox h3{
font-size: 13px;
margin: 0 0 0 0;
padding: 0 0 0 0;
}

.footerbox h4{
font-size: 12px;
margin: 0 0 0 0;
padding: 0 0 0 0;
}

.footerbox ul.children{
margin-bottom: 0px;
display: block;
padding: 5px 0 0 0;
}

.footerbox ul.children li{
padding-left: 15px;
padding-top: 5px;
border-top: 1px dotted #ccc;
border-bottom: 0px dotted #ccc;
}

.footerbox ul.sub-menu{
margin-bottom: 0px;
display: block;
padding: 5px 0 0 0;
}

.footerbox ul.sub-menu li{
padding-left: 15px;
padding-top: 5px;
border-top: 1px dotted #ccc;
border-bottom: 0px dotted #ccc;
}

.footer-widget-title {
color: #333;
font-size: 16px;
font-weight: bold;
letter-spacing: 0.05em;
font-style:normal;
margin: 0px 0px 10px 0px;
padding: 0px 0 3px 0;
border-bottom:1px solid #ccc;
}


/* ウィジェットボックスシングルページ記事下用
---------------------------------------------------- */

.singlebox {
margin: 50px 0 50px 0 ;
padding: 0 0 0 0 ;
}

.single-widget-title {
color: #333;
font-size: 18px;
font-weight: bold;
letter-spacing: 0.05em;
font-style:normal;
margin: 50px 0 10px 0 ;
padding: 0 0 3px 0;
border-bottom:1px solid #ccc;
}

.singlebox .textwidget,
.singlebox .textwidget p {
font-size: 16px;
color: #444;
line-height: 170%;
margin: 0 0 0px 0;
padding: 5px 0 5px 0;
}

.singlebox ul{
margin: 0 0 0 0;
padding: 0 0 0 0;
}

.singlebox li{
margin: 0 0 0 0;
padding: 7px 0px 6px 0px;
list-style: none;
border-bottom:1px dotted #ddd;
}

.singlebox li a{
line-height: 160%;
color: #444;
margin: 0 0 0 0;
padding: 7px 0px 6px 0px;
list-style: none;
transition: 0.5s;
-webkit-transition: 0.5s;
-moz-transition: 0.5s;
-o-transition: 0.5s;
-ms-transition: 0.5s;
}

.singlebox li a:hover{
color:#999;
}

.singlebox ul.children{
margin-bottom: 0px;
display: block;
padding: 5px 0 0 0;
}

.singlebox ul.children li{
padding-left: 15px;
padding-top: 5px;
border-top: 1px dotted #ccc;
border-bottom: 0px dotted #ccc;
}

.singlebox ul.sub-menu{
margin-bottom: 0px;
display: block;
padding: 5px 0 0 0;
}

.singlebox ul.sub-menu li{
padding-left: 15px;
padding-top: 5px;
border-top: 1px dotted #ccc;
border-bottom: 0px dotted #ccc;
}


/* ウィジェットボックスサイドバー用
---------------------------------------------------- */

.sidebox{
margin: 0 0 0 0 ;
padding: 0 0 0 0 ;
}

.sidebox ul{

margin: 0 0 0 0;
padding: 0 0 0 0;
}

.sidebox li{
margin: 0 0 0 0;
padding: 7px 0px 7px 0px;
list-style: none;
border-bottom:1px dotted #ddd;
}

.sidebox li a{
font-size: 13px;
color: #444;
margin: 0 0 0 0;
padding: 5px 0px 5px 0px;
list-style: none;
transition: 0.5s;
-webkit-transition: 0.5s;
-moz-transition: 0.5s;
-o-transition: 0.5s;
-ms-transition: 0.5s;
}

.sidebox li a:hover{
color:#999;
}

.sidebox h2{
font-size: 14px;
margin: 0 0 0 0;
padding: 0 0 0 0;
}

.sidebox h3{
font-size: 13px;
margin: 0 0 0 0;
padding: 0 0 0 0;
}

.sidebox h4{
font-size: 12px;
margin: 0 0 0 0;
padding: 0 0 0 0;
}

.sidebox ul.children{
margin-bottom: 0px;
display: block;
padding: 5px 0 0 0;
}

.sidebox ul.children li{
padding: 5px 0 5px 15px;
border-top: 1px dotted #ccc;
border-bottom: 0px dotted #ccc;
}

.sidebox ul.sub-menu{
margin-bottom: 0px;
display: block;
padding: 5px 0 0 0;
}

.sidebox ul.sub-menu li{
padding: 5px 0 5px 15px;
border-top: 1px dotted #ccc;
border-bottom: 0px dotted #ccc;
}


/* カレンダー
---------------------------------------------------- */

table#wp-calendar {
width: 100%
}

table#wp-calendar th {
text-align: center;
}

table#wp-calendar td {
text-align: center;
}



/* *****************************************************************
*	検索フォーム＆検索結果
* ***************************************************************** */

/* 検索フォーム
---------------------------------------------------- */

.search input {
font: 16px arial, sans-serif; 
color: #333; 
width:85%;
padding: 10px 5px; 
}

.search button {
width: 15px; 
height: 15px; 
cursor: pointer; 
vertical-align: middle;
border: none; 
background: url(images/search.png) no-repeat; 
}


/* *****************************************************************
*	ボタン
* ***************************************************************** */

.btn a {
font-size: 11px;
letter-spacing: 0.1em;
color: #fff;
background: #94d8c6;
text-align: center;
margin: 20px 0 20px 0;
padding: 10px 10px;
}

.btn a:hover {
color: #fff;
background: #4CBE9F;
text-decoration: none;
transition: 0.5s;
-webkit-transition: 0.5s;
-moz-transition: 0.5s;
-o-transition: 0.5s;
-ms-transition: 0.5s;
}


/* テーブル
---------------------------------------------------- */

.single-contents tabel,
.page-contents tabel {
width: 100%;
}
 
.single-contents th,
.single-contents td,
.page-contents th,
.page-contents td {
border: 1px solid #ccc;
padding: 20px;
}
 
.single-contents th,
.page-contents th {
font-weight: bold;
background-color: #dedede; 
}



/* *****************************************************************
*   レスポンシブ（メディアクエリ）
* ***************************************************************** */


/* PC 画面の横幅が960px以上
---------------------------------------------------- */

@media only screen and (min-width: 960px) {
.sidebar { width: 300px; }
}



/* Tablet (Portrait) 画面の横幅が768px〜959pxまで
---------------------------------------------------- */

@media only screen and (min-width: 768px) and (max-width: 959px) {
.wrapper { width: 728px; padding: 30px 20px 50px 20px; }
.header-inner { width: 728px; margin: auto; padding: 70px 0 60px 0;  }
#nav { float: none; width: 728px; margin: 0 auto 40px auto; padding: 0; }
.cycle-slideshow { width: 728px; height: auto; margin: 0 ; overflow: hidden; }
li.item { height: 150px; margin-bottom:40px; }
.item-img { height: 150px; margin: 0 0 10px 0; overflow: hidden; }
.twothird { width: 460px; margin-right:10px; }
.footer-inner { width: 728px; padding: 0px 0px;}
}


/* Mobile (Portrait) 画面の横幅が300px~767pxまで（基本）
---------------------------------------------------- */

@media only screen and (max-width: 767px) {
.wrapper { width: 300px; padding: 30px 0px 50px 0px; }
.header-inner { width: 300px; margin: auto; padding: 70px 0 40px 0; }
.logo { text-align: center; }
#header h1, #header .logo { float: none; margin-bottom: 0px; }
#nav { display: none; position: absolute; top:0; float: none; text-align:center; width: 100%; background: #fefefe; margin-bottom: 40px; margin-top: 0px; padding: 0; }
.nav-menu li a { color: #333; display: block; font-size: 15px; padding: 20px 10px; text-decoration: none;}
.nav-menu li { display: block; float: none; border-bottom: 1px solid #ededed; }
.toggle { display: block; float: right; position: absolute; top: 13px; right: 10px; z-index: 10001; }
.cycle-slideshow { width: 300px; height: auto; margin: 0 ; overflow: hidden; }
li.item { height: 200px; margin-bottom: 40px; }
.item-img { height: 200px; margin: 0 0 10px 0; overflow: hidden; }
.slidetext { display: block; padding: 5px 0px;}
.pagedate { margin: -20px 0 -10px 0; }
p { font-size: 15px; }
.pager { margin: 80px 0 80px 0; }
.footer-inner { width: 300px; padding: 0px 0px;}
.mobile-display-none { display: none; }
.single-contents br { display: block; }
.single-contents { margin: 0 0 130px 0; }
}



/* Mobile (Portrait/iPhone6) 画面の横幅が375px〜479pxまで
---------------------------------------------------- */

@media only screen and (min-width: 375px) and (max-width: 479px) {
.wrapper { width: 336px; }
.header-inner { width: 336px; margin: auto; }
.logo { text-align:center; }
.cycle-slideshow { width: 336px; height: auto; margin: 0 ; overflow: hidden; }
.footer-inner { width: 336px; padding: 0px 0px;}
li.item { height: 224px; margin-bottom: 40px; }
.item-img { height: 224px; margin: 0 0 10px 0; overflow: hidden; }
}



/* Mobile (Landscape) 画面の横幅が480px〜767pxまで
---------------------------------------------------- */

@media only screen and (min-width: 480px) and (max-width: 767px) {
.wrapper { width: 420px; }
.header-inner { width: 420px; margin:auto; }
.logo { text-align:center; }
.cycle-slideshow { width: 420px; height: auto; margin: 0 ; overflow: hidden; }
li.item { height: 280px; margin-bottom: 40px; }
.item-img { height: 280px; margin: 0 0 10px 0; overflow: hidden; }
}



/* *****************************************************************
*   レスポンシブ（外部サービス対策用）
* ***************************************************************** */

/* Twitter Timeline
---------------------------------------------------- */

.twitter-timeline { 
width:100%; 
height: 300px; 
}


/* YouTube embed
---------------------------------------------------- */

.youtube {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px;
height: 0;
overflow: hidden;
margin-top: 20px;
margin-bottom: 20px;
}
.youtube iframe,
.youtube object,
.youtube embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}


/*
* 追加CSS
*/
a:not([href]):not([tabindex]) {
  color: white;
}

.home .pagetitle {
  display: none;
}

.home .block-three {
  display: none;
}

/* 全体のフォント、文字幅を変更 */
body {
  font-family: 'Noto Serif JP', sans-serif !important;
  letter-spacing: 4px !important;
}

/* ヘッダー１のフォント、文字幅を変更 */
h1.pagetitle {
  font-family: 'Noto Serif JP', sans-serif !important;
  letter-spacing: 4px !important;
  font-style: normal !important;
}

.page-id-2005 a.page-numbers {
  border-radius: 50%;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  margin: 0 1.5px;
  font-size: 16px;
}
.page-id-2005 span.page-numbers {
  border-radius: 50%;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  margin: 0 1.5px;
  font-size: 16px;
}

/* スマホ画面 */
@media screen and (max-width: 767px) {
  .widget_block h2 {
    text-align: center !important;
  }
  
  h1.pagetitle {
    margin-top: 60px;
  }

  /* スライドの表示切替 */
  .sp-slider {
    display: inline-block;
  }
  .pc-slider {
    display: none;
  }
  
  /* ロゴの表示切替 */
  .logo {
    text-align: left;
	padding: 10px;
	position: relative;
	z-index: 10000;
  }
  .logo img {
    width: 90px;
	padding: 8px 0;
  }
  
  #nav {
    z-index: 10000;
  }
  
  .loader {
    left: 0;
  }
  
  .wrapper {
    padding-top: 0;
  }
  
  .top-project-message {
    margin-bottom: 10px;
	padding: 0 28px;
	font-size: 13px;
  }
  
  .widget:has(.top-project-message) {
    margin-bottom: 20px;
  }
  
  .top-sign {
    text-align: right;
	padding: 0 48px;
  }
  
  .top-sign img {
    width: 115px;
  }
  
  .pc-top-message {
    display: none;
  }
  .sm-top-message {
    display: block;
  }
  
  .widget:has(.top-backnumber-imgs) {
    margin-bottom: 16px;
  }
  .top-backnumber-imgs {
   margin-bottom: 0 !important;
   gap: 0.3em;
  }
  .top-btn-backnumber {
    font-size: 13px;
  }
  
  .widget:has(.top-voices-img) {
    margin-bottom: 16px;
  }
  .top-voices-img {
    margin: 0 auto;
	width: 170px;
  }
  .topbox .top-crezit {
    font-size: 10px !important;
  }
  .top-bond-img {
    margin: 0 auto 36px;
    width: 125px;
  }
  
  .page-id-33 .pum-content {
    height: 500px !important;
	overflow: scroll !important;
  }
  
  .page-id-35 .pum-container figure img {
    max-height: 50vh;
  }
  
  .contact-us-p {
    padding: 25px 30px;
  }
  .wp-block-buttons:has(.btn-donate) {
    justify-content: center !important;
  }
  .single-post p {
    font-size: 14px;
  }
  .single-post .next-left a {
    padding: 10px 20px 10px 50px;
  }
  .single-post .next-right a {
    padding: 10px 50px 10px 20px;
  }
  
  .top-project-message-en {
    letter-spacing: 1px;
	padding: 0 28px;
  }
  
  .voice_wrapper {
    width: 100%;
  }
  
  .page-id-3 h1 {
    font-size: 20px;
  }
  
  .page-id-3 h2 {
    font-size: 16px;
  }
  .page-id-3 p {
    font-size: 14px;
  }
  .page-id-3 ul {
    font-size: 14px;
  }
  
  /* contact us */
  .page-id-140 p {
    font-size: 13px !important;
  }
  
  .voice_icon {
    width: 40px;
  }
  .voice_content {
    padding: 8px 10px 5px 10px;
  }
  .voice_nickname {
    font-size: 12px;
  }
  .voice_message {
    font-size: 12px;
	padding: 0 0 10px 0;
  }
  .voice_data {
    font-size: 9px;
  }
  
  #bbs-form {
    width: 100%;
  }
  #bbs-form .inner-wrap {
    width: 90%;
  }
  #bbs-form .agreement-message {
    font-size: 12px;
  }
  
  .page-id-515 .single-contents, .page-id-1139 .single-contents, .single-post .single-contents {
    margin: 30px 0;
  }
  
  .page-id-11 #main {
    padding: 15px;
	margin: 30px 0;
	font-size: 12px;
  }
  .page-id-11 #main p {
    font-size: 12px;
  }
  
  .page-id-16 .single-contents {
    margin: 30px 0;
  }
  
  .feature-list li:first-child::before {
    width: 60px;
    line-height: 1.5;
  }
  
  .top-share-your-voices-pc {
    display: none;
  }
  
  #next {
    margin-top: 20px;
  }
  
  .page-id-2005 a.page-numbers {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }
  .page-id-2005 span.page-numbers {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }
}

/* PC画面 */
@media screen and (min-width: 767px) {
  .sp-slider {
    display: none;
  }
  .pc-slider {
    display: inline-block;
  }
  
  .logo {
    text-align: left;
	display: inline-block;
	width: 120px;
	margin: 18px 0 18px 12px;
  }
  #nav {
    float: right;
	margin: 16px auto;
	width: 80%;
	text-align: right !important;
  }
  h1.pagetitle {
    display: none;
  }
  
  .loader {
    left: 5px;
  }
  
  /* ギャラリーの余白幅を少し広くする */
  .wp-block-gallery.wp-block-gallery-1 {
	  gap: 70px !important;
    --wp--style--unstable-gallery-gap: unset !important;
  }
  
  .wp-block-columns.are-vertically-aligned-bottom {
    justify-content: center;
	gap: 5em;
  }
  
  .pc-top-message {
    display: block;
  }
  .sm-top-message {
    display: none;
  }
  
  .page-id-33 .pum-container {
    margin-left: -40% !important;
	width: 80vw !important;
  }
  .page-id-33 .pum-content {
    height: 85vh !important;
	overflow: scroll !important;
	width: auto;
  }
  
 /* ギャラリーのポップアップデザイン調整 */
 .page-id-35 .pum-container figure img {
    max-height: 70vh;
  }
  
  .top-project-message-en {
    letter-spacing: 3px;
  }
  .widget_text:has(.top-project-message) {
    margin-bottom: 8px;
  }
  
  .voice_wrapper {
    width: 80%;
  }
  
  .top-icon {
    width: 33%;
	margin: 0 auto;
  }
  
  .page-id-33 .wp-block-columns .wp-block-column:first-of-type figure {
    margin-left: initial;
  }
  .page-id-33 .wp-block-columns .wp-block-column:last-of-type figure {
    margin-right: initial;
  }
  
  .page-id-16 .nav-menu li a, .page-id-515 .nav-menu li a, .page-id-1139 .nav-menu li a {
    color: white;
  }
  
  .page-id-16 .nav-menu li a:hover, .page-id-515 .nav-menu li a:hover, .page-id-1139 .nav-menu li a:hover {
    color: #333;
  }
  
  .voice_icon {
    width: 60px;
  }
  .voice_content {
    padding: 13px 20px 20px 20px;
  }
  .voice_nickname {
    font-size: 20px;
  }
  .voice_message {
    font-size: 14px;
	padding: 10px 0;
  }
  .voice_data {
    font-size: 14px;
  }
  
  #bbs-form {
    width: 80%;
  }
  #bbs-form .inner-wrap {
    width: 80%;
  }
  #bbs-form .agreement-message {
    font-size: 14px;
  }
  
  .page-id-11 #main {
    padding: 30px;
	font-size: 14px;
  }
  .page-id-11 .wrapper {
    padding-bottom: 30px;
  }
  
  .feature-list li:first-child::before {
    width: 80px;
    line-height: 1.8;
  }
  
  .top-share-your-voices-sp {
    display: none;
  }
}

/* 厳密なPC画面 */
@media screen and (min-width: 1200px) {
  /* 掲示板一覧・投稿・結果 */
  .page-id-16, .page-id-515, .page-id-1139, .page-id-11 {
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-color: white;
  }
  .page-id-16, .page-id-515, .page-id-1139 {
    background-image: url(https://web-voices.jp/wp-content/uploads/2023/07/web_background.png);
  }
  /* 掲示板TOP */
  .page-id-11 {
    background-image: url(https://web-voices.jp/wp-content/uploads/2024/07/bbs-top2_bg_pc2.jpg);
  }
  .page-id-16 #header-wrap, .page-id-515 #header-wrap, .page-id-1139 #header-wrap, .page-id-11 #header-wrap {
    background: inherit;
  }
  .page-id-11 .nav-menu .current_page_item > a {
    background: none;
  }
  .page-id-11 .nav-menu li a:hover {
    color: #333;
	background: white;
  }
  
  .plus_wrapper {
    display: none;
  }
}

/* 厳密なiPad画面 */
@media screen and (max-width: 1200px) and (min-width: 480px) {
  /* 掲示板一覧・投稿・結果 */
  .page-id-16::before, .page-id-515::before, .page-id-1139::before {
    content: "";
	display: block;
	position: fixed;
	top: 0;
	left: 0;
    width: 100%;
	min-height: 100vh;
    min-height: 100lvh;
    background: url(https://web-voices.jp/wp-content/uploads/2023/07/ipad_background.png) center/cover no-repeat;
    -webkit-background-size: cover;
	z-index: -1;
  }
  /* 掲示板TOP */
  .page-id-11::before {
    content: "";
	display: block;
	position: fixed;
	top: 0;
	left: 0;
    width: 100%;
	min-height: 100vh;
    min-height: 100lvh;
    background: url(https://web-voices.jp/wp-content/uploads/2024/07/bbs-top3_bg_ipad.jpg) center/cover no-repeat;
    -webkit-background-size: cover;
	z-index: -1;
  }
  .page-id-16 #header-wrap, .page-id-515 #header-wrap, .page-id-1139 #header-wrap {
    background: #023db3;
  }
  .page-id-16 .hamburger:hover, .page-id-515 .hamburger:hover, .page-id-1139 .hamburger:hover {
    opacity: unset;
  }
  .page-id-16 .hamburger-inner, .page-id-16 .hamburger-inner::before, .page-id-16 .hamburger-inner::after, .page-id-515 .hamburger-inner, .page-id-515 .hamburger-inner::before, .page-id-515 .hamburger-inner::after, .page-id-1139 .hamburger-inner, .page-id-1139 .hamburger-inner::before, .page-id-1139 .hamburger-inner::after {
    background-color: #fff;
  }
  .page-id-16 .hamburger--spin.is-active .hamburger-inner, .page-id-16 .hamburger--spin.is-active .hamburger-inner::after, .page-id-515 .hamburger--spin.is-active .hamburger-inner, .page-id-515 .hamburger--spin.is-active .hamburger-inner::after,  .page-id-1139 .hamburger--spin.is-active .hamburger-inner, .page-id-1139 .hamburger--spin.is-active .hamburger-inner::after {
    background-color: #000;
  }
  
  .page-id-11 #header-wrap {
    background: #fbe8e1;
  }
  .page-id-11 .nav-menu .current_page_item > a {
    background-color: #fdf8f6;
  }
  .page-id-11 .nav-menu li a:hover {
	background-color: #fdf8f6;
  }
  
  .plus_wrapper {
    display: none;
  }
}

/* 厳密なスマホ画面 */
@media screen and (max-width: 480px) {
  /* 掲示板一覧・投稿・結果 */
  .page-id-16::before, .page-id-515::before, .page-id-1139::before {
    content: "";
	display: block;
	position: fixed;
	top: 0;
	left: 0;
    width: 100%;
	min-height: 100vh;
    min-height: 100lvh;
    background: url(https://web-voices.jp/wp-content/uploads/2023/07/phone_background.png) center/cover no-repeat;
    -webkit-background-size: cover;
	z-index: -1;
  }
  /* 掲示板TOP */
  .page-id-11::before {
    content: "";
	display: block;
	position: fixed;
	top: 0;
	left: 0;
    width: 100%;
	min-height: 100vh;
    min-height: 100lvh;
    background: url(https://web-voices.jp/wp-content/uploads/2024/07/bbs-top3_bg_iphone.jpg) center/cover no-repeat;
    -webkit-background-size: cover;
	z-index: -1;
  }
  .page-id-16 #header-wrap, .page-id-515 #header-wrap, .page-id-1139 #header-wrap {
    background: #023db3;
  }
  .page-id-16 .hamburger:hover, .page-id-515 .hamburger:hover, .page-id-1139 .hamburger:hover {
    opacity: unset;
  }
  .page-id-16 .hamburger-inner, .page-id-16 .hamburger-inner::before, .page-id-16 .hamburger-inner::after, .page-id-515 .hamburger-inner, .page-id-515 .hamburger-inner::before, .page-id-515 .hamburger-inner::after, .page-id-1139 .hamburger-inner, .page-id-1139 .hamburger-inner::before, .page-id-1139 .hamburger-inner::after {
    background-color: #fff;
  }
  .page-id-16 .hamburger--spin.is-active .hamburger-inner, .page-id-16 .hamburger--spin.is-active .hamburger-inner::after, .page-id-515 .hamburger--spin.is-active .hamburger-inner, .page-id-515 .hamburger--spin.is-active .hamburger-inner::after,  .page-id-1139 .hamburger--spin.is-active .hamburger-inner, .page-id-1139 .hamburger--spin.is-active .hamburger-inner::after {
    background-color: #000;
  }
  
  .page-id-11 #header-wrap {
    background: #fbe8e1;
  }
  
  .page-id-16 #topcontrol {
    display: none;
  }
}

/* ギャラリーの画像サイズを少し小さくする */
@media screen and (min-width: 600px) {
  .wp-block-gallery.has-nested-images.columns-3 figure.wp-block-image:not(#individual-image) {
    width: calc(29.33333% - var(--wp--style--unstable-gallery-gap, 16px)*.66667) !important;
  }
}


/* ローディング設定 */
.loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 10000;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader .pic {
  display: none;
}

/* クレジットの幅 */
div#block-34 {
  margin-bottom: 14px;
}

/* ナビゲーションデザイン調整 */
.nav-menu li a {
  font-size: 12px;
  letter-spacing: 3px;
}

/*.トップページ下の余白を削除 */
.wrapper {
  padding-bottom: 0;
}

/* バックナンバーポップアップ内のデザイン調整 */
.pum-container {
  top: 50% !important;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.page-id-33 .pum-content {
  display: flex;
  overflow-x: scroll !important;
  gap: 2em;
}
.page-id-33 .pum-content figure {
  margin: .5% !important;
  align-self: flex-start;
  height: 98%;
  -webkit-touch-callout:none;
  -webkit-user-select:none;
  -moz-touch-callout:none;
  -moz-user-select:none;
  user-select: none;
}
.page-id-33 .pum-content figure img {
  height: 100% !important;
  width: auto;
  max-width: none !important;
}
.page-id-33 .pum-content figure img.is-zoom {
  transform-origin: top left;
  transform: scale(3);
  image-rendering: -webkit-optimize-contrast;
  backface-visibility: hidden;
　-webkit-backface-visibility: hidden;
}

.page-id-33 .pum-trigger img {
  box-shadow: 4px 4px 0 1px #eaeaea;
}

/* ギャラリーのポップアップデザイン調整 */
.page-id-35 .pum-overlay {
  padding-bottom: 40px;
}
.page-id-35 .pum-container {
  background: none !important;
  box-shadow: none !important;
}
.page-id-35 .pum-content {
  height: 100%;
}
.page-id-35 .pum-container figure {
  text-align: center;
}
.page-id-35 .pum-container figure img {
  width: auto;
}
.page-id-35 .pum-container button {
  left: 50% !important;
  transform: translateX(-50%);
  right: revert !important;
  top: revert !important;
  bottom: -80px !important;
  box-shadow: none !important;
  background-color: white !important;
  color: black !important;
  padding-bottom: 40px !important;
}

/* TOPへ戻るボタンデザイン変更 */
#topcontrol div {
  border-radius: 50%  !important;
  font-size: 12px !important;
  text-indent: 165%;
  white-space: nowrap;
  overflow: hidden;
  border: 2px solid gray;
  color: transparent !important;
  padding: 0 !important;
  width: 45px;
  height: 45px;
}
#topcontrol div::before {
  content: "";
  border-top: 2px solid gray;
  border-right: 2px solid gray;
  display: inline-block;
  width: 20%;
  height: 20%;
  top: 44%;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  transform: rotate(-45deg);
}

.top-icon {
  gap: 0;
}

/* ヘッダー固定 */
#header-wrap {
  position: sticky;
  width: 100%;
  background: white;
  top: 0;
  z-index: 9999;
}

/* トップメッセージ(英語) */
.top-project-message-en {
  word-break: break-word;
}

/* 掲示板一覧 */
.voice_wrapper {
  margin: 0 auto 15px;
  display: flex;
}
.voice_icon img {
  border-radius: 10px;
  background: yellow;
}
.voice_content {
  width: 100%;
  border-radius: 10px;
  background-color: rgba(255,255,255,0.8);
}
.voice_nickname {
  font-weight: bold;
}
.voice_message {
  word-break: break-word;
}
.voice_data {
  text-align: right;
}
.from_to {
  color: #000;
  text-shadow: 0 0 10px rgba(255, 255, 255, 1);
}

/* FEATUREの横幅 */
.page-id-37 .wrapper {
  max-width: 1200px;
}

/* FEATUREデザイン設定 */
.single-post h1 {
  display: none;
}
.single-post p, .single-post #main {
  letter-spacing: 0.1px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
.single-post .pagedate {
  display: none;
}

/* 無断転載の警告文 */
.warning {
  margin-bottom: 24px;
  word-break: break-word;
}

#bbs-logo {
  display: none;
}

/* 掲示板一覧・掲示板投稿 */
.page-id-16 .logo img, .page-id-515 .logo img, .page-id-1139 .logo img {
  display: none;
}
.page-id-16 .logo #bbs-logo, .page-id-515 .logo #bbs-logo, .page-id-1139 .logo #bbs-logo {
  display: inline-block;
}

/* 掲示板投稿 */
#bbs-form {
  margin: 0 auto;
  background-color: rgba(255,255,255,0.8);
  border-radius: 10px;
}
#bbs-form p {
  padding-bottom: 0;
  padding-top: 0;
}
#bbs-form input[type=text], #bbs-form input[type=number] {
  max-width: 100%;
  width: 100%;
  height: 45px;
  box-sizing: border-box;
  border-radius: 5px;
  z-index: auto;
  font-size: 16px;
}
#bbs-form select {
  max-width: 100%;
  width: 100%;
  height: 45px;
  box-sizing: border-box;
  border-color: #cccccc;
  border-radius: 5px;
  z-index: auto;
  background-color: #ffffff;
}
#bbs-form .your-voices textarea {
  border-radius: 5px;
  z-index: auto;
  font-size: 16px;
}
#bbs-form .inner-wrap {
  margin: 0 auto;
  padding: 15px 0 20px;
}
#bbs-form .agreement-check {
  text-align: center;
  padding-top: 15px;
}
#bbs-form .agreement {
  text-align: center;
  padding-bottom: 0;
}
#bbs-form .agreement-message {
  height: 230px;
  overflow-y: scroll;
  border: 1px solid #cccccc;
  border-radius: 5px;
  padding: 8px;
  background-color: #fff;
}
#bbs-form .bbs-btn {
  text-align: center;
  padding-top: 15px;
}
#bbs-form .bbs-btn input {
  width: 100%;
  height: 45px;
  border-radius: 2em;
  background: #023db3;
  border: none;
  color: #fff;
  font-size: 14px;
}
#bbs-form .bbs-btn input:disabled {
  background: gray;
  cursor: initial;
}
#bbs-form .bbs-icon {
  text-align: center;
}
#bbs-form .bbs-icon input[type=radio]+label:before {
  content: "";
  display: inline-block;
  background-size: contain;
  width: 5em;
  height: 5em;
  border-radius: 50%;
  cursor: pointer;
}
#bbs-form .bbs-icon input[type=radio]+label[for="star"]:before {
  background-image: url(https://web-voices.jp/wp-content/uploads/2023/07/icon_star.jpg);
}
#bbs-form .bbs-icon input[type=radio]+label[for="moon"]:before {
  background-image: url(https://web-voices.jp/wp-content/uploads/2023/07/icon_moon.jpg);
}
#bbs-form .bbs-icon input[type=radio]+label[for="cloud"]:before {
  background-image: url(https://web-voices.jp/wp-content/uploads/2023/07/icon_cloud.jpg);
}
#bbs-form .bbs-icon input[type=radio]:checked+label::before {
  border: 3px solid #023db3;
  box-sizing: border-box;
}
#bbs-form .bbs-icon input[type=radio] {
  display: none;
}
.grecaptcha-badge {
  visibility: hidden;
}

.page-id-11 #main {
  background: rgba(255,255,255, 0.7);
  border-radius: 20px;
}
.page-id-11 .single-contents {
  margin: 0;
}

/* 投稿 改ページ ページネーションデザイン */
.single-post .post-nav-links {
  font-size: 0;
  text-align: center;
  margin-top: 30px;
}
.single-post .post-nav-links .post-page-numbers {
  font-size: 16px;
  margin: 0 5px;
  background: #efefef;
  border-radius: 50%;
  color: gray;
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
}
.single-post .post-nav-links .current {
  background-color: #45AAB8;
  color: white;
}

.page-id-1139 .single-contents {
  background-color: rgba(255,255,255,0.8);
  border-radius: 10px;
  padding: 10px 30px 30px;
  text-align: center;
}

/* ブログ一覧の1つ目にnewを表示 */
ul.feature-list li:nth-child(1) {
  position: relative;
}
ul.feature-list li:nth-child(1)::before {
  content: "NEW";
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  background: #e50201;
  color: white;
  text-align: center;
  font-family: system-ui;
  letter-spacing: normal;
  width: 65px;
}