@charset "UTF-8";
body {
  font-family: "Noto Sans JP", "Shippori Mincho";
}

a {
  text-decoration: none;
  color: #333;
  transition: 0.6s;
}

a:hover {
  color: #333;
  opacity: 0.7;
  transition: 0.3s;
}

ul {
  padding: 0;
}

li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Shippori Mincho", serif;
  line-height: 3.5rem;
  letter-spacing: 0.05rem;
}

p {
  font-family: "Shippori Mincho", serif;
  line-height: 2.5rem;
  letter-spacing: 0.05rem;
}

section {
  padding-bottom: 50px;
  padding-top: 50px;
}

/*共通事項*/
.title-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  flex-direction: column;
}
.title-box .title-icon {
  width: 25px;
  margin-right: 15px;
}
.title-box h3 {
  font-size: 2rem;
  margin-bottom: 0.2rem;
  border-bottom: 3px solid #C9A342;
}
.title-box span {
  color: #8F8F8F;
  font-family: "Shippori Mincho";
  font-size: 1rem;
  font-style: normal;
  line-height: 42px;
  letter-spacing: 6.6px;
}

/*header*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
header .header-inner {
  width: 90%;
  margin: 0 auto;
  padding: 15px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header-inner img {
  width: 80px;
}
header .header-inner .menu_container {
  position: relative;
}
header .header-inner .menu_container .menu_btn {
  font-family: "Shippori Mincho", serif;
  cursor: pointer;
  padding: 5px 10px;
}
header .header-inner .menu_container .dropdown_menu {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #fff;
  min-width: 200px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
header .header-inner .menu_container .dropdown_menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
header .header-inner .menu_container .dropdown_menu ul li {
  border-bottom: 1px solid #f5f5f5;
}
header .header-inner .menu_container .dropdown_menu ul li:last-child {
  border-bottom: none;
}
header .header-inner .menu_container .dropdown_menu ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  text-decoration: none;
  color: #333;
  font-family: "Shippori Mincho", serif;
}
header .header-inner .menu_container .dropdown_menu ul li a .arrow {
  margin-left: 10px;
  color: #999;
}
header .header-inner .menu_container .dropdown_menu ul li a:hover {
  background-color: #f9f9f9;
}
header .header-inner .menu_container:hover .dropdown_menu {
  opacity: 1;
  visibility: visible;
}

/*Footer*/
footer {
  background-color: #000;
  color: #fff;
  padding: 3rem 1rem;
  text-align: center;
}
footer .footer-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  footer .footer-menu {
    flex-direction: row;
    gap: 2rem;
  }
}
footer .footer-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0.5rem;
  transition: opacity 0.3s;
  font-family: "Shippori Mincho", serif;
}
footer .footer-menu a:hover {
  opacity: 0.8;
}
footer .footer-logo {
  margin-bottom: 2rem;
}
footer .footer-logo img {
  width: 128px;
  height: 128px;
  border-radius: 50%;
}
@media (min-width: 768px) {
  footer .footer-logo img {
    width: 160px;
    height: 160px;
  }
}
footer .footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.5rem;
}
footer .footer-social a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
  font-size: 1.25rem;
}
footer .footer-social a:hover {
  opacity: 0.8;
}
footer .footer-social a i {
  font-size: 1.5rem;
}
footer .footer-social a span {
  font-family: "Shippori Mincho", serif;
}
footer .footer-copyright {
  font-size: 0.875rem;
  padding: 0 1rem;
}

/*key-visual*/
#key-visual {
  background-image: url("../img/mv_01.png");
  height: 100vh;
  background-size: cover;
  background-position: 50% 75%;
  position: relative;
  margin-top: 0;
}
#key-visual h2 {
  text-align: center;
  font-family: "Shippori Mincho", serif;
  position: relative;
  top: 15%;
  display: flex;
  justify-content: center;
}

/*news*/
#news {
  padding-top: 100px;
  background-image: url("../img/bk_washi.webp");
  position: relative;
  overflow: hidden;
  /* レスポンシブ対応 */
}
#news::after {
  content: "";
  background-image: url("../img/news-part01.png");
  background-size: 100%;
  position: absolute;
  top: -20%;
  right: -5%;
  width: 40%;
  aspect-ratio: 3213/2661;
}
@media screen and (max-width: 992px) {
  #news::after {
    width: 55%;
  }
}
@media screen and (max-width: 768px) {
  #news::after {
    width: 65%;
  }
}
@media screen and (max-width: 450px) {
  #news::after {
    top: -10%;
  }
}
#news .news-list {
  margin-top: 30px;
}
#news .news-item {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
}
#news .news-item:first-child {
  border-top: 1px solid #e0e0e0;
}
#news .news-date {
  width: 150px;
  flex-shrink: 0;
  color: #333;
  font-family: "Shippori Mincho", serif;
}
#news .news-title {
  flex-grow: 1;
  font-family: "Shippori Mincho", serif;
}
@media (max-width: 768px) {
  #news .news-item {
    flex-direction: column;
    padding: 15px 0;
  }
  #news .news-date {
    width: 100%;
    margin-bottom: 5px;
  }
}

/*concept*/
#concept {
  background-image: url("../img/bk_concept.webp");
  background-size: cover;
  padding-bottom: 100px;
}
#concept .row img {
  width: 95%;
}
@media (max-width: 992px) {
  #concept .row img {
    width: 100%;
  }
}
#concept .row .concept-box {
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  #concept .row .concept-box {
    padding-top: 50px;
  }
}

/*gallery*/
#gallery {
  position: relative;
  background-image: url(../img/bk_gallery.webp);
  background-size: cover;
  padding: 100px 0;
  margin: -50px 0;
}
#gallery .gallery-wrapper {
  display: grid;
  grid-template-columns: 20% 20% 20% 20% 20%;
  grid-template-rows: 150px 150px 150px 150px;
  position: relative;
}
#gallery .gallery-wrapper .gallery-card {
  background-size: cover;
  margin: 10px;
}
#gallery .gallery-wrapper .gallery-01 {
  background-image: url(../img/gallery-01.jpg);
  background-position: left;
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 3;
  margin-left: 0;
  border-radius: 0 20px 20px 0;
}
#gallery .gallery-wrapper .gallery-02 {
  background-image: url(../img/gallery-02.jpg);
  background-position: left;
  grid-column-start: 3;
  grid-column-end: 6;
  grid-row-start: 1;
  grid-row-end: 4;
  margin-right: 0;
  border-radius: 20px 0 0 20px;
}
#gallery .gallery-wrapper .gallery-03 {
  background-image: url(../img/gallery-03.jpg);
  background-position: left;
  grid-column-start: 1;
  grid-column-end: 2;
  grid-row-start: 3;
  grid-row-end: 5;
  margin-left: 0;
  border-radius: 0 20px 20px 0;
}
@media (max-width: 767px) {
  #gallery .gallery-wrapper .gallery-03 {
    display: none;
  }
}
#gallery .gallery-wrapper .gallery-04 {
  background-image: url(../img/gallery-04.jpg);
  background-position: left;
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 3;
  grid-row-end: 5;
  border-radius: 20px 20px 20px 20px;
}
@media (max-width: 767px) {
  #gallery .gallery-wrapper .gallery-04 {
    grid-column-start: 1;
    margin-left: 0;
    border-radius: 0 20px 20px 0;
  }
}
#gallery .gallery-wrapper .gallery-05 {
  background-image: url(../img/gallery-05.jpg);
  background-position: 50% 75%;
  grid-column-start: 3;
  grid-column-end: 6;
  grid-row-start: 4;
  grid-row-end: 5;
  margin-right: 0;
  border-radius: 20px 0 0 20px;
}

/*commitment*/
#commitment {
  background-image: url("../img/bk_commitment.webp");
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: lighten;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}
#commitment::before {
  content: "";
  background-image: url("../img/commit-part01.png");
  background-size: 100%;
  position: absolute;
  top: -8%;
  left: -5%;
  width: 35%;
  aspect-ratio: 2047/1796;
}
@media screen and (min-width: 1200px) {
  #commitment::before {
    width: 30%;
  }
}
@media screen and (max-width: 992px) {
  #commitment::before {
    top: -3%;
  }
}
@media screen and (max-width: 768px) {
  #commitment::before {
    width: 45%;
  }
}
@media screen and (max-width: 450px) {
  #commitment::before {
    left: -12%;
    width: 65%;
  }
}
#commitment::after {
  content: "";
  background-image: url("../img/commit-part02.png");
  background-size: 100%;
  position: absolute;
  top: -5%;
  right: -5%;
  width: 40%;
  aspect-ratio: 1941/1184;
}
@media screen and (min-width: 1200px) {
  #commitment::after {
    width: 30%;
  }
}
@media screen and (max-width: 992px) {
  #commitment::after {
    top: -3%;
  }
}
@media screen and (max-width: 768px) {
  #commitment::after {
    width: 45%;
  }
}
@media screen and (max-width: 450px) {
  #commitment::after {
    display: none;
  }
}
#commitment .title-box .title-icon {
  width: 35px;
}
#commitment .commitment-row {
  position: relative;
}
@media screen and (min-width: 992px) {
  #commitment .commitment-row {
    height: 300px;
    margin-bottom: 100px;
  }
}
#commitment .commitment-row::after {
  content: "";
  width: 55%;
  position: absolute;
  height: 100%;
  border-radius: 10px 0px 0px 10px;
  background-size: cover;
  background-position: center;
  top: 0;
  right: 0;
}
@media screen and (max-width: 992px) {
  #commitment .commitment-row::after {
    display: none;
  }
}
#commitment .commitment-row01::after {
  background-image: url("../img/commitment01.webp");
}
#commitment .commitment-row03::after {
  background-image: url("../img/commitment03.webp");
}
#commitment .commitment-reverse-row {
  position: relative;
}
@media screen and (min-width: 992px) {
  #commitment .commitment-reverse-row {
    height: 300px;
    margin-bottom: 100px;
  }
}
#commitment .commitment-reverse-row::after {
  content: "";
  width: 55%;
  position: absolute;
  height: 100%;
  border-radius: 0px 10px 10px 0px;
  background-image: url("../img/commitment02.webp");
  background-size: cover;
  background-position: center;
  top: 0;
  left: 0;
}
@media screen and (max-width: 992px) {
  #commitment .commitment-reverse-row::after {
    display: none;
  }
}
#commitment .commitment-box {
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  #commitment .commitment-box {
    margin-bottom: 50px;
  }
}
#commitment .commitment-box .commitment-img {
  display: none;
  width: 100%;
  height: 350px;
  border-radius: 10px;
}
@media screen and (max-width: 992px) {
  #commitment .commitment-box .commitment-img {
    display: block;
  }
}
#commitment .commitment-box .commitment-img01 {
  background-image: url("../img/commitment01.webp");
  background-size: cover;
  background-position: center;
}
#commitment .commitment-box .commitment-img02 {
  background-image: url("../img/commitment02.webp");
  background-size: cover;
  background-position: center;
  border-radius: 0px 10px 10px 0px;
}
@media screen and (max-width: 992px) {
  #commitment .commitment-box .commitment-img02 {
    border-radius: 10px;
  }
}
#commitment .commitment-box .commitment-img03 {
  background-image: url("../img/commitment03.webp");
  background-size: cover;
  background-position: center;
}
@media (max-width: 992px) {
  #commitment .commitment-box .commitment-text {
    margin-top: 20px;
  }
}
@media screen and (max-width: 992px) {
  #commitment .column-reverse {
    flex-direction: column-reverse;
  }
}

/*menu*/
#menu {
  background-image: url("../img/bk_washi.webp");
  position: relative;
}
#menu .title-box .title-icon {
  width: 55px;
}
#menu .menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
#menu .menu-grid .menu-card {
  width: 95%;
  margin: 0 auto;
}
#menu .menu-grid .menu-card .menu-img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
#menu .menu-grid .menu-card h6 {
  font-size: 1.5rem;
  text-align: center;
}
#menu .menu-grid .menu-card p {
  font-size: 1.25rem;
  text-align: right;
}
#menu .menu-grid .menu-card p span {
  font-size: 1rem;
}

/*information*/
#information {
  background-image: url("../img/bk_information.webp");
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}
#information::before {
  content: "";
  background-image: url("../img/shop-part01.png");
  background-size: 100%;
  position: absolute;
  top: -2%;
  left: -2%;
  width: 55%;
  aspect-ratio: 3494/1118;
}
#information .title-box {
  color: #fff;
}
#information .title-box .title-icon {
  width: 55px;
}
#information .title-box span {
  color: #fff;
}
@media (max-width: 992px) {
  #information .row iframe {
    height: 250px;
  }
}
#information .g-map {
  padding-right: 0;
}
#information .info-box {
  background-color: #CFA921;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 992px) {
  #information .info-box {
    padding: 20px 0px;
  }
}
#information .info-box p {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.1rem;
}
@media (max-width: 992px) {
  #information .info-box p {
    padding: 0px 30px;
  }
}
#information .container {
  margin-top: -160px;
}
@media screen and (max-width: 992px) {
  #information .container {
    margin-top: 0px;
  }
}
#information .container .shop-img {
  background-image: url("../img/shop_img.jpg");
  background-position: center;
  background-size: cover;
}
#information .container .shop-info {
  background-image: url("../img/bk_washi.webp");
  padding: 30px 50px;
}

/*instagram*/
#instagram {
  background-image: url("../img/bk_information.webp");
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}
#instagram::after {
  content: "";
  background-image: url("../img/insta-part01.png");
  background-size: 100%;
  position: absolute;
  bottom: -2%;
  right: -6%;
  width: 55%;
  aspect-ratio: 5284/1209;
}
#instagram .title-box {
  color: #fff;
}
#instagram .title-box i {
  font-size: 2rem;
  margin-right: 15px;
}
#instagram .title-box span {
  color: #fff;
}
#instagram .insta_btn {
  display: flex;
  justify-content: center;
}
#instagram .insta_btn a {
  font-family: "Shippori Mincho", serif;
  border: 1px solid #B3B3B3;
  width: 300px;
  height: 70px;
  display: flex;
  align-items: center;
  padding-left: 30px;
  position: relative;
  color: #fff;
  z-index: 2;
}
#instagram .insta_btn a::after {
  position: absolute;
  content: "";
  top: 50%;
  width: 90px;
  height: 1px;
  right: -50px;
  background-color: #B3B3B3;
}
#instagram .insta_btn a:hover {
  opacity: 0.6;
  transition: 0.3s;
}
#instagram .insta_btn a:hover::after {
  right: -20px;
  transition: 0.3s;
}
@media (max-width: 500px) {
  #instagram .insta_btn a {
    width: 200px;
    height: 50px;
  }
}

/*single.php*/
.under-mv-wrap {
  padding-top: 0;
  padding-bottom: 0;
}
.under-mv-wrap .under-mv-visual {
  background-image: url("../img/mv_01.png");
  background-size: cover;
  background-position: 50% 75%;
  height: 300px;
  position: relative;
}
.under-mv-wrap .under-mv-visual::after {
  content: "";
  position: absolute;
  background-color: #333;
  opacity: 0.4;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.under-mv-wrap .under-mv-visual .under-mv-content {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  position: relative;
  z-index: 2;
}
.under-mv-wrap .under-mv-visual .under-mv-content h3 {
  font-size: 2rem;
}

.single_page {
  padding-top: 100px;
  background-image: url("../img/bk_washi.webp");
}/*# sourceMappingURL=style.css.map */