@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
/* ----------------------------------------------------------------------
  common
---------------------------------------------------------------------- */
body ,input {
  color: #6a3a0e;
  font-family: 'Noto Sans Japanese', sans-serif;
  font-weight: 400;
  font-size: 16px;
}

h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 500;
  color: #038A3B;
}

h3 {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
}

p {
  line-height: 1.75;
}

a {
  color: #6a3a0e;
  text-decoration: none;
}

a:hover, a:active, a:focus {
  opacity: .8;
}

a:hover img {
  opacity: .8;
  transition: all .3s;
}

ul, li {
  list-style-type: none;
}

.inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width:1200px) {
  .inner {
    padding: 0 15px;
  }
}

@media screen and (max-width:767px) {
  body ,input {
    font-size: 14px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 18px;
  }  
}
/* ----------------------------------------------------------------------
  iframe
---------------------------------------------------------------------- */
iframe {
	width: 100%;
	vertical-align: bottom;
}

/* ---- ヘッダー ---- */
  /* jsで取得して調整
  #hdr_iframe {
    height: xxx; 
  } */

#slide iframe {
  height: 340px;  
}

@media screen and (max-width:767px) {
  #slide iframe {
    height: 320px;  
  }
}
/* ----------------------------------------------------------------------
  header
---------------------------------------------------------------------- */
/* ---- ヘッダー基準点 ---- */
.hdr_wrap {
  position: relative; 
  height: 720px; /* #header - #slide */
  width: 100%;
}

.hdr_wrap:before {
  content: url(../img/header/header_nav_deco_bottom.png);
  position: absolute; 
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
}

/* ---- メニュー背景 ---- */
.hdr_nav {
  width: 100%;
  height: 90px;
  background: #fff6de;
  position: relative;
}

.hdr_nav:before {
  content: url(../img/header/header_nav_deco.png);
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
}

.hdr_nav .inner {
  position: relative; /* .hdr_menu_l .hdr_menu_rの基準 */
  height: 100px;
}

/* ---- 自治体ロゴ ---- */
.hdr_logo{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  margin: 0 auto;
}

.hdr_logo img{
  width: 140px;
}

.hdr_logo img:hover ,.hdr_logo a:hover{
  opacity: 1 ; /* カーソル当てても透明にしない */
}

/* ---- メニュー ---- */
.hdr_menu_l, .hdr_menu_r{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  vertical-align: middle;
  /* (.inner - .hdr_logoとその余白)/左右で2等分 */
  width: calc((100% - (140px + 70px ))/2);
  height: 100%;
}

.hdr_menu_l {
  left: 0;
}

.hdr_menu_r {
  right: 0;
}

.hdr_menu_l li, .hdr_menu_r li{
  /* 3列 */
  max-width: 33.33%;
  flex-basis: 33.33%; 
  text-align: center;
}

.hdr_menu_l li a, .hdr_menu_r li a{
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.5;
}

.hdr_menu_l li a:hover, .hdr_menu_r li a:hover{
  color:#038a3b;
}

/* ---- 検索 ---- */
/* 検索ボックスをinner内で右寄せ */
.hdr_wrap > .inner {
  display: flex;
  justify-content: flex-end;
} 

.hdr_srch {
  /* .hdr_wrap - (padding + hdr_nav + .hdr_srch + 下の余白) */
  margin-top: 452px;
  padding: 100px 50px 0;
  width: 400px;
  background: url(../img/header/hdr_srch_deco.png) no-repeat;
}

.hdr_srch form {
  display: block;
  position: relative;
  background: #fff;
  width: 300px;
  padding: 10px 0 10px 10px;
  border: 3px solid #038a3b;
  border-radius: 6px;
}

.hdr_srch form * {
  outline: none;
}

.hdr_srch input[type="text"] {
  border: none;
  width: 250px;
  font-size:16px;
  background: none;
}

.hdr_srch input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  text-indent: -9999px;
  width: 30px;
  height: 100%;
  background: no-clip;
  background: url(../img/header/header_search.png) left center no-repeat;
  border: none;
}

/* ---- 背景スライダー ---- */
#hdr_slide {
  padding-top: 90px;
  position: absolute;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 720px
}

#hdr_slide .slick-slide img {
  width: 100%;
  height: 720px;
  object-fit: cover;
}

/* ---- 目玉カテゴリ ---- */
.hdr_cgry {
  padding: 80px 0 60px; 
  background-color: #fff6de; 
  position: relative;
}

.hdr_cgry:before {
  content: url(../img/header/header_c_deco.png);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.hdr_cgry ul {
  display: flex;
  justify-content: space-between;    
  flex-wrap: wrap;
  margin: 0 auto;
}

.hdr_cgry li {
  flex-basis: calc(20% - 20px);
  max-width: calc(20% - 20px);
}

.hdr_cgry a {
  display: block;
}

.hdr_cgry img {
  width: 100%;
  max-width: 220px;
}

/* ---- お知らせ ---- */
#hdr_news {
  display: none; /* 表示にする場合、ヘッダーの高さを調整 */
  background-color: #fff6de;
  margin: 0 auto 40px;
}

#hdr_news dl {
  display: table;
  width: 100%;
  border: 3px solid #e3504a;
  border-radius: 10px;
}

#hdr_news dt {
  display: table-cell;
  width: 144px;
  vertical-align: middle;
  text-align: center;
  background-color: #e3504a;
}

#hdr_news dt h2 {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}

#hdr_news dd {
  display: table-cell;
  vertical-align: middle;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
}

@media screen and (max-width:1024px) {
  /* ---- メニュー ---- */
  .hdr_menu_l {
    left: 10px;
  }
  
  .hdr_menu_r {
    right: 10px;
  }
}

@media screen and (max-width:767px) {
  .hdr_wrap {
    height: 580px;
  }

  /* ---- 背景スライダー ---- */  
  #hdr_slide {
    padding-top: 64px;
  }

  #hdr_slide .slick-slide img {
    height: 580px;
  }

  .hdr_nav {
    display: none; /* SPの場合非表示 */
  }

  /* ---- 検索 ---- */
  .hdr_wrap > .inner {
    justify-content: center; /* 検索ボックスを画面真ん中に配置 */
  }

  .hdr_srch {
    position: absolute;
    bottom: 30px;
    padding: 0;
    background: none;
    width: 300px;
  }

  /* ---- お知らせ ---- */  
  #hdr_news dl {
    display: block;
    padding: 0;
  }

  #hdr_news dt {
    display: block;
    padding: 20px 0;
    width: 100%;
  }

  #hdr_news dd {
    display: block;
    border-left: none;
  }

  .hdr_cgry {
    padding-bottom: 40px;
  }

  .hdr_cgry ul {
    justify-content: flex-start;
  }
  
  .hdr_cgry li {
    flex-basis: calc(50% - 10px);
    max-width: calc(50% - 10px);
    margin-bottom: 20px;
    text-align: center;
  }

  .hdr_cgry li:nth-child(odd) {
    margin-right: 20px;
  }
}
/* ----------------------------------------------------------------------
  slide
---------------------------------------------------------------------- */
.sld_wrap {
  background-color: #038a3b;
  padding-top: 40px;
  padding-bottom: 40px;
}

.sld_wrap .slick-slide {
  margin:0 10px;
}

.sld_wrap .slick-slide img {
  width: 385px;
  border-radius: 10px;
}

/* 矢印 */
.slick-prev {
  left: 20%;
}

.slick-next {
  right: 20%;  
}

.slick-prev, .slick-next {
  background: #e3504a;
  width: 50px;
  height: 50px;
  z-index: 10;
  border-radius:50%;
}

.slick-prev:before {
  content: '';
  width: 12px;
  height: 20px;
  display: inline-block;
  background: url(../img/header/header_slide_prev.png) no-repeat;
  background-size: contain;
  vertical-align: bottom;
  text-align: center;
  opacity: 1;
}

.slick-next:before {
  content: '';
  width: 12px;
  height: 20px;
  display: inline-block;
  background: url(../img/header/header_slide_next.png) no-repeat;
  background-size: contain;
  vertical-align: bottom;
  text-align: center;
  opacity: 1;
}

.slick-prev:hover, .slick-next:hover {
  background: #ea7a76;
  transition: all .3s;
}

.slick-prev:hover:before, .slick-next:hover:before {
  opacity: .8;
  transition: all .3s;
}

@media screen and (max-width:767px) {
  .sld_wrap .slick-slide img {
    width: 355px;
  }

  /* 矢印 */
  .slick-prev {
    left: 0;
  }

  .slick-next {
    right: 0;  
  }

  .slick-prev, .slick-next {
    width: 40px;
    height: 40px;
  }

  /* ボタン */
  .slick-dots {
    bottom: -24px;
  }

  .slick-dots li {
    width: 14px;
    height: 14px;
  }

  .slick-dots li button {
    padding: 0;
  }

  .slick-dots li button:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 14px;
    height: 14px;
    content: '';
    display: block;
    border-radius: 50%;
    background-color: #DCDCDC;
    opacity: 1;
  }

  .slick-dots li:hover button:before {
    background-color: #707070;
    opacity: 1;
  }
  
  .slick-dots li.slick-active button:before {
    background-color: #707070;
    opacity: 1;
  }  
}
/* ----------------------------------------------------------------------
  spmenu
---------------------------------------------------------------------- */
#spm_iframe {
  display: none;
}

@media screen and (max-width:767px) {
  #spm_iframe {
    display: block;
    position: fixed;
    top: 0;
    z-index: 9999;
    height: 64px;
  }

  .spm_nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 10px;
    background: #fff;
  }

  .spm_logo {
    flex-basis: auto;
    max-width: 155px;
    min-width: 0;
  }

  .spm_logo img, .hdr_logo h1{
    width: 100%;
  }

  .spm_right {
    width: 38px;
  }  

  .spm_menu {
    display: block;
    position: fixed;
    right: -100%;
    top: 64px;
    background-color: #fff;
    width: 100%;
    height: 100vh;
    transition: all 0.3s ease-in-out;
    z-index: 9999;
  }

  .spm_menu.panelactive {
    right: 0; /* ボタン押下時、右から出現 */
  }

  .spm_mainmenu{
    margin: 0 auto 10px;
  }

  .spm_mainmenu ul{
    display: block;
  }

  .spm_mainmenu li {
    font-size: 15px;
    font-weight: 500;
    border: none;
    border-bottom: 2px dotted #6a3a0e;
    position: relative;
    margin: 0 10px;
  }

  .spm_mainmenu li:first-child {
    border: none;
    border-bottom: 2px dotted #6a3a0e;
  }  

  .spm_mainmenu a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 17px 0;
    text-align: center;
  }  

  .spm_submenu {
    margin: 0;
  }
  
  .spm_submenu ul {
    display: block;
  }
  
  .spm_submenu li {
    margin: 6px 10px;
    padding: 0;
    background-color: #038A3B;
    color: #fff;
  }

  .spm_submenu a {
    display: table;
    width: 100%;
    height: 100%;
    padding: 14px 0;
    color: #fff;
    text-align: center;
  }

  .spm_submenu_txt {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
  }    

  /* ---- メニュー > ボタン ---- */
  /* メニューボタンの背景 */
  .spm_btn_menu {
    height: 38px;
    width: 38px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }

  /* メニューの3本線 */
  .spm_btn_menu span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #6a3a0e;
  }

  .spm_btn_menu span:nth-of-type(1) {
    top: 9px;
  }

  .spm_btn_menu span:nth-of-type(2) {
    top: 19px;
  }

  .spm_btn_menu span:nth-of-type(3) {
    top: 29px;
  }

  /* (close時)メニューの線 */
  .spm_btn_menu.active span:nth-of-type(1) {
    top: 13px;
    transform: translateY(6px) rotate(-28deg);
    width: 100%;
  }

  .spm_btn_menu.active span:nth-of-type(2) {
    opacity: 0;
  }

  .spm_btn_menu.active span:nth-of-type(3) {
    top: 25px;
    transform: translateY(-6px) rotate(28deg);
    width: 100%;
  }
}  
/* ----------------------------------------------------------------------
  banner
---------------------------------------------------------------------- */
/* ---- バナー(大) ---- */
#bnrl {
  text-align: center;
/* ins 220728 夏季休暇用 */ 
  position: relative; 
/* ins 220728 夏季休暇用 */ 
}

/* ins 220728 夏季休暇用 */
#bnrl:before {
  display: none;
  content: url(../img/main_deco_y.png);
  position: absolute; 
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
} 
/* ins 220728 夏季休暇用 */

#bnrl img{
  width: 100%; 
  margin-bottom: 20px;
}

/* ins 220728 夏季休暇用 */
#bnrl img.bnr_gw{
  max-width: 900px;
	margin:auto;
  padding: 100px 0;
}
/* ins 220728 夏季休暇用 */

/* ins 20231211 冬季休暇用 */
#bnrl img.bnr_gw_win_t{
	padding-top: 100px;
}
#bnrl img.bnr_gw_win_b{
	max-width: 900px;
	margin:auto;
	padding-bottom: 100px;
}
#bnrl img.bnr_gw_win{
  max-width: 900px;
	margin:auto;
	padding-bottom: 20px;
}
/* ins 20231211 冬季休暇用 */


/* ---- バナー(小) ---- */
#bnrs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;     
}

#bnrs a{
  /* 縦2列(50%) - 余白 */
  flex-basis: calc(50% - 10px);
  max-width: calc(50% - 10px);
}

#bnrs img{
  width: 100%; 
}

@media screen and (max-width:599px) {
  /* ---- バナー(小) ---- */
  #bnrs {
    display: block;
    margin-bottom: 0;
  }

  #bnrs img{
    margin-bottom: 20px; 
  }
}  
/* ----------------------------------------------------------------------
  main
---------------------------------------------------------------------- */
#main {
  width: 100%;
}

#main h2 {
  margin-bottom: 32px;
}

/* ---- 返礼品リスト ---- */
.main_itmlst {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;    
}

.main_itmlst li{
  position: relative;
  flex-basis: calc(33.333% - 16px);
  max-width: calc(33.333% - 16px);  
  background-color: #FFF6DE;
  padding: 20px;
  border-radius: 10px;
}

/* アイコン1位 */
.main_itmlst li:first-child:before{
  position: absolute;
  content: url(../img/main_itmlst_sup_01.png);
  top: -63px;
  left: 50%;
  transform: translateX(-50%);
}

/* アイコン2位 */
.main_itmlst li:nth-child(2):before{
  position: absolute;
  content: url(../img/main_itmlst_sup_02.png);
  top: -63px;
  left: 50%;
  transform: translateX(-50%);
}

/* アイコン3位 */
.main_itmlst li:nth-child(3):before{
  position: absolute;
  content: url(../img/main_itmlst_sup_03.png);
  top: -63px;
  left: 50%;
  transform: translateX(-50%);
}

.main_itmlst img {
  margin-bottom: 16px;
  width: 100%;
}

.main_itmlst_name {
  padding-bottom:16px;
  line-height: 1.5;
}

.main_itmlst_pr {
  background-color: #e3504a;
  color: #fff;
  border-radius: 4px;
  padding: 2px 0;
  text-align: center;
}

/* ---- 返礼品リスト > 人気の返礼品 ---- */
#ppl {
  overflow: hidden;
  position: relative; 
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #038A3B;
}

/* del 220728 夏季休暇用 */
/* #ppl:before {
  content: url(../img/main_deco_y.png);
  position: absolute; 
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
}   */
/* del 220728 夏季休暇用 */

#ppl .inner{
  max-width: 900px;
}

#ppl .img01 {
  position: absolute;
  top: 70px;
  left: 50%;
  margin-left: 430px;
}

#ppl .img02 {
  position: absolute;
  bottom: 30px;
  left: 50%;
  margin-left: -630px;
}

#ppl h2 {
  /* 余白 + 王冠の高さ */
  margin-bottom: calc(40px + 63px);
  color: #fff;
}
/* ---- 返礼品リスト > 新着返礼品 ---- */
#new {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #fff;  
}

/* ---- ピックアップ ---- */
/* ピックアップ共通 */
.pkup {
  padding-top: 100px;
  padding-bottom: 60px;  
}

.pkup h2{
  text-align: left;
  font-size: 40px;
  margin-left: 10px;
}

.pkup_box {
  display: flex;
}

/* ピックアップ(左) */
.pkup_l {
  background-color: #fff;
}

.pkup_l .pkup_main {
  margin-right: 60px;
}

/* ピックアップ(右) */
.pkup_r {
  background-color: #FFF6DE;
}

.pkup_r .pkup_box {
  flex-direction: row-reverse;
}

.pkup_r .pkup_item {
  margin-right: 60px;
}

/* ピックアップ > メイン画像 */
.pkup_main {
  flex-basis: calc(58% - 30px);
  max-width: 580px;
}

.pkup_main img{
  width: 100%;
}

/* ピックアップ > ボタン*/
.pkup_main a{
  display: block;
  text-align: right;
  color: #fff;
}

/* ピックアップ > テキスト*/
.pkup_main p{
  margin-top: 10px;
  padding: 32px;
  color: #fff;
}

#pkup01 .pkup_main p, #pkup03 .pkup_main p{
  background: url(../img/main_pkup_01_txt.png) no-repeat;
  background-size: 100% 100%;
}

#pkup02 .pkup_main p{
  background: url(../img/main_pkup_02_txt.png) no-repeat;
  background-size: 100% 100%;
}

#pkup01, #pkup02, #pkup03 {
  position: relative;
  overflow: hidden;
}

#pkup01 .img01, #pkup03 .img01 {
  position: absolute;
  bottom: 90px;
  left: 50%;
  margin-left: -700px;
}

#pkup01 .img02, #pkup03 .img02 {
  position: absolute;
  bottom: 80px;
  left: 50%;
  margin-left: 550px;
}

#pkup02 .img01{
  position: absolute;
  bottom: 20px;
  left: 50%;
  margin-left: 550px;
}

/* ピックアップ > 返礼品リスト */
.pkup_item {
  width: calc(42% - 30px);
  max-width: 560px;
  margin-top: 63px;
}

.pkup_itmlst{
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;    
}

.pkup_itmlst li{
  flex-basis: calc(50% - 10px);
  max-width: 260px;
  margin-bottom: 40px;
}

.pkup_itmlst img{
  margin-bottom: 12px;
  width: 100%;
}

.pkup_itmlst_pr {
  background-color: #e3504a;
  color: #fff;
  border-radius: 4px;
  padding: 2px 0;
  text-align: center;
}

/* ---- 自治体について ---- */
#intr {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 800px;
  background: url(../img/main_intr.jpg) top center no-repeat;
  padding-top: 60px;
  padding-bottom: 80px;
}

#intr .inner {
  position: relative;
  max-width: 800px;
}

#intr .img01 {
  position: absolute;
  top: 180px;
  left: 50%;
  margin-left: -490px;
}

#intr .img02 {
  position: absolute;
  bottom: 80px;
  left: 50%;
  margin-left: 270px;
}

#intr h2 {
  color: #6a3a0e;
  text-align: center;
}

#intr a {
  text-align: center;
  display: block;
}

.intr_txt {
  background: url(../img/main_intr_txt.png);
  background-size: 100% 100%;
  color: #6a3a0e;
  height: 476px;
  margin-top: 150px;
  padding: 100px;
}

/* ---- 寄附金使い道 ---- */
#usage {
  padding-top: 80px;
  padding-bottom: 80px;
  width: 100%; 
}

.usg_dic {
  text-align: center;
  margin-bottom: 40px; 
}

#usage ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;    
}

#usage li {
  flex-basis: calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);  
  margin-bottom: 30px;
  background-color: #FFF6DE;
  padding: 24px 24px 30px;
  border-radius: 10px;
}

#usage h3{
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 14px;
}

#usage ul img {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 10px;
}

.usg_txt_jigyo {
  display: block;
  text-align: center;
  background-color: #e3504a;
  color: #fff;
  border-radius: 20px;
  padding: 3px 0;
  width: 110px;
  margin-bottom: 2px;
}

.usg_txt_use {
  display: block;
  text-align: center;
  background-color: #E58A45;
  color: #fff;
  border-radius: 20px;
  padding: 3px 0;
  width: 110px;
  margin-bottom: 2px;
}

/* ---- キーワードリスト ---- */
.main_wrdlst ul{
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;   
}

.main_wrdlst li {
  flex-basis: calc(20% - 32px);
  margin-bottom: 30px;
  margin-right: 40px; 
}

.main_wrdlst li:nth-child(5n) {
  margin-right: 0; 
}

.main_wrdlst a {
  display: block;
  padding: 12px 0;
  text-align: center;
  background-color: #fff;
  color: #038A3B;
  border: 1px solid #038A3B;
  border-radius: 21px;
}

/* ボタン押下時 */
.main_wrdlst a:hover {
  background-color: #038A3B;
  color: #fff;
  transition: all .3s;
}

/* ---- キーワードリスト > 注目キーワード ---- */
#key {
  background-color: #046D38;
  padding-top: 60px;
  padding-bottom: 30px;
}

#key h2{
  color: #fff;
}

/* ---- キーワードリスト > 寄附金額から探す ---- */
#mny {
  background-color: #fff;
  padding-top: 60px;
  padding-bottom: 30px;
}

/* ---- カテゴリから探す ---- */
#cgry {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #FFF6DE;
}

#cgry ul{
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;   
}

#cgry li{
  flex-basis: calc(16.66% - 40px);
  max-width: 100%;
  margin-right: 48px; 
  margin-bottom: 30px;
}

#cgry li:nth-child(6n){
  margin-right: 0;
}

#cgry ul img{
  width: 100%;
  border-radius: 6px;
}

#cgry p{
  padding: 10px 0 0;
  line-height: 1;
}

@media screen and (max-width:1024px) {
  /* ---- キーワードリスト ---- */
  /* 4列に変更 */
  .main_wrdlst li {
    flex-basis: calc(25% - 30px);
  }

  .main_wrdlst li:nth-child(5n) {
    margin-right: 40px; 
  }

  .main_wrdlst li:nth-child(4n) {
    margin-right: 0; 
  }

  /* ---- カテゴリから探す ---- */
  #cgry li{
    flex-basis: calc(20% - 32px);
    margin-right: 38.4px; 
  }  

  #cgry li:nth-child(5n){
    margin-right: 0;
  }  

  #cgry li:nth-child(6n){
    margin-right: 38.4px;
  }  
}

@media screen and (max-width:767px) {
  /* ---- 返礼品リスト ---- */
  .main_itmlst li{
    flex-basis: calc(50% - 5px); 
    max-width: calc(50% - 5px); 
    margin-top: calc(63px + 20px); /* アイコン+余白 */
  }

  .main_itmlst li:first-child{
    flex-basis: 100%; 
    max-width: 100%;
  }

  .main_itmlst_name {
    display: none;
  }

  .main_itmlst_pr {
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
  }

  /* ---- 返礼品リスト > 人気の返礼品 ---- */
  #ppl {
    padding-top: 60px;
    padding-bottom: 60px;
  }  

  #ppl h2 {
    margin-bottom: 20px;
  }

  /* ---- 返礼品リスト > 新着返礼品 ---- */
  #new {
    padding-top: 40px;
    padding-bottom: 0;
  }  

  /* ---- ピックアップ ---- */  
  /* ピックアップ共通 */
  .pkup {
    padding-top: 60px;
    padding-bottom: 60px;  
  }

  .pkup_box {
    display: block;
  }

  /* ピックアップ > ボタン*/
  .pkup_main a{
    display: block;
    text-align: right;
    color: #6a3a0e;
  }

  /* ピックアップ > テキスト*/
  .pkup_main p{
    margin-top: 20px;
    padding: 0 5px;
    color: #6a3a0e;
    text-align: left;
  }

  #pkup01 .pkup_main p, #pkup03 .pkup_main p{
    background: none
  }

  #pkup02 .pkup_main p{
    background: none
  }

  /* ピックアップ(左) */
  .pkup_l .pkup_main {
    margin-right: 0px;
  }

  /* ピックアップ(右) */
  .pkup_r .pkup_item {
    margin-right: 0;
  }

  /* ピックアップ > メイン画像 */
  .pkup_main {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .pkup_main img{
    width: 100%;
  }

  /* ピックアップ > ボタン*/
  .pkup_main a{
    display: block;
    float: none;
    margin-top: 30px;
    width: 100%;
  }

  /* ピックアップ > ボタン(画像使用する場合)*/
  .pkup_main a.btn_forimg {
    display: inline-block;
    width: auto;
  }

  .pkup_main a.btn_forimg img {
    width: auto;
  }

  /* ピックアップ > 返礼品リスト */
  .pkup_item {
    width: 100%;
    max-width: 100%;
  }

  .pkup_itmlst li{
    flex-basis: calc(50% - 10px); 
    max-width: calc(50% - 10px);
    margin-bottom: 20px;
  }

  .pkup_itmlst img{
    margin-bottom: 10px;
  }

  /* ---- 自治体について ---- */
  #intr {
    height: auto;
    padding-top: 0;
    background: url(../img/main_intr_sp.jpg) top center no-repeat;
  }

  /* #intr {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 800px;

    padding-top: 60px;
    padding-bottom: 80px;
  } */

  #intr .img01 {
    display: none;
  }

  #intr .img02 {
    display: none;
  }

  #intr h2 {
    color: #6a3a0e;
    text-align: center;
  }

  .intr_txt {
    height: auto;
    margin-top: 100px;
    padding: 60px 40px;
  }

  /* ---- 寄附金使い道 ---- */
  #usage {
    padding-top: 60px;
    padding-bottom: 40px;
  }

  .usg_dic {
    text-align: center;
    margin-bottom: 24px; 
  }

  #usage li {
    flex-basis: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }

  #usage h3{
    font-size: 16px;
    margin-bottom: 10px;
  }

  #usage img {
    margin-bottom: 10px;
  }
  
  /* ---- キーワードリスト ---- */
  /* 2列に変更 */
  .main_wrdlst li:nth-child(5n) {
    margin-right: 20px; 
  }
 
  .main_wrdlst li {
    flex-basis: calc(50% - 10px);
    margin-bottom: 20px;
    margin-right: 20px; 
  }

  .main_wrdlst li:nth-child(2n) {
    margin-right: 0; 
  }  

  /* ---- キーワードリスト > 注目キーワード ---- */
  #key {
    padding-bottom: 40px;
  }

  /* ---- キーワードリスト > 寄附金額から探す ---- */
  #mny {
    padding-bottom: 40px;
  }

  /* ---- カテゴリから探す ---- */
  #cgry {
    padding-bottom: 40px;
  }  

  /* 3列に変更 */
  #cgry li:nth-child(5n){
    margin-right: 20px;
  }

  #cgry li{
    flex-basis: calc(33.33% - 13.33px);
    margin-right: 20px; 
    margin-bottom: 20px;
  }  

  #cgry li:nth-child(6n){
    margin-right: 0;
  }

  #cgry li:nth-child(3n){
    margin-right: 0;
  }  

  #cgry p{
    font-size: 13px;
  }
}
/* ----------------------------------------------------------------------
  footer
---------------------------------------------------------------------- */
.ftr_wrap {
  background-color: #046D38;
  color: #fff;
  padding: 60px 0 20px;
  font-size: 14px;
  line-height: 1.75;
}

/* タイトル */
.ftr_wrap h2 {
  margin-bottom: 50px;
  color: #fff; 
}

.ftr_wrap ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;   
}

.ftr_wrap li {
  /* 縦3列(33.333%) - 余白 */
  flex-basis: calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  padding-bottom: 40px;  
}

.ftr_wrap h3 {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 500;
  color: #E7C752;
  text-align: left;
}

.ftr_wrap a {
  color: #fff;
}

.ftr_wrap small {
  display: block;
  font-size: 12px;
  text-align: center;
  padding-top: 20px;
}

/* 文章内の見出し */
.ftr_wrap h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* 赤&太字テキスト */
.ftr_txt_rb {
  font-weight: 600;
  color: #e3504a;
}

/* 太字テキスト */
.ftr_txt_b {
  font-weight: 600;  
}

@media screen and (max-width:767px) {
  .ftr_wrap {
    font-size: 12px;
  }

  .ftr_wrap h2 {
    margin-bottom: 30px;
  }  

  .ftr_wrap h3 {
    margin-bottom: 10px;
    font-size: 18px;
    text-align: left;
  }  

  .ftr_wrap small {
    font-size: 10px;
    padding-top: 0;
  }  

  .ftr_wrap ul {
    display: block;
  }  

  .ftr_wrap li {
    flex-basis: 100%;
    max-width: 100%;
    padding-bottom: 20px;  
  }  
  
  .ftr_wrap h4 {
    margin-bottom: 6px;
  }  
}
/* ----------------------------------------------------------------------
  LeftNavi
---------------------------------------------------------------------- */
#left iframe {
  width: 220px;
  height: 2225px;
  margin-right: 10px;
}

.lft_wrap {
  width: 220px;
}

/* ---- 検索 ---- */
.lft_srch {
  display: flex;
  justify-content: flex-end;
}

.lft_srch form {
  display: block;
  float: right;
  background: #fff;
  width: 220px;
  padding: 8px 0 8px 10px;
  border: 2px solid #6a3a0e;
  border-radius: 4px;
  position: relative;
  margin-bottom: 40px;
}

.lft_srch form * {
  outline: none;
}

.lft_srch input[type="text"] {
  border: none;
  width: 172px;
  font-size:16px;
  background: none;
  padding: 0;
}

.lft_srch input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  text-indent: -9999px;
  width: 30px;
  height: 100%;
  background: no-clip;
  background: url(../img/header/header_search.png) left center no-repeat;
  border: none;
}

/* ---- xxxxから選ぶ ---- */
.lft_nav {
  margin-bottom: 40px;
}

.lft_nav h3{
  line-height: 70px;
  font-weight: 500;
  background-color: #038A3B;
  color: #fff;
}

.lft_nav li {
  font-size: 15px;
  font-weight: 400;
  /* border-bottom: 3px dotted #CCCCCC; */
  position: relative;
  background-image: linear-gradient(to right, #6a3a0e, #6a3a0e 2px, transparent 2px, transparent 8px);
  background-size: 8px 2px;
  background-position: left bottom;
  background-repeat: repeat-x;
}

.lft_nav a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 18px 0 18px 20px;
}

.lft_nav a:hover {
  color: #038A3B;
}

/* ---- xxxxから選ぶ(アイコンあり) ---- */
.lft_nav.lft_nav_icon a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 6px 0 6px 4px;
}

.lft_nav.lft_nav_icon img {
  width: 40px;
  height: 40px;
  margin-right: 4.5px;
}

/* ---- カテゴリから選ぶ ---- */

/* ---- 寄附金額から選ぶ ---- */

/* ---- ランキング ---- */


.lft_rnk h3{
  line-height: 70px;
  background-color: #038A3B;
  color: #fff;
}

.lft_rnk li{
  position: relative;
  margin-top: 52px;
}

/* アイコン1位 */
.lft_rnk li:first-child:before{
  position: absolute;
  content: url(../img/left/left_rnk_01.png);
  top: -42px;
  left: 50%;
  transform: translateX(-50%);
}

/* アイコン2位 */
.lft_rnk li:nth-child(2):before{
  position: absolute;
  content: url(../img/left/left_rnk_02.png);
  top: -42px;
  left: 50%;
  transform: translateX(-50%);
}

/* アイコン3位 */
.lft_rnk li:nth-child(3):before{
  position: absolute;
  content: url(../img/left/left_rnk_03.png);
  top: -42px;
  left: 50%;
  transform: translateX(-50%);
}

.lft_rnk img{
  width: 220px;
  height: 220px;
}

.lft_rnk p{
  margin-top: 20px;
  margin-bottom: 2px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}

.lft_rnk span{
  vertical-align: middle;
  margin-left: 4px;
}

@media screen and (max-width:767px) {
  #left {
    display: block;  
  }
}
