html {
  font-size: 100%;
  height: 650px;
}

a {
  display: inline-block;
  text-decoration: none;
  color: #2b2b2b;
}

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

li {
  list-style: none;
}

body {
  background-color: #f8f6f1;
  color: #2b2b2b;
  font-family: "IM Fell French Canon SC", serif;
}

.container {
  max-width: 1000px;
  margin-inline: auto;
  padding-inline: 4%;
}

.wrapper {
  max-width: 600px;
  margin-inline: auto;
}

.sec-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-block: 140px 80px;
}
.sec-title::before, .sec-title::after {
  content: "";
  width: 500px;
  display: block;
  border-top: 5px solid #c6a46c;
}

.btn {
  text-align: center;
  margin-top: 80px;
}
.btn .viewmore {
  background-color: #2f4f26;
  color: #c6a46c;
  border: 1px solid #c6a46c;
  padding: 20px 30px;
}
.btn .viewmore:hover {
  background-color: #c6a46c;
  color: #2f4f26;
  border: 1px solid #2f4f26;
  transition: 0.3s;
}

.pagetop {
  position: relative;
}
.pagetop-img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  margin-top: 80px;
}
.pagetop-title {
  position: absolute;
  top: 60%;
  left: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  font-weight: 600;
  color: #2f4f26;
}

@media (max-width: 750px) {
  .toggle_btn {
    width: 35px;
    height: 35px;
    position: fixed;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 20;
    top: 20px;
    right: 20px;
    bottom: 18px;
  }
}
@media (max-width: 750px) {
  .toggle_btn span {
    display: block;
    width: 100%;
    height: 1.5px;
    background-color: #2b2b2b;
    transition: all 0.5s;
    position: absolute;
  }
  .toggle_btn span:nth-child(1) {
    top: 4px;
  }
  .toggle_btn span:nth-child(2) {
    top: 17px;
  }
  .toggle_btn span:nth-child(3) {
    bottom: 4px;
  }
}

.mask {
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s;
}

.open .toggle_btn span {
  background-color: #f8f6f1;
}
.open .toggle_btn span:nth-child(1) {
  transform: rotate(-45deg);
  top: 50%;
}
.open .toggle_btn span:nth-child(2) {
  transform: rotate(45deg);
}
.open .toggle_btn span:nth-child(3) {
  transform: rotate(45deg);
  top: 50%;
}
.open ul {
  display: flex;
  gap: 40px;
  flex-direction: column;
  align-items: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  z-index: 20;
  letter-spacing: 2px;
}
.open ul a {
  color: #f8f6f1;
  transition: all 0.8s;
}
.open .mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2f4f26;
  transition: all 0.8s;
  opacity: 0.9;
  visibility: visible;
  z-index: 10;
  cursor: pointer;
}

.Pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
}

.Pagination-Item-Link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden;
  background: #2f4f26;
  border: solid 1px #c6a46c;
  font-size: 14px;
  color: #c6a46c;
  font-weight: bold;
  transition: all 0.15s linear;
}

.Pagination-Item-Link-Icon {
  width: 20px;
}

.Pagination-Item-Link.isActive {
  background: #c6a46c;
  color: #2f4f26;
  pointer-events: none;
}

.Pagination-Item-Link:not(.isActive):hover {
  background: #c6a46c;
  color: #2f4f26;
}

.Pagination > * + * {
  margin-left: 8px;
}

.archives {
  width: 250px;
  color: #c6a46c;
  margin-top: 140px;
}
.archives h3 {
  margin-bottom: 20px;
}
.archives li {
  width: 150px;
  font-size: 14px;
  border-top: 1px solid #c6a46c;
  padding: 10px;
}
.archives li:last-child {
  border-bottom: 1px solid #c6a46c;
}
.archives li a {
  color: #c6a46c;
}

.top_btn {
  width: 50px;
  height: 50px;
  background-color: #2f4f26;
  border: solid 1px #c6a46c;
  border-radius: 50%;
  position: fixed;
  right: 50px;
  bottom: 25px;
}
.top_btn::after {
  content: "";
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #c6a46c;
  position: relative;
  left: 17px;
  bottom: -2px;
}

header {
  display: flex;
  width: 100%;
  background: #f8f6f1;
  position: fixed;
  z-index: 10;
  align-items: center;
  padding-left: 30px;
}
header .logo {
  width: 100px;
  line-height: 1;
  margin-right: 24px;
}
@media (max-width: 750px) {
  header .logo {
    z-index: 10;
  }
}
header ul {
  display: flex;
  align-items: center;
}
@media (max-width: 750px) {
  header ul {
    opacity: 0;
  }
}
header ul li {
  margin-right: 24px;
  font-size: 20px;
  font-weight: 0;
}
header ul li a {
  padding: 10px;
}
header ul li a:hover {
  color: #c6a46c;
  background-color: #2f4f26;
  transition: 0.5s;
}

.mainvisual {
  background-image: url(../img/mainvisual.jpg);
  background-size: cover;
  background-position: center;
  height: 100vh;
  width: 100%;
}
.mainvisual .fadeslide {
  opacity: 0;
  transform: translateX(-20px);
  animation: fadeAnime 4s ease forwards;
  position: absolute;
  top: 280px;
  left: 150px;
  font-size: 40px;
  color: #2f4f26;
  text-shadow: 0px 0px 5px rgb(211, 174, 11);
}
@keyframes fadeAnime {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.mainvisual .fadeup {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeupAnime 4s ease forwards;
  position: absolute;
  top: 360px;
  left: 150px;
  font-size: 26px;
  color: #fff;
  text-shadow: 0px 0px 7px rgb(81, 80, 79);
}
@keyframes fadeupAnime {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.news-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 750px) {
  .news-content {
    flex-direction: column;
    gap: 0;
  }
}
.news-content-item {
  width: calc((100% - 80px) / 3);
}
@media (max-width: 750px) {
  .news-content-item {
    width: 100%;
    border-top: 1px solid #c6a46c;
    padding: 15px 10px;
  }
  .news-content-item:last-child {
    border-bottom: 1px solid #c6a46c;
  }
  .news-content-item a {
    width: 100%;
  }
  .news-content-item a img {
    display: none;
  }
  .news-content-item a dl {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    font-size: 14px;
  }
  .news-content-item a dl dt {
    width: auto;
    flex-shrink: 0;
    margin-right: 16px;
  }
  .news-content-item a dl dd {
    width: auto;
    flex: 1;
    white-space: nowrap;
  }
}

.gallery-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 750px) {
  .gallery-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.gallery-content img {
  width: 270px;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 750px) {
  .gallery-content img {
    width: 100%;
    height: 100%;
  }
}
.gallery-content .fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}

.contact p {
  text-align: center;
}
.contact .btn {
  margin-top: 40px;
}
.contact .btn a {
  border: 1px solid #c6a46c;
  color: #c6a46c;
  background-color: #2f4f26;
  padding: 20px 30px;
}
.contact .btn a:hover {
  border: 1px solid #2f4f26;
  color: #2f4f26;
  background-color: #c6a46c;
  transition: 0.3s;
}

.access-map {
  width: 100%;
  height: 350px;
}
.access .address {
  text-align: center;
  margin-top: 20px;
}
.access .station {
  text-align: center;
  margin-top: 20px;
}

.title {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 20px;
  font-weight: 600;
  border-bottom: 3px solid #c6a46c;
  margin-top: 80px;
  margin-inline: auto;
}

.newspage {
  display: flex;
  gap: 40px;
}
.newspage-left {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 75%;
  gap: 60px;
  margin-top: 80px;
}
@media (max-width: 750px) {
  .newspage-left {
    grid-template-columns: 1fr;
  }
}
.newspage-left p {
  font-size: 14px;
  font-weight: 500;
}
.newspage .archives {
  width: 25%;
  margin-top: 80px;
}

.news-title {
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 3px solid #c6a46c;
  margin-top: 140px;
}

.news-single {
  display: flex;
  align-items: flex-start;
  margin-top: 40px;
}
.news-single-content {
  margin-top: 10px;
}
.news-single-content img {
  width: 600px;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-single-content p {
  font-size: 14px;
  margin-top: 20px;
}
.news-single .archives {
  margin-top: 0;
}
@media (max-width: 750px) {
  .news-single .archives {
    margin-left: 20px;
  }
}

.menu-img {
  width: 1300px;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 140px;
  margin-inline: auto;
  display: block;
}
.menu-img img {
  width: 100%;
  height: 100%;
}

.hand-menu {
  display: flex;
  justify-content: center;
  gap: 80px;
}
@media (max-width: 750px) {
  .hand-menu {
    flex-direction: column;
  }
}
.hand-menu .menu-title {
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 2px solid #c6a46c;
}
.hand-menu-left {
  width: 50%;
}
@media (max-width: 750px) {
  .hand-menu-left {
    width: 100%;
  }
}
.hand-menu-left-content {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 30px;
}
.hand-menu-left-content .menu-name {
  width: 100%;
  font-size: 16px;
  margin-bottom: 10px;
}
.hand-menu-left-content .menu-name-item {
  border-bottom: none;
}
.hand-menu-left-content dt {
  width: 80%;
  border-bottom: 1px dotted #c6a46c;
}
.hand-menu-left-content dd {
  width: 20%;
  text-align: right;
}
.hand-menu-right {
  width: 50%;
}
@media (max-width: 750px) {
  .hand-menu-right {
    width: 100%;
  }
}
.hand-menu-right-content {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 30px;
}
.hand-menu-right-content dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.hand-menu-right-content dl dt {
  width: 80%;
  border-bottom: 1px dotted #c6a46c;
}
.hand-menu-right-content dl dd {
  width: 20%;
  text-align: right;
}
.hand-menu-right-content p {
  font-size: 12px;
}

.foot-menu {
  display: flex;
  justify-content: center;
  gap: 80px;
}
@media (max-width: 750px) {
  .foot-menu {
    flex-direction: column;
  }
}
.foot-menu .menu-title {
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 2px solid #c6a46c;
}
.foot-menu-left {
  width: 50%;
}
@media (max-width: 750px) {
  .foot-menu-left {
    width: 100%;
  }
}
.foot-menu-left dl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.foot-menu-left dl dt {
  width: 80%;
  border-bottom: 1px dotted #c6a46c;
  margin-top: 30px;
}
.foot-menu-left dl dd {
  width: 20%;
  margin-top: 30px;
}
.foot-menu-right {
  width: 50%;
}
@media (max-width: 750px) {
  .foot-menu-right {
    width: 100%;
  }
}
.foot-menu-right dl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 30px;
}
.foot-menu-right dl dt {
  width: 90%;
  border-bottom: 1px dotted #c6a46c;
}
@media (max-width: 750px) {
  .foot-menu-right dl dt {
    width: 80%;
  }
}
.foot-menu-right dl dd {
  width: 10%;
  text-align: right;
}
@media (max-width: 750px) {
  .foot-menu-right dl dd {
    width: 20%;
  }
}
.foot-menu-right p {
  font-size: 12px;
}

.galley {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 80px;
  margin-block: 140px 80px;
}
@media (max-width: 750px) {
  .galley {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 750px) {
  .galley li {
    width: 100%;
  }
}
@media (max-width: 750px) {
  .galley img {
    display: block;
    width: 100%;
  }
}
.galley img:hover {
  opacity: 0.9;
  background-color: #fff;
  transition: all 0.3s;
  transform: scale(1.1);
  cursor: pointer;
}
@media (max-width: 750px) {
  .galley img {
    width: 100%;
  }
}
.galley .fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}

/* modal-window ----------------------------------------- */
.modal-window {
  display: none;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(222, 222, 222, 0.6);
  z-index: 111;
}

.modal-area {
  display: flex;
  width: 80%;
  max-width: 800px;
  background-color: #fff;
  padding: 30px 30px 50px;
}
.modal-area img {
  width: 60%;
}
.modal-area-content {
  width: 40%;
  margin-left: 30px;
}
.modal-area .modal-title {
  font-size: 16px;
  font-weight: 600;
  border-bottom: 2px solid #c6a46c;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
}
.modal-area .modal-nailist,
.modal-area .modal-time,
.modal-area .modal-comment {
  margin-bottom: 20px;
}

/* modal-close ----------------------------------------- */
.modal-close {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 113;
  cursor: pointer;
  text-align: center;
}

.icon-close {
  width: 50px;
  height: 50px;
  position: relative;
  border: 2px solid #777;
  border-radius: 100%;
  cursor: pointer;
}

.icon-close::before,
.icon-close::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 20%;
  width: 60%;
  height: 2px;
  background: #777;
}

.icon-close::before {
  transform: rotate(-45deg);
}

.icon-close::after {
  transform: rotate(45deg);
}

.owner {
  display: flex;
  gap: 80px;
  justify-content: center;
  margin-top: 140px;
}
@media (max-width: 750px) {
  .owner {
    flex-direction: column;
  }
}
.owner-img {
  width: 35%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 750px) {
  .owner-img {
    width: 100%;
  }
}
.owner-text {
  width: 45%;
}
@media (max-width: 750px) {
  .owner-text {
    width: 100%;
  }
}
.owner-text dl {
  display: flex;
  flex-wrap: wrap;
  font-size: 16px;
  margin-top: 20px;
}
.owner-text dl dt {
  width: 15%;
  margin-bottom: 10px;
}
.owner-text dl dd {
  width: 85%;
  margin-bottom: 10px;
}
.owner h3 {
  border-bottom: 2px solid #c6a46c;
  margin-top: 40px;
}
.owner p {
  position: relative;
  font-size: 16px;
  margin-top: 20px;
  margin-left: 15px;
}
.owner p::before {
  position: absolute;
  content: "";
  border: 1px solid #2b2b2b;
  width: 10px;
  top: 10px;
  left: -15px;
}

.nailist {
  margin-top: 140px;
}
.nailist-content {
  display: flex;
  gap: 40px;
  width: 600px;
}
@media (max-width: 750px) {
  .nailist-content {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}
.nailist-content-name {
  margin-top: 10px;
}
@media (max-width: 750px) {
  .nailist-content-name {
    text-align: center;
    font-size: 20px;
  }
}

.contact {
  margin-top: 140px;
}
.contact dl {
  display: flex;
  flex-wrap: wrap;
}
.contact dl dt {
  width: 35%;
  margin-bottom: 40px;
}
.contact dl dd {
  width: 65%;
  background-color: #fff;
  margin-bottom: 40px;
}
.contact dl dd input,
.contact dl dd textarea {
  width: 100%;
  border: 1px solid #fff;
  padding: 10px;
}
.contact p {
  font-size: 12px;
  margin-top: 40px;
}

footer {
  border-top: 1px solid #c6a46c;
  margin-top: 80px;
}
footer .logo {
  width: 200px;
  margin-inline: auto;
}
footer ul {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding-bottom: 40px;
}/*# sourceMappingURL=style.css.map */