@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Alegreya:ital,wght@0,400..900;1,400..900&family=Zen+Kaku+Gothic+Antique:wght@400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  background: #4E39D0;
}
@media (max-width: 1035px) {
  body {
    padding-top: 0px;
    background: #4E39D0;
    color: #fff;
  }
}
html {
  scroll-behavior: smooth;
}
/*** The new CSS reset - version 1.5.1 (last updated 1.3.2022) ***/
*:where(:not(iframe, canvas, img, svg, video):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}
*, *::before, *::after {
  box-sizing: border-box;
}
a, button {
  cursor: revert;
}
ol, ul, menu {
  list-style: none;
}
img {
  max-width: 100%;
}
table {
  border-collapse: collapse;
}
textarea {
  white-space: revert;
}
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}
:where([hidden]) {
  display: none;
}
:where([contenteditable]) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
}
:where([draggable=true]) {
  -webkit-user-drag: element;
}
.__sp {
  display: none;
}
@media (max-width: 767px) {
  .__sp {
    display: block;
  }
}
.__pc {
  display: block;
}
@media (max-width: 767px) {
  .__pc {
    display: none;
  }
}

/***ヘッダー***/
/*サイト名*/
.header_title{
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  text-align: center;
  margin: 20px auto;
}
.header_title span{
  display: block;
  font-size: 12px;
  font-weight: 200;
  margin-top: 5px;
}
.header_title img{
  width: 40px;
  margin-right: 15px;
}

/*ナビゲーション*/
.menu {
  padding-bottom: 2em;
}
@media (max-width: 1035px) {
  .menu {
    padding-top: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    padding-bottom: 3em;
    border-bottom: 1px solid #eee;
    display: none;
  }
  .menu.active {
    display: flex;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
/*    height: 40svh;*/
    background: #333;
  }
}
.menu div {
  text-align: center;
  gap: 0em;
/*  background: #c51b1b;*/
  padding: 8px 0 10px;
  width: 100%;
  border-top: 1px #ddd solid;
  border-bottom: 1px #ddd solid;
}
@media (max-width: 1035px) {
  .menu div {
    flex-flow: column;
    gap: 1em;
    margin-bottom: 1em;
    background: #333;
    line-height: 3em;
    border-top:none;
    border-bottom: none;
  }
  .menu div a {
    color: #fff;
    text-align: center;
    font-size: 14px;
    display: block;
    border-bottom: 1px #707070 solid;
  }
}
.menu div a:hover {
  background: #ff7c7c;
  color: #fff;
  border-radius: 5px;
}
.menu div a:after {
  content: "";
  color: #ccc;
}
@media (max-width: 1035px) {
  .menu div a:after {
    content: "";
  }
}
.menu div a:last-child:after {
  content: "";
  color: #ccc;
}
.menu a {
  color: #fff;
  font-size: 14px;
  padding: 6px 8px;
}
@media (max-width: 767px) {
  .menu a {
    font-size: 24px;
  }
}
.menu_btn {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
  display: none;
}
@media (max-width: 1035px) {
  .menu_btn {
    display: block;
  }
}
.openbtn {
  position: relative; /*ボタン内側の基点となるためrelativeを指定*/
  background: #8e7bff;
  cursor: pointer;
  width: 44px;
  height: 44px;
}
/*ボタン内側*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 12px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  width: 45%;
}
.openbtn span:nth-of-type(1) {
  top: 13px;
}
.openbtn span:nth-of-type(2) {
  top: 21px;
}
.openbtn span:nth-of-type(3) {
  top: 29px;
}
/*activeクラスが付与されると1・3番目の要素が2番目の要素と同じ位置になり一本線に*/
.openbtn.active span:nth-of-type(1),
.openbtn.active span:nth-of-type(3) {
  top: 23px;
}
.menu-sp{
  width: 100%;
  color: #fff;
  font-size: 14px;
  padding: 15px;
  margin-bottom: 15px;
  text-align: center;
  border-top: 1px #ddd solid;
  border-bottom: 1px #ddd solid;
}
.menu-sp div{
  justify-content: space-evenly;
  display: flex;
}

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

/***コンテンツ***/
h2{
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center; 
  padding: 10px;
  border-bottom: 1px #fff solid;
  width: 200px;
  margin: 0 auto 20px;
}
h3 {
  line-height: 35px;
  position: relative;
  height: 34px;
  margin: 0em 30px 15px 50px;
  text-align: center;
  color: #fff;
  background: #ff7c7c;
  width: 55px;
  font-size: 14px;
}
h3:before,
h3:after {
  position: absolute;
  top: 0;
  display: block;
  content: '';
  border: 17px solid #ff7c7c;
}
h3:before {
  left: -27px;
  border-left-width: 10px;
  border-left-color: transparent;
}
h3:after {
  right: -27px;
  border-right-width: 10px;
  border-right-color: transparent;
}

h3 span {
  position: relative;
  display: block;
}
h4{
  color: #fd4444;
  width: 90%;
  margin: 30px 10px 15px 10px;
  padding-bottom: 5px;
  border-bottom: 1px #ff7c7c dotted;
}
.youtube{
  text-align: center;
  width: 100%;
  margin-bottom: 10px;
}
.youtube iframe{
  width: 520px;
  height: 315px;
}
@media (max-width: 1035px) {
  h3{
    margin-left: 30px;
  }
  h4{
    width: 345px;
    margin: 15px 10px 15px 10px;
  }
  .youtube iframe{
    width: 380px;
    height: 260px;
  }
}

section {
  margin-bottom: 15px;
}
.biz-hour{
  max-width: 380px;
  margin: auto;
}
.biz-hour td{
  border:1px #fff solid;
  padding: 5px 10px;
  font-size: 16px;
  text-align: center;
}
.content{
  max-width: 750px;
  margin: 30px auto 15px;
}
.content table{
  max-width: 360px;
  margin: 10px auto 0px;
}

.content table td{
  text-align: center;
  line-height: 1.6em;
  line-break: anywhere;
  padding-bottom: 5px;
  font-size: 14px;
  vertical-align: middle;
  padding: 10px;
}
.content table td img{
  width: 100px;
  height: 100px;
  border-radius: 200px;
  object-fit: cover;
}
.cash-only{
  text-align: center;
  width: 80%;
  background: #FFEE52;
  color: #333;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 0;
  margin: 30px auto 0;
  border-radius: 50px;
}
.adress{
  display: block;
  width: 300px;
  margin: 5px auto 0px;
  padding-top: 5px;
  text-align: center;
  font-size: 18px;
}
.text{
  display: block;
  width: 450px;
  margin: 10px auto 0px;
  padding-top: 5px;
  white-space: nowrap;
}
@media (max-width: 1035px) {
  .text{
    width: 280px;
  }
}
.text2{
  display: block;
  width: 360px;
  margin: auto;
  padding: 5px 10px 10px;
  text-align: left;
  font-size: 14px;
  line-height: 1.8em;
}
.bold{
  font-weight: bold;
}
.attention{
  width: 750px;
  margin: 10px auto;
  padding: 10px 15px;
  background: #291D72;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.6em;
      max-height: 500px;
    overflow-y: scroll;
}
.way{
  max-width: 750px;
  margin: auto;
}
.way img{
  width: 372px;
  margin: auto;
}
@media (max-width: 1035px) {
  .attention{
    width: 360px;
    }
    .way{
    max-width: 360px;
    margin: auto;
  }
  .way img{
    width: 177px;
    margin: auto;
  }
}
.content table td img:hover{
  background-image: 100%;
  opacity: 0.7;
}
@media (max-width: 1035px) {
  .content{
    max-width: 390px;
  }
  .content table td{
    font-size: 18px;
  }
}
.content img{
  margin: auto;
}


/***フッター***/
footer{
  
}
@media (max-width: 1035px) {
  footer{
    padding-top: 15px;
  }
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
