@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600&display=swap');
/* ----------------------------------------------------------------------
  common
---------------------------------------------------------------------- */
body, input {
  color: #333;
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 16px;
}

h2 {
  font-size: 32px;
  font-weight: 500;
  text-align: center;
}

h3 {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}

p {
  font-size: 16px;
  line-height: 1.5;
}

a {
  color: #333;
  text-decoration: none;
}

a:hover, a:active, a:focus {
  color: #777777;
}

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

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

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

#index {
  background: url('../img/bg_white.jpg'); 
}

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

@media screen and (max-width:767px) {
  p {
    font-size: 15px;
  }
}

/* ----------------------------------------------------------------------
  iframe
---------------------------------------------------------------------- */
iframe {
	width: 100%;
	vertical-align: bottom;
}

/* ---- ヘッダー ---- */
/* 画面いっぱい + #slide(height + margin) */
#hdr_iframe {
  height: calc(100vh + 360px); 
}

/* ---- スライダー ---- */
#slide iframe {
  height: 300px;
  margin: 30px 0; 
}

/* ---- レフトナビ ---- */
#left iframe {
  width: 220px;
  height: 2254px;
  margin-right: 30px;
}

/* ---- フッター > カルーセル ---- */
#carousel iframe {
  height: 300px;
}

@media screen and (max-width:767px) {
  /* ---- ヘッダー ---- */
  /* 580px + #slide(height + margin) */
  #hdr_iframe {
    height: calc(580px + 290px);
  }

  #left iframe {
    width: 100%;
    margin-right: 0;
  }

  /* ---- スライダー ---- */
  #slide iframe {
    height: calc(222px + 28px); /* 画像の高さ + ドット */
    margin: 20px 0; 
  }

  /* ---- フッター > カルーセル ---- */
  #carousel iframe {
    height: 137.9px;
  }  
}
/* ----------------------------------------------------------------------
  header
---------------------------------------------------------------------- */
/* ---- ヘッダー基準点 ---- */
/* #hdr_news #hdr_fullslideの基準 */
.hdr_wrap {
  position: relative; 
  height: calc(100vh - 360px); /* #header - #slide */
  width: 100%;
  overflow: hidden;
}

/* ---- 自治体ロゴ ---- */
.hdr_logo {
  position: absolute;
  width: 52px;
  top: 40px;
  left: 34px;
}

/* ---- メニュー ---- */
#hdr_nav {
  position: absolute;
  top: 40px;
  right: 34px;
}

#hdr_nav ul {
  display: flex;
}

#hdr_nav li {
  padding: 0 15px;
}

#hdr_nav li:last-child {
  padding: 0 0 0 15px;
}

#hdr_nav a {
  color: #fff;
  position: relative;
  font-size: 15px;
  font-weight: 400;
}

/* ---- お知らせ ---- */
#hdr_news {
  display: none;
  position: absolute;
  bottom: 0;
  left:0;
  width: 100%;
  background-color: rgba(255,255,255,0.7);
}

#hdr_news p {
  text-align: center;
  padding: 10px 30px;
  color: #333;
}

/* ---- ヘッダーコンテンツ ---- */
#hdr_free {
  display: none; /* 使用する場合はこの行を無効化 */
  position: absolute;
  bottom: 30px;
  left:50%;
  transform: translate(-50%);
  background-color: rgba(255,255,255,0.85);
}

#hdr_free p {
  padding: 30px;
}

/* ---- メインロゴ ---- */
#hdr_logo_main {
  position: absolute;
  width: 255px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#hdr_logo_main img{
  width: 100%;
}

/* ---- フローティングバナー ---- */
#hdr_float {
  position: absolute;
  bottom: 30px;
  right: -12px;
  width: 130px;
}

#hdr_float img {
  width: 130px;
}

/* ---- 背景スライダー ---- */
#hdr_fullslide {
  position: absolute;
  top: 0;
  z-index: -1;
  width: 100%;
  height: calc(100vh - 360px); /* #header - #slide */
}

#hdr_fullslide .slick-slide img {
  width: 100%;
  height: calc(100vh - 360px); /* #header - #slide */
  object-fit: cover;
}

#hdr_fullslide .slide-animation{
  animation: fadezoom 12s linear 0s;
}
@keyframes fadezoom {
0% {
  transform: scale(1);
}
100% {
  transform: scale(1.2);
}
}

@media screen and (max-width:1024px) {
  /* ---- ヘッダーコンテンツ ---- */
  #hdr_free {
    width: calc(100% - 20px);
  }  
}

@media screen and (max-width:767px) {
  /* ---- ヘッダー基準点 ---- */
  /* #hdr_news #hdr_fullslideの基準 */  
  .hdr_wrap {
    height: 580px;
  }

  /* メニュー表示をspmenu.htmlに切り替え */
  .hdr_logo {
    display: none;
  }

  #hdr_nav {
    display: none;
  }  

  /* ---- ヘッダーコンテンツ ---- */
  #hdr_free {
    width: calc(100% - 20px);
    bottom: 10px;
  }    

  /* ---- メインロゴ ---- */
  #hdr_logo_main {
    position: absolute;
    width: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }  

  /* ---- 背景スライダー ---- */  
  #hdr_fullslide .slick-slide img {
    height: 580px;
  }
}
/* ----------------------------------------------------------------------
  spmenu
---------------------------------------------------------------------- */
#spm_iframe {
  display: none;
}

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

  .spm_nav {
    width: 100%;
    height: 80px;
    position: relative;
  }

  /* ---- ロゴ ---- */  
  .spm_logo {
    position: absolute;
    width: 40px;
    top: 20px;
    left: 20px;
    z-index: 999;
  }

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

  /* ---- メニュー ---- */  
  .spm_menu {
    display: block;
    position: fixed;
    right: -100%;
    top: 0;
    background-color: white;
    width: 100%;
    height: 100vh;
    z-index: 99;
  }  

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

  .spm_menu ul{
    display: block;
    margin-top: 80px;
  }

  .spm_menu li {
    font-size: 15px;
    font-weight: 500;
    border: none;
    border-bottom: 1px solid #707070;
    position: relative;
    margin: 0 10px;
  }

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

  /* ---- メニュー > ボタン ---- */
  /* メニューボタンの背景 */
  .spm_btn_menu {
    height: 38px;
    width: 38px;
    position: absolute;
    top: 20px;
    right: 20px;
    overflow: hidden;
    cursor: pointer;
    z-index: 999; 
  }

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

  .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;
  }

  /* (open&スクロール時)色変更 */
  .spm_nav.colorchange .spm_btn_menu span{
    background-color: #333;
  }

  /* (open時)ボタンの形状 */  
  .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%;
  }
}  
/* ----------------------------------------------------------------------
  slide
---------------------------------------------------------------------- */
.slide .slick-slide {
  margin: 0 10px;
}

.slide .slick-slide img {
  width: 480px;
  height: auto;
}

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

.slide .slick-next {
  right: 20%;  
}

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

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

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

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

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

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

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

  .slide .slick-next {
    right: 0;  
  }

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

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

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

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

  .slide .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;
  }

  .slide .slick-dots li:hover button:before {
    background-color: #333;
    opacity: 1;
  }
  
  .slide .slick-dots li.slick-active button:before {
    background-color: #333;
    opacity: 1;
  }  
}
/* ----------------------------------------------------------------------
  popular item
---------------------------------------------------------------------- */
#ppl {
  padding:80px 0 80px;
  background-image: url('../img/bg_pink_deco.png'), url('../img/bg_pink.jpg');
  background-position: left 50% top, left top;
  background-repeat: no-repeat, repeat;
  position: relative;
  overflow: hidden;
}

/* ---- 人気の返礼品 ---- */
#ppl h2 {
  margin-bottom: 20px;
}

#ppl h2 img{
  max-width: 100%;
  width: 242px;
  height: auto;
}

/* ---- 返礼品リスト(full screen) ---- */
.main_full_itmlst {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;  
}

.main_full_itmlst_sup {
  background-color: #9F1D1D;
  color: #fff;
  width: 100px;
  margin: 0 auto 10px;
  padding: 4px 0;
  text-align: center;
}

.main_full_itmlst li{
  /* 縦5列 */
  flex-basis: calc(20% - 16px);
  max-width: calc(20% - 16px);  
}

.main_full_itmlst img {
  margin-bottom: 10px;
  width: 100%;
}

.main_full_itmlst_name {
  padding-bottom:10px;
  border-bottom: 3px solid #9F1D1D;
}

.main_full_itmlst_name p{
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.main_full_itmlst_pr {
  margin-top: 10px;
  text-align: center;
}

/* 人気の返礼品 */
.main_full_itmlst img.main_ppl_num {
  width: 60px;
  height: auto;
  display: flex;
  margin: 0 auto 10px;
}

@media screen and (max-width:767px) {
  /* ---- 人気の返礼品 ---- */
  #ppl {
    padding:60px 0 40px;
    background-image: url('../img/bg_pink_deco_sp.png'), url('../img/bg_pink.jpg');
  }

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

  #ppl h2 img{
    width: 169.4px;
    height: auto;
  }  

  /* ---- 返礼品リスト(full screen) ---- */
  .main_full_itmlst_sup {
    width: 80px;
  }

  .main_full_itmlst li{
    /* 縦2列 */
    flex-basis: calc(50% - 5px); 
    max-width: calc(50% - 5px);
  }

  .main_full_itmlst li:last-child{
    flex-basis: 100%; 
    margin: 0 auto;
  }

  .main_full_itmlst_pr {
    margin-bottom: 20px;
  }

  .main_full_itmlst img.main_ppl_num {
    width: 50px;
  }  
}
/* ----------------------------------------------------------------------
  contents
---------------------------------------------------------------------- */
#contents {
  display: flex;
  justify-content: space-between;   
  flex-direction: row-reverse;
  margin-top: 80px;
  margin-bottom: 80px;
}

#contents > * {
  min-width: 0;  
}

@media screen and (max-width:767px) {
  #contents {
    display: block;
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
/* ----------------------------------------------------------------------
  main
---------------------------------------------------------------------- */
#main {
  width: 100%;
  flex: 1;
}

/* ---- タイトル ---- */
#main h2 {
  margin-bottom: 30px;
}

#main h2 picture img {
  max-width: 100%;  
  width: auto;
}

/* ---- 自治体について ---- */
#intr {
  margin-bottom: 50px;
  padding: 0 10px;
}

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

#intr h2 {
  text-align: left;
  margin-bottom: 0;
}

#intr h2 img{
  max-width: 100%;
  width: 353.84px;
  height: auto;
}

#intr p {
  line-height: 1.6;
  margin-bottom: 20px;
}

#intr a {
  margin-top: 10px;
  display: block;
  color: #fff;
  background-color: #9F1D1D;
  border-radius: 3px;
  padding: 12px 30px;
  font-size: 16px;
  text-align: center;
}


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

.main_itmlst li{
  /* 縦3列(33.333%) - 余白 */
  flex-basis: calc(33.333% - 6.66px);
  max-width: calc(33.333% - 6.66px);
  text-align: center;
  background: url(../img/bg_pink.jpg);
  border: 1px solid #F98972;
  filter: drop-shadow(4px 4px 3px #d0d0d0);
  border-radius: 4px;
}

.main_itmlst img {
  padding: 7px;
  margin-bottom: 2px;
  width: 100%;
}

.main_itmlst_name {
  padding: 0 7px 9px;
  /* border-bottom: 3px solid #9F1D1D; */
}

.main_itmlst_name p{
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.main_itmlst_pr {
  display: inline-block;
  padding: 2px 10px 0;
  border-radius: 3px;
  text-align: center;
  color: #fff;
  background-color: #9F1D1D;
  margin: 0 7px 9px;
}

/* ---- 返礼品リスト > おすすめ返礼品 ---- */
#rcmd {
  margin-bottom: 50px;
}

#rcmd h2 img{
  max-width: 100%;
  width: 323.96px;
  height: auto;
}

/* ---- 返礼品リスト > 寄附額1万円まで ---- */
#rmnd01 {
  margin-bottom: 50px;
}

#rmnd01 h2 img{
  max-width: 100%;
  width: 479.96px;
  height: auto;
}

/* ---- 返礼品リスト > 寄附額1万円～ ---- */
#rmnd02 {
  margin-bottom: 50px; 
}

#rmnd02 h2 img{
  max-width: 100%;
  width: 479.96px;
  height: auto;
}

/* ---- バナー(大) ---- */
#bnrl {
  margin-bottom: 20px;  
}

#bnrl img{
  width: 100%; 
}

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

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

#bnrs img{
  width: 100%; 
}

/* ---- 寄附金使い道 ---- */
#usage {
  width: 100%; 
}

#usage h2 img{
  max-width: 100%;
  width: 293.96px;
  height: auto;
}

#usage p{
  text-align: center; 
  padding: 0 40px;
  margin-bottom: 20px;
  line-height: 1.6;
}

#usage img{
  width: 100%;
}

#usage picture img{
  width: 100%;
}

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

#usage ul li {
  flex-basis: calc(33.333% - 5.33px);
  max-width: calc(33.333% - 5.33px);
  background-color: #fff;
  padding: 0 4px 0px;
  margin-bottom: 15px;
} 

#usage ul h3 {
  margin: 13px auto;
  color: #9F1D1D;
  line-height: 1.4;
}

#usage ul p {
  padding: 0 8px;
  margin-bottom: 18px;
  font-size: 15px;
  text-align: left;
}

.main_usage_wrap {
  background: url('../img/bg_pink.jpg') ; 
  padding: 16px 8px 1px;
}

@media screen and (max-width:767px) {
  #main {
    margin-bottom: 40px;
  }

  /* ---- 自治体について ---- */
  #intr {
    padding: 0;
  }

  #intr h2 img{
    width: 247.688px;
  }

  .main_intr_top {
    margin-bottom: 20px;
    display: block;
  }  

  .main_intr_top h2 {
    text-align: left;
  }

  .main_intr_top div:last-child {
    margin-left: 0;
  } 

  #intr a {
    margin-top: 20px;
  }

  /* ---- 返礼品リスト ---- */
  .main_itmlst li{
    /* 縦2列 */
    flex-basis: calc(50% - 5px); 
    max-width: calc(50% - 5px);
    margin-bottom: 10px;
  }

  /* ---- 返礼品リスト > おすすめ返礼品 ---- */
  #rcmd {
    margin-bottom: 40px;  
  }

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

  #rcmd h2 img{
    width: 226.772px;
  }
  
  /* ---- 返礼品リスト > 寄附額1万円まで ---- */
  #rmnd01 {
    margin-bottom: 40px;  
  }

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

  #rmnd01 h2 img{
    width: 335.972px;
  }  

  /* ---- 返礼品リスト > 寄附額1万円～ ---- */
  #rmnd02 {
    margin-bottom: 40px; 
  }

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

  #rmnd02 h2 img{
    width: 335.972px;
  }

  /* ---- 寄附金の使い道 ---- */  
  #usage h2{
    margin-bottom: 20px;  
  }

  #usage h2 img{
    width: 205.1px;
  }

  #usage p{
    text-align: center; 
    padding: 0;
    margin-bottom: 20px;
  }
  
  #usage ul {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;   
  }
  
  #usage ul li {
    flex-basis: calc(50% - 4px);
    max-width: calc(50% - 4px);
    padding: 0 4px 0px;
    margin-bottom: 10px;
  } 
  
  #usage ul h3 {
    font-size: 17px;
    margin: 10px auto;
  }
  
  #usage ul p {
    padding: 0;
    margin-bottom: 15px;
    font-size: 14px;
  }
  
  .main_usage_wrap {
    background: url('../img/bg_pink.jpg') ; 
    padding: 16px 8px 6px;
  }  
}

@media screen and (max-width:599px) {
  /* ---- バナー(大) ---- */
  #bnrl {
    margin-bottom: 15px;  
  }  

  /* ---- バナー(小) ---- */
  #bnrs {
    display: block;
    margin-bottom: 25px; 
  }

  #bnrs img{
    margin-bottom: 15px; 
  }
}
/* ----------------------------------------------------------------------
  left
---------------------------------------------------------------------- */
.lft_wrap {
  width: 100%;
  background-image:url(../img/bg_pink.jpg);
  padding: 6px;
}

/* ---- バナー(レフトナビ) ---- */
.lft_bnr {
  display: block;
  margin: 0 auto 40px;
  width: 220px;
}

/* ---- レフトナビコンテンツ > タイトル ---- */
.lft_wrap h3.lft_ttl_txt {
  width: 100%;
  padding: 22px 0 27px;
  color: #fff;
  background-color: #9F1D1D;
  position: relative;
}

.lft_ttl_txt:after {
  content: '';
  position: absolute;
  background-color: #D9A5A5;
  width: 100%;
  height: 2px;
  bottom: 6px;
  left: 0;
}

.lft_ttl_txt:before {
  content: url(../img/left/left_ttl_icon.svg);
  position: absolute;
  top: 13px;
  right: 10px;
  opacity: .15;
}


.lft_wrap h3 img {
  width: auto;
  margin-bottom: 18px;
}

/* ---- 検索 ---- */
.lft_srch {
  margin-bottom: 40px;
}

.lft_srch h3{
  margin-bottom: 20px;
}

.lft_srch form {
  background: #fff;
  width: 100%;
  height: 44px;
  border: solid 1px #333;
  position: relative;
}

.lft_srch form * {
  outline: none;
}

.lft_srch input[type="text"] {
  border: none;
  width: calc(100% - 44px);
  height: 42px;
  background: none;
  padding: 0 0 0 12px;
}

.lft_srch input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  text-indent: -9999px;
  width: 44px;
  height: 44px;
  background: no-clip;
  background: url(../img/left/left_srch.svg) center center no-repeat;
  background-size: 20px 20px;
  border: none;
}

/* ---- xxxxから選ぶ ---- */
.lft_nav {
  margin-bottom: 40px;
  /* background: url(../img/bg_white.jpg); */
  background-color: #fff;
}

.lft_nav li {
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px dotted #D9A5A5;
  /* border-left: 1px solid #9F1D1D;
  border-right: 1px solid #9F1D1D; */
  position: relative;  
}

.lft_nav li:last-child {
  border-bottom: none; 
  /* border-bottom: 1px solid #9F1D1D;   */
}

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

.lft_nav a:hover {
  color: #9F1D1D;
}

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

.lft_nav.lft_nav_icon li img {
  width: 35px;
  height: 35px;
  margin-right: 10px;
}

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

/* ---- 寄附金額から選ぶ ---- */
/* ----------------------------------------------------------------------
  footer
---------------------------------------------------------------------- */
.ftr_wrap {
  background: url('../img/bg_pink.jpg') ; 
  padding: 55px 0 0;
  font-size: 14px;
  line-height: 1.5;
}

/* タイトル */
.ftr_wrap h2 {
  margin-bottom: 40px;
}

.ftr_wrap h2 img{
  max-width: 100%;
  width: 382.96px;
  height: auto;
}

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

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

.ftr_wrap h3 {
  width: auto;
  margin-bottom: 20px;
  color: #9F1D1D;
}

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

.ftr_wrap p {
  font-size: 14px;
}

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

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

.ftr_wrap small {
  display: block;
  padding: 30px 0;
  background-color: #9F1D1D;
  color: #fff;
  text-align: center;
}

@media screen and (max-width:1024px) {
  /* コンテンツ */
  .ftr_wrap .inner {
    width: 100%;
  }
}

@media screen and (max-width:767px) {
  /* タイトル */
  .ftr_wrap h2 {
    margin-bottom: 20px;
  }

  .ftr_wrap h3 {
    margin-bottom: 15px;
  }  

  .ftr_wrap h2 img{
    max-width: 100%;
    width: 268.072px;
    height: auto;
  }

  /* コンテンツ */
  .ftr_wrap ul {
    display: block;
  }

  .ftr_wrap li {
    max-width: 100%;
    margin-bottom: 30px;
  }  

  .ftr_wrap small {
    padding: 20px 0;
    font-size: 12px;
  }
}
/* ----------------------------------------------------------------------
  footer > carousel
---------------------------------------------------------------------- */
.carousel .slick-slide {
  width: 485px;
  margin: 0;
}
.carousel img {
  width: 100%;
}

@media screen and (max-width:767px) {
  .carousel .slick-slide {
    width: 223px;
  }
}
