/*
Theme Name: udonnotakumi Child
Theme URI: 
Template: udonnotakumi
Description: 
Author: 
Tags: 
Version: 0.6.0
*/

/**********基本構成**********/
/*はみ出し禁止*/
* {
  -webkit-box-sizing: border-box !important;
  -moz-box-sizing: border-box !important;
  -o-box-sizing: border-box !important;
  -ms-box-sizing: border-box !important;
  box-sizing: border-box !important;
}

p {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  p {
    font-size: 16px;
  }
}

h1,
h2,
h3,
h4,
h5 {
  border: none;
  margin: 0 0 16px 0;
  padding: 0 0 0 0;
}

h1::after,
h2::after,
h3::after,
h4::after,
h5::after {
  border-bottom: none;
  display: none;
}

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

li {
  margin-bottom: 16px;
}

dl {
  margin: 0;
  padding: 0;
}
dt {
  font-size: 18px;
  margin: 0;
  padding: 0;
  border: none;
}

@media screen and (max-width: 767px) {
  dt {
    font-size: 16px;
  }
}

dd {
  font-size: 18px;
  margin: 0;
  padding: 0;
  border: none;
}

@media screen and (max-width: 767px) {
  dd {
    font-size: 16px;
  }
}

a {
  color: inherit;
}
a:hover {
  color: inherit;
}

img {
  vertical-align: top;
}

iframe {
  margin: 0;
  display: block;
}

/*リンク先の幅の調整*/
section:before {
  content: "";
  display: block;
  height: 0px;
  /* 調整したい高さ（固定ヘッダーの高さ） */
  margin-top: 0px;
  /* heightと同じ分のネガティブマージン */
  visibility: hidden;
}

section:nth-of-type(1)::before {
  content: "";
  display: block;
  height: 0;
  margin-top: 0;
  visibility: hidden;
}

/* .box {
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .box {
    padding-bottom: 25px;
  }
} */

/*画面幅いっぱい*/
.full_screen {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}

/*背景色のはみ出し*/
.over_wide {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);
  padding-left: calc(50vw - 50%);
}

.site-header--layout--nav-float .site-header-container {
  display: none;
}
/*rensyu*/
.top-img-box {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);
  padding-left: calc(50vw - 50%);
  background-color: #fff;
  position: relative;
}

.top-img-box .key {
  /* width: 1000px; */
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  /* padding-right: calc(50vw - 50%); */
  /* padding-left: calc(50vw - 50%); */
  background-color: #e5e5e5;
  background-color: #000;
}

@media screen and (max-width: 767px) {
  .top-img-box .key {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }
}

/**/
.slideshow {
  position: relative;
  /* width: 1100px;  */

  margin: 0 auto; /* 中央揃え */
  overflow: hidden; /* はみ出た部分を隠す */
}

.slideshow .myslide {
  position: absolute;

  opacity: 0; /* 最初は透明にする */
  animation: fade-animation 21s infinite; /* 6秒のアニメーションを無限に繰り返す */
}

.myslide:nth-child(2) {
  animation-delay: 7s;
}

.myslide:nth-child(3) {
  animation-delay: 14s;
}

/* フェードイン・アウトのアニメーション */
@keyframes fade-animation {
  0% {
    opacity: 0;
  }
  6.67% {
    opacity: 1;
  } /* 1秒かけてフェードイン (1s / 15s) */
  26.67% {
    opacity: 1;
  } /* 3秒間表示を維持 (4s / 15s) */
  33.33% {
    opacity: 0;
  } /* 1秒かけてフェードアウト (5s / 15s) */
  100% {
    opacity: 0;
  }
}

/* 画像自体のスタイル */
.myslide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* コンテナに合わせて画像をトリミング */
}

.myslide {
  position: absolute; /* 親要素の.myslideは既にabsoluteなので不要な場合もあるが、明示的に */
  /* ... 既存のスタイル ... */
  z-index: 1; /* グラデーションより下に画像を配置するため */
}

.myslide img {
  /* ... 既存のスタイル ... */
  z-index: 0; /* グラデーションより下に画像を配置するため */
}

.myslide::before {
  content: ""; /* 擬似要素には必ずcontentプロパティが必要 */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2; /* 画像より上にグラデーションを重ねる */

  /* 左から黒 (rgb(0,0,0,1)) から透明 (rgb(0,0,0,0)) へのグラデーション */
  background: linear-gradient(to left, #000000, transparent 25%);
  /* rgba(0,0,0,0.7) の 0.7 は黒の濃さを調整できます (0.0が透明、1.0が完全に不透明な黒) */

  pointer-events: none; /* グラデーション部分のクリックイベントを透過させる（下の画像がクリック可能になる） */
}

@media screen and (max-width: 767px) {
  .myslide::before {
    background: linear-gradient(to top, #000000, transparent 0%);
  }
}

/**/

.key2 {
  margin-right: calc(50% - 45vw);
  margin-left: calc(50% - 50vw);
  height: 100vh;
}

@media screen and (max-width: 767px) {
  .key2 {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    height: 30vh;
  }
}

.key2 img {
  height: 100vh;
  width: auto;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .key2 img {
    height: auto;
    width: 100vw;
  }
}

.key p {
  width: 100%;
  display: inline-block;
}

.key p img {
  width: 1239px;
  max-width: none;
  float: right;
}

.top-img-box .top-pop {
  margin-top: 0;
  position: absolute;
  top: 0;
  right: calc(50% - 50vw);
}

@media screen and (max-width: 767px) {
  .top-img-box .top-pop {
    right: 3%;
    z-index: 5;
  }
}

.top-pop .button-popup {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background: #000;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
  width: 332px;
  height: 55px;
  /* margin-top: 20px; */
  font-size: 20px;
  letter-spacing: 5px;
}

@media screen and (max-width: 767px) {
  .top-pop .button-popup {
    background: transparent;
    justify-content: end;
  }
}

.top-pop h1 {
  width: 200px;
  height: 260px;
  margin: 60px 83px 0 auto;
  font-size: 14px;
  line-height: 22px;
  text-align: left;
  cursor: vertical-text;
  writing-mode: vertical-rl;
  -o-writing-mode: vertical-rl;
  -ms-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -moz-writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  text-orientation: upright;
  word-wrap: break-word;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .top-pop h1 {
    width: auto;
    height: auto;
    margin: 60px 10px 0 auto;
    font-size: 22px;
    line-height: 34px;
  }
}

.top-header {
  position: absolute;
  top: 80%;
  right: 0;
  transform: translate(-25%, -50%);
  font-size: 18px;
  color: #ffffff80;
  text-align: center;
}

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

.top-header li:first-child {
  color: #fff;
  background: url(https://menfuku-shokudo.com/wp-content/uploads/nav_line.jpg)
    no-repeat bottom center / 100% 1px;
}

.top-header li a:hover {
  color: #fff;
  background: url(https://menfuku-shokudo.com/wp-content/uploads/nav_line.jpg)
    no-repeat bottom center / 100% 1px;
}

.inner {
  position: relative;
}

.top-img-box .ttl {
  margin-top: 0;
  text-align: left;
  position: absolute;
  top: 170px;
  right: 280px;
  z-index: 5;
  writing-mode: vertical-rl;
}

.top-img-box .ttl {
  writing-mode: vertical-rl;
}

@media screen and (max-width: 767px) {
  .top-img-box .ttl {
    top: 25%;
    right: 35%;
  }
}

.top-img-box .ttl::after {
  /* content: ""; */
  width: 3000px;
  height: 1px;
  background: #000;
  transform: skewY(-36deg);
  position: absolute;
  bottom: 82px;
  left: -1500px;
  z-index: -1;
}

.top .catch {
  /* margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);
  padding-left: calc(50vw - 50%); */
  /* background: #000; */
  color: #fff;
  /* padding-top: 100px;
  padding-bottom: 100px; */
  padding: 5px;
}

.top .catch {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(0%, -50%);
  /* background: #0000006e; */
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .top .catch {
    position: relative;
    background: #000000;
    top: 0;
    left: 0;
    transform: initial;
    padding: 20px 5px;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding-right: calc(50vw - 50%);
    padding-left: calc(50vw - 50%);
  }
}

.top .catch h3 {
  text-align: center;
  font-weight: 100;
  letter-spacing: 10px;
  line-height: 1.5em;
  font-size: 35px;
  margin: 0;
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .top .catch h3 {
    font-size: 20px;
  }
}

.top .catch p {
  margin: 0 auto;
  width: 80%;
  line-height: 2em;
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .top .catch p {
    font-size: 14px;
    width: 100%;
  }
}

.concept {
  position: relative;
}

.concept .inner {
  background: #fff;
}

@media screen and (max-width: 767px) {
  .cnc-box {
    margin-bottom: 90px;
  }
}

.cnc-box h3 {
  font-size: 50px;
  margin: 3em 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .cnc-box h3 {
    font-size: 30px;
  }
}

.cnc-box p {
  background: #000;
  color: #fff;
  padding: 60px 85px 60px 100px;
  width: 648px;
  position: relative;
  z-index: 2;
  margin-top: -100px;
  margin-left: auto;
  font-size: 16px;
  margin-right: 0;
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .cnc-box p {
    padding: 30px 20px 30px 20px;
    width: 95%;
    position: relative;
    z-index: 2;
    margin-top: -29px;
    margin-right: -15px;
    font-size: 16px;
  }
}

.cnc-box > h3.vt-rl {
  position: absolute;
  right: 5%;
  writing-mode: vertical-rl;
  font-size: 35px;
  margin: 0;
  text-align: left;
  top: 15%;
}

@media screen and (max-width: 767px) {
  .cnc-box > h3.vt-rl {
    position: relative;
    writing-mode: initial;
    text-align: center;
    font-size: 24px;
    margin-bottom: 1em;
  }
}

.cnc-box > h3.vt-rl span:last-child {
  margin-top: 1em;
}

.cnc-box .img-box {
  /* position: absolute; */
  /* top: 417px;
  left: -290px; */
  z-index: 1;
  overflow: hidden;
  margin-left: calc(50% - 50vw);
}

.cnc-box .img-box:nth-of-type(2) {
  margin-left: calc(50% - 30vw);
  margin-top: -150px;
  width: 50%;
}

@media screen and (max-width: 767px) {
  .cnc-box .img-box:nth-of-type(2) {
    margin-left: calc(50% - 55vw);
    margin-top: 0;
    width: 100%;
  }
}

.blk3 {
  margin-top: -300px;
}

.k2 {
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}

.k2 img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center 35%;
}

.svg {
  width: 90vw;
  height: 300px;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 45vw);
  z-index: 5;
  position: relative;
}

.layer2 {
  fill: #e5e5e5;
}

.k4 {
  /* width: 60%; */
  background-color: #ccc;
  padding: 25px;
}

.k4 p {
  margin: 0;
  font-size: 25px;
}

.rcmd-box {
  position: relative;
  background: #000;
  color: #fff;
  text-align: center;
  padding-top: 30vh;
  padding-bottom: 40vh;
}

@media screen and (max-width: 767px) {
  .rcmd-box {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.rcmd-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.3;
  /* background: url(); */
}

.rcmd-box-cnt {
  height: 110vh;
  /* background: url()
    no-repeat center / cover; */
  background-attachment: fixed;
  position: absolute;
  top: 0;
  min-height: auto;
  left: 0;
  width: 100%;
  z-index: 0;
}

@media screen and (max-width: 767px) {
  .rcmd-box-cnt {
    height: 80vh;
  }
}

.rcmd-box-cnt p {
  clip: rect(0, auto, auto, 0);
  margin-bottom: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.rcmd-box-cnt p img {
  width: 100%;
  height: 100vh;
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 0;
  margin: 0;
  object-fit: cover;
  z-index: 0;
  transform: translateZ(0);
  opacity: 1;
  transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -webkit-transition: opacity 0.3s ease;
}

@media screen and (max-width: 767px) {
  .rcmd-box .ttl {
    padding: 5em 0;
  }
}

.rcmd-box .ttl h3 {
  margin: 0;
  display: inline-block;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.025em;
  padding: 5px 10px;
  font-size: 30px;
  border-top: 3px solid;
  border-bottom: 3px solid;
  color: #000;
  background: #e2e2e285;
  margin-bottom: 1em;
}

.rcmd-box .ttl h2 {
  margin: 0;
  font-weight: 700;
  position: relative;
  z-index: 2;
  letter-spacing: 0.03em;
  font-size: 70px;
  line-height: 1.7;
  margin-top: 0;
  margin-bottom: 125px;
  color: #000;
  background: #e2e2e285;
}

@media screen and (max-width: 767px) {
  .rcmd-box .ttl h2 {
    font-size: 30px;
    margin-bottom: 0;
  }
}
/*menu-genre*/
.menu .outer {
  margin: 50px 0;
}

.menu .menu-cnt {
  display: flex;
  justify-content: space-evenly;
  align-items: start;
}

@media screen and (max-width: 767px) {
  .menu .menu-cnt {
    flex-wrap: wrap;
  }
}

.menu .menu-box {
  width: 25%;
}

@media screen and (max-width: 767px) {
  .menu .menu-box {
    width: 100%;
  }
}

.menu-box h4 {
  margin: 0;
}

.menu-box dl {
  display: flex;
  justify-content: space-between;
  border-bottom: dashed 1px #000;
  padding: 10px;
}

.menu-box .menu-genre:not(:last-child) {
  margin-bottom: 25px;
}

.menu-box {
  margin-bottom: 25px;
}

.menu-box dl dt {
  font-size: 15px;
}

.menu-box dl dd {
  font-size: 15px;
}

/**********メインcss**********/

body {
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
}
body div.siteContent {
  /* background: url(); */
}

.siteHeader {
  /* display: none; */
  /* background: url(); */
}

.wrap {
  /* max-width: 1000px; */
}

#sec1 {
  /* background: url(); */
  /* padding: 80px 0 130px; */
}

#sec1 .wrap {
  position: relative;
  z-index: 3;
  height: 250px;
}
@media screen and (max-width: 767px) {
  #sec1 .wrap {
    height: 200px;
  }
}

#onlyone {
  position: relative;
  margin-top: -50px;
}

#onlyone::before {
  content: "";
  position: absolute;
  z-index: 1;
  right: 0;
  /* background: url(); */
  -webkit-transform: skewY(-18.5deg);
  transform: skewY(-10deg);
  left: calc(50% - 250px);
  height: auto;
  bottom: 1200px;
  top: 300px;
  /* min-width: 1200px; */
  right: -50%;
  top: -10%;
  bottom: -10%;
}

@media screen and (max-width: 767px) {
  #onlyone::before {
    transform: skewY(-18deg);
    left: 50%;
    bottom: 44%;
  }
}

#onlyone::after {
  content: "";
  position: absolute;
  width: 2vw;
  top: 10vw;
  /* background: url(); */
  left: 40%;
  -webkit-transform: skewY(-18.5deg);
  transform: skewY(-18.5deg);
  width: 10px;
  bottom: 0;
  height: auto;
  top: 380px;
  right: calc(50% + 270px);
  left: auto;
}

@media screen and (max-width: 767px) {
  #onlyone::after {
    transform: skewY(-18deg);
    top: 0;
    left: auto;
    right: 53%;
    bottom: 37%;
  }
}

#onlyone .wrap {
  position: relative;
  z-index: 3;
}

@media screen and (max-width: 767px) {
  #onlyone .wrap {
    margin-bottom: 50px;
  }
}

#onlyone .wrap p.topimg {
  text-align: center;
}

#onlyone .wrap p.topimg img {
  width: 90%;
}

@media screen and (max-width: 767px) {
  #onlyone .wrap p.topimg img {
    width: 100%;
    margin-top: -70px;
  }
}

#onlyone div h2::before {
  /*赤い×印*/
  content: "";
  position: absolute;
  /* background: url(); */
  width: 100px;
  height: 100px;
  top: 390px;
  left: -150px;
  z-index: 3;
}

@media screen and (max-width: 767px) {
  #onlyone div h2::before {
    width: 85px;
    height: 85px;
    top: 260px;
    left: -130px;
  }
}

#onlyone div h2 span:nth-of-type(1)::after {
  /*赤い×印*/
  content: "";
  position: absolute;
  /* background: url(); */
  width: 100px;
  height: 100px;
  top: 440px;
  left: -215px;
  z-index: 4;
}

@media screen and (max-width: 767px) {
  #onlyone div h2 span:nth-of-type(1)::after {
    width: 85px;
    height: 85px;
    top: 225px;
    left: -130px;
  }
}

#onlyone div h2 {
  z-index: 2;
  font-weight: 700;
  font-size: 15.7vw;
  letter-spacing: 0.02em;
  line-height: 1.34;
  position: absolute;
  top: 0px;
  right: -23px;
  font-size: 70px;
  margin-top: 75px;
  width: auto;
}

#onlyone div h2 span {
  padding: 0 0;
  display: block;
  background: #fff;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

@media screen and (max-width: 767px) {
  #onlyone div h2 span {
    font-size: 40px;
  }
}

#onlyone div h2 span:nth-of-type(1) {
  color: #000;
  position: absolute;
  top: 36px;
  right: -24px;
  height: 385px;
  padding: 0.2em 0;
}

@media screen and (max-width: 767px) {
  #onlyone div h2 span:nth-of-type(1) {
    top: 75px;
    right: 20px;
    height: 225px;
  }
}

#onlyone div h2 span:nth-of-type(2) {
  color: #000;
  position: absolute;
  top: 200px;
  right: 115px;
  height: 315px;
  padding: 0.2em 0;
}

@media screen and (max-width: 767px) {
  #onlyone div h2 span:nth-of-type(2) {
    top: 150px;
    right: 90px;
    height: 185px;
  }
}

#onlyone div h2 span:nth-of-type(3) {
  color: #000;
  position: absolute;
  top: 300px;
  right: 250px;
  height: 460px;
  padding: 0.2em 0;
}

@media screen and (max-width: 767px) {
  #onlyone div h2 span:nth-of-type(3) {
    top: 225px;
    right: 160px;
    height: 265px;
  }
}

#onlyone div h3 {
  z-index: 2;
  font-weight: 700;
  font-size: 15.7vw;
  letter-spacing: 0.02em;
  line-height: 1.34;
  position: absolute;
  top: 75px;
  left: 0;
  font-size: 90px;
  margin-top: 1em;
  width: auto;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

@media screen and (max-width: 767px) {
  #onlyone div h3 {
    top: 180px;
    font-size: 40px;
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  #onlyone .wrap div.dtl {
    position: relative;
  }
}

#onlyone div p.txt {
  margin: 0;
  width: 709px;
  margin-left: auto;
  padding-top: 30px;
  padding-bottom: 100px;
  font-weight: bold;

  position: relative;
  z-index: 2;
  line-height: 2.2;
  text-align: left;
}

@media screen and (max-width: 767px) {
  #onlyone div p.txt {
    margin-top: 350px;
    width: 100%;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  #onlyone > p.txt {
    /* margin-top: 315px;
    width: 100%;
    padding: 0;
    margin-top: 50px; */
  }
}

#popular {
  position: relative;
  z-index: 3;
}

#popular::after {
  content: "";
  position: absolute;
  z-index: 1;
  /* background: url() no-repeat bottom center; */
  /* padding: 0px 0 114px; */
  height: 100%;
  width: 200%;
  top: 100px;
  left: -50%;
}

@media screen and (max-width: 767px) {
  #popular::after {
    width: 300%;
    top: 50px;
  }
}

#popular .bg {
  /* position: absolute;
  top: 0;
  left: 0;
  width: 100%; */
  height: 700px;
  background: url(https://menfuku-shokudo.com/wp-content/uploads/big_AB1BC28A-ED10-4780-8D43-FCCB2E3BB155.jpeg)
      no-repeat center / cover,
    url(https://menfuku-shokudo.com/wp-content/uploads/bg_lightgray.jpg);
}

@media screen and (max-width: 767px) {
  #popular .bg {
    height: 40vh;
  }
}

#popular .box {
  /* background: url(); */
  position: relative;
  z-index: 2;
  padding-bottom: 50px;
  margin-right: 0;
  margin-top: -100px;
  margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
  #popular .box {
    margin-bottom: 50px;
  }
}

#popular .box::after {
  /* background: url(), url(); */
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  right: auto;
  width: 100vw;
}

@media screen and (max-width: 767px) {
  #popular .box::after {
    left: 70%;
  }
}

#popular .wrap .box h3 {
  position: absolute;
  /* background: url() no-repeat center / 100% auto; */
  color: #d33333;
  font-weight: 700;
  line-height: 1.5;
  -webkit-transform: rotate(-9deg);
  transform: rotate(-9deg);
  letter-spacing: 0.02em;
  font-size: 50px;
  padding: 20px 30px 20px 30px;
  left: -50px;
  top: -50px;
  margin: 0;
}

@media screen and (max-width: 767px) {
  #popular .wrap .box h3 {
    font-size: 30px;
    left: 0;
    padding: 20px 15px 20px 15px;
  }
}

#popular .wrap .box h2 {
  font-weight: 700;
  border-bottom: 2px solid;
  line-height: 1.25;
  position: relative;
  z-index: 2;
  font-size: 55px;
  letter-spacing: 0.02em;
  margin-left: -31px;
  margin-bottom: 0;
  padding: 68px 0 26px 94px;
}

@media screen and (max-width: 767px) {
  #popular .wrap .box h2 {
    font-size: 25px;
    padding: 40px 0px 20px 40px;
    width: 115%;
  }
}

#popular .wrap .box p {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
  padding: 33px 0 0 65px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  #popular .wrap .box p {
    padding: 30px 0 0 30px;
  }
}

@media screen and (max-width: 767px) {
  .uber_box div.uber_box_sp {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

#newsandinfo {
  position: relative;
  background: #000;
  color: #fff;
  text-align: center;

  padding-top: 100px;
}

@media screen and (max-width: 767px) {
  #newsandinfo {
    padding-top: 50px;
  }
}

#newsandinfo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.3;
  /* background: url(); */
}

.bg_para {
  height: 525px;
  /* background: url() no-repeat center / cover; */
  background-attachment: fixed;
  position: absolute;
  top: 0;
  min-height: auto;
  left: 0;
  width: 100%;
  z-index: 0;
}

@media screen and (max-width: 767px) {
  #newsandinfo .bg_para {
    height: 200px;
  }
}

#newsandinfo .img_para {
  clip: rect(0, auto, auto, 0);
  margin-bottom: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

#newsandinfo .img_para img {
  width: 100%;
  height: 100vh;
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 0;
  margin: 0;
  object-fit: cover;
  z-index: 0;
  transform: translateZ(0);
  opacity: 1;
  transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -webkit-transition: opacity 0.3s ease;
}

#newsandinfo .wrap h3 {
  margin: 0;
  display: inline-block;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.025em;
  padding: 0 9px;
  font-size: 30px;
  border-top: 3px solid;
  border-bottom: 3px solid;
  color: #000;
}

#newsandinfo .wrap h2 {
  margin: 0;
  font-weight: 700;
  position: relative;
  z-index: 2;
  letter-spacing: 0.03em;
  font-size: 70px;
  line-height: 1.7;
  margin-top: 0;
  margin-bottom: 125px;
  color: #000;
}

@media screen and (max-width: 767px) {
  #newsandinfo .wrap h2 {
    margin-bottom: 0;
    line-height: 1;
    font-size: 40px;
  }
}

#newsandinfo .wrap .box {
  /* background: url(); */
  position: relative;
  margin-right: 300px;
  padding: 50px 0 100px;
  margin-left: 0;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  #newsandinfo .wrap .box {
    background: none;
    display: block;
    margin-right: 0;
    padding: 0px 0 50px;
  }
}

#newsandinfo .wrap .box::before {
  content: "";
  position: absolute;
  right: 100%;
  top: 0;
  bottom: 0;
  width: 100vw;
  /* background: url(); */
}

@media screen and (max-width: 767px) {
  #newsandinfo .wrap .box::before {
    background: none;
  }
}

#newsandinfo .wrap .box .txt {
  /* text-align: left;
  width: 595px;
  padding: 0; */
}

#newsandinfo .wrap .box .ttl {
  font-size: 60px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  #newsandinfo .wrap .box .ttl {
    margin-bottom: 50px;
  }
}

/*news*/
#newsandinfo div.posts {
  text-align: left;
  margin: 0 auto 0 50px;
  width: 65%;
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  #newsandinfo div.posts {
    width: 90%;
    margin: 0 auto;
    padding-top: 50px;
  }
}

div.posts .post-date {
  color: #ccc;
}

div.posts .new-label {
  color: #f00;
}

#newsandinfo div.post a,
#newsandinfo div.post a:link,
#newsandinfo div.post a:visited {
  color: #fff;
}

#newsandinfo div.post ul li div.post-info a.lnkhover:hover {
  color: #00b050 !important;
}

#nebiki {
  /* background: url() no-repeat top left / 150% auto; */
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  #nebiki {
    padding: 50px 0;
  }
}

#nebiki .wrap {
  position: relative;

  position: initial;
  display: flex;
  flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
  #nebiki .wrap {
    display: block;
  }
}

#nebiki .wrap .right {
  margin-left: auto;
  width: 50%;
  position: relative;
  z-index: 3;

  margin-left: 0;
}

@media screen and (max-width: 767px) {
  #nebiki .wrap .right {
    width: 87%;
    margin-bottom: 50px;
  }
}

#nebiki .wrap .right h2 {
  height: 490px;
  width: 363px;
  font-weight: 700;
  margin: 0;
  margin: 0 0 48px 0;
  writing-mode: vertical-rl;

  width: 100%;
  margin: 0;
  /* writing-mode: initial; */
}
@media screen and (max-width: 767px) {
  #nebiki .wrap .right h2 {
    height: auto;
  }
}

#nebiki .wrap .right h2 > span {
  font-size: 60px;
  display: block;
  letter-spacing: 0.02em;
  line-height: 1.48;
  border-right: 2px solid;

  margin-left: 0;
}

@media screen and (max-width: 767px) {
  #nebiki .wrap .right h2 > span {
    font-size: 40px;
  }
}

#nebiki .wrap .right h2 > span:last-of-type {
  /* border-left: 2px solid; */
}

#nebiki .wrap .right h2 span.wrt_mode {
  writing-mode: initial;
  color: red;
}

#nebiki .wrap .left {
  width: 50%;
}

@media screen and (max-width: 767px) {
  #nebiki .wrap .left {
    width: 100%;
  }
}

#nebiki .wrap .left p {
  margin: 0;
  /* margin-bottom: -149px;
  position: relative;
  z-index: 2; */
}

.access .inner.over_wide {
  background-color: #000;
  color: #fff;
}

.access-box {
  padding: 50px 0;
}

.access .box-ttl {
  text-align: center;
}

.box-ttl h4 {
  font-size: 50px;
}

@media screen and (max-width: 767px) {
  .box-ttl h4 {
    font-size: 30px;
  }
}

.box-ttl p.tel a {
  display: flex;
  justify-content: space-evenly;
  align-items: end;
  width: 20%;
  margin: auto;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .box-ttl p.tel a {
    width: 100%;
  }
}

.box-ttl p.tel a {
  font-size: 25px;
}

.box-ttl p.tel img {
  width: 35px;
  height: auto;
}

.access .box dl {
  display: flex;
}

.access .box dl:not(:last-child) {
  margin-bottom: 20px;
}

.access .box dl dt {
  width: 30%;
  text-align: center;
}

.access .box dl dd {
  width: 70%;
}

.access .map.full_screen iframe {
  width: 100%;
  height: 400px;
}

.menu h3.ttl {
  text-align: center;
  font-size: 50px;
}

/*footer*/
.siteFooter {
  border: none;
  /* background: url(); */
  /* background-color: #000; */
  padding: 1em;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .site-footer .footer-nav .container ul {
    display: flex;
    justify-content: space-around;
  }
}

.siteFooter .nav li a {
  color: #fff;
}

.site-footer-copyright {
  padding: 0;
}

.site-footer {
  text-align: center;
}

#menu-footer_menu {
  display: flex;
  justify-content: space-evenly;
}

#menu-footer_menu li {
  border-right: 1px solid #000;
  border-left: 1px solid #000;
}

/*NEWS一覧*/
.page-id-93 .widget_postlist,
.page-id-93 .widget_archive {
  display: none;
}

#top .widget_postlist,
#top .widget_archive {
  display: none;
}

.postNextPrev {
  display: none;
}

.subSection-title:after {
  border-bottom-color: #000;
}

.blog .page-header {
  background-color: #000;
}

.breadSection {
  /* background: url(); */
}

body.category-3 .page-header {
  background-color: #000;
}

/** coupon_page.html **/
#coupon_page .wrap .top {
  width: 60%;
  margin: 0 auto;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  #coupon_page .wrap .top {
    width: 100%;
  }
}

#coupon_page .wrap .top p {
  margin-bottom: 0;
}

#coupon_page .wrap .bottom {
  padding-bottom: 20px;
}

#coupon_page .wrap .bottom p {
  color: #f00;
  font-size: 35px;
  font-weight: bold;
  text-align: center;
  margin: 0;
  padding: 20px 0;
  border: 5px solid;
  border-radius: 20px;
}

@media screen and (max-width: 767px) {
  #coupon_page .wrap .bottom p {
    font-size: 22px;
  }
}

/** footer_banner.php **/
.footer_banner {
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  margin: 0;
  padding: 0;
  z-index: 100 !important;
  width: 100%;
}

/**********メインcss_ここまで**********/
