@charset "utf-8";
/* CSS Document */

/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
	margin: 0 auto; /*中央寄せ*/
	width: 100vw;
    font-family: vdl-penletter, sans-serif;
    line-height: 1.6;
}

/* Header */
.header {
    background-color: rgba(244, 227, 215, 0.66);
	position: fixed;
	z-index: 1000; /* 他の要素より上にくるようにする */
	width: 100vw;
    height: 10vw;
    background-image: url("images/木目のテクスチャ素材.png");
    background-size: cover;
    background-position: center;
}

.nav {
    display: flex;
    align-items: center;
    padding: 2vw 5vw;
	justify-content: space-between;
	width: 100vw;
	height: auto;
}

.logo {
    width: 7vw;
    height: 7vw;
    display: flex;
	margin-left: 3%;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
    margin-left: auto;
    font-size: 2.2vw;
	position: relative;
	margin-right: 10%;
}

.nav-item {
  position: relative;
  padding: 0 3vw;
  display: flex;
  align-items: center;
  justify-content: center; /* 中央寄せ */
  text-align: center;
}

.nav-item a {
	color: #292929;
	text-decoration: none; /* 下線を消す */
}

.nav-item span {
  display: inline-block;
  line-height: 1.2;
  margin-left: -35px;
}

/* 縦線 */
.nav-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  height: 80%;
  background-color: #292929;
  opacity: 0.6;
}

/* main */
.main {
	padding-top: 10%;
}

/* main top */
.Yasuragi-coffee {
	width: 100vw;
	display: block;
}

.Yasuragi-coffee-sp {
	display: none;
}

/* hero content */
.hero-content1 {
	display: block;
	justify-content: center;
	align-items: center;	
	width: 88vw;
	margin-left: 4.7%;
}

.hero-content1-sp {
	display: none;
}

/* UX Section */

.ux-container {
	position: relative;
	width: 100vw;
  height: auto;
}

.ux-img {
	width: 100vw;
	display: block;
}

.frame43 {
	display: none;
}

.buttons {
	position: absolute;
	bottom: 20%;
    display: flex;
	left: 45%;
	margin-left: 27%;
    transform: translateX(-50%);
    justify-content: center;
    gap: 5%; /* ボタンの間隔*/
	width: 100%;
}

.response-btn {
    width: 20%;
	aspect-ratio: 2.5 / 1; /* ボタンの比率を維持 */
    font-size: 4vw; /* 画面幅に応じたサイズ */
    background-color: #feffd3;
    border: none;
    border-radius: 50px;
    font-family: vdl-penletter, sans-serif;
    cursor: pointer;
	display: flex;
    align-items: center;
    justify-content: center;
	transition: background-color 0.3s;
	color: #292929;
	text-decoration: none; /* 下線を消す */
}

.response-btn:hover {
	background-color: #fffbb0;
}

/* Products Section */
.products {
	position: relative;
}

.products-content {
	width: 88vw;
	margin-left: 4.7%;
	align-items: center;
	justify-content: center;
}

.products-img {
	width: 100%;
	display: block;
}

.products-img-sp {
	display: none;
}

.buttons1 {
	position: absolute;
	bottom: 4%;
    display: flex;
	left: 38%;
	margin-left: 11%;
    transform: translateX(-50%);
    justify-content: center;
	width: 60%;
}

.more-btn {
   width: 30%;
	height: auto;
	aspect-ratio: 2.5 / 1; /* ボタンの比率を維持 */
    font-size: 3vw; /* 画面幅に応じたサイズ */
    background-color: #feffd3;
    border: none;
    border-radius: 50px;
    font-family: vdl-penletter, sans-serif;
    cursor: pointer;
	display: flex;
    align-items: center;
    justify-content: center;
	transition: background-color 0.3s;
	color: #292929;
	text-decoration: none; /* 下線を消す */
}

.more-btn:hover{
	background-color: #fffbb0;
} 

/* Access Section */

.access-content {
	width: 100vw;
}

.access-img {
	width: 100vw;
	display: block;
}

.access-img-sp {
	display: none;
}

/* Contact Section */

.contact {
  width: 88vw;
  margin-left: 4.7%;
  text-align: center;
  position: relative;
}

.contact-content {
	width: 88vw;
	
}

.contact-img {
	width: 88vw;
}

.contact-img-sp {
	display: none;
}

.mail {
  position: absolute;
  bottom: 20%; /* 画像の下からの距離 */
  left: 47%;
  transform: translateX(-50%);
}

.mail-btn {
  padding: 10% 10%;
  background-color: #feffd3;
  color: #333;
  text-decoration: none;
  border-radius: 30px;
  font-size: 3vw;
  border: 2px solid #ccc;
  cursor: pointer;
  font-family: vdl-penletter, sans-serif;
  transition: background-color 0.3s;
}

.mail-btn:hover {
  background-color: #fffbb0;
}


/* Footer */
footer {
    text-align: right;
    padding: 20px 100px;
    font-size: 2vw;
}

/* レスポンシブ */
@media screen and (max-width : 480px ){
	
.header {
    background-color: rgba(244, 227, 215, 0.66);
	position: fixed;
	z-index: 1000; /* 他の要素より上にくるようにする */
	width: 100vw;
    height: 10vw;
    background-image: url("images/木目のテクスチャ素材.png");
    background-size: cover;
    background-position: center;
}

.nav {
    display: flex;
    align-items: center;
    padding: 2vw 5vw;
	justify-content: space-between;
	width: 100vw;
	height: auto;
}

.logo {
    width: 7vw;
    height: 7vw;
    display: flex;
	margin-left: 3%;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
    margin-left: auto;
    font-size: 2.2vw;
	position: relative;
	margin-right: 10%;
}

.nav-item {
  position: relative;
  padding: 0 3vw;
  display: flex;
  align-items: center;
  justify-content: center; /* 中央寄せ */
  text-align: center;
}

.nav-item a {
	color: #292929;
	text-decoration: none; /* 下線を消す */
}

.nav-item span {
  display: inline-block;
  line-height: 1.2;
  margin-left: -35px;
}

/* 縦線 */
.nav-item::after {
  content: "";
  position: absolute;
  right: 1;
  top: 0;
  bottom: 0;
  width: 1px;
  height: 80%;
  background-color: #292929;
  opacity: 0.6;
}

/*スマホ用サイズの画像を表示 */
.Yasuragi-coffee {
	display: none;
}

.Yasuragi-coffee-sp {
	display: block;
	width: 100vw;
}

.hero-content1 {
	display: none;
}

.hero-content1-sp {
	display: block;
	width: 100%;
max-width: 480px;
}
	
.ux-img {
	display: none;	
	}	
	
.frame43 {
	display: block;
	width: 100%;
	max-width: 480px;
	position: relative;
	}	
	
.buttons {
	position: absolute;
	bottom: 20%;
    display: flex;
	left: 45%;
	margin-left: 24%;
    transform: translateX(-50%);
    justify-content: center;
    gap: 5%; /* ボタンの間隔*/
	width: 100%;
}

.response-btn {
    width: 20%;
	aspect-ratio: 2.5 / 1; /* ボタンの比率を維持 */
    font-size: 4vw; /* 画面幅に応じたサイズ */
    background-color: #feffd3;
    border: none;
    border-radius: 50px;
    font-family: vdl-penletter, sans-serif;
    cursor: pointer;
	display: flex;
    align-items: center;
    justify-content: center;
}
	
.products {
	position: relative;
}

.products-img {
	display: none;
	}
	
.products-img-sp {
	display: block;
	width: 100%;
	max-width: 480px;
	}	
	
.products-content {
    width: 100%;
	max-width: 480px;
	margin-left: 0;
}
	
.buttons1 {
	position: absolute;
	bottom: 50px;
    display: flex;
	left: 50%;
    transform: translateX(-50%);
    justify-content: center;
	margin-left: 0;
}

.more-btn {
    width: 150px;
    height: 50px;
    background-color: #feffd3;
    border: none;
    border-radius: 50px;
    font-size: 25px;
    font-family: vdl-penletter, sans-serif;
    cursor: pointer;
}	
	
.access {
	}
	
.access-content {
   width: 100%;	
   max-width: 480px;
   height: auto;
   display: block;
	position: relative;
}

.access-img-sp {
	width: 100%;
	max-width: 480px;
	height: auto;
	display: block;
	position: relative;
}	

.access-img {
	display: none;
	}
	
.contact {
	width: 100%;
	max-width: 480px;
	display: block;
	margin-left: 0;
	}
	
.contact-content {
	width: 100%;
	max-width: 480px;
	display: block;	
	}
	
.contact-img {
	display: none;	
	}
	
.contact-img-sp {
	width: 100%;
	max-width: 480px;
	display: block;
	}	
	
.mail {
  position: absolute;
  bottom: 30px; /* 画像の下からの距離 */
  left: 50%;
  transform: translateX(-50%);
}

.mail-btn {
  padding: 15px 30px;
  background-color: #feffd3;
  color: #333;
  text-decoration: none;
  border-radius: 30px;
  font-size: 12px;
  border: 2px solid #ccc;
  cursor: pointer;
  font-family: vdl-penletter, sans-serif;
  transition: background-color 0.3s;
}

.mail-btn:hover {
  background-color: #fffbb0;
}

.small {
	font-size: 10px;
	text-align: right;
		
	}
	
}