@charset "UTF-8";
/* CSS Document */

body{
background-color: #E0DCD5;
	line-height: 1.8;
	min-width:850px;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}

@media only screen and (max-width:767px){
body {
	min-width:100%;
}
}

img {
	max-width:100%;
	height:auto;
	vertical-align:middle;
}

html {
  scroll-behavior: smooth;
}


.header {
position: absolute;
top: 0;
right: 0;
	  display: none;
}

/* ここから下がハンバーガーメニューに関するCSS */
  
/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer_open {
  display: flex;
  height: 80px;
  width: 80px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;/* 重なり順を一番上にする */
  cursor: pointer;
}


.nav_item a{
color: #fff;
}

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: '';
  display: block;
  height: 2px;
  width: 30px;
  border-radius: 3px;
  background: #fff;
  transition: 0.5s;
  position: absolute;
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 8px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(225deg);
}

#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}
  
/* メニューのデザイン*/
.nav_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
 left: 100%; /*メニューを画面の外に飛ばす*/
  z-index: 98;
  background: rgba(0,0,0,0.5);
  transition: .5s;
  margin: 0 auto;
}

/* メニュー黒ポチを消す */
.nav_list {
  list-style: none;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
  left: 0;/* メニューを画面に入れる */
}

@media (max-width: 767px) {
.header {
 display: block;
}
}

@media (max-width: 767px) {
  .container {
    width: 100%;
    max-width: 100%;
  }
}


h2 {
  display: block;
  width:500px;
  margin: 90px auto;
  text-align: center;
}

h2 img {
  width: 100%;
  height: auto;
	  margin: 30px auto 70px;
  min-width: 200px; /* ←縮みすぎ防止 */
}

@media (max-width: 767px) {
  h2 {
    width: auto;
    max-width: 300px;
    margin: 0 auto;
  }

  h2 img {
    width: 100%;
    height: auto;
  }
}

.nav__wrapper{
display: flex;
justify-content: center;
position: relative;
bottom: 160px;
z-index: 98;
}

nav a{
text-decoration: none;
color: #fff;
font-size: 30px;
margin: 25px;
}

nav a:hover{
text-shadow: 1px 1px 4px  #000;
}

@media(max-width:767px){
.nav__wrapper{
display: none;
}
}

.btn__Trial{
  position: fixed;
  bottom: -5%;
  right: -3%;
  z-index: 99;
}

@media(max-width:767px){
.btn__Trial{
width: 40%;
  position: fixed;
  bottom: -3%;
  right: -8%;
}
}

.main__arrow{
margin-bottom: -200px;
transform: translateY(-200px);
width: 200px;
margin-left: 80px;
}

@media(max-width:767px){
.main__arrow{
display: flex;
justify-content: center;
width: 80px;
margin: 0 auto -180px;
}	
}

.About {
  position: relative;
  padding: 100px;
}

.About p{
color: #2A5110;
font-size: 16px;
line-height: 3em;
font-weight: bold;
display: flex;
justify-content: center;
}

.btn__More{
width: 280px;
margin: 90px auto;
}

.About__pisture01,
.About__picture02 {
  display: flex;
  justify-content: space-between;
  align-items: center; /* ←ここを center にしてもいい */
  max-width: 1600px;
  margin: 0 auto;
  padding: 40px 0;
gap: 30px;
}

.picture-01,
.picture-02,
.picture-03,
.picture-04 {
	margin-top: -700px;
	position: relative;
}

.picture-01 img,
.picture-02 img,
.picture-03 img,
.picture-04 img {
  width: 100%;
  height: auto;
  display: block;
}

.picture-01{
width: 400px;
max-width: 45%;
bottom: 280px;
right: 120px;
}

.picture-02{
width: 400px;
max-width: 45%;
bottom: 20px;
left: 140px;
}

.picture-03{
width: 400px;
max-width: 45%;
right: 280px;
}

.picture-04{
width: 340px;
max-width: 45%;
bottom: 300px;
left: 140px;
}

@media (max-width: 1200px) {
.picture-04{
left: 200px;
}

.picture-01 img,
.picture-02 img,
.picture-04 img{
width: 80%;
}	

.picture-02 {
left: 200px;
}

.picture-03{
bottom: 140px;
}

}

/* スマホでは非表示 */
@media (max-width: 767px) {
  .picture-01,
  .picture-02,
  .picture-03,
  .picture-04 {
    display: none;
  }
}

/* スマホ専用画像 */
.About__sp-picture{
display: none;
}

@media(max-width:767px){

.About__sp-picture{

display:flex;
flex-direction: column;
margin: -20px auto 70px;
}

.sp-picture-top{
margin-top: -100px;
margin-bottom: 50px;
}

}

.Category{
background-image: url("../img/BG-category.jpg");
background-repeat: no-repeat;
background-attachment: fixed;
padding: 50px 0 300px 0;
}

@media(max-width:767px){
.Category{
padding: 50px 0 200px 0;
}
}

.Category h2{
/*padding-top: 90px;*/
}

.ul__wrapper{
display: flex;
justify-content: center;
}

.Category__btn__down{
position: relative;
top: 30px;
}

@media(max-width:767px){
.ul__wrapper{
display: grid;
justify-items: center;
grid-template-columns: 1fr 1fr;
}
	
.Category__btn__down{
position: static;
}

}

.Category__btn{
flex-shrink: 0;
width: 250px;
padding: 0 24px;
}

.Category__btn:nth-child(even) {
margin-top: 50px;
}

@media(max-width:767px){
.Category__btn{
flex-shrink: 0;
width: auto;
max-width: 230px;
margin-top: 50px;
}

.Category__btn:nth-child(even) {
margin-top: 50px;
}
}


.Info__p01 p{
margin: 10px;
padding: 8px 20px;
}

.Info__p01 a{
padding-left: 30px;
text-decoration: none;
color:#2A5110;
border-bottom: 1px solid #2A5110;
margin: 0 auto;
display: flex;
width: 620px;
}


@media(max-width:767px){
.Info__p01 a{
display: flex;
flex-direction: column;
width: 320px;
}	

.Info__p01 p{
padding: 2px 0;
}

}

.btn__More:hover {
  animation: pop 0.1s ease;
}

@keyframes pop {

  100% {
    transform: scale(1);
  }
}


footer .ft__logo{
max-width: 412px;
margin: 150px auto 80px;
}

.ft__wrapper01{
display: flex;
justify-content: center;
column-gap: 10px;
}

.ft__wrapper01 a{
text-decoration: none;
color: #000;
font-size: 18px;
}

@media(max-width:767px){
.ft__wrapper01{
flex-direction: column;
align-items: center;
}
}

.ft__ul{
line-height: 3em;
padding: 0 clamp(10px,10%,200px);
}

.ft__btncontactus{
width: 410px;
}

@media(max-width:767px){
.ft__btncontactus{
margin-top: 50px;
}
}

.ft__wrapper02{
display: flex;
justify-content: center;
margin-top: 80px;
column-gap: 10px;
}

@media(max-width:767px){
.ft__wrapper02{
flex-direction: column;
align-items: center;
}
}

.ft__Insta{
width: 400px;
min-width: 400px;
}

@media(max-width:767px){
.ft__Insta{
margin-bottom: 50px;
}
}

.ft__copy{
text-align:center;
margin: 100px;
}

.button {
	  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  transition: transform 0.4s; /* ← 変化にアニメーションをつける */
}

.button:hover {
  transform: scale(1.1); /* ← ホバー時に1.1倍に拡大 */
}