@charset "UTF-8";
/* reset css
==============================================================*/

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
dl,
dt,
dd,
form,
figure {
  margin: 0;
  padding: 0;
  font-family: 游ゴシック Medium, Gill Sans, YuGothic, YuGothicM, Hiragino Kaku Gothic ProN, メイリオ, Meiryo, sans-serif;
  line-height: 1.3em;
  text-align: justify;
  color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1rem;
  font-weight: normal;
}

table,
td,
th,
tr,
thead,
tbody {
  border: none;
}

table th {
  text-align: left;
  font-weight: normal;
}

table {
  border-collapse: collapse;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
}

a:hover {
  opacity: 0.6;
  transition: 0.5s;
}

a img {
  border: none;
}

img {
  vertical-align: bottom;
}

textarea {
  font-size: 1em;
  border: none;
  border-radius: 0;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

select {
  font-size: 1em;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

select::-ms-expand {
  display: none;
}

header,
footer,
section,
nav,
main,
figure,
figcaption,
time,
small {
  display: block;
}

input[type=submit],
input[type=image] {
  border: none;
  padding: 0;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password] {
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

input[type=number] {
  appearance: textfield;
  -moz-appearance: textfield;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0;
}

button {
  border: none;
  margin: 0;
  cursor: pointer;
  outline: none;
}

input[type=submit],
input[type=image],
input[type=reset] {
  cursor: pointer;
  font-family: 游ゴシック Medium, YuGothic, YuGothicM, Hiragino Kaku Gothic ProN, メイリオ, Meiryo, sans-serif;
}

address {
  font-style: normal;
}

/*=====================================*/
/*=ページサイズ全体設定=*/
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

.wrap90 {
  width: 90%;
  margin: auto;
}

/* flex指定 */
.flexbox {
  display: flex;
  flex-wrap: wrap;
}

.flexbox_right {
  justify-content: flex-end;
}

.flexbox_center {
  justify-content: center;
}

.flexbox_reverse {
  flex-direction: row-reverse;
}

.flexbox_between {
  justify-content: space-between;
}

.flexbox_around {
  justify-content: space-around;
}

.flexbox_aligncenter {
  align-items: center;
}

.flexbox_alignend {
  align-items: flex-end;
}

.flexbox_wrap {
  flex-wrap: wrap;
}

.flexbox_flex1 {
  flex: 1;
}

/*=フォント設定=*/
.red {
  color: #C60101;
}

.bold {
  font-weight: bold;
}

.center {
  text-align: center !important;
}

.right {
  text-align: right !important;
}

.font_12,
.small {
  font-size: 0.75rem !important;
}

.font_14 {
  font-size: 0.875rem;
}

.font_18 {
  font-size: 1.125rem;
}

.font_20 {
  font-size: 1.25rem;
}

.font_26 {
  font-size: 1.625rem;
}

.font_30 {
  font-size: 1.875rem;
}

.font_50 {
  font-size: 3.125rem;
}

/*=幅設定=*/

.width_10 {
  width: 10%;
}

.width_19 {
  width: 19%;
}

.width_25 {
  width: 25%;
}

.width_100 {
  width: 100%;
}

/* ＝＝ */
.width_p80 {
  width: 80px;
}

.width_p100 {
  width: 100px;
}

.width_p130 {
  width: 130px;
}

.width_p170 {
  width: 170px;
}

.width_p240 {
  width: 240px;
}

.width_p400 {
  width: 400px;
}

/*=共通ボタンデザイン=*/
.parts_button {
  border-top: 3px double #AA4228;
  border-bottom: 3px double #AA4228;
  padding: 10px 24px 10px 40px;
  line-height: 40px;
  position: relative;
  color: #AA4228;
}

.parts_button::before {
  content: '';
  width: 1px;
  height: 100%;
  border-left: 3px double #AA4228;
  position: absolute;
  left: -3px;
  top: -10px;
}

.parts_button::after {
  content: '';
  width: 1px;
  height: 100%;
  border-left: 3px double #AA4228;
  position: absolute;
  right: -3px;
  bottom: -10px;
}

.parts_button:hover {
  background-color: #eee;
  opacity: 1.0;
  transition: 0.5s;
}


/*=共通入力デザイン=*/
.parts_text {
  border: #ccc solid 1px;
  padding: 3px;
  border-radius: 4px;
}

/*=====================================*/

/* ==== ページ全体レイアウト ==== */
/* .wrap_all{

} */

/* メインメニュー */
.wrap_menuont {
  background-color: #F7F6F5;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 250px;
  transition: transform 0.5s;
  overflow: hidden;
}

.menu.closed {
  width: 80px;
}

.cont_menu {
  position: sticky;
  top: 0;
  width: 100%;

}

.toggle-btn {
  width: 100%;
}

.toggle-btn,
.main_menu a {
  display: block;
  box-sizing: border-box;
  padding: 15px 15px 15px 20px;
  font-size: 0.875rem;
  font-weight: bold;
  color: #333;

  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0 10px;
}

.toggle-btn:hover,
.main_menu a:hover {
  background-color: #e1e0e0;
  color: #772612;
  opacity: 1.0;
}

.toggle-btn .icon_menu,
.main_menu a .icon_menu {
  width: 24px;
  height: 24px;
}

.toggle-btn i,
.main_menu a i {
  font-size: 1.2rem;
  align-self: stretch;
  text-align: center;
  line-height: 1em;
}

.toggle-btn i {
  color: #772612;
}

.toggle-btn span,
.main_menu a span {
  align-self: stretch;
  display: block;
  box-sizing: border-box;
  /* padding-top: 3px; */
}

.main_menu .now a {
  background-color: #fff;
  border-left: 4px solid #772612;
  padding: 15px 15px 15px 16px;
}

.menu_sub {
  border-top: 4px solid #D9D9D7;
}

/* メニュー閉じたときの調整 */
.menu.closed .toggle-btn span,
.menu.closed .menu_sub,
.menu.closed .wrap_footer {
  display: none;
}

.menu.closed .toggle-btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.menu.closed .main_menu a {
  flex-direction: column;
  text-align: center;
}

.menu.closed .main_menu span {
  font-size: 0.75rem;
}

.menu.closed .toggle-btn,
.menu.closed .main_menu a {
  padding: 15px 0 15px 0;
}

/* メニュー内フッター */
.wrap_footer {

  box-sizing: border-box;
  color: #999;
  padding: 15px 20px;
  margin-top: 20px;
}

/* メインコンテンツ */
.wrap_mainont {
  margin-left: 280px;
  transition: margin-left 0.5s;
  width: 77%;
}

.menu.closed+.wrap_mainont {
  margin-left: 80px;
}

/* ヘッダー */
.wrap_head {
  background-color: #fff;

  position: sticky;
  top: 0;
  height: 60px;
  border-bottom: 1px solid #772612;
  box-sizing: border-box;
  padding-left: 30px;
  padding-right: 30px;
  z-index: 999;

}

.head_logo {
  width: 172px;
}

.global-menu-toggle {
  background: none;
  border: none;
  color: #772612;
  cursor: pointer;
  font-size: 1.5rem;
  padding: 10px;
  display: none;
}

.head_logo img {
  width: 100%;
  height: auto;
}

/* ユーザーメニュー */
.cont_usermenu {
  gap: 0 25px;
  align-content: center;
}

.parts_usermenu {
  list-style: none;

}

.parts_usermenu a span {
  display: none;
}


.newPost a {
  background-color: #772612;
  border: 4px solid #e8e8e8;
  box-sizing: border-box;
  width: 45px;
  height: 45px;
  display: block;
  position: relative;
  border-radius: 30px;
}

.newPost a:hover {
  background-color: #b22e0d;
  border: 4px solid #d4d4d4;
}

.newPost a::before {
  font: var(--fa-font-solid);
  content: "\2b";
  color: #fff;
  position: absolute;
  font-size: 22px;
  border-radius: 30px;
  box-sizing: border-box;
  top: 8px;
  left: 9px;
}

.notice a::before {
  font: var(--fa-font-solid);
  content: "\f0f3";
  color: #1B2F65;
  font-size: 25px;
  line-height: 45px;
}

.notice a:hover::before {
  color: #375ec9;
  transition: 0.5s;
}

.notice_badge {
  position: relative;
}

.notice_badge a::after {
  content: '';
  background-color: #FC2404;
  border: 3px solid #fff;
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 10px;
  position: absolute;
  top: 4px;
  right: -6px;
}

.myPage {
  width: 45px;
  height: 45px;
  border-radius: 30px;
  border: 4px solid #e8e8e8;
  box-sizing: border-box;
}

.myPage:hover {
  border: 4px solid #d4d4d4;
  transition: 0.5s;
}

.myPage img {
  width: 100%;
  height: auto;
  border-radius: 30px;
}


/* kv */
.wrap_kv {
  margin-bottom: 8px;
}

.wrap_kv img {
  width: 100%;
}

/* ==== ページコンテンツレイアウト ==== */

/* 共通見出し */
.head_major {
  font-size: 2.625rem;
  color: #666;
  margin-bottom: 20px;
}

.head_major span {
  font-size: 0.875rem;
  margin-left: 16px;
  font-weight: bold;
}

.head_detail {
  margin-bottom: 30px;
  font-size: 2rem;
}

.head_border {
  font-size: 1.875rem;
  margin-bottom: 40px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}

/* --- */
.head_sub {
  color: #666;
  margin-bottom: 16px;
  font-weight: bold;
}

/* 共通レイアウト調整 */
.layout_bordertop {
  position: relative;
}

.layout_bordertop::before {
  content: '';
  width: 100%;
  height: 7px;
  display: block;
  position: absolute;
  top: -7px;
  background-image: url("/img/common/back_border.jpg");
}

.layout_maincont {
  box-sizing: border-box;
  margin-left: 30px;
  padding-right: 30px;
  padding-top: 90px;
  padding-bottom: 48px;
}

.layout_bordertop_gray::after {
  content: '';
  width: 100%;
  height: 7px;
  display: block;
  position: absolute;
  top: 0;
  background-color: #F7F6F5;
}

.layout_sub_bordertop_gray {
  border-top: 1px solid #ccc;
}

.wrap_subcontent {
  position: relative;
  padding: 60px 12%;
}

/* flexbox 4分割 */
.flex_four {
  gap: 10px 1%;
}

.parts_flex_four {
  width: 24.25%;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 7px 8px;
  box-sizing: border-box;
  align-self: flex-start;
}

.parts_flex_four .thumbnail {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 24px;
}

.head_thumbnail {
  font-size: 1.375rem;

  margin-bottom: 24px;
}

.parts_flex_four a {
  color: #333;
}

.parts_flex_four a:hover {
  cursor: pointer !important;
}

/* .parts_flex_four a:hover .head_thumbnail{
  text-decoration: underline;
} */
.parts_flex_four .parts_posttime {
  text-align: left;
}

.parts_postuser {
  position: relative;
}

.parts_postuser p {
  font-weight: bold;
}

.img_postuser {
  width: 44px;
  height: 44px;
  border: 4px solid #e8e8e8;
  box-sizing: border-box;
  border-radius: 26px;
  margin-right: 10px;

}

.img_postuser img {
  width: 100%;
  height: auto;
  border-radius: 26px;
}

.icon_favorite {
  width: 16px;
  height: 16px;
  font-size: 16px;
  text-align: center;
  line-height: 16px;
  color: #DF5C76;
  margin-left: 7px;
}

.parts_posttime {
  text-align: right !important;
  color: #666;
  padding-top: 6px;
  padding-bottom: 6px;
}

.parts_user_posttime .parts_posttime {
  padding-top: 0;
  padding-bottom: 0;
}

a .parts_posttime {
  color: #666 !important;
}

.parts_preface {
  margin-top: 20px;
  margin-bottom: 20px;
}

.parts_preface p {
  font-size: 1.375rem;
  line-height: 1.5em;
}

.parts_preface+.wrap_tag {
  border-top: 1px dashed #772612;
  padding-top: 20px;
  padding-bottom: 10px;
}


/* moreボタン */
.cont_more {
  padding-top: 40px;
  padding-bottom: 40px;
  box-sizing: border-box;
}

/* タグエリア */
.btn_general,
.wrap_tag a {
  border: 1px solid #772612;
  padding: 3px 16px;
  display: inline-block;
  line-height: 1.5em;
  letter-spacing: 0.1em;
  /* font-weight: bold; */
  color: #5F1604;
  border-radius: 30px;
  background-color: #fff;
  box-sizing: border-box;
}

.btn_general:hover,
.wrap_tag a:hover {
  opacity: 1.0;
  color: #AA4228;
  border-color: #AA4228;
  background-color: #eee;
}

.parts_tag {
  gap: 10px 10px;
}

.area_tag {
  margin-bottom: 30px;
}

/* ============ */
/* トップ */


/* マップとグラフ */
.cont_map_graph {
  padding-top: 20px !important;
}

.parts_map {
  width: 67%;
}

.parts_graph {
  width: 30%;
}

.cont_map,
.cont_graph {
  width: 100%;
  height: 440px;

  background-color: #999;
}

/* フォローユーザーの最新報告 */
.cont_reportbox {
  position: relative;
}

.cont_reportbox+.cont_reportbox {
  /* margin-top: 120px; */
  padding-top: 40px;
}

/* 最新のプロジェクト報告 */
/* .wrap_pj_report{

} */

.top_pj_report {
  gap: 0 2%;
}

.top_pj_report+.cont_more {
  border-top: 1px solid #ccc;
  margin-top: 60px;
}



/* 共通パーツ */
.cont_report_beside a,
.cont_report_vertical a {
  color: #333;
}

.parts_report .thumbnail {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/*
  Fix: ensure thumbnails in list views have consistent width by
  constraining the wrapper element. This prevents uneven sizing when
  uploaded images vary in dimensions.
*/
.page_pj_report_vertical .img_thumbnail {
  width: 350px;
  flex: 0 0 350px;
}

.page_pj_report_vertical .img_thumbnail img.thumbnail {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.parts_held {
  background-color: #fff;
  border: 3px solid #772612;
  box-sizing: border-box;
  width: 82px;
  height: 82px;
  border-radius: 50px;
  text-align: center;
  font-weight: bold;
  color: #333;
  flex-direction: column;
  justify-content: center;
  position: absolute;

}

.parts_held::after {
  content: '';
  width: 92px;
  height: 92px;
  display: block;
  border-radius: 100px;
  border: 3px solid #C99285;
  box-sizing: border-box;
  position: absolute;
  left: -8px;
}

.parts_held p {
  line-height: 1.1em !important;
  text-align: center;
}

.area_pj_report {
  position: relative;
}

.cont_report_beside .parts_held {
  bottom: -25px;
  left: 10px;
}

.wrap_pj_report .parts_postuser {
  border-top: 1px dashed #772612;
  padding-top: 20px;
}


/* 横方向のパーツ */
.top_pj_report .cont_report_beside {
  width: 49%;
}

.cont_report_beside .head_thumbnail {
  margin-top: 40px;
  font-size: 1.625rem;
}

.cont_report_beside .parts_preface p {
  font-size: 1.125rem !important;
}

/* 縦方向のパーツ */

.cont_report_vertical .area_pj_report {
  width: 30%;
}

.cont_report_vertical .area_pj_report_txt {
  width: 70%;
  box-sizing: border-box;
  padding-left: 40px;
}

.cont_report_vertical .parts_held {
  top: -10px;
  right: -15px;
}

.cont_report_vertical .head_thumbnail {
  font-size: 1.375rem;
}

/* みんなの報告 */
.wrap_everyone {
  flex-direction: row-reverse;
  flex-wrap: nowrap;
}

.cont_everyonetag {
  width: 30%;
  background-color: #F7F6F5;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 30px;
  align-self: flex-start;
}

.cont_everyonerepo {
  width: 66%;
  border-top: 8px solid #F7F6F5;
  margin-right: 4%;
}

.parts_cont_everyonerepo+.parts_cont_everyonerepo {
  border-top: 8px solid #F7F6F5;
  margin-top: 30px;
}

/* 投稿者部分 */
.area_user {
  box-sizing: border-box;
  padding-top: 20px;
  padding-bottom: 20px;
}

.area_user .parts_postuser {
  flex-grow: 2;
}

.area_user .img_postuser {
  width: 80px;
  height: 80px;
}

.area_user .img_postuser,
.area_user .img_postuser img {
  border-radius: 50px;
}

.area_user .parts_postuser p {
  font-size: 1.375rem;
}

.area_user a {
  color: #333;
}

.area_user .parts_posttime {
  text-align: left;
}

.area_action a,
.parts_userdetail a {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background-color: #EAEAEA;
  display: block;
  text-align: center;
  line-height: 40px;
  font-size: 1.25rem;
  box-sizing: border-box;
}

.area_action a span,
.parts_userdetail a span {
  display: none;
}

/* 記事部分 */
.cont_user_repo {
  width: 65%;
  box-sizing: border-box;
  padding-left: 5%;
}

.img_user_repo {
  width: 35%;
}

.img_user_repo img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.parts_user_repo {
  font-size: 1.75rem;
}

/* アクションボタンエリア */
.area_action {
  background-color: #F7F6F5;
  border-radius: 4px;
  box-sizing: border-box;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.area_action .flexbox {
  gap: 0 20px;
}

.area_action a {
  background-color: #fff;
  border: 1px solid #772612;
}

.btn_fav a {
  color: #aaa;
}

.btn_share a {
  color: #772612;
}

.btn_fav.on_fav a {
  background-color: #be310e;
  border-color: #be310e;
  color: #fff;
}

/* 記事部分　アクションボタンエリア調整 */
.wrap_textarea .area_action {
  padding-top: 50px;
  padding-bottom: 30px;
}

.wrap_textarea .area_action .flexbox {
  gap: 0 40px;
}

.wrap_textarea .area_action .btn_fav,
.wrap_textarea .area_action .btn_share {
  position: relative;
}

.wrap_textarea .area_action .btn_fav::before,
.wrap_textarea .area_action .btn_share::before {
  position: absolute;
  font-size: 0.625rem;
  width: 150%;
  letter-spacing: normal;
  font-weight: bold;
  text-align: center;
  top: -25px;
  left: -10px;
}

.wrap_textarea .area_action .btn_fav::before {
  content: 'お気に入り';
}

.wrap_textarea .area_action .btn_share::before {
  content: '共有';
}

/* ============ */
/* ページ */

/* 活動報告ページ */
.page_pj_report_beside {
  gap: 0 2%;
  margin-bottom: 80px;
}

.page_pj_report_beside .cont_report_beside {
  width: 32%;
}

.page_pj_report_vertical .cont_report_vertical .area_pj_report {
  width: 350px;
  flex: 0 0 350px;
}

.page_pj_report_vertical .cont_report_vertical .area_pj_report_txt {
  flex: 1;
  width: auto;
}

.page_pj_report_vertical .parts_report_vertical+.parts_report_vertical {
  margin-top: 50px;
}

.page_pj_report_vertical .parts_preface {
  margin-bottom: 30px;
}

.parts_tag .now a {
  border: none;
  color: #fff;
  background-color: #772612;
}

.parts_tag .now a:hover {
  background-color: #5F1604;
}

/* 検索エリア */
.layout_maincont.wrap_search {
  padding-top: 20px;
  padding-bottom: 28px;
}

.wrap_search .area_tag {
  margin-bottom: 0;
}

.cont_search {
  background-color: #F7F6F5;
}

.area_search {
  width: 100%;
  box-sizing: border-box;
  padding: 30px 15%;
  margin-bottom: 20px;
}

.parts_search {
  gap: 10px 10px;
}

.input_search {
  width: auto;
  height: 40px;
  flex-grow: 2;
  border: 1px solid #ACACAC;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 2px 10px;

}

.btn_search {
  width: 120px;
  height: 40px;
  background-color: #772612;
  color: #fff;
  border-radius: 40px;
}

/* みんなの報告 */
.wrap_everyonerep {
  padding-top: 0;
}

/* フォロー */
.wrap_follow .parts_postuser {
  background-color: #F7F6F5;
  border-radius: 4px;
  box-sizing: border-box;
  padding: 10px;
  width: 49%;
}

.area_username {
  flex-grow: 2;
}

.wrap_follow .img_postuser {
  width: 52px;
  height: 52px;
}

.cont_follow {
  gap: 10px 2%;
}

.wrap_followlist {
  padding-bottom: 40px;
  position: relative;
}

.wrap_followlist+.wrap_followlist {
  padding-top: 40px;
}

/* 維持詳細ページ */
/* 共通パーツ */
.wrap_return {
  padding: 10px 30px;
  box-sizing: border-box;
  border-bottom: 8px solid #F7F6F5;
  position: fixed;
  width: 100%;
  z-index: 998;
  background-color: #fff;
}

.wrap_return a {
  color: #666;
}

.wrap_textarea {
  box-sizing: border-box;
  padding: 0 60px;
}

/* 団体 */
.cont_eventdate {
  margin-bottom: 30px;
}

.img_group_detail {
  box-sizing: border-box;
  padding-bottom: 80px;
}

.img_group_detail img {
  width: 80%;
  height: auto;
}

.wrap_group_detail .parts_postuser {
  padding: 30px 0;
}

.cont_textarea {
  padding-bottom: 60px;
}

.cont_textarea p {
  line-height: 1.5em;
}

.cont_textarea p+p {
  margin-top: 20px;
}

/* 活動結果 */
.wrap_result {
  align-items: center;
  padding-top: 60px;
}

.ico_garbage {
  width: 90px;
  height: 90px;
  display: block;
  border: 1px solid #959595;
  border-radius: 90px;
  flex-direction: column;
  align-content: center;
}

.parts_numpieces {
  display: block;
  padding-top: 10px;
  position: relative;
}

.parts_numpieces::after {
  content: '';
  width: 100%;
  height: 8px;
  background-color: rgba(51, 51, 51, 0.1);
  position: absolute;
  bottom: 0;
  left: 0;
}

/* ギャラリー */
.wrap_gallery {
  gap: 15px 2%;
}

.parts_gallery {
  width: 18.4%;
  border: 10px solid #F5F5F5;
  box-sizing: border-box;
}

.parts_gallery img {
  width: 100%;
  height: auto;
}

/* コメント欄 */
.wrap_postcom {
  padding-bottom: 40px;
  border-bottom: 1px solid #CCC;
}

.wrap_postcom+.wrap_postcom {
  margin-top: 40px;
}

.area_postcom {
  margin-top: 13px;
  margin-bottom: 20px;

}

.area_postcom p {
  font-size: 0.875rem;
  line-height: 1.8em;
}

.area_postcom p+p {
  margin-top: 6px;
}

.cont_reply {
  background-color: #F5F5F5;
  padding: 8px;
  box-sizing: border-box;
  text-align: center;
  margin-top: 40px;
}

.cont_replycom {
  border-left: 16px solid #EDEDED;
  padding: 10px 0 10px 40px;
  box-sizing: border-box;
}

.cont_replycom+.cont_replycom {
  margin-top: 20px;
}

.area_commentfield {
  padding-top: 40px;
}

.parts_comment {
  border: 1px solid #ACACAC;
  width: 100%;
  height: 150px;
  padding: 4px 8px;
  box-sizing: border-box;
  border-radius: 4px;
}

.area_commentfield .parts_postuser {
  margin-top: 10px;
}

/* 投稿ユーザー情報 */
/* 最新の投稿欄 */
.wrap_latestposts {
  background-color: #F5F5F5;
  padding: 30px;
  box-sizing: border-box;
}

.wrap_latestposts .head_sub {
  margin-bottom: 20px;
}

.img_latestposts {
  width: 30%;
}

.img_latestposts img {
  width: 100%;
  height: auto;
  box-sizing: border-box;
  border: 8px solid #fff;
}

.cont_latestposts {
  width: 70%;
  box-sizing: border-box;
  padding-left: 5%;
  padding-top: 4px;
}

.link_latestposts {
  display: block;
}

.link_latestposts+.link_latestposts {
  margin-top: 30px;
}

.wrap_latestposts .parts_posttime {
  margin-top: 10px;
}

/* 個人　報告ページ */
.area_user_repo .wrap_textarea {
  padding: 0;
}

.area_user_repo .wrap_textarea .area_action {
  padding-top: 35px;
  padding-bottom: 15px;
}

.wrap_tag.layout_bordertop {
  padding-top: 20px;
}

.page_personal .area_user {
  padding-top: 0;
}

.page_personal .area_user .img_postuser {
  width: 120px;
  height: 120px;
}

.page_personal .area_user .img_postuser,
.page_personal .area_user .img_postuser img {
  border-radius: 90px;
}

.page_personal .wrap_group_detail .parts_postuser {
  padding-top: 0;
}

.page_personal .parts_cont_everyonerepo .img_postuser {
  border: 8px solid #e8e8e8;
}

.page_personal .parts_flex_four {
  border: none;
  padding: 0;
}

.page_personal .parts_preface p {
  font-size: 0.875rem;
}

.page_personal .parts_flex_four .thumbnail {
  margin-bottom: 0;
}

.page_personal .flex_four {
  gap: 10px 4%;
}

.page_personal .parts_flex_four {
  width: 22%;
  align-self: stretch;
  position: relative;
}

.page_personal .parts_flex_four+.parts_flex_four::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #CCC;
  left: -9%;



}

/*=====================================*/
/* ページネーション */
.wrap_pagenation {
  padding-top: 60px;
  padding-bottom: 120px;
  gap: 10px 10px;
  position: relative;
}

.btn_turn,
.btn_pageno {
  width: 40px;
  height: 40px;
  display: block;
  border-radius: 40px;
  line-height: 40px;
  text-align: center;
}

.btn_turn {
  background-color: #772612;
  color: #fff;
  border: 4px solid #F4F3F0;
}

.btn_pageno {
  background-color: #F7F6F5;
  border: 1px solid #BEBEBE;
  color: #772612;
}

.now .btn_pageno {
  background-color: #fff;
  border-color: #772612;
}

.parts_pagenation {
  gap: 10px 10px;
}

.head_latestposts {
  margin-top: 6px;
  margin-bottom: 10px;
}



/*=====================================*/
/* モーダル共通css */

/* これが無いとモーダルウィンドウ表示の際に余白が出る */
* {
  margin: 0;
  padding: 0;
}

/* モーダル全体(背景＋本体) */
.modal {
  display: none;
  position: fixed;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 9999;
}

/* モーダル背景 */
.modal-bg {
  position: absolute;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
}

/* モーダル本体 */
.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: scroll;
  /* はみ出た部分はスクロールさせる */
  height: 80%;
  /* これが無いと「overflow:scroll」が利かない */
  width: 60%;
  /* これが無いと「overflow:scroll」が利かない */
  background: white;
  padding: 40px;
}

.modal_completion .modal-content {
  width: 30%;
  height: 39%;
}

/* モーダルウィンドウ表示中に記事本体を固定 */
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}

/*=====================================*/
@media screen and (min-width:310px) and (max-width:899px) {
  /* タブレットサイズ */

}

@media screen and (min-width:310px) and (max-width:666px) {

  /* ===== メニュー ===== */
  .wrap_menuont {
    width: 220px;
    transform: translateX(-100%);
    z-index: 1000;
  }

  .wrap_menuont:not(.closed) {
    transform: translateX(0);
  }

  .menu.closed + .wrap_mainont,
  .wrap_mainont {
    margin-left: 0;
    width: 100%;
  }

  .toggle-btn span {
    display: none;
  }

  .global-menu-toggle {
    display: block;
  }

  /* ===== レイアウト調整 ===== */
  .cont_usermenu {
    gap: 0 10px;
  }

  .flex_four .parts_flex_four {
    width: 100%;
  }

  /* ===== トップページ マップとグラフ ===== */
  .cont_map_graph {
    flex-direction: column;
    gap: 20px 0;
  }

  .parts_map,
  .parts_graph {
    width: 100%;
  }

}