/*
Theme Name: 鮨ケータリングまつき
*/

*{
  font-family: "Shippori Mincho", serif;
  font-family: "Cormorant Garamond", serif;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-style: normal;
  margin: 0;
  padding: 0;
}

body{
  background-color: #EDEBE0;
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 480px) {
.pc { display: none !important; }
.sp { display: block !important; }
}

html {
  scroll-behavior: smooth;
}

p{
  font-size: 14px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 2em;
  color: #333333;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  p{
    font-size: 14px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    line-height: 1.8em;
    color: #333333;
  }
}

h1{color: #333333;}
h2{color: #333333;}
h3{color: #333333;}
h4{color: #333333;}
h5{color: #333333;}
h6{color: #333333;}
span{color: #333333;}

.subtext{
  font-family: "Cormorant Garamond", serif;
  font-size: 12px;
  font-weight: 200;
  opacity: 0.7;
  color: #333333;
  line-height: 1.7em;
  letter-spacing: 1px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .subtext{
    font-family: "Cormorant Garamond", serif;
    font-size: 10px;
    font-weight: 200;
    opacity: 0.7;
    color: #333333;
    line-height: 1.5em;
    letter-spacing: 1px;
  }
}

main{
  position: relative;
}

.header {
  position: fixed;
  top: 0;
  width: 92%;
  background: transparent;
  z-index: 1000;
  transition: all 0.3s ease;
  margin: 2% 4% 0;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .header {
    position: fixed;
    top: 0;
    width: 92%;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
    margin: 4% 4% 0;
  }
}

.header-inner {
  display: flex;
  justify-content:flex-end;
  align-items: center;
}

.logo {
  height: 40px;
  transition: all 0.3s ease;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .nav{
    display: none;
  }
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 24px;
}

.nav-list li a {
  text-decoration: none;
  color: white;
  transition: color 0.3s ease;
  font-size: 12px;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 1px;
}

.nav-list li a:hover{
  opacity: .5;
  transition: .5s;
}

.header.scrolled .nav-list li a {
  color: black;
}

.headercontact {
  width: 200px;
	margin-left:24px;
}

.headercontact a{
  border: solid 1px #fff;
  padding: 6% 4%;
}

.header.scrolled .headercontact a{
  border: solid 1px #333;
  background-color: #edebe048;
}


.hamburger-overlay span {
  background: white;
  transition: background 0.3s ease;
}


.header.scrolled .hamburger-overlay span {
  background: black;
}

.logo {
  transition: opacity 0.5s ease;
  position: absolute;
  top: 0;
  left: 0;
  height: 100px;
}


.logo-scroll {
  opacity: 0;
}

.header.scrolled .logo-default {
  opacity: 0;
}

.header.scrolled .logo-scroll {
  opacity: 1;
}


.snsicon {
  transition: opacity 0.5s ease;
  position: absolute;
  height: 30px;
}


.hamburger-overlay {
  z-index: 1000;
  width: 40px;
  height: 50px;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.hamburger-overlay__line {
  position: absolute;
  width: 40px;
  height: 1.5px;
  background-color: #333;
  transition: all .6s;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .hamburger-overlay {
    z-index: 1000;
    width: 40px;
    height: 50px;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
    margin-right: 6%;
  }
  
  .hamburger-overlay__line {
    position: absolute;
    width: 40px;
    height: 1px;
    background-color: #333;
    transition: all .6s;
  }
}

.hamburger-overlay__line:nth-of-type(1) { top: 22px; }
.hamburger-overlay__line:nth-of-type(2) { display: none; }
.hamburger-overlay__line:nth-of-type(3) { top: 30px; }

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .hamburger-overlay__line:nth-of-type(1) { top: 14px; }
  .hamburger-overlay__line:nth-of-type(2) { display: none; }
  .hamburger-overlay__line:nth-of-type(3) { top: 20px; }
}

.hamburger-overlay.active .hamburger-overlay__line {
  background-color: #333333;
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
  transform: translateY(4px) rotate(-8deg);
  background-color: #333333;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
  transform: translateY(-4px) rotate(8deg);
  background-color: #333333#333333;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
    transform: translateY(4px) rotate(-8deg);
    background-color: #333333;
  }

  .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
    transform: translateY(-2px) rotate(8deg);
    background-color: #333333#333333;
  }
}

.nav-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  height: 100vh;
  background-color: #edebe0ec;
  visibility: hidden;
  opacity: 0;
  transition: all .6s;
  z-index: 900;
  overflow: hidden; 
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .nav-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: #edebe0;
    visibility: hidden;
    opacity: 0;
    transition: all .6s;
    z-index: 900;
    overflow: hidden; 
  }

}

.nav-overlay.active {
  visibility: visible;
  opacity: 1;
}

.nav-overlay__content {
  margin-top: 80px;
  margin-left: 10%;
  margin-right: 10%;
}

.nav-overlay__manu_list li{
  list-style: none;
  margin-top: 12px;
}

.nav-overlay__manu_list li a{
  font-size: 18px;
  font-family: "Cormorant Garamond", serif;
  color: #333;
  text-decoration: none;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .nav-overlay__manu_list li{
    list-style: none;
    margin-top: 8px;
  }
  
  .nav-overlay__manu_list li a{
    font-size: 18px;
    font-family: "Cormorant Garamond", serif;
    color: #333;
    text-decoration: none;
  }
}

.nav-overlay__manu_list li a:hover{
  opacity: 0.5;
  transition: .5s;
}


.nav-overlay__manu_list li a span{
  margin-top: 0px;
  font-size: 10px;
  opacity: .7;
  font-family: "Shippori Mincho", serif;
  display: block;
}

.nav-overlay__list_contact{
  margin-top: 40px;
}

.nav-overlay__list_contact li{
  list-style: none; 
}

.nav-overlay__list_contact li a{
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  color: #333333;
  text-decoration: none;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .nav-overlay__list_contact li a{
    font-size: 14px;
    font-family: "Shippori Mincho", serif;
    color: #333333;
    text-decoration: none;
  }
}

.nav-overlay__list_contact .header-nav-tel {
  margin-top: 24px;
}

.nav-overlay__list_contact .header-nav-tel a{
  letter-spacing: 2px;
}

.nav-overlay__list_contact li a span{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #4D410E;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-right: 8px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .nav-overlay__list_contact li a span{
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #4D410E;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-right: 8px;
  }
}

.nav-overlay__list_contact li a:hover{
  opacity: 0.5;
  transition: .5s;
}

.nav-overlay__list_contact li p{
  font-size: 12px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 2em;
  color: #333333;
  margin: 4px 0;
}

.nav-overlay__list_contact li .subtext{
  font-family: "Cormorant Garamond", serif;
  font-size: 12px;
  font-weight: 200;
  opacity: 0.7;
  color: #333333;
  line-height: 1.7em;
  letter-spacing: 1px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .nav-overlay__list_contact li .subtext{
    display: none;
  }
}


.nav-overlay.active .nav-overlay__item {
  opacity: 1;
}

.nav-overlay__manu_list li {
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* activeになったら表示される */
.nav-overlay.active .nav-overlay__manu_list li {
  opacity: 1;
}


.nav-overlay.active .nav-overlay__manu_list li:nth-child(1) { transition-delay: 0.1s; }
.nav-overlay.active .nav-overlay__manu_list li:nth-child(2) { transition-delay: 0.2s; }
.nav-overlay.active .nav-overlay__manu_list li:nth-child(3) { transition-delay: 0.3s; }
.nav-overlay.active .nav-overlay__manu_list li:nth-child(4) { transition-delay: 0.4s; }
.nav-overlay.active .nav-overlay__manu_list li:nth-child(5) { transition-delay: 0.5s; }
.nav-overlay.active .nav-overlay__manu_list li:nth-child(6) { transition-delay: 0.6s; }


.nav-overlay__list_contact{
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* activeになったら表示される */
.nav-overlay.active .nav-overlay__list_contact {
  opacity: 1;
}


.nav-overlay.active .nav-overlay__list_contact{ transition-delay: 0.6s; }


.flexbanner{
  position: fixed;
  bottom: 6%;
  right: 0;
  z-index: 2;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  text-align: right;
  width: 100%;
}

.flexbanner.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.flexbanner a{
  padding: 4% 6%;
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
  line-height: 2em;
  color: #333333;
  background-color: #edebe0ed;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.flexbanner a:hover{
  opacity: .5;
  transition: .7s;

}

.top-fv{
  height: 100vh;
  display: flex; 
  justify-content: center;
  align-items: center;
  overflow: hidden; 
  position: relative;
}

.top-fv video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-fv h2{
  position: absolute;
  font-size: 40px;
  letter-spacing: 2px;
  font-family: "Shippori Mincho", serif;
  color: #ffffff;
  font-weight: 300;
  top: 35%;
  left: 50;
  line-height: 1.6em;
  writing-mode: vertical-rl; 
  text-orientation: mixed;
opacity: 0;
  transition: opacity 2s ease; /* フェードアウトに2秒 */
}




/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .top-fv h2{
    position: absolute;
    font-size: 40px;
    letter-spacing: 2px;
    font-family: "Shippori Mincho", serif;
    color: #ffffff;
    font-weight: 300;
    top: 20%;
    left: 50;
    line-height: 1.6em;
    writing-mode: vertical-rl; 
    text-orientation: mixed;
  }
}


.top-fv h2 span{
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  font-weight: 200;
  margin-bottom: 8px;
  color: #ffffff;
}

.top-fv p{
  position: absolute;
  font-size: 12px;
  bottom: 10%;
  right: 8%;
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  color: #ffffff;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .top-fv p{
    position: absolute;
    font-size: 12px;
    bottom: 40%;
    right: 4%;
    font-family: "Cormorant Garamond", serif;
    font-weight: 200;
    color: #ffffff;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
	 writing-mode: vertical-rl;
     text-orientation: mixed;
  }
}

.top-fv p span{
  height: 1px;
    width: 60px;
    background-color: #ffffff96;
    display: inline-flex;
    margin-right: 16px;
	
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
	.top-fv p span{
  height: 80px;
    width: 1px;
    background-color: #ffffff96;
    display: inline-flex;
    margin-right: 0;
    margin-bottom: 8px;
	
}
}

.infobannar{
	margin: 80px 12% 0;
    max-width: 1500px;
    padding: 0;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
	.infobannar{
	margin: 40px 8% 0;
    max-width: 1500px;
    padding: 0;
}

}

.infobannar img{
	width:100%;
}

.infobannar a:hover{
	opacity: 0.7;
  transition: .5s;
}


.top-banner{
  margin: 80px auto 0;
  max-width: 1500px;
  padding: 0 12%;
  display: flex;
  justify-content:space-between;
  list-style: none;
  align-items: center;
  flex-wrap: wrap;
}

.top-banner h3 {
  font-size: 12px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.top-banner h3 span {
  height: 1px;
  width: 40px;
  background-color: #33333362;
  display: inline-flex;
  margin-right: 16px;
}

.top-banner h4{
  font-size: 40px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  margin-top: 8px;
  text-align: right;
}

.top-banner li{
  width: 38%;
}

.top-banner li:nth-child(3){
  width: 20%;
}

@media (min-width: 0px) and (max-width: 480px) {
.top-banner{
  margin: 64px auto 0;
  max-width: 1500px;
  padding: 0 8% 40px;
  display: flex;
  justify-content:space-between;
  list-style: none;
  flex-direction: column;
}

.top-banner li{
  width: 100%;
}

.top-banner li:nth-child(1){
  margin-bottom: 16px;
}

.top-banner li:nth-child(3) {
  order: -1; 
  width: 100%;
  margin-bottom: 24px;
}
}

.top-banner li a img{
  width: 100%;
}

.top-banner li:hover{
  opacity: .7;
  transition: .5s;
}

.top-section2{
  margin: 80px auto 0;
  max-width: 1500px;
  padding: 0;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .top-section2{
    margin: 40px auto 0;
    max-width: 1500px;
    padding: 0;
  }
}


.top-section2 h3{
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
  display: flex;
  align-items: center;
  margin-left: 12%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .top-section2 h3{
    font-size: 16px;
    font-family: "Shippori Mincho", serif;
    font-weight: 200;
    display: flex;
    align-items: center;
    margin-left: 8%;
  }
}

.top-section2 h3 span{
  height: 1px;
  width: 40px;
  background-color: #33333362;
  display: inline-flex;
  margin-right: 16px;
}

.top-section2 h4{
  font-size: 70px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  display: flex;
  align-items: center;
  line-height: 1em;
  margin-top: 16px;
  margin-left: 12%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .top-section2 h4{
    font-size: 50px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 200;
    display: flex;
    align-items: center;
    line-height: 1em;
    margin-top: 8px;
    margin-left: 8%;
  }
}

.top-section2-info li{
  list-style: none;
  padding: 80px 20%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .top-section2-info li{
    list-style: none;
    padding: 40px 8%;
  }
}

.top-section2-info li:nth-child(2){
  background-color: #E8E6D8;
}

.top-section2-info-title{
  display:flex;
  justify-content: space-between;
  margin-bottom: 16px;
	align-items: center;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .top-section2-info-title{
    display:block;
    justify-content: space-between;
    margin-bottom: 16px;
  }
}

.top-section2-info-title h6{
  font-size: 14px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  letter-spacing: 1px;
}

.top-section2-info-title h6 span{
  font-size: 24px;
  font-weight: 100;
  letter-spacing: 1px;
  margin-right: 8px;
  font-family: "Cormorant Garamond", serif;
}

.top-section2-info-title h5{
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .top-section2-info-title h5{
    font-size: 16px;
    font-family: "Shippori Mincho", serif;
    font-weight: 200;
    text-align: right;
  }
}

.top-section2-info li img{
  width: 100%;
  aspect-ratio: 5 / 2;
  object-fit: cover;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .top-section2-info li img{
    width: 100%;
    aspect-ratio: 4 / 2;
    object-fit: cover;
  }
}

.top-section2-info-text{
  margin-top: 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.top-section2-info-text p{
  width: 48%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .top-section2-info-text{
    margin-top: 8px;
    display: block;
    align-items: flex-start;
    justify-content: space-between;
  }
  
  .top-section2-info-text p{
    width: 100%;
    margin-bottom: 8px;
  }
}

.top-section2-info-text p a{
  color: #333333;
  font-size: 12px;
	margin-top: 8px;
}

.top-section2-info-text p span{
  color: #333333;
  font-size: 12px;
	margin-top: 8px;
    display: block;
    line-height: 1.5em;
}

.top-section3{
  margin: 80px auto;
  max-width: 1500px;
  padding: 0;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .top-section3{
    margin: 40px auto;
    max-width: 1500px;
    padding: 0;
  }
}

.top-section3-title{
  display: flex;
  justify-content: center;
}

.top-section3 h3{
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
  display: flex;
  text-align: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  align-items: center;
}

.top-section3 h3 span{
  height: 40px;
  width: 1px;
  background-color: #33333362;
  display: inline-flex;
  margin-bottom: 16px;
}

.top-section3 h4{
  font-size: 70px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  display: flex;
  align-items: center;
  line-height: 1em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .top-section3 h4{
    font-size: 50px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 200;
    display: flex;
    align-items: center;
    line-height: 1em;
    writing-mode: vertical-rl;
    text-orientation: mixed;
  }
}

.infotext{
	text-align:center;
	margin: 0;
	font-size: 12px;
     font-family: "Shippori Mincho", serif;
  font-weight: 200;
	padding: 1.5% 0%;
    background-color: #e8e5d3;
    display: block;
	letter-spacing: 1px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
	.infotext{
	text-align:center;
	margin: 0;
	font-size: 12px;
     font-family: "Shippori Mincho", serif;
  font-weight: 200;
	padding: 4% 0%;
    background-color: #e8e5d3;
    display: block;
}

}

.top-section3-link{
  margin: 40px auto;
  max-width: 1500px;
  padding: 0 8%;
  display: flex;
  justify-content: space-between;
}

.top-section3-link li{
  list-style: none;
  width: 34%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .top-section3-link{
    margin: 40px auto 0;
    max-width: 1500px;
    padding: 0 8%;
    display: block;
    justify-content: space-between;
  }
  
  .top-section3-link li{
    list-style: none;
    width: 100%;
  }
}

.img-wrapper {
  position: relative;
  overflow: hidden;
}

.img-wrapper img {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .img-wrapper img {
    width: 100%;
    display: block;
    aspect-ratio: 3 / 2;
    object-fit: cover;
  }
}

.img-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
  transition: background-color 0.3s ease;
  z-index: 1;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .img-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.469);
    transition: background-color 0.3s ease;
    z-index: 1;
  }
}

.img-wrapper:hover::before {
  background-color: rgba(0,0,0,0.1);
}

.img-text {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  z-index: 2;
  text-align: center;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .img-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 2;
    text-align: center;
  }
}

.img-text h3 {
  margin: 0;
  writing-mode:unset;
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
  color: #fff;
  display: block;
}

.img-text h3 span {
  font-size: 14px;
  margin-top: 5px;
  font-family: "Cormorant Garamond", serif;
  font-size: 12px;
  font-weight: 200;
  color: #fff;
  display: block;
  width: 100%;
  background: none;
}

.img-text p {
  margin-top: 56px;
  font-size: 12px;
  letter-spacing: 1px;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  border-bottom: solid 1px #fff;
  padding: 0 8px 4px;
  display: inline-block;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .img-text h3 span {
    font-size: 14px;
    margin-top: 5px;
    font-family: "Cormorant Garamond", serif;
    font-size: 12px;
    font-weight: 200;
    color: #fff;
    display: block;
    width: 100%;
    background: none;
    margin-bottom: 0;
  }

  .img-text p {
    margin-top: 8px;
    font-size: 12px;
    letter-spacing: 1px;
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    border-bottom: solid 1px #fff;
    padding: 0 8px 4px;
    display: inline-block;
  }
}

.top-section3-alllink{
  margin: 16px 0 40px;
  text-align: center;
}

.top-section3-alllink a{
  font-size: 12px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid rgba(51, 51, 51, 0.383);
  padding: 0 8px 4px;
  display: inline-block;
}

.top-section3-alllink a:hover{
  opacity: 0.5;
  transition: .5s;
}

.top-section4{
  margin: 80px auto;
  max-width: 1500px;
  padding: 80px 0;
  background-image: url('img/background.png');
  background-size: cover;  
  background-position: center; 
  background-repeat: no-repeat;   
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .top-section4{
    margin: 40px auto;
    max-width: 1500px;
    padding: 40px 0;
    background-image: url('img/background.png');
    background-size: cover;  
    background-position: center; 
    background-repeat: no-repeat;   
  }
}

.top-section4-top{
  display: flex;
  align-items: center;
}

.top-section4-top img{
  width: 45%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .top-section4-top{
    display: block;
    align-items: center;
  }
  
  .top-section4-top img{
    width: 84%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
  }
}

.top-section4 h3{
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
  display: flex;
  align-items: center;
  margin-left: 10%;
}

.top-section4 h3 span{
  height: 1px;
  width: 40px;
  background-color: #33333362;
  display: inline-flex;
  margin-right: 16px;
}

.top-section4 h4{
  font-size: 70px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  display: flex;
  align-items: center;
  line-height: 1em;
  margin-top: 16px;
  margin-left: 10%;
  width: 100%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .top-section4 h3{
    font-size: 16px;
    font-family: "Shippori Mincho", serif;
    font-weight: 200;
    display: flex;
    align-items: center;
    margin-left: 8%;
    margin-top: 32px;
  }
  .top-section4 h4{
    font-size: 50px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 200;
    display: flex;
    align-items: center;
    line-height: 1em;
    margin-top: 8px;
    margin-left: 8%;
    width: 92%;
  }
}

.top-section4-info{
  margin: 40px 10%;
  display: flex;
  justify-content: space-between;
}

.top-section4-info .top-section4-info-ja{
  width: 55%;
}

.top-section4-info .subtext{
  width: 40%;
  line-height: 1.5em;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .top-section4-info{
    margin: 40px 8%;
    display: block;
    justify-content: space-between;
  }
  
  .top-section4-info .top-section4-info-ja{
    width: 100%;
    margin-bottom: 16px;
  }
  
  .top-section4-info .subtext{
    width: 100%;
    line-height: 1.5em;
  }
}

.top-section5{
  margin: 80px auto;
  max-width: 1500px;
  padding: 0 8%;
}

.top-section5-top{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .top-section5{
    margin: 40px auto;
    max-width: 1500px;
    padding: 0 8%;
  }
  
  .top-section5-top{
    display: block;
    justify-content: space-between;
    align-items: flex-end;
    text-align: right;
  }
  
}

.top-section5 h3{
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
  display: flex;
  align-items: center;
}

.top-section5 h3 span{
  height: 1px;
  width: 40px;
  background-color: #33333362;
  display: inline-flex;
}

.top-section5 h4{
  font-size: 70px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  display: flex;
  align-items: center;
  line-height: 1em;
  margin-top: 16px;
}

.top-section5 a {
  font-size: 12px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid rgba(51, 51, 51, 0.383);
  padding: 0 8px 4px;
  display: inline-block;
  margin-bottom: 24px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .top-section5 h4{
    font-size: 50px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 200;
    display: flex;
    align-items: center;
    line-height: 1em;
    margin-top: 8px;
    text-align: left;
  }
  
  .top-section5 a {
    font-size: 12px;
    font-family: "Shippori Mincho", serif;
    font-weight: 200;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid rgba(51, 51, 51, 0.383);
    padding: 0 8px 4px;
    display: inline-block;
    margin-bottom: 0;
  }
}

.top-section5 a:hover{
  opacity: 0.5;
  transition: .5s;
}

.reviewlist{
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  justify-content:flex-start;
}

.reviewlist li {
  list-style: none;
  width: 23%;
  align-items: center;
  padding: 4% 2%;
  box-sizing: border-box;
  text-align: left;
  background-color: #E8E6D8;
  word-wrap: break-word;      /* 古いブラウザ向け */
  overflow-wrap: break-word;
  margin-right: 2.6%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .reviewlist{
    display: block;
    flex-wrap: wrap;
    margin-top: 40px;
    justify-content:flex-start;
  }
  
  .reviewlist li {
    list-style: none;
    width: 100%;
    align-items: center;
    padding: 8% 6%;
    box-sizing: border-box;
    text-align: left;
    background-color: #E8E6D8;
    word-wrap: break-word;      /* 古いブラウザ向け */
    overflow-wrap: break-word;
    margin-right: 2.6%;
    margin-bottom: 8px;
  }
}

.reviewlist li:nth-child(4n){
  margin-right: 0;
}

.reviewlist li h6{
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
}


.reviewlist-content-thumbnail{
	margin-top:0;
	margin-bottom:8px;
	display: block;
    aspect-ratio: 5 / 3;
    overflow: hidden;
}

.reviewlist-content-thumbnail img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
}

.reviewlist li .reviewname{
	margin-bottom:8px;
	color:#333333e3;
}

.reviewlist li p{
  margin-top: 16px;
  font-size: 12px;
  line-height: 1.5em;
}

.reviewlist li .subtext{
  line-height: 1.5em;
}

.top-section6{
  margin: 80px auto;
  max-width: 1500px;
  padding: 0;
}

.top-section6 .top-section6link{
  margin: 0 24%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .top-section6{
    margin: 40px auto;
    max-width: 1500px;
    padding: 0;
  }
  
  .top-section6 .top-section6link{
    margin: 0 24%;
  }
  
  .top-section6 .top-section6link{
    margin: 0 8%;
  }
}

.top-section6 .top-section6link a{
  border: solid 1px #4d410e33;
  padding: 12% 0;
  display: block;
  text-decoration: none;
  text-align: center;
  border-radius: 10px;
}

.top-section6 .top-section6link a:hover{
  background-color: #4d410e2a;
  transition: .5s;
}

.top-section6 h3{
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-section6 h3 span{
  height: 1px;
  width: 40px;
  background-color: #33333362;
  display: inline-flex;
  margin-right: 16px;
}

.top-section6 h4{
  font-size: 70px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  display: flex;
  align-items: center;
  line-height: 1em;
  margin-top: 16px;
  width: 100%;
  justify-content: center;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .top-section6 h4{
    font-size: 40px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 200;
    display: flex;
    align-items: center;
    line-height: 1em;
    margin-top: 8px;
    width: 100%;
    justify-content: center;
  }
}

.top-section6link a p {
  font-size: 12px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
  color: rgb(51, 51, 51);
  text-decoration: none;
  border-bottom: 1px solid rgba(51, 51, 51, 0.383);
  padding: 0px 8px 4px;
  display: inline-block;
  margin-top: 40px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .top-section6link a p {
    font-size: 12px;
    font-family: "Shippori Mincho", serif;
    font-weight: 200;
    color: rgb(51, 51, 51);
    text-decoration: none;
    border-bottom: 1px solid rgba(51, 51, 51, 0.383);
    padding: 0px 8px 4px;
    display: inline-block;
    margin-top: 24px;
  }
}

.top-section6 img{
  width: 85%;
	margin-left: 15%;
	margin-top: 80px;
	aspect-ratio: 5 / 2;
	object-fit: cover;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .top-section6 img{
    width: 94%;
    margin-left: 6%;
    margin-top: 40px;
    aspect-ratio: 5 / 3;
    object-fit: cover;
  }
}

.top-section7 {
  margin: 80px auto;
  max-width: 1500px;
  padding: 0 12%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .top-section7 {
    margin: 40px auto;
    max-width: 1500px;
    padding: 0 8%;
  }
}

.bloglist{
  display: flex;
  justify-content:space-between
}

.bloglist-title {
  display: flex;
}

.bloglist-title h4 {
  font-size: 70px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  display: flex;
  align-items: center;
  line-height: 1em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .bloglist-title h4 {
    font-size: 50px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 200;
    display: flex;
    align-items: center;
    line-height: 1em;
    writing-mode: vertical-rl;
    text-orientation: mixed;
  }
}

.bloglist-title h3 {
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
  display: flex;
  text-align: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  align-items: center;
}

.bloglist-title h3 span {
  height: 40px;
  width: 1px;
  background-color: #33333362;
  display: inline-flex;
  margin-bottom: 16px;
}

.bloglistcontents{
  width: 70%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .bloglistcontents{
    width: 65%;
  }
}

.bloglistcontents li{
  list-style: none;
  margin-bottom: 24px;
  border-bottom: solid 1px #33333365;
  padding-bottom: 24px;
}

.bloglistcontents li a{
  font-size: 14px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 2em;
  color: #333333;
  text-decoration: none;
  display: flex;
  justify-content: flex-start;
  line-height: 1.7em;
  align-items: center;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .bloglistcontents li a{
    font-size: 14px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    line-height: 2em;
    color: #333333;
    text-decoration: none;
    display: block;
    justify-content: flex-start;
    line-height: 1.7em;
    align-items: center;
  }
}

.bloglistcontents li a:hover{
  opacity: 0.5;
  transition: .5s;
}

.bloglistcontents li a span{
  color: #4d410ebe;
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  margin-right: 40px;
  letter-spacing: 1px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .bloglistcontents li a span{
    color: #4d410ebe;
    font-family: "Cormorant Garamond", serif;
    font-size: 14px;
    margin-right: 40px;
    letter-spacing: 1px;
    display: block;
  }
}

.bloglistlink{
	margin-top:32px;
}

.bloglistlink a {
  font-size: 12px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid rgba(51, 51, 51, 0.383);
  padding: 0 8px 4px;
  display: inline-block;
}

.bloglistlink a:hover{
  opacity: 0.5;
  transition: .5s;
}

footer{
  background-color: #E8E6D8;
  margin: 80px auto 0;
  padding: 80px 8% 40px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  footer{
    background-color: #E8E6D8;
    margin: 40px auto 0;
    padding: 40px 8% 40px;
  }
}

.footertop{
  display: flex;
  justify-content: space-between;
}

.footercontact {
  width: 60%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .footertop{
    display: block;
    justify-content: space-between;
  }
  
  .footercontact {
    width: 100%;
  }
}

.footercontact li{
  list-style: none; 
}

.footercontact li a{
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  color: #333333;
  text-decoration: none;
}

.footercontact .header-nav-tel {
  margin-top: 24px;
}

.footercontact .header-nav-tel a{
  letter-spacing: 2px;
}

.footercontact li a span{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #4D410E;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-right: 8px;
}

.footercontact li a:hover{
  opacity: 0.5;
  transition: .5s;
}

.footercontact li p{
  font-size: 12px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 2em;
  color: #333333;
  margin: 4px 0;
}

.footercontact li .subtext{
  font-family: "Cormorant Garamond", serif;
  font-size: 12px;
  font-weight: 200;
  opacity: 0.7;
  color: #333333;
  line-height: 1.7em;
  letter-spacing: 1px;
}

.footer-tel {
  margin-top: 24px;
}

.footer-tel a{
  letter-spacing: 2px;
}

.footermenu {
  text-align: right;
}

.footermenu li{
  list-style: none;
  margin-top: 16px;
}

.footermenu li a{
  font-size: 20px;
  font-family: "Cormorant Garamond", serif;
  color: #333;
  text-decoration: none;
}

.footermenu li a:hover{
  opacity: 0.5;
  transition: .5s;
}


.footermenu li a span{
  margin-top: 0px;
  font-size: 10px;
  opacity: .7;
  font-family: "Shippori Mincho", serif;
  display: block;
}

.footercenter{
  text-align: right;
  margin: 40px 0;
	display:flex;
	align-items:center;
	justify-content:end;
}

.footercenter img{
 height: 120px;
	margin-left: 24px;
}

.footercenter h1{
  font-size: 16px;
  font-weight: 300;
  font-family: "Shippori Mincho", serif;
  margin: 0 0 8px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
	.footercenter h1{
  font-size: 14px;
  font-weight: 300;
  font-family: "Shippori Mincho", serif;
  margin: 0 0 8px;
}
}

.footercenter p{
  line-height: 1.6em;
}

.footercenter a{
	text-decoration:none;
	color:#333333;
	font-size:14px;
	font-family: "Zen Kaku Gothic New", sans-serif;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
	.footercenter p{
  line-height: 1.6em;
		font-size:12px;
}

.footercenter a{
	text-decoration:none;
	color:#333333;
	font-size:12px;
	font-family: "Zen Kaku Gothic New", sans-serif;
}
}

.footercenter a:hover{
	opacity: 0.5;
  transition: .5s;
}

.footerbottom{
  border-top: solid 1px #33333329;
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .footerbottom{
    border-top: solid 1px #33333329;
    padding-top: 16px;
    display: block;
    justify-content: space-between;
  }
}

.footerbottom .footerbottomleft{
  font-size: 10px;
}

.footerbottom .footerbottomright{
  font-size: 10px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .footerbottom .footerbottomright{
    font-size: 10px;
    margin-top: 8px;
  }
}

.footerbottom .footerbottomright a{
  font-size: 10px;
  color: #333333;
}

.footerbottom .footerbottomright a:hover{
  opacity: 0.5;
  transition: .5s;
}

/*プランリスト*/
.planlist-section1 {
  margin: 200px auto 104px;
  max-width: 1500px;
  padding: 0 12%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .planlist-section1 {
    margin: 144px auto 40px;
    max-width: 1500px;
    padding: 0 8%;
  }
}

.planlist-section1 h2 {
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
  display: flex;
  align-items: center;
}

.planlist-section1 h2 span {
  height: 1px;
  width: 40px;
  background-color: #33333362;
  display: inline-flex;
}

.planlist-section1  h4 {
  font-size: 70px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  display: flex;
  align-items: center;
  line-height: 1em;
  margin-top: 16px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .planlist-section1  h4 {
    font-size: 50px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 200;
    display: flex;
    align-items: center;
    line-height: 1em;
    margin-top: 8px;
  }
}

.planlist-list{
  margin: 80px 4%;
  padding-top: 40px;
  border-top: solid 1px #33333323;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px){
  .planlist-list{
    margin: 40px 0;
    padding-top: 16px;
    border-top: solid 1px #33333323;
  }
}

.planlist-list h3 {
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
  display: flex;
  align-items: center;
}

.planlist-list h3 span {
  font-size: 14px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  letter-spacing: 1px;
  margin-left: 8px;
}

.planlist-banner{
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  justify-content:flex-start;
}

.planlist-banner li {
  list-style: none;
  width: 32%;
  margin-right: 2%;
  margin-bottom: 4%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px){
  .planlist-banner{
    display:block;
    flex-wrap: wrap;
    margin-top: 24px;
    justify-content:flex-start;
  }
  
  .planlist-banner li {
    list-style: none;
    width: 100%;
    margin-right: 2%;
    margin-bottom: 32px;
  }
}

.planlist-banner li:nth-child(3n){
  margin-right: 0;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px){
  .planlist-banner li:nth-child(3n){
    margin-right: 0;
  }
  .planlist-banner li:nth-child(2n){
    margin-right: 0;
  }
}

.planlist-banner li a{
  text-decoration: none;
}

.planlist-banner li a:hover{
	transition: .5s;
	opacity:.7;
}

.planlist-wrapper {
}

.planlist-wrapper img {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 2;
	object-fit: cover;
	height: 100%;
}

.planlist-text {
  text-align: left;
	margin-top:8px;
}


.planlist-text b{
  font-size: 12px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
	color:#333333;
}

.planlist-text h4 {
  margin: 4px 0;
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
}

.planlist-text p {
  font-size: 12px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.planlist-text .planattention {
    color: #B21A1A;
    font-size: 10px;
	line-height: 1.6em;
    margin-top: 4px;
}


/*プラン*/
.plan-section1{
  margin: 200px auto 104px;
  max-width: 1500px;
  padding: 0 12%;
  display: flex;
  justify-content: space-between;
  align-items:flex-start;
}

.plan-section1 li {
  list-style: none;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .plan-section1{
    margin: 144px auto 40px;
    max-width: 1500px;
    padding: 0 8%;
    display: flex;
    justify-content: space-between;
    align-items:flex-start;
    flex-wrap: wrap;
  }

  .plan-section1 li {
    list-style: none;
  }

  .plan-section1 li:nth-child(1) {
    flex: 1 1 calc(10%);
  }
  .plan-section1 li:nth-child(3) {
    flex: 1 1 100%;
    margin-top: 24px;
  }
}

.plan-section1 li h3{
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
  display: flex;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  justify-content: center;
  align-items: center;
}

.plan-section1 li h3 span {
  font-size: 12px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  letter-spacing: 1px;
  margin-top: 4px;
}

.plan-section1-img {
  width: 35%;
  margin-right: 4%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .plan-section1-img {
    width: 85%;
    margin-right: 0;
  }
}

.plan-section1-img img{
  width: 100%;
}

.plan-section1-img div{
  display: flex;
  justify-content: space-between;
  margin-bottom: 2%;
}

.plan-section1-img .planimg1 img{
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
	height: 100%;
}

.plan-section1-img .planimg2 .left{
  width: 49%;
	object-fit: cover;
}

.plan-section1-img .planimg2 .right{
   width: 49%;
	object-fit: cover;
}

.plan-section1-img .planimg3 .left{
   width: 49%;
	object-fit: cover;
}

.plan-section1-img .planimg3 .right{
   width: 49%;
	object-fit: cover;
}

.plan-section1-img .planimg4 .left{
   width: 49%;
	object-fit: cover;
}

.plan-section1-img .planimg4 .right{
  width: 49%;
	object-fit: cover;
}

.plan-section1-img .planimg5 .left{
   width: 49%;
	object-fit: cover;
}

.plan-section1-img .planimg5 .right{
  width: 49%;
	object-fit: cover;
}

.plan-section1-img .planimg6 .left{
   width: 49%;
	object-fit: cover;
}

.plan-section1-img .planimg6 .right{
  width: 49%;
	object-fit: cover;
}

.plan-section1 li:nth-child(3){
  width: 50%;
	object-fit: cover;
}

.plan-section1 li:nth-child(3) h2{
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
}

.plan-section1 li:nth-child(3) h5{
  font-size: 12px;
  font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 400;
}

.plan-section1 li:nth-child(3) .planprice{
  font-size: 14px;
  margin: 4px 0 16px;
}

.planattention{
	color:#B21A1A;
	font-size:10px;
}

.plan-section1 li:nth-child(3) .planinfo{
  margin: 16px 0 32px;
}

.plan-section1 li:nth-child(3) .planfood{
  font-size:12px;
}

.plan-section1 li:nth-child(3) .planfood span{
	background-color: #E8E6D8;
    display: block;
    padding: 4px 8px;
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    letter-spacing: 1px;
	margin-bottom:8px;
}

.plan-section1 li:nth-child(3) .planbihin {
    margin: 32px 0;
	font-size:12px;
}

.plan-section1 li:nth-child(3) .planbihin span{
	background-color: #E8E6D8;
    display: block;
    padding: 4px 8px;
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    letter-spacing: 1px;
	margin-bottom:8px;
}

.plan-section1 li:nth-child(3) .planallergie {
	font-size:12px;
	margin-bottom:40px;
}

.plan-section1 li:nth-child(3) .planallergie span{
	background-color: #E8E6D8;
    display: block;
    padding: 4px 8px;
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    letter-spacing: 1px;
	margin-bottom:8px;
}

.plan-section1 li a{
	color: #333333;
}

.plan-section1 li .infopage-link{
  border: solid 1px #4d410e33;
  padding: 8% 0;
  display: block;
  text-decoration: none;
  text-align: center;
  color: #333333;
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .plan-section1 li .infopage-link{
    border: solid 1px #4d410e33;
    padding: 8% 0;
    display: block;
    text-decoration: none;
    text-align: center;
    color: #333333;
    font-size: 14px;
    font-family: "Shippori Mincho", serif;
    background-color: #4d410e15;
  }
}

.plan-section1 li .infopage-link span{
  font-size: 12px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  letter-spacing: 1px;
  margin-top: 4px;
  display: block;
}

.plan-section1 li .infopage-link:hover{
  background-color: #4d410e12;
  transition: .5s;
}


.plan-section1-option{
  margin: 80px auto;
  max-width: 1500px;
  padding: 0 12%;
}

@media (min-width: 0px) and (max-width: 480px) {
  .plan-section1-option{
    margin: 40px auto;
    max-width: 1500px;
    padding: 0 8%;
  }
}

.plan-section1-option h4 {
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
  background-color: #4D410E;
  display: block;
  padding: 8px 16px;
  align-items: center;
  display: flex;
  margin-bottom: 24px;
  color: #ffffff;
}

@media (min-width: 0px) and (max-width: 480px) {
.plan-section1-option h4 {
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
  background-color: #4D410E;
  display: block;
  padding: 16px 16px;
  align-items: center;
  display: flex;
  margin-bottom: 24px;
  color: #ffffff;
}
}

.plan-section1-option-content{
  display: flex;
  justify-content: space-between;
  list-style: none;
}

@media (min-width: 0px) and (max-width: 480px) {
.plan-section1-option-content{
  display: block;
  justify-content: space-between;
  list-style: none;
}
}

.plan-section1-option-content li{
  width: 47%;
}

@media (min-width: 0px) and (max-width: 480px) {
.plan-section1-option-content li{
  width: 100%;
}

.plan-section1-option-content li:nth-child(1){
  margin-bottom: 24px;
}
}

.plan-section1-option-content li a{
  text-decoration: none;
  color: #333333;
}

.plan-section1-option-content li a:hover{
  opacity: .5;
  transition: .7s;
}

.plan-section1-option-content li img{
  width: 100%;
  aspect-ratio: 5 / 2;
  object-fit: cover;
}

.plan-section1-option-content li h3{
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  justify-content: center;
  margin-top: 8px;
}

.plan-section1-option-content li h3 span {
  font-size: 10px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  letter-spacing: 1px;
  margin-left: 8px;
  text-transform: uppercase;
}

.plan-section1-drink {
  margin: 80px auto;
  max-width: 1500px;
  padding: 0 12%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .plan-section1-drink {
    margin: 64px auto;
    max-width: 1500px;
    padding: 0 8%;
  }
}

.plan-section1-drink h4 {
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
  background-color: #E8E6D8;
  display: block;
  padding: 8px 16px;
  align-items: center;
  display: flex;
  margin-bottom: 24px;
}

.plan-section1-drink h4 span{
  font-size: 12px;
  font-weight: 400;
  margin-left: 16px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .plan-section1-drink h4 {
    font-size: 16px;
    font-family: "Shippori Mincho", serif;
    font-weight: 200;
    background-color: #E8E6D8;
    padding: 16px 16px;
    align-items: center;
    display:grid;
    margin-bottom: 24px;
  }
  
  .plan-section1-drink h4 span{
    font-size: 10px;
    font-weight: 400;
    margin-left:0;
    margin-top: 4px;
  }
}

.plan-section1-drink h6 {
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.plan-section1-drink h6 span{
  font-size: 10px;
  font-weight: 400;
  margin-left: 8px;
}

.plan-section1-drink table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 8px;
}

.plan-section1-drink table .left-cell {
  background-color: #4d410e0f;
}

.plan-section1-drink table tr td span {
  font-size: 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 200;
  display: block;
  margin-top: 4px;
}

.plan-section1-drink table td {
  border: 1px solid #4d410e2b;
  padding: 2%;
  text-align: left;
  width: 50%;
  font-size: 14px;
  color: #333333;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .plan-section1-drink table td {
    border: 1px solid #4d410e2b;
    padding: 3%;
    text-align: left;
    width: 50%;
    font-size: 12px;
    color: #333333;
  }
    
}

.plan-section1-drink-com{
  text-align: right;
  margin-bottom: 32px;
  font-size: 10px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
	.plan-section1-drink-com{
  text-align: right;
  margin-bottom: 24px;
  font-size: 10px;
}
}

/*レビュー*/
.reviewlist2 {
  display: flex;
  flex-wrap: wrap;
  margin: 40px 4% 0;
  justify-content: flex-start;
}

.reviewlist2 li {
  list-style: none;
  width: 32%;
  align-items: center;
  padding: 4% 4%;
  box-sizing: border-box;
  text-align: left;
  background-color: #E8E6D8;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-right: 2%;
  margin-bottom: 2%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .reviewlist2 {
    display: block;
    flex-wrap: wrap;
    margin: 40px 0 80px;
    justify-content: flex-start;
  }
  
  .reviewlist2 li {
    list-style: none;
    width: 100%;
    align-items: center;
    padding: 8% 6%;
    box-sizing: border-box;
    text-align: left;
    background-color: #E8E6D8;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin-right: 2%;
    margin-bottom: 2%;
  }
}

.reviewlist2 li:nth-child(3n) {
  margin-right: 0;
}

.reviewlist2 li h6 {
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
}

.reviewlist2 li .reviewname {
    margin-top: 0;
    margin-bottom: 8px;
    color: #333333e3;
}

.reviewlist2 li p {
  margin-top: 16px;
  font-size: 12px;
  line-height: 1.5em;
}

.reviewlist2 li .subtext {
  line-height: 1.5em;
}

/*ご利用ガイド*/
.guide-section1{
  margin:0 auto;
  max-width: 1500px;
  padding: 0 12%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .guide-section1{
    margin:0 auto;
    max-width: 1500px;
    padding: 0 8%;
  }
}

.guide-section1 .scroll-section {
  position: relative;
}

.guide-section1 .scroll-section .content-wrapper {
  display: flex;
  align-items: flex-start;
}


/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .guide-section1 .scroll-section .content-wrapper {
    display: block;
    align-items: flex-start;
  }

  .sidebar{
    display: none;
  }
}

.guide-section1 .scroll-section .content-wrapper .sidebar {
  position: sticky;
  top: 104px;
  height: fit-content;
  flex-shrink: 0;
  left: 12%;
  width: 35%;
}

.guide-section1 .scroll-section .content-wrapper .sidebar a{
  display: block;
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
  text-decoration: none;
  color: #333333;
  line-height: 2em;
}

.guidecontent {
  margin-left: 5%;
  width: 70%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .guidecontent {
    margin-left: 0;
    width: 100%;
  }
}

#guidecontent1 {scroll-margin-top: 104px;}
#guidecontent2 {scroll-margin-top: 104px;}
#guidecontent3 {scroll-margin-top: 104px;}
#guidecontent4 {scroll-margin-top: 104px;}
#guidecontent5 {scroll-margin-top: 104px;}
#guidecontent6 {scroll-margin-top: 104px;}
#guidecontent7 {scroll-margin-top: 104px;}
#guidecontent8 {scroll-margin-top: 104px;}
#guidecontent9 {scroll-margin-top: 104px;}
#guidecontent10 {scroll-margin-top: 104px;}

.guidecontent div h3{
  font-size: 16px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.guidecontent div h3 span {
  font-size: 24px;
  font-weight: 100;
  letter-spacing: 1px;
  margin-right: 8px;
  font-family: "Cormorant Garamond", serif;
}

.guidecontent .guide{
  margin: 0 0 64px;
}

.guide .guide1-info li{
  border: solid 1px #4d410e32;
  padding: 4%;
  list-style: none;
  margin-bottom: 4px;
}

.guide .guide1-info li h6{
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
  margin-bottom: 8px;
}

.guide .guide1-info li p{
  font-size: 13px;
}

.guide .guide2-info li{
  background-color: #E8E6D8;
  margin-bottom: 16px;
  padding: 4%;
  list-style: none;
}

.guide .guide2-info li h6{
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
  margin-bottom: 4px;
}

.guide .guide2-info li p{
  font-size: 13px;
}

.guide2-info-flow1{
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}

.guide2-info-flow1 div{
  font-size: 12px;
  width: 33%;
  padding: 3%;
  margin-right: 2%;
  background-color: #EDEBE0;
  color: #333333;
}

.guide2-info-flow1 div span{
  font-size: 13px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
  margin-bottom: 4px;
  display: block;
}

.guide2-info-flow1 div:nth-child(3){
  margin-right: 0;
}

.guide2-info-flow2{
  margin-top: 16px;
}

.guide2-info-flow2 div{
  font-size: 12px;
  width: 94%;
  padding: 3%;
  background-color: #EDEBE0;
  color: #333333;
}

.guide .guide3-info h6 {
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
  margin-bottom: 4px;
}

.guide .guide3-info p{
  font-size: 13px;
  margin-bottom: 16px;
}

.guide .guide3-info .kom{
  font-size: 12px;
  margin-bottom: 0;
  padding: 3%;
  border: solid 1px #4d410e2b;
}

.guide .guide4-info p{
  font-size: 13px;
}

.guide .guide4-info h6 {
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
  margin: 16px 0 8px;
}

.guide table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 24px;
}

.guide table th, td {
  border: 1px solid #4d410e2b;
  padding: 3%;
  text-align: left;
  width: 50%;
  font-size: 13px;
  color: #333333;
}

.guide table tr td span{
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
  display: block;
  margin-bottom: 4px;
}

.guide table .left-cell {
  background-color: #4d410e0f;
}

.guide .guide5-info p{
  font-size: 13px;
}

.guide .guide5-info h6 {
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
  margin: 16px 0 8px;
}

.guide .guide6-info p{
  font-size: 13px;
}

.guide .guide6-info h6 {
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
  margin: 16px 0 8px;
}

.guide .guide7-info p{
  font-size: 13px;
}

.guide .guide7-info h6 {
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
  margin: 16px 0 8px;
}

.guide .guide8-info p{
  font-size: 13px;
}

.guide .guide9-info p{
  font-size: 13px;
}

.guide .guide10-info .accordion h6{
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
  margin: 16px 0 8px;
}

.toggle {
	display: none;
}

.faq {
	position: relative;
	margin-bottom: 8px;
  background-color: #E8E6D8;
}

.question,.anser {
	transform: translateZ(0);
	transition: all 0.3s;
}

.question {
  padding: 3% 4%;
  display: flex;
  align-items: center;
}

.question p{
  width: 95%;
  display: flex;
  align-items: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #333333;
  font-size: 13px;
}

.question p span {
  color: #333333;
  font-size: 20px;
  font-family: "Cardo", serif;
  font-weight: 100;
  margin-right: 4%;
  cursor: pointer;
}

.question:after,.question:before {
	content: "";
  position: absolute;
  right: 5%;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: 12px;
  background-color: #333333;
  transition: all 0.3s;
  cursor: pointer;
}

.question:after {
	transform: rotate(90deg);
}

.anser {
	max-height: 0;
	overflow: hidden;
}

.anser p {
  margin: 0 3%;
  margin-bottom: 4%;
  padding: 3%;
  line-height: 2em;
  color: #333333;
  background-color: #EDEBE0;
  font-size: 13px;
}

.toggle:checked + .question + .anser {
	max-height: 500px;
	transition: all 1.5s;
}

.toggle:checked + .question:before {
	transform: rotate(90deg) !important;
}

.anser .ansertable{
  margin: 3%;
  padding: 3%;
  background-color: #EDEBE0;
}

.anser .ansertable table{
  width: 100%;
  margin-bottom: 0;
  font-size: 13px;
  color: #333333;
}

.anser .ansertable p{
  margin: 0;
  padding: 0;
  margin-top: 8px;
  font-size: 12px;
}

.anser .ansertable table tr th{
  font-weight: 400;
    font-size: 13px;
    background-color: #4D410E;
    color: #ffffff;
    border: solid 1px #ffffff27;
}

.anser .ansertable table tr .left-cell{
  background-color: #4d410e0f;
}

/*ブログリスト*/
.planlist-page{
  margin: 200px auto 104px;
  max-width: 1500px;
  padding: 0 12%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .planlist-page{
    margin: 144px auto 104px;
    max-width: 1500px;
    padding: 0 8%;
  }
}

.pagemation{
	text-align:right;
	margin-top:40px;
}

.pagemation a{
	color:#333333;
	margin:0 4px;
}

/*ブログ*/
.blog-section1{
  margin: 200px auto 104px;
  max-width: 1500px;
  padding: 0 16%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .blog-section1{
    margin: 144px auto 24px;
    max-width: 1500px;
    padding: 0 8%;
  }
}

.blog-section1 .blogpageday{
  color: #4d410ebe;
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  margin-right: 40px;
  letter-spacing: 1px;
}

.blog-section1 h2 {
  font-size: 16px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  letter-spacing: 1px;
  margin-bottom: 40px;
  margin-top: 24px;
  border-bottom: solid 1px #4d410e2b;
  padding-bottom: 24px;
}

.blog-section1 .blogpagetext h1{
  font-size: 24px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  letter-spacing: 1px;
}

.blog-section1 .blogpagetext h2{
  font-size: 22px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  letter-spacing: 1px;
  margin: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.blog-section1 .blogpagetext h3{
  font-size: 20px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  letter-spacing: 1px;
}

.blog-section1 .blogpagetext h4{
  font-size: 18px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  letter-spacing: 1px;
}

.blog-section1 .blogpagetext h5{
  font-size: 16px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  letter-spacing: 1px;
}

.blog-section1 .blogpagetext h6{
  font-size: 14px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  letter-spacing: 1px;
}

.blog-section1 .blogpagetext b{
  font-size: 14px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #333333;
  font-weight: 600;
}

.blog-section1 .blogpagetext a{
  font-size: 14px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #333333;
}

.blog-section1 .blogpagetext p{
  line-height: 1.8em;
}

.blog-section1 .blogpagetext img{
  width: 100%;
}

.blogpeople{
	width:40%;
	margin-left:60%;
	display:flex;
	align-items:center;
	border:solid 1px #4d410e33;
	padding:3%;
	margin-top:40px;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
	.blogpeople{
	width:60%;
	margin-left:40%;
	display:flex;
	align-items:center;
	border:solid 1px #4d410e33;
	padding:3%;
	margin-top:40px;
}
 }


/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
	.blogpeople{
	width:100%;
	margin-left:0;
	display:flex;
	align-items:center;
	border:solid 1px #4d410e33;
	padding:3%;
	margin-top:24px;
}
}

.blogpeople li{
	list-style:none;
	width:56%;
}

.blogpeople li:nth-child(1) {
    width: 40%;
    margin-right: 4%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
	.blogpeople li{
	list-style:none;
	width:66%;
}

.blogpeople li:nth-child(1) {
    width: 30%;
    margin-right: 4%;
}
}

.blogpeople li img{
	width:100%;
}

.blogpeople li p{
	font-size: 12px;
    font-family: "Zen Kaku Gothic New", sans-serif;
	line-height: 1.5em;
	display:flex;
	align-items:center;
}

.blogpeople li p span{
	font-size: 14px;
	margin-left:8px;
}

.blogpeople li p b{
	font-size: 10px;
    font-family: "Zen Kaku Gothic New", sans-serif;
	color:#4d410e;
	margin-bottom:8px;
	font-weight:200;
}

.blog-backlist {
  text-align: center;
}

.blog-backlist a {
  font-size: 12px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid rgba(51, 51, 51, 0.383);
  padding: 0 8px 4px;
  display: inline-block;
}

/*お問い合わせ*/
.conatct-page{
  margin: 24px 0;
}

.conatct-page li{
  list-style: none;
}

.conatct-page li:nth-child(1){
  font-size: 14px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #333333;
  text-align: right;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .conatct-page li:nth-child(1){
    font-size: 14px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    color: #333333;
    text-align: left;
  }
}

.conatct-page li:nth-child(1) a{
  font-size: 14px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #333333;
  text-decoration: none;
  border-bottom: solid 1px #33333372;
}

.conatct-page li:nth-child(1) a:hover{
  opacity: .5;
  transition: .5s;
}

.conatct-page li:nth-child(2){
  text-align: right;
  margin: 4px 0 32px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .conatct-page li:nth-child(2){
    text-align: left;
    margin: 4px 0 32px;
  }
}

.conatct-page li:nth-child(3){
  font-size: 14px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #333333;
}

.conatct-page li:nth-child(4) a{
  border: solid 1px #4d410e2b;
  padding: 4% 0;
  width: 100%;
  text-align: center;
  align-items: center;
  margin: 4px 0 0;
  font-size: 25px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  color: #333;
  letter-spacing: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.conatct-page li:nth-child(4) a span{
  font-size: 13px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #333333;
  margin-left: 16px;
  letter-spacing: 1px;
}


/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .conatct-page li:nth-child(4) a span{
    font-size: 13px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    color: #333333;
    margin-left: 16px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
  }

  .conatct-page li:nth-child(4) a{
    border: solid 1px #4d410e2b;
    padding: 4% 0;
    width: 100%;
    text-align: center;
    align-items: center;
    margin: 4px 0 0;
    font-size: 25px;
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    color: #333;
    letter-spacing: 3px;
    display: block;
    align-items: center;
    justify-content: center;
    text-decoration: none;
  }
}

.conatct-page li:nth-child(4) a:hover{
  background: #4d410e18;
  transition: .5s;
}

.contact-form-section{
  margin: 40px 0;
}

.contact-form-section .contact-form{
  margin-top: 8px;
  background-color: #E8E6D8;
}

/*フォーマット*/
.customform{
	padding: 40px 0;
	text-align:center;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
	.customform{
	padding: 40px 0;
	text-align:left;
		margin-left: 4%;
}
}

.formtext{
	margin: 0 20% 40px;
    width: 60%;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
	.formtext{
	margin: 0 8% 40px;
    width: 84%;
}
 }


/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .formtext{
	margin: 0 4% 40px;
    width: 88%;
}
}

.previousbtn{
	text-align:center;
}

.submitbtn{
	text-align:center;
}

.previousbtn input{
	color:#333333;
	background-color:
		font-size: 14px;
    font-family: "Shippori Mincho", serif;
	background-color:#E8E6D8;
	padding:8px 40px;
	letter-spacing:1px;
	text-shadow:none;
	border:solid 1px #333333;
	margin-bottom:16px;
	cursor:pointer;
	width:400px;
	border-radius:0;
}

.previousbtn input:hover{
	background-color:#33333347;
	color:#ffffff;
	transition:.5s;
}

.submitbtn input{
	color:#ffffff;
	background-color:
		font-size: 14px;
    font-family: "Shippori Mincho", serif;
	background-color:#333333;
	padding:8px 40px;
	letter-spacing:1px;
	text-shadow:none;
	border:solid 1px #333333;
	margin-bottom:40px;
	cursor:pointer;
	width:400px;
	border-radius:0;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
	
	.previousbtn input{
	width:88%;
		font-size: 14px;
}
	
	.submitbtn input{
	width:88%;
		font-size: 14px;
}
}



.submitbtn input:hover{
	background-color:#E8E6D8;
	color:#333333;
	transition:.5s;
}


.forminput2 {
	border-bottom:solid 1px #3333333a;
	padding-bottom:4px;
	display:flex;
	justify-content:space-between;
	align-items:center;
	margin-bottom: 4px;
}

.forminput2 li{
	list-style:none;
	width:50%;
}

.forminput2 li:nth-child(2){
	text-align:right;
}


/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
	.forminput2 li{
	list-style:none;
	width:70%;
}

.forminput2 li:nth-child(2){
	text-align:right;
	width:30%;
}
}


/*日本酒*/
.sake-section1 {
  margin: 200px auto 40px;
  max-width: 1500px;
  padding: 0 12%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.sake-section1 {
  margin: 144px auto 40px;
  max-width: 1500px;
  padding: 0 8%;
}

}

.sake-section1 h1{
  justify-content: center;
  font-size: 16px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
  display: flex;
  align-items: center;
}

.sake-section1 h1 span {
  font-size: 14px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  letter-spacing: 1px;
  margin-left: 8px;
}

.sakelist-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  justify-content: flex-start;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.sakelist-list {
  display: block;
  flex-wrap: wrap;
  margin-top: 40px;
  justify-content: flex-start;
}
}

.sakelist-list li {
  list-style: none;
  width: 30%;
  margin-right: 3%;
  margin-bottom: 6%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.sakelist-list li {
  list-style: none;
  width: 100%;
  margin-right: 0;
  margin-bottom: 40px;
}
}

.sakelist-list li .sakeimg img {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.sakelist-list li .sakename{
  margin: 12px 0 4px;
  display: flex;
  align-items: center;
}

.sakelist-list li .sakename .sake-hight{
  background-color: #4d410ec2;
  color: #ffffff;
  font-size: 10px;
  font-weight: 300;
  padding: 4px 8px;
  margin-right: 8px;
}

.sakelist-list li h2 {
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
  font-weight: 200;
}

.sakelist-list li .sakeprice {
  font-size: 14px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  margin-bottom: 8px;
}

.sakelist-list li p{
  font-size: 12px;
  line-height: 1.6em;
  margin-bottom: 12px;
}

.sakelist-list li .sakeinfo{
  font-size: 12px;
  font-weight: 300;
}

.sake-attention{
	color: #B21A1A;
    font-size: 10px;
    line-height: 1.6em;
    margin-top: 24px;
	text-align:center;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.sake-attention{
	color: #B21A1A;
    font-size: 10px;
    line-height: 1.6em;
    margin-top: 24px;
	text-align:left;
}

}

.sake-section2 {
  margin: 0 auto;
  max-width: 1500px;
  padding: 0 32%;
}

/* タブレット*/
@media (min-width: 481px) and (max-width: 1024px) {
 .sake-section2 {
  margin: 0 auto;
  max-width: 1500px;
  padding: 0 24%;
}
}


/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .sake-section2 {
  margin: 0 auto;
  max-width: 1500px;
  padding: 0 8%;
}
}

.sake-section2 a {
  border: solid 1px #4d410e33;
  padding: 8% 0;
  display: block;
  text-decoration: none;
  text-align: center;
  color: #333333;
  font-size: 14px;
  font-family: "Shippori Mincho", serif;
}

.sake-section2 a:hover{
  background-color: #4d410e12;
  transition: .5s;
}

.sake-section2 a span {
  font-size: 12px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 200;
  letter-spacing: 1px;
  margin-top: 4px;
  display: block;
}



/*フェードイン*/
.fade-in {
  opacity: 0; /* 初期状態では透明 */
  transform: translateY(10px); /* 少し下から出てくるように設定 */
  transition: opacity 0.5s ease, transform 0.5s ease; /* フェードインとスライドのトランジション */
}

/* 画面に入ったら透明度が1になり、位置が元に戻る */
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}