@charset "UTF-8";
/*!
Theme Name: fukuoka-navi 固定ページ 市町村別観光マップ 白地図用css
Author:　yuki mitsuno
Version:　1.4.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/
/*!
* ress.css • v1.2.2
* MIT License
* github.com/filipelinhares/ress
*
*
*/
/*--ふくおかナビのページで使用されているメディアクエリのまとめです。scssで利用してください。cssでは使えません！！
ふくナビでは主にこの３つ
PC :tablet_over
tab:tablet_under
sp :sp_under
-------------------ここから↓↓-------------------
@mixin pc_screen_under {
  @media screen and (max-width: 1230px){
    @content;
  }
}
@mixin pc_middle_under {
  @media screen and (max-width: 1023px){
    @content;
  }
}
@mixin pc_to_tablet {
  @media screen and (min-width: 769px) and (max-width: 1023px){
    @content;
  }
}
@mixin tablet_over {
  @media screen and (min-width: 769px){
    @content;
  }
}
@mixin tablet_under {
  @media screen and (max-width: 769px){
    @content;
  }
}
@mixin tablet_to_sp {
  @media screen and (min-width: 464px) and (max-width: 767px) {
    @content;
  }
}
@mixin sp_under {
  @media screen and (max-width: 464px){
    @content;
  }
}
-------------------ここまで↑↑-------------------

呼び出し方（tablet_underのメディアクエリを呼び出す場合）

@include tablet_under(){
この中にcssかいてください
}
-----------------------------------------------------*/
body {
  font-family: "Noto Sans JP", sans-serif;
}

html {
  /*ヘッダーを固定時のページ内リンクズレ防止*/
  scroll-padding-top: 120px;
  font-family: "Noto Sans JP", sans-serif;
}

.ajimu-lp {
  background-color: #ffffff;
}
.ajimu-lp .ajimu-header {
  background: #fff;
  padding: 15px 20px;
  margin-bottom: 30px;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: 0.3s;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.0509803922);
}
.ajimu-lp .ajimu-header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ajimu-lp .ajimu-header.is-scrolled {
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.ajimu-lp .ajimu-header .header-logo img {
  width: 90px;
  display: block;
}
.ajimu-lp .ajimu-header .header-right_box {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.ajimu-lp .ajimu-header .header-right_box .header-right_bnr {
  display: block;
  width: 17%;
  margin-right: 40px;
  padding: 10px;
  opacity: 1;
  transition: all 0.45s;
}
.ajimu-lp .ajimu-header .header-right_box .header-right_bnr:hover {
  opacity: 0.7;
  transition: all 0.45s;
}
.ajimu-lp .ajimu-header .header-right {
  text-align: right;
}
.ajimu-lp .ajimu-header {
  /* ======================
  上段ナビ
  ====================== */
}
.ajimu-lp .ajimu-header .header-nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ajimu-lp .ajimu-header .header-nav li {
  list-style: none;
}
.ajimu-lp .ajimu-header .header-nav a {
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}
.ajimu-lp .ajimu-header .header-nav a:hover {
  opacity: 0.6;
}
.ajimu-lp .ajimu-header .header-nav--main ul {
  gap: 25px;
}
.ajimu-lp .ajimu-header .header-nav--main a {
  font-size: 13px;
}
.ajimu-lp .ajimu-header .header-nav--main .instagram a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}
.ajimu-lp .ajimu-header .header-nav--main .instagram a::before {
  content: "";
  width: 16px;
  height: 16px;
  background: url("/wp-content/themes/fukuoka-navi2017/images/ajimu/icon-instagram.png") no-repeat center;
  background-size: contain;
}
.ajimu-lp .ajimu-header .header-nav {
  /* ======================
  下段ナビ
  ====================== */
}
.ajimu-lp .ajimu-header .header-nav--sub {
  margin-top: 8px;
}
.ajimu-lp .ajimu-header .header-nav--sub ul {
  gap: 20px;
}
.ajimu-lp .ajimu-header .header-nav--sub a {
  font-size: 12px;
  color: #000000;
  position: relative;
  padding-left: 18px;
}
.ajimu-lp .ajimu-header .header-nav--sub a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: url("/wp-content/themes/fukuoka-navi2017/images/ajimu/icon-book.png") no-repeat center;
  background-size: contain;
}
.ajimu-lp {
  /* ハンバーガー */
}
.ajimu-lp .hamburger {
  display: none;
  width: 30px;
  height: 22px;
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 1100;
}
.ajimu-lp .hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #333;
  transition: 0.3s;
}
.ajimu-lp .hamburger span:nth-child(1) {
  top: 0;
}
.ajimu-lp .hamburger span:nth-child(2) {
  top: 10px;
}
.ajimu-lp .hamburger span:nth-child(3) {
  bottom: 0;
}
.ajimu-lp {
  /* 開いたとき（×になる） */
}
.ajimu-lp .hamburger.is-open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.ajimu-lp .hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.ajimu-lp .hamburger.is-open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}
.ajimu-lp .fv .fv-slider {
  position: relative;
}
.ajimu-lp .fv .fv-slider:before {
  content: "";
  position: absolute;
  display: block;
  width: 214px;
  aspect-ratio: 214/135;
  left: 53.9%;
  top: -23px;
  background: url(../images/ajimu/ajimu-no-kame-san.png) center center/contain no-repeat;
  z-index: 2;
}
.ajimu-lp .fv .fv-slider .slick-slide {
  width: 30vw;
  aspect-ratio: initial;
  margin-right: 1.4vw;
  box-shadow: initial;
  opacity: initial;
  will-change: transform;
  backface-visibility: hidden;
}
.ajimu-lp .fv .fv-slider .slick-slide a {
  display: block;
  border-radius: 10px 10px 0 10px;
  overflow: hidden;
  position: relative;
}
.ajimu-lp .fv .fv-slider .slick-slide a .cate-name {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: white;
  padding: 0.4em 2.7em;
  border-radius: 10px 0 0 0;
  max-width: 90%;
  width: -moz-max-content;
  width: max-content;
  font-weight: bold;
}
.ajimu-lp .fv .fv-slider .slick-slide a .cate-name:before, .ajimu-lp .fv .fv-slider .slick-slide a .cate-name:after {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  transform: translateY(-50%);
}
.ajimu-lp .fv .fv-slider .slick-slide a .cate-name:before {
  left: 2px;
  width: 30px;
  aspect-ratio: 1/1;
}
.ajimu-lp .fv .fv-slider .slick-slide a .cate-name:after {
  right: 11px;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 0;
}
.ajimu-lp .fv .fv-slider .slick-slide a .cate-name--gourmet:before {
  background: url(../images/ajimu/gourmet.png) center center/contain no-repeat;
}
.ajimu-lp .fv .fv-slider .slick-slide a .cate-name--gourmet:after {
  border-left: 9px solid #ff7a00;
}
.ajimu-lp .fv .fv-slider .slick-slide a .cate-name--tourism:before {
  background: url(../images/ajimu/tourism.png) center center/contain no-repeat;
}
.ajimu-lp .fv .fv-slider .slick-slide a .cate-name--tourism:after {
  border-left: 9px solid #cc66ff;
}
.ajimu-lp .fv .fv-slider .slick-slide a .cate-name--gift:before {
  background: url(../images/ajimu/gift.png) center center/contain no-repeat;
}
.ajimu-lp .fv .fv-slider .slick-slide a .cate-name--gift:after {
  border-left: 9px solid #00c853;
}
.ajimu-lp .fv .fv-slider .slick-slide a .cate-name--recipe:before {
  background: url(../images/ajimu/recipe.png) center center/contain no-repeat;
}
.ajimu-lp .fv .fv-slider .slick-slide a .cate-name--recipe:after {
  border-left: 9px solid #ffd600;
}
.ajimu-lp .fv .fv-slider .slick-slide a .cate-name--stone:before {
  background: url(../images/ajimu/stone.png) center center/contain no-repeat;
}
.ajimu-lp .fv .fv-slider .slick-slide a .cate-name--stone:after {
  border-left: 9px solid #00bcd4;
}
.ajimu-lp .fv .fv-slider .slick-slide a .cate-name--people:before {
  background: url(../images/ajimu/people.png) center center/contain no-repeat;
}
.ajimu-lp .fv .fv-slider .slick-slide a .cate-name--people:after {
  border-left: 9px solid #ff5252;
}
.ajimu-lp .fv .fv-slider .slick-slide a .cate-name--hows:before {
  background: url(../images/ajimu/gourmet.png) center center/contain no-repeat;
}
.ajimu-lp .fv .fv-slider .slick-slide a .cate-name--hows:after {
  border-left: 9px solid #ff7a00;
}
.ajimu-lp .fv .fv-slider .slick-slide div:first-child {
  margin-bottom: 10px;
}
.ajimu-lp .fv .fv-slider .slick-track .slick-slide:nth-child(2n) {
  margin-top: 50px;
}
.ajimu-lp {
  /* クロスフェード */
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.ajimu-lp {
  /* ======================
  共通
  ====================== */
}
.ajimu-lp img {
  max-width: 100%;
  height: auto;
  display: block;
}
.ajimu-lp a {
  text-decoration: none;
  color: inherit;
}
.ajimu-lp .lp-section {
  padding: 50px 0;
}
.ajimu-lp .lp-section-wrap {
  margin: 0 clamp(10px, (100vw - 1025px) / 895 * 20 + 10px, 30px);
  padding: 0 clamp(10px, (100vw - 1025px) / 895 * 20 + 10px, 30px);
}
.ajimu-lp .lp-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.ajimu-lp h2 {
  font-size: 28px;
  margin-bottom: 30px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000;
}
.ajimu-lp h2 .sub-title {
  display: block;
  font-size: 14px;
  color: #000000;
  margin-top: 5px;
}
.ajimu-lp .slick-arrow-item {
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 1;
  width: 3.0208333333vw;
  height: 3.0208333333vw;
}
.ajimu-lp .slick-arrow-item .slick-arrow {
  position: relative;
  right: 0 !important;
  left: 0 !important;
  width: 100%;
  height: 100%;
  background: #2e8b7d;
  border-radius: 50vh;
}
.ajimu-lp .slick-arrow-item .slick-arrow::before {
  position: absolute;
  top: 0 !important;
  right: -5px !important;
  bottom: 0 !important;
  left: 0 !important;
  content: "";
  width: 25%;
  height: 25%;
  margin: auto;
  background: transparent;
  border-top: 3px solid #FFF;
  border-right: 3px solid #FFF;
}
.ajimu-lp .slick-arrow-item .slick-arrow::after {
  display: none;
}
.ajimu-lp .slick-arrow-item.slick-prev {
  left: -3rem;
}
.ajimu-lp .slick-arrow-item.slick-prev .slick-arrow::before {
  right: -5px !important;
  left: 0 !important;
  transform: rotate(225deg);
}
.ajimu-lp .slick-arrow-item.slick-next {
  right: -3rem;
}
.ajimu-lp .slick-arrow-item.slick-next .slick-arrow::before {
  right: 0 !important;
  left: -5px !important;
  transform: rotate(45deg);
}
.ajimu-lp {
  /* ======================
  TOPMV下リード
  ====================== */
}
.ajimu-lp .ajimu-lead {
  padding: 150px 0 50px;
  background: url(../images/ajimu/lead-bg-left.png) left bottom/contain no-repeat, url(../images/ajimu/lead-bg-right.png) right bottom/contain no-repeat;
}
.ajimu-lp .ajimu-lead img {
  max-width: 1011px;
  width: 80%;
  margin: auto;
}
.ajimu-lp {
  /* ======================
  投稿一覧
  ====================== */
}
.ajimu-lp .posts_top_recommended .posts_recommended {
  width: 100% !important;
}
.ajimu-lp .posts_top_recommended .posts_recommended .post_card__ajimu {
  position: relative;
  flex: none;
  width: 25.8333333333vw;
  margin: 0 !important;
  opacity: 1 !important;
  box-shadow: none;
  aspect-ratio: initial;
}
.ajimu-lp .posts_top_recommended .posts_recommended .post_card__ajimu-new {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 9px;
  line-height: 1;
  font-size: 1.4em;
  color: #ffffff;
  background: rgba(255, 85, 85, 0.6117647059);
  border-radius: 5px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .ajimu-lp .posts_top_recommended .posts_recommended .post_card__ajimu-new {
    font-size: 0.9em;
  }
}
.ajimu-lp .posts_top_recommended .posts_recommended .post_card__ajimu a {
  display: flex;
  flex-direction: column !important;
  height: 100%;
  color: #000;
  text-decoration: none;
  overflow: hidden;
}
.ajimu-lp .posts_top_recommended .posts_recommended .post_card__ajimu a img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/2;
  transition: all 0.3s ease;
}
.ajimu-lp .posts_top_recommended .posts_recommended .post_card__ajimu a .post_card__ajimu-descreption {
  margin-top: 0.3645833333vw;
}
.ajimu-lp .posts_top_recommended .posts_recommended .post_card__ajimu a .post_card__ajimu-descreption h3 {
  font-size: 1.7rem;
  font-weight: 500;
}
@media screen and (max-width: 1023px) {
  .ajimu-lp .posts_top_recommended .posts_recommended {
    width: 100% !important;
    padding-bottom: 1.5rem;
    overflow-x: scroll;
  }
  .ajimu-lp .posts_top_recommended .posts_recommended::-webkit-scrollbar {
    width: 2px;
    height: 2px;
  }
  .ajimu-lp .posts_top_recommended .posts_recommended::-webkit-scrollbar-thumb {
    background: #333;
  }
  .ajimu-lp .posts_top_recommended .posts_recommended::-webkit-scrollbar-track {
    background: #fff;
  }
  .ajimu-lp .posts_top_recommended .posts_recommended .post_card__ajimu-wrap {
    display: flex !important;
    gap: clamp(10px, (100vw - 325px) / 699 * 10 + 10px, 20px);
  }
  .ajimu-lp .posts_top_recommended .posts_recommended .post_card__ajimu {
    flex: none;
    width: 125px;
    margin: 0 !important;
    opacity: 1 !important;
    box-shadow: none;
  }
  .ajimu-lp .posts_top_recommended .posts_recommended .post_card__ajimu a {
    display: flex;
    flex-direction: column !important;
    height: 100%;
    color: #000;
    text-decoration: none;
    overflow: hidden;
  }
  .ajimu-lp .posts_top_recommended .posts_recommended .post_card__ajimu a img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 3/2;
  }
  .ajimu-lp .posts_top_recommended .posts_recommended .post_card__ajimu a .post_card__ajimu-descreption {
    margin-top: 0.68359375vw;
  }
  .ajimu-lp .posts_top_recommended .posts_recommended .post_card__ajimu a .post_card__ajimu-descreption h3 {
    font-size: 1.2rem;
    font-weight: 500;
  }
}
.ajimu-lp {
  /* ======================
  投稿カード
  ====================== */
}
.ajimu-lp .post-card figure {
  overflow: hidden;
}
.ajimu-lp .post-card figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ajimu-lp .post-list--row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.ajimu-lp .post-list--row .post-card {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  flex-direction: column;
}
.ajimu-lp .post-list--row .post-card figure {
  width: 100%;
  aspect-ratio: 4/3;
  flex-shrink: 0;
  border-radius: 5px;
}
.ajimu-lp .post-list--row .post-card .post-title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
}
.ajimu-lp .post-list--row .post-card .post-date {
  font-size: 12px;
  color: #999;
}
.ajimu-lp {
  /* ======================
  おすすめ記事
  ====================== */
}
.ajimu-lp .index_feature h2 {
  margin-bottom: 1.3020833333vw;
}
.ajimu-lp .index_feature .post_feature {
  display: flex;
  gap: clamp(15px, (100vw - 1025px) / 895 * 10 + 15px, 25px);
}
.ajimu-lp .index_feature .post_feature.second {
  margin-top: 4.5rem;
}
.ajimu-lp .index_feature .post_feature .image {
  flex-shrink: 0;
  width: min(100%, 360px);
}
.ajimu-lp .index_feature .post_feature .image img {
  width: 100%;
  height: -moz-max-content;
  height: max-content;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}
.ajimu-lp .index_feature .post_feature .pick-up-card-wrap {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: clamp(10px, (100vw - 1025px) / 895 * 10 + 10px, 20px);
  width: 100%;
}
.ajimu-lp .index_feature .post_feature .pick-up-card-wrap .pick-up-card {
  display: flex;
  flex-wrap: wrap;
  width: calc((100% - clamp(10px, (100vw - 1025px) / 895 * 10 + 10px, 20px)) / 2);
}
.ajimu-lp .index_feature .post_feature .pick-up-card-wrap .pick-up-card a {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5208333333vw;
}
.ajimu-lp .index_feature .post_feature .pick-up-card-wrap .pick-up-card a img {
  width: min(100%, 135px);
  height: -moz-max-content;
  height: max-content;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/2;
}
.ajimu-lp .index_feature .post_feature .pick-up-card-wrap .pick-up-card a .pick-up-card-descreption {
  width: calc(100% - min(100%, 135px) - 0.5208333333vw);
}
.ajimu-lp .index_feature .post_feature .pick-up-card-wrap .pick-up-card a .pick-up-card-descreption h3 {
  font-size: 1.3rem;
  font-weight: 500;
}
.ajimu-lp .index_feature .post_feature .pick-up-card-wrap .pick-up-card a .pick-up-card-descreption time {
  color: #8D8D8D;
  font-size: 1.2rem;
}
@media screen and (max-width: 769px) {
  .ajimu-lp .index_feature h2 {
    margin-bottom: 2.44140625vw;
    font-size: clamp(18px, (100vw - 325px) / 699 * 18 + 18px, 36px);
    text-align: left;
  }
  .ajimu-lp .index_feature .post_feature {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(15px, (100vw - 325px) / 699 * 10 + 15px, 25px);
  }
  .ajimu-lp .index_feature .post_feature.second {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(112, 112, 112, 0.4);
  }
  .ajimu-lp .index_feature .post_feature .image {
    flex-shrink: 0;
    width: 100%;
  }
  .ajimu-lp .index_feature .post_feature .image img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 16/9;
  }
  .ajimu-lp .index_feature .post_feature .pick-up-card-wrap {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: clamp(10px, (100vw - 325px) / 699 * 10 + 10px, 20px);
    width: 100%;
    padding-bottom: var(--container-padding);
  }
  .ajimu-lp .index_feature .post_feature .pick-up-card-wrap .pick-up-card {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  .ajimu-lp .index_feature .post_feature .pick-up-card-wrap .pick-up-card a {
    display: flex;
    gap: 0.9765625vw;
  }
  .ajimu-lp .index_feature .post_feature .pick-up-card-wrap .pick-up-card a img {
    width: min(100%, 100px);
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 3/2;
  }
  .ajimu-lp .index_feature .post_feature .pick-up-card-wrap .pick-up-card a .pick-up-card-descreption {
    width: calc(100% - min(100%, 100px) - 0.9765625vw);
  }
  .ajimu-lp .index_feature .post_feature .pick-up-card-wrap .pick-up-card a .pick-up-card-descreption h3 {
    font-size: 1.2rem;
    font-weight: 500;
  }
  .ajimu-lp .index_feature .post_feature .pick-up-card-wrap .pick-up-card a .pick-up-card-descreption time {
    color: #8D8D8D;
    font-size: 1.2rem;
  }
}
.ajimu-lp #article,
.ajimu-lp #movie {
  background: #f5f5f5;
}
.ajimu-lp .post-list--grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.ajimu-lp .post-list--grid .post-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  padding-bottom: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}
.ajimu-lp .post-list--grid .post-card figure img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.ajimu-lp .post-list--grid .post-card .date {
  font-size: 11px;
  color: #888;
  padding: 5px 10px 0;
}
.ajimu-lp .post-list--grid .post-card .title {
  font-size: 13px;
  padding: 0 10px;
}
.ajimu-lp {
  /* メインカード */
}
.ajimu-lp .main-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
}
.ajimu-lp .main-card img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.ajimu-lp .main-card .card-content {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: #fff;
  border-radius: 12px;
  padding: 10px;
}
.ajimu-lp .main-card .card-content .date {
  font-size: 11px;
  color: #888;
}
.ajimu-lp .main-card .card-content .title {
  font-size: 14px;
  font-weight: bold;
}
.ajimu-lp {
  /* サブカード */
}
.ajimu-lp .sub-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.ajimu-lp .sub-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  padding-bottom: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}
.ajimu-lp .sub-card img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.ajimu-lp .sub-card .date {
  font-size: 11px;
  color: #888;
  padding: 5px 10px 0;
}
.ajimu-lp .sub-card .title {
  font-size: 13px;
  padding: 0 10px;
}
.ajimu-lp {
  /* ボタン */
}
.ajimu-lp .more-btn {
  text-align: center;
  margin-top: 30px;
}
.ajimu-lp .more-btn a {
  display: inline-block;
  padding: 12px 24px;
  background: #2e8b7d;
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  transition: 0.3s;
  border: none;
}
.ajimu-lp .more-btn a:hover {
  opacity: 0.8;
}
.ajimu-lp .nature-section {
  position: relative;
  padding: 200px 0;
  background: url("/wp-content/themes/fukuoka-navi2017/images/ajimu/nature-bg.png") center center/cover no-repeat;
}
.ajimu-lp .nature-section .more-btn {
  text-align: left;
  z-index: 10;
}
.ajimu-lp .nature-overlay {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.ajimu-lp .nature-content {
  flex: 1;
  color: #fff;
}
.ajimu-lp .nature-content h2 {
  font-size: clamp(2rem, 3vw, 5rem);
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 20px;
  font-family: "Yu Mincho", serif;
  color: #0d5c3e;
  text-shadow: 0 0 4px rgb(255, 255, 255), 0 0 8px rgba(255, 255, 255, 0.6);
}
.ajimu-lp .nature-content .lead {
  font-size: 2rem;
  line-height: 2;
  color: #6d4f3a;
  font-weight: bold;
  text-shadow: 0 0 4px rgb(255, 255, 255), 0 0 8px rgba(255, 255, 255, 0.6);
}
.ajimu-lp .nature-items {
  flex: 1;
  display: flex;
  gap: 45px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.25);
}
.ajimu-lp .nature-item {
  text-align: center;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.25);
}
.ajimu-lp .nature-content h2,
.ajimu-lp .nature-content p,
.ajimu-lp .nature-item h3,
.ajimu-lp .nature-item p {
  position: relative;
  z-index: 2;
}
.ajimu-lp .nature-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .ajimu-lp .nature-section {
    padding: 80px 0;
  }
  .ajimu-lp .nature-overlay {
    flex-direction: column;
    gap: 50px;
    padding: 0 20px;
  }
  .ajimu-lp .nature-content {
    text-align: center;
  }
  .ajimu-lp .nature-content h2 {
    font-size: 3rem;
    line-height: 1.4;
    display: block;
  }
  .ajimu-lp .nature-content .lead {
    font-size: 1.5rem;
    line-height: 1.8;
  }
  .ajimu-lp .nature-items {
    width: 100%;
    flex-direction: column;
    gap: 40px;
  }
  .ajimu-lp .nature-item {
    max-width: 300px;
    margin: 0 auto;
  }
  .ajimu-lp .circle-image {
    width: 180px;
    height: 180px;
  }
  .ajimu-lp .nature-item h3 {
    font-size: 1.3rem;
  }
  .ajimu-lp .nature-item p {
    font-size: 0.95rem;
  }
}
.ajimu-lp .circle-image {
  width: 230px;
  height: 230px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(3px);
}
.ajimu-lp .circle-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ajimu-lp .nature-item h3 {
  font-size: 3rem;
  margin-bottom: 10px;
  font-family: "Yu Mincho", serif;
}
.ajimu-lp .nature-item p {
  font-size: 1.5rem;
  line-height: 1.7;
}
.ajimu-lp .category-section {
  background: #ffffff;
  padding: 80px 0;
}
.ajimu-lp .category-section.archive {
  padding: 0;
}
.ajimu-lp .category-section .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.ajimu-lp .category-section .category-block {
  margin-bottom: 50px;
  opacity: 0;
  transition: 0.3s;
  display: none;
}
.ajimu-lp .category-section .category-block.is-active {
  display: block;
  opacity: 1;
}
.ajimu-lp .category-section .section-title {
  font-size: 26px;
  font-weight: bold;
}
.ajimu-lp .category-section .section-title span {
  display: block;
  font-size: 12px;
  color: #888;
  margin-top: 5px;
}
.ajimu-lp .category-section {
  /* タグ */
}
.ajimu-lp .category-section .category-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 2em;
}
.ajimu-lp .category-section .category-tags .tag {
  position: relative;
  padding: 8px 30px;
  background: #fff;
  border-radius: 999px;
  font-size: 13px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  /* ドット */
}
.ajimu-lp .category-section .category-tags .tag::after {
  content: "";
  position: absolute;
  top: 35%;
  right: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.ajimu-lp .category-section .category-tags {
  /* 色分け */
}
.ajimu-lp .category-section .category-tags .gourmet::after {
  background: #ff7a00;
}
.ajimu-lp .category-section .category-tags .tourism::after {
  background: #cc66ff;
}
.ajimu-lp .category-section .category-tags .souvenir::after {
  background: #00c853;
}
.ajimu-lp .category-section .category-tags .recipe::after {
  background: #ffd600;
}
.ajimu-lp .category-section .category-tags .stone::after {
  background: #00bcd4;
}
.ajimu-lp .category-section .category-tags .people::after {
  background: #ff5252;
}
.ajimu-lp .category-section .category-tags .hows::after {
  background: #ff7a00;
}
.ajimu-lp .category-section .category-title {
  margin-bottom: 15px;
}
.ajimu-lp .category-section .category-title span {
  color: #333;
  font-size: 20px;
  font-weight: bold;
}
.ajimu-lp .category-section .category-title .tag-text.gourmet {
  color: #ff7a00;
}
.ajimu-lp .category-section .category-title .tag-text.tourism {
  color: #cc66ff;
}
.ajimu-lp .category-section .category-title .tag-text.souvenir, .ajimu-lp .category-section .category-title .tag-text.gift {
  color: #00c853;
}
.ajimu-lp .category-section .category-title .tag-text.recipe {
  color: #ffd600;
}
.ajimu-lp .category-section .category-title .tag-text.stone {
  color: #00bcd4;
}
.ajimu-lp .category-section .category-title .tag-text.people {
  color: #ff5252;
}
.ajimu-lp .category-section .category-title .tag-text.hows {
  color: #ff7a00;
}
.ajimu-lp .category-tags .tag {
  cursor: pointer;
  transition: all 0.25s ease;
}
.ajimu-lp .category-tags {
  /* hover */
}
.ajimu-lp .category-tags .tag:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.ajimu-lp .category-tags {
  /* アクティブ共通 */
}
.ajimu-lp .category-tags .tag.is-active {
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  opacity: 1;
  transform: translateY(-2px);
}
.ajimu-lp .category-tags {
  /* ドット白にして馴染ませる */
}
.ajimu-lp .category-tags .tag.is-active::after {
  background: rgba(255, 255, 255, 0.9);
}
.ajimu-lp .category-tags {
  /* 各カテゴリ色（背景） */
}
.ajimu-lp .category-tags .tag.gourmet.is-active {
  background: #ff7a00;
}
.ajimu-lp .category-tags .tag.tourism.is-active {
  background: #cc66ff;
}
.ajimu-lp .category-tags .tag.souvenir.is-active {
  background: #00c853;
}
.ajimu-lp .category-tags .tag.recipe.is-active {
  background: #ffd600;
  color: #333;
}
.ajimu-lp .category-tags .tag.stone.is-active {
  background: #00bcd4;
}
.ajimu-lp .category-tags .tag.people.is-active {
  background: #ff5252;
}
.ajimu-lp .category-tags .tag.hows.is-active {
  background: #ff7a00;
}
.ajimu-lp {
  /* ======================
  動画
  ====================== */
}
.ajimu-lp .panel-h2 {
  position: relative;
  margin: 80px 0 50px;
  border: #000;
}
.ajimu-lp .video-panel-section {
  width: 100%;
  display: flex;
  justify-content: center;
}
.ajimu-lp .video-panel-section .panel-wrap {
  display: flex;
  gap: 3%;
  justify-content: space-between;
  max-width: 1400px;
  width: 100%;
  margin-bottom: 30px;
}
.ajimu-lp .video-panel-section .panel-wrap .youtube-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ajimu-lp .video-panel-section .panel-wrap {
  /* iframe */
}
.ajimu-lp .video-panel-section .panel-wrap .youtube-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.ajimu-lp .video-panel-section .panel-wrap {
  /* クリック用リンク */
}
.ajimu-lp .video-panel-section .panel-wrap .youtube-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.ajimu-lp .video-panel-section .panel-wrap .panel-item {
  position: relative;
  display: inline-block;
  border-radius: 8px;
  overflow: hidden;
}
.ajimu-lp .video-panel-section .panel-wrap .panel-item .panel-img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ajimu-lp .video-panel-section .panel-wrap .panel-item iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 0;
  border-radius: 30px;
}
.ajimu-lp .video-panel-section .panel-wrap .panel-item .ad-banner {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 0;
}
.ajimu-lp .video-panel-section .panel-wrap .panel-item .ad-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 30px;
}
.ajimu-lp .video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ajimu-lp .video-card {
  display: flex;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  cursor: pointer;
}
.ajimu-lp .video-card:hover {
  transform: translateY(-3px);
}
.ajimu-lp {
  /* サムネ（縦長） */
}
.ajimu-lp .video-thumb {
  width: 160px;
  aspect-ratio: 9/16;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.ajimu-lp {
  /* ▶ボタン */
}
.ajimu-lp .video-thumb::after {
  content: "▶";
  font-size: 22px;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5); /* ← 50% */
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
  z-index: 2;
  pointer-events: none;
}
.ajimu-lp {
  /* 👇 ホバー時（＝再生時）に消す */
}
.ajimu-lp .video-card:hover .video-thumb::after {
  opacity: 0;
}
.ajimu-lp .video-thumb img,
.ajimu-lp .video-thumb iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ajimu-lp {
  /* テキスト */
}
.ajimu-lp .video-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ajimu-lp .video-title {
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 15px;
}
.ajimu-lp .video-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}
.ajimu-lp {
  /* ======================
  SCROLL
  ====================== */
}
.ajimu-lp .fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1), transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.ajimu-lp .fade-in--delay500 {
  animation-delay: 500ms;
}
.ajimu-lp .fade-in.is-show {
  opacity: 1;
  transform: translateY(0);
}
.ajimu-lp {
  /* ======================
  back
  ====================== */
}
.ajimu-lp .back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #2e8b7d;
  color: #fff;
  font-size: 20px;
  border: none;
  cursor: pointer;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}
.ajimu-lp {
  /* 表示時 */
}
.ajimu-lp .back-to-top.is-show {
  opacity: 1;
  pointer-events: auto;
}
.ajimu-lp {
  /* ホバー */
}
.ajimu-lp .back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.ajimu-lp {
  /* ======================
  レスポンシブ
  ====================== */
}
@media screen and (max-width: 1230px) {
  .ajimu-lp .fv .fv-slider:before {
    width: 154px;
    left: 70.9%;
    top: -3px;
  }
}
@media screen and (max-width: 769px) {
  .ajimu-lp .ajimu-header {
    padding: 10px 15px;
  }
  .ajimu-lp .fv {
    margin: 0 15px 20px;
    padding-top: 15px;
  }
  .ajimu-lp .fv .fv-slider .slick-track .slick-slide {
    width: calc(95vw - 30px);
  }
  .ajimu-lp .fv .fv-slider .slick-track .slick-slide:nth-child(2n) {
    margin-top: initial;
  }
  .ajimu-lp .fv .fv-slider:before {
    width: 114px;
    left: 77.9%;
    top: -28px;
  }
  .ajimu-lp .hamburger {
    display: block;
  }
  .ajimu-lp .ajimu-header .header-right_box {
    position: absolute;
  }
  .ajimu-lp .ajimu-header .header-right_box .header-right_bnr {
    display: none;
  }
  .ajimu-lp .header-right {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #fff;
    padding: 80px 20px;
    transition: 0.3s;
  }
  .ajimu-lp .header-right.is-open {
    right: 0;
  }
  .ajimu-lp .header-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .ajimu-lp .post-list--row {
    grid-template-columns: 1fr;
  }
  .ajimu-lp .post-list--row .post-card {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: flex-start;
  }
  .ajimu-lp .post-list--row figure {
    width: 90px;
  }
  .ajimu-lp .post-list--row .post-title {
    font-size: 13px;
    line-height: 1.4;
  }
  .ajimu-lp .post-list--row .post-date {
    font-size: 11px;
  }
  .ajimu-lp .post-list--grid {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }
  .ajimu-lp .post-list--grid.archive {
    display: grid;
    overflow-x: visible;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 769px) and (max-width: 464px) {
  .ajimu-lp .post-list--grid.archive {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 769px) {
  .ajimu-lp .post-list--grid .post-card {
    max-width: 40%;
    flex-shrink: 0;
  }
  .ajimu-lp .sub-cards {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }
  .ajimu-lp .category-block .sub-card {
    min-width: 40%;
  }
  .ajimu-lp .video-panel-section .panel-wrap {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 0 15px 10px;
    -webkit-overflow-scrolling: touch;
  }
  .ajimu-lp .video-panel-section .panel-item {
    min-width: 80%;
    flex-shrink: 0;
  }
  .ajimu-lp .video-grid {
    grid-template-columns: 1fr;
  }
  .ajimu-lp h2 {
    font-size: 22px;
  }
}
.ajimu-lp body {
  background: #fff;
}

.fix-orange-btn {
  display: none;
}

.ajimu-pamphlet-bnr {
  max-width: 1200px;
  margin: 0px auto 50px;
  padding: 0 20px;
}

.ajimu-pamphlet-bnr img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.ajimu-pamphlet-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.ajimu-pamphlet-links a {
  display: inline-block;
  padding: 8px 16px;
  font-size: 1.3rem;
  color: #666;
  text-decoration: none;
  border: 1px solid #ddd;
  border-radius: 999px;
  transition: 0.3s;
}

.ajimu-pamphlet-links a:hover {
  background: #f5f5f5;
}

.footer {
  background: #0d7c78;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}
.footer .footer-logo {
  font-size: 25px;
  font-weight: bold;
}

.ajimu-single-main {
  justify-content: space-around !important;
}

.life-section {
  background: #faf8f5;
  padding: 120px 0;
}
.life-section .container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}
.life-section .section-header {
  text-align: center;
  margin-bottom: 10px;
}
.life-section .section-header .section-mark {
  text-align: center;
  margin-bottom: 25px;
}
.life-section .section-header .section-mark img {
  display: inline;
  width: 100px;
  height: auto;
}
.life-section .section-header h2 {
  display: block;
  font-size: 48px;
  font-family: serif;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 25px;
  color: #333;
}
.life-section .section-header .lead {
  font-size: 16px;
  line-height: 2;
  color: #555;
}
.life-section .life-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.life-section .life-cards {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.life-section .life-cards .life-card img {
  width: 100%;
  aspect-ratio: 1.35;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  margin-bottom: 18px;
}
.life-section .life-cards .life-card h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #333;
}
.life-section .life-cards .life-card p {
  font-size: 14px;
  line-height: 1.9;
  color: #666;
}
.life-section .guide-card {
  width: 340px;
  flex-shrink: 0;
}
.life-section .guide-card .guide-inner {
  background: #f5f1ea;
  border-radius: 24px;
  padding: 30px 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.life-section .guide-card .guide-inner .guide-copy {
  text-align: center;
  color: #60744d;
  margin-bottom: 10px;
}
.life-section .guide-card .guide-inner h4 {
  text-align: center;
  line-height: 1.8;
  font-family: serif;
  margin-bottom: 20px;
}
.life-section .guide-card .guide-inner h4 span {
  display: block;
  font-size: 34px;
  color: #5c7449;
}
.life-section .guide-card .guide-inner .guide-icons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}
.life-section .guide-card .guide-inner .guide-icons li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.life-section .guide-card .guide-inner .guide-icons .icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e7e0d7;
  display: flex;
  align-items: center;
  justify-content: center;
}
.life-section .guide-card .guide-inner .guide-icons .icon-circle img {
  width: 22px;
  height: 22px;
  display: block;
}
.life-section .guide-card .guide-inner .guide-icons span {
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
  color: #333;
}
.life-section .guide-card .guide-inner .guide-btn {
  display: block;
  background: #647f4b;
  color: #fff;
  text-decoration: none;
  text-align: center;
  padding: 16px;
  border-radius: 10px;
  transition: 0.3s;
}
.life-section .guide-card .guide-inner .guide-btn:hover {
  opacity: 0.85;
}
.life-section .support-box {
  margin-top: 30px;
  background: #f2ece5;
  border-radius: 18px;
  padding: 35px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.life-section .support-box .support-text {
  display: flex;
  align-items: center;
  gap: 35px;
}
.life-section .support-box .support-text .support-icon {
  flex-shrink: 0;
}
.life-section .support-box .support-text .support-icon img {
  width: 48px;
  height: auto;
  display: block;
}
.life-section .support-box .support-text h3 {
  font-size: 24px;
  margin-bottom: 8px;
  color: #333;
}
.life-section .support-box .support-text p {
  color: #666;
}
.life-section .support-box .support-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  padding: 18px 25px;
  background: #fff;
  border: 1px solid #d8c6b1;
  border-radius: 10px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

@media (max-width: 991px) {
  .life-section .life-layout {
    flex-direction: column;
  }
  .life-section .guide-card {
    width: 100%;
  }
  .life-section .life-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .life-section .support-box {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .life-section .section-header h2 {
    font-size: 34px;
  }
  .life-section .life-cards {
    grid-template-columns: 1fr;
  }
  .life-section .support-box .support-text {
    flex-direction: column;
  }
  .life-section .support-box .support-btn {
    min-width: 100%;
  }
}
/* ==========================
フローティングバナー
========================== */
.floating_banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 999;
  width: min(200px, 80vw);
  transition: all 0.3s ease;
  opacity: 0;
}
.floating_banner.is-show {
  opacity: 1;
  pointer-events: auto;
}

.floating_banner a {
  display: block;
}

.floating_banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* 閉じるボタン */
.floating_banner_close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: #333;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

/* 非表示 */
.floating_banner.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

/* SP調整 */
@media screen and (max-width: 1024px) {
  .floating_banner {
    left: 20px;
    bottom: 20px;
    width: 30vw;
  }
}/*# sourceMappingURL=ajimu_rev.css.map */