@charset "UTF-8";
/* 共通設定 */
*{
    margin: 0 ;
    padding: 0 ;
    box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body{
    background-color: #fff3e6;
}

body{
 overflow-x: hidden;
 font-family: "Kiwi Maru", serif;
}

/* トップへ戻るボタン */
#backToTop {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 70px;
  height: 70px;
  font-size: 24px;
  background-color: #b67796;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 10000;
}

/* ホバー時 */
#backToTop:hover {
  opacity: 1;
}

/* 出現状態 */
#backToTop.show {
  opacity: 1;
  visibility: visible;
}

.header-container_02{
  display: none;
}

h2 {
    text-align: center;
    position: relative;
    margin: 2rem 0;
}

h2::after {
    content: "";
    display: block;
    width: 4%;               /* 線の長さを調整 */
    height: 5px;              /* 線の太さ */
    border-radius: 3px;
    background-color: #b67796;
    margin: 5px auto 0;       /* 上に余白、左右中央 */
}


.agurokka_name{
    width: 250px;
    margin: auto;
}
.agurokka_name img{
    width: 250px;
}

.member_into{
    position: fixed;
    bottom: 5%;
    right: 28px;
    z-index: 1000;
}

.into_btn{
    font-weight: bolder;
    display: inline-block;
    text-decoration: none;
    color: #b67796;
    width: 200px;
    height: 120px;
    line-height: 110px;
    border: double 4px #b67796;
    text-align: center;
    overflow: hidden;

    border-radius: 50%;
    /* transition: .6s; */
}

.into_btn:hover{
    border: double 4px #ffffff;
    background-color: #b67796;
    color: #ffffff;
}

/* ナビゲーション（調整） */
#AguRokka {
  scroll-margin-top: 90px; /* ナビの高さ＋余白 */
}

/* メンバー紹介 */
#Member {
  scroll-margin-top: 150px; /* 調整用に増減可能 */
}

/* 活動内容 */
/* ナビゲーション（最上部） */
.top{
    /* padding: 2rem; */
    background-color: #d8b9c9;
    display: none;
}
.nav2 {
    margin: auto;
    width: fit-content;
    display: flex;
    flex-direction: row;
    /* justify-content: space-between; */
    align-items: center;
}

.nav2 ul{
  display: flex;
  /* gap: 16px; */
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav2 li{
  width: 200px;
  height: 50px;
  /* border-radius: 30px; */
  background-size: cover;
  background-position: center;
  /* margin: 0 2rem; */
}

.nav2 li a {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 100%;

  color: rgb(255, 245, 241);
  text-decoration: none;
  /* font-weight: bold; */
  font-size: 18px;
}
.nav2 li a:hover{
    animation-name: nav-zoom;
    animation-duration: 1s;
    color: #6d3852;
}

.top_button{
    position: relative;
}

.top_button a{
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate(-50%,50%);
    text-decoration: none;
}

.top_btn{
    display: block;
	text-align: center;
	/* vertical-align: middle; */
	text-decoration: none;
	position: relative;
	width: 250px;
	margin: auto;
	padding: 2rem 3rem;
	font-weight: bold;
	color: #ffffff;
	background: #caa1b6;
	transition: 0.3s ease-in-out;
}
a.top_btn::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border: 2px solid #ffffff;
  transition: 0.2s;
}
a.top_btn:hover {
	background: #ffffff;
	color: #b67796;
}
a.top_btn:hover::before {
  top: 0;
  left: 0;
}
.toppage_img{
  position: relative;
  width: 100%;
  /* margin-top: 5rem; */
  object-fit: cover;

  transform: scale(0.98);
  opacity: 0;

animation: zoomOutIn 3.0s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes zoomOutIn {
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.toppage_img img {
  display: block;
  width: 100%;
  height: auto;
}

.toppage_img::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;

    height: clamp(24px, 6vw, 56px);

  background: linear-gradient(
    to bottom,
    rgba(255,243,230,0),
    rgba(255,243,230,0.35),
    rgba(255,243,230,0.65),
    rgba(255,243,230,0.85),
    #fff3e6
  );

  pointer-events: none;
}

.toppage_text {
    position: absolute;        /* 画像の上に配置 */
    top: 50%;                  /* 垂直中央 */
    left: 65%;                 /* 真ん中より少し右 */
    transform: translate(-50%, -50%); /* 中央揃え */
    color: #fff;               /* 文字色 */
    font-size: 2rem;           /* 文字サイズ */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6); /* 見やすく影をつける */
    z-index: 2;                /* 画像より前面に出す */
    text-align: center;
    line-height: 5rem;
}

.mirai{
    font-size: 3rem;
}



/* ナビゲーション */
.nav{
  position: fixed;
  top: 24px;
  right: 0;
  z-index: 9999;
  /* width: 40%; */

    opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav.is-show {
  opacity: 1;
  pointer-events: auto;
}

.nav a{
    white-space: nowrap;
}
.nav li{
    list-style: none;
    display: inline-block;
    margin-right: 2rem ;
}

.nav a{
text-decoration: none;
color: #333;
}

.nav a:hover{
color:#b67796;
border-bottom:2px solid #b67796;
}

/* --------------------AguRokkaとは-------------------- */
.about_agurokka h2{
    margin-top: 10rem;
}
.map_text{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
}
.map_text img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transform: translate(30%);
}
.map_text p{
    text-align: center;
    transform: translateX(-20%);
    /* line-height: 3rem; */
    z-index: 1; 
}
.map_text h4{
    /* display: inline-block; */
    text-align: center;
    transform: translateX(-20%);
    /* margin-top: 2rem; */
    margin-bottom: 1rem;
    z-index: 1;
    font-size: 25px;
    font-weight: normal;
    color: #72485d;
    /* border: solid 1px #b67796; */
}
.about_txt{
    line-height: 3rem;
}
.map_text h5{
    text-align: center;
    transform: translateX(-20%);
    margin-top: 2.5rem;
    z-index: 1;
    font-size: 18px;
    /* margin-bottom: 1rem; */
    font-weight: normal;
    margin-bottom: 1rem;
    color: #72485d;

    /* border: solid 1px #b67796; */
    /* width: 200px;
    margin: auto; */
}
.woman_project{
    font-size: 13px;
}

.maptxt{
    display: flex;
    flex-direction: column;
    position: absolute;
}

.map_shape {
  width: 100%;
  max-width: 600px;
}
.map_shape img {
  width: 100%;
  height: auto;


  -webkit-mask-image: radial-gradient(
    ellipse at center,
    rgba(0,0,0,1) 60%,
    rgba(0,0,0,0) 75%
  );
  mask-image: radial-gradient(
    ellipse at center,
    rgba(0,0,0,1) 60%,
    rgba(0,0,0,0) 75%
  );
} 

.higorokka{
    color: #b67796
}
.higorokka_txt{
    font-size: 13px;
    line-height: 1rem;
    margin-top: 1.5rem;
}


/* トップページ */
h2{
    text-align: center;
    margin: 1.5rem;
      font-weight: 400;
  font-style: normal;
}

/* ---------------------活動内容-------------------- */
.active_event{
    width: 100%;
    flex-wrap: wrap;
}
.active_event .Activity{
  padding: 10px;
  box-sizing: border-box;
}

.active_event .Event{
  padding: 10px;
  box-sizing: border-box;
}

.Activity{
    margin-top: 7rem;
}

.Activity h2{
    margin: 4rem 0;
}
.activity_article{
	display:flex;
    width: 50%;
	padding: 50px 10px;
    margin: auto;
	border-top:1px solid #000;
    justify-content: flex-start;
}
.section:last-of-type{
	border-bottom: 1px solid #000;
}

.title{
	position: sticky;
	top: 100px;
	width: 160px;
    font-size: 25px;
    color: #b67796;
    margin-left: 5rem;
}

/* -----イベント----- */
.Event{
    margin-bottom: 7rem;
}
.event_poster{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-bottom: 3rem;
    background-color: rgba(165, 99, 132, 0.2);
    border-radius: 30px;
    border: 1px solid#b67796;
    padding: 3rem;
    width: 40%;
    margin: auto;
}
.Event h3{
    margin: 2rem auto 3rem auto;
    padding: 0 2rem 0.5rem 2rem;
    text-align: center;
    font-weight: 500;
    border-bottom: 1px solid#6d3852;
    display: block;
    width: fit-content;       /* 内容幅に合わせる */
    max-width: 80%
}

.event_poster img{
    width: 200px;
    /* margin: auto; */
}
.poster_img{
        transition: transform 0.6s ease;
}
.poster_img:hover{
    transform: scale(1.2);
}

/* -----------------------メンバー紹介-------------------- */
.members_section{
  margin-top: 3rem;
  padding: 3rem 0 7rem 0;
  /* background-image: url(../img/IMG_1519.JPG); */
  background-repeat: no-repeat;
  background-size: 100%;
  /* border-radius: 25%; */
}
.members{
    width: 60%;
    height: 400px;
    margin: auto;
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 45px;
}

.members_section h2{
    margin-top: 3rem;
}

.article-link{
    text-decoration: none;
        transform: translateY(20%);
}
.members_item{
    width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.6s ease;

}
.members_item:hover{
    transform: scale(1.2);
}

.introduce p,
.introduce h3{
    text-align: center;
    color: #000;
    font-weight: normal
}

.introduce p{
    margin-top: 0.5rem;
}
.member_img{
    width: 200px;
    height: 200px;
}
.member_img img{
    width: 200px;
    height: 200px;
    border-radius: 50%;
}
.members::-webkit-scrollbar {
  height: 15px; /* スクロールバーの高さ */
}
 
.members::-webkit-scrollbar-thumb {
  background: #b67796; /* ツマミの色 */
  border-radius: 6px; /* ツマミ両端の丸み */
}
 
.members::-webkit-scrollbar-track {
  background: #fcdeed; /* トラックの色 */
  border-radius: 6px; /* トラック両端の丸み */
}








/* ---------------なぜめんばーになったのか--------------- */
.member_reason h3{
    margin: 6rem auto 3rem auto;
    padding: 0 2rem 0.5rem 2rem;
    text-align: center;
    font-weight: 500;
    border-bottom: 1px solid#6d3852;
    display: block;
    width: fit-content;       /* 内容幅に合わせる */
    max-width: 80%
}

.why_member h4{
    font-weight: normal;
  background-color: rgba(165, 99, 132, 0.2);
    backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
    border-radius: 20px 20px 0 0 ;
    padding: 10px;
}

.reason{
    margin: 2rem;
    /* padding: 10px; */
    border-radius: 20px;
    border: 1px solid #000;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.reason p{
    background-color: #fffcf9;
    border-radius: 0 0 20px 20px;
    padding: 10px;


}
.why_member{
    width: 60%;
    height: auto;
    margin: auto;
}   
.reason {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reason.is-show {
  opacity: 1;
  transform: translateY(0);
}
   
.campany{
    font-size: small;
}

.members_item h4{
    margin: 1rem;
}


/* -----------------------登録ページ --------------------*/
/* ボタン */
/* .touroku{
    
} */
a.btn_touroku {
	display: block;
	text-align: center;
	/* vertical-align: middle; */
	text-decoration: none;
	width: 220px;
	margin: auto;
	padding: 1rem 4rem;
	color: #fff;
	font-weight: bold;
	background: #b67796;
	position: relative;
	transition: 0.3s ease-in-out;
}
a.btn_touroku:hover {
    background: #fff;
    color: #b67796;
}
a.btn_touroku:before, a.btn_touroku:after {
  box-sizing: inherit;
  content: "";
  position: absolute;
  border: 2px solid transparent;
  width: 0;
  height: 0;
}
a.btn_touroku:before {
  top: 0;
  left: 0;
}
a.btn_touroku:after {
  bottom: 0;
  right: 0;
}
a.btn_touroku:hover:before, a.btn_touroku:hover:after {
  width: 100%;
  height: 100%;
}
a.btn_touroku:hover:before {
  border-top-color: #b67796;
  border-right-color: #b67796;
  transition: width 0.15s ease-out, height 0.15s ease-out 0.15s;
}
a.btn_touroku:hover:after {
  border-bottom-color: #b67796;
  border-left-color: #b67796;
  transition: border-color 0s ease-out 0.2s, width 0.15s ease-out 0.2s, height 0.15s ease-out 0.3s;
}

/* ----------フルススクリーン---------- */
.touroku_page{
    position: relative;
    /* margin: 3rem; */
    width: 70%;
    margin: auto;

}
.touroku_page a{
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%,50%);
}

.touroku_page p{
    position: absolute;
    top: 33%;
    left: 50%;
    transform: translate(-50%,50%);
    /* top: 35%;
    left: 25%; */
    color: #fff;
    font-weight: 500;
    text-shadow: 2px 2px 3px rgba(0,0,0,0.6);
    width: 100%;
    font-size: 23px;
    text-align: center;

}

.osasoi{
    font-size: 30px;
    position: absolute;
}

.touroku_page img{
    border-radius: 100px;
    filter: grayscale(40%);
    filter: drop-shadow(5px 5px 5px #aaa);
}

.touroku_page figure img{
    width: 100%;
    
}


/* --------------------フッター --------------------*/
.bottom{
    background-color: #b67796;
    border-radius: 40% 40%  0  0;
    padding-top: 5rem;
    padding-bottom: 1rem;
    text-align: center;
}

.bottom h2{
    font-weight: normal;
    margin-bottom: 5rem;
    color: #ffffff;
}

.bottom_flex{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 120px;
}

.bottom_nav{
    background-color:#d8adc2 ;
    height: 230px;
    width: 230px;
    border-radius: 20px;
    padding: 6px;
}

.bottom_nav ul{
    background-color: #faf0f5;
    border-radius: 20px;
    height: 218px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;

    background-image: linear-gradient(0deg, transparent calc(100% - 2px), #faf0f5 calc(100% - 2px)),
                      linear-gradient(90deg, transparent calc(100% - 2px), #faf0f5 calc(100% - 2px));
    background-size: 16px 16px;
    background-repeat: repeat;
    background-position: center center;
    background-color: #ffffff;
    /* border: 1px solid #b67796; */
    border-radius: 10px;
}

.bottom_nav ul li {
    list-style: none;
    background-color: #e0ccd6;
    border-radius: 10px;
    width: 150px;
}
.bottom_nav ul li:hover{
    background-color: #f5eef1;
}
.bottom_nav ul li a{
    text-decoration: none;
    color: #6d3852;
    font-weight: 500;

}

.bottom_nav ul li  a:hover{
    color: #b67796;
}

.bottom_area{
    display: flex;
    flex-direction: column;
    /* margin: auto; */
    gap: 30px;
    justify-content: center;
}

.insta_follow{
    display: flex;
    flex-direction: row;
    background-color: #d8adc2;
    border-radius: 20px;
    width: 320px;
    height: 100px;
    justify-content: space-between;
    /* padding: auto; */
    align-items: center;
    padding-left: 6px;

}
.into_agurokka{
    display: flex;
    flex-direction: row;
    background-color: #d8adc2;
    border-radius: 20px;
    width: 320px;
    height: 100px;
    justify-content: space-between;
    /* padding: px; */
    align-items: center; 
    padding-right: 5px;
    padding-left: 6px;
}
.insta_follow p,
.into_agurokka p{
    background-color: #faf0f5;
    height: 80px;
    border-radius: 20px;
    font-size: 13px;
    width: 215px;
    margin-right: 5px;
    display: flex;
    align-items: center;
    justify-content: center;

    background-image: linear-gradient(0deg, transparent calc(100% - 2px), #faf0f5 calc(100% - 2px)),
                      linear-gradient(90deg, transparent calc(100% - 2px), #faf0f5 calc(100% - 2px));
    background-size: 16px 16px;
    background-repeat: repeat;
    background-position: center center;
    background-color: #ffffff;
    /* border: 1px solid #b67796; */
    border-radius: 10px;
}
.insta_follow img:hover{
    transform: scale(0.9);
    transition: transform 0.6s ease;
}

.into_agurokka img:hover{
    transform: scale(0.9);
    transition: transform 0.6s ease;

}
.insta_icon{
    /* width: 50px; */
    height: 85px;
    margin-right: 5px;
}
.insta_icon img{
    /* width: 50px; */
    height: 85px;

}
.agu_logo{
    height: 85px;


}
.agu_logo img{
    /* width: 50px; */
    height: 85px;
    border-radius: 20px;


}

.fotter_p{
    margin-top: 4rem;
    margin-bottom: 1rem;
    font-size: 13px;
    color: #292929;
}
/* ---------------よくある質問--------------- */
.question{
    margin-bottom: 7rem;
}

.question h3{
    font-weight: normal;
    text-align: center;
    margin: 7rem auto 3rem auto;
    background-color: #b6879f;
    color: #fff;
    padding: 5px;
    border-radius: 20px;
    width: 200px;
}
.accordion{
    margin: auto;
    max-width: 50%;
    margin-bottom: 7px;
    border-bottom: 2px solid #ca6382;
}

.accordion summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1.5em 4em;
    /* color: #333333; */
    font-weight: normal;
    cursor: pointer;
}

.accordion summary::-webkit-details-marker {
    display: none;
}

.accordion summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .3s;
}

.accordion[open] summary::after {
    transform: rotate(225deg);
}

.accordion p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    /* padding: .3em 2em 1.5em; */
    padding: .3em 4em 1.5em;
    color: #505050;
    transition: transform .5s, opacity .9s;
}

.accordion[open] p {
    transform: none;
    opacity: 1;
}

/* モーダルウィンドウ */
/* ===== モーダル ===== */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 10000;
}

.modal.show {
  display: block;
}

/* 背景 */
.modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(83, 49, 65, 0.6);
}

/* 画像（6割サイズ） */
.modal-img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 60vw;
  max-height: 60vh;
  transform: translate(-50%, -50%) scale(0.9);
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.modal.show .modal-img {
  transform: translate(-50%, -50%) scale(1);
}

/* クリックできる感 */
.event_poster img {
  cursor: pointer;
}

/* botann */
.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255,255,255,0.8);
  border: none;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 20%;
  cursor: pointer;
  z-index: 10001;
  transition: background 0.3s;
}

.modal-close:hover {
  background: rgba(255,255,255,1);
}

/* ---------------------レスポンシブ -------------------- */
@media screen and (max-width: 1024px) {
  .header-container_02 {
    display: block;
  }

  .sp-menu-btn_02 {
  transform: translateX(0) translateY(0);
}
}
/* タブレット版 */
@media (max-width: 1024px) {
  .member_into{
    display: none;
  }
  /* body{
    width: 1024px;
  } */
   main{
    width: 1024px;
   }


  /* ----------nav----------- */
  .nav{
    display: none;
  }

  /* ----------nav2----------- */
  .nav2 li{
    width: 100px;
  }

  .nav2 li a{
    font-size: 13px;
  }

  /* -------トップページimg------ */
  .toppage_img{
    min-width: 100%;
    overflow: hidden;
  }
  .toppage_img img{
    width: 100%;
  }
  .kawaru{
    font-size: 20px;
  }
  .mirai{
    font-size: 30px;
  }

  .toppage_text{
    line-height: 4rem;
  }

  /* ぼたん */
  .top_button a{
    top: 89%;
  }

  .top_btn{
    width: 180px;
    font-size: 12px;
    padding: 1.5rem 2rem;
  }

  /* ---------Agurokka--------- */
  .map_shape{
    width: 350px;
  }
  .map_shape img{
    width: 350px;
  }

  .map_text h4{
    font-size: 18px;
  }

  .about_txt{
    font-size: 15px;
  }

  .higorokka_txt{
    font-size: 15px;
  }

  .map_text h5{
    font-size: 15px;
  }

  .woman_project{
    font-size: 13px;
  }

  .about_txt{
    line-height: 2rem;
  }

  .move{
    /* right: 10%; */
    padding-top: 2rem;
  }

  /* --------メンバー登録-------- */
  .member{
    height: 200px;
  }

  /* ---なぜメンバーになったのか--- */
  .why_member{
    width: 70%;
  }

  /* ----------活動内容---------- */
  .activity_article{
    width: 65%;
  }

  .title{
    font-size: 19px;
    width: 100px;
  }

  .content{
    font-size: 13px;
  }

  /* ----------イベント---------- */
  .event_poster{
    width: 60%;
    padding: 1.5rem;
  }

  .poster_img{
    width: 120px;
  }
  .poster_img img{
    width: 120px;
  }

  /* ---------登録ページ-------- */
  
  .osasoi{
    font-size: 18px;
    /* width: 600px; */
    text-align: center;
  }

  a.btn_touroku{
    width: 180px;
    font-size: 13px;
    padding: 1.5rem 1rem;
  }
  .touroku_page a{
    top: 50%;
    left: 50%;
    transform: translate(-50%,50%);
  }

  /* -------よくある質問-------- */
  .accordion{
    max-width: 60%;
  }
  .accordion summary{
    padding: 0.5rem 3rem;
  }

  /* -----------footer---------- */
    .bottom_flex{
    gap: 30px;
  }

  /* ------ハンバーガーメニュー------*/

/* 全体コンテナ */
.header-container_02 {
  position: fixed;
  top: 0;
  right: 0;
  font-family: serif;
  z-index: 1000;
}
.header__navi_02 {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 220px;
  background: #fff;
  transform: translateY(-120%);
  transition: transform 0.6s ease;
  border-radius: 0 0 20px 20px;
  border: 3px solid #aa8094;
  /* padding: 1.5rem 0; */
  z-index: 999;
}

.header__navi_02.active {
  transform: translateY(0);
}

.header__navi_02 ul {
  padding-top: 48px;
  text-align: center;
}

.header__navi_02 li {
  list-style: none;
  margin-bottom: 24px;
}

.header__navi_02 li a {
  color: #689090;
  /* text-decoration: none; */
  font-size: 13px;
}

.hum_logo{
  width: 30px;
  filter: drop-shadow(2px 2px 2px #aaa);
}
.hum_logo img{
  width: 30px;
}
/* .logo_mono{
  border-radius: 50%;
} */

/* =========================
  ハンバーガーボタン
========================= */

.sp-menu-btn_02 {
  position: fixed;
  top: 10px;
  right: 10px;
  width: 60px;
  height: 40px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

/* 線 */
.sp-menu-btn_02 .line {
  display: block;
  position: absolute;
  height: 1px;
  right: 15px;
  background: #6d3852;
  transition: 0.3s ease-in-out;
}

.sp-menu-btn_02 span:nth-child(1) {
  top: 16px;
  width: 30px;
}

.sp-menu-btn_02 span:nth-child(2) {
  top: 24px;
  width: 20px;
}

/* 開いたときの× */
.sp-menu-btn_02.active span:nth-child(1) {
  top: 24px;
  background: #88afaf;
  transform: rotate(-45deg);
}

.sp-menu-btn_02.active span:nth-child(2) {
  top: 24px;
  background: #88afaf;
  width: 30px;
  transform: rotate(45deg);
}

}







/* ===========スマホ版========== */
@media (max-width: 667px) {
  main{
    width: 667px;
   }

   .top{
    display: none;
   }

  /* ----------nav----------- */
.nav{
  display: none;
}

  /* ----------nav2----------- */
  .nav2 li{
    width: 100px;
  }

  .nav2 li a{
    font-size: 13px;
  }

  /* -------トップページimg------ */
  .toppage_img{
    min-width: 100%;
    overflow: hidden;
  }
  .toppage_img img{
    width: 100%;
  }
  .kawaru{
    font-size: 15px;
  }
  .mirai{
    font-size: 23px;
  }

  .toppage_text{
    line-height: 4rem;
  }

  /* ---------Agurokka--------- */
  .map_shape{
    width: 300px;
  }
  .map_shape img{
    width: 300px;
  }

  .map_text h4{
    font-size: 18px;
  }

  .about_txt{
    font-size: 12px;
  }

  .higorokka_txt{
    font-size: 10px;
  }

  .map_text h5{
    font-size: 16px;
  }

  .woman_project{
    font-size: 10px;
  }

  .about_txt{
    line-height: 2rem;
  }

  .move{
    /* right: 10%; */
    padding-top: 2rem;
  }

  /* --------メンバー紹介-------- */
  .members{
    height: 300px;
    gap: 20px;
  }

  .member_img{
    width: 150px;
    height: 150px;
  }
  .member_img img{
    width: 150px;
    height: 150px;
  }
  .campany{
    font-size: 12px;
  }

  /* ---なぜメンバーになったのか--- */
  .why_member{
    width: 70%;
  }

  .member_reason h4{
    font-size: 14px;
  }
  .member_reason p{
    font-size: 12px;
  }

  /* ----------活動内容---------- */
  .activity_article{
    width: 65%;
    flex-direction: column;
    align-items: center;
    padding: 25px 50px;
    /* justify-content: center; */
  }

  .title{
    font-size: 19px;
    width: 100px;
    margin-bottom: 2rem;
  }

  .content{
    font-size: 11px;
  }

  /* ----------イベント---------- */
  .event_poster{
    width: 60%;
    padding: 1.5rem;
  }

  .poster_img{
    width: 120px;
  }
  .poster_img img{
    width: 120px;
  }

  .title{
    position: unset;
    margin: 1rem;
    width: auto;

  }
  /* ---------登録ページ-------- */
  
  .osasoi{
    /* font-size: 10px; */
    /* width: 600px; */
    text-align: center;
  }

  a.btn_touroku{
    width: 130px;
    font-size: 10px;
    padding: 1rem 1rem;
  }
  .touroku_page a{
    top: 60%;
    left: 50%;
    transform: translate(-50%,50%);
  }
  .touroku_page p{
    font-size: 15px;
  }

  .touroku_page img{
    border-radius: 50px;
  }

  /* -------よくある質問-------- */
  .accordion{
    max-width: 60%;
  }

  .question p{
    font-size: 12px;
  }
  .question summary{
    padding: 1.1rem 3rem;
    font-size: 12px;
  }

  .question h3{
    font-size: 15px;
    width: 150px;
  }

  /* -----------footer---------- */
  .bottom_flex{
    gap: 30px;
  }
  .insta_follow{
    width: 200px;
  }

  .into_agurokka{
    width: 200px;
  }

  .insta_follow p,
  .into_agurokka p{
    width: 120px;
    font-size: 12px;
    /* height: 0px; */
  }

  .insta_icon{
    width: 60px;
    height: 60px;
  }
  .insta_icon img{
    width: 60px;
    height: 60px;
  }

  .agu_logo{
    width: 60px;
    height: 60px;
  }
  .agu_logo img{
    width: 60px;
    height: 60px;
  }
  /* ハンバーガーメニュー */

  .header__navi_02{
    max-width: 100%;
    height: 45%;
    border: 5px solid #aa8094;
  }
  .hum_menu{
    font-size: 35px;
  }
  .header__navi_02 ul {
    padding-top: 48px;
    padding-bottom: 20px;
    /* text-align: center; */
  }
  .header__navi_02 li{
    margin: 2rem 0;
  }
  .hum_logo{
    width: 50px;
  }
  .hum_logo img{
    width: 50px;
  }
  .header__navi_02 li a{
    font-size: 20px;
    /* margin: 5rem 0; */
  }

  /* ハンバーガーボタン */
}