:root{
  --device_font: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
}
html {
  overflow: auto;
  font-size: 62.5%;
}
body {
  font-size: 1.6em;
  overflow: hidden;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  color: #333;
  background-color: #fcf9ed;
  font-weight: 500;
}
.header_bottom li {
  list-style: none;
}
.sp_navi_wrap li {
  list-style: none;
}
.footer_navi li {
  list-style: none;
}
.magazine li {
  list-style: none;
}
.helpus li {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;　/* 親要素の色を踏襲する */
  cursor: pointer;
  transition: 0.5s;
}
a:hover,
a:focus {
  opacity: .7;
}
.footer_navi_item a:hover {
  background-color:#fc9c42; 	/*フッターでリンクにマウスが乗ったら背景色を変更する*/
}
.footer_navi_item_title a:hover {
  background-color:#fc9c42; 	/*フッターでリンクにマウスが乗ったら背景色を変更する*/
}
/* 共通 */
.sp {
  display: none;
}
.sp {
  display: none;
}
.inner{
  width: 1200px;
/*  max-width: 100%;*/
  max-width: 98%;
  margin: 0 auto;
  padding-bottom: 10px;
}

/* 共通ページトップボタン */
.page_top {
  width: 112px;
  height: 112px;
  background-image: url(/material/img/page_top.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: .2s;
  z-index: 120;
}
.page_top_link {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.page_top:hover{
  transform: scale(0.8);
  transition: .2s;
}

/* 共通ページトップボタン 　23.10*/
.button_top {
	margin-left:auto;
	margin-right:10px;
	
    /* ①ボタンの色と文字の色とサイズ */
    background-color: orange;
    color: white;
    font-size: 16px;

    /* ②ボタンのサイズと角丸 */
    width: 80px;
    height: 80px;
    border-radius: 50%;

    /* ③次に作る上向きの三角と、TOPの文字の位置を揃えるためのcss */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
	
	/* ⑧色が変化する時間 */
    transition: .3s;
}
.button_top::before {
    /* ④絶対必要 */
    content: "";
    display: block;

    /* ⑤三角のサイズ */
    width: 10px;
    height: 10px;

    /* ⑥三角の線と回転角度 */
    border-top: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(-45deg);
	margin-bottom: 5px;
	
	/* ⑩色が変化する時間 */
    transition: .3s;
}
/* ⑦マウスをかざした時に変化する色の指定 */
.button_top:hover {
    background-color: white;
    color: orange;
}
/* ⑨マウスをかざした時に変化する色の指定 */
.button_top:hover::before {
    border-top: 2px solid orange;
    border-right: 2px solid orange;
}

/* ヘッダー */
.header_top{
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 16px 0 36px;
}
.header_logo{
  width: 300px;
}
.header_logo_link{
  width: 100%;
  height: 100%;
  display: inline-block;
}
.header_logo_link img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.navi_button{
  display: none;
}
.sp_navi_wrap{
  display: none;
}
.pc_navi_list{
  height: 66px;
  display: flex;
  justify-content: space-around;
}
.navi_item{
  text-align: center;
  width: 100%;
  height: 100%;
  cursor: pointer !important;
}
.navi_item + .navi_item{
  border-left: 1px solid #ccc;
  cursor: pointer !important;
}
.navi_link{
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.navi_link:hover{
  background-color: #FBF0BA;
  opacity: 1;
  transition: 0.5s;
}
.navi_link_icon{
  position: relative;
  width: 15px;
  height: 16px;
  margin-right: 0.5rem;
  object-fit: contain;
}
.sub_navi_item{
  font-size: 14px;
  height: 0;
  transition: .5s;
  overflow: hidden;
  position: relative;
  z-index: 10;
  line-height: 66px;
  background-color: #F2CA66;
  display: flex;
  align-items: center;
  text-align: left;
}
.navi_item:hover > ul > li {
  height: 66px;
  overflow: visible;
  border-bottom: 1px solid #fff;
}
.navi_item:hover > ul > li:last-child {
  border-bottom: none;
}
.navi_item:hover > ul > li:hover {
  background-color: #FBF0BA;
  opacity: 1;
}
.sub_navi_link{
  width: 100%;
  height: 100%;
  display: inline-block;
/*  padding-left: 15%;*/
  padding-left: 5%;
}



.header_top_right{
  width: 320px;
}
.header_top_right_tel{
  background-color: #fff;
  height: 62px;
}
.header_top_right_tel_link{
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 32px;
}
.header_top_right_figure_wrap{
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header_top_right_tel_figure{
  width: 32px;
  height: 32px;
}
.header_top_right_tel_figure img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  vertical-align: baseline;
}
.header_top_right_consultant{
  height: 28px;
  margin-top: 4px;
}
.header_top_right_consultant_link{
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 18px;
}
.header_top_right_consultant_figure{
  width: 22px;
  height: 18px;
}
.header_top_right_consultant_figure img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  vertical-align: baseline;
}
.header_top_right_consultant_text_small{
  font-size: 12px;
  letter-spacing: -.8rem;
  margin-top: -2px;
  display: inline-block;
}

/* フッター */
.footer{
  position: relative;
}
.footer::before{
  position: absolute;
  content: "";
  width: 100%;
  height: 46px;
  background-image: url(/material/img/footer-grass.png);
  background-position: bottom center;
  background-size: cover;
  bottom: 0;
  vertical-align: bottom;
}
.footer_inner{
  display: flex;
  padding: 26px 0px 36px 30px;
}
.footer_info{
  display: inline-flex;
}
.footer_info_figure{
  width: 140px;
  height: 200px;
}
.footer_info_figure img{
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.footer_info_board{
  position: relative;
  background-color: #fff;
  width: 256px;
  height: 160px;
  margin-left: 26px;
  margin-right: 60px;
}
.footer_info_board_text{
  position: absolute;
  bottom: -26px;
  right: 6px;
  font-size: 12px;

}
.footer_info_board_inner{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.footer_info_board::before{
  position: absolute;
  content: "";
  background-color: #c69c6d;
  width: 6px;
  height: 188px;
  left: -6px;
  top: 0;
}
.footer_info_board::after{
  position: absolute;
  content: "";
  background-color: #c69c6d;
  width: 6px;
  height: 188px;
  right: -6px;
  top: 0;
}
.footer_info_board_inner::before{
  position: absolute;
  content: "";
  background-color: #c69c6d;
  width: 286px;
  height: 7px;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
}
.footer_info_board_inner::after{
  position: absolute;
  content: "";
  background-color: #c69c6d;
  width: 286px;
  height: 6px;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
}
.footer_logo{
  width: 220px;
  height: 50px;
}
.footer_logo_link{
  display: inline-block;
  width: 100%;
  height: 100%;
}
.footer_logo_link img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer_info_board_bottom{
  margin-top: 30px;
}
.footer_info_board_bottom_link{
  display: flex;
  align-items: center;
}
.footer_info_board_bottom_figure_wrap{
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer_info_board_bottom_tel_figure{
  width: 21px;
  height: 21px;
}
.footer_info_board_bottom_tel_figure img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  vertical-align: top;
}
.footer_info_board_bottom_tel_number{
  font-size: 21px;
}
.footer_info_board_bottom_consultant{
  margin-top: 13px;
}
.footer_info_board_bottom_consultant_figure{
  width: 14px;
  height: 12px;
}
.footer_info_board_bottom_consultant_figure img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  vertical-align: top;
}
.footer_info_board_bottom_consultant_text{
  font-size: 12px;
}
.footer_info_board_bottom_consultant_text_small{
  font-size: 10px;
  letter-spacing: -0.6rem;
}
.footer_navi{
  display: flex;
  color: #4d4d4d;
}
.footer_navi_list{
  font-weight: 400;
  margin-left: 20px;
  margin-top: 36px;
}
.footer_navi_list li{ /* 20210806追加 */
  padding-bottom: 5px;
}
.footer_navi_item_title{
  font-size: 18px;
  font-weight:500;
}
.footer_navi_item{
  /*margin-top: 8px;*/
}
.footer_navi_link{
  position: relative;
  padding-left: 1.4rem;
}
.footer_navi_link::before{
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background-image: url(/material/img/footer-arrowicon.png);
  background-size: contain;
  background-repeat: no-repeat;
  left: 2px;
  top: 6px;
}
.copyright{
  padding: 8px 0 12px;
  font-size: 14px;
  font-family: var(--device_font);
  text-align: center;
  background-color: #f8ddc4;
}

/* トップページメイン部分 */
.section_mainvisual{
  width: 100%;
}
.top_inner{
  padding: 30px 14px 255px 18px;
  display: flex;
  justify-content: space-between;
}
.top_left{
  width: 71%;
  align-self: start;
}
.news{
  background-color: #fff;
/*  width: 71%;*/
  width: 100%;
  padding-bottom: 30px;
  align-self: start;
}
.section_title_news{
  font-size: 24px;
  color: #603813;
  font-weight: 500;
  padding: 20px 0;
  background-color: #ffffd1;
  border: 1px solid #FB9F8A;
}
.section_title_inner{
  padding-left: 123px;
}
.bird_icon{
  position: relative;
}
.bird_icon::before{
  position: absolute;
  content: "";
  background-image: url(/material/img/hato-set.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 84px;
  height: 50px;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.news_list{
  margin: 0 20px;
}
.news_item{
  display: flex;
  margin-top: 30px;
}
.news_item_cat{
  display: inline-flex;
  font-size: 18px;
  color: #fff;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
/*  width: 144px; */
  min-width: 100px;
  height: 45px;
}
.news_item_cat_01{
  background-color: #F7B30B;
}
.news_item_cat_02{
  background-color: #EFCD06;
}
.news_item_cat_03{
  background-color: #F7AE92;
}
.news_item_cat_04{
  background-color: #F2CA66;
}
.news_item_body{
  margin-left: 20px;
}
.news_item_body_time{
  font-size: 18px;
  font-weight: 400;
}
.news_item_body_title{
  font-size: 20px;
  font-weight: 400;
  margin-top: 6px;
}
.news_item_body_title_link{
  display: inline-block;
  width: 100%;
  height: 20px;
/*  display: -webkit-box;
  overflow: hidden;*/
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.links{
  display: flex;
  justify-content: space-between;
  margin-top: 100px;
}
.links_box{
  width: 32%;
}
.links_icon_link{
  display: inline-block;
  width: 100%;
  height: 100%;
}
.links_icon_link img{
  object-fit:contain;
  width: 100%;
  height: 100%;
}
.sidebar{
  width: 22%;
  min-width: 250px;
  margin-left: 2%;
}
.youtube{
  position: relative;
  padding-bottom: 56.25%;
}
.youtube iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.twitter{
  padding: 3px;
  background-color: #fff;
  margin-top: 30px;
}
.twitter_inner{
  border: 1px solid #2B7BB9;
}


/* 下層ページメイン部分 */
.support{
  margin: 30px 0 60px 0;
/*  background-color: #fff;*/
 background-color: #F8DDC4;
  padding: 20px;
}
.section_title_support{
  font-size: 26px;
  color: #603813;
  font-weight: 500;
  padding-bottom: 20px;
  border-bottom: 2px solid #F2CA66;
}
.section_title_support .section_title_inner{
  padding-left: 100px;
}
.section_title_support .bird_icon::before{
  left: 0;
  width: 80px;
  height: 47px;
}
.support_content{
  padding-top: 20px;
}
.support_text{
  line-height: 1.75;
  color: #000;
  font-family: var(--device_font);
  font-size:120%;
}
.section_title_about{
  font-size: 26px;
  color: #603813;
  font-weight: 500;
  padding: 23px 0;
  background-color: #f8ddc4;
  margin: 30px 0;
}
.section_title_about .section_title_inner{
  padding-left: 110px;
}
.section_title_about .bird_icon::before{
  width: 70px;
  height: 42px;
}
.section_title_corp{
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  border-bottom: 12px solid #F2CA66;
  padding-bottom: 5px;
  margin: 30px 0;
}
.section_title_corp .section_title_inner{
  display: inline-block;
  background-color: #A36D45;
  padding: 7px 12px 7px 73px;
}
.section_title_corp .bird_icon::before{
  width: 47px;
  height: 28px;
}
.section_title_report{
  position: relative;
  font-size: 24px;
  font-weight: 500;
  color: #603813;
  border-bottom: 4px solid #F7B30B;
  padding-bottom: 17px;
  margin: 30px 0;
}
.section_title_report::before {
  content: "";
  position: absolute;
  bottom: -44px;
  left: 62px;
  margin-left: -15px;
  border: 22px solid transparent;
  border-top: 22px solid #FCF9ED;
  z-index: 2;
}
.section_title_report::after {
  content: "";
  position: absolute;
  bottom: -56px;
  left: 58px;
  margin-left: -17px;
  border: 28px solid transparent;
  border-top: 28px solid #F7B30B;
  z-index: 1;
}
.section_title_report .section_title_inner{
  display: inline-block;
  position: relative;
  padding: 0px 48px 0 48px;
}
.section_title_report .section_title_inner::before{
  position: absolute;
  content:"";
  width: 29px;
  height: 24px;
  background-image: url(/material/img/tel-heart.svg);
  background-repeat: no-repeat;
  background-size: contain;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.section_title_report .section_title_inner::after{
  position: absolute;
  content:"";
  width: 26px;
  height: 22px;
  background-image: url(/material/img/hatoaka.svg);
  background-repeat: no-repeat;
  background-size: contain;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.section_title_policy{
  font-size: 22px;
  font-weight: 500;
  color: #603813;
  overflow: hidden;
  padding: 7px 12px 7px 124px;
  background-color: #F8DDC4;
  margin: 30px 0;
}
.section_title_policy.bird_icon::before{
  background-image: url(/material/img/h5hato.svg);
  height: 112%;
  width: 10%;
  top: 58%;
}
.section_title_policy .section_title_inner{
  padding: 0;
  width: 100%;
  height: 100%;
}
.picturein{
  padding: 23px 20px 9px 20px;
  margin: 30px 0;
}
.picturein_text{
  font-family: var(--device_font);
  line-height: 2;
  padding-bottom:5px;
  color: #000;
}
.linka{ /* picturein_textのリンク追加 */
  color: #00F;
}
.picturein_figure{
  float: right;
  /*margin: 0 0 0.5rem 1rem; 上 右 下 左 */
 margin: 0 20px;   /* 上下 左右 */
}
.clearfix::after{
  content:"";
  display:block;
  clear:both;
}
.picturein_figure img{
  vertical-align: bottom;
}
.button_wrap_r{
  text-align: right;
  margin-top: 46px;
}
.button_wrap_c{
  text-align: center;
  margin-top: 46px;
}
/* 申込みボタン 
.button{
  font-size: 24px;
  font-family: var(--device_font);
  color: #ffefd5;
  padding: 6px 32px;
  text-align: center;
  border-radius: 3px;
  margin:20px 0;
}
.button_yellow{
  background-color:#F90;
}*/
/* 申込みボタン 23.10 */
.button {
  margin: 0 20px 40px;
  padding: 10px 2em;
  border: none;
  box-sizing:border-box;
  display: inline-block;
  font-size: 114%;
  position: relative;
  cursor: pointer;
}
.button::before,
.button::after {
   box-sizing:border-box;
}
.button_yellow {
  border:3px solid #fc9c42;
  background-color: #fc9c42;
  color: #fff;
}
.button_yellow:hover {
  border:3px solid #FC0;
  background-color: #FC0;
  color:  #000;
}

.donate{
  display: flex;
  justify-content: space-between;
  padding: 20px 30px 30px 30px;
  margin: 30px 0;
  background-color: #fff;
}
.donate_content{
  width: 81%;
}
.donate_content100{
  width: 100%;
}
.donate_title{
  position: relative;
  color: #603813;
  font-size: 18px;
  font-family: var(--device_font);
  padding: 8px 0 8px 22px;
  border-bottom: 1px solid #A36D45 ;
}
.donate_title::before{
  position: absolute;
  content:"";
  background-image: url(/material/img/clover.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 14px;
  height: 14px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.donate_text{
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.75;
  color: #000;
}
.donate_figure{
	width:40%;
  /*width: 18%;*/
  /*margin-top: 10px;*/
   margin: 20px 20px 0;  /* 上 左右 下 */
}
.telcounseling{
  background-color: #ffe7d8;
  border: 1px solid #F99187;
  width: 900px;
  max-width: 100%;
  margin: 0 auto;
}
.telcounseling_title{
  color: #603813;
  font-size: 22px;
  padding: 18px 24px;
  font-weight: 500;
}
.telcounseling_number_wrap{
  width: 100%;
  background-color: #fff;
  display: block;
  color: #F41711;
  font-size: 42px;
  font-weight: 800;
  text-align: center;
  padding: 20px 0;
}
.telcounseling_list{
  padding: 18px 24px;
}
.telcounseling_list li {
	list-style-type: none;
}
.telcounseling_item{
  position: relative;
  font-size: 20px;
  font-weight: 400;
  line-height: 2;
  padding-left: 0.8rem;
  color: #000;
}
.telcounseling_item::before{
  content:"";
  width:4px;
  height:4px;
  position:absolute;
  display:inline-block;
  border-width:4px;
  border-style:solid;
  border-right-color:transparent;
  border-left-color:#333;
  border-bottom-color:transparent;
  border-top-color:transparent;
  box-sizing:border-box;
  left:0;
  top:18px;
}
.telcounseling_item_attention{
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}

/* テーブル全体CSS */
table{
  color: #000;
}
.thead{
  background-color: #fff;
}
.tb_head{
  color: #603813;
  padding: 12px 4px;
  font-weight: 500;
}
.tb_subtitle{
  padding: 12px 4px;
}
.tb_content{
  padding: 12px 4px;
}

/* テーブル個別CSS */
.tbl-r01{ /* 事業報告書テーブル */
  margin: 30px auto;
  text-align: center;
  font-weight: 400;
  font-size: 100%;
  line-height: 1.75;
  background-color: #fff;
  width: 900px;
  max-width: 100%;
}
.tbl-r01 .thead{
  border-bottom: solid 6px #F99187;
}
.tbl-r01 .tb_head + .tb_head{
  border-left: solid 1px #F99187;
}
.tbl-r01 .tb_row + .tb_row{
  border-top: solid 1px #E6E6E6;
}
.tbl-r01 .tb_subtitle{
  color: #603813;
}
.tbl-r01 .tb_content{
  border-left: 1px solid #F99187;
}
.tbl-r01 a{
  text-decoration: underline blue; /* リンクに点下線 */
}

.tbl-r02{
  margin: 30px auto;
  text-align: center;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.75;
  background-color: #fff;
  width: 900px;
  max-width: 100%;
  border: 1px solid #CCCCCC;
}
.tbl-r02 .thead{
  border-bottom: solid 6px #CCCCCC;
}
.tbl-r02 .tb_head + .tb_head{
  border-left: solid 1px #F7B30B;
}
.tbl-r02 .tb_row + .tb_row{
  border-top: solid 1px #E6E6E6;
}
.tbl-r02 .tb_row:nth-child(even){
  background-color: #FCFADB;
}
.tbl-r02 .tb_content{
  border-left: 1px solid #F7B30B;
}

.tbl-r03{
  margin: 30px auto;
  text-align: center;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.75;
  background-color: #fff;
  width: 900px;
  max-width: 100%;
  border: 1px solid #F2CA66;
}
.tbl-r03 .thead{
  background-color: #f2ca66;
}
.tbl-r03 .tb_head + .tb_head{
  border-left: solid 1px #A36D45;
}
.tbl-r03 .tb_row + .tb_row{
  border-top: solid 1px #F2CA66;
}
.tbl-r03 .tb_subtitle{
  color: #603813;
  background-color: #fcedca;
}
.tbl-r03 .tb_content{
  border-left: 1px solid #F2CA66;
}
/* 20210806　追加テーブル問合わせフォーム用 */
.tbl-r04 {
	margin: 10px auto;
	background-color: #fff;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.75;
}
.tbl-r04 th {
	text-align: center;
	background: #e9727e;
	border: solid 1px #ccc;
	color: #fff;
	padding: 10px;
}
.tbl-r04 td {
	border: solid 1px #ccc;
	padding: 10px;
}
 
@media screen and (max-width: 760px) {
  .tbl-r04 .last td:last-child {
    border-bottom: solid 1px #ccc;
    width: 100%;
  }
  .tbl-r04 {
    width: 80%;
  }
  .tbl-r04 th,
  .tbl-r04 td {
　　border-bottom: none;
    display: block;
    width: 100%;
  }
}
/* 20210806　追加テーブル 問合わせフォーム用 */

/* 21.09.12 リンクページのリスト用 */
ul.cp_list {
	padding:0.5em;
	list-style-type:none;
	margin-top:20px;
}
ul.cp_list li {
	position:relative;
	padding: 0em 0.3em 0.3em 1.3em;
}
ul.cp_list li a{
  color: inherit;
}
ul.cp_list li a:hover{
  background-color:#fc9c42;
}
ul.cp_list li:after,ul.cp_list li:before {
	position:absolute;
	content:'';
	display:block;
	background: #FFC107;
	top: 0.43em;
	left: 0.5em;
	height: 11px;
	width: 4px;
	border-radius: 10px;
	transform: rotate(45deg);
}
ul.cp_list li:before {
	top: 0.6em;
	left: 0.2em;
	height:8px;
	transform:rotate(-45deg);
}

.helpus{ /* 支援者リスト */
  padding: 0 22px 36px 22px; /* 上 右 下 左 */
  background-color: #fff;
  width: 900px;
  max-width: 100%;
  margin: 0 auto;
}
.helpus_list{
  display: flex;
  flex-wrap: wrap;
}
.helpus_item{
  width: 280px;
  margin-top: 10px;
  font-family: var(--device_font);
  font-size:80%;
}
.helpus_item_head {
  margin-left: 15px;
}
.helpus_item:nth-of-type(4n){
  margin-right: 0;
}

.magazine{ /* 広報誌テーブル */
  padding: 0 22px 36px 22px;
  background-color: #fff;
  width: 900px;
  max-width: 100%;
  margin: 0 auto;
}
.magazine_list{
  display: flex;
  flex-wrap: wrap;
}
.magazine_item{
  width: 21.625%;
  margin-right: 4.5%;
  margin-top: 36px;
  border: 1px solid #CCCCCC;
  font-family: var(--device_font);
}
.magazine_item:nth-of-type(4n){
  margin-right: 0;
}
.magazine_item_link{
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 30px 0 10px;
  text-align: center;
}
.magazine_body{
  background-color: #f2f2f2;
  line-height: 1.5;
  font-size: 14px;
  text-align: center;
  font-weight: normal;
  padding: 6px;
}
.magazine_title{
  font-weight: normal;
}

/* 2021.8.5 追加ここから------------------------------------　*/
.details1 {
    border: 1px solid #aaa;
    border-radius: 4px;
    padding: .5em .5em 0;
}

.summarytext {
    font-weight: bold;
    margin: -.5em -.5em 0;
    padding: .5em;
}

.simple_list {
	counter-reset:list;
	padding:0;
    margin-left: 1em;
}
.simple_list li {
	padding: 0 0 0 5px;
	margin: 7px 10px;	
	line-height: 1.75;
	color: #000;
	font-family: var(--device_font);
}
ul.simple_list li a:hover {
  background-color:#fc9c42; 	/*フッターでリンクにマウスが乗ったら背景色を変更する*/
}


/* 2021.8.5 追加ここまで------------------------------------　*/

@media screen and (min-width:1201px) {
  .footer::before{
    background-size: contain;
  }
}
@media screen and (max-width:1200px) {
  .navi_item{
    width: 16.6666%;
	text-align:left;
	cursor: pointer !important;
  }
  .navi_link{
    font-size: 16px;
  }
  .navi_link_icon{
    font-size: 13px;
    height: 14px;
    margin-right: 0.2rem;
  }
  .footer_info_board{
    margin-right: 10%;
  }
  .footer_navi{
    flex-wrap: wrap;
  }
}

@media screen and (max-width:640px) {
  /* 共通 */
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .inner{
    width: 94%;
  }
  /* 共通ページトップボタン */
  .page_top{
    width: 84px;
    height: 84px;
    right: 15px;
    bottom: 15px;
  }
  /* ヘッダー */
  .header_top{
    position: relative;
    height: auto;
    padding: 16px 0;
    flex-wrap: wrap;
  }
  .header_logo{
    width: 230px;
    max-width: 70%;
  }
  .navi_button{
    position: relative;
    display: inline-block;
    background-color: #f7b30b;
    border-radius: 3px;
    width: 70px;
    height: 70px;
    transition: all 0.4s;
    z-index: 20;
  }
  .navi_button span {
    position: absolute;
    left: 15px;
    width: 57%;
    height: 6px;
    background-color: #fff;
    transition: all 0.4s;
  }
  .navi_button span:nth-of-type(1) {
    top: 18px;
  }
  .navi_button span:nth-of-type(2) {
    top: 32px;
  }
  .navi_button span:nth-of-type(3) {
    bottom: 18px;
  }
  .navi_button.active span:nth-of-type(1) {
    -webkit-transform: translateY(15px) rotate(-45deg);
    transform: translateY(15px) rotate(-45deg);
  }
  .navi_button.active span:nth-of-type(2) {
    opacity: 0;
  }
  .navi_button.active span:nth-of-type(3) {
    -webkit-transform: translateY(-14px) rotate(45deg);
    transform: translateY(-14px) rotate(45deg);
  }
  .sp_navi_wrap{
    position: absolute;
    top: 94px;
    right: 0;
    z-index: 20;
  }
  .sp_navi_wrap.open {
    display: block;
  }
  .navi_item{
    position: relative;
    width: auto;
    background-color: #fff;
    width: 190px;
    height: 66px;
	cursor: pointer !important;
  }
  .navi_item + .navi_item {
    border-left: none;
    border-top: 1px solid #ccc;
	cursor: pointer !important;
  }
  .navi_link{
    justify-content: flex-start;
    padding-left: 10%;
    font-size: 18px;
	cursor: pointer !important;
  }
  .navi_link_icon{
    width: 15px;
    height: 16px;
    margin-right: 0.5rem;
  }
  .sub_navi_wrap{
    position: absolute;
    width: 190px;
    left: -100%;
    top: 0;
  }
  .navi_item:hover > ul > li {
    border-top: 1px solid #fff;
    border-bottom: none;
  }
  .header_top_right{
    width: 100%;
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .header_top_right_tel{
    border: 1px solid #FFE7D8;
    width: 320px;
  }
  .header_bottom{
    display: none;
  }

  /* フッター */
  .footer{
    margin-top: 40px;
  }
  .footer::before{
    height: 40px;
  }
  .footer_inner{
    padding: 0 0 46px 0;
    flex-direction: column;
  }
  .footer_info{
    order: 2;
    margin-top: 60px;
    justify-content: center;
  }
  .footer_info_figure{
    max-width: 32%;
  }
  .footer_info_board{
    max-width: 64%;
    margin-left: 6%;
    margin-right: 0;
  }
  .footer_info_board_inner::before{
    width: 112%;
    }
  .footer_info_board_inner::after{
    width: 112%;
    }
  .footer_logo{
    max-width: 85%;
  }
  .footer_info_board_bottom{
    margin-top: 5%;
  }
  .footer_navi{/*　フッター部分のナビメニュー　*/
    order: 1;
    flex-direction: column; /* これをコメントアウトすると2列表示になる。その後、<ul>にかかっているmargin-topを調整する */
    align-items: flex-start;
    margin-top: 0;
  }
  .footer_navi_list{
    margin-left: 0;
    margin-top: 0;
  }
  .footer_navi_item{
    width: 160px;
  }
  .footer_navi_list:not(:first-child){
    margin-top: 30px;
  }
  .copyright{
    font-size: 10px;
  }

  /* トップページメイン部分 */
  .top_inner{
    padding: 20px 0 180px;
    flex-direction: column;
  }
  .top_left{
    width: 100%;
  }
  .news{
    margin-top: 16px;
    padding-bottom: 30px;
  }
  .news_item_cat{
	margin-top:10px;
  	font-size: 80%;
  	min-width: 80px;
	height:30px;
  }
  .section_title_news{
    padding: 20px 0;
    text-align: center;
  }
  .section_title_inner{
    padding: 0;
  }
  .bird_icon::before{
    left: -90px;
  }
  .news_list{
    margin: 0 12px 0 0;
  }
  .links{
    flex-direction: column;
    margin-top: 0;
    align-items: center;
  }
  .links_box{
    width: 50%;
    margin-top: 30px;
  }
  .sidebar{
    width: 100%;
    margin-left: 0;
  }
  .youtube{
    padding-bottom: 0;
    width: 62.5%;
    margin: 0 auto;
    min-width: 300px;
  }
  .youtube_inner{
    position: relative;
    padding-bottom: 56.25%;
  }
  .twitter{
    margin-top: 20px;
  }

  /* 下層ページメイン部分 */
  .section_title_support{
    font-size: 24px;
  }
  .section_title_support .section_title_inner{
    padding-left: 70px;
  }
  .section_title_support .bird_icon::before{
    width: 56px;
    height: 33px;
  }
  .section_title_about{
    font-size: 24px;
    padding: 20px 0;
  }
  .section_title_about .section_title_inner{
    padding-left: 60px;
  }
  .section_title_about .bird_icon::before{
    width: 50px;
    height: 30px;
    left: 10px;
  }
  .section_title_corp .bird_icon::before{
    width: 40px;
    height: 24px;
    left: 20px;
  }
  .section_title_policy{
    padding-left: 100px;
  }
  .section_title_policy.bird_icon::before{
    left: 10px;
    width: 80px;
  }
  .picturein{
    display: flex;
    flex-direction: column;
    padding: 16px 8px 8px 8px;
  }
/*  .picturein_text{
    order: 1;
  }*/
  .picturein_figure{
    float: inherit;
    order: 2;
    margin: 16px auto 0;
  }
  .button_wrap_r{
    order: 3;
    text-align: center;
    margin-top: 30px;
  }
  .button_wrap_c{
    order: 3;
    text-align: center;
    margin-top: 30px;
  }
  .donate{
    display: flex;
    flex-direction: column;
  }
  .donate_content{
    width: 100%;
  }
  .donate_figure{
    width: 70%;
    margin: 16px auto 0;
  }
  .aaaa{

  }
  .telcounseling_number_wrap{
    font-size: 36px;
  }
  .telcounseling_item{
    font-size: 18px;
  }
  .telcounseling_item::before{
    top: 14px;
  }
  .telcounseling_item_attention{
    font-size: 14px;
  }

  /* テーブル全体CSS */
  .thead {
    display: none;
  }
  table td  {
    display: block;
  }
  .tb_subtitle {
    text-align: center;
    font-weight: 500;
  }
  .tb_content {
    text-align: left;
  }
  .tb_content::before {
    content: attr(data-label)" : ";
    float: left;
    margin-right: 10px;
    font-weight: 500;
  }

  /* テーブル個別CSS */
  .tbl-r01 {
	  width:90%
  }
  .tbl-r01 .tb_row + .tb_row{
    border-top: none;
  }
  .tbl-r01 .tb_subtitle{
    border-bottom: solid 6px #F99187;
  }
  .tbl-r01 .tb_content{
    border-left: none;
    border-bottom: 1px solid #E6E6E6;
  }
  .tbl-r01 .tb_content::before {
    color: #603813;
  }

  .tbl-r02{
    border: none;
  }
  .tbl-r02 .tb_row + .tb_row{
    border-top: none;
  }
  .tbl-r02 .tb_subtitle{
    background-color: #FCFADB;
    border-bottom: solid 6px #CCCCCC;
  }
  .tbl-r02 .tb_content{
    border-bottom: 1px solid #E6E6E6;
    border-left: none;
    background-color: #fff;
  }

  .tbl-r03{
    border: none;
  }
  .tbl-r03 .tb_row + .tb_row{
    border-top: none;
  }
  .tbl-r03 .tb_subtitle{
    background-color: #FCEDCA;
  }
  .tbl-r03 .tb_content{
    border-left: none;
    border-bottom: 1px solid #FCEDCA;
  }
  .tbl-r03 .tb_content::before {
    color: #603813;
  }

  .helpus_item{
    width: 100%;
    margin-right: 8%;
  }
  .helpus_item:nth-of-type(2n){
    margin-right: 30px;
  }
  .helpus_item_link{
    padding: 22px 0 6px;
  }
  
  .magazine_item{
    width: 46%;
    margin-right: 8%;
  }
  .magazine_item:nth-of-type(2n){
    margin-right: 0;
  }
  .magazine_item_link{
    padding: 22px 0 6px;
  }
}
@media screen and (max-width:400px) {
  .navi_item{
    width: 170px;
	text-align:left;
	cursor: pointer !important;
  }
  .navi_link{
    font-size: 16px;
  }
  .sub_navi_wrap{
    width: 170px;
  }
  .telcounseling_number_wrap{
    font-size: 6vw; /*1vwはviewportの幅の1%に相当する*/
  }
}
@media screen and (max-width:340px) {
  .navi_item{
    width: 160px;
	text-align:left;
	cursor: pointer !important;
  }
  .sub_navi_wrap{
    width: 120px;
    left: -120px;
  }
  .footer_info_board_bottom_figure_wrap{
    width: 30px;
  }
}
p.anchor { /* アンカーのための余白 */
    padding-top: 30px;
    margin-top: -30px;
}



/*---------------------------- その他装飾 ----------------------------*/


/* 色系 */
.red { color:#F00; }　/*赤*/
.redb {　/*赤太*/
	color: #F00;
	font-weight: 200;
}
.blue { color:#00F; }　/*青*/

.text_r { text-align:right; } /*右寄せ*/
.text_l { text-align:left; } /*左寄せ*/

.text_big { font-size:140%; font-weight:bold; }
.test_mini { font-size:80%; }

.highlight {
	padding: 1rem 2rem;
	border: 6px double #000;
	font-size:140%;
	line-height: 1.5;
}

.kakomi-maru { /*囲み*/
	line-height: 2.75;
	margin: 2em auto;
	padding: 1em;
	width: 70%;
	color: #666666; /*文字色*/
	border: 2px solid #996633; /*線の太さ・色*/
	background-color: #fff; /*背景色*/
	box-shadow: -2px 5px 5px #e8d3c7; /*影*/
	border-radius: 20px; /*角の丸み*/
}
@media screen and (max-width: 760px) {
	.kakomi-maru { /*囲み*/
		margin: auto;
		width: 90%;
	}
}

/* 吹き出しをつくる */
.balloon-left {
	position: relative;
	padding: 20px;
	background-color: #f0a15b;
	border-radius: 15px;
	margin: 10% 20%; /* 上下　左右 */
	max-width:90%;
}

.balloon-left:before {
	content: '';
	position: absolute;
	display: block;
	border-radius: 50%;
	background-color: #f0a15b;
	left: -35px;
	bottom: 15px;
	width: 30px;
	height: 30px;
}

.balloon-left:after {
	content: '';
	position: absolute;
	display: block;
	border-radius: 50%;
	background-color: #f0a15b;
	left: -55px;
	bottom: 10px;
	width: 15px;
	height: 15px;
}

.balloon-left p {
	font-size:200%;
	margin: 0;
	padding: 0;
}
.balloon-right {
	position: relative;
	padding: 20px;
	background-color: #f0a15b;
	border-radius: 15px;
	margin: 10% 20%; /* 上下　左右 */
	max-width:90%;
}

.balloon-right:before {
	content: '';
	position: absolute;
	display: block;
	border-radius: 50%;
	background-color: #f0a15b;
	right: -35px;
	bottom: 15px;
	width: 30px;
	height: 30px;
}

.balloon-right:after {
	content: '';
	position: absolute;
	display: block;
	border-radius: 50%;
	background-color: #f0a15b;
	right: -55px;
	bottom: 10px;
	width: 15px;
	height: 15px;
}

.balloon-right p {
	font-size:200%;
	margin: 0;
	padding: 0;
}
/*youtubeの関係者ページ追加*/
.movie-wrap {
	position: relative;
	height: 0;
	padding: 30px 0 40%;
	overflow: hidden;
}
.movie-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 800px;
	height: 450px;
}

@media screen and (max-width: 760px) {
.movie-wrap {
	position: relative;
	height: 0;
	padding: 30px 0 56.25%;
	overflow: hidden;
}
.movie-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
}

/*寄付ページに画像の変更を追加*/
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
	display: block !important;
	text-align:center;
	margin: auto;
}
.sp {
	display: none !important;
}
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
    .pc {
		display: none !important;
	}
    .sp {
		display: block !important;
		text-align:center;
		margin: auto;
	}
}