@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 {
  overflow-x: hidden;
  position: relative;
  font-size: var(--base-font-size);
}

body {
  overflow-x: hidden;
  position: relative;
  font-size: var(--base-font-size);
  line-height: 1.429em;
  letter-spacing: 0.016em;
  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: 1.75rem;
  font-weight: bold;
  font-family: var(--main-font);
  margin-bottom: 0.6em;
}

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

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

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

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

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

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%);
}

.w_base {
  display: block;
  width: 93.5%;
  margin: auto;
}

.pc_only {
  display: none !important;
}

/*----------------------------------------------------------------------------
******************************************************************************
** primary layout
******************************************************************************
----------------------------------------------------------------------------*/
.layout {
  margin: 0 auto;
  width: 100%;
  max-width: 1440px;
  padding-right: 20px;
  padding-left: 20px;
}

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

.changeImage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.6041666667vw;
}
.changeImage .mainImage img {
  width: 100%;
  border-radius: 20px;
}
.changeImage .thumbnails {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5625vw;
}
.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_content .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.navigation_content .nav-links .nav-previous + .nav-next {
  margin-left: -1px;
}
.navigation_content .nav-links div[class^=nav-] {
  width: 50%;
}
.navigation_content .nav-links .nav-next {
  margin-left: auto;
}
.navigation_content .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: 13px;
}
.postList_list .postList_item {
  width: calc(50% - 12px);
}
.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: 0.875rem;
  text-decoration: none;
  color: var(--main-color);
  font-weight: 500;
  line-height: 1.429em;
}
.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: 0.75rem;
  letter-spacing: 0.016em;
}

.postList--small .postList_list .postList_item {
  width: 100%;
  padding-bottom: 0.75rem;
  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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.postList--small .postList_list .thumbnail {
  display: block;
  overflow: hidden;
  width: 30%;
  aspect-ratio: 196/130;
  border-radius: 4px;
}
.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(70% - 8px);
  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%;
}
.postList .postList_list--1 .postList_item:nth-child(1) p {
  margin-bottom: 0;
}
.postList .postList_list--1 .postList_item:nth-child(1) .content_excerpt {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.9375rem;
}
.postList--small .postList_list--2 .postList_item:nth-child(1),
.postList--small .postList_list--2 .postList_item:nth-child(2) {
  width: calc(50% - 12px);
}
.postList--small .postList_list--2 .postList_item:nth-child(1) .thumbnail,
.postList--small .postList_list--2 .postList_item:nth-child(2) .thumbnail {
  width: 100%;
  display: block;
  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);
  overflow: hidden;
}
.postList--small .postList_list--2 .postList_item:nth-child(1) .thumbnail img,
.postList--small .postList_list--2 .postList_item:nth-child(2) .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.postList--small .postList_list--2 .postList_item:nth-child(1) .container,
.postList--small .postList_list--2 .postList_item:nth-child(2) .container {
  display: initial;
  -webkit-box-align: initial;
      -ms-flex-align: initial;
          align-items: initial;
  width: initial;
  gap: initial;
}
.postList--small .postList_list--2 .postList_item:nth-child(1) .text,
.postList--small .postList_list--2 .postList_item:nth-child(2) .text {
  width: 100%;
}
.postList--small .postList_list--2 .postList_item:nth-child(1) .text .postList_item--title,
.postList--small .postList_list--2 .postList_item:nth-child(2) .text .postList_item--title {
  display: block;
  margin: 12px 0 7px;
  text-decoration: none;
  color: var(--main-color);
  font-weight: 500;
}
.postList--small .postList_list--2 .postList_item:nth-child(1) .sub-info,
.postList--small .postList_list--2 .postList_item:nth-child(2) .sub-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.postList--small .postList_list--2 .postList_item:nth-child(1) .sub-info a,
.postList--small .postList_list--2 .postList_item:nth-child(2) .sub-info a {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.header {
  position: fixed;
  width: 100vw;
  z-index: 10000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: var(--sub-color);
}

.header_inner {
  padding-top: 5px;
  padding-bottom: 5px;
}

.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: 12.5rem;
}
.headerTitle img {
  width: 100%;
}

.headerNav {
  position: fixed;
  left: 100vw;
  top: 0;
  background-color: #ffffff;
  width: 100vw;
  height: 100vh;
  padding: 150px 20px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.headerNav-open {
  left: 0;
}

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

.headerToggle {
  position: relative;
  z-index: 1;
  width: 2em;
  height: 2em;
}

.headerToggle_button {
  position: relative;
  height: 100%;
  cursor: pointer;
}
.headerToggle_button::before, .headerToggle_button::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
  -webkit-transition: top 0.3s ease, right 0s 0.3s, left 0s 0.3s, width 0s 0.3s, -webkit-transform 0.3s ease 0.3s;
  transition: top 0.3s ease, right 0s 0.3s, left 0s 0.3s, width 0s 0.3s, -webkit-transform 0.3s ease 0.3s;
  transition: top 0.3s ease, right 0s 0.3s, left 0s 0.3s, width 0s 0.3s, transform 0.3s ease 0.3s;
  transition: top 0.3s ease, right 0s 0.3s, left 0s 0.3s, width 0s 0.3s, transform 0.3s ease 0.3s, -webkit-transform 0.3s ease 0.3s;
}
.headerToggle_button::before {
  top: calc(50% - 0.3em);
}
.headerToggle_button::after {
  top: calc(50% + 0.3em);
  width: 60%;
  right: 0;
  left: auto;
}

.headerToggle_button-open::before, .headerToggle_button-open::after {
  top: 50%;
}
.headerToggle_button-open::before {
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}
.headerToggle_button-open::after {
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
  width: 100%;
}

.headerToggle_button:not(.headerToggle_button-open)::before, .headerToggle_button:not(.headerToggle_button-open)::after {
  -webkit-transition: width 0s 0.3s, top 0.3s ease 0.3s, right 0s 0.3s, left 0s 0.3s, -webkit-transform 0.3s ease;
  transition: width 0s 0.3s, top 0.3s ease 0.3s, right 0s 0.3s, left 0s 0.3s, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, width 0s 0.3s, top 0.3s ease 0.3s, right 0s 0.3s, left 0s 0.3s;
  transition: transform 0.3s ease, width 0s 0.3s, top 0.3s ease 0.3s, right 0s 0.3s, left 0s 0.3s, -webkit-transform 0.3s ease;
}
.headerToggle_button:not(.headerToggle_button-open)::before {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.headerToggle_button:not(.headerToggle_button-open)::after {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  width: 60%;
}

/*----------------------------------------------------------------------------
******************************************************************************
** 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-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5em;
  list-style: none;
  margin: 0;
}
.footerNav_list li {
  margin: 0;
}
.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-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 7.8125vw;
}

.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: 100%;
  max-width: 400px;
}
.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: 1rem;
  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: 44.53px 0 110px;
}

.indexIntro {
  margin-bottom: 60px;
}

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

.index .index__h2 {
  font-weight: 800;
  font-size: 1.375rem;
  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;
  gap: 1.5rem;
  -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;
}
.index-bnr-box a {
  display: block;
  width: 100%;
}
.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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.3em;
  margin-left: 0;
}
@media screen and (max-width: 450px) {
  .aboutFilter_list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.aboutFilter_item {
  position: relative;
  width: calc(33% - 0.3em);
  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;
}
@media screen and (max-width: 450px) {
  .aboutFilter_item {
    width: calc(50% - 0.15em);
    min-width: initial;
  }
}
.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: 372px;
  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: 244px;
  scale: 0.79;
  opacity: 0.39;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 450px) {
  .mvSwiper .swiper-wrapper .swiper-slide {
    width: 189px;
  }
}
.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: 500;
  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;
}

.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 {
  margin-bottom: 2.8125rem;
}

.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: 0.875rem;
  font-weight: 500;
  background: #DFDFDF;
}
.ranking-tab .is-active {
  background: var(--color-accent);
}

.ranking-display-area {
  position: relative;
  padding: 0.9375rem 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.25rem 0 0;
  padding-bottom: 1.25rem;
  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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.rankingList_item .container a {
  text-decoration: none;
}
.rankingList_item .container .thumbnail: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: auto;
  margin-right: 0.3125rem;
  border-radius: 4px;
  color: var(--main-color);
}
.rankingList_item:nth-child(1) .container .thumbnail:before {
  content: "1";
  background: #FFD72A;
}
.rankingList_item:nth-child(2) .container .thumbnail:before {
  content: "2";
  background: #C8C8C8;
}
.rankingList_item:nth-child(3) .container .thumbnail:before {
  content: "3";
  background: #F3AD50;
}
.rankingList_item .thumbnail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 30%;
  aspect-ratio: 102/74;
  overflow: hidden;
}
.rankingList_item .thumbnail img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  margin-right: 0;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}
.rankingList_item .text {
  width: calc(70% - 8.7px);
  margin-bottom: 0;
}
.rankingList_item .text .rankingList_item--title {
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--main-color);
}

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

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

/*----------------------------------------------------------------------------
******************************************************************************
** 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: 244px;
  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: 2.6041666667vw;
}
.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: 3.375rem;
  padding-bottom: 110px;
}

.pageIntro {
  height: 31.25vw;
  position: relative;
}

.pageIntro_text {
  position: absolute;
  left: 3.125vw;
  bottom: 4.1666666667vw;
  color: var(--sub-color);
  max-width: 93.75vw;
}
.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_content section {
  padding: 50px 0;
}
.pageMain_content .wp-block-image {
  margin-bottom: 2rem;
}

.pageMain_decoration {
  width: 100vw;
  height: 320px;
  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%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.pageMain02_content section {
  padding: 50px 0;
}
.pageMain02_content .wp-block-image {
  margin-bottom: 2rem;
}

.pageMain02_decoration img {
  position: absolute;
  width: 60px;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

/*カレー2025使用*/
.magazineMain02_08 .magazineMain02_inner_sp {
  background-color: #ffc400;
  padding: 7%;
}

.magazineMain02_inner {
  display: none;
}

.magazineMain02_slider {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 10px;
}
.magazineMain02_slider .swiper-slide {
  height: 400px;
  overflow: hidden;
  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;
}
.magazineMain02_slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.magazineMain02_slider .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.973);
}
.magazineMain02_slider .swiper-pagination-bullet-active {
  background-color: #ffc400;
}

.curry_deco1 {
  position: absolute;
  right: -50%;
  width: 70%;
  pointer-events: none;
  z-index: 2;
}
.curry_deco1 img {
  width: auto;
  max-width: 100%;
  display: block;
}

.curry_deco2 {
  position: relative;
  width: 70%;
  left: -50%;
  margin-top: 20px;
  z-index: 1;
}
.curry_deco2 img {
  width: 100%;
  height: auto;
  display: block;
}

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

#yohacope {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* ===== 背景 ===== */
  /* ===== トップの画像群 ===== */
  /* ===== セクション内容 ===== */
}
#yohacope .yohacope_bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  /* 背景画像を縦に繰り返し */
  background-image: url("../images/yohacope_sp.png");
  background-repeat: repeat-y;
  background-size: 100% auto;
  background-position: top center;
  /* HTMLにある画像は非表示 */
}
#yohacope .yohacope_bg .yohacope_bg_img,
#yohacope .yohacope_bg .yohacope_bg_sp {
  display: none !important;
}
#yohacope .yohacope_top {
  position: relative;
  width: 200%;
  z-index: 2;
  /* 背景より前面 */
}
#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: 25%;
  width: 30%;
  z-index: 3;
}
#yohacope .yohacope_top .yoha_title_2 {
  top: 6%;
  left: 7%;
  width: 12%;
  z-index: 4;
}
#yohacope .yohacope_section {
  position: relative;
  z-index: 3;
  /* 背景より前面 */
  padding: 0 5% 120px;
  width: 100%;
  max-width: 1440px;
  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;
}
#yohacope .yohacope_section p {
  color: #9F001C;
  font-weight: bold;
  font-size: 0.9rem;
  margin-top: 3em;
}

.alcohol {
  display: none;
}

/* 背景レイヤー */
.alcohol_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  /* 背景なので最背面に */
  overflow: hidden;
  /* 背景画像（繰り返し表示） */
  background-image: url("../images/alcohol_sp.png");
  background-repeat: repeat-y;
  background-size: 100% auto;
  background-position: top center;
  /* HTML内のimgタグは非表示 */
}
.alcohol_bg .curry_alcohol_bg,
.alcohol_bg .curry_alcohol_sp {
  display: none !important;
}

/* 背景上に重ねるコンテンツ */
.pageMain02_inner {
  position: relative;
  z-index: 2;
  /* 背景より前面 */
}

.pageMain02_content {
  position: relative;
  z-index: 3;
  /* さらに前面 */
  display: block;
  padding: 0 5% 150px;
}
.pageMain02_content p {
  color: #fff;
}
.pageMain02_content .sub-info a {
  color: white;
}

/* セクションの下余白調整 */
#curry-ate-202508 {
  padding-bottom: 120px;
}

/* タイトル */
.alcohol_title .hukidashi {
  display: none;
}
.alcohol_title h2 {
  position: relative;
  z-index: 3;
  font-family: "游明朝", "Yu Mincho", "Hiragino Mincho Pro", "MS PMincho", serif;
  margin-top: 1em;
  font-size: 2rem;
  line-height: 1.4em;
  text-align: center;
  font-weight: bold;
  color: #ffffff;
}

/* イラスト位置 */
.curry_alcohol_illust {
  display: block !important;
  position: absolute;
  bottom: 1em;
  right: 0;
  width: 100%;
  max-width: 400px;
  z-index: 3;
}
.curry_alcohol_illust img {
  width: 100%;
  height: auto;
  display: block;
}

/*----------------------------------------------------------------------------
******************************************************************************
** archive
******************************************************************************
----------------------------------------------------------------------------*/
.archive_inner {
  padding: 44.53px 0 100px;
}

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

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

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

.archive_listarea {
  margin-top: 3.9375rem;
}

.categories {
  width: 100%;
  margin-bottom: 3.3125rem;
}

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

/*----------------------------------------------------------------------------
******************************************************************************
** podcast
******************************************************************************
----------------------------------------------------------------------------*/
.podcast_inner {
  max-width: 660px;
}

.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: 1.875rem;
  font-weight: bold;
  border-bottom: 3px solid #707070;
}

.podcastIntro_greeting {
  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: 1em;
  margin-bottom: 40px;
}
.podcastIntro_greeting img {
  width: 100%;
  max-width: 12.5rem;
}
.podcastIntro_greeting .text {
  font-size: 20px;
  font-weight: 500;
  margin: 0;
}

.podcastIntro_magazine {
  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: 3.125rem;
}
.podcastIntro_magazine .col1 img {
  width: 100%;
  max-width: 31.25rem;
  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.5rem;
  font-weight: bold;
  padding: 10px 0 10px 0.8em;
  margin-bottom: 1em;
  border-left: 20px solid #C9BD9B;
}
.podcastMain_content h3 {
  font-size: 1.375rem;
}
.podcastMain_content h4 {
  font-size: 1.25rem;
}
.podcastMain_content h5 {
  font-size: 1.125rem;
}
.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%;
  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: 40px;
}
.podcastEnd_container .col1 img {
  display: block;
  margin: auto;
  width: 100%;
  max-width: 31.25rem;
  height: auto;
  -webkit-box-shadow: var(--base-shadow);
  box-shadow: var(--base-shadow);
}
.podcastEnd_container .col2 a {
  display: block;
  position: relative;
  width: 17.5rem;
  max-width: calc(100% - 50px);
  padding: 1em;
  color: inherit;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid;
}
.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;
}

/*----------------------------------------------------------------------------
******************************************************************************
** magazine
******************************************************************************
----------------------------------------------------------------------------*/
.magazine_inner {
  padding-bottom: 0;
}

.magazineIntro_inner {
  max-width: 1200px;
  padding-bottom: 140px;
}

.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;
  gap: 60px;
}

.magazineIntro_thumbnail {
  width: 100%;
}
.magazineIntro_thumbnail img {
  width: 100%;
}

.magazineIntro_toc h1 {
  font-size: inherit;
  font-family: var(--main-font);
  margin-bottom: 1.4em;
}
.magazineIntro_toc h1 span {
  font-size: 2.125rem;
  display: block;
  line-height: 1.5em;
}
.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 {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
}
.magazineIntro_button a {
  display: block;
  position: relative;
  width: 17.5rem;
  max-width: calc(100% - 50px);
  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 {
  gap: 10.4166666667vw;
  margin-bottom: 80px;
}
.magazinePodcast_intro .text {
  width: 100%;
  display: block;
}
.magazinePodcast_intro .text .headline {
  display: block;
  text-align: left;
}
.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.6em;
  font-size: 1.75em;
  font-weight: bold;
}
.magazinePodcast_intro .text h2 .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 {
  display: block;
  margin: 1em auto;
  text-align: center;
  max-width: 400px;
}
.magazinePodcast_intro .text .icon img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.magazinePodcast_intro .text p {
  font-size: 0.95em;
  line-height: 1.6;
}

.magazinePodcast_list {
  margin-bottom: 60px;
}

.magazinePodcast_button {
  margin-bottom: 60px;
}
.magazinePodcast_button a {
  display: block;
  position: relative;
  width: 22.5rem;
  max-width: 100%;
  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: -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;
  -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;
  gap: 5em;
  max-width: 27.5rem;
}
.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: 80px;
  padding-bottom: 80px;
}

.magazineMain h2 span {
  display: block;
  font-size: 1.625rem;
}

.magazineMain_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: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 7.8125vw;
}
.magazineMain_intro .col1 p {
  margin: 0;
}
.magazineMain_intro .col2 {
  width: 250px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.magazineMain02_inner {
  padding-top: 80px;
  padding-bottom: 80px;
}

.magazineMain02 h2 span {
  display: block;
  font-size: 1.625rem;
}

.magazineMain02_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: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 7.8125vw;
}
.magazineMain02_intro .col1 {
  margin: 0 -20px;
}
.magazineMain02_intro .col2 {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.magazineMain02_intro .col2 h2 {
  font-family: "FOT-筑紫B丸ゴシック Std", sans-serif;
  font-size: 3.5rem;
}
.magazineMain02_intro .col2 p {
  line-height: 2.6;
}

.magazineStore {
  background: url(../images/store_bg.jpg);
  background-position: center;
}

.magazineStore_inner {
  padding-top: 60px;
  padding-bottom: 180px;
}

.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;
  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.25rem;
  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;
  margin: auto;
  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-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
******************************************************************************
----------------------------------------------------------------------------*/
.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.1111111111rem;
  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: 1.7777777778rem;
  font-weight: bold;
  border-bottom: 3px solid #707070;
}
.featureIntro_time p {
  font-size: 1.1111111111rem;
  margin: 0;
}
.featureMain_content h2 {
  font-size: 1.6666666667rem;
  font-weight: bold;
  padding: 10px 0 10px 0.8em;
  margin-bottom: 1em;
  border-left: 20px solid #C9BD9B;
}
.featureMain_content h3 {
  font-size: 1.4444444444rem;
}
.featureMain_content h4 {
  font-size: 1.3333333333rem;
}
.featureMain_content h5 {
  font-size: 1.1111111111rem;
}
.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 .single_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 47px;
  padding-bottom: 70px;
}
.single .single_inner .single_content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 600px;
  max-width: 95%;
  margin: auto;
}
.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: 1rem;
  line-height: 1.4em;
  letter-spacing: 0.08em;
  font-size: 1.25rem;
  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: 1rem;
  text-align: right;
  color: #949494;
  font-weight: bold;
  font-size: 1rem;
}
.single_content .wp-block-image {
  margin-bottom: 1.25rem;
}

.wp-element-caption,
.wp-block-code {
  display: none;
}

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

.wp-sp-block-code {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  height: 45px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.wp-sp-block-code .link-button {
  background-color: rgba(0, 0, 0, 0.2509803922);
  color: rgba(0, 0, 0, 0.513);
  padding: 5px;
  border-radius: 25px;
  text-decoration: none;
}

.digitalbook {
  margin: 0 !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;
}

/*----------------------------------------------------------------------------
******************************************************************************
** single ここまで
******************************************************************************
----------------------------------------------------------------------------*/
/*サイドナビ*/
.side_nav {
  margin-top: 1em;
}

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

.side_section {
  padding: 1em;
}
.side_section h2 {
  font-size: 1.3rem;
}

.side_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-left: none;
  border-bottom: 1px solid #eee;
}
.side_item img {
  width: 120px;
  height: 80px;
  -o-object-fit: cover;
  object-fit: cover;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

a.side_item {
  text-decoration: none !important;
}
a.side_item .side_item_title {
  text-decoration: underline !important;
}
a.side_item .side_date {
  text-decoration: none !important;
}

.side_text {
  -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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.side_item_title {
  font-size: 14px;
  font-weight: bold;
  margin: 0 0 4px;
  line-height: 1.4;
}

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

.side_title {
  font-weight: bold;
}

.side_bnr {
  padding: 0 1em;
}
.side_bnr a {
  display: block;
  width: 100%;
}
.side_bnr a img {
  width: 100%;
  height: auto;
}

.side_section2 {
  padding: 1em;
}
.side_section2 h2 {
  font-size: 1.3rem;
}

.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: 1.5em;
  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_btn {
  display: block;
  background: #222;
  color: #fff;
  text-align: center;
  padding: 10px;
  font-weight: bold;
  text-decoration: none;
  margin-top: 1.5em;
}

/*記事の前後ボタン*/
.post_nav_wrap {
  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: 20px;
  width: 100%;
  padding: 0 16px;
}

.post_nav_card {
  width: 100%;
  max-width: 500px;
}

.post_nav_img {
  text-align: center;
  padding: 1em;
  width: 100%;
}

.post_nav_bg {
  position: relative;
  height: 230px;
  text-align: center;
  background-repeat: no-repeat;
  background-position: center;
}
.post_nav_bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.post_nav_inner {
  position: relative;
  z-index: 1;
  color: #fff;
  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-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
  padding: 20px;
}

.post_nav_title {
  font-size: 1.2rem;
  color: #FFF;
}

.post_nav_excerpt {
  font-size: 0.9rem;
  color: #FFF;
}

.post_nav_card {
  color: inherit !important;
  text-decoration: none !important;
}

.post_nav_btn {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 12px;
  color: #000;
  font-size: 0.75rem;
  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;
  margin: 1px auto 0;
}
.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: auto;
  /* グリッド指定を解除 */
  grid-column: auto;
}

.side_section2 {
  display: none;
}

/*# sourceMappingURL=sp.css.map */