@charset "UTF-8";

/* ------------------------
base
------------------------ */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  font-size: 62.5%;
}

body {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
  color: #221E1F;
  font-size: 16px;
  line-height: 1.5;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  margin: 0 auto;
  text-align: center;
  position: relative;
  background: #fff;
}

@keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}

main {
  overflow: hidden;
}

img {
  max-width: 100%;
  vertical-align: top;
  /* pointer-events: none; */
}

a, a img {
  cursor: pointer;
  opacity: 1;
  transition: 0.3s;
  text-decoration: none;
}
a:hover, a img:hover {
  opacity: .8;
}

h1, h2, h3, p {
  margin: 0;
  padding: 0;
}

ul, dl, dt, dd {
  padding: 0;
  margin: 0;
}

ul li {
  list-style: none;
}

a {
  color: #000;
}

.flex {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.note {
  font-size: 87.5%!important;
  font-weight: 400!important;
  text-indent: -1em;
  padding-left: 1em;
}
.note::before {
  content: "※";
}

.justify {
  text-align: justify!important;
  text-justify: inter-ideograph!important;
}

.full {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

.sec-inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 768px){
  .sp-only {
    display: none!important;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
}

@media screen and (max-width: 1024px){
  .sec-inner {
    width: 95%;
  }
  
}


@media screen and (max-width: 767px){
  .pc-only {
    display: none!important;
  }
  a:hover, a img:hover {
    opacity: 1;
  }
  .sec-inner {
    width: 90%;
  }
}

@media print {
  .sp-only {
    display: none;
  }
}


/* ------------------------
header
------------------------ */
header {
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 100%;
  max-width: 1000px;
  z-index: 1;
}

header .top {
  padding: 0 18px 0 14px;
  height: 120px;
}

header .top h1 {
  display: block;
  width: 44%;
  height: auto;
}

header .top h1 img {
  display: block;
}

header .top p {
  display: block;
  width: 28.5%;
  height: auto;
}

header .bottom {
  position: relative;
  height: 40px;
  background-image: url(../img/header_bottom_bg.jpg);
  background-size: cover;
}

header .bottom nav {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

header .bottom nav a {
  margin: 0 7px;
}

/* ハンバーガーメニュー */
.hamburger-menu .menu-btn {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  display: -webkit-flex;
  height: 70px;
  width: 70px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #7E0000;
}
.hamburger-menu .menu-btn span,
.hamburger-menu .menu-btn span:before,
.hamburger-menu .menu-btn span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #fff;
  position: absolute;
  transition: all 0.3s;
}
.hamburger-menu .menu-btn span:before {
  bottom: 8px;
}
.hamburger-menu .menu-btn span:after {
  top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}
#menu-btn-check {
  display: none;
}
.hamburger-menu .menu-content {
  width: 100%;
  height: auto;
  position: fixed;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  top: 70px;
  left: 100%;/*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: #7E0000;
  transition: all 0.5s;
  padding: 20px;
}
#menu-btn-check:checked ~ .menu-content {
  left: 0;/*メニューを画面内へ*/
}
.hamburger-menu .menu-content ul li:nth-child(1) {
  margin-bottom: 10px;
}
.hamburger-menu .menu-content ul li:nth-child(2) {
  margin-bottom: 20px;
}
.hamburger-menu .menu-content ul li img {
  width: 100%;
}


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

@media screen and (max-width: 1024px){
  header {
    width: 95%;
  }
  header .top {
    height: 100px;
  }
}

@media screen and (max-width: 768px){
  header .top {
    height: 80px;
  }
}

@media screen and (max-width: 767px){
  header {
    width: 100%;
    position: fixed;
    z-index: 10;
  }
  header .top {
    height: 70px;
  }
  header .top h1 {
    width: 60%;
  }



}

@media screen and (max-width: 360px){
}

@media screen and (max-width: 320px){
}


/* ------------------------
Top
------------------------ */
#Top .mv {
  position: relative;
  height: auto;
}

#Top .mv .mv-logo {
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

/* Slick */
.sliderArea {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}
.sliderArea.w300 {
  max-width: 300px;
}
.slick-slide img {
  width: 100%;
  height: auto;
}
.slick-prev, .slick-next {
  z-index: 1;
}
.slick-prev:before, .slick-next:before {
  color: #000;
}
.slick-slide {
  transition: all ease-in-out .3s;
  opacity: .2;
}
.slick-active {
  opacity: 1;
}
.slick-current {
  opacity: 1;
}
.thumb {
  margin: 20px 0 0;
}
.thumb .slick-slide {
  cursor: pointer;
}
.thumb .slick-slide:hover {
  opacity: .7;
}
.slick-dots {
  bottom: 30px!important;
}
.slick-dots li {
  width: 5%!important;
  height: 7px!important;
  background-color: #5E6D74;
  border-radius: 2px;
}
.slick-dots li.slick-active {
  background-color: #FFFFFF;
}
.slick-dots li button:before {
  display: none;
}
.slick-dotted.slick-slider {
  margin-bottom: 0!important;
}

#Top .demae {
  padding: 90px 0;
  background: url(../img/demae_bg.png) no-repeat top center;
  background-size: cover;
}

#Top .demae .con {
  position: relative;
}
#Top .demae .con:not(:last-of-type) {
  margin-bottom: 70px;
}

#Top .demae .con01 .deco {
  position: absolute;
  top: 0;
  left: 0;
}

#Top .demae .icon {
  margin-bottom: 18px;
}

#Top .demae .area-box {
  width: 73.8%;
  padding: 15px;
  background: #fff;
  border: solid 1px #12193F;
  border-radius: 20px;
  margin: 24px auto 30px;
}

#Top .demae .area-box .flex-l {
  width: 16%;
  background: #12193F;
  color: #fff;
  font-weight: 500;
  border-radius: 5px;
  padding: 22px 0;
}

#Top .demae .area-box .flex-r {
  width: 82%;
}

#Top .demae .btn:not(:last-child) {
  margin-bottom: 20px;
}

#Top .demae .btn img {
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .2);
}

#Top .demae .con02 .deco {
  position: absolute;
  top: 0;
  right: 0;
}

#Top .demae .site-list {
  max-width: 59.2%;
  margin: 30px auto 0;
}

#Top .demae .site-list li {
  margin-bottom: 3%;
  width: 31%;
}

#Top .demae .site-list li a {
  display: block;
  box-shadow: 2px 2px 6px 0 rgba(0, 0, 0, .2);
}

#Top .demae .site-list li img {
  width: 100%;
}

#Top .about {
  background: url(../img/about_bg.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
}

#Top .about .sec-inner {
  position: relative;
  height: 780px;
}

#Top h3.copy {
  position: absolute;
  box-shadow: 8px 8px 8px 0 rgba(0, 0, 0, .2);
}

#Top .about h3.copy {
  top: 0;
  left: 0;
}

#Top .about .txt {
  position: absolute;
  bottom: 50px;
  left: 0;
  z-index: 1;
}

#Top .about .txt img {
  text-align: left;
  display: block;
  margin-bottom: 12px;
}

#Top .about .txt p {
  color: #fff;
  font-size: 112.5%;
  font-weight: 700;
  text-align: left;
  line-height: 1.7;
  text-shadow: 0 0 5px #000,0 0 5px #000,0 0 5px #000,0 0 5px #000;
}

#Top .about .ph {
  position: absolute;
  right: 4%;
  bottom: 3%;
}

#Top .soulfood {
  background: url(../img/soulfood_bg.jpg) no-repeat center center;
  background-size: cover;
  padding: 60px 20px 36px;
  position: relative;
}

#Top .soulfood .sec-inner {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  height: 100%;
}

#Top .soulfood h3.copy {
  top: 0;
  right: 0;
}

#Top .soulfood .deco {
  position: absolute;
  top: 165px;
  right: 25.5%;
}

#Top .soulfood .btn {
  position: absolute;
  bottom: 36px;
  right: 0;
}

#Top .soulfood .btn img {
  box-shadow: 0 8px 8px 0 rgba(0, 0, 0, .2);
  border-radius: 100px;
}

#Top .info {
  padding: 100px 0 120px;
  background: url(../img/info_bg.png) no-repeat center center;
  background-size: cover;
}

#Top .info h2 {
  margin-bottom: 38px;
}

#Top .info .con:not(:last-of-type) {
  margin-bottom: 120px;
}

#Top .info .con01 .flex {
  width: 80%;
  margin: 0 auto 58px;
}

#Top .info .con01 .flex-l {
  width: 52%;
  height: 290px;
  background: url(../img/info_con01_ph01.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
}

#Top .info .con01 .flex-l .deco {
  position: absolute;
  top: -8%;
  left: -5%;
}

#Top .info .con01 .flex-r {
  width: 45.1%;
}

#Top .info .con01 .flex-r .tbl-ttl {
  font-weight: 700;
  color: #7E0000;
  text-align: left;
  margin-bottom: 10px;
}

#Top .info .con01 .flex-r table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

#Top .info .con01 .flex-r table th {
  padding: 8px;
  width: 25%;
}

#Top .info .con01 .flex-r table td {
  padding: 8px 8px 8px 0;
  text-align: left;
  width: 75%;
}

#Top .info .con01 .flex-r table th,
#Top .info .con01 .flex-r table td {
  border-top: solid 1px #707070;
  font-weight: 500;
}
#Top .info .con01 .flex-r table th:last-of-type,
#Top .info .con01 .flex-r table td:last-of-type {
  border-bottom: solid 1px #707070;
}

#Top .info .con01 .flex-r table td span {
  display: block;
  border-left: solid 1px #707070;
  padding-left: 8px;
}

#Top .info .con01 .flex-r table td span .small {
  padding: 0;
  border: none;
  font-size: 85%;
}

#Top .info .con01 .btn01 {
  margin-top: 60px;
}

#Top .info .con01 .btn01 img {
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .2);
}

#Top .info .con02 .gmap {
  position: relative;
}

#Top .info .con02 .gmap .deco {
  position: absolute;
  top: -4%;
  right: -1%;
}

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

@media screen and (max-width: 1024px){
  #Top .mv .mv-logo {
    top: 61%;
  }
  #Top .info .con01 .full img {
    width: 85%;
  }
}

@media screen and (max-width: 768px){
  #Top .demae .con01 .deco,
  #Top .demae .con02 .deco {
    position: inherit;
    display: block;
    margin: 0 auto 20px;
  }
  #Top .demae .area-box {
    display: block;
    padding: 20px;
  }
  #Top .demae .area-box .flex-l {
    padding: 5px 17px;
    display: inline;
  }
  #Top .demae .area-box .flex-r {
    width: 100%;
    margin-top: 10px;
  }
  #Top .demae .site-list {
    max-width: 80.5%;
  }
  #Top .about .sec-inner {
    height: 630px;
  }
  #Top h3.copy img {
    height: 264px;
  }
  #Top .about .txt p {
    font-size: 87.5%;
  }
  #Top .about .ph {
    right: 1%;
    bottom: 1%;
    width: 45%;
  }
  #Top .soulfood .deco {
    top: 75px;
    right: 21.5%;
  }
  #Top .soulfood .btn img {
    width: 320px;
  }
  #Top .info .con01 .flex {
    width: 95%;
  }
  #Top .info .con01 .flex-r table th,
  #Top .info .con01 .flex-r table td {
    font-size: 87.5%;
  }


}

@media screen and (max-width: 767px){
  main {
    margin-top: 70px;
  }
  .slick-slide img {
    height: 630px;
    object-fit: cover;
  }
  #Top .mv .mv-logo {
    width: 90%;
    top: 50%;
  }
  .slick-dots li {
    width: 9%!important;
    height: 3px!important;
  }
  #Top .demae {
    padding: 40px 0;
  }
  #Top .demae .con h2 {
    margin-bottom: 10px;
  }
  #Top .demae .area-box {
    margin: 20px 0 40px;
    width: 100%;
  }
  #Top .demae .btn img {
    width: 100%;
  }
  #Top .demae .con:not(:last-of-type) {
    margin-bottom: 60px;
  }
  #Top .demae .site-list {
    max-width: 100%;
    margin-top: 20px;
  }
  #Top .demae .site-list li {
    margin-bottom: 5%;
    width: 100%;
  }
  #Top .demae .site-list li:last-child {
    margin-bottom: 0;
  }
  #Top .about .txt {
    bottom: 20px;
  }
  #Top .about .ph {
    width: 60%;
  }
  #Top .soulfood {
    background: url(../img/soulfood_bg_sp.jpg) no-repeat top center;
    background-size: cover;
    padding: 130px 10px 50%;
  }
  #Top .soulfood .deco {
    top: 20px;
    left: 0;
  }
  #Top .soulfood .btn {
    bottom: 40px;
  }
  #Top .soulfood .btn img {
    width: 100%;
  }
  #Top .info {
    padding: 40px 0 45px;
  }
  #Top .info .deco {
    display: block;
    margin: 0 auto 20px;
  }
  #Top .info h2 {
    margin-bottom: 10px;
  }
  #Top .info .con01 .flex {
    width: 100%;
    margin-bottom: 40px;
  }
  #Top .info .con01 .flex-l, 
  #Top .info .con01 .flex-r {
    width: 100%;
    height: 230px;
  }
  #Top .info .con01 .flex-r {
    margin-top: 10px;
    height: auto;
  }
  #Top .info .con01 .full img {
    width: 100%;
    padding-left: 10px;
  }
  #Top .info .con01 .btn01 {
    margin-top: 40px;
  }
  #Top .info .con01 .btn01 img {
    width: 100%;
  }
  #Top .info .con:not(:last-of-type) {
    margin-bottom: 60px;
  }

}

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

}


/* ------------------------
pagetop
------------------------ */
.pagetop {
  display: none;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 999;
}

.pagetop a {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  background: #7E0000;
  width: 50px;
  height: 50px;
}
.pagetop a:hover {
  opacity: 1;
  background: #5C0713;
}

@media screen and (max-width: 767px){
  /* .pagetop {
    bottom: 60px;
    width: 50px;
    height: 50px;
  } */
}


/* ------------------------
footer
------------------------ */
footer {
  padding: 36px 0;
}