@charset "UTF-8";
/******************************************************************************
******************************************************************************
**
** style.cssにおいて ( var.3.1.3 )
** -- baseでは基本タグとサイト大枠のCSS指定
** -- headerではヘッダーのCSS指定
** -- global navではグローバルナビのCSS指定
** -- contentではコンテント・メイン・サイドナビのCSS指定
** -- footerではフッターのCSS指定
** -- pagetopではページトップボタンのCSS指定
** -- indexではトップページのCSS指定
** -- pageでは汎用ページのCSS指定
** -- styleでは汎用ページのコンテンツ（データ入れ）で使用する基本タグのCSS指定
**
** 注意事項
** -- CSSの命名規則はApplicatsオリジナルの命名規則を採用しています。
** -- 初期フォントサイズはreset.cssにて16pxにリセットしています。
** -- 行間は1.6にリセットしています。
**        単位は不要です。(スタイル崩れする可能性有)
** -- コンテンツ内のフォントサイズ・行間は
**        [ base ]のcontentsクラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** function
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** root
******************************************************************************
----------------------------------------------------------------------------*/
:root {
  --main-color: #000;
  --sub-color: #fff;
  --color-accent: #FFD72A;
  --color-accent-2: #2A2E70;
  --color-gray-dark: #373737;
  --main-font: "Noto Sans JP", sans-serif;
  --sub-font: "Outfit", sans-serif;
  --base-font-size: rem(15);
  --base-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html,
body {
  overflow-x: hidden;
  position: relative;
  font-size: var(--base-font-size);
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

h1 {
  font-size: 2.3125rem;
  font-weight: bold;
  margin: 0 0 0.2em;
}

h2 {
  font-size: 3.75rem;
  font-weight: bold;
  font-family: var(--main-font);
  margin-bottom: 0.6em;
}

h3 {
  font-size: 2.5rem;
  font-weight: bold;
  font-family: var(--main-font);
  margin-bottom: 0.5em;
}

h4 {
  font-size: 1.375rem;
  font-weight: 400;
  margin-bottom: 0.5em;
  position: relative;
}

h5 {
  font-size: 1.2rem;
  margin-bottom: 0.5em;
}

h6 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 0.5em;
}

a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
a:hover {
  opacity: 0.7;
}

.sp_only {
  display: none !important;
}

/*----------------------------------------------------------------------------
******************************************************************************
** primary layout
******************************************************************************
----------------------------------------------------------------------------*/
.layout {
  margin: 0 auto;
  width: 95%;
  max-width: 1440px;
}

.w_base {
  display: block;
  margin: 0 auto;
  width: 95%;
  max-width: 1440px;
}

.customize-support {
  overflow: hidden;
}

.speechBubble {
  background-image: url(../images/bubble.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 1em 1.3em 2em 0.7em;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 300px;
  font-size: 1.25rem;
  font-weight: 500;
  font-family: ab-kirigirisu, sans-serif;
}

mark {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, var(--color-accent)));
  background: linear-gradient(transparent 50%, var(--color-accent) 50%);
}

.changeImage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(30 * 100vw / 1920);
}
.changeImage .mainImage img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
}
.changeImage .thumbnails {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(30 * 100vw / 1920);
}
.changeImage .thumbnails img {
  border-radius: 20px;
  cursor: pointer;
}
.changeImage .thumbnails img.thumb {
  opacity: 0.8;
}
.changeImage .thumbnails img.active {
  opacity: 1;
}

.navigation {
  margin-top: 50px;
}
.navigation_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}
.navigation .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.navigation .nav-links .nav-previous + .nav-next {
  margin-left: -1px;
}
.navigation .nav-links div[class^=nav-] {
  width: 50%;
}
.navigation .nav-links .nav-next {
  margin-left: auto;
}
.navigation .nav-links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding: 1em;
  border: 1px solid var(--color-gray-dark);
  text-decoration: none;
  color: var(--color-gray-dark);
}
.navigation .back_button a {
  display: block;
  position: relative;
  background-color: #82785C;
  color: var(--sub-color);
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  margin: auto;
  padding: 1.5em;
  width: 100%;
  max-width: 25rem;
  line-height: 1;
}
.navigation .back_button a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  display: inline-block;
  vertical-align: middle;
  color: var(--sub-color);
  line-height: 1;
  width: 0.5em;
  height: 0.5em;
  border: 2px solid;
  border-left: 0;
  border-bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: translateX(-25%) translateY(-50%) rotate(45deg);
          transform: translateX(-25%) translateY(-50%) rotate(45deg);
}

.postList_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4.1875rem 1.5rem;
}
.postList_list:after {
  content: "";
  display: block;
  height: 0px;
  width: calc(33% - 16px);
}
.postList_list .postList_item {
  width: calc(33% - 16px);
}
.postList_list .postList_item .thumbnail {
  display: block;
  overflow: hidden;
  aspect-ratio: 331/222;
  -webkit-box-shadow: 0px 2px 6px hsla(0, 0%, 0%, 0.16);
          box-shadow: 0px 2px 6px hsla(0, 0%, 0%, 0.16);
}
.postList_list .postList_item .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.postList_list .postList_item .text .postList_item--title {
  display: block;
  margin: 12px 0 7px;
  font-size: 1.125rem;
  text-decoration: none;
  color: var(--main-color);
  font-weight: 500;
}
.postList_list .postList_item .sub-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.postList_list .postList_item .sub-info a {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 1.125rem;
}

.postList_list {
  container-type: inline-size;
}

@container (max-width: 768px) {
  .postList_list .postList_item {
    width: calc(50% - 12px);
  }
}
.postList {
  /* &--small .postList_list--2{       // postList_list--small 小型表示

      .postList_item:nth-child(1),
      .postList_item:nth-child(2){
          width: calc(50% - 12px);
          .thumbnail{
              width: 100%;
              display: block;
              aspect-ratio: 331 / 222;
              box-shadow: 0px 2px 6px hsla(0, 0%, 0%, 0.16);
              img{
                  width: 100%;
                  height: 100%;
                  object-fit: cover;
                  object-position: center;
              }
          }

          .container{
              display: initial;
              align-items: initial;
              width: initial;
              gap: initial;
          }

          .text{
              width: 100%;

              .postList_item--title{
                  display: block;
                  margin: 12px 0 7px;
                  font-size: rem(22);
                  text-decoration: none;
                  color: var(--main-color);
                  font-weight: 500;
              }
          }
          .sub-info{
              display: flex;
              gap: rem(10);
              flex-wrap: wrap;
              a{
                  display: block;
                  width: max-content;
                  font-size: rem(18);
              }
          }
      }
  } */
}
.postList--small .postList_list:after {
  content: initial;
}
.postList--small .postList_list .postList_item {
  width: calc(50% - 12px);
  padding-bottom: 1.5625rem;
  border-bottom: solid 1px #707070;
}
.postList--small .postList_list .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  gap: 1.875rem;
}
.postList--small .postList_list .thumbnail {
  display: block;
  width: 196px;
  aspect-ratio: 196/130;
  border-radius: 4px;
  overflow: hidden;
}
.postList--small .postList_list .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.postList--small .postList_list .text {
  width: calc(100% - 226px);
  margin-bottom: 0;
}
.postList--small .postList_list .text .postList_item--title {
  margin: initial;
}
.postList--small .postList_list .text .postList_item--title p {
  margin-bottom: 0;
}
.postList--small .postList_list .sub-info {
  margin-bottom: 0;
}
.postList .postList_list--1 .postList_item:nth-child(1) {
  width: 100%;
  padding-bottom: 1.5625rem;
  border-bottom: solid 1px #707070;
}
.postList .postList_list--1 .postList_item:nth-child(1) .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  gap: 45px;
}
.postList .postList_list--1 .postList_item:nth-child(1) .thumbnail {
  display: block;
  width: 42%;
  aspect-ratio: 196/130;
  border-radius: 4px;
  overflow: hidden;
}
.postList .postList_list--1 .postList_item:nth-child(1) .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.postList .postList_list--1 .postList_item:nth-child(1) .text {
  width: calc(58% - 45px);
  margin-bottom: 0;
}
.postList .postList_list--1 .postList_item:nth-child(1) .text .postList_item--title {
  margin: initial;
}
.postList .postList_list--1 .postList_item:nth-child(1) .text .postList_item--title p {
  font-size: 1.375rem;
  margin-bottom: 1.5625rem;
}
.postList .postList_list--1 .postList_item:nth-child(1) .text .postList_item--title .content_excerpt {
  font-weight: 400;
}
.postList .postList_list--1 .postList_item:nth-child(1) .sub-info {
  margin-bottom: 0;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.header {
  position: fixed;
  width: 100vw;
  height: 100px;
  z-index: 10000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: var(--sub-color);
}
.header_inner {
  padding-top: 30px;
  padding-bottom: 30px;
  height: 100px;
}
.header_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.headerTitle {
  width: 15rem;
}
.headerTitle img {
  width: 100%;
}
.headerNav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3em;
  list-style: none;
  margin: 0;
}
.headerNav_list li {
  margin: 0;
  font-weight: bold;
  font-size: 1.25rem;
}
.headerNav_list li a {
  color: var(--main-color);
  text-decoration: none;
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.main {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.footer {
  margin-top: auto;
}
.footerNav {
  background-color: #858585;
}
.footerNav_inner {
  padding-top: 2em;
  padding-bottom: 2em;
}
.footerNav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4em;
  list-style: none;
  margin: 0;
}
.footerNav_list li {
  margin: 0;
  font-size: 1rem;
}
.footerNav_list li a {
  color: var(--sub-color);
  font-weight: bold;
  text-decoration: none;
}
.footerMain {
  background-color: var(--color-gray-dark);
}
.footerMain_inner {
  padding-top: 50px;
  padding-bottom: 50px;
}
.footerMain_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: calc(150 * 100vw / 1920);
}
.footerMain .col1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.footerMain_logo {
  width: calc(900 * 100vw / 1920);
}
.footerMain_logo img {
  width: 100%;
}
.footerMain_text p {
  color: var(--sub-color);
  margin: 0;
}
.footerMain_sns ul {
  display: grid;
  grid-template-columns: repeat(4, 2.3em);
  list-style: none;
  gap: 2rem;
  margin: 0;
}
.footerMain_sns ul li {
  margin: 0;
}
.footerMain_sns ul li a {
  display: block;
}
.footerMain_sns ul li a img {
  width: 100%;
  height: 100%;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_inner {
  padding: 110px 0;
}

.indexIntro {
  margin-bottom: 60px;
}

.indexIntro_text p {
  font-size: 1.25rem;
  font-weight: 500;
}

.index .index__h2 {
  font-weight: 800;
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}
.index .index__h2-read {
  padding-bottom: 0.9375rem;
  border-bottom: solid 3px var(--color-gray-dark);
}

.index-bnr-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin: 3rem auto 1rem;
}
.index-bnr-box a {
  display: block;
  width: 39%;
}
.index-bnr-box a img {
  width: 100%;
  height: auto;
}

/*----------------------------------------------------------------------------
******************************************************************************
** mainvisual
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** about
******************************************************************************
----------------------------------------------------------------------------*/
.aboutFilter_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 1em;
  margin-left: 0;
}

.aboutFilter_item {
  position: relative;
  width: calc(20% - 0.8em);
  min-width: 150px;
  margin: 0;
  padding: 0.6em 0;
  text-align: center;
  font-weight: bold;
  border-radius: 5px;
  color: var(--main-color);
  border: 1px solid var(--color-accent);
  background-color: var(--color-accent);
  list-style: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.aboutFilter_item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.45em;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: 0.8em;
  height: 0.7em;
  background-color: var(--color-accent);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.aboutFilter_item:hover, .aboutFilter_item.is-active {
  color: var(--main-font);
  background-color: var(--sub-color);
}

.aboutArchive {
  position: relative;
  width: 100%;
  height: 500px;
  margin-bottom: 56px;
}

div[class*=aboutArchive_list-] {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
}
div[class*=aboutArchive_list-].is-active {
  opacity: 1;
  pointer-events: initial !important;
}

.mvSwiper {
  overflow: visible !important;
}
.mvSwiper .swiper-wrapper .swiper-slide {
  width: 294px;
  scale: 0.79;
  opacity: 0.39;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mvSwiper .swiper-wrapper .swiper-slide.swiper-slide-active {
  scale: 1;
  opacity: 1;
}
.mvSwiper .swiper-wrapper .swiper-slide .link a {
  display: block;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 4px;
}
.mvSwiper .swiper-wrapper .swiper-slide .link a:first-child {
  border: solid 1px var(--color-accent);
  margin-bottom: 7px;
  margin-top: 7px;
  color: black;
}
.mvSwiper .swiper-wrapper .swiper-slide .link a:last-child {
  border: solid 1px black;
  background: black;
  color: white;
}
.mvSwiper .swiper-pagination {
  bottom: -18px;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.mvSwiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-accent);
}

/*----------------------------------------------------------------------------
******************************************************************************
** explain
******************************************************************************
----------------------------------------------------------------------------*/
.explain {
  margin: 3.1875rem auto;
}

.explain__title {
  margin: auto;
  margin-bottom: 1.75rem;
}
.explain__title img {
  display: block;
  margin: auto;
}

.explain__text {
  text-align: center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index podcast
******************************************************************************
----------------------------------------------------------------------------*/
.podcast {
  margin-top: 3.1875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.375rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.podcast_box {
  width: calc(100% - 1.6875rem);
}
.podcast_box .postList {
  margin-top: 1.5625rem;
}

.ranking {
  width: calc(100% - 1.6875rem);
}

.podcast-btn {
  margin: 2.5rem auto 3.75rem;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.podcast-btn::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(6px, 7px);
          transform: translate(6px, 7px);
  background: var(--color-accent);
}
.podcast-btn::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: -40px;
  width: 99px;
  aspect-ratio: 99/92;
  -webkit-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
  background: url(../images/fukuokaojisan.jpg) center center/contain no-repeat;
}
.podcast-btn a {
  position: relative;
  width: 357px;
  padding: 1.0625rem;
  padding-right: auto;
  font-weight: bold;
  font-size: 0.9375rem;
  border: solid 2px black;
  display: block;
  margin: auto;
  color: var(--main-color);
  text-decoration: none;
  line-height: 1em;
}
.podcast-btn a::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  right: -25px;
  top: calc(50% - 1px);
  width: 24%;
  height: 2px;
  background: #000;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.podcast-btn a:hover::before {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

/*----------------------------------------------------------------------------
******************************************************************************
** ranking
******************************************************************************
----------------------------------------------------------------------------*/
.ranking-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 0;
}
.ranking-tab p {
  width: 100%;
  padding: 0.625rem;
  margin: 0;
  text-align: center;
  font-size: 1.375rem;
  font-weight: 500;
  background: #DFDFDF;
}
.ranking-tab .is-active {
  background: var(--color-accent);
}

.ranking-display-area {
  position: relative;
  padding: 2rem 0.625rem;
  border: solid 2px var(--color-accent);
}

.rankingList--oneday, .rankingList--oneweek, .rankingList--onemonth {
  display: none;
  visibility: hidden;
  opacity: 0;
}
.rankingList.is-active {
  opacity: 1 !important;
  display: block !important;
  visibility: visible !important;
}

.rankingList_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.rankingList_item {
  margin: 1.75rem 0 0;
  padding-bottom: 1.75rem;
  border-bottom: solid 1px #000;
}
.rankingList_item:first-child {
  margin-top: 0;
}
.rankingList_item:last-child {
  padding-bottom: initial;
  border-bottom: initial;
}
.rankingList_item .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.rankingList_item .container:before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 23px;
  height: 130px;
  margin-right: 0.3125rem;
}
.rankingList_item:nth-child(1) .container:before {
  content: "1";
  background: #FFD72A;
}
.rankingList_item:nth-child(2) .container:before {
  content: "2";
  background: #C8C8C8;
}
.rankingList_item:nth-child(3) .container:before {
  content: "3";
  background: #F3AD50;
}
.rankingList_item .thumbnail {
  display: block;
  width: 155px;
  aspect-ratio: 155/130;
  margin-right: 2rem;
  border-radius: 4px;
  overflow: hidden;
}
.rankingList_item .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.rankingList_item .text {
  width: calc(100% - 215px);
  margin-bottom: 0;
}
.rankingList_item .text .rankingList_item--title {
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--main-color);
}

/*----------------------------------------------------------------------------
******************************************************************************
** feature index
******************************************************************************
----------------------------------------------------------------------------*/
.feature {
  margin-bottom: 4.25rem;
}

/*----------------------------------------------------------------------------
******************************************************************************
** sidetrack index
******************************************************************************
----------------------------------------------------------------------------*/
.sidetrack {
  margin-bottom: 4.25rem;
}

/*----------------------------------------------------------------------------
******************************************************************************
** mook
******************************************************************************
----------------------------------------------------------------------------*/
.mook {
  margin-top: 1.5rem;
}

.mookList {
  overflow: visible;
}
.mookList .swiper-pagination {
  bottom: -18px;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.mookList .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--color-accent);
}

.mookList_item {
  width: 412px;
  scale: 0.79;
  opacity: 0.39;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.mookList_item.swiper-slide-active {
  scale: 1;
  opacity: 1;
}
.mookList_item .link a {
  display: block;
  padding: 1rem 0.3125rem;
  margin-top: 0.625rem;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: bold;
  text-decoration: none;
  color: var(--sub-color);
  background: var(--main-color);
}

/*----------------------------------------------------------------------------
******************************************************************************
** pager
******************************************************************************
----------------------------------------------------------------------------*/
.pager {
  margin-top: calc(50 * 100vw / 1920);
}
.pager .pager_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
}
.pager .pager_list .page-numbers {
  display: block;
  padding: 0.5em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
  position: relative;
  color: inherit;
}
.pager .pager_list .page-numbers::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--main-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pager .pager_list .page-numbers:hover {
  opacity: 1;
}
.pager .pager_list .page-numbers:hover::before {
  width: 100%;
}
.pager .pager_list .page-numbers.current::before {
  width: 100%;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.page {
  position: relative;
}
.page_inner {
  padding-top: 110px;
  padding-bottom: 110px;
}
.pageIntro {
  height: calc(600 * 100vw / 1920);
  position: relative;
}
.pageIntro_text {
  position: absolute;
  left: calc(60 * 100vw / 1920);
  bottom: calc(80 * 100vw / 1920);
  color: var(--sub-color);
  max-width: calc(100vw - 120 * 100vw / 1920);
}
.pageIntro_text p {
  margin-bottom: 0;
}
.pageMain {
  position: relative;
  overflow: hidden;
}
.pageMain_background {
  position: absolute;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.pageMain_background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.pageMain > figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.pageMain_content section {
  padding: 50px 0;
}
.pageMain_content .wp-block-image {
  margin-bottom: 2rem;
}
.pageMain_decoration {
  width: 100vw;
  height: 480px;
  margin-left: calc(50% - 50vw);
}
.pageMain_decoration img {
  display: block;
  width: 70%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  margin-left: auto;
  border-radius: 20px 0 0 20px;
}
.pageMain02 {
  position: relative;
  overflow: hidden;
}
.pageMain02_background {
  position: absolute;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.pageMain02_background img {
  width: 100%;
  height: 100%;
}
.pageMain02_content section {
  padding: 50px 0;
  position: relative;
}
.pageMain02_content .wp-block-image {
  margin-bottom: 2rem;
}
.pageMain02_decoration img {
  position: absolute;
  display: inline-block;
  width: 80px;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

/*----------------------------------------------------------------------------
******************************************************************************
** archive
******************************************************************************
----------------------------------------------------------------------------*/
.archive_h2 {
  font-weight: 800;
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.archive_inner {
  padding: 100px 0;
}

.archive_mv {
  background: var(--color-accent-2);
}

.archive_mv_inner {
  font-weight: bold;
  color: white;
}
.archive_mv_inner__title {
  font-size: 2.25rem;
  text-align: center;
}
.archive_mv_inner__description {
  text-align: center;
}

.archive_mv_inner {
  padding-top: 82px;
  padding-bottom: 82px;
}

.archive_listarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.5rem;
  margin-top: 3.9375rem;
}

.archive_list_wrapeer {
  width: calc(100% - 324px);
}

.categories {
  width: 100%;
  margin-bottom: 3.3125rem;
}
.categories .categories-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 1em;
  margin-left: 0;
}
.categories .categories-list .categories-list__item {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  list-style: none;
}

/*----------------------------------------------------------------------------
******************************************************************************
** podcast
******************************************************************************
----------------------------------------------------------------------------*/
.podcast_inner {
  max-width: 1080px;
}
.podcastDecoration {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
.podcastDecoration img {
  width: auto;
  max-width: none;
}
.podcastIntro_inner {
  padding-top: 30px;
  padding-bottom: 50px;
}
.podcastIntro_title h1 {
  padding-bottom: 0.35em;
  font-size: 2rem;
  font-weight: bold;
  border-bottom: 3px solid #707070;
}
.podcastIntro_time p {
  font-size: 1.25rem;
}
.podcastIntro_greeting {
  display: grid;
  grid-template-columns: 190px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
  margin-bottom: 40px;
}
.podcastIntro_greeting img {
  width: 100%;
}
.podcastIntro_greeting .text {
  font-size: 20px;
  font-weight: 500;
  margin: 0;
}
.podcastIntro_magazine {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
}
.podcastIntro_magazine .col1 img {
  width: 100%;
  height: auto;
  -webkit-box-shadow: var(--base-shadow);
          box-shadow: var(--base-shadow);
}
.podcastIntro_magazine .col2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.podcastIntro_magazine .col2 .writer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 20px;
}
.podcastIntro_magazine .col2 .writer figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
}
.podcastIntro_magazine .col2 .writer figure figcaption {
  text-align: center;
  font-weight: bold;
}
.podcastMain_content h2 {
  font-size: 1.875rem;
  font-weight: bold;
  padding: 10px 0 10px 0.8em;
  margin-bottom: 1em;
  border-left: 20px solid #C9BD9B;
}
.podcastMain_content h3 {
  font-size: 1.625rem;
}
.podcastMain_content h4 {
  font-size: 1.5rem;
}
.podcastMain_content h5 {
  font-size: 1.25rem;
}
.podcastMain_content h6 {
  font-size: 1rem;
}
.podcastMain_subtitle {
  background: #82785C;
  color: var(--sub-color);
  font-weight: bold;
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 50px;
  padding: 1.5em;
}
.podcastEnd {
  margin-top: 100px;
}
.podcastEnd_title {
  background: #82785C;
  color: var(--sub-color);
  font-weight: bold;
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 50px;
  padding: 1.5em;
}
.podcastEnd_container {
  width: 100%;
  max-width: 650px;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2.5rem;
  margin: auto;
}
.podcastEnd_container .col1 img {
  width: 100%;
  height: auto;
  -webkit-box-shadow: var(--base-shadow);
          box-shadow: var(--base-shadow);
}
.podcastEnd_container .col2 {
  position: relative;
}
.podcastEnd_container .col2 a {
  display: block;
  position: absolute;
  bottom: 10%;
  padding: 1em;
  color: inherit;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid;
  width: calc(100% - 50px);
}
.podcastEnd_container .col2 a::before {
  content: "";
  position: absolute;
  background-color: #EFEFEF;
  width: 100%;
  height: 100%;
  inset: 0.375rem 0.375rem;
  z-index: -1;
}
.podcastEnd_container .col2 a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -50px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100px;
  height: 2px;
  background-color: #2A2A2A;
}
.podcastEnd_container .col2 a:hover {
  opacity: 1;
}

.podcast_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.page_content_podcast_content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 600px;
  max-width: 67%;
}

.side_nav {
  width: 300px;
  max-width: 30%;
}

/* ------ */
/* 全体並び */
.post_nav_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  width: 700px;
  max-width: 100%;
  text-align: center;
}

/* 各カード */
.post_nav_card {
  position: relative;
  text-decoration: none;
}

.post_nav_img {
  padding: 10px;
}

/* 背景画像 */
.post_nav_bg {
  background-size: cover;
  background-position: center;
  height: 200px;
  border-radius: 4px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}

.post_nav_bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

/* テキスト部分 */
.post_nav_inner {
  position: relative;
  color: #fff;
  padding: 20px 20px;
  z-index: 1;
  width: 100%;
}

.post_nav_title {
  font-size: 0.9rem;
  margin: 0 0 8px;
}

.post_nav_excerpt {
  font-size: 0.7rem;
  margin: 0 0 16px;
}

.post_nav_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: inherit;
  border: 2px solid #ffffff;
  font-weight: bold;
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  position: relative;
  height: 50px;
  width: 130px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.post_nav_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100px;
  height: 2px;
  background-color: #ffffff;
  width: 45px;
}

.only_next {
  grid-column: 2/3;
}

/* 記事アイテム */
.side_section {
  padding: 1em 0;
}

.side_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  border-left: 2px solid #ccc;
  padding-left: 10px;
  padding-bottom: 16px;
  text-decoration: none;
  color: inherit;
}

.side_item img {
  width: 130px;
  height: 100px;
  -o-object-fit: cover;
  object-fit: cover;
  margin: 0;
}

.side_title {
  font-size: 1em;
  font-weight: bold;
}

.side_text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.side_item_title {
  font-size: 14px;
  margin: 0 0 6px;
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.side_date {
  font-size: 12px;
  color: #666;
}

.label_new {
  background: #ff7f50;
  color: #fff;
  font-size: 12px;
  padding: 2px 6px;
  margin-right: 4px;
}

.side_bnr a {
  display: block;
  width: 100%;
}
.side_bnr a img {
  width: 100%;
  height: auto;
}

/* もっと見るボタン */
.more_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 8px 20px;
  border: 1px solid #000;
  text-decoration: none;
  color: #000;
  font-size: 14px;
  font-weight: bold;
  margin-top: 8px;
  position: relative;
  height: 50px;
  width: 150px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.more_btn::before {
  content: "";
  position: absolute;
  background-color: #EFEFEF;
  width: 100%;
  height: 100%;
  top: 0.333rem;
  right: 0.333rem;
  bottom: 0.333rem;
  left: 0.333rem;
  z-index: -1;
}

.more_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100px;
  height: 1px;
  background-color: #000;
  width: 50px;
}

/* デジタルBOOK */
.book_img img {
  width: 100%;
  max-width: 250px;
  height: auto;
}

.book_img_inner {
  border-left: 2px solid #ccc;
  padding-left: 10px;
}

.book_img_inner img {
  width: 100%;
  display: block;
  margin-bottom: 16px;
}

.side_section2 {
  margin-top: 20px;
}

.special_btn {
  display: inline-block;
  width: 100%;
  padding: 12px 22px;
  font-weight: bold;
  background: #e3470e;
  color: #fff;
  text-decoration: none;
  margin: 30px auto;
  text-align: center;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.special_btn:hover {
  opacity: 0.85;
}

/* ------ */
/*----------------------------------------------------------------------------
******************************************************************************
** magazine
******************************************************************************
----------------------------------------------------------------------------*/
.magazine_inner {
  padding-bottom: 0;
}
.magazineIntro_inner {
  max-width: 1200px;
  padding-bottom: 140px;
}
.magazineIntro_content {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.magazineIntro_content .col1 {
  width: 100%;
}
.magazineIntro_content .col2 {
  width: 100%;
}
.magazineIntro_thumbnail {
  width: 100%;
}
.magazineIntro_thumbnail img {
  display: block;
  margin: auto;
  max-width: 100%;
  height: auto;
}
.magazineIntro_button {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.magazineIntro_toc h1 {
  font-size: inherit;
  font-family: var(--main-font);
}
.magazineIntro_toc h1 span {
  font-size: 2.125rem;
}
.magazineIntro_toc p {
  font-weight: bold;
  margin-bottom: 0.5em;
}
.magazineIntro_toc p::before {
  content: "◉";
}
.magazineIntro_toc ul {
  list-style: none;
  margin-left: 0;
  margin-bottom: 2em;
}
.magazineIntro_toc ul li a {
  text-decoration: none;
  color: inherit;
}
.magazineIntro_toc ul li a::after {
  content: url(../images/link.png);
  margin-left: 0.5em;
}
.magazineIntro_button a {
  display: block;
  position: relative;
  width: 22.5rem;
  padding: 1em;
  color: inherit;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid;
}
.magazineIntro_button a::before {
  content: "";
  position: absolute;
  background-color: #EFEFEF;
  width: 100%;
  height: 100%;
  inset: 0.375rem 0.375rem;
  z-index: -1;
}
.magazineIntro_button a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -50px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100px;
  height: 2px;
  background-color: #2A2A2A;
}
.magazineIntro_button a:hover {
  opacity: 1;
}
.magazinePodcast_inner {
  padding-top: 80px;
  padding-bottom: 80px;
}
.magazinePodcast_intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 80px;
}
.magazinePodcast_intro .text {
  position: relative;
  width: 100%;
}
.magazinePodcast_intro .text .headline {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: 1fr auto;
}
.magazinePodcast_intro .text h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  margin: 0;
  width: 600px;
}
.magazinePodcast_intro .text .podcast_title_icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-image: url(../images/podcast_title_icon.png);
  background-size: cover;
  width: 1em;
  height: 1em;
}
.magazinePodcast_intro .text .icon {
  justify-self: end;
  margin-left: 1em;
  text-align: right;
  margin-top: -10px;
}
.magazinePodcast_intro .text .icon img {
  width: 650px;
  height: auto;
}
.magazinePodcast_intro .text p {
  margin-top: 1em;
}
@media (max-width: 1000px) {
  .magazinePodcast .magazinePodcast_intro .text .headline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 1em;
  }
  .magazinePodcast .magazinePodcast_intro .text .headline h2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.5em;
    margin: 0;
  }
  .magazinePodcast .magazinePodcast_intro .text .headline .icon {
    max-width: 600px;
    text-align: left;
  }
  .magazinePodcast .magazinePodcast_intro .text .headline .icon img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }
}
.magazinePodcast_list {
  margin-bottom: 60px;
}
.magazinePodcast_button {
  margin-bottom: 60px;
}
.magazinePodcast_button a {
  display: block;
  position: relative;
  width: 22.5rem;
  margin: auto;
  padding: 1em;
  color: inherit;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border: 2px solid;
}
.magazinePodcast_button a::before {
  content: "";
  position: absolute;
  background-color: #EFEFEF;
  width: 100%;
  height: 100%;
  inset: 0.375rem 0.375rem;
  z-index: -1;
}
.magazinePodcast_button a:hover {
  opacity: 1;
}
.magazinePodcast_writer .writerList_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 1em;
  -webkit-column-gap: 1em;
          column-gap: 1em;
  row-gap: 5em;
}
.magazinePodcast_writer .writerList_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.magazinePodcast_writer .writerList_item .container {
  -webkit-box-shadow: var(--base-shadow);
          box-shadow: var(--base-shadow);
  padding: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.magazinePodcast_writer .writerList_item .container p {
  margin: 0;
}
.magazinePodcast_writer .writerList_item .container .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: calc(-150px + 2em);
  margin-bottom: 1em;
}
.magazinePodcast_writer .writerList_item .container .box img {
  width: 150px;
}
.magazinePodcast_writer .writerList_item .container .box p {
  font-weight: bold;
}
.magazinePodcast_writer .writerList_item .container .box p::before {
  content: "◎";
}
.magazineMain_inner {
  padding-top: 180px;
  padding-bottom: 80px;
}
.magazineMain h2 span {
  display: block;
  font-size: 1.625rem;
}
.magazineMain_intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: calc(150 * 100vw / 1920);
}
.magazineMain_intro .col1 p {
  margin: 0;
}
.magazineMain_intro .col2 {
  width: 250px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.magazineMain02_inner {
  padding-top: 180px;
  padding-bottom: 200px;
}
.magazineMain02 h2 span {
  display: block;
  font-size: 1.625rem;
}
.magazineMain02_intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
}
.magazineMain02_intro .col1 {
  margin-left: calc((100vw - 15px - 100%) / -2);
}
.magazineMain02_intro .col2 {
  width: 50%;
}
.magazineMain02_intro .col2 h2 {
  font-family: "FOT-筑紫B丸ゴシック Std", sans-serif;
}
.magazineMain02_intro .col2 p {
  line-height: 2.6;
}
.magazineStore {
  background: url(../images/store_bg.jpg);
  background-position: center;
}
.magazineStore_inner {
  padding-top: 180px;
  padding-bottom: 180px;
}
.magazineStore_content {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.magazineStore_image img {
  border-radius: 10px;
}
.magazineStore_text {
  margin-bottom: 50px;
}
.magazineStore_text h2 span {
  display: inline;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, #e4ff71));
  background: linear-gradient(transparent 70%, #e4ff71 0%);
}
.magazineStore_text .free {
  position: relative;
  font-size: 1.75rem;
  font-weight: bold;
  padding: 0 1em;
}
.magazineStore_text .free::before {
  content: "";
  position: absolute;
  left: 0;
  top: 30%;
  width: 1em;
  height: 2px;
  background-color: #000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: 0% 0%;
          transform-origin: 0% 0%;
}
.magazineStore_text .free::after {
  content: "";
  position: absolute;
  right: 0;
  top: 30%;
  width: 1em;
  height: 2px;
  background-color: #000;
  -webkit-transform: rotate(315deg);
          transform: rotate(315deg);
  -webkit-transform-origin: 100% 0%;
          transform-origin: 100% 0%;
}
.magazineStore_button a {
  padding: 1em;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
  max-width: 40.625rem;
  border-radius: 5px;
  background-color: #406D4B;
  text-decoration: none;
  color: var(--sub-color);
  border: 2px solid #406D4B;
  font-size: 1.25rem;
  font-weight: bold;
}
.magazineStore_button a::after {
  content: "";
  background-image: url(../images/link_white.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 1em;
  height: 1em;
}

/*----------------------------------------------------------------------------
******************************************************************************
** feature
******************************************************************************
----------------------------------------------------------------------------*/
.feature_inner {
  padding-top: 70px;
  padding-bottom: 70px;
}
.feature_inner.page_inner {
  padding-top: 110px;
  padding-bottom: 110px;
  max-width: 660px;
}
.featureList {
  margin-bottom: 60px;
}
.featureList_list {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(4, 1fr);
}
.featureList_item {
  height: 100%;
}
.featureList_item .container {
  width: 100%;
  height: 100%;
}
.featureList_item .container a {
  display: block;
  border: 2px solid #131313;
  border-radius: 30px;
  overflow: hidden;
  background-color: var(--sub-color);
  text-decoration: none;
  color: inherit;
  -webkit-box-shadow: var(--base-shadow);
          box-shadow: var(--base-shadow);
  height: 100%;
}
.featureList_item .container .thumbnail {
  aspect-ratio: 3/2;
}
.featureList_item .container .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.featureList_item .container .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 1.5em;
  min-height: 10em;
  font-weight: bold;
}
.featureList_item .container .text p {
  margin: 0;
  margin-top: 1em;
}
.featureList_item .container .text time {
  color: #373737;
  font-weight: normal;
  font-size: 0.8em;
  line-height: 1.2em;
}
.featureList_item .container .text p.sub-info {
  margin-top: 0.2em;
  color: #373737;
  font-weight: normal;
  font-size: 0.8em;
  line-height: 1.2em;
}
.featureList_item .container .text p.sub-info span.__kanrengou {
  margin-right: 1em;
}
.featureButton a {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
  padding: 1em 5em;
  text-align: center;
  position: relative;
  border: 1px solid var(--color-gray-dark);
  border-radius: 9999px;
  color: var(--sub-color);
  background-color: var(--color-gray-dark);
  font-size: 1.25rem;
  font-weight: bold;
  text-decoration: none;
}
.featureButton a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5em;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid var(--sub-color);
  border-right: 2px solid var(--sub-color);
}
.featureButton a:hover {
  opacity: 1;
  background-color: unset;
  color: var(--color-gray-dark);
}
.featureButton a:hover::after {
  border-top: 2px solid var(--color-gray-dark);
  border-right: 2px solid var(--color-gray-dark);
}
.featureIntro_inner {
  padding: 20px 0;
}
.featureIntro_title h1 {
  padding-bottom: 0.35em;
  font-size: 2rem;
  font-weight: bold;
  border-bottom: 3px solid #707070;
}
.featureIntro_time p {
  font-size: 1.25rem;
  margin: 0;
}
.featureMain_content h2 {
  font-size: 1.875rem;
  font-weight: bold;
  padding: 10px 0 10px 0.8em;
  margin-bottom: 1em;
  border-left: 20px solid #C9BD9B;
}
.featureMain_content h3 {
  font-size: 1.625rem;
}
.featureMain_content h4 {
  font-size: 1.5rem;
}
.featureMain_content h5 {
  font-size: 1.25rem;
}
.featureMain_content h6 {
  font-size: 1rem;
}
.featureMain p[class^=intro_text] {
  font-size: 100%;
  padding: 20px;
  margin-bottom: 1.3em;
}
.featureMain p[class^=intro_text].__gray {
  background-color: #F5F6F7;
  border: 4px double #9FA8B3;
}
.featureMain p[class^=intro_text].__warm-gray {
  background-color: #F6F5F3;
  border: 4px double #B5ADA3;
}
.featureMain p[class^=intro_text].__blue-gray {
  background-color: #F2F6F9;
  border: 4px double #7FA6D8;
}
.featureMain p[class^=intro_text].__pale-blue {
  background-color: #EEF5FB;
  border: 4px double #6FA8FF;
}
.featureMain p[class^=intro_text].__pale-green {
  background-color: #F1F7F3;
  border: 4px double #6BCF9B;
}
.featureMain p[class^=intro_text].__mint {
  background-color: #ECF7F5;
  border: 4px double #4ECFC2;
}
.featureMain p[class^=intro_text].__pale-yellow {
  background-color: #FFF8E6;
  border: 4px double #FFC94D;
}
.featureMain p[class^=intro_text].__beige {
  background-color: #F7F2EA;
  border: 4px double #E0B574;
}
.featureMain p[class^=intro_text].__pale-pink {
  background-color: #FBF1F3;
  border: 4px double #FF688A;
}
.featureMain p[class^=intro_text].__lavender {
  background-color: #F4F3F8;
  border: 4px double #9B8CFF;
}

.single .single_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 100px;
  padding-bottom: 70px;
}
.single .single_inner .single_content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 600px;
  max-width: 67%;
}
.single .single_inner .sidenav {
  width: 300px;
  max-width: 30%;
}

.featureHeader {
  margin-bottom: 1rem;
}

.single_content h1 {
  display: block;
  width: calc(100% - 9px);
  position: relative;
  padding: 1.8125rem 1.875rem;
  font-size: 1.5rem;
  border: solid 4px #000;
  background-color: var(--sub-color);
}
.single_content h1:before {
  content: "";
  position: absolute;
  display: block;
  z-index: -1;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  top: 9px;
  left: 9px;
  width: 100%;
  height: 100%;
  background: var(--color-accent);
  border: solid 4px #000;
}
.single_content h2 {
  position: relative;
  font-size: 1.25rem;
  font-weight: bold;
  padding: 1.25rem 1rem;
  margin-bottom: 2.5rem;
  background: url(../images/page-h2-bg.png) 100% 100%/100% 100% no-repeat;
}
.single_content h2:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(calc(100% - 1px));
          transform: translateY(calc(100% - 1px));
  width: 0;
  height: 0;
  border-top: 20px solid #000;
  border-left: 50px solid transparent;
}
.single_content .time p {
  margin-top: 1.375rem;
  margin-bottom: 2.5rem;
  padding-right: 1.875rem;
  text-align: right;
  color: #949494;
  font-weight: bold;
  font-size: 1rem;
}
.single_content .wp-block-image {
  margin-bottom: 1.25rem;
}

@media screen and (max-width: 1280px) {
  /*----------------------------------------------------------------------------
  ******************************************************************************
  ** primary layout
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  .postList_list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    grid-template-columns: repeat(2, 22.5rem);
    gap: 1em;
  }
  /*----------------------------------------------------------------------------
  ******************************************************************************
  ** footer
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  .footerNav_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5em;
  }
  .footerMain_sns ul {
    grid-template-columns: repeat(4, 2.3em);
    gap: 1.5rem;
  }
  /*----------------------------------------------------------------------------
  ******************************************************************************
  ** ranking
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  .rankingList_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6em;
  }
  .rankingList_item {
    width: 100%;
    max-width: 400px;
  }
  /*----------------------------------------------------------------------------
  ******************************************************************************
  ** mook
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  .mookList_list {
    gap: 1em;
  }
  /*----------------------------------------------------------------------------
  ******************************************************************************
  ** magazine
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  .magazineIntro_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .magazineIntro_content .col1 {
    width: 100%;
  }
  .magazineIntro_content .col2 {
    width: 100%;
  }
  .magazineIntro_thumbnail {
    width: 100%;
  }
  .magazineIntro_thumbnail img {
    display: block;
    margin: auto;
    max-width: 37.5rem;
  }
  .magazineIntro_button {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: auto;
  }
  .magazinePodcast_intro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 80px;
  }
  .magazinePodcast_intro .text {
    position: relative;
    width: 100%;
  }
  .magazinePodcast_intro .text .headline {
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    grid-template-columns: 1fr auto;
  }
  .magazinePodcast_intro .text h2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.5em;
    margin: 0;
    width: 600px;
  }
  .magazinePodcast_intro .text .podcast_title_icon {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    background-image: url(../images/podcast_title_icon.png);
    background-size: cover;
    width: 1em;
    height: 1em;
  }
  .magazinePodcast_intro .text .icon {
    justify-self: end;
    margin-left: 1em;
    text-align: right;
    margin-top: -10px;
  }
  .magazinePodcast_intro .text .icon img {
    width: 650px;
    height: auto;
  }
  .magazinePodcast_intro .text p {
    margin-top: 1em;
  }
  .magazineMain02_intro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: normal;
        -ms-flex-align: normal;
            align-items: normal;
  }
  .magazineMain02_intro .col1 {
    margin-left: 0;
  }
  .magazineMain02_intro .col2 {
    margin-left: auto;
    width: 80%;
  }
  .magazineStore_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .magazineStore_image img {
    max-width: 37.5rem;
  }
  .magazineStore_button a {
    margin: auto;
  }
  .featureList_list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    grid-template-columns: repeat(2, 22.5rem);
    gap: 1em;
  }
}
.magazineMain02_08 {
  /* 背景デコレーション */
}
.magazineMain02_08 .magazineMain02_inner {
  background-color: #ffc400;
  position: relative;
  overflow: hidden;
  z-index: 0;
  padding-top: 100px;
  padding-bottom: 150px;
  /* 共通画像スタイル */
  /* メインレイアウト */
}
.magazineMain02_08 .magazineMain02_inner img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
.magazineMain02_08 .magazineMain02_inner .magazineMain02_intro.layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  gap: 40px;
}
.magazineMain02_08 .magazineMain02_inner .magazineMain02_intro.layout .curry_col1 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 50px;
}
.magazineMain02_08 .magazineMain02_inner .magazineMain02_intro.layout .curry_col1 .curry2025_1 {
  -ms-flex-item-align: start;
      align-self: flex-start;
  width: 65%;
  margin: 7rem 0 0 10rem;
  z-index: 1;
}
.magazineMain02_08 .magazineMain02_inner .magazineMain02_intro.layout .curry_col1 .curry2025_3 {
  -ms-flex-item-align: end;
      align-self: flex-end;
  width: 60%;
  margin-right: 1rem;
}
.magazineMain02_08 .magazineMain02_inner .magazineMain02_intro.layout .curry_col2 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #000;
  z-index: 3;
  padding-right: 10%;
}
.magazineMain02_08 .magazineMain02_inner .magazineMain02_intro.layout .curry_col2 .curry2025_2 {
  width: 100%;
  margin-bottom: 6rem;
}
.magazineMain02_08 .magazineMain02_inner .magazineMain02_intro.layout .curry_col2 h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.magazineMain02_08 .magazineMain02_inner .magazineMain02_intro.layout .curry_col2 h2 span {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.magazineMain02_08 .magazineMain02_inner .magazineMain02_intro.layout .curry_col2 p {
  line-height: 1.8;
}
.magazineMain02_08 .curry_deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.magazineMain02_08 .curry_deco img {
  position: absolute;
  height: auto;
}
.magazineMain02_08 .curry_deco .curry_deco1 {
  bottom: 15%;
  left: -10%;
  width: 370px;
}
.magazineMain02_08 .curry_deco .curry_deco2 {
  bottom: 51%;
  right: 5%;
  width: 370px;
  z-index: 4;
}
.magazineMain02_08 .curry_deco .curry_deco3 {
  top: 15%;
  left: 40%;
  width: 370px;
  z-index: 2;
}

.magazineMain02_inner_sp {
  display: none !important;
}

/* ======================================
   Yohacope Section
====================================== */
#yohacope {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* --- 上部タイトル部分 --- */
  /* --- 背景＋コンテンツ部分 --- */
}
#yohacope .yohacope_top {
  position: relative;
  width: 100%;
  z-index: 3;
  text-align: center;
}
#yohacope .yohacope_top .yoha_base {
  display: block;
  width: 100%;
  height: auto;
}
#yohacope .yohacope_top .yoha_title,
#yohacope .yohacope_top .yoha_title_2 {
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: auto;
  pointer-events: none;
}
#yohacope .yohacope_top .yoha_title {
  top: 25%;
  left: 50%;
  width: 30%;
  z-index: 1;
}
#yohacope .yohacope_top .yoha_title_2 {
  top: 10%;
  left: 30%;
  width: 15%;
  z-index: 2;
}
#yohacope .yohacope_bg {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 1;
  /* 背景画像をベースに */
  /* 背景の上にコンテンツを重ねる */
}
#yohacope .yohacope_bg .yohacope_bg_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
#yohacope .yohacope_bg .yohacope_bg_sp {
  display: none !important;
}
#yohacope .yohacope_bg .yohacope_section {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 6rem 0 9rem 0;
  color: #9F001C;
  font-weight: bold;
}
#yohacope .yohacope_bg .yohacope_section .postList {
  width: 100%;
  margin: 0 auto;
}

/* ======================================
   Common Layout
====================================== */
.pageMain_inner {
  position: relative;
  z-index: 2;
}

/* ======================================
   Alcohol Background
====================================== */
.alcohol_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.alcohol_bg .curry_alcohol_bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.alcohol_bg .curry_alcohol_sp {
  display: none !important;
}

.alcohol_title {
  position: relative;
  text-align: center;
  padding-top: 120px;
  max-width: 1440px;
  margin: 0 auto;
  z-index: 2;
}
.alcohol_title h2 {
  font-size: 4rem;
  font-weight: bold;
  color: #fff;
  margin-top: 1em;
  font-family: "游明朝", "Yu Mincho", "Hiragino Mincho Pro", "MS PMincho", serif;
  position: relative;
  z-index: 2;
  text-align: center;
}
.alcohol_title .hukidashi {
  position: absolute;
  top: 0;
  left: 5%;
  width: 15vw;
  height: auto;
  z-index: 1;
}

.pageMain02_inner {
  position: relative;
  z-index: 1;
}

.pageMain02_content {
  position: relative;
  z-index: 2;
  padding: 30px 0;
  max-width: 1440px;
  margin: 0 auto;
}
.pageMain02_content p {
  color: #fff;
}
.pageMain02_content .alcohol {
  position: absolute;
  right: 0;
  top: 25%;
  width: 20%;
  z-index: 3;
}
.pageMain02_content .curry_alcohol .sub-info a {
  color: white;
}

.curry_alcohol_illust {
  display: none !important;
}

.pageMain02,
.magazineMain02 {
  position: relative;
  height: 100%;
  overflow: hidden;
}

/* ======================================
   タブレット（1280px以下）
====================================== */
@media (max-width: 1280px) {
  .magazineMain02_08 {
    /* ▼背景デコレーション */
  }
  .magazineMain02_08 .magazineMain02_inner {
    background-color: #ffc400;
    position: relative;
    overflow: hidden;
    z-index: 0;
    padding: 100px 0 150px 0;
    /* 共通画像スタイル */
    /* ▼メインレイアウト */
  }
  .magazineMain02_08 .magazineMain02_inner img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }
  .magazineMain02_08 .magazineMain02_inner .magazineMain02_intro.layout {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    /* ← 確実に横並びにする */
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5%;
    /* 左側（画像1と2を縦に） */
  }
  .magazineMain02_08 .magazineMain02_inner .magazineMain02_intro.layout .curry_col1 {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0;
    z-index: 2;
  }
  .magazineMain02_08 .magazineMain02_inner .magazineMain02_intro.layout .curry_col1 .curry2025_1 {
    width: 50%;
    margin: 1rem 0 0 2rem;
  }
  .magazineMain02_08 .magazineMain02_inner .magazineMain02_intro.layout .curry_col1 .curry2025_3 {
    width: 40%;
    margin-left: 3rem;
  }
  .magazineMain02_08 .magazineMain02_inner .curry2025_title_img {
    display: block;
    margin: 0 auto;
  }
  .magazineMain02_08 .magazineMain02_inner .curry_col2 {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    text-align: center;
    position: relative;
    color: #000;
    z-index: 3;
    padding-right: 0;
  }
  .magazineMain02_08 .magazineMain02_inner .curry_col2 .curry2025_2 {
    width: 50%;
    margin: 1rem 3rem 3rem;
    display: block;
  }
  .magazineMain02_08 .magazineMain02_inner .curry_col2 h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  .magazineMain02_08 .magazineMain02_inner .curry_col2 h2 span {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  .magazineMain02_08 .magazineMain02_inner .curry_col2 p {
    max-width: 80%;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
  }
  .magazineMain02_08 .curry_deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
  .magazineMain02_08 .curry_deco img {
    position: absolute;
    height: auto;
  }
  .magazineMain02_08 .curry_deco .curry_deco1 {
    bottom: 3%;
    left: -10%;
    z-index: 1;
  }
  .magazineMain02_08 .curry_deco .curry_deco2 {
    top: 8%;
    right: 0;
    z-index: 3;
  }
  .magazineMain02_08 .curry_deco .curry_deco3 {
    top: 40%;
    left: 20%;
    z-index: 3;
  }
  .magazineMain02_inner_sp {
    display: none !important;
  }
  #yohacope {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* ===== 背景エリア ===== */
    /* ===== トップ部分 ===== */
    /* ===== コンテンツ部分 ===== */
  }
  #yohacope .yohacope_bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* SP用背景を繰り返し設定 */
    background-image: url("../images/yohacope_sp.png");
    background-repeat: repeat-y;
    background-size: 100% auto;
    background-position: top center;
    /* HTML内のimgを非表示に */
  }
  #yohacope .yohacope_bg .yohacope_bg_img,
  #yohacope .yohacope_bg .yohacope_bg_sp {
    display: none !important;
  }
  #yohacope .yohacope_top {
    position: relative;
    z-index: 2;
    text-align: center;
  }
  #yohacope .yohacope_top .yoha_title {
    top: 14%;
    left: 50%;
    width: 40%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  #yohacope .yohacope_top .yoha_title_2 {
    top: 12%;
    left: 20%;
    width: 20%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  #yohacope .yohacope_section {
    position: relative;
    z-index: 3;
    width: 90%;
    margin: 0 auto;
    padding: 3rem 0 7rem 0 !important;
  }
  .alcohol_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 100vh;
    z-index: 0;
    overflow: hidden;
    /* PC背景を非表示 */
    /* SP背景を繰り返し表示 */
  }
  .alcohol_bg .curry_alcohol_bg {
    display: none !important;
  }
  .alcohol_bg .curry_alcohol_sp {
    display: block !important;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    /* 背景の代わりに繰り返し */
    background-image: url("../images/alcohol_sp.png");
    background-repeat: repeat-y;
    background-size: 100% auto;
    background-position: top center;
    /* 画像タグの代わりに背景化したい場合は以下を使用 */
    content: "";
    display: block;
  }
  .alcohol_title h2 {
    margin-top: 0;
  }
  .pageMain02_content .alcohol {
    position: absolute;
    right: 0;
    top: 20%;
    width: 18%;
    z-index: 3;
  }
  .postList_list {
    grid-template-columns: repeat(2, 18rem) !important;
  }
}
/*----------------------------------------------------------------------------
******************************************************************************
** feature  1023追記分------------------
******************************************************************************
----------------------------------------------------------------------------*/
.featureMain .wp-element-caption {
  font-size: 14px;
  text-align: center;
  color: #00796b;
  font-weight: bold;
}

.featureMain_shop-info {
  margin-top: 50px;
  padding: 1em;
  background: #f5f5f5;
  border-radius: 10px;
}
.featureMain_shop-info h3 {
  font-size: 1rem;
}
.featureMain_shop-info dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
.featureMain_shop-info dl dt,
.featureMain_shop-info dl dd {
  display: block;
  font-size: 16px;
}
.featureMain_shop-info dl dt {
  width: 6em;
}
.featureMain_shop-info dl dd {
  width: calc(100% - 6em);
}
.featureMain_shop-info .shop-map {
  width: 100%;
}
.featureMain_shop-info .shop-map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

/*----------------------------------------------------------------------------
******************************************************************************
** feature  1023追記分ここまで----------
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** iframe
******************************************************************************
----------------------------------------------------------------------------*/
.wp-block-code {
  margin: 0;
  height: 50px;
}

.open-book-btn {
  color: white;
  padding: 0.5em 1em;
  border: 2px #fff solid;
  border-radius: 25px;
  background-color: rgba(0, 0, 0, 0.2509803922);
}

.iframe-modal {
  display: none;
  position: fixed;
  padding-top: 100px;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.iframe-content {
  position: relative;
  width: 80%;
  height: 90%;
  background: #000;
  padding: 10px;
  -webkit-box-shadow: 0 0 9px #fff;
          box-shadow: 0 0 9px #fff;
  border-radius: 10px;
}

.iframe-content iframe {
  width: 100%;
  height: 88%;
  border: none;
  background: #fff;
  border-radius: 6px;
  -webkit-transform: translateY(-0.5%);
          transform: translateY(-0.5%);
}

.close-btn {
  position: absolute;
  top: 5px;
  right: 10px;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

html.no-scroll,
body.no-scroll {
  overflow: hidden !important;
}

.wp-block-image :where(figcaption) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.wp-block-gallery.has-nested-images figure.wp-block-image:has(figcaption):before {
  backdrop-filter: blur(1px) !important;
}

.wp-sp-block-code {
  display: none;
}/*# sourceMappingURL=style.css.map */