@charset "utf-8";

/*
Theme Name: wp-sakakibara-juusetsu
Description: wp-sakakibara-juusetsuのcss
Version: 1.0
Author: 榊原住設

*/
/* --- 1. 基本設定と変数 --- */
:root {
--primary-navy: #003366;
/* メインの濃いネイビー */
--section-green: #00a582;
/* サステナビリティの緑 */
--accent-blue: #2d8fb8;
/* アクセントの水色 */
--text-main: #333333;
--text-light: #666666;
--bg-light: #f5f5f7;
--white: #ffffff;
--card-radius: 20px;
/* カードの角丸具合 */
--primary-blue: #004098;
/* 個人のお客様の青 */
--primary-green: #4CAF50;
/* 法人の緑 */
--primary-orange: #E67E22;
/* 協力業者のオレンジ */
--line-green: #06C755;
/* LINEの緑 */
--text-color: #333;
--bg-color: #fff;
}

body {
font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
margin: 0;
padding: 0;
color: var(--text-main);
background-color: var(--bg-light);
line-height: 1.6;
overflow-x: hidden;
padding-bottom: 70px;
/* フッターの高さ分空ける */
}

main {
max-width: 650px;
margin: 0 auto;
}

.item1 {
display: none;
}

.item3 {
display: none;
}

a {
text-decoration: none;
color: inherit;
}

img {
max-width: 100%;
display: block;
}

ul {
list-style: none;
padding: 0;
margin: 0;
}

/* --- 2. アニメーション用クラス --- */
/* スクロールしたらふわっと出る */
.fade-up {
opacity: 0;
transform: translateY(30px);
transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
opacity: 1;
transform: translateY(0);
}

/* --- ヘッダー (固定) --- */
header {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 60px;
background-color: #fff;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 15px;
box-sizing: border-box;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
z-index: 1000;
/* 他の要素より手前に表示 */
}

/* --- ヘッダーの調整（ど真ん中配置） --- */
header {
background-color: var(--white);
padding: 10px 20px;
height: 85px;
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
position: sticky;
top: 0;
z-index: 1000;
}

/* メニューボタンの見た目調整 */
.menu-btn {
background: var(--primary-navy);
color: white;
border-radius: 50%;
width: 45px;
/* 少し大きく */
height: 45px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
font-size: 1.4rem;
border: none;
transition: 0.3s;
z-index: 1001;
/* メニューより手前に */
}

.menu-btn:hover {
transform: scale(1.1);
/* ホバーで少し膨らむ */
}

/* --- 全画面メニューのアニメーション --- */
.nav-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 51, 102, 0.95);
/* 濃いネイビー（少し透ける） */
z-index: 2000;

/* 初期状態：隠す */
opacity: 0;
visibility: hidden;
transition: all 0.4s ease-in-out;

/* 中身をど真ん中にする設定 */
display: flex;
align-items: center;
justify-content: center;
}

/* クラスがついたら表示（アニメーション発火） */
.nav-overlay.active {
opacity: 1;
visibility: visible;
}

/* メニューの中身 */
.nav-content {
text-align: left;
transform: translateY(20px);
/* 最初は少し下に */
transition: transform 0.4s ease;
}

/* 表示された時の動き */
.nav-overlay.active .nav-content {
transform: translateY(0);
/* ふわっと定位置に */
}

.nav-relative {
position: relative;
}

/* 閉じるボタン */
.close-btn {
position: absolute;
top: 20px;
right: 20px;
font-size: 3rem;
color: white;
cursor: pointer;
font-family: sans-serif;
font-weight: 100;
line-height: 1;
}

/* メニューリスト */
.nav-list li {
margin: 30px 0;
opacity: 0;
transform: translateY(10px);
transition: 0.3s;
}

.nav-list .li-p {
color: white;
font-size: 1.5rem;
font-weight: bold;
position: relative;
}

/* リンクの文字 */
.nav-list a {
color: white;
font-size: 1.5rem;
font-weight: bold;
position: relative;
}

/* リンクの下線アニメーション */
.nav-list a::after {
content: '';
position: absolute;
width: 0;
height: 2px;
background: var(--accent-blue);
bottom: -5px;
left: 0;
transition: 0.3s;
}

.nav-list a:hover::after {
width: 100%;
}

/* メニューが開いた時に、リストを順番に表示する遅延アニメーション */
.nav-overlay.active .nav-list li:nth-child(1) {
transition-delay: 0.1s;
opacity: 1;
transform: translateY(0);
}

.nav-overlay.active .nav-list li:nth-child(2) {
transition-delay: 0.2s;
opacity: 1;
transform: translateY(0);
}

.nav-overlay.active .nav-list li:nth-child(3) {
transition-delay: 0.3s;
opacity: 1;
transform: translateY(0);
}

.nav-overlay.active .nav-list li:nth-child(4) {
transition-delay: 0.4s;
opacity: 1;
transform: translateY(0);
}

.nav-overlay.active .nav-list li:nth-child(5) {
transition-delay: 0.5s;
opacity: 1;
transform: translateY(0);
}

.nav-overlay.active .nav-list li:nth-child(6) {
transition-delay: 0.6s;
opacity: 1;
transform: translateY(0);
}

.nav-overlay.active .nav-list li:nth-child(7) {
transition-delay: 0.7s;
opacity: 1;
transform: translateY(0);
}




/* --- ヘッダーロゴ画像のスタイル（新規追加） --- */
.logo-container {
display: flex;
align-items: center;
height: 100%;
/* ヘッダーの高さに合わせる */
}

.logo-img {
/* ロゴの高さ（大きさ）をここで調整します */
height: 85px;
/* 例: 40pxくらいがちょうど良いバランスです */
width: auto;
/* 横幅は自動調整 */
display: block;

/* 任意：もしロゴの余白が気になる場合はマイナスマージンで調整 */
/*margin-left: -5px; */
margin: -10px;
}

.header-icons {
display: flex;
gap: 15px;
align-items: center;
}

.icon-btn {
width: 40px;
height: 40px;
border-radius: 50%;
background: #f0f0f0;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
cursor: pointer;
}

.menu-btn {
background: var(--primary-navy);
color: white;
}


/* --- フッター --- */
footer {
background: #222;
color: #999;
padding: 40px 0;
text-align: center;
font-size: 0.8rem;
}


@media (min-width: 768px) {
.hero {
    height: 70vh;
}

.news-item {
    flex-direction: row;
    align-items: center;
}

.news-meta {
    width: 200px;
}

.container,
.about-container {
    max-width: 900px;
    margin: 0 auto;
}
}

/* --- 固定フッター (LINE/電話) --- */
.fixed-footer {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
height: 60px;
display: flex;
z-index: 1000;
box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.footer-btn {
flex: 1;
/* 幅を50%ずつに */
display: flex;
align-items: center;
justify-content: center;
color: white;
font-weight: bold;
font-size: 0.9rem;
gap: 8px;
transition: opacity 0.2s;
}

.footer-btn:active {
opacity: 0.8;
}

.btn-line {
background-color: var(--line-green);
}

.btn-phone {
background-color: var(--primary-blue);
}

/* アイコン用SVGスタイル */
.icon-svg {
width: 24px;
height: 24px;
fill: white;
}



/* スクリーンサイズが1000px以上の場合に適用 */
@media screen and (min-width: 1000px) {
.flex-container {
    display: flex;
    /* justify-content: space-between; */
}

main {
    /* border-right: 3px solid #003366; */
    /* width: 50%; */
    /* margin-left: 0; */
    /* max-width: 650px; */
    border-right:none;
}
}








@media screen and (min-width: 1000px) {
.item3 {
    position: fixed;
    top: 75px;
    left: 75%;
    display: block;
    width: 45%;
    max-height: 70vh;
    align-items: center;
    margin: 0 auto;
    /* margin-bottom:60px; */
    background-color: white;
    /* text-align: center; */
    transform: translate(-43%, 0%);
    z-index: 2;
}
}

@media screen and (min-width: 1000px) {
:root {
    --text-color: #333;
    --accent-orange: #cf8d3c;
    /* チラシや価格の色 */
    --accent-blue: #1b3666;
    /* リンクやボタンの色 */
    --bg-gray: #f4f4f4;
}

.body {
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #eee;
    color: var(--text-color);
}
}

@media screen and (min-width: 1000px) {
.container-item3 {
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
}
}

/* --- 上部：最新チラシ --- */
@media screen and (min-width: 1000px) {
.top-banner {
    text-align: center;
    padding: 15px 0;
    font-weight: bold;
    color: #888;
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
}

@media screen and (min-width: 1000px) {
.top-banner a {
    color: var(--accent-orange);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}
}

@media screen and (min-width: 1000px) {
.top-banner .lines {
    color: var(--accent-orange);
    font-weight: normal;
    font-size: 1.5rem;
}

.divider {
    border: none;
    border-top: 1px solid #333;
    margin: 10px 0 20px 0;
}
}

/* --- 特徴リスト --- */
@media screen and (min-width: 1000px) {
.feature-list {
    list-style: none;
    padding: 0;
    width: 60%;
    margin: 0 auto;
    line-height: 1;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}
}

@media screen and (min-width: 1000px) {
.feature-icon {
    width: 50px;
    text-align: center;
    font-size: 2rem;
    margin-right: 15px;
    color: #444;
}

.feature-text {
    display: flex;
    flex-direction: column;
}
}

@media screen and (min-width: 1000px) {
.feature-sub {
    font-size: 0.85rem;
    font-weight: bold;
    color: #444;
}

.feature-main {
    font-size: 1.1rem;
    font-weight: bold;
    color: #222;
}
}

@media screen and (min-width: 1000px) {
.orange-text {
    color: var(--accent-orange);
}
}

/* --- ナビゲーションボタン --- */
@media screen and (min-width: 1000px) {
.body .nav-buttons {
    display: flex;
    justify-content: space-around;
    margin: 30px 0;
}

.body .nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--accent-blue);
    font-weight: bold;
    font-size: 1.1rem;
}

.nav-btn i {
    font-size: 1.5rem;
}
}

@media screen and (min-width: 1000px) {

/* --- 下部：悩み訴求セクション --- */
.concern-section {
    position: relative;
    margin-top: 60px;
    /* 吹き出し用のスペース */
    padding-bottom: 20px;
}

/* 吹き出し部分 */
.speech-bubble {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 2px solid #000;
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: bold;
    font-size: 0.95rem;
    text-align: center;
    z-index: 10;
    white-space: nowrap;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}
}

@media screen and (min-width: 1000px) {

/* 吹き出しのしっぽ */
.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 40%;
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: #000 transparent;
    display: block;
    width: 0;
}

/* 女性スタッフ画像 (位置調整) */
.staff-image {
    position: absolute;
    top: 35px;
    right: 50px;
    width: 140px;
    /* 画像サイズ */
    z-index: 5;
}
}

@media screen and (min-width: 1000px) {

/* コンテンツボックス */
.concern-box {
    border: 2px solid var(--accent-blue);
    border-radius: 20px;
    background-color: #eef2f6;
    /* 薄いグレー/ブルーの背景 */
    padding: 40px 20px 20px 20px;
    position: relative;
    z-index: 1;
}
}

@media screen and (min-width: 1000px) {
.concern-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.concern-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 12px;
    font-weight: bold;
    color: var(--accent-blue);
    font-size: 1rem;
}

.concern-list li::before {
    content: '・';
    position: absolute;
    left: 0;
}
}

@media screen and (min-width: 1000px) {
.concern-sub {
    display: block;
    font-size: 0.85rem;
    color: #888;
    margin-left: 15px;
    margin-top: -8px;
    margin-bottom: 12px;
    font-weight: normal;
}

footer {
    /* width: 50%; */
    /* max-width: 650px; */
    /* margin-left: 5%; */
    /* border-right: 4px solid #003366; */
    /* z-index: -2; */
    width:100%;
    max-width:100%;
}
}

@media screen and (min-width:1427px) {
.flex-container {
    justify-content: center;
}

main {
    width: 50%;
    margin: auto;
    align-items: center;
    border-right: 4px solid #003366;
    border-left: 4px solid #003366;
}
}

@media screen and (min-width:1427px) {
.item1 {
    position: fixed;
    width: 27%;
    top: 40%;
    left: 0%;
    /* transform: translate(-25%, -10%); */
    align-items: center;
    /* box-sizing: border-box; */
    display: block;
    margin: auto;
    justify-content: center;
    z-index: 2;
}
}

@media screen and (min-width:1427px) {
.item3 {
    width: 25%;
    left: 84%;
}

.feature-list {
    width: 75%;
}

.staff-image {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 80px;
}

@media screen and (min-width:1427px) {
    footer {
        /* width: 36%; */
        margin: auto;
        align-items: center;
        /* padding: 20px; */
        border-left: 4px solid #003366;
    }
}
}




/* お知らせと＋ボタンを横並びにする */
.menu-row {
display: flex;
align-items: center;
justify-content: left;
gap: 15px;
/* 文字とボタンの間隔 */
position: relative;
}

/* ＋ボタンのデザイン */
.submenu-btn {
display: inline-flex;
align-items: center;
justify-content: center;
width: 30px;
height: 30px;
border: 1px solid rgba(255, 255, 255, 0.5);
/* 薄い白い枠線 */
border-radius: 50%;
color: white;
font-size: 1.2rem;
cursor: pointer;
transition: transform 0.3s ease;
/* 回転アニメーション用 */
margin-left: 2rem;
}

/* 開いた時に＋ボタンを×（45度回転）にする */
.submenu-btn.open {
transform: rotate(45deg);
background-color: rgba(255, 255, 255, 0.1);
}

/* サブメニューの初期状態（閉じた状態） */
.submenu {
list-style: none;
padding: 0;
margin: 0;
max-height: 0;
/* 高さを0にして隠す */
overflow: hidden;
opacity: 0;
transition: max-height 0.4s ease, opacity 0.4s ease, margin 0.4s ease;
}

/* サブメニューが開いた時の状態 */
.submenu.open {
max-height: 300px;
/* 十分な高さを確保 */
opacity: 1;
margin-top: 15px;
/* 親メニューとの隙間 */
}

/* サブメニュー内のリストスタイル上書き */
.submenu li {
margin: 10px 0 !important;
/* 親のmargin設定を上書きして少し狭く */
opacity: 1 !important;
/* 親のアニメーション設定による透明化を解除 */
transform: none !important;
/* 親のアニメーション設定による移動を解除 */
}

/* サブメニュー内のリンク文字サイズ */
.submenu a {
font-size: 1.1rem;
/* 親メニューより少し小さく */
font-weight: normal;
color: #ddd;
/* 少しグレーにして階層感を出す */
}

/* --- 共通設定 (index.htmlと同じ) --- */
:root {
--primary-navy: #003366;
--accent-blue: #2d8fb8;
--text-main: #333;
--bg-light: #f5f5f7;
--white: #fff;
}

body {
font-family: "Helvetica Neue", Arial, sans-serif;
margin: 0;
padding: 0;
color: var(--text-main);
background: var(--bg-light);
}

a {
text-decoration: none;
color: inherit;
}

img {
max-width: 100%;
display: block;
}


/* ページタイトル */
.page-header {
background: var(--primary-navy);
color: white;
padding: 60px 20px;
text-align: center;
}

.page-title {
margin: 0;
font-size: 2rem;
letter-spacing: 2px;
}

.page-subtitle {
opacity: 0.8;
font-size: 0.9rem;
margin-top: 10px;
}

/* --- フォームのデザイン --- */
.container {
max-width: 800px;
margin: 0 auto;
padding: 60px 20px;
}

.contact-form {
background: var(--white);
padding: 40px;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
margin-bottom: 25px;
}

label {
display: block;
font-weight: bold;
margin-bottom: 8px;
font-size: 0.95rem;
display: flex;
align-items: center;
gap: 10px;
}

.badge-req {
background: #e74c3c;
color: white;
font-size: 0.7rem;
padding: 2px 6px;
border-radius: 4px;
}

.badge-any {
background: #95a5a6;
color: white;
font-size: 0.7rem;
padding: 2px 6px;
border-radius: 4px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 5px;
font-size: 1rem;
box-sizing: border-box;
/* 枠からはみ出さない設定 */
background: #fafafa;
transition: 0.3s;
}

input:focus,
textarea:focus,
select:focus {
outline: none;
border-color: var(--accent-blue);
background: white;
box-shadow: 0 0 0 3px rgba(45, 143, 184, 0.1);
}

textarea {
height: 150px;
resize: vertical;
}

/* 送信ボタン */
.btn-submit {
background: var(--primary-navy);
color: white;
border: none;
border-radius: 20px;
width: auto;
padding: 10px;
font-size: 1.1rem;
font-weight: bold;
cursor: pointer;
transition: 0.3s;
margin-top: 20px;
margin-right: 1rem;
}

.btn-submit:hover {
background: #002244;
transform: translateY(-2px);
}

.btn-reset {
font-size: 1rem;
padding: 10px;
margin-left: 1rem;
cursor: pointer;
transition: 0.3s;
border: none;
border-radius: 20px;
}

.btn-reset:hover {
transform: translateY(-2px);
color: #fff;
background: #333
}

/* メニュー（共通） */
.nav-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 51, 102, 0.95);
z-index: 2000;
opacity: 0;
visibility: hidden;
transition: 0.4s;
display: flex;
align-items: center;
justify-content: center;
}

.nav-overlay.active {
opacity: 1;
visibility: visible;
}

.close-btn {
position: absolute;
top: 20px;
right: 20px;
font-size: 3rem;
color: white;
cursor: pointer;
}

@media (max-width: 480px) {
.contact-form {
    padding: 20px;
}
}
































html {
scroll-behavior: smooth
}

blockquote,
body,
code,
dd,
div,
dl,
dt,
fieldset,
figure,
form,
h1,
h2,
h3,
h4,
h5,
h6,
input,
legend,
li,
ol,
p,
pre,
td,
textarea,
th,
ul {
margin: 0;
padding: 0
}

table {
border-collapse: collapse;
border-spacing: 0
}

fieldset,
img {
border: 0
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
font-style: normal;
font-weight: normal
}

ol,
ul {
list-style: none
}

ol li,
ul li {
list-style-position: inside
}

caption,
th {
text-align: left
}

h1,
h2,
h3,
h4,
h5,
h6 {
font-size: 100%;
font-weight: normal
}

q:after,
q:before {
content: ""
}

abbr,
acronym {
border: 0;
font-variant: normal
}

sup {
vertical-align: text-top
}

sub {
vertical-align: text-bottom
}

input,
select,
textarea {
font-family: inherit;
font-size: inherit;
font-weight: inherit
}

input,
select,
textarea {
font-size: 100%;
}

legend {
color: #000
}

#yui3-css-stamp.cssreset {
display: none
}

*,
:after,
:before {
-webkit-box-sizing: border-box;
-o-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box
}

strong {
font-weight: bold
}

hr {
height: 0;
margin: 0;
padding: 0;
border: 0;
border-top: 1px solid #ccc
}

html {
height: 100%
}

/* body {
background: #fff;
font-family: "Lato", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
height: 100%;
padding-top: 86px !important
}

@media only screen and (max-width:767px) {
body {
    padding-top: 60px !important
}
}

.header {
position: fixed;
z-index: 10000;
top: 0;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
width: 100%;
height: 86px;
-webkit-transition: all 0.3s;
transition: all 0.3s;
border-bottom: 1px solid #ccc;
background-color: #fff;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between
}

.header.is-active {
background-color: #fff;
-webkit-box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15)
}

.header .header_logo {
max-width: 250px;
padding: 0 20px
}

.header .header_logo img {
width: 100%;
max-width: 216px
}

.header .header_nav {
width: calc(100% - 250px);
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center
}

.header .header_info {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end;
margin-left: auto
}

.header .header_info .header_contact {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-sizing: border-box;
box-sizing: border-box
}

.header .header_info .header_search {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
padding-right: 30px
}

.header .header_info .header_search>input {
width: 100%;
max-width: 260px;
padding: 10px 35px 10px 15px;
border-width: 1px;
border-color: #000;
border-radius: 3px
}

.header .header_info .header_search>button {
margin-left: -30px;
border: none;
background-color: transparent
}

.header .header_info .header_time {
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding: 5px 20px;
border-right: 2px solid #000;
border-left: 2px solid #000
}

.header .header_info .header_time dl {
display: -webkit-box;
display: -ms-flexbox;
display: flex
}

.header .header_info .header_time dl dd,
.header .header_info .header_time dl dt {
font-weight: bold;
font-size: 16px
}

.header .header_info .header_time dl dt {
width: 80px
}

.header .header_info p {
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding: 5px 20px
}

.header .header_info p>a {
font-weight: bold;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
text-align: center;
text-decoration: none;
color: #000;
font-size: 10px
}

.header .header_info p>a i,
.header .header_info p>a svg {
margin-bottom: 10px;
font-size: 18px
}

.header .header_info p>a:hover {
opacity: 0.8
}

.header .header_menu {
display: none
}

@media only screen and (max-width:767px) {
.header {
    height: 60px
}

.header .header_info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.header .header_info .header_search {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.header .header_info .header_search>input {
    width: 100%;
    max-width: 100%
}

.header .header_info .header_contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    padding: 0 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.header .header_info .header_time {
    border-left: none;
    padding: 5px 10px
}

.header .header_info .header_time dl {
    margin-bottom: 5px
}

.header .header_info .header_time dl:last-child {
    margin-bottom: 0
}

.header .header_info .header_time dl dd,
.header .header_info .header_time dl dt {
    font-size: 14px;
    line-height: 1
}

.header .header_info .header_time dl dt {
    width: 60px
}

.header .header_info p>a i,
.header .header_info p>a svg {
    margin-bottom: 5px;
    font-size: 16px
}

.header .header_menu {
    line-height: 3px;
    position: absolute;
    z-index: 2001;
    top: 15px;
    right: 20px;
    display: block;
    width: 25px;
    cursor: pointer;
    *zoom: 1
}

.header .header_menu:after,
.header .header_menu:before {
    content: " ";
    display: block;
    line-height: 0
}

.header .header_menu:after {
    content: " ";
    display: block;
    clear: both
}

.header .header_menu span,
.header .header_menu:after,
.header .header_menu:before {
    display: block;
    height: 2px;
    margin: 5px 0;
    content: "";
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    background-color: #000
}

.header .header_menu.is-active {
    top: 15px
}

.header .header_menu.is-active:before {
    -webkit-transform: translateY(7px) rotate(45deg);
    transform: translateY(7px) rotate(45deg)
}

.header .header_menu.is-active span {
    -webkit-transform: scale(0);
    transform: scale(0)
}

.header .header_menu.is-active:after {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg)
}
}

body.admin-bar .header {
top: 32px
}

@media only screen and (max-width:767px) {
body.admin-bar .header {
    top: 46px
}
}

.footer {
position: sticky;
top: 100vh;
background-color: #000
}

.footer .footer_inner {
padding: 60px 15px;
width: 100%;
max-width: 1200px;
margin: 0 auto;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-align: start;
-ms-flex-align: start;
align-items: flex-start
}

.footer .footer_logo {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
margin-bottom: 15px
}

.footer .footer_logo span {
font-size: 11px;
color: #fff;
padding: 10px 0
}

.footer .footer_logo img {
height: auto;
max-width: 100%
}

.footer .footer_text {
color: #fff;
font-size: 14px;
line-height: 1.8
}

.footer .footer_info {
width: 50%
}

.footer .footer_sns {
width: 50%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
margin-left: auto;
-webkit-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end
}

.footer .footer_sns h3 {
letter-spacing: 0.1em;
color: #fff;
font-size: 14px;
line-height: 1
}

.footer .footer_sns ul {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center
}

.footer .footer_sns ul li {
color: #fff;
padding: 0 10px
}

@media screen and (max-width:768px) {
.footer .footer_sns ul li {
    margin-bottom: 10px
}
}

.footer .footer_sns ul li a {
color: #fff;
font-size: 20px
}

.footer .footer_sns ul li:not(:last-child) {
margin-right: 10px
}

.footer .footer_copyright {
width: 100%;
margin-top: 30px;
text-align: center;
color: #fff
}

@media only screen and (max-width:767px) {
.footer {
    padding: 30px 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.footer .footer_logo {
    margin: 0 auto 20px;
    text-align: center
}

.footer .footer_contact {
    width: 100%;
    margin-bottom: 20px
}

.footer .footer_nav {
    width: 100%;
    margin-bottom: 20px
}

.footer .footer_nav .footer_nav_list {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: -10px
}

.footer .footer_sns {
    width: 100%
}
} */

@media only screen and (max-width:767px) {
body.admin-bar main {
    padding-top: 46px
}
}

.section {
scroll-margin-top: 86px;
padding: 70px 0
}

.section.is-black {
background-color: #000
}

.section .section_inner {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 15px
}

.section .section_header {
position: relative;
padding-bottom: 20px
}

.section .section_header .section_headerBtn {
position: absolute;
top: 36px;
right: 0
}

.section .section_desc {
padding-bottom: 30px
}

.section .section_desc p {
font-weight: bold;
font-size: 16px
}

.section .section_body .section_pic {
padding: 30px 0
}

.section .section_body .section_text p {
line-height: 3;
font-size: 16px
}

.section.section-concept .section_inner {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap
}

.section.section-concept .section_inner .section_headerWrapper {
width: 50%
}

.section.section-concept .section_inner .section_pic {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin: 0 -10px;
padding-top: 0px
}

.section.section-concept .section_inner .section_pic>div {
width: 33.3333333333%;
padding: 0 10px;
text-align: center
}

.section.section-concept .section_inner .section_pic>div img {
height: auto;
max-width: 100%
}

.section.section-concept .section_inner .section_body {
width: 50%;
padding-left: 30px;
padding-top: 70px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between
}

.section.section-concept .section_inner .section_body p {
line-height: 2
}

.section.section-concept .section_inner .section_btn {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end;
width: 100%
}

.section.section-info .section_inner {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap
}

.section.section-info .section_content {
width: calc(50% - 10px);
margin-right: 20px
}

.section.section-info .section_pic {
width: calc(50% - 10px);
margin-right: 0
}

.section.section-info .section_pic img {
height: auto;
max-width: 100%
}

.section.section-access .section_inner {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: reverse;
-ms-flex-direction: column-reverse;
flex-direction: column-reverse
}

.section.section-access .section_inner .section_pic {
margin-bottom: 20px
}

.section.section-access .section_inner .section_pic img {
height: auto;
max-width: 100%
}

.section.section-access .section_inner .section_content {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
width: 100%
}

.section.section-access .section_inner .section_content .section_header {
width: 15%
}

.section.section-access .section_inner .section_content .section_body {
width: 85%;
padding: 0 20px
}

.section.section-access .section_inner .section_content .section_btn {
width: 100%;
max-width: 350px;
margin: 15px 0
}

.section.section-foodList .section_body {
padding-top: 50px;
padding-bottom: 50px;
border-bottom: 1px solid #ddd
}

.section.section-foodList .section_body:last-child {
border-bottom: none
}

@media only screen and (max-width:767px) {
.section {
    padding: 40px 0
}

.section.section-concept .section_inner {
    padding: 0 15px
}

.section.section-concept .section_content {
    width: 100%;
    margin: 0 auto
}

.section.section-concept .section_header {
    padding-bottom: 15px
}

.section.section-concept .section_picGroup {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.section.section-concept .section_body {
    width: 100%;
    margin-right: 0
}

.section.section-concept .section_text {
    font-size: 14px
}

.section.section-info .section_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.section.section-info .section_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.section.section-info .section_content {
    width: 100%;
    margin: 0 auto 20px
}

.section.section-info .section_pic {
    width: 100%;
    margin: 0 auto 20px
}

.section.section-access .section_inner .section_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%
}

.section.section-access .section_inner .section_content .section_header {
    width: 25%
}

.section.section-access .section_inner .section_content .section_btn {
    width: 100%;
    max-width: 350px;
    margin: 15px 0
}
}

.is-full .section .section_inner {
max-width: none;
padding-left: 0;
padding-right: 0
}

.is-full .section_header {
max-width: 1200px;
margin-left: auto;
margin-right: auto
}

.gnav {
width: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center
}

.gnav>ul {
display: -webkit-box;
display: -ms-flexbox;
display: flex
}

.gnav>ul>li {
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding: 0 15px;
text-align: center
}

.gnav>ul>li>a {
font-weight: bold;
white-space: nowrap;
text-decoration: none;
color: #000;
font-size: 15px
}

.gnav>ul>li>a:hover {
opacity: 0.8
}

@media only screen and (max-width:767px) {
.gnav {
    position: fixed;
    z-index: 100;
    top: 60px;
    left: 0;
    display: none;
    overflow-x: hidden;
    width: 100%;
    height: 100%;
    padding-bottom: 100px;
    background: white
}

.gnav.is-active {
    display: block;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out
}

.gnav>ul {
    display: block;
    margin: 0 auto;
    padding: 0 0
}

.gnav>ul>li {
    padding: 10px 15px;
    list-style: none;
    border-bottom: 1px solid #000
}

.gnav>ul>li>a {
    font-weight: bold;
    display: block;
    text-align: center;
    text-decoration: none;
    color: #000;
    font-size: 16px
}

.gnav>ul>li>a>span {
    display: block;
    text-align: center;
    font-size: 12px
}
}

.btn {
position: relative;
font-weight: bold;
line-height: 1.4;
display: inline-block;
padding: 10px 30px;
-webkit-transition: 0.3s;
transition: 0.3s;
text-align: center;
text-decoration: none;
letter-spacing: 0.1em;
text-transform: uppercase;
color: #fff;
border: 1px solid #707070;
color: #000;
font-size: 14px
}

.btn:hover {
opacity: 0.8
}

.btn.is-active {
color: #fff;
background-color: #000;
border-color: #000
}

.btn-primary {
display: block;
margin: 0 auto
}

.btn-primary:after {
position: absolute;
top: 50%;
right: 1.5em;
font-family: "Font Awesome 5 Free";
font-weight: 900;
content: "\f0da";
-webkit-transition: 0.3s;
transition: 0.3s;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
color: #000;
font-size: 14px
}

.btn-primary:hover {
text-decoration: none;
background-position: right center
}

.btn-primary:hover:after {
right: 1.2em
}

@media screen and (max-width:768px) {
.btn-primary:hover:after {
    right: 1.5em
}
}

.btn-more {
border: none;
text-align: left;
max-width: 180px;
width: 285px
}

.btn-more:after {
position: absolute;
content: "";
width: 48px;
height: 15px;
background: url("../img/common/btn-arrow.svg");
background-size: contain;
background-repeat: no-repeat;
top: 50%;
margin-top: -8px;
font-size: 14px
}

.btn-block {
display: block;
margin: 0 auto
}

.btn-sm {
padding: 4px 6px;
font-size: 12px
}

.btn-center {
display: block;
margin-right: auto;
margin-left: auto
}

.btn-transparent {
border: 1px solid #fff;
background: none
}

.btn-transparent:hover {
opacity: 0.8
}

@media only screen and (max-width:767px) {
.btn {
    padding: 5px 10px;
    font-size: 12px
}
}

.card {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
height: 100%
}

.card .card_body {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
height: 100%
}

.card .card_label {
position: absolute;
top: 10px;
left: 0;
z-index: 1000
}

.card .card_label .label {
margin-right: 5px
}

.card .card_pic {
margin-bottom: 15px;
overflow: hidden;
height: 0;
padding-bottom: 57.1428571429%
}

.card .card_pic:hover img {
-webkit-transform: scale(1.1);
transform: scale(1.1)
}

.card .card_pic img {
width: 100%;
height: auto;
-webkit-transition: -webkit-transform 0.6s ease;
transition: -webkit-transform 0.6s ease;
transition: transform 0.6s ease;
transition: transform 0.6s ease, -webkit-transform 0.6s ease
}

.card .card_title {
font-weight: bold;
line-height: 1.2;
padding-bottom: 15px;
font-size: 18px
}

@media screen and (max-width:768px) {
.card .card_title {
    padding-bottom: 10px
}
}

.card time {
margin-top: auto;
font-size: 12px
}

.card-wrapper {
margin-bottom: -30px
}

@media screen and (max-width:768px) {
.card-wrapper {
    display: block;
    margin-bottom: 0
}
}

.card-wrapper .card {
margin-bottom: 30px
}

.cardList {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin: 0 -15px
}

.cardList.cardList-1row .cardList_item {
padding-bottom: 0
}

.cardList .cardList_item {
width: 33.3333333333%;
padding: 0 15px 80px
}

.cardList .cardList_item a {
text-decoration: none;
color: #000;
-webkit-transition: 0.3s;
transition: 0.3s
}

.cardList .cardList_item a:hover {
opacity: 0.8
}

.cardList .cardList_item:nth-child(3n) {
margin-right: 0
}

.cardList .cardList_item:last-child {
margin-bottom: 0
}

@media only screen and (max-width:767px) {
.cardList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.cardList .cardList_item {
    width: 100%;
    margin: 0 auto 20px;
    padding-bottom: 30px
}

.cardList .cardList_item:last-child {
    margin-bottom: 0
}
}

.is-black .heading {
color: #fff
}

.is-black .heading:after {
background: -webkit-gradient(linear, left top, right top, color-stop(5%, #fff), color-stop(5%, #fff), to(#fff));
background: linear-gradient(to right, #fff 5%, #fff 5%, #fff 100%)
}

.heading {
font-weight: bold;
line-height: 1.2
}

.heading>span {
display: block;
padding-bottom: 10px;
letter-spacing: 0.05em;
font-size: 14px
}

.heading-primary {
position: relative;
display: block;
margin-bottom: 15px;
padding-bottom: 15px;
letter-spacing: 0.05em;
text-transform: uppercase;
color: #000;
font-size: 36px
}

@media only screen and (max-width:767px) {
.heading-primary {
    font-size: 18px
}
}

.heading-primary:after {
position: absolute;
right: 0;
bottom: 0;
left: 0;
width: 100%;
height: 2px;
content: "";
background: -webkit-gradient(linear, left top, right top, color-stop(5%, #000), color-stop(5%, #ccc), to(#ccc));
background: linear-gradient(to right, #000 5%, #ccc 5%, #ccc 100%)
}

.heading-secondary {
font-weight: bold;
line-height: 1;
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
font-size: 32px
}

@media only screen and (max-width:767px) {
.heading-secondary {
    font-size: 18px;
    line-height: 1.5
}
}

.heading-secondary a {
color: #000;
text-decoration: none
}

.heading-secondary a:hover {
opacity: 0.7
}

.heading-secondary span {
padding-left: 10px;
padding-bottom: 0;
font-size: 12px;
color: #555
}

.label {
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: 3px 15px;
font-size: 12px;
font-weight: bold;
line-height: 1;
text-decoration: none;
white-space: nowrap;
background-color: #000
}

a.label:hover {
background-color: black;
font-weight: bold;
color: #fff
}

.label-lg {
padding: 5px 50px 5px 30px;
font-size: 15px
}

.label-radius {
border-radius: 5px
}

.label-rounded {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
border-radius: 50%;
width: 75px;
height: 75px
}

.label-main {
color: #45C6E5;
border: 1px solid #45C6E5;
color: #fff
}

.label-theme {
color: #000;
border: 1px solid #000;
color: #fff
}

.label-gray {
color: #707070;
border: 1px solid #707070;
color: #fff
}

.label-light-gray {
color: #f5f5f5;
border: 1px solid #f5f5f5;
color: #fff
}

.label-black {
color: #000;
border: 1px solid #000;
color: #fff
}

.label-white {
color: #fff;
border: 1px solid #fff;
color: #fff
}

.label-transparent {
color: rgba(255, 255, 255, 0.3);
border: 1px solid rgba(255, 255, 255, 0.3);
color: #fff
}

.label-sky {
color: #45C6E5;
border: 1px solid #45C6E5;
color: #fff
}

.label-yellow {
color: #F9D93B;
border: 1px solid #F9D93B;
color: #fff
}

.label-blue {
color: #64C8E6;
border: 1px solid #64C8E6;
color: #fff
}

.label-orange {
color: #FD9F5B;
border: 1px solid #FD9F5B;
color: #fff
}

.label-darkblue {
color: #1F7B96;
border: 1px solid #1F7B96;
color: #fff
}

.label-green {
color: #2D953C;
border: 1px solid #2D953C;
color: #fff
}

@media only screen and (max-width:767px) {
.label {
    padding: 2px 15px
}

.label-lg {
    padding: 4px 30px 4px 15px;
    font-size: 12px
}
}

.logo {
line-height: 1;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column
}

.logo>a {
font-weight: bold;
display: block;
white-space: nowrap;
text-decoration: none;
color: #000;
font-size: 24px
}

.logo>a>span {
font-weight: normal;
line-height: 1;
display: block;
padding-top: 5px;
font-size: 12px
}

.logo.logo-white>a {
color: #fff
}

.logo.logo-white>a>span {
color: #fff
}

.pageTop {
position: fixed;
right: 45px;
bottom: 50px;
z-index: 1;
display: none
}

@media screen and (max-width:768px) {
.pageTop {
    right: 20px;
    bottom: 20px
}
}

.pageTop>a {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
width: 77px;
height: 77px;
padding: 12px;
text-align: center;
text-decoration: none;
color: #000;
-webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
background-color: #000;
color: #fff;
border-radius: 50%
}

.pageTop>a span {
font-size: 10px;
margin-top: 5px
}

.pageTop>a:hover {
opacity: 0.8
}

@media screen and (max-width:768px) {
.pageTop>a:hover {
    opacity: 1
}
}

.breadcrumb {
position: sticky;
top: 64px;
z-index: 1;
padding: 8px 0;
list-style: none;
background-color: #f5f5f5;
border-top: 1px solid #aaa
}

@media screen and (max-width:768px) {
.breadcrumb {
    padding: 5px 0
}
}

.breadcrumb a {
color: #000
}

.breadcrumb a:hover {
text-decoration: none
}

.breadcrumb .breadcrumb_inner {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
font-size: 10px;
color: #888
}

.breadcrumb .breadcrumb_inner>span {
display: inline;
list-style: none;
text-transform: uppercase;
padding-right: 5px;
padding-left: 5px;
color: #333
}

@media screen and (max-width:768px) {
.breadcrumb .breadcrumb_inner>span {
    font-size: 10px
}
}

.breadcrumb .breadcrumb_inner>span a,
.breadcrumb .breadcrumb_inner>span span {
font-size: 12px
}

.breadcrumb .breadcrumb_inner>span:first-child {
padding-left: 0
}

.breadcrumb .breadcrumb_inner>span:last-child {
padding-right: 0
}

.kv {
position: relative;
width: 100%;
height: 80vh
}

.kv .kv_slider {
position: absolute;
width: 100%;
z-index: 998
}

.kv .kv_slider .kv_sliderItem {
width: 100%;
height: 80vh;
background-repeat: no-repeat;
background-size: cover
}

.kv .kv_inner {
position: absolute;
z-index: 1000;
width: 100%;
height: 80vh;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column
}

.kv .kv_title {
font-size: 91px;
line-height: 1;
font-weight: bold;
color: #fff;
text-align: center
}

.kv .kv_subtitle {
font-size: 27px;
font-weight: bold;
position: relative;
color: #fff
}

.kv .kv_subtitle:after,
.kv .kv_subtitle:before {
content: "";
position: absolute;
background: #fff;
width: 70px;
height: 1px;
top: calc(50% - 1px)
}

.kv .kv_subtitle:before {
left: -90px
}

.kv .kv_subtitle:after {
right: -90px
}

.kv .kv_overlay {
position: absolute;
z-index: -1;
top: 0;
left: 0;
width: 100%;
height: 80vh;
background-color: rgba(0, 0, 0, 0.36);
z-index: 999
}

.kv .kv_scroll {
position: absolute;
z-index: 1000;
bottom: 20px;
width: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center
}

.kv .kv_scroll .kv_scrollLink {
display: inline-block;
text-decoration: none
}

.kv .kv_scroll .kv_scrollLink p {
font-weight: bold;
text-align: center;
color: #fff;
font-size: 18px
}

.kv .kv_scroll .kv_scrollIcon {
padding: 4px;
text-align: center;
color: #fff
}

@media only screen and (max-width:767px) {
.kv {
    position: relative;
    width: 100%;
    margin-top: -25px
}

.kv .kv_inner {
    padding: 100px 0
}

.kv .kv_title {
    font-weight: bold;
    line-height: 1;
    text-align: center;
    color: #fff;
    font-size: 45px
}

.kv .kv_subtitle {
    font-size: 18px
}

.kv .kv_subtitle:after,
.kv .kv_subtitle:before {
    top: calc(50% - 1px);
    width: 30px;
    height: 1px
}

.kv .kv_subtitle:before {
    left: -40px
}

.kv .kv_subtitle:after {
    right: -40px
}

.kv .kv_overlay {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}
}

.content * {
font-family: "游ゴシック体", sans-serif
}

.content h2 {
font-size: 20px;
border-left: 3px solid #000;
font-weight: bold;
margin-bottom: 15px;
padding-left: 15px
}

.content img {
width: 100%;
max-width: 100%;
height: auto;
margin-bottom: 1em
}

.content p {
font-size: 16px;
line-height: 1.8;
margin-bottom: 15px
}

.content p:last-child {
margin-bottom: 0
}

.content a {
color: #000
}

.content a:hover {
text-decoration: none
}

.content em {
font-weight: bold;
font-style: italic
}

.content iframe {
width: 100%;
margin-bottom: 30px
}

.content table {
border-collapse: collapse;
width: 100%
}

.content table td,
.content table th {
padding: 0.5em
}

.content .is-style-stripes table tbody tr:nth-child(odd) {
background-color: #f0f0f0
}

.content .foodCard {
height: 100%
}

.content .foodCard-border {
display: inline-block
}

.content .foodCard-border a {
border-radius: 5px;
border: 1px solid #666;
padding-bottom: 20px
}

.content .foodCard a {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
color: #000;
text-decoration: none;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
height: 100%;
-webkit-transition: 0.3s;
transition: 0.3s
}

.content .foodCard a:hover {
opacity: 0.8
}

.content .foodCard .foodCard_label {
position: absolute;
content: "";
top: 0;
left: 0px;
z-index: 10;
background-color: #000;
border-radius: 50%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
color: #fff;
font-weight: bold;
font-size: 14px;
width: 80px;
height: 80px
}

.content .foodCard .foodCard_pic {
max-width: 280px;
height: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: end;
-ms-flex-align: end;
align-items: end;
padding: 20px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
margin-bottom: 20px
}

.content .foodCard .foodCard_pic img {
height: auto;
max-width: 100%;
margin: auto
}

.content .foodCard .foodCard_body {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center
}

.content .foodCard .foodCard_body .foodCard_title {
font-weight: bold;
font-size: 20px;
padding-bottom: 16px;
line-height: 1;
position: relative;
margin: auto
}

.content .foodCard .foodCard_body .foodCard_title:after {
content: " ";
display: block;
border-bottom: 1px solid #000;
position: absolute;
bottom: 8px;
left: -10px;
width: calc(100% + 20px)
}

.content .foodCard .foodCard_body .foodCard_price {
font-size: 16px;
margin: auto
}

@media only screen and (max-width:767px) {
.content .foodCard .foodCard_label {
    top: -20px;
    left: 0;
    font-size: 10px;
    width: 60px;
    height: 60px
}
}

.content>* {
margin-right: auto;
margin-left: auto
}

.content>:not(.alignfull),
.content>:not(.alignwide) {
max-width: var(--wp--style--global--content-size)
}

.content>.alignwide {
max-width: var(--wp--style--global--wide-size)
}

.content>.alignfull {
max-width: none
}

.infoList {
margin-left: 20px;
padding: 0
}

.infoList .infoList_item {
position: relative;
padding: 20px 30px;
-webkit-box-sizing: border-box;
box-sizing: border-box
}

.infoList .infoList_item:before {
position: absolute;
content: "";
font-family: "Font Awesome 5 Free";
font-weight: 900;
color: #000;
left: 0;
top: 25px
}

.infoList .infoList_item:first-child:before {
content: "\f017"
}

.infoList .infoList_item:nth-child(2):before {
content: "\f3cf"
}

.infoList .infoList_item:last-child:before {
content: "\f0e0"
}

.infoList .infoList_item .infoList_prepend {
display: block;
font-size: 14px
}

.infoList .infoList_item .infoList_append {
display: block;
font-size: 14px
}

.infoList .infoList_item .infoList_num {
display: inline-block;
font-size: 26px;
font-weight: bold
}

.infoList .infoList_item .infoList_time {
display: inline-block;
font-size: 16px;
font-weight: bold
}

.infoList .infoList_item .infoList_btn {
margin: 15px 0;
width: 100%;
max-width: 285px
}

.post .post_content {
padding: 30px 0
}

.post .post_content time {
display: block;
text-align: right;
font-size: 16px;
margin-bottom: 20px;
font-weight: bold
}

.post .post_related {
padding: 70px 0 0;
margin-top: 70px;
border-top: 1px solid #ccc
}

@media only screen and (max-width:767px) {
.post .post_content {
    padding: 15px 0 30px
}

.post .post_prevNext {
    padding-top: 20px
}

.post .post_prevNext .post_prevNext_item a {
    font-size: 12px
}

.post .post_prevNext .post_prevNext_item a i {
    font-size: 18px
}
}

.is-full .post .post_content time {
max-width: 1200px;
margin-left: auto;
margin-right: auto
}

.is-full .post .post_footer {
max-width: 1200px;
margin-left: auto;
margin-right: auto
}

main .archive {
padding: 0px 0 40px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between
}

main .archive_title {
font-weight: bold;
font-size: 14px;
line-height: 1;
color: #000;
margin-bottom: 10px
}

@media only screen and (max-width:767px) {
main .archive_title{
margin-top:2rem;
}
}
main .archive_list {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-left: -10px;
margin-right: -10px;
margin-bottom: -10px
}

main .archive_list li {
padding-left: 10px;
padding-right: 10px;
margin-bottom: 10px
}

main .archive_list li a {
position: relative;
font-weight: bold;
line-height: 1.4;
display: inline-block;
padding: 10px 30px;
-webkit-transition: 0.3s;
transition: 0.3s;
text-align: center;
text-decoration: none;
letter-spacing: 0.1em;
text-transform: uppercase;
color: #fff;
border: 1px solid #707070;
color: #000;
font-size: 14px
}

main .archive_list li a:hover {
color: #fff;
background-color: #000;
border-color: #000
}

main .archive_list li a[aria-current] {
color: #fff;
background-color: #000;
border-color: #000
}

main .archive_list li.current-cat a {
color: #fff;
background-color: #000;
border-color: #000
}

@media only screen and (max-width:767px) {
main .archive {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

main .archive_yealy {
    padding-top: 20px
}

main .archive_list li a {
    padding: 5px 10px;
    font-size: 12px
}
}

.foodList {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-js-display: flex;
margin-right: -10px;
margin-left: -10px;
-ms-flex-wrap: wrap;
flex-wrap: wrap
}

.foodList .foodList_item {
width: calc((100% - 60px) / 3);
padding: 20px 15px;
margin: 20px 10px;
list-style: none;
-webkit-box-sizing: border-box;
box-sizing: border-box;
border-right: 1px solid #ccc
}

.foodList .foodList_item:nth-child(3n) {
border-right: none
}

@media only screen and (max-width:767px) {
.foodList .foodList_item {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #ccc
}
}

.foodCard {
height: 100%
}

.foodCard-border {
display: inline-block
}

.foodCard-border a {
border-radius: 5px;
border: 1px solid #666;
padding-bottom: 20px
}

.foodCard a {
position: relative;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
color: #000;
text-decoration: none;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
height: 100%;
-webkit-transition: 0.3s;
transition: 0.3s
}

.foodCard a:hover {
opacity: 0.8
}

.foodCard .foodCard_label {
position: absolute;
content: "";
top: 0;
left: 0px;
z-index: 10;
background-color: #000;
border-radius: 50%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
color: #fff;
font-weight: bold;
font-size: 14px;
width: 80px;
height: 80px
}

.foodCard .foodCard_pic {
max-width: 280px;
height: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: end;
-ms-flex-align: end;
align-items: end;
padding: 20px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
margin-bottom: 20px
}

.foodCard .foodCard_pic img {
height: auto;
max-width: 100%;
margin: auto
}

.foodCard .foodCard_body {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center
}

.foodCard .foodCard_body .foodCard_title {
font-weight: bold;
font-size: 20px;
padding-bottom: 16px;
line-height: 1;
position: relative;
margin: auto
}

.foodCard .foodCard_body .foodCard_title:after {
content: " ";
display: block;
border-bottom: 1px solid #000;
position: absolute;
bottom: 8px;
left: -10px;
width: calc(100% + 20px)
}

.foodCard .foodCard_body .foodCard_price {
font-size: 16px;
margin: auto
}

@media only screen and (max-width:767px) {
.foodCard .foodCard_label {
    top: -20px;
    left: 0;
    font-size: 10px;
    width: 60px;
    height: 60px
}
}

.food .food_body {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-left: -20px;
margin-right: -20px;
padding-bottom: 30px
}

.food .food_body .food_text {
width: calc(50% - 40px);
margin: 0 20px
}

.food .food_body .food_pic {
width: calc(50% - 40px);
margin: 0 20px
}

.food .food_content p {
font-size: 16px;
padding: 15px 0;
line-height: 2
}

.food .food_pic {
position: relative
}

.food .food_pic img {
height: auto;
max-width: 100%
}

.food .food_label {
position: absolute;
content: "";
top: -30px;
left: -30px;
z-index: 10;
background-color: #000;
border-radius: 50%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
color: #fff;
font-weight: bold;
font-size: 14px;
width: 80px;
height: 80px
}

.food .food_list {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
padding: 30px 0;
margin: 0 auto;
border: 1px solid #ccc
}

.food .food_list .food_item {
width: 33.3333%;
padding: 0 20px;
-webkit-box-sizing: border-box;
box-sizing: border-box;
border-right: 1px solid #ccc
}

.food .food_list .food_item:last-child {
border-right: none
}

.food .food_list .food_itemLabel {
font-size: 14px;
font-weight: bold;
color: #666666;
display: inline-block;
padding: 0 10px
}

.food .food_list .food_itemData {
font-size: 14px;
font-weight: bold;
color: #000;
display: inline-block;
padding: 0 10px
}

@media only screen and (max-width:767px) {
.food .food_body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 15px
}

.food .food_body .food_text {
    width: 100%;
    margin: 0
}

.food .food_body .food_pic {
    width: 100%;
    margin: 0
}

.food .food_body .food_label {
    top: -10px;
    left: -10px;
    font-size: 10px;
    width: 60px;
    height: 60px
}

.food .food_text p {
    font-size: 14px;
    padding: 10px 0
}

.food .food_list {
    padding: 5px 0
}

.food .food_list .food_item {
    width: 100%;
    padding: 5px;
    border-right: none;
    border-bottom: 1px solid #ccc
}

.food .food_list .food_item:last-child {
    border-bottom: none
}

.food .food_footer {
    margin-bottom: 50px
}
}

.prevNext {
padding-top: 50px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
width: 100%
}

.prevNext .prevNext_item {
width: 50%
}

.prevNext .prevNext_item a {
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: inline-flex;
color: #000;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
text-decoration: none
}

.prevNext .prevNext_item a i {
color: #45C6E5;
font-size: 28px
}

.prevNext .prevNext_item a span {
display: inline-block;
padding: 0 10px
}

.prevNext .prevNext_item a:hover span {
text-decoration: underline
}

.prevNext .prevNext_item-prev {
border-right: 1px solid #224163;
margin-right: auto
}

.prevNext .prevNext_item-next {
text-align: right;
margin-left: auto
}

@media only screen and (max-width:767px) {
.prevNext {
    padding-top: 20px
}

.prevNext .prevNext_item a {
    font-size: 12px
}

.prevNext .prevNext_item a i {
    font-size: 18px
}
}

.pagination {
width: 100%;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
padding: 20px 0;
margin: 0 auto
}

.pagination .wp-pagenavi {
display: -webkit-box;
display: -ms-flexbox;
display: flex
}

.pagination .wp-pagenavi span,
.pagination .wp-pagenavi>a {
min-width: 42px;
height: 38px;
font-weight: bold;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
border-radius: 5px 5px 5px 5px;
border: 1px solid #999999;
color: #000;
text-decoration: none;
margin: 0 5px
}

.pagination .wp-pagenavi span.pages,
.pagination .wp-pagenavi>a.pages {
border: none
}

.pagination .wp-pagenavi span.nextpostslink,
.pagination .wp-pagenavi span.previouspostslink,
.pagination .wp-pagenavi>a.nextpostslink,
.pagination .wp-pagenavi>a.previouspostslink {
position: relative
}

.pagination .wp-pagenavi>a:hover {
border: 1px solid #000;
background: #000;
color: #fff
}

.pagination .wp-pagenavi>a:hover.nextpostslink:before,
.pagination .wp-pagenavi>a:hover.previouspostslink:before {
color: #fff
}

.pagination .wp-pagenavi>span.current {
border: 1px solid #000;
background: #000;
color: #fff
}

@media only screen and (max-width:767px) {

.pagination .wp-pagenavi span,
.pagination .wp-pagenavi>a {
    width: 33px;
    height: 30px
}
}

.form {
max-width: 800px;
width: 100%;
margin: auto
}

.form_group {
padding: 30px 0;
border-bottom: 1px dotted #ccc
}

.form_group:last-child {
border-bottom: 0;
padding-bottom: 0
}

.form_group label {
font-weight: bold;
font-size: 16px
}

.form_group label span {
font-size: 12px;
font-weight: bold;
color: #D93B00
}

.form_group>div input,
.form_group>div textarea {
padding: 10px;
font-size: 16px;
width: 100%
}

.form_btn {
margin: auto;
max-width: 80%
}

.form_btn input {
color: #fff;
background-color: #000;
border-color: #000
}

.form_btn-back {
margin: auto;
max-width: 80%;
padding-top: 30px
}

.form_btn-back input {
color: #000;
background-color: #fff;
border-color: #ccc
}

.latest {
border-top: 1px solid #666;
margin-top: 50px;
padding-top: 50px
}

.latest_header {
padding-bottom: 20px
}

.is-full .latest {
max-width: 1200px;
margin-left: auto;
margin-right: auto
}

.comments {
border-top: 1px solid #ddd;
padding-top: 50px;
margin-top: 50px;
font-size: 14px
}

.comments a {
color: #000
}

.comments a:hover {
text-decoration: none
}

.comments .comment-respond .comment-reply-title {
font-size: 18px
}

.comments .comment-respond+p {
border-top: 1px dotted #eee;
border-bottom: 1px dotted #eee;
text-align: right
}

.comments .comment-form .comment-notes {
font-size: 12px
}

.comments .comment-form .logged-in-as {
text-align: right;
font-size: 14px
}

.comments .comment-form .comment-form-comment label {
display: block
}

.comments .comment-form .comment-form-comment textarea {
width: 100%;
height: 200px;
padding: 10px
}

.comments .comment-form .comment-form-author,
.comments .comment-form .comment-form-email,
.comments .comment-form .comment-form-url {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center
}

.comments .comment-form .comment-form-author label,
.comments .comment-form .comment-form-email label,
.comments .comment-form .comment-form-url label {
width: 180px;
white-space: nowrap
}

.comments .comment-form .comment-form-author input,
.comments .comment-form .comment-form-email input,
.comments .comment-form .comment-form-url input {
width: calc(100% - 180px);
padding: 10px
}

.comments .comment-form .comment-form-cookies-consent {
font-size: 12px
}

.comments .comment-form .form-submit {
text-align: center
}

.comments .comment-form .form-submit .submit {
display: inline-block;
padding: 15px 25px;
cursor: pointer;
font-size: 16px;
line-height: 1;
text-align: center;
text-decoration: none;
border-radius: 10px 10px 10px 10px;
border: none;
background-color: #eee;
position: relative
}

.comments .comment-form .form-submit .submit:hover {
opacity: 0.8
}

.comments .commentlist .comment {
padding: 15px 0;
border-bottom: 1px dotted #ddd
}

.comments .commentlist .comment:last-child {
border-bottom: none
}

.comments .commentlist .comment .children {
padding-left: 30px;
margin-left: 30px;
border-left: 2px solid #eee
}

.comments .commentlist .comment .comment-body .comment-awaiting-moderation {
text-align: center;
display: block;
padding-top: 15px
}

.comments .commentlist .comment .comment-body .comment-author {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center
}

.comments .commentlist .comment .comment-body .comment-author cite {
margin-left: 10px
}

.comments .commentlist .comment .comment-body .comment-meta {
text-align: right;
font-size: 12px
}

.comments .commentlist .comment .comment-body p {
font-size: 16px
}

.comments .commentlist .comment .comment-body .reply {
text-align: center
}

.comments .commentlist .comment .comment-body .reply .comment-reply-link {
display: inline-block;
padding: 10px 15px;
cursor: pointer;
font-size: 14px;
line-height: 1;
text-align: center;
text-decoration: none;
border-radius: 10px 10px 10px 10px;
border: none;
background-color: #eee
}

@media only screen and (max-width:767px) {
.comments {
    padding-top: 30px;
    margin-top: 30px
}

.comments .comment-respond .comment-reply-title {
    font-size: 14px
}

.comments .comment-form .logged-in-as {
    font-size: 12px
}

.comments .comment-form .comment-form-comment textarea {
    height: 100px
}

.comments .comment-form .comment-form-author,
.comments .comment-form .comment-form-email,
.comments .comment-form .comment-form-url {
    display: block
}

.comments .comment-form .comment-form-author label,
.comments .comment-form .comment-form-email label,
.comments .comment-form .comment-form-url label {
    display: block;
    width: 100%
}

.comments .comment-form .comment-form-author input,
.comments .comment-form .comment-form-email input,
.comments .comment-form .comment-form-url input {
    width: 100%
}

.comments .comment-form .comment-form-cookies-consent {
    font-size: 12px
}

.comments .comment-form .form-submit .submit {
    font-size: 14px
}

.comments .commentlist .comment .children {
    padding-left: 15px;
    margin-left: 15px
}

.comments .commentlist .comment .comment-body p {
    font-size: 14px
}
}

.is-full .comments {
max-width: 1200px;
margin-left: auto;
margin-right: auto
}

.pageNav {
scroll-margin-top: 86px;
padding: 70px 0 0;
width: 100%;
max-width: 1200px;
margin: 0 auto
}

.pageNav ul {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center
}

.pageNav ul li {
border-left: 1px solid #000;
margin-bottom: 0;
line-height: 1
}

.pageNav ul li:last-child {
border-right: 1px solid #000
}

.pageNav ul li a,
.pageNav ul li span {
color: #000;
padding: 5px 15px;
white-space: nowrap;
cursor: pointer;
font-size: 16px
}

.pageNav ul li a:hover,
.pageNav ul li span:hover {
opacity: 0.7
}

.post-password-form {
text-align: center
}

.post-password-form label {
font-weight: bold;
font-size: 14px;
padding-right: 10px
}

.post-password-form input[type=password] {
line-height: 1;
padding: 10px 10px;
font-size: 14px;
border-radius: 0;
border: 1px solid #000
}

.post-password-form input[type=submit] {
position: relative;
font-weight: bold;
line-height: 1;
display: inline-block;
padding: 10px 30px;
-webkit-transition: 0.3s;
transition: 0.3s;
text-align: center;
text-decoration: none;
letter-spacing: 0.1em;
text-transform: uppercase;
color: #fff;
border: 1px solid #000;
background-color: #000;
font-size: 14px
}

.post-password-form input[type=submit]:hover {
opacity: 0.8
}



/* パンくずリスト */
/* .breadcrumbs-ul{
list-style: none;
}
.breadcrumbs-li{
display: inline;
}
.breadcrumbs-li a{
color: inherit;
text-decoration: none;
}
.breadcrumbs-li + .breadcrumbs-li:before{
content: ">";
margin:.5em;
} */
.breadcrumb {
    background-color: #ececec;
}
.breadcrumb a {
color: #e87a19;
text-decoration: none;
}