body {
  font-family: "Josefin Slab", serif;
  color: #896464;
  background-color: #fffaf4;
  font-weight: bold;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  border-radius: 15px;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  display: inline-block;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding-inline: 2%;
}

.wrapper {
  max-width: 954px;
  margin: 0 auto;
  padding-inline: 2%;
}

.btn {
  transition: 0.5s;
}
.btn:hover {
  opacity: 0.7;
}

.slick-prev {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: #896464;
  z-index: 100;
}
.slick-prev:hover {
  background: #896464;
  opacity: 0.5;
}
.slick-prev:focus {
  background: #896464;
  opacity: 0.7;
}

.slick-prev:before {
  content: "";
  width: 20px;
  height: 2px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
}

.slick-prev:after {
  content: "";
  width: 8px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 43%;
  left: 25%;
  transform: rotate(-45deg);
}

.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: #896464;
  z-index: 100;
}
.slick-next:hover {
  background: #896464;
  opacity: 0.5;
}
.slick-next:focus {
  background: #896464;
  opacity: 0.7;
}

.slick-next:before {
  content: "";
  width: 20px;
  height: 2px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
}

.slick-next:after {
  content: "";
  width: 8px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 43%;
  right: 26%;
  transform: rotate(45deg);
}

header {
  height: 167px;
  background-color: #fffaf4;
  position: fixed;
  width: 100%;
  z-index: 11;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header-left img {
  width: 337px;
}
header .header-right {
  display: flex;
  align-items: center;
}
header .header-right .online {
  width: 188px;
  height: 50px;
  font-size: 25px;
  color: #896464;
  border: 1px solid #896464;
  text-align: center;
  line-height: 50px;
  background-color: #ffe4e4;
  margin-right: 50px;
}
@media screen and (max-width: 745px) {
  header .header-right .online {
    display: none;
  }
}
header .header-right .toggle {
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
  z-index: 10;
  transition: 0.5s;
}
header .header-right .toggle:hover {
  opacity: 0.7;
}
header .header-right .toggle span {
  width: 100%;
  height: 2px;
  background-color: #896464;
  display: inline-block;
  position: absolute;
  transition: 0.5s;
}
header .header-right .toggle span:nth-child(1) {
  top: 15%;
}
header .header-right .toggle span:nth-child(2) {
  top: 50%;
}
header .header-right .toggle span:nth-child(3) {
  top: 85%;
}
header .mask {
  background-color: #ece3de;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  z-index: 2;
}
header nav {
  background-color: #fffaf4;
  padding: 60px 30px;
  width: 300px;
  height: 100%;
  position: fixed;
  top: 0;
  left: -300px;
  font-size: 16px;
  transition: 0.5s;
  z-index: 3;
}
header nav a {
  color: #896464;
}
header nav .list {
  padding-bottom: 30px;
}
header nav .list li {
  padding-block: 10px;
  transition: 0.5s;
}
header nav .list li:hover {
  opacity: 0.7;
}
header nav .sns li {
  padding-block: 10px;
  transition: 0.5s;
}
header nav .sns li:hover {
  opacity: 0.7;
}
header nav .online {
  visibility: hidden;
  opacity: 0;
  padding-block: 10px;
  transition: 0.5s;
}
header nav .online:hover {
  opacity: 0.7;
}
@media screen and (max-width: 745px) {
  header nav .online {
    visibility: visible;
    opacity: 1;
  }
}
header.open .header-right .toggle span:nth-child(1) {
  transform: rotate(315deg);
  top: 50%;
  background-color: #896464;
}
header.open .header-right .toggle span:nth-child(2) {
  opacity: 0;
}
header.open .header-right .toggle span:nth-child(3) {
  transform: rotate(-315deg);
  top: 50%;
  background-color: #896464;
}
header.open .mask {
  display: block;
}
header.open nav {
  left: 0;
}

.mainvisual img {
  height: 100vh;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
}

.section-title {
  font-size: 50px;
  text-align: center;
  padding-block: 100px;
}

.news {
  position: relative;
  padding-bottom: 80px;
}
.news .item {
  display: flex;
  align-items: center;
  padding-block: 30px;
  border-top: 1px solid #896464;
}
@media screen and (max-width: 745px) {
  .news .item {
    flex-direction: column;
  }
}
.news .item:first-child {
  padding-top: 0;
  border-top: 0;
}
.news .item img {
  width: 265px;
}
@media screen and (max-width: 745px) {
  .news .item img {
    width: 100%;
  }
}
.news .item .text {
  padding-left: 80px;
}
@media screen and (max-width: 745px) {
  .news .item .text {
    padding: 20px 0 0 0;
    text-align: center;
  }
}
.news .item .text .date {
  padding-bottom: 20px;
}
.news a {
  position: absolute;
  right: 10px;
  bottom: 30px;
  z-index: 10;
}

.more {
  color: #896464;
  position: relative;
}
.more::after {
  content: "";
  width: 38px;
  height: 38px;
  background-color: #ffe4e4;
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  left: -20px;
  top: -10px;
}

.back {
  color: #896464;
  position: relative;
}
.back::after {
  content: "";
  width: 38px;
  height: 38px;
  background-color: #ffe4e4;
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  left: -20px;
  top: -10px;
}

.slide-items {
  width: 100%;
  height: 100%;
}

.slide-items img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.slick-slide {
  padding-inline: 15px;
}

.slick-prev {
  left: 10px;
  z-index: 1;
}

.slick-next {
  right: 10px;
  z-index: 1;
}

.slick-prev:before,
.slick-next:before {
  color: #896464;
  opacity: 1;
  font-size: 30px;
}

.slick-dots {
  left: 50%;
  transform: translateX(-50%);
}

.menu .en-title {
  text-align: center;
  font-size: 30px;
  padding-block: 30px;
}
.menu .ja-title {
  text-align: center;
  font-size: 20px;
  padding-bottom: 100px;
}
.menu .wrapper {
  position: relative;
}
.menu .wrapper .category {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 745px) {
  .menu .wrapper .category {
    flex-direction: column;
  }
}
.menu .wrapper .category:last-child {
  margin-bottom: 0;
}
.menu .wrapper .category img {
  width: 60%;
  height: 340px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 745px) {
  .menu .wrapper .category img {
    width: 100%;
  }
}
@media screen and (max-width: 745px) {
  .menu .wrapper .category .left {
    order: 2;
  }
}
.menu .wrapper .category .inner {
  width: 40%;
  padding-top: 50px;
  display: flex;
  justify-content: center;
}
.menu .wrapper .category .inner .inner-right {
  text-align: left;
  transition: 0.5s;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 745px) {
  .menu .wrapper .category .inner .inner-right {
    text-align: center;
  }
}
.menu .wrapper .category .inner .inner-right:hover {
  opacity: 0.7;
}
.menu .wrapper .category .inner .inner-right a {
  color: #896464;
}
@media screen and (max-width: 745px) {
  .menu .wrapper .category .inner .inner-right .more::after {
    left: 0;
  }
}
@media screen and (max-width: 745px) {
  .menu .wrapper .category .inner .inner-right .more.more-after::after {
    left: 20px;
  }
}
.menu .wrapper .category .inner .inner-left {
  text-align: right;
  transition: 0.5s;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 745px) {
  .menu .wrapper .category .inner .inner-left {
    text-align: center;
  }
}
.menu .wrapper .category .inner .inner-left:hover {
  opacity: 0.7;
}
.menu .wrapper .category .inner .inner-left a {
  color: #896464;
}
.menu .wrapper .category .inner .inner-left .more::after {
  margin-left: 60px;
}
@media screen and (max-width: 745px) {
  .menu .wrapper .category .inner .inner-left .more::after {
    margin-left: 0;
    left: 10px;
  }
}
.menu .wrapper .category .inner p {
  font-size: 25px;
  padding-bottom: 10px;
}
.menu .wrapper .category .inner .ja {
  font-size: 16px;
  padding-bottom: 40px;
}
.menu .wrapper .category .inner .more {
  font-size: 16px;
}
.menu .wrapper .btn {
  position: absolute;
  right: 0;
  bottom: 30px;
  z-index: 10;
}
.menu .wrapper .menu-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: 100px;
}
.menu .wrapper .menu-items .item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.menu .wrapper .menu-items .item img {
  width: 230px;
}

.concept .contents {
  position: relative;
}
.concept .contents .pc {
  -o-object-fit: cover;
     object-fit: cover;
  height: 470px;
  width: 100%;
  border-radius: 0;
}
@media screen and (max-width: 745px) {
  .concept .contents .pc {
    display: none;
  }
}
.concept .contents .sp {
  display: none;
  border-radius: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 770px;
}
@media screen and (max-width: 745px) {
  .concept .contents .sp {
    display: block;
  }
}
.concept .contents .box {
  max-width: 570px;
  position: absolute;
  top: 50%;
  left: 100px;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.5);
  font-size: 17px;
  padding: 50px 30px;
}
@media screen and (max-width: 745px) {
  .concept .contents .box {
    max-width: 100%;
    left: 0;
    margin-inline: 20px;
  }
}

.access .items {
  display: flex;
  align-items: flex-start;
  padding-bottom: 100px;
}
@media screen and (max-width: 745px) {
  .access .items {
    flex-direction: column;
    padding-bottom: 0;
  }
}
.access .items dl {
  background-color: white;
  padding: 80px;
  width: 55%;
}
@media screen and (max-width: 745px) {
  .access .items dl {
    width: 100%;
    text-align: center;
    order: 2;
  }
}
.access .items dl dd {
  padding-bottom: 30px;
}
.access .items dl dd:last-child {
  padding-bottom: 0;
}
.access .items img {
  width: 55%;
  margin-left: -100px;
  height: 350px;
  margin-top: 200px;
  border-radius: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 745px) {
  .access .items img {
    width: 100%;
    margin: 0 0;
  }
}

footer {
  height: 150px;
  width: 100%;
  background-color: #ffcece;
}
footer .container {
  position: relative;
}
footer .sns {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
}
footer .sns img {
  width: 40px;
  height: 40px;
}
footer .sns li {
  margin-inline: 15px;
}
footer .contact {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #896464;
  background-color: #ffe4e4;
  border: 1px solid #896464;
  padding: 5px 20px;
}
/*# sourceMappingURL=style.css.map */