@charset "UTF-8";

/*///////////////////////////////////////
全体設定
///////////////////////////////////////*/
*,*:before,*:after {
 box-sizing: border-box;
}

hr{margin: 0;}

html {
 box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
 font-size: 62.5%;
 height: 100%;
 scroll-behavior: smooth;
 scroll-padding-top: 50px;
}

body {
 color: #fff!important;
 font-family: "Zen Old Mincho", serif!important;
 background:#000!important;
 font-size: 16px!important;
 font-weight: 400;
 line-height: 1.2;
 margin:0;
 padding:0;
 max-width: 100%;
 height: 100%;
}

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

a{
 text-decoration: none;
}

a:hover{
 opacity: 0.7;
 transition: 0.8s;
}


a:visited{
/* color: inherit!important;*//*親と同じ*/
}

ul{
 padding-left: 0;
}

/*フェードイン*/
/* 画面外にいる状態 */
.fadein {
 opacity : 0.1;
 transform : translate(0, 50px);
 transition : all 500ms;
}

/* 画面内に入った状態 */
.fadein.scrollin {
 opacity : 1;
 transform : translate(0, 0);
}


/*簡易表示切り替え用*/
.pc { display: block !important; }
.sp { display: none !important; }
@media only screen and (max-width: 750px) {
.pc { display: none !important; }
.sp { display: block !important; }
}
@media only screen and (max-width: 750px) {
img { max-width: 100%; }
}


/*///////////////////////////////////////
画面内に入ったら下から出てくる
fade-upを個別につければ勝手に遅れて徐々に表示される
///////////////////////////////////////*/
.fade-up {
 opacity: 0;
 transform: translateY(30px);
 transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.is-visible {
 opacity: 1;
 transform: translateY(0);
}



/* パンくず */
div#breadcrumb {
 font-size: 94%;
 color: #fff;
 font-weight: bold;
}

div#breadcrumb a{
 color: #fff;
}

div#breadcrumb ul{
 padding:5px 5px 5px 5px;
 margin: 0;
}

div#breadcrumb  ul li{
 display:inline;
 line-height:20px;
 font-size: 0.7em;
}
div#breadcrumb  ul li:last-child{
 background: #797a7a;
 border-radius: 50px;
 padding: 2px 10px;
}


/*///////////////////////////////////////
ヘッダー
///////////////////////////////////////*/
.site-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  background: transparent;
  transition: background 0.3s ease;
  z-index: 1000;
}
.site-header.scrolled,
.site-header:hover {
  background: #000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  fill:#fff;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo svg { height: 35px;}
.site-header:not(.scrolled):not(:hover) .logo svg {
 fill: #fff; /* 透明時は白 */
}

.main-nav ul {
  display: flex;
  gap: 30px;
  margin: 0; padding: 0;
  list-style: none;
}

/* --- ナビ文字色 --- */
.main-nav a {
  text-decoration: none;
  text-align: center;
  transition: color 0.3s;
}
.site-header:not(.scrolled):not(:hover) .main-nav a {
  color: #fff; /* 透明時は白 */
}
.site-header.scrolled .main-nav a,
.site-header:hover .main-nav a {
  color: #fff; /* 背景黒の時は白 */
}

.main-nav a { text-decoration: none; color: #000; text-align: center; }
.main-nav .en { display: block; font-weight: bold; }
.main-nav .jp { display: block; font-size: 12px; color: #666; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 25px; height: 3px; background: #000; }

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
}

/* --- ハンバーガー --- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  width: 25px;
  height: 20px;
  justify-content: center;
  position: relative;
}
.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #fff;
  transition: all 0.3s ease;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 8px; }
.hamburger span:nth-child(3) { top: 16px; }

/* --- バツ印アニメーション --- */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 8px;
}

/* --- スマホ用メニュー --- */
.mobile-nav {
  display: none;
  position: fixed;
  top: 53px;
  left: 0;
  width: 100%;
  background: #000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  z-index: 10;
}
.mobile-nav ul { list-style: none; margin: 0; padding: 10px; }
.mobile-nav li { border-bottom: 1px solid #eee; }
.mobile-nav a { display: block; padding: 15px; text-decoration: none; color: #fff; }
.mobile-nav .jp { font-size: 12px; color: #666; }

/* --- レスポンシブ --- */
@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .site-header { background: #000 !important; } /* スマホは常に白 */
  .site-header:not(.scrolled):not(:hover) .logo svg {
  fill: #fff;
  }
  .mobile-nav .jp { margin-left: 10px; }
}



/*///////////////////////////////////////
見出し
///////////////////////////////////////*/
h2{
 font-size: 1.6em;
 color: #333;
 font-weight: normal;
 color: #fff;
}
h2 span{
 display: block;
 font-size: 0.5em;
}

h3{
 font-size: 1em;
 color: #333;
 border-bottom: 1px solid #333;
}

@media screen and (max-width: 767px) {
h2{
 font-size: 1.5em;
 line-height: 1.5;
}
}

/*///////////////////////////////////////
メインコンテンツ
///////////////////////////////////////*/

/*メインイメージ*/
.mainimg{
 display: block;
 position: relative;
}
.mainimg img{
 width: 100%;
 height: 750px;
 object-fit: cover;
 user-drag: none;
 -webkit-user-drag: none;
 -moz-user-select: none;
}
.mainimg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%; /* フェードの高さを調整 */
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #000 100%);
  pointer-events: none; /* クリック操作に干渉しない */
  z-index: 0;
}

.img-dark img{
 display: block;
 background-color: #333;
 opacity: 0.7;
}

@media screen and (max-width: 767px) {
.mainimg img{
 height: 600px;
 object-position: 70% 50%;
}
}



/*メインイメージ　動画の場合*/
.kv{
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #000;
 }
 .video{
  width: 100%;
  height: 100vh;
  background: url(./images/mainimg.jpg) no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
 }
.video video{
 min-width: 100%;
 min-height: 100%;
 width: auto;
 height: auto;
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translateX(-50%) translateY(-50%);
 }
/* 下部に黒グラデーションを重ねる */
.kv::after {
 content: "";
 position: absolute;
 bottom: 0;
 left: 0;
 width: 100%;
 height: 40%; /* フェードの高さを調整 */
 background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #000 100%);
 pointer-events: none; /* クリック操作に干渉しない */
 z-index: 0;
}


/*メインイメージ　テキスト*/
.imgcontent{
 color: #fff;
 font-weight: bold;
 position: absolute;
 top: 35%;
 left: 5%;
 font-size: 3em;
 line-height: 1.1;
 text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.4);
 display: flex;
 flex-wrap: wrap;
}
/*
.imgcontent .char {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.6s forwards;
}
*/

.imgcontent .char {
  opacity: 0;
  transform: translateY(30px);
}

/* アニメーション開始用 */
.imgcontent.is-animate .char {
  animation: fadeUp 0.6s forwards;
}

/* 文字ごとの遅延 */
.imgcontent.is-animate .char:nth-child(1)  { animation-delay: 0s; }
.imgcontent.is-animate .char:nth-child(2)  { animation-delay: 0.05s; }
.imgcontent.is-animate .char:nth-child(3)  { animation-delay: 0.1s; }
.imgcontent.is-animate .char:nth-child(4)  { animation-delay: 0.15s; }
.imgcontent.is-animate .char:nth-child(5)  { animation-delay: 0.2s; }
.imgcontent.is-animate .char:nth-child(6)  { animation-delay: 0.25s; }
.imgcontent.is-animate .char:nth-child(7)  { animation-delay: 0.3s; }
.imgcontent.is-animate .char:nth-child(8)  { animation-delay: 0.35s; }
.imgcontent.is-animate .char:nth-child(9)  { animation-delay: 0.4s; }
.imgcontent.is-animate .char:nth-child(10) { animation-delay: 0.45s; }
.imgcontent.is-animate .char:nth-child(11) { animation-delay: 0.5s; }
.imgcontent.is-animate .char:nth-child(12) { animation-delay: 0.55s; }


@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 767px) {
.kv{
  height: 75vh;
 }
 .video{
  height: 75vh;
 }
.imgcontent{
 top: 50%;
 left: 8%;
 font-size: 1.5em;
}
}

/*メインビジュアルロゴ表示*/
.mv-intro{
 position: absolute;
 inset: 0;
 background: #000;
 display: flex;
 align-items: center;
 justify-content: center;
 z-index: 5;
 opacity: 1;
 transition: opacity 0.8s ease;
}
.mv-intro img{
 width: 300px;
 height: auto;
}
.mv-intro.is-hide{
 opacity: 0;
 pointer-events: none;
}
.imgcontent{
 opacity: 0;
 transition: opacity 0.8s ease;
}
.imgcontent.is-show{
 opacity: 1;
}
@media screen and (max-width: 767px) {
.mv-intro img{
 width: 100%;
}
}



/*コンテンツ領域*/

main {
 margin: 6rem 0 0 0;
}
section {
 /*margin: 5rem 0;*/
 padding: 5rem 0;
}

.center {
 text-align: center;
 /*margin-bottom: 4rem;*/
}
.container {
 margin: 0 auto;
 max-width: 1200px;
 padding: 0 2.0rem;
 position: relative;
}


/*///////////////////////////////////////
スライダーベーススタイル
///////////////////////////////////////*/
.swiper {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}


/*///////////////////////////////////////
ボタン
///////////////////////////////////////*/
.btn {
 display: block;
 background: #fff;
 color: #333;
 text-align: center;
 width: 250px;
 font-size: 0.9em;
 border: 1px solid #797a7a;
 cursor: pointer;
 margin-top: 30px;
 padding: 10px 20px;
 transition: color 0.4s ease;
}

/*ボーダーボタン*/
.border-btn {
 display: inline-block;
 width: 230px;
 line-height: 50px;
 text-align: center;
 text-decoration: none;
 color: #fff;
 border:1px solid #fff;
 box-shadow: 3px 3px 0px #fff;
 transition: .3s;
 font-size: 0.9em;
}
.border-btn:hover {
 box-shadow: unset;
 transform: translate(4px,4px);
}

/*///////////////////////////////////////
ラストニュース
///////////////////////////////////////*/
.lastnews{
 display: flex;
 gap: 30px;
 align-items: baseline;
 z-index: 1;
 position: absolute;
 bottom: 10%;
 left: 5%;
}
.lastnews-title{
 display: block;
 font-size: 1.2em;
 color: #fff;
 padding-right: 20px;
 border-right: 1px solid #fff;
}
.lastnews a{
 display: flex;
 gap: 30px;
 color: #fff;
 align-items: center;
 font-size: 0.9em;
}
.lastnews a:hover{
 color: #fff;
}

@media screen and (max-width: 767px) {
.lastnews{
 display: block;
 left: 8px;
 bottom: 0;
}

.lastnews-title{
 display: block;
 border-right: none;
 border-bottom: 1px solid #fff;
 padding-right: 0;
 padding-bottom: 5px;
}
}

/*///////////////////////////////////////
まめや説明
///////////////////////////////////////*/
.mameya-wrap {
 position: relative;
 display: flex;
 justify-content: flex-start; /* 動画を左に */
 margin-bottom: 100px;
}

/* 動画 */
.mameya-img {
 width: 60%; /* 動画エリアの幅 */
}
.mameya-img video {
 width: 100%;
 height: auto;
 display: block;
}
/* 画像 */
.mameya-img {
 width: 60%; /* 動画エリアの幅 */
}
.mameya-img img {
 width: 100%;
 height: auto;
 display: block;
}

/* テキストボックス */
.mameya-txt {
 position: absolute;
 top: 85%;
 left: 50%;
 transform: translateY(-50%);
 width: 600px;
 max-width: 100%;
 background: rgba(0, 0, 0, 0.3);
 color: #fff;
 padding: 30px;
 box-sizing: border-box;
 border: 1px solid rgba(255,255,255,0.4);
 z-index: 2;
 line-height: 1.8;
 font-size: 0.9em;
}
.mameya-txt::before {
 content: "";
 position: absolute;
 top: -10px;
 left: -10px;
 width: 100%;
 height: 100%;
 border: 1px solid #fff;
 z-index: -1;
}

@media (max-width: 768px) {
.mameya-wrap {
 flex-direction: column;
 align-items: center;
 margin-bottom: 0;
}
.mameya-img {
 width: 100%;
}
.mameya-txt {
 position: static;
 transform: none;
 width: 95%;
 margin: 20px auto 0;
 background: rgba(0, 0, 0, 0.7);
 border: 1px solid rgba(255,255,255,0.4);
}
.mameya-txt::before {
 display: none;
}
}

/* スマホの時だけもっと読む */
.more-content {
 display: none;
}
@media (max-width: 768px) {
.more-btn {
 display: block;
 margin: 15px auto 0;
 padding: 10px 20px;
 background: #000;
 color: #fff;
 border: 1px solid #fff;
 border-radius: 4px;
 font-size: 0.9em;
 cursor: pointer;
 width: 100%;
}
}

@media (min-width: 769px) {
.more-content {
 display: block !important;
}
.more-btn {
 display: none;
}
}


/*///////////////////////////////////////
固定ページタイトルエリア
///////////////////////////////////////*/
.pagetitle{
 display: block;
 font-weight: bold;
 height: 72px;
 background: #000;
}
@media screen and (max-width: 767px) {
.pagetitle{
 height: 61px;
}
}

/*会社概要sページタイトルエリア*/
.pagetitle-company{
 background: url(./images/titleBG4.jpg) no-repeat center center / cover;
 /*background-attachment: fixed;*/
 background-color: #fff;
}

/*お問い合わせページタイトルエリア*/
.pagetitle-contact{
 background: url(./images/titleBG1.jpg) no-repeat center center / cover;
 /*background-attachment: fixed;*/
 background-color: #fff;
}

/*///////////////////////////////////////
会社概要
///////////////////////////////////////*/


.kaisya-gaiyou {
  border-collapse: collapse;
  width: 100%;
}

.kaisya-gaiyou th,
.kaisya-gaiyou td {
  border-bottom: 1px solid #dbe1e8;
  padding: 15px;
}

.kaisya-gaiyou th {
  /*background: #f9fafc;*/
  text-align: left;
  width: 250px;
}

@media only screen and (max-width: 800px) {
  .kaisya-gaiyou tr,
  .kaisya-gaiyou th,
  .kaisya-gaiyou td {
    display: block;
    width: auto;
  }

  .kaisya-gaiyou tr:first-child {
    border-top: 1px solid #dbe1e8;
  }

  .kaisya-gaiyou th,
  .kaisya-gaiyou td {
    border-top: none;
  }
}


/*///////////////////////////////////////
お問い合わせフォーム
///////////////////////////////////////*/
.contactblock{
 display: block;
 background-color: #fff;
 padding: 10px;
 text-align: center;
 color: #4A3A39;
 padding-bottom: 20px;
 margin-bottom: 30px;
}
.contactblock h3{
 display: block;
 font-weight: 500;
 margin: 20px auto;
}
.telblock{
 display: block;
 margin: 20px auto;
 width: 500px;
 max-width: 100%;
 padding: 10px;
 border-top: 1px solid #969696;
 border-bottom: 1px solid #969696;
}
.telblock a{
 color: #4A3A39;
 font-size: 60px;
}
.telblock a:before{
 position: relative;
 top: 5px;
 margin: 0 10px 0 0;
 content: url(../images/tel.svg);
}

.contactblock li{
 display: none;
}

label{
 display: block;
 margin: 20px auto;
 width: 800px;
 max-width: 100%;
}
.inputname{
 vertical-align: top;
 display: block;
 text-align: left;
}
.form .inputname{
 display: inline-block;
 width: 200px;
 text-align: left;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea{
  font-size: 0.95em!important;
  margin: 1em 0;
  padding: 0.8em!important;
  border: none!important;
  border-radius: 4px!important;
  width: 100%;
}
/* フォーカス時のスタイル */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus{
  border-color: #ddd;
  outline: 0;
}

input[type="submit"]{
 display: block;
 border: 1px solid #707070;
 background-color: #fff;
 color: #333;
 text-align: center;
 padding: 15px 10px;
 width: 200px;
 max-width: 100%;
 margin: 30px auto;
 cursor: pointer;
 font-size: 0.8em;
}

/*セレクトボックス*/
select{
 display:block;
 padding: 10px;
 border-radius: 4px;
 width: 100%;
 font-size: 0.95em!important;
 border: none!important;
}

/*エラーメッセージ*/
.wpcf7 form .wpcf7-response-output{
 display: block;
 border:none;
 padding: 10px;
 background-color: cornsilk;
 font-weight: bold;
}

.wpcf7-not-valid-tip{
 font-weight: bold;
 text-align: left;
}

/*送信メッセージ*/
.wpcf7-mail-sent-ok {
background:#d5edda;
color:#185626;
border:1px solid #c4e5cc;
padding:10px;
}


.contact-tel{
 display: block;
 font-size: 2em;
}
.contact-tel span{
 display: block;
 font-size: 0.4em;
}

/*///////////////////////////////////////
フッター
///////////////////////////////////////*/

.footer {
 padding: 2rem;
 font-size: 15px;
 color: #fff;
 background-color: #000;
 margin-top: auto;
 border-top: 0.8px solid #ddd;
}
.footer a{
 color: #fff!important;
 font-size: 0.8em;
}

.copyright {
 text-align: center;
 padding: 10px 0;
}


/*///////////////////////////////////////
記事詳細ページ
///////////////////////////////////////*/

/*コメント削除*/
.wp-block-latest-comments__comment-meta{
 display: none;
}

/*本文エリア*/
.single-main{
 display: flex;
 justify-content: space-around;
 margin-bottom: 30px;
}
.single-area{
 display: block;
 width: 70%;
 height: fit-content;/*高さを記事のコンテンツに合わせる*/
 padding: 50px;
 /*border: 2px solid #ddd;*/
 /*border-top: 5px solid #002588;*/
}

/*ウィジェットエリア*/
.widget-area{
 display: block;
 width: 25%;
 padding: 30px;
 border: 1.5px solid #ddd;
 height: fit-content;
}
.widget-area ul{
  padding-left: 0;
}
.widget-area li{
 list-style: none;
}
.widget-area li a{
 display: block;
 color: #333;
 /*adding-top: 20px;*/
 border-bottom: 1px solid #ddd;
}
.widget-title{
 color: #002588;
 font-weight: bold;
 font-size: 1em;
}
.widget select{
 padding: 10px;
 width: 100%;
 font-size: 1em;
 border: none;
 border-bottom: 1px solid #ddd;
}
.wp-block-heading{
 display: block;
 margin: 10px 0;
 font-size: 1em;
}

@media screen and (max-width: 768px){
.single-main{
 flex-wrap: wrap;
}
.single-area{
 width: 100%;
 padding: 20px;
}
.widget-area{
 width: 100%;
 margin-top: 30px;
 padding: 20px;
}
}

/*アイキャッチ*/
.blog-detail__image{
 margin: 30px auto;
}

/*本文*/
.blog-detail__body{
 display: block;
 margin: 30px auto;
 text-align: left;
 /*padding: 30px 0;*/
}

/*前後の記事へ*/
.prev-next-link a {
  border-bottom: 1px #ddd solid;
  display: block;
  text-decoration: none;
  padding: 14px 40px;
  color: #fff;
}
.prev-next-link a:hover {
  background-color: #333;
}
.prev-next-link a:first-child {
  border-top: 1px #ddd solid;
}
.prev-next-label {
  font-size: .825rem;
  color: #333;
  margin-bottom: 10px;
}
/* Images */
.thumb-wrap {
  display: flex;
}
.thumb-wrap p {
  margin: 0 0 0 16px;
}
.thumb-wrap img {
  width: 80px;
  height: 100%;
}

/* Larger devices */
@media ( min-width: 600px) {
  .prev-next-link {
    display: flex;
  }
  .prev-next-link a {
    flex: 1;
  }
  .prev-next-link a,
  .prev-next-link a:first-child {
    border: none;
  }
  .next-link {
    text-align: right;
  }
}


/*///////////////////////////////////////
テキストボックス
///////////////////////////////////////*/
.txtBox{
 display: block;
 margin: 30px auto 50px;
 width: 100%;
 text-align: left;
 font-size: 14px;
 line-height: 1.5;
}
.txtBox_center{
 display: block;
 margin: 30px auto 50px;
 width: 100%;
 text-align: center;
 font-size: 14px;
 line-height: 1.5;
}
@media screen and (max-width: 768px){
.txtBox{
 text-align: left;
 margin: 10px auto 20px;
}
.txtBox_center{
 text-align: left;
}
}

/*///////////////////////////////////////
アーカイブページ
///////////////////////////////////////*/
.blog-item{
 display: flex;
 align-items: center;
 margin: 30px auto;
 /*background-color: #F8F9FF;*/
 border-bottom: 1px dashed #ddd;
 color: #333;
 padding: 0px;
}
.blog-item__thumbnail-image{
 display: block;
 width: 100%;
 height: 150px;
 object-fit: cover;
}
.blog-item__content{
 margin-left: 30px;
}
.blog-item__title{
 margin: 0 0 20px;
 color: #333;
}
.blog-item__read{
 color: #333;
 font-size: 0.9em;
 font-weight: 500;
}
.blog-item__button{
 display: block;
 padding: 5px 10px;
 background-color: #333;
 color: #fff;
 text-align: center;
}
.blog-list__wrap{
 display: block;
 padding: 10px 0;
 border-bottom: 1px dashed #ddd;
}


/*アイキャッチ付き一覧　category-event.php　参照*/
.arciveTitle{
 font-size: 30px;
}
.arciveList{
 display: flex;
 /*flex-wrap: wrap;*/
 justify-content: space-between;
}
.arcive-inner{
 display: flex;
 flex-wrap: wrap;
 width: 73%;
}
.blog-list__list-item{
 display: block;
 width: calc(33% - 20px);
 margin: 10px;
}
.blog-img02{
 display: block;
 border-radius: 30%;
 width: 100%;
 overflow: hidden;
 height: 200px;
}
.blog-img02 img{
 width: 100%;
 height: 200px;
 object-fit: cover;
 border-radius: 30%;
 transition: transform .6s ease;
}
.blog-img02 img:hover{
 transform: scale(1.1);
}
.blog-item__thumbnail-image{
 display: block;
 width: 100%;
 height: 150px;
 object-fit: cover;
}
.blog-item__content{
 margin-left: 30px;
}
.blog-item__title{
 margin: 0 0 0px;
 color: #333;
 font-size: 15px;
}
.blog-item__read{
 color: #333;
 font-size: 0.9em;
 font-weight: 500;
}
.blog-item__button{
 display: block;
 padding: 5px 10px;
 background-color: #000;
 color: #fff;
 text-align: center;
}

.pagination{
 display: block;
 width: 100%;
}


@media screen and (max-width: 768px){
.arciveList,
.arcive-inner{
 display: block;
 width: 100%;
}
.blog-list__list-item{
 display: block;
 width: 95%;
 margin: 30px auto;
}
.blog-img02,
.blog-img02 img{
 border-radius: 10%;
}

}


/*ページャー*/
.page-numbers{
 display: flex;
 margin: 30px auto;
 align-items: center;
 justify-content: center;
}
.page-numbers{
 padding-left: 0;
}
.page-numbers li{
 list-style: none;
}
.page-numbers a{
 list-style: none;
 display: block;
 width: 50px;
 height: 50px;
 background: #002588;
 text-align: center;
 line-height: 50px;
 color: #fff;
 margin: 5px;
}
.page-numbers span{
 list-style: none;
 display: block;
 width: 50px;
 height: 50px;
 background: #fff;
 color: #002588;
 font-weight: bold;
 text-align: center;
 line-height: 50px;
}

@media screen and (max-width: 768px){
.blog-item{
 flex-wrap: wrap;
}
.blog-item__thumbnail-image{
 display: block;
 height: 100%;
}
.blog-item__title{
 display: block;
 margin: 10px auto;
}
.navigation{
 position: initial;
 opacity: 1;
 width: 100%;
}
}



/*///////////////////////////////////////
レスポンシブ表示
///////////////////////////////////////*/
@media screen and (max-width: 768px){

/*ヘッダー*/
#header{
 height: 60px;
}

.header {
 flex-direction: column;
 /*margin-bottom: 10px;*/
}

.sitetitle {
 font-size: 1.1em;
}

.header-box {
 display: none;
}


/*スライダー*/
.mainslider .sliderImg img, .mainslider .sliderImg video{
 height: 100vh;
}
.slideContent{
 font-size: 1.2em;
}

/*フッター*/
#nav ul{
 display: inline-block;
}
#nav li{
 display: inline-block;
 width: 160px;
}

}



/*///////////////////////////////////////
商品一覧
///////////////////////////////////////*/
.news-list{
 display: grid;
 grid-template-columns: repeat(3,1fr);
 justify-content: center;
 gap: 30px;
 list-style: none outside;
 padding: 0;
}
.news-list .item a{
 text-decoration: none;
 color: #fff;
 padding: 10px 0px 10px 0px;
}
.news-list .item {
 /*width: calc(100%/4);*/
 background: #000;
 color: #fff;
 padding: 10px 10px 0px;
 position: relative;
 height: auto;
 text-align: center;
}
.news-list .item .date{
 margin: 10px 0 5px;
}
.news-list .item:first-child a{
 /* border-top: 1px solid #CCC;*/
}
.news-list .item .title{
 margin: 5px 0 0;
 width: 100%;
 font-size: 1.1em;
 color: #fff;
 font-weight: bold;
 text-align: center;
}
 .news-list .item a:hover .title{
   /*color: #35BFF1;*/
 }

.exce{
 display: block;
 color: #fff;
 font-size: 0.9em;
 /*font-weight: bold;*/
 margin: 5px auto 5px;
 text-align: left;
}
.exce p{
 margin-top: 8px;
 margin-bottom: 8px;
 text-align: center;
}
.price{
 display: block;
 width: 230px;
 max-width: 100%;
 margin-bottom: 8px;
 border: 1px solid #fff;
 text-align: center;
 padding: 5px 0px;
 margin: 10px auto;
}

.s-more {
  display: block;
  background: #000;
  color: #000;
  text-align: center;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  font-size: 0.9em;
  border: 1px solid #797a7a;
  cursor: pointer;
  margin-top: 30px;
  padding: 10px 20px;
  overflow: hidden;
  transition: color 0.4s ease;
}

.s-more::before,
.s-more::after {
  content: "";
  position: absolute;
  top: 0;
  width: 0;
  height: 100%;
  background: #000;
  transition: all 0.4s ease;
  z-index: -1;
}

.s-more::before {
  left: 50%;
}
.s-more::after {
  right: 50%;
}

.s-more:hover {
 color: #fff!important;
}

.s-more:hover::before,
.s-more:hover::after {
  width: 50%;
}

.blog-img{
 display: block;
 width: 100%;
 overflow: hidden;
 height: 200px;
}
.blog-img img{
 width: 100%;
 height: 200px;
 object-fit: contain;
 transition: transform .6s ease;
}
.blog-img img:hover{
/* transform: scale(1.1);*/
}
@media screen and (max-width: 767px){
.news-list{
 grid-template-columns: 1fr;
}
.news-list .item a{
 flex-wrap: wrap;
 padding: 10px 0px;
}
.news-list .item .date{
 min-width: 100px;
}
.news-list .item .title{
 margin-top: 10px;
}
.news-list{
 display: block;
}
.news-list .item {
 width: 100%;
}
}


/*///////////////////////////////////////
ループスライダー
///////////////////////////////////////*/
.loop-slider {
 overflow: hidden;
 width: 100%;
 padding: 20px 0;
 margin-top: 230px;
}
.loop-track {
 display: flex;
 width: max-content;
 animation: scroll 30s linear infinite;
}
.loop-item {
 flex: 0 0 auto;
 margin-right: 20px;
 position: relative;
}
.loop-item:nth-child(odd) {
 transform: translateY(10px);
}
.loop-item:nth-child(even) {
 transform: translateY(-10px);
}
.loop-item img {
 width: 280px;
 height: 180px;
 object-fit: cover;
 /*border-radius: 16px;*/
 display: block;
}
/* キーアニメーション */
@keyframes scroll {
0% {
 transform: translateX(0);
}
100% {
 transform: translateX(-50%);
}
}
/* スマホ用調整 */
@media (max-width: 768px) {
.loop-slider {
 margin-top: 0px;
}
.loop-item img {
 width: 200px;
 height: 130px;
}
.loop-track {
 animation: scroll 20s linear infinite;
}
}


/*///////////////////////////////////////
お知らせ
///////////////////////////////////////*/
.info-wrap{
 display: grid;
 grid-template-columns: 200px 1fr;
 gap: 80px;
 align-items: baseline;
}

.news-list02{
 list-style: none outside;
 margin: 0;
 padding: 0;
}
.news-list02 .item a{
 display: flex;
 flex-wrap: wrap;
 flex-wrap: nowrap;
 text-decoration: none;
 color: #fff;
 border-bottom: 1px solid #CCC;
 padding: 10px 20px;
 font-size: 0.9em;
}
.news-list02 .item:first-child a{
 border-top: 1px solid #CCC;
}
.news-list02 .item .date{
 margin: 0;
 min-width: 120px;
 font-size: 16px;
 color: #fff;
 padding: 0 5px 0 0;
}
.news-list02 .item .title{
 margin: 0;
 width: 100%;
}
.news-list02 .item a:hover .title{
 color: #fff;
}
.news-list02 .item a:visited .title{
 color: #fff;
}

@media screen and (max-width: 767px){
.info-wrap{
 display: grid;
 grid-template-columns: 1fr;
 gap: 10px;
}
.news-list02 .item a{
 flex-wrap: wrap;
 line-height: 1.2;
 margin-top: 15px;
}
.news-list02 .item .date{
 min-width: 100px;
}
.news-list02 .item .title{
 margin-top: 10px;
}
}


/*///////////////////////////////////////
スイーツ&ドリンク
///////////////////////////////////////*/
.sweetsinfo-wrap{
 display: grid;
 grid-template-columns: 280px 1fr;
 gap: 30px;
 margin-top: 50px;
 align-items: flex-start;
}
.sweetsinfotxt{
 display: block;
 text-align: left;
 color: #fff;
 font-size: 14px;
}
.sweetsinfotxt h3{
 color: #fff;
 border: none;
 font-size: 1.5em;
 margin-top: 0;
}
@media screen and (max-width: 767px){
.sweetsinfo-wrap{
 grid-template-columns: 1fr;
}
}


/*///////////////////////////////////////
アクセス&駐車場のご案内
///////////////////////////////////////*/
.logoimg{
 display: block;
 width: 200px;
 height: auto;
 margin: 20px auto;
}

.access-wrap{
 display: grid;
 grid-template-columns: repeat(2,1fr);
 gap: 30px;
 margin-top: 50px;
 align-items: flex-start;
}
.access-txt{
 display: block;
 text-align: left;
 color: #fff;
 font-size: 14px;
}
.access-txt h3{
 color: #fff;
 border: none;
 font-size: 1.5em;
 margin-top: 0;
}

.kaisya-gaiyou {
 border-collapse: collapse;
 width: 100%;
}

.kaisya-gaiyou th,
.kaisya-gaiyou td {
 border-bottom: 1px solid #fff;
 padding: 15px;
}

.kaisya-gaiyou th {
 text-align: left;
 width: 200px;
}
@media only screen and (max-width: 800px) {
.kaisya-gaiyou tr,
.kaisya-gaiyou th,
.kaisya-gaiyou td {
 display: block;
 width: auto;
}
.kaisya-gaiyou tr:first-child {
 border-top: 1px solid #fff;
}
.kaisya-gaiyou th,
.kaisya-gaiyou td {
 border-top: none;
}
}

@media screen and (max-width: 767px){
.access-wrap{
 grid-template-columns: 1fr;
}
}


/*///////////////////////////////////////
メニュー
///////////////////////////////////////*/
.border-midashi{
 display: block;
 border: 1px solid #fff;
 padding: 5px 20px;
 font-size: 1.2em;
}

.menu-table {
 width: 100%;
 border-collapse: collapse;
 background: #000;
 color: #fff;
 font-size: 16px;
}

.menu-table th,
.menu-table td {
 padding: 8px 12px;
 text-align: left;
}

.menu-table th {
 border-bottom: 1px solid #555;
}
.menu-table td {
 border-bottom: 1px solid #222;
}

/* HOT/ICEの列だけ右寄せ */
.menu-table th:nth-child(2),
.menu-table th:nth-child(3),
.menu-table td:nth-child(2),
.menu-table td:nth-child(3) {
 text-align: right;
}


/*メニュー並び*/
.menu-wrap{
 display: grid;
 grid-template-columns: repeat(2,1fr);
 gap: 50px;
 margin: 30px auto;
}
@media screen and (max-width: 767px){
.menu-wrap{
 grid-template-columns: 1fr;
 gap: 30px;
}
.menu-table th,
.menu-table td {
 padding: 8px 10px;
 font-size: 0.9em;
}
}

/*///////////////////////////////////////
プライバシーポリシー
///////////////////////////////////////*/
.privacy_h3{
 display: block;
 background-color: #0b52a0;
 text-align: left;
 font-size: 1.2em;
 color: #fff;
 margin: 30px auto 0px;
 padding: 10px;
}


/*///////////////////////////////////////
アクセスページ
///////////////////////////////////////*/
.mameya-wrap02{
 display: grid;
 grid-template-columns: repeat(2,1fr);
 grid-template-rows: repeat(2,1fr);
 gap: 0px;
 margin-top: 50px;
 align-items: center;
}
.mameya-wrap02 h3{
 display: block;
 color: #fff;
 font-size: 1.4em;
 border-bottom: none;
}
@media screen and (max-width: 767px){
.mameya-wrap02{
 grid-template-columns: 1fr;
 grid-template-rows: 1fr;
}
}

/*///////////////////////////////////////
フッターメニュー
///////////////////////////////////////*/
.footerMenu{
 text-align: center;
}
.footerMenu ul{
 display: flex;
 justify-content: center;
 list-style: none;
 padding-left: 0;
}
.footerMenu li{
 display: block;
 margin: 0 20px;
}
.footerMenu  > li > a{
 display: block;
 padding: 0 15px;
 line-height: 40px;
 color: #00459B;
 font-size: 15px;
 text-decoration: none;
}

.footerMenu i{
 vertical-align: middle;
}

@media screen and (max-width: 767px){
.footerMenu ul{
 display: block;
}
}
