@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/
/* 波背景 */
.wave img {
  display: block;
}
/* 下層ページタイトル */
.l-topTitleArea__body {
  color: #5c6b7c;
  text-shadow: none;
  font-size: 28px;
}
.c-postTitle__ttl {
  font-size: 28px;
}
/* ーーーーーーーーーーーーー TOP ーーーーーーーーーーーーー */
/* 非表示 */
#body_wrap.-bg-fix:before {
  display: none;
}
/* header */
/* プロフィールアイコン */
.icon-person:before {
  margin-right: 3px;
}
.icon-mail:before {
  margin-right: 3px;
}
/* header波背景 */
.l-header::after {
  position: absolute;
  display: block;
  content: "";
  background-image: url(./assets/img/header_wave.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: calc(31 / 1440 * 100vw);
  z-index: 10;
}
/* headerロゴ装飾 */
.l-header__inner.l-container {
  justify-content: end;
  max-width: 1200px;
}
.-series .c-headLogo {
  max-width: 800px;
  width: 100%;
}
.-series .l-header__logo {
  padding-bottom: 0;
}
/* header 追従 */
.l-fixHeader__inner {
  justify-content: space-between;
}
.l-fixHeader__logo {
  padding-block: 4px;
}
/* header nav hoverアクション */
.c-gnav a {
  transition: color 0.3s ease;
}
.c-gnav a:hover {
  color: #d6688d;
}

/* MV */
/* スライダー */
/* 1) フルブリードで親のmax-width制約を突破（画面幅いっぱいに） */
.scroll-infinity__wrap {
  width: 100vw; /* ビューポート幅いっぱいに拡張 */
  margin-left: calc(50% - 50vw); /* 親の中央基準から左右へ引き出す */
  margin-right: calc(50% - 50vw);
  overflow: hidden; /* 端で見切れるようにクリップ */
  margin-top: 30px;
}

/* 2) 無限スクロール用のリスト配置 */
.scroll-infinity__list {
  display: inline-flex; /* 1行で横並びを維持 */
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 30px; /* 画像間30px */
  width: max-content; /* コンテンツ幅ぶんだけ横に伸ばす */
}

/* 3) アニメーション（2セット連結の半分だけ動かすと継ぎ目ゼロ） */
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  } /* A+Bの半分の位置まで */
}

/* 4) 実際に動かす対象（既存クラスを活用） */
.scroll-infinity__list--left {
  animation: infinity-scroll-left 60s linear infinite;
}

/* 5) アイテムと画像サイズ指定（480×360固定） */
.scroll-infinity__item {
  flex: 0 0 auto; /* 伸縮・折返しを防止 */
  width: 480px;
  height: 360px;
}

.scroll-infinity__item > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover; /* 必要に応じて contain に変更可 */
}

/* 6) 動きを控えたい環境配慮（任意） */
@media (prefers-reduced-motion: reduce) {
  .scroll-infinity__list--left {
    animation-duration: 160s; /* 速度を落とす、または animation: none */
  }
}
/* タブレット相当で少し縮小 */
@media (max-width: 1024px) {
  .scroll-infinity__item {
    width: 360px;
    height: 270px; /* 4:3 */
  }
  .scroll-infinity__list {
    gap: 20px;
  }
}

/* スマホ横/大きめスマホ */
@media (max-width: 768px) {
  .scroll-infinity__item {
    width: 300px;
    height: 225px; /* 4:3 */
  }
  .scroll-infinity__list {
    gap: 15px;
  }
  .scroll-infinity__list--left {
    animation: infinity-scroll-left 40s linear infinite;
  }
}

/* 一般的スマホ縦 */
@media (max-width: 600px) {
  .scroll-infinity__item {
    width: 240px;
    height: 180px; /* 4:3 */
  }
}

.ttl_wrap {
  text-align: center;
  margin-top: 40px;
  position: relative;
  padding-inline: 15px;
}
.ttl_wrap::after {
  position: absolute;
  display: block;
  content: "";
  background-color: #f2ec4f;
  top: -50px;
  left: 0;
  width: 100vw;
  height: 350px;
  z-index: -2;
}
.ttl_copy {
  margin-top: 16px;
  color: #5c6b7c;
  font-weight: 700 !important;
  letter-spacing: 0.03em;
}
.mv_image {
  position: relative;
}
.mv_image::after {
  position: absolute;
  display: block;
  content: "";
  background-image: url(./assets/img/mv_l.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  top: -20px;
  left: 40px;
  width: 340px;
  height: 232px;
  z-index: -1;
  aspect-ratio: 340 / 232;
}
.mv_image::before {
  position: absolute;
  display: block;
  content: "";
  background-image: url(./assets/img/mv_r.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  top: -35px;
  right: 35px;
  width: 331px;
  height: 294px;
  z-index: -1;
  aspect-ratio: 331 / 294;
}
/* swiper */
/* .swiper {
  margin-top: 30px;
}
.swiper-wrapper {
  transition-timing-function: linear;
} */
/* section_category */
.top #content {
  padding-top: 75px;
}
.section-ttl_category {
  position: relative;
}
.is-style-section_ttl.section-ttl_category::before {
  position: absolute;
  display: block;
  content: "";
  background-image: url(./assets/img/category_top.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  top: -10px;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 240px;
  height: 13px;
  aspect-ratio: 240 / 13;
}
.is-style-section_ttl.section-ttl_category::after {
  position: absolute;
  display: block;
  content: "";
  background-image: url(./assets/img/category_bottom.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%, 100%);
  width: 240px;
  height: 13px;
  aspect-ratio: 240 / 13;
}
/* ブログアイコン タイトルあしらい */
.p-category {
  text-align: center;
}
.blog_ttl {
  position: relative;
  display: inline-block;
}
.blog_ttl::before {
  position: absolute;
  display: block;
  content: "";
  background-image: url(./assets/img/point_l.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  top: 50%;
  left: -20px;
  transform: translate(-100%, -50%);
  width: 27px;
  aspect-ratio: 27 / 34;
}
.blog_ttl::after {
  position: absolute;
  display: block;
  content: "";
  background-image: url(./assets/img/point_r.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  top: 50%;
  right: -20px;
  transform: translate(100%, -50%);
  width: 27px;
  aspect-ratio: 27 / 34;
}

/* section_news */
/* 新着記事横4列 */
/* .p-postList.-type-card,
.p-postList.-type-thumb {
  flex-wrap: nowrap;
} */
/* カテゴリごとの背景色指定 */
.p-postList__cat {
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}
.p-postList__cat[data-cat-id="7"] {
  background-color: #5ba4e6;
  color: white;
}
.p-postList__cat[data-cat-id="8"] {
  background-color: #d6688d;
  color: white;
}
.p-postList__cat[data-cat-id="9"] {
  background-color: #4aa191;
  color: white;
}
.icon-folder:before {
  display: none;
}
/* section_concept */
.section-ttl_concept {
  position: relative;
  padding-bottom: 4px;
}
.is-style-section_ttl.section-ttl_concept::before {
  position: absolute;
  display: block;
  content: "";
  background-image: url(./assets/img/concept_point_l.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  top: -4px;
  left: 50%;
  transform: translateX(-115px);
  width: 10px;
  height: 11px;
}
.is-style-section_ttl.section-ttl_concept::after {
  position: absolute;
  display: block;
  content: "";
  background-image: url(./assets/img/concept_point_r.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  right: 50%;
  transform: translateX(111px);
  width: 10px;
  height: 11px;
}
/* コンセプトのコンテンツgap指定・中央寄せ指定 */
.concept_wrap {
  position: relative;
  justify-content: center;
  gap: 40px;
}
.concept_wrap .wp-block-media-text__media img {
  width: 100%;
  margin-inline: auto;
}
.concept_wrap {
  gap: 20px;
}
/* コンセプト吹き出し */
.concept_pon {
  display: inline-block;
  position: relative;
}
.concept_pon::before {
  position: absolute;
  display: block;
  content: "";
  background-image: url(./assets/img/point_r.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 2px;
  right: -8px;
  transform: translateX(100%);
  width: 24px;
  aspect-ratio: 27 / 34;
}
.concept_pon::after {
  position: absolute;
  display: block;
  content: "";
  background-image: url(./assets/img/point_l.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 2px;
  left: -8px;
  transform: translateX(-100%);
  width: 24px;
  aspect-ratio: 27 / 34;
}
.concept_l {
  text-align: center;
  max-width: 300px;
  width: 100%;
}
.swell-block-columns.concept_wrap.u-mb-ctrl.u-mb-30
  > .swell-block-columns__inner {
  justify-content: center;
  gap: 40px;
}
/* コンセプトのイメージ画像4つ */
.wp-block-image.size-full.is-resized.size_s.concept_l {
  max-width: 301px;
  width: 100%;
}
.concept_l {
  position: relative;
}
.concept_r {
  position: relative;
}
.concept_l::before {
  position: absolute;
  display: block;
  content: "";
  background-image: url(./assets/img/concept_item1.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  top: -20px;
  left: -80px;
  transform: translateY(-100%);
  width: 128px;
  height: auto;
  aspect-ratio: 128 / 160;
  z-index: -1;
}
.concept_l::after {
  position: absolute;
  display: block;
  content: "";
  background-image: url(./assets/img/concept_item2.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: -40px;
  left: -80px;
  width: 190px;
  height: auto;
  aspect-ratio: 167 / 110;
  transform: translateY(100%);
  z-index: -1;
}

.concept_wrap .wp-block-media-text__content {
  position: relative;
}
.concept_r::before {
  position: absolute;
  display: block;
  content: "";
  background-image: url(./assets/img/concept_item3.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  top: 0px;
  right: 0;
  width: 85px;
  height: auto;
  aspect-ratio: 78 / 197;
  transform: translate(100%, -100%);
  z-index: -1;
}
.concept_r::after {
  position: absolute;
  display: block;
  content: "";
  background-image: url(./assets/img/concept_item4.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0px;
  right: 0;
  width: 110px;
  height: auto;
  aspect-ratio: 108 / 179;
  transform: translate(100%, 50%);
  z-index: -1;
}
/* section_trip */
.section-ttl_trip {
  position: relative;
}
.is-style-section_ttl.section-ttl_trip::before {
  position: absolute;
  display: block;
  content: "";
  background-image: url(./assets/img/section_ttl_trip.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  top: 0px;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 220px;
  height: 165px;
}
/* section_love */
.section-ttl_love {
  position: relative;
}
.is-style-section_ttl.section-ttl_love::before {
  position: absolute;
  display: block;
  content: "";
  background-image: url(./assets/img/section_ttl_love.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  top: 10px;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 220px;
  height: 165px;
}
.love_item {
  padding-bottom: 20px;
  border-bottom: solid 1.5px #c9adb3;
}
.has-text-align-left.love-item_ttl {
  padding: 5px 15px;
  background-color: #fff;
  border-radius: 5px;
  display: inline-block;
}
/* section_packing */
.section-ttl_packing {
  position: relative;
}
.is-style-section_ttl.section-ttl_packing::before {
  position: absolute;
  display: block;
  content: "";
  background-image: url(./assets/img/section_ttl_packing.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  top: 10px;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 220px;
  height: 165px;
}
.wp-block-group.packing_wrap {
  max-width: 610px;
  margin-inline: auto;
  position: relative;
}
.wp-block-group.packing_wrap::before {
  position: absolute;
  display: block;
  content: "";
  background-image: url(./assets/img/packing_l.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  width: 162px;
  height: auto;
  aspect-ratio: 162 / 68;
}
.wp-block-group.packing_wrap::after {
  position: absolute;
  display: block;
  content: "";
  background-image: url(./assets/img/packing_r.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  right: 0;
  transform: translate(100%, 60%);
  width: 330px;
  height: auto;
  aspect-ratio: 330 / 293;
  z-index: -10;
}
/* footer */
.l-footer {
  z-index: 1;
}
.l-footer__inner {
  position: relative;
}
.l-footer__inner::before {
  position: absolute;
  display: block;
  content: "";
  background-image: url(./assets/img/footer_wave.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  top: 1px;
  left: 0;
  transform: translateY(-100%);
  width: 100vw;
  height: calc(65 / 1440 * 100vw);
  z-index: 10;
}
/* footer手前の余白をなし */
.l-content {
  margin-bottom: 155px;
}
.widget_categories > ul > .cat-item > a:before,
.wp-block-categories-list > li > a:before {
  color: #f2ec4f;
}
.c-widget__title.-footer {
  display: none;
}
/* 未分類削除 */
.cat-item.cat-item-1 {
  display: none;
}
/* footer重複ナビ削除 */
#categories-2 ul li.cat-item.cat-item-8 {
  display: none;
}
#categories-3 ul li.cat-item.cat-item-7,
#categories-3 ul li.cat-item.cat-item-9 {
  display: none;
}
/* snsボタン */
.sns-btn_wrap {
  display: inline-block;
  text-align: left;
}
.textwidget.custom-html-widget {
  text-align: center;
}
.sns-btn_wrap li + li {
  margin-top: 20px;
}
.sns-btn_wrap a {
  font-size: 14px;
  font-weight: 500;
  background-color: #fff;
  color: #333;
  border-radius: 50px;
  display: inline-block;
  width: 260px;
  padding-block: 14px;
  padding-left: 65px;
  transition: color 0.3s ease;
}
.sns-link {
  position: relative;
}
.sns-link a {
  text-decoration: none;
}
.sns-link.sns-link--insta::before {
  position: absolute;
  display: block;
  content: "";
  background-image: url(./assets/img/insta-icon.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
}
.sns-link.sns-link--note::before {
  position: absolute;
  display: block;
  content: "";
  background-image: url(./assets/img/note-icon.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
}
.sns-btn_wrap a:hover {
  color: #d6688d;
}
/* footer nav hoverアクション */
.c-listMenu a {
  transform: color 0.3s ease;
}
.c-listMenu a:hover {
  color: #f2ec4f;
  background-color: transparent;
}
/* ーーーーーーーーーーーーー 個別ページ ーーーーーーーーーーーーー  */
.p-articleThumb__img {
  max-width: 450px;
  margin-inline: auto;
}

/* ーーーーーーーーーーーーー お問い合わせ ーーーーーーーーーーーーー  */
.p-form {
  max-width: 700px;
  margin-inline: auto;
}
.p-form__itemTitle {
  margin-bottom: 5px;
}
.post_content li {
  margin-block: 20px;
}
.p-form__itemTitle span {
  background-color: #d6688d;
  padding: 3px 6px;
  border-radius: 5px;
  color: #fff;
  font-size: 12px;
  margin-left: 5px;
  line-height: 1;
}
.p-form__txt {
  text-align: center;
  font-size: 16px;
}
.p-form__list {
  margin-top: 50px;
  padding-left: 0px !important;
}
.p-form__list li {
  list-style: none;
}
/* .post_content ol,
.post_content ul {
  padding-left: 0;
} */
.p-form__item input,
.p-form__itemNote textarea {
  width: 100%;
  border: none;
  padding: 12px;
  font-weight: 500;
}
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
  color: #cbc4c3;
}
.p-form__policyAgree a {
  text-decoration: underline;
  color: #91ccc8;
}
.p-form__policyAgree {
  text-align: center;
}
.p-form__btn {
  text-align: center;
  margin-top: 25px;
}
input[type="submit"] {
  font-size: 16px;
  background-color: #fff;
  padding: 10px 24px;
  max-width: 240px;
  width: 100%;
  border-radius: 50px;
  border: solid 2px #5c6b7c;
  color: #5c6b7c;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}
input[type="submit"]:hover {
  background-color: #5c6b7c;
  color: #fff;
}
.wpcf7-spinner {
  display: none;
}

/* ーーーーーーーーーーーーー プロフィール ーーーーーーーーーーーーー  */
.is-style-check_list.blog_list {
  padding-left: 30px;
}
/* ーーーーーーーーーーーーー 1200px以下の記述 ーーーーーーーーーーーーー  */
@media screen and (max-width: 1200px) {
  .concept_r::after {
    right: 55px;
    bottom: -50px;
    width: 100px;
  }
}
.concept_r::before {
  width: 75px;
  top: -15px;
  right: 40px;
}
.concept_l::before {
  left: -40px;
  top: -40px;
}
.concept_l::after {
  left: -40px;
  bottom: -50px;
}
/* ーーーーーーーーーーーーー 1100px以下の記述 ーーーーーーーーーーーーー  */
@media screen and (max-width: 1100px) {
  /* ーーーーーーーーーーーーー TOP ーーーーーーーーーーーーー  */
  .concept_wrap .wp-block-media-text__content::after {
    bottom: 5px;
    transform: translate(0, 100%);
  }
  .concept_wrap .wp-block-media-text__content::before {
    top: -5px;
    width: 65px;
  }
  /* 旅のご準備あしらい */
  .wp-block-group.packing_wrap::after {
    right: -200px;
    transform: translate(0, 80%);
  }
}
/* ーーーーーーーーーーーーー 1100px以下の記述 ーーーーーーーーーーーーー  */
@media screen and (max-width: 1018px) {
  /* ーーーーーーーーーーーーー TOP ーーーーーーーーーーーーー  */
  .p-postListWrap.grid {
    max-width: 700px;
    margin-inline: auto;
  }
  /* ツレヅレ旅行記grid */
  .wp-block-columns.sp_column2.grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    max-width: 700px;
    margin-inline: auto;
  }
}
/* ーーーーーーーーーーーーー 960px以下の記述 ーーーーーーーーーーーーー  */
@media screen and (max-width: 959px) {
  /* ーーーーーーーーーーーーー TOP ーーーーーーーーーーーーー  */
  /* header */
  .l-header[data-spfix="1"] {
    position: relative;
  }
  .l-header__inner.l-container {
    justify-content: center;
    flex-direction: column-reverse;
  }
  .l-fixHeader__logo {
    display: block;
    text-align: center;
  }
  .-img .c-headLogo__link {
    padding: 0;
  }
  .l-fixHeader,
  .l-header__gnav {
    display: block;
  }
  .c-gnav {
    justify-content: center;
  }
  .c-gnav > .menu-item a {
    padding-top: 10px;
    padding-bottom: 15px;
  }
  #header .c-gnav {
    margin-top: -35px;
    margin-bottom: 15px;
  }
  .mv_image::before {
    width: 231px;
  }
  .mv_image::after {
    width: 240px;
  }
  /* サイトタイトル */
  .ttl_wrap {
    margin-top: 50px;
  }
  /* コンセプトイラスト */
  .concept_r::after {
    right: 50%;
    bottom: auto;
    top: 0;
    width: 100px;
    transform: translate(335px, -140%);
    aspect-ratio: 108 / 179;
    width: 108px;
    height: auto;
  }
  .concept_r::before {
    right: 50%;
    top: -150px;
    transform: translate(284px, -200%);
    width: 78px;
    height: auto;
  }
  .concept_l::before {
    left: 0px;
    top: 0px;
    transform: translate(-100%, -100%);
  }
  .concept_l::after {
    left: -90px;
    bottom: 0;
    transform: translate(-50%, -20%);
    width: 170px;
  }

  /* ーーーーーーーーーーーーー 下層ページ ーーーーーーーーーーーーー  */
  /* タイトル */
  .c-pageTitle {
    font-size: 32px;
  }
}
/* ーーーーーーーーーーーーー 850px以下の記述 ーーーーーーーーーーーーー  */
@media screen and (max-width: 850px) {
  /* ーーーーーーーーーーーーー TOP ーーーーーーーーーーーーー  */
  /* コンセプトのぽんちゃんサイズ */
  .concept_wrap .wp-block-media-text__media img {
    max-width: 170px;
  }
}
/* ーーーーーーーーーーーーー 768px以下の記述 ーーーーーーーーーーーーー  */
@media screen and (max-width: 768px) {
  /* ーーーーーーーーーーーーー TOP ーーーーーーーーーーーーー  */

  .l-fixHeader__inner {
    flex-direction: column;
  }
  .love_item p {
    font-size: 12px !important;
  }
  .love_item h3 {
    font-size: 14px !important;
  }
  /* MV */
  /* MV_img */
  .mv_image::before {
    width: 160px;
    top: 25px;
    right: -30px;
  }
  .mv_image::after {
    width: 170px;
    top: 30px;
    left: -30px;
  }
  /* カテゴリー */
  .wp-block-columns.category_flex {
    gap: 0px !important;
  }
  /* カテゴリーあしらい */
  .is-style-section_ttl.section-ttl_category::before {
    position: absolute;
    display: block;
    content: "";
    background-image: url(./assets/img/category_top.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    top: -5px;
    left: 50%;
    transform: translate(-50%, -100%);
    width: 176px;
  }
  .is-style-section_ttl.section-ttl_category::after {
    position: absolute;
    display: block;
    content: "";
    background-image: url(./assets/img/category_bottom.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: -5px;
    left: 50%;
    transform: translate(-50%, 100%);
    width: 176px;
  }
  /* 新着記事 */
  .wp-block-heading.is-style-section_ttl.section_ttl_news img {
    max-width: 235px;
    width: 100%;
  }
  /* concept */
  .is-style-section_ttl.u-mb-ctrl.u-mb-0.section-ttl_concept::before {
    top: -4px;
    left: 50%;
    transform: translateX(-84px);
  }
  .is-style-section_ttl.u-mb-ctrl.u-mb-0.section-ttl_concept::after {
    bottom: 0;
    right: 50%;
    transform: translateX(84px);
  }

  .is-style-section_ttl.section-ttl_concept {
    font-size: 13px !important;
  }
  .section-ttl_concept-en.is-style-section_ttl {
    font-size: 32px !important;
    margin-top: 2px;
  }
  .concept .wp-block-media-text__content {
    padding-inline: 0 !important;
  }
  /* ツレヅレ旅行記 */
  .is-style-section_ttl.section-ttl_trip {
    font-size: 12px !important;
  }
  .is-style-section_ttl.section-ttl_trip::before {
    width: 130px;
    top: 25px;
  }
  /* 偏愛旅行記 */
  .is-style-section_ttl.section-ttl_love {
    font-size: 12px !important;
  }
  .is-style-section_ttl.section-ttl_love::before {
    width: 130px;
    top: 25px;
  }
  /* 旅のご準備 */
  .is-style-section_ttl.section-ttl_packing {
    font-size: 12px !important;
  }
  .is-style-section_ttl.section-ttl_packing::before {
    width: 130px;
    top: 40px;
  }
  .wp-block-image.love-item_img {
    max-width: 300px;
    width: 100%;
    margin-inline: auto;
    margin-top: -15px;
  }
  /* 旅のご準備 */
  .wp-block-group.packing_wrap::before {
    width: 100px;
    left: 0;
    transform: none;
  }
  .wp-block-group.packing_wrap::after {
    width: 280px;
    right: 0;
    transform: translate(0, 100%);
  }
}
/* ーーーーーーーーーーーーー 700px以下の記述 ーーーーーーーーーーーーー  */
@media screen and (max-width: 700px) {
  /* ーーーーーーーーーーーーー TOP ーーーーーーーーーーーーー  */
  .concept_l {
    max-width: 260px;
  }
  .concept_r::after {
    bottom: auto;
    top: 0;
    width: 100px;
    transform: translate(240px, -120%);
    aspect-ratio: 108 / 179;
    width: 80px;
    height: auto;
  }
  .concept_r::before {
    right: 50%;
    top: -150px;
    transform: translate(240px, -220%);
    width: 55px;
    height: auto;
  }
  .concept_l::before {
    left: 0px;
    top: 0px;
    transform: translate(-100%, -100%);
    width: 100px;
    height: auto;
  }
  .concept_l::after {
    left: -80px;
    bottom: 0;
    transform: translate(-50%, -30%);
    width: 120px;
    height: auto;
  }
}
/* ーーーーーーーーーーーーー 600px以下の記述 ーーーーーーーーーーーーー  */
@media screen and (max-width: 600px) {
  /* ーーーーーーーーーーーーー TOP ーーーーーーーーーーーーー  */
  /* header */
  #header .c-gnav {
    margin-left: 25px;
  }
  .concept_wrap .wp-block-media-text__content::after {
    width: 80px;
    bottom: auto;
    top: 0;
    transform: translate(0, -100%);
  }
  .concept_wrap .wp-block-media-text__content::before {
    width: 48px;
    top: -165px;
    right: 15px;
    transform: translate(0, -100%);
  }
  .l-header::after {
  position: absolute;
  display: block;
  content: "";
  background-image: url(./assets/img/header_wave.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: calc(62 / 1440 * 100vw);
  z-index: 10;
}
  /* ーーーーーーーーーーーーー 下層ページ ーーーーーーーーーーーーー  */
  /* タイトル */
  .c-pageTitle {
    font-size: 26px;
  }
  /* ーーーーーーーーーーーーー お問い合わせ ーーーーーーーーーーーーー  */
  .p-form__policyAgree {
    text-align: left;
  }
  .pc {
    display: none;
  }
}
/* ーーーーーーーーーーーーー 540px以下の記述 ーーーーーーーーーーーーー  */
@media screen and (max-width: 540px) {
  /* ーーーーーーーーーーーーー TOP ーーーーーーーーーーーーー  */
  .concept_l {
    max-width: 240px;
  }
  .concept_r::after {
    top: 0;
    width: 100px;
    transform: translate(157px, -129%);
    aspect-ratio: 108 / 179;
    width: 60px;
  }
  .concept_r::before {
    top: -209px;
    transform: translate(165px, -300%);
    width: 45px;
  }
  .concept_l::before {
    left: 15px;
    top: 0px;
    transform: translate(-95%, -203%);
    width: 70px;
  }
  .concept_l::after {
    left: -10px;
    bottom: -40px;
    transform: translate(-50%, -16%);
    width: 90px;
  }
}
/* ーーーーーーーーーーーーー 450px以下の記述 ーーーーーーーーーーーーー  */
@media screen and (max-width: 450px) {
  /* ーーーーーーーーーーーーー TOP ーーーーーーーーーーーーー  */
  .p-form__txt {
    text-align: left;
  }
}
/* ーーーーーーーーーーーーー 400px以下の記述 ーーーーーーーーーーーーー  */
@media screen and (max-width: 400px) {
  /* ーーーーーーーーーーーーー TOP ーーーーーーーーーーーーー  */
  /* header */
  #header .c-gnav {
    margin-left: 40px;
  }
}
/* ーーーーーーーーーーーーー 400px以下の記述 ーーーーーーーーーーーーー  */
@media screen and (max-width: 345px) {
    .concept_r::after {
    transform: translate(142px, -129%);
  }
  .concept_r::before {
    transform: translate(145px, -300%);
  }
  .concept_l::before {
    left: 30px;
    top: 0px;
    transform: translate(-95%, -217%);
    width: 70px;
  }
  .concept_l::after {
    left: 6px;
    bottom: -40px;
    transform: translate(-50%, -16%);
    width: 90px;
  }
}
  /* ーーーーーーーーーーーーー TOP ーーーーーーーーーーーーー  */
/* ーーーーーーーーーーーーー1021px以上の記述  ーーーーーーーーーーーーー  */
@media (min-width: 1019px) {
  /* ーーーーーーーーーーーーー TOP(新着記事grid) ーーーーーーーーーーーーー  */
  .p-postListWrap.grid .p-postList.-type-card {
    flex-wrap: nowrap !important;
  }
}

/* 
.swiper-wrapper {
  display: none !important;
}
.scroll-infinity {
  position: absolute;
  width: 100vw;
  top: 0;
  left: 0;
} */
