@charset "utf-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  border-collapse: collapse;
}

img {
  width: 100%;
  vertical-align: bottom;
}

li {
  list-style-type: none;
}

body {
}

a {
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
  font-family: "Hina Mincho", serif;
}

/* header */
header {
  font-family: "Slackside One", cursive;
  width: 100vw;
  height: 110px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: 100;
}

header h1 {
  width: 50px;
  margin: 0 0 0 15px;
}

header .menu-btn {
  display: block;
  position: relative;
  width: 75px;
  height: 75px;
  cursor: pointer;
  z-index: 100;
}

header .menu-btn span {
  position: absolute;
  width: 40%;
  height: 4px;
  left: calc(50% - 40% / 2);
  background: #fff;
  transition: 0.4s;
}

header .top-bar {
  top: calc(35% - 2px / 2);
}
.center-bar {
  top: calc(50% - 2px / 2);
}
.under-bar {
  top: calc(65% - 2px / 2);
}

#open:checked ~ .menu-btn > .top-bar {
  top: calc(50% - 2px / 2);
  transform: rotate(45deg);
  background: #f5ca34;
}

#open:checked ~ .menu-btn > .center-bar {
  opacity: 0;
}

#open:checked ~ .menu-btn > .under-bar {
  top: calc(50% - 2px / 2);
  transform: rotate(-45deg);
  background: #f5ca34;
}

#open {
  display: none;
}

/* inner-menu */
.inner-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  box-sizing: border-box;
  background: #717171;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  z-index: 99;
  overflow-y: scroll;
  text-align: left;
  transform: translate(100%, 0);
}

.inner-menu h2 {
  width: 50px;
  margin: 15px;
}

.inner-menu .global-navi {
  width: 40%;
  display: flex;
  flex-direction: column;
  margin: 50px auto 0;
}

.inner-menu .global-navi li,
.pc-navi .global-navi li {
  background-image: url(../images/moon.png);
  background-repeat: no-repeat;
  background-size: 40px;
  height: 40px;
  font-size: 30px;
  padding-left: 50px;
  margin: 0 0 30px;
}

.inner-menu .global-navi li a {
  margin: -50px 0 0;
}

.inner-menu .sns-container {
  width: 40%;
  display: flex;
  justify-content: space-between;
  margin: 20px auto 0;
}

.inner-menu .sns-container p {
  width: 35px;
}

.inner-menu a {
  color: inherit;
}

#open:checked ~ .inner-menu {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.inner-menu a,
.pc-navi .global-navi li a {
  display: inline-block;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  transition: 0.4s;
  letter-spacing: 6px;
}

.inner-menu nav a:after,
.pc-navi .global-navi li a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #f5ca34;
  transform: translate(-100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  content: "";
}

.inner-menu nav a:hover:after,
.pc-navi .global-navi li a:hover:after {
  transform: translate(0, 0);
}

.inner-menu nav a:hover,
.pc-navi .global-navi li a:hover {
  color: #f5ca34;
}

.inner-menu a img {
  transition: 0.5s;
}

.inner-menu a img:hover {
  opacity: 0.5;
}

header .pc-navi {
  display: none;
}

/**********************************/
/* header pc-size */
@media screen and (min-width: 768px) {
  header #accordion-menu {
    display: none;
  }

  header .pc-navi {
    display: block;
    display: flex;
    align-items: center;
    margin: 0 15px 0 0;
  }

  header .pc-navi .global-navi {
    display: flex;
  }

  header .pc-navi .global-navi li {
    padding: 0 30px 0 0;
    background: none;
  }

  header .pc-navi .global-navi li a {
    font-size: 30px;
    letter-spacing: 3px;
  }
}

/**********************************/

/* main */
main {
  background-color: #444036;
}

main .main-visual {
  padding: 110px 0 0;
}

main .text-title img {
  width: 40px;
}

main .text-title {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0 0;
  font-family: "Slackside One", cursive;
}

main .main-visual h2 img {
  margin: 0 auto 100px;
  width: 100%;
  height: 600px;
  object-fit: cover;
  position: relative;
  z-index: 90;

  animation: main-h2 1s 1 ease;
}

@keyframes main-h2 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

main .top-item01 {
  width: 150px;
  position: absolute;
  z-index: 92;
  top: 12%;
  right: 18px;

  animation: top-item01 1.5s infinite ease-in-out alternate,
    top-item01-2 1s 1 ease-in-out;
}

@keyframes top-item01 {
  0% {
    transform: translateY(30px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes top-item01-2 {
  0% {
    opacity: 0;
    transform: translate(10px, -20px);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}

main .top-item02 {
  width: 130px;
  position: absolute;
  z-index: 92;
  top: 65%;
  left: 30px;
  object-fit: cover;

  animation: top-item02 1.8s infinite ease-in-out alternate-reverse,
    top-item02-2 1.5s 1 ease-in-out;
}

@keyframes top-item02 {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-40px);
  }
}

@keyframes top-item02-2 {
  0% {
    opacity: 0;
    transform: translate(-20px, 20px);
  }

  100% {
    opacity: 1;
    transform: translate(0);
  }
}

.wrap span {
  display: none;
}

/**********************************/
/* main pc-size */
@media screen and (min-width: 768px) {
  main .main-visual h2 img {
    height: 750px;
  }

  main .top-item01 {
    width: 250px;
    right: 30px;
  }

  main .top-item02 {
    width: 200px;
    left: 70px;
  }
}
/**********************************/

main #about {
  color: #fff;
  margin: 0 0 200px;
}

main #about .text-title {
  margin: 0 0 20px;
}

main #about .text-title h3 {
  margin: 0 0 10px 0.3em;
  color: #fff;
  font-size: 35px;
  letter-spacing: 6px;
}

main #about .about-container01,
main #about .about-container02,
main #about .about-container03 {
  position: relative;
}

main #about .about-container01 {
  margin: 0 0 50px;
}

main #about .about-text01 {
  margin: 0 20px 30px;
  position: absolute;
  top: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
}

main #about .about-text01 h3 {
  width: 100%;
  font-size: 19px;
  margin: 0 0 15px;
  font-weight: 600;
  letter-spacing: 1px;
}

main #about .about-text02 h3 {
  width: 100%;
  font-size: 19px;
  margin: 0 0 15px;
  font-weight: 600;
  letter-spacing: 1px;
}

main #about .about-text02 {
  text-align: right;
  position: absolute;
  top: 200px;
  right: 15px;
  font-weight: 600;
  letter-spacing: 1px;
}

main #about .about-container03 {
  margin: 600px auto 200px;
}

main #about .about-container03 span {
  position: absolute;
}

main #about .about-container03 span:nth-child(1) {
  width: 30px;
  top: -450px;
  left: 30px;

  animation: span01 0.6s infinite steps(2, end) alternate;
}

@keyframes span01 {
  0% {
    transform: rotate(0) scale(100%);
  }
  100% {
    transform: rotate(-20deg) scale(50%);
  }
}

main #about .about-container03 span:nth-child(1) img {
  transform: rotate(-25deg);
}

main #about .about-container03 span:nth-child(2) {
  width: 20px;
  top: -270px;
  left: 80px;

  animation: span02 0.6s infinite steps(2, end) alternate;
}

@keyframes span02 {
  0% {
    transform: rotate(0) scale(50%);
  }
  100% {
    transform: rotate(-30deg) scale(100%);
  }
}

main #about .about-container03 span:nth-child(2) img {
  transform: rotate(30deg);
}

main #about .about-container03 span:nth-child(3) {
  width: 15px;
  top: -360px;
  left: 150px;

  animation: span03 0.6s infinite steps(2, end) alternate;
}

@keyframes span03 {
  0% {
    transform: rotate(0) scale(60%);
  }
  100% {
    transform: rotate(40deg) scale(100%);
  }
}

main #about .about-container03 span:nth-child(3) img {
  transform: rotate(20deg);
}

main #about .about-container03 span:nth-child(4) {
  width: 10px;
  top: -180px;
  right: 30px;

  animation: span04 0.6s infinite steps(2, end) alternate;
}

@keyframes span04 {
  0% {
    transform: rotate(0) scale(70%);
  }
  100% {
    transform: rotate(-30deg) scale(100%);
  }
}

main #about .about-container03 span:nth-child(4) img {
  transform: rotate(-10deg);
}

main #about .about-container03 span:nth-child(5) {
  width: 20px;
  top: -90px;
  right: 100px;

  animation: span05 0.6s infinite steps(2, end) alternate;
}

@keyframes span05 {
  0% {
    transform: rotate(0) scale(100%);
  }
  100% {
    transform: rotate(40deg) scale(80%);
  }
}

main #about .about-container03 span:nth-child(5) img {
  transform: rotate(30deg);
}

main #about .about-container03 span:nth-child(6) {
  width: 25px;
  top: -220px;
  right: 120px;

  animation: span06 0.6s infinite steps(2, end) alternate;
}

@keyframes span06 {
  0% {
    transform: rotate(0) scale(80%);
  }
  100% {
    transform: rotate(20deg) scale(100%);
  }
}

main #about .about-container03 span:nth-child(6) img {
  transform: rotate(10deg);
}

main #about .about-container03 span:nth-child(7) {
  width: 20px;
  top: -540px;
  right: 50px;

  animation: span07 0.6s infinite steps(2, end) alternate;
}

@keyframes span07 {
  0% {
    transform: rotate(0) scale(100%);
  }
  100% {
    transform: rotate(30deg) scale(50%);
  }
}

main #about .about-container03 span:nth-child(7) img {
  transform: rotate(10deg);
}

main #about .about-container03 span:nth-child(9) {
  width: 25px;
  top: 550px;
  right: 110px;

  animation: span01 0.6s infinite steps(2, end) alternate;
}

main #about .about-container03 span:nth-child(9) img {
  transform: rotate(15deg);
}

main #about .about-container03 span:nth-child(10) {
  width: 15px;
  top: 490px;
  right: 30px;

  animation: span02 0.6s infinite steps(2, end) alternate;
}

main #about .about-container03 span:nth-child(10) img {
  transform: rotate(-15deg);
}

main #about .about-container03 span:nth-child(11) {
  width: 10px;
  top: 750px;
  right: 80px;

  animation: span03 0.6s infinite steps(2, end) alternate;
}

main #about .about-container03 span:nth-child(11) img {
  transform: rotate(10deg);
}

main #about .about-container03 span:nth-child(12) {
  width: 20px;
  top: 310px;
  left: 120px;

  animation: span04 0.6s infinite steps(2, end) alternate;
}

main #about .about-container03 span:nth-child(12) img {
  transform: rotate(-30deg);
}

main #about .about-container03 span:nth-child(13) {
  width: 10px;
  top: 210px;
  left: 50px;

  animation: span05 0.6s infinite steps(2, end) alternate;
}

main #about .about-container03 span:nth-child(13) img {
  transform: rotate(30deg);
}

main #about .about-container03 span:nth-child(14) {
  width: 30px;
  top: 420px;
  left: 40px;

  animation: span06 0.6s infinite steps(2, end) alternate;
}

main #about .about-container03 span:nth-child(14) img {
  transform: rotate(-30deg);
}

main #about .about-container03 span:nth-child(15) {
  width: 18px;
  top: 650px;
  left: 70px;

  animation: span01 0.6s infinite steps(2, end) alternate;
}

main #about .about-container03 span:nth-child(15) img {
  transform: rotate(30deg);
}

main #about .about-text01 p,
main #about .about-text02 p {
  margin: 0 0 5px;
}

main #about .about-image01 img,
main #about .about-image02 img {
  height: 400px;
  object-fit: cover;
}

main #about .about-text03 {
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  padding: 0 0 400px;
}

main #about .about-text03 p {
  margin: 0 0 20px;
}

/**********************************/
/* about pc-size */
@media screen and (min-width: 768px) {
  main #about {
    margin-bottom: 350px;
  }

  main #about .about-container01,
  main #about .about-container02 {
    width: 70%;
    margin: 0 auto;
  }

  main #about .about-container01 {
    margin-bottom: 300px;
  }

  main #about .about-container02 {
    display: flex;
    align-items: flex-end;
  }

  main #about .about-container03 {
    margin: 1800px auto 200px;
  }

  main #about .about-text01 h3 {
    font-size: 35px;
    margin: 0 0 40px;
    letter-spacing: 3px;
  }

  main #about .about-text02 h3 {
    font-size: 35px;
    margin: 0 0 40px;
    letter-spacing: 3px;
  }

  main #about .about-text01,
  main #about .about-text02 {
    font-size: 20px;
    z-index: 51;
    align-items: flex-end;
    margin: 0 0 20px;
    letter-spacing: 4px;
  }

  main #about .about-text01 {
    top: 200px;
  }

  main #about .about-text02 {
    top: 550px;
  }

  main #about .about-text01 p,
  main #about .about-text02 p {
    margin: 0 0 15px;
  }

  main #about .about-image01 img {
    width: 600px;
    height: 700px;
  }

  main #about .about-image02 img {
    position: absolute;
    width: 600px;
    height: 700px;
    z-index: 50;
  }

  main #about .about-image01 {
    position: absolute;
    right: 0%;
    z-index: 49;
  }

  main #about .about-image02 {
    position: absolute;
    width: 600px;
    height: 700px;
    top: 350px;
    left: 0%;
    z-index: 49;
  }

  main #about .about-container03 span:nth-child(1) {
    width: 30px;
    top: -600px;
    left: 400px;
  }

  main #about .about-container03 span:nth-child(2) {
    width: 20px;
    top: -180px;
    left: 280px;
  }

  main #about .about-container03 span:nth-child(3) {
    width: 15px;
    top: -400px;
    left: 600px;
  }

  main #about .about-container03 span:nth-child(4) {
    width: 10px;
    top: -200px;
    right: 120px;
  }

  main #about .about-container03 span:nth-child(5) {
    width: 20px;
    top: -90px;
    right: 350px;
  }

  main #about .about-container03 span:nth-child(6) {
    width: 25px;
    top: -280px;
    right: 500px;
  }

  main #about .about-container03 span:nth-child(7) {
    width: 20px;
    top: -400px;
    right: 350px;
  }

  main #about .about-container03 span:nth-child(9) {
    width: 25px;
    top: 800px;
    right: 500px;
  }

  main #about .about-container03 span:nth-child(10) {
    width: 15px;
    top: 600px;
    right: 250px;
  }

  main #about .about-container03 span:nth-child(11) {
    width: 10px;
    top: 860px;
    right: 410px;
  }

  main #about .about-container03 span:nth-child(12) {
    width: 20px;
    top: 400px;
    left: 770px;
  }

  main #about .about-container03 span:nth-child(13) {
    width: 10px;
    top: 300px;
    left: 270px;
  }

  main #about .about-container03 span:nth-child(14) {
    width: 30px;
    top: 500px;
    left: 380px;
  }

  main #about .about-container03 span:nth-child(15) {
    width: 18px;
    top: 670px;
    left: 180px;
  }

  main #about .about-text03 {
    font-size: 28px;
    letter-spacing: 4px;
  }

  main #about .about-text03 p {
    margin: 0 0 20px;
  }
}

/**********************************/

/* view-more */
.view-more {
  margin: 0 0 150px;
  text-align: right;
  font-size: 15px;
}

.view-more a {
  font-family: "Darumadrop One", sans-serif;
  border: 3px solid #ccc;
  border-radius: 50px;
  padding: 9px 22px;
  color: #ccc;
  transition: 0.5s;
}

.view-more a:hover {
  color: #444036;
  background: #ccc;
  padding-left: 28px;
  padding-right: 16px;
}

.view-more a span {
  font-size: 18px;
}

#news .view-more {
  margin: 0 5% 0;
}

/* menu */
main #menu {
  width: 90%;
  margin: 0 auto;
  position: relative;
}

main #menu .text-title {
  margin: 0 0 20px;
}

main #menu .text-title h3 {
  margin: 0 0 10px 0.3em;
  color: #fff;
  font-size: 35px;
  letter-spacing: 6px;
}

main #menu .menu-title {
  color: #fff;
  margin: 50px 0 20px;
  font-family: "Slackside One", cursive;
}

main #menu .menu-title p {
  font-size: 25px;
  letter-spacing: 3px;
  margin: 0 0 0 0.5em;
}

main #menu .menu-container .sp-menu-container {
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  justify-content: center;
  margin: 0 0 20px;
}

main #menu .menu-items {
  display: flex;
  flex-direction: column;
  width: 150px;
  margin: 0 0 15px;
}

main #menu .menu-items img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  margin: 10px;
  border-radius: 50%;
}

main #menu .menu-items .menu-text {
  font-size: 13px;
  color: #fff;
  text-align: center;
  width: 100%;
  padding: 10px;
  background-color: #717171;
  border-radius: 5px;
}

main #menu .menu-items .menu-text p:nth-child(1) {
  font-size: 14px;
  font-weight: bold;
}

main #menu .menu-items .menu-text p:nth-child(2) {
  letter-spacing: 1px;
}

main #menu .menu-container span {
  margin: 10px 0 0;
  text-align: right;
  color: #ccc;
  font-size: 12px;
  padding-bottom: 20px;
}

/**********************************/
/* menu pc-size */
@media screen and (min-width: 768px) {
  main #menu .menu-container {
    display: flex;
    justify-content: center;
    column-gap: 80px;
    margin: 0 auto 30px;
  }
  main #menu .menu-container .sp-menu-container {
    margin: 0;
    padding: 0;
    column-gap: 80px;
  }

  main #menu .menu-title {
    margin-left: 16%;
  }
}
/**********************************/

/* news */
main #news {
  margin: 0 auto;
}

main #news .text-title {
  margin: 0 0 20px;
}

main #news .text-title h3 {
  margin: 0 0 10px 0.3em;
  color: #fff;
  font-size: 35px;
  letter-spacing: 6px;
}

main #news .news-main-container {
  row-gap: 40px;
}

main #news .news-container {
  color: #fff;
  width: 90%;
  margin: 0 auto 30px;
  background-color: #717171;
  padding: 15px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}

main #news .news-container h5 {
  margin: 0 0 5px;
  font-size: 18px;
  letter-spacing: 1px;
  font-family: "Slackside One", cursive;
}

main #news .news-container h4 {
  color: #f5ca34;
  letter-spacing: 0.5px;
}

main #news .news-container .news-visual {
  width: 100%;
  margin: 20px auto;
}

main #news .news-container .news-visual img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

main #news .news-container .event-date {
  margin: 15px 0 0;
  font-weight: bold;
  letter-spacing: 1px;
}

main #news .news-container table {
  margin: 15px auto;
  border: 2px solid #fff;
}

main #news .news-container table th {
  border: 2px solid #fff;
  padding: 5px 10px;
}

main #news .news-container table td {
  border: 2px solid #fff;
  padding: 5px 10px;
}

main #news #new03 {
  padding-bottom: 70px;
}

main #news .news-container .news-text {
  font-size: 15px;
}

main #news .news-container .news-text ul {
  margin: 1em 0;
}

main #news .news-container .news-text ul li {
  list-style: disc;
  margin: 0 0 0 1.5em;
}

main #news .slide-items,
main #news .pc-slide-items {
  width: 100%;
  margin: 0 auto 90px;
}

main #news .slide-items div p:nth-child(2) {
  font-size: 20px;
  font-family: "Slackside One", cursive;
}

main #news .slide-items div p:nth-child(3) {
  color: #f5ca34;
  font-weight: bold;
  letter-spacing: 2px;
}

main #news .slide-items a div,
main #news .pc-slide-items a div {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 0 10px;
}

main #news .slide-items a div img,
main #news .pc-slide-items a div img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin: 0 0 10px;
  border-radius: 25px;
}

main #news .slide-items a,
main #news .pc-slide-items a {
  transition: 0.3s;
  color: #fff;
}

main #news .slide-items a:hover,
main #news .pc-slide-items a:hover {
  opacity: 0.5;
}

.slick-dots {
  bottom: -50px;
}
.slick-dots li {
  margin: 0 5px;
  width: 30px;
  height: 5px;
}
.slick-dots li button:before {
  content: "";
  width: 30px;
  height: 5px;
  background: #ccc;
  opacity: 1;
}
.slick-dots li.slick-active button:before {
  background: #f8ee45;
}

main #news .pc-slide-items {
  display: none;
}

/**********************************/
/* news pc-size */
@media screen and (min-width: 768px) {
  main #news .news-container {
    width: 50%;
    margin: 0 auto 40px;
    padding: 40px;
  }

  main #news .news-container h4 {
    font-size: 20px;
  }

  main #news .news-container .news-visual {
    width: 90%;
    margin: 30px auto;
    text-align: center;
  }

  main #news .news-container .news-visual img {
    width: 80%;
    height: 500px;
  }

  main #news .news-container table th {
    padding: 5px 20px;
  }

  main #news .news-container table td {
    padding: 10px 20px;
  }

  main #news .slide-items {
    display: none;
  }
  main #news .pc-slide-items {
    display: block;
    width: 100%;
    margin: 0 auto 100px;
    padding: 0;
  }

  main #news .pc-slide-items div p:nth-child(2) {
    font-size: 20px;
    font-family: "Slackside One", cursive;
  }

  main #news .pc-slide-items div p:nth-child(3) {
    color: #f5ca34;
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 18px;
  }

  main #news .pc-slide-items a {
    padding: 0 20px;
  }

  main #news .pc-slide-items a div p img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    margin: 0 0 10px;
  }
}
/**********************************/

/**********************************/
/* news tb-size */
@media only screen and (max-width: 1000px) and (min-width: 768px) {
  main #news .slide-items {
    display: block;
  }
  main #news .slide-items {
    width: 100%;
    margin: 0 auto 90px;
    padding: 0;
  }

  main #news .slide-items a {
    width: 100%;
  }

  main #news .slide-items a div {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 0;
  }

  main #news .slide-items a div img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    margin: 0 auto 10px;
    border-radius: 25px;
  }

  main #news .pc-slide-items {
    display: none;
  }
}
/**********************************/

/* access */
main #access {
  color: #fff;
}

main #access .text-title {
  margin: 120px 0 20px;
}

main #access .text-title h3 {
  color: #fff;
  margin: 0 0 10px 0.3em;
  font-size: 35px;
  letter-spacing: 6px;
}

main #access .cafe-image img {
  height: 400px;
  object-fit: cover;
  margin: 0 0 30px;
}

main #access iframe {
  width: 90%;
  display: flex;
  margin: 0 auto;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}

main #access table {
  margin: 30px auto 0;
  font-size: 14px;
}

main #access table tr {
  display: flex;
  column-gap: 10px;
  margin: 0 0 20px;
}

main #access table tr td p {
  margin: 0 0 5px;
  letter-spacing: 1px;
}

main #access table tr th .access-address {
  width: 100%;
  border: 1px solid;
  border-radius: 50px;
  padding: 4px 19px;
  letter-spacing: 1px;
}

main #access table tr th .access-title {
  width: 25%;
  border: 1px solid;
  border-radius: 50px;
  padding: 4px 12px;
  letter-spacing: 1px;
}

main #access table tr th .access-open {
  width: 100%;
  border: 1px solid;
  border-radius: 50px;
  padding: 4px 12px;
  letter-spacing: 1px;
}

main #access .about-slide-items {
  width: 100%;
  margin: 50px auto 0;
  padding: 0 0 100px;
}

main #access .about-slide-items div img {
  width: 400px;
  height: 450px;
  object-fit: cover;
  padding: 0 30px;
}

/**********************************/
/* access pc-size */
@media screen and (min-width: 768px) {
  main #access .pc-access-container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    column-gap: 40px;
  }

  main #access .cafe-image img {
    height: 650px;
    margin: 0;
  }

  main #access iframe {
    width: 500px;
  }

  main #access table {
    margin: 50px 0 0;
    font-size: 16px;
  }

  main #access table tr {
    column-gap: 30px;
  }

  main #access .about-slide-items {
    margin: 150px 0 0;
  }

  main #access .about-slide-items div img {
    width: 600px;
    height: 650px;
    padding: 0 50px;
  }
}

/**********************************/

/* contact */
main #contact-form {
  width: 85%;
  margin: 0 auto;
  padding: 0 0 50px;
  color: #fff;
}

main #contact-form .text-title {
  margin: 0 0 40px;
}

main #contact-form .text-title h3 {
  margin: 0 0 10px 0.3em;
  color: #fff;
  font-size: 35px;
  letter-spacing: 6px;
}

main #contact-form .form-flex-contaier {
  margin: 0 0 20px;
}

main #contact-form .contact-tel {
  text-align: center;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 20px 0;
  margin: 0 0 20px;
  letter-spacing: 2px;
}

main #contact-form .contact-tel h4 {
  font-size: 25px;
  margin: 5px 0;
  letter-spacing: 3px;
}

main #contact-form .contact-tel h4 a {
  color: #fff;
}

main #contact-form .contact-tel table {
  margin: 0 auto;
  font-size: 15px;
}

main #contact-form .contact-tel table tr th {
  padding: 0 15px 0 0;
}

main #contact-form .form-flex-contaier dt {
  margin: 0 0 5px;
  letter-spacing: 1px;
}

main #contact-form .form-flex-contaier span {
  color: #444036;
  font-size: 12px;
  background-color: #f5ca34;
  padding: 1px 3px;
  margin: 0 0 0 1em;
  border-radius: 10%;
  font-weight: bold;
}

main #contact-form .form-flex-contaier #name {
  background-color: #ccc;
  border: none;
  width: 70%;
  height: 30px;
  border-radius: 10px;
  padding: 5px;
  font-size: 13px;
  font-family: "Hina Mincho", serif;
}

main #contact-form .form-flex-contaier #email {
  background-color: #ccc;
  border: none;
  width: 70%;
  height: 30px;
  border-radius: 10px;
  padding: 5px;
  font-size: 13px;
  font-family: "Hina Mincho", serif;
}

main #contact-form .form-flex-contaier #tel {
  background-color: #ccc;
  border: none;
  width: 70%;
  height: 30px;
  border-radius: 10px;
  padding: 5px;
  font-size: 13px;
  font-family: "Hina Mincho", serif;
}

main #contact-form .form-flex-contaier #contact {
  background-color: #ccc;
  border: none;
  width: 100%;
  height: 100px;
  border-radius: 10px;
  padding: 5px;
  color: #000;
  font-size: 13px;
  font-family: "Hina Mincho", serif;
  margin: 0 0 20px;
}

main #contact-form p.submit {
  text-align: center;
  margin: 0 auto;
  padding-bottom: 50px;
}

main #contact-form p.submit button[type="submit"] {
  font-size: 18px;
  padding: 10px 30px;
  background: #f5ca34;
  color: #444036;
  border: none;
  border-radius: 50px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: 0.5s;
  font-family: "Hina Mincho", serif;
  font-weight: bold;
}

main #contact-form p.submit button[type="submit"]:hover {
  background: #717171;
  color: #f5ca34;
}

/**********************************/
/* contact pc-size */
@media screen and (min-width: 768px) {
  main #contact-form {
    width: 50%;
  }

  main #contact-form .contact-tel {
    padding: 30px 0;
  }

  main #contact-form .contact-tel h4 {
    font-size: 30px;
    margin: 10px 0;
  }

  main #contact-form .form-flex-contaier dt {
    margin: 0 0 15px;
  }

  main #contact-form .form-flex-contaier #name {
    width: 40%;
  }

  main #contact-form .form-flex-contaier #email {
    width: 40%;
  }

  main #contact-form .form-flex-contaier #tel {
    width: 40%;
  }
}

/**********************************/

/* kazari */
.kazari {
  margin: -50px 0 0;
  padding: 0 0 500px;
}

.base {
  width: 100%;
  height: 100%;
}

.base-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.base-image {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
}

/* footer */
footer {
  background-color: #f8ee45;
  border-radius: 20% 20% 0 0;
  position: relative;
  z-index: 10;
}

footer .footer-illust01 img {
  width: 95px;
  position: absolute;
  top: -20%;
  left: 50px;

  animation: footer-illust02-1 5s 1s infinite steps(1, end) alternate;
}

footer .footer-illust02 img {
  width: 140px;
  position: absolute;
  top: -25%;
  right: 40px;

  animation: footer-illust02-1 1.5s infinite steps(1, end) alternate;
}

@keyframes footer-illust02-1 {
  0% {
    transform: rotate(5deg);
  }
  20% {
    transform: rotate(-5deg);
  }
  40% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(5deg);
  }
}

footer .footer-text {
  width: 65%;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 30px;
  padding: 70px 40px 0;
  margin: 0 auto;
  color: #444036;
}

footer .footer-text p img {
  width: 100px;
  margin: 0 0 20px;
}

footer nav ul {
  margin: 0 auto 30px;
}

footer nav ul li {
  margin: 0 0 1px;
}

footer nav ul li a {
  color: #444036;
  font-size: 30px;
  transition: 0.5s;
  display: inline-block;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: 0.4s;
  font-family: "Slackside One", cursive;
}

footer nav ul li a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #444036;
  transform: translate(-100%, 0);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
  content: "";
}

footer nav ul li a:hover:after {
  transform: translate(0, 0);
}

footer .sns-container {
  width: 45%;
  display: flex;
  justify-content: center;
  column-gap: 20px;
  margin: 0 auto 30px;
}

footer .sns-container a {
  border: 2px solid #444036;
  border-radius: 50px;
  transition: 0.5s;
}

footer .sns-container p img {
  width: 20px;
  margin: 8px;
}

footer .sns-container a:hover {
  background-color: #fff;
}

footer .footer-address {
  color: #444036;
  margin: 20px 0;
  font-size: 12px;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.5px;
}

footer .copy {
  color: #666;
  width: 100%;
  text-align: center;
  padding: 10px 0 20px;
  font-weight: bold;
}

footer .footer-text .pc-footer-address,
footer .footer-text .pc-sns-container {
  display: none;
}

/**********************************/
/* footer pc-size */
@media screen and (min-width: 768px) {
  footer .footer-illust01 img {
    width: 140px;
    top: -30%;
    left: 200px;
  }
  footer .footer-illust02 img {
    width: 220px;
    top: -40%;
    right: 190px;
  }

  footer .footer-text {
    width: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 70px 0 0;
    margin: 0 auto 30px;
  }

  footer .sns-container {
    display: none;
  }

  footer .footer-text .pc-footer-address {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
  }

  footer .footer-text .pc-footer-address div p a {
    color: #444036;
  }

  footer .footer-text p img {
    margin: 0 0 15px;
  }

  footer .footer-text .pc-sns-container {
    display: block;
    margin: 0;
  }

  footer .footer-text .pc-sns-container {
    width: 45%;
    display: flex;
    justify-content: center;
    column-gap: 20px;
    margin: 0 auto;
  }

  footer .footer-text .pc-sns-container a {
    border: 2px solid #444036;
    border-radius: 50px;
    transition: 0.5s;
  }

  footer .footer-text .pc-sns-container p img {
    width: 20px;
    margin: 8px;
  }

  footer .footer-text .pc-sns-container a:hover {
    background-color: #fff;
  }

  footer nav ul {
    margin: 0 auto 10px;
  }

  footer .footer-address {
    display: none;
  }
}

/**********************************/

/* 要素のフェードに関する記述 */
.js-fadeUp {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s, transform 0.6s;
}

.js-fadeUp.to-inview {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}

.js-fadeUp01 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s, transform 0.8s;
}

.js-fadeUp01.to-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.js-fadeUp02 {
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.8s, transform 0.8s;
}

.js-fadeUp02.to-inview {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.6s;
}

.js-fadeUp03 {
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.8s, transform 0.8s;
}

.js-fadeUp03.to-inview {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.5s;
}

.js-fadeUp04 {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s, transform 0.5s;
}

.js-fadeUp04.to-inview {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}

/* menu-fadeUp */
.menu-fadeUp01 {
  opacity: 0;
  scale: 75%;
  transition: opacity 0.4s, scale 0.4s;
}

.menu-fadeUp01.to-inview {
  opacity: 1;
  scale: 100%;
  transition-delay: 0.2s;
}

/* accordion-menu-fadeUp */
.navi01 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s, transform 0.4s;
}

.navi01.to-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.navi02 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s, transform 0.4s;
}

.navi02.to-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.navi03 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s, transform 0.4s;
}

.navi03.to-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.navi04 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s, transform 0.4s;
}

.navi04.to-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.navi05 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s, transform 0.4s;
}

.navi05.to-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.navi06 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s, transform 0.4s;
}

.navi06.to-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}

.navi07 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s, transform 0.4s;
}

.navi07.to-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

.navi08 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s, transform 0.4s;
}

.navi08.to-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.9s;
}

.other-menu01 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s, transform 0.4s;
}

.other-menu01.to-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.other-menu02 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s, transform 0.4s;
}

.other-menu02.to-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.other-menu03 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s, transform 0.4s;
}

.other-menu03.to-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.other-menu04 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s, transform 0.4s;
}

.other-menu04.to-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.other-menu05 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s, transform 0.4s;
}

.other-menu05.to-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.other-menu06 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s, transform 0.4s;
}

.other-menu06.to-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.7s;
}
