@charset "UTF-8";
* {
  padding: 0px;
  margin: 0px;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
}

body {
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 200;
  font-style: normal;
}

h2, h3, h4, h5 {
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 700;
  font-style: normal;
}

dt {
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 700;
  font-style: normal;
}

@media screen and (min-width: 769px) {
  .pc-none {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  body {
    width: 100vw;
    overflow-x: hidden;
  }
  body #layout {
    width: 100vw;
    overflow-x: hidden;
  }
  .sp-none {
    display: none;
  }
}
/* ハンバーガーボタン */
@media screen and (min-width: 769px) {
  #hamburger-menu {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #hamburger-menu.front {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 33px;
    height: 30px;
    cursor: pointer;
    position: absolute;
    top: 30px;
    right: 20px;
    z-index: 1000; /* オーバーレイメニューより前面に配置 */
  }
  #hamburger-menu.other {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 33px;
    height: 30px;
    cursor: pointer;
    position: absolute;
    top: 30px;
    right: 20px;
    z-index: 1000; /* オーバーレイメニューより前面に配置 */
  }
}
#hamburger-menu span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #333;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

#hamburger-menu.open span {
  background-color: #fff;
}

/* オープン状態のスタイル */
#hamburger-menu.open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

#hamburger-menu.open span:nth-child(2) {
  opacity: 0; /* 中央のラインを非表示 */
}

#hamburger-menu.open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* オーバーレイメニュー */
#overlay-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(230, 0, 18, 0.8); /* 半透明の赤 */
  backdrop-filter: blur(10px); /* 背景のぼかし効果 */
  -webkit-backdrop-filter: blur(10px); /* Safari用 */
  color: #fff;
  z-index: 999;
  display: none; /* 初期状態で非表示 */
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#overlay-menu ul {
  list-style: none;
  padding: 0;
}

#overlay-menu li {
  margin: 15px 0;
}

#overlay-menu a {
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
}

/* メニュー表示時 */
#overlay-menu.show {
  display: flex;
}

/* スマホ用のみ表示 */
.sp-only {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp-only {
    display: block;
  }
}
/* パソコン対応 */
@media screen and (min-width: 769px) {
  #header.front .wrapper {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: calc(100vw - 170px); /* 左右に30pxずつの余白 */
    margin-left: auto;
    margin-right: auto;
    z-index: 50;
    display: flex; /* flexbox設定で左右に配置 */
    justify-content: space-between; /* 左右に振り分け */
    align-items: center; /* 縦方向中央揃え */
  }
  #header.front .wrapper #logo {
    display: flex; /* インライン要素として振る舞うフレックスコンテナ */
    justify-content: flex-start;
    align-items: center;
    gap: 25px; /* メニュー項目間のスペース */
  }
  #header.front .wrapper #logo .site-logo {
    height: 65px;
  }
  #header.front .wrapper #logo .site-logo img {
    width: auto;
    height: 100%;
    vertical-align: baseline;
  }
  #header.front .wrapper #logo .sub-title {
    font-size: 16px;
    line-height: 1.4;
    color: #FFF;
  }
  #header.front .wrapper #logo .sub-title span {
    font-weight: bold;
  }
  #header.front .wrapper nav {
    margin-left: auto; /* 自動で左側にスペースを作り、右寄せにする */
  }
  #header.front .wrapper nav .gl_nav {
    list-style: none;
    margin: 0;
    display: flex; /* メニューを横並びに */
    gap: 15px; /* メニュー項目間のスペース */
  }
  #header.front .wrapper nav .gl_nav li {
    display: inline;
  }
  #header.front .wrapper nav .gl_nav li a {
    display: block;
    background-color: #e60012;
    border-radius: 100vh;
    padding: 10px 25px;
    text-decoration: none;
    color: #ffffff;
    white-space: nowrap;
  }
  #header.front .wrapper nav .gl_nav li a:hover {
    opacity: 0.8;
  }
  #header.front .sns_area {
    position: absolute;
    right: 15px;
    bottom: 15px;
    box-sizing: border-box;
  }
  #header.front .sns_area h3 {
    font-size: 1em;
    color: #ffffff;
    text-align: center;
    padding-bottom: 15px;
  }
  #header.front .sns_area ul {
    display: grid;
    grid-template-columns: 60px;
    gap: 10px;
    list-style-type: none;
    padding: 0;
  }
  #header.front .sns_area ul li {
    list-style-type: none;
    font-size: 1.8em;
  }
  #header.front .sns_area ul li a {
    text-decoration: none;
    font-size: 1em;
    color: #ffffff;
  }
  #header.front .sns_area ul li a img {
    width: 100%;
    height: auto;
  }
  #header.other {
    position: relative;
    background-color: rgba(255, 255, 255, 0.9); /* 背景色と透明度 */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* 影 */
    z-index: 50;
    transition: top 0.5s ease-in-out; /* 0.5秒かけてアニメーション */
    padding: 25px 0px;
    box-sizing: border-box;
  }
  #header.other .wrapper {
    width: calc(100vw - 170px); /* 左右に30pxずつの余白 */
    margin-left: auto;
    margin-right: auto;
    display: flex; /* インライン要素として振る舞うフレックスコンテナ */
    justify-content: space-between;
    align-items: center;
  }
  #header.other .wrapper #logo {
    display: flex; /* インライン要素として振る舞うフレックスコンテナ */
    justify-content: flex-start;
    align-items: center;
    gap: 25px; /* メニュー項目間のスペース */
  }
  #header.other .wrapper #logo .site-logo {
    height: 65px;
  }
  #header.other .wrapper #logo .site-logo img {
    width: auto;
    height: 100%;
    vertical-align: baseline;
  }
  #header.other .wrapper #logo .sub-title {
    font-size: 16px;
    line-height: 1.4;
  }
  #header.other .wrapper #logo .sub-title span {
    font-weight: bold;
  }
  #header.other .wrapper nav {
    display: inline-block;
  }
  #header.other .wrapper nav .gl_nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex; /* インライン要素として振る舞うフレックスコンテナ */
    justify-content: flex-start;
    gap: 15px; /* メニュー項目間のスペース */
  }
  #header.other .wrapper nav .gl_nav li {
    display: inline;
  }
  #header.other .wrapper nav .gl_nav li a {
    display: block;
    background-color: #e60012; /* ボタン背景色（仮） */
    border-radius: 100vh;
    padding: 10px 25px;
    text-decoration: none;
    color: #fff; /* ボタン文字色（仮） */
    white-space: nowrap;
  }
  #header.other .wrapper nav .gl_nav li a:hover {
    opacity: 0.8; /* ホバー時の透明度 */
  }
}
/* スマホ対応 */
@media screen and (max-width: 768px) {
  #header {
    height: 45px;
  }
  #header.front {
    padding: 15px 0px;
  }
  #header.front .wrapper {
    width: calc(100vw - 25%); /* 左右に30pxずつの余白 */
    margin-right: auto;
    padding-left: 15px;
    display: flex; /* インライン要素として振る舞うフレックスコンテナ */
    justify-content: space-between;
    align-items: center;
  }
  #header.front .wrapper #logo {
    display: flex; /* インライン要素として振る舞うフレックスコンテナ */
    justify-content: flex-start;
    align-items: center;
    gap: 15px; /* メニュー項目間のスペース */
  }
  #header.front .wrapper #logo .site-logo {
    height: 35px;
    transform: translateY(5px);
  }
  #header.front .wrapper #logo .site-logo img {
    width: auto;
    height: 100%;
    vertical-align: baseline;
  }
  #header.front .wrapper #logo .sub-title {
    font-size: 0, 6em;
    line-height: 1.4;
  }
  #header.front .wrapper #logo .sub-title span {
    font-weight: bold;
    white-space: nowrap;
  }
  #header.front .sns_area {
    display: none;
  }
  #header.other {
    position: relative;
    background-color: rgba(255, 255, 255, 0.9); /* 背景色と透明度 */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* 影 */
    z-index: 50;
    height: 45px;
    transition: top 0.5s ease-in-out; /* 0.5秒かけてアニメーション */
    padding: 15px 0px;
  }
  #header.other .wrapper {
    width: calc(100vw - 25%); /* 左右に30pxずつの余白 */
    margin-right: auto;
    padding-left: 15px;
    display: flex; /* インライン要素として振る舞うフレックスコンテナ */
    justify-content: space-between;
    align-items: center;
  }
  #header.other .wrapper #logo {
    display: flex; /* インライン要素として振る舞うフレックスコンテナ */
    justify-content: flex-start;
    align-items: center;
    gap: 15px; /* メニュー項目間のスペース */
  }
  #header.other .wrapper #logo .site-logo {
    height: 35px;
    transform: translateY(5px);
  }
  #header.other .wrapper #logo .site-logo img {
    width: auto;
    height: 100%;
    vertical-align: baseline;
  }
  #header.other .wrapper #logo .sub-title {
    font-size: 0, 6em;
    line-height: 1.4;
  }
  #header.other .wrapper #logo .sub-title span {
    font-weight: bold;
    white-space: nowrap;
  }
  #header.other .wrapper nav {
    display: inline-block;
  }
  #header.other .wrapper nav .gl_nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex; /* インライン要素として振る舞うフレックスコンテナ */
    justify-content: flex-start;
    gap: 15px; /* メニュー項目間のスペース */
  }
  #header.other .wrapper nav .gl_nav li {
    display: inline;
  }
  #header.other .wrapper nav .gl_nav li a {
    display: block;
    background-color: #e60012; /* ボタン背景色（仮） */
    border-radius: 100vh;
    padding: 10px 25px;
    text-decoration: none;
    color: #fff; /* ボタン文字色（仮） */
  }
  #header.other .wrapper nav .gl_nav li a:hover {
    opacity: 0.8; /* ホバー時の透明度 */
  }
}
@media screen and (min-width: 769px) {
  #main.front {
    margin-top: calc(100vh - 60px);
    background-color: #ffffff;
    padding-top: 20px;
  }
  #main.front #whatsnew {
    transform: translateY(-60px);
  }
  #main.front #whatsnew .wrapper {
    width: calc(100vw - 126px); /* 左右に30pxずつの余白 */
    margin: 0 auto 45px auto; /* 上:30px, 左右:auto, 下:45px */
    /*** ニュース項目のタブへの指示 ***/
    /*** ニュース項目のタブへの指示 ***/
  }
  #main.front #whatsnew .wrapper .whatsnew-inner {
    text-align: center;
  }
  #main.front #whatsnew .wrapper .whatsnew-inner .newslist {
    width: 1280px;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
  }
  #main.front #whatsnew .wrapper .whatsnew-inner .newslist .post-item {
    border-bottom: 1px dashed #999;
    padding-top: 25px;
    padding-bottom: 25px;
  }
  #main.front #whatsnew .wrapper .whatsnew-inner .newslist .post-item h3 a {
    color: #333333;
    text-decoration: none; /* デフォルトの下線を削除 */
  }
  #main.front #whatsnew .wrapper .whatsnew-inner .newslist .post-item .post-category {
    display: flex;
    justify-content: flex-start;
    padding-top: 10px;
    gap: 15px;
  }
  #main.front #whatsnew .wrapper .whatsnew-inner .newslist .post-item .post-category .post-cat a {
    display: block;
    font-size: 0.9em;
    padding: 5px 25px;
    background: #efefef;
    border-radius: 100vh;
    color: #333;
    font-weight: bold;
  }
  #main.front #whatsnew .wrapper .whatsnew-inner .newslist .post-item .inner {
    width: 100%;
  }
  #main.front #whatsnew .wrapper .whatsnew-inner .newslist .post-item .inner .post-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1; /* 空間を埋めて高さを統一させる */
  }
  #main.front #whatsnew .wrapper .whatsnew-inner .newslist .post-item .inner .post-content .post-title {
    order: 2;
  }
  #main.front #whatsnew .wrapper .whatsnew-inner .newslist .post-item .inner .post-content .post-category {
    order: 1;
  }
  #main.front #whatsnew .wrapper .no-post {
    font-weight: bold;
    padding-top: 35px;
  }
  #main.front #whatsnew .wrapper .tab-contents {
    margin-top: 25px;
  }
  #main.front #whatsnew .wrapper .tab-nav-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
  #main.front #whatsnew .wrapper .tab-nav {
    display: flex;
    list-style: none;
    gap: 10px;
    margin: 0;
    background: #cc000f;
    border-radius: 100vh;
    padding: 8px 35px;
  }
  #main.front #whatsnew .wrapper .tab-nav li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5em 1.2em;
    color: #fff;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
    white-space: nowrap;
  }
  #main.front #whatsnew .wrapper .tab-nav li.active {
    color: #fff;
    opacity: 1;
  }
  #main.front #whatsnew .wrapper .tab-content-news {
    display: none;
  }
  #main.front #whatsnew .wrapper .tab-content-news.active {
    display: block;
  }
  #main.front #link__banner {
    max-width: 1200px;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }
  #main.front #link__banner .headline {
    text-align: center;
    padding-bottom: 25px;
    color: #333;
    font-size: 1.3em;
  }
  #main.front #link__banner .headline .shop-word-01 {
    font-size: 0.9em;
    padding-bottom: 5px;
  }
  #main.front #link__banner .headline .shop-word-02 {
    font-size: 1.3em;
    padding-bottom: 10px;
  }
  #main.front #link__banner .headline h2 {
    font-size: 1.8em;
  }
  #main.front #link__banner .toshop_banner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  #main.front #link__banner .toshop_banner li {
    list-style-type: none;
  }
  #main.front #link__banner .toshop_banner li img {
    width: 100%;
    height: auto;
  }
  #main.front #factory {
    background-color: #F7F4F2;
    padding: 115px 0px 165px;
  }
  #main.front #factory .wrapper {
    position: relative;
    width: 80%;
    max-width: 1200px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 85px;
    box-sizing: border-box;
  }
  #main.front #factory .wrapper .sticky-item {
    flex-basis: 35%;
    position: sticky;
    top: 95px;
  }
  #main.front #factory .wrapper .sticky-item .headline p {
    font-size: 1.8em;
    font-weight: bold;
    color: #e60012;
    padding: 0px;
    transform: translate(-0.5em, 1.3em);
    white-space: nowrap;
  }
  #main.front #factory .wrapper .sticky-item .headline h2 {
    font-size: 5em;
    padding-bottom: 0.5em;
  }
  #main.front #factory .wrapper .sticky-item .inner .text {
    font-size: 1.4em;
    line-height: 1.8em;
    padding-bottom: 4em;
  }
  #main.front #factory .wrapper .sticky-item .link p a {
    position: relative;
    font-size: 1.3em;
    border: 3px solid #333333;
    font-weight: bold;
    display: inline-block;
    padding: 10px 85px 10px 25px;
    border-radius: 100vh;
    color: #333333;
  }
  #main.front #factory .wrapper .block {
    height: auto;
    flex-basis: 65%;
  }
  #main.front #factory .wrapper .block .bland-image li {
    width: 100%;
    padding-bottom: 15px;
    list-style-type: none;
  }
  #main.front #factory .wrapper .block .bland-image li img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
  }
  #main.front #product {
    padding: 85px 0px 85px;
  }
  #main.front #product .wrapper {
    height: auto;
  }
  #main.front #product .wrapper .block {
    width: 80%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between; /* 両端に要素を振り分ける */
    align-items: center;
    gap: 85px;
    box-sizing: border-box;
  }
  #main.front #product .wrapper .block .headline h3 {
    font-size: 1.4em;
    transform: translate(-0.6em, 0.8em);
    color: #e60012;
  }
  #main.front #product .wrapper .block .headline h2 {
    font-size: 3em;
    padding-bottom: 1em;
  }
  #main.front #product .wrapper .block .link a {
    transform: translateY(-18px);
    position: relative;
    font-size: 1.3em;
    border: 3px solid #333333;
    font-weight: bold;
    display: inline-block;
    padding: 10px 85px 10px 25px;
    border-radius: 100vh;
    color: #ffffff;
    background-color: #e60012;
  }
  #main.front #product .wrapper .wrap_bland .swiper-wrapper {
    padding-bottom: 55px;
  }
  #main.front #product .wrapper .wrap_bland .headline {
    width: 80%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  #main.front #product .wrapper .wrap_bland .headline h3 {
    font-size: 2em;
    padding-bottom: 1em;
  }
  #main.front #product .wrapper .wrap_bland .headline p {
    font-size: 1.2em;
    line-height: 1.7em;
  }
  #main.front #product .wrapper .blandSwiper {
    position: relative;
    overflow-x: hidden;
    /* 左右の矢印ボタンのスタイル */
    /* ホバー時のエフェクト */
    /* デフォルトの矢印アイコンの位置調整 */
  }
  #main.front #product .wrapper .blandSwiper .blandblock {
    display: grid;
    grid-template-columns: 100%;
    gap: 0px;
    padding-top: 0px;
    box-sizing: border-box;
    border: 3px solid #333;
    border-radius: 20px 20px 20px 20px;
  }
  #main.front #product .wrapper .blandSwiper .blandblock .title {
    z-index: 10;
    width: 100%;
  }
  #main.front #product .wrapper .blandSwiper .blandblock .title .bland_header_card {
    position: relative;
    padding-bottom: 15px;
  }
  #main.front #product .wrapper .blandSwiper .blandblock .title .bland_header_card h3#itemA {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    z-index: 10;
    margin: 0;
    padding: 0;
  }
  #main.front #product .wrapper .blandSwiper .blandblock .title .bland_header_card #itemD {
    z-index: 5;
  }
  #main.front #product .wrapper .blandSwiper .blandblock .title .bland_header_card #itemD img {
    border-radius: 20px 20px 0 0;
    width: 100%;
    display: block;
  }
  #main.front #product .wrapper .blandSwiper .blandblock .title p {
    position: relative;
    font-size: 1.2em;
    line-height: 1.6em;
    padding: 20px;
    z-index: 10;
  }
  #main.front #product .wrapper .blandSwiper .blandblock .title .link {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 10;
  }
  #main.front #product .wrapper .blandSwiper .blandblock .title .link a {
    position: relative;
    font-size: 1.1em;
    border: 3px solid #333333;
    font-weight: bold;
    display: inline-block;
    padding: 10px 45px 10px 45px;
    border-radius: 100vh;
    color: #ffffff;
    background-color: #e60012;
  }
  #main.front #product .wrapper .blandSwiper .swiper-button-prev,
  #main.front #product .wrapper .blandSwiper .swiper-button-next {
    width: 65px; /* 丸のサイズ */
    height: 65px;
    background-color: #e60012; /* 赤い背景色 */
    border-radius: 50%; /* 丸くする */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff; /* 矢印の色 */
    font-size: 20px; /* 矢印のサイズ */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* 軽い影を追加 */
    transition: background-color 0.3s ease, transform 0.3s ease; /* ホバー時のアニメーション */
    z-index: 10; /* 必要に応じて調整 */
  }
  #main.front #product .wrapper .blandSwiper .swiper-button-prev:hover,
  #main.front #product .wrapper .blandSwiper .swiper-button-next:hover {
    background-color: #cc000f; /* ホバー時に少し濃い赤色にする */
    transform: scale(1.1); /* 拡大エフェクト */
  }
  #main.front #product .wrapper .blandSwiper .swiper-button-prev::after,
  #main.front #product .wrapper .blandSwiper .swiper-button-next::after {
    font-size: 18px; /* 矢印の大きさを調整 */
  }
  #main.front #product .wrapper .blandSwiper .swiper-thumbs {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-top: 55px;
    margin-bottom: 55px;
  }
  #main.front #product .wrapper .blandSwiper .swiper-thumb {
    cursor: pointer;
    width: 185px; /* 任意のサイズ */
    height: auto;
    overflow: hidden;
    border-radius: 100vh;
    border: 2px solid #333;
    background: #F7F4F2;
    transition: border-color 0.3s ease;
    padding: 7px 25px;
    box-sizing: border-box;
  }
  #main.front #product .wrapper .blandSwiper .swiper-thumb img {
    width: 100%;
    height: auto;
    vertical-align: middle;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #main.front #product .wrapper .blandSwiper .swiper-thumb:hover,
  #main.front #product .wrapper .blandSwiper .swiper-thumb.active {
    opacity: 0.7;
  }
  #main.front #about-items {
    position: relative;
    padding: 85px 0px;
  }
  #main.front #about-items .wrapper {
    width: 80%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between; /* 両端に要素を振り分ける */
    align-items: center;
    gap: 85px;
    box-sizing: border-box;
  }
  #main.front #about-items .wrapper .block {
    position: relative;
    z-index: 5;
  }
  #main.front #about-items .wrapper .block .headline {
    padding-bottom: 55px;
  }
  #main.front #about-items .wrapper .block .headline h3 {
    font-size: 1.4em;
    transform: translate(-0.6em, 0.8em);
    color: #e60012;
  }
  #main.front #about-items .wrapper .block .headline h2 {
    font-size: 3em;
    padding-bottom: 55px;
  }
  #main.front #about-items .wrapper .block .headline p {
    font-size: 1.3em;
    line-height: 1.8em;
  }
  #main.front #about-items .wrapper .block .link {
    position: relative;
    z-index: 10;
  }
  #main.front #about-items .wrapper .block .link a {
    position: relative;
    font-size: 1.3em;
    border: 3px solid #333333;
    font-weight: bold;
    display: inline-block;
    padding: 10px 85px 10px 25px;
    border-radius: 100vh;
    color: #ffffff;
    background-color: #e60012;
  }
  #main.front #about-items .wrapper .items {
    position: relative;
    z-index: 10;
    width: 100%;
    overflow-x: hidden;
    margin-right: calc(50% - 50vw);
    box-sizing: border-box;
  }
  #main.front #about-items .wrapper .items .itemsSwiper {
    padding-right: 5vw;
  }
  #main.front #about-items .wrapper .items .itemsSwiper .swiper-wrapper .itemswrap {
    background: #FFF;
    border-radius: 15px;
    margin-right: 8px;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.15); /* 影を右下にズラして、ぼかしなし */
  }
  #main.front #about-items .wrapper .items .itemsSwiper .swiper-wrapper .itemswrap .post-thumbnail img {
    width: 100%;
    height: auto;
  }
  #main.front #about-items .wrapper .items .itemsSwiper .swiper-wrapper .itemswrap .items-content {
    padding: 0px 10px 10px 20px;
  }
  #main.front #about-items .wrapper .items .itemsSwiper .swiper-wrapper .itemswrap .items-content .post-title {
    font-size: 1.1em;
    padding-bottom: 25px;
  }
  #main.front #about-items .wrapper .items .itemsSwiper .swiper-wrapper .itemswrap .items-content .post-title a {
    color: #333;
  }
}
/* スマホ対応 */
@media screen and (max-width: 768px) {
  #main.front {
    margin-top: 83vh;
    background-color: #ffffff;
    box-sizing: border-box;
  }
  #main.front #whatsnew {
    padding-bottom: 0px;
    transform: translateY(-15px);
  }
  #main.front #whatsnew .wrapper {
    width: 100vw;
    /*** ニュース項目のタブへの指示 ***/
    /*** ニュース項目のタブへの指示 ***/
  }
  #main.front #whatsnew .wrapper .newslist .post-item {
    display: grid;
    grid-template-columns: 100%;
    gap: 10px;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    border-bottom: 1px dashed #999;
    padding: 15px 0px;
  }
  #main.front #whatsnew .wrapper .newslist .post-item .inner {
    padding: 0px 20px;
    border-radius: 20px;
    margin-bottom: 7px;
  }
  #main.front #whatsnew .wrapper .newslist .post-item .inner a {
    color: #333333;
  }
  #main.front #whatsnew .wrapper .newslist .post-item .inner .post-category .post-cat a {
    display: inline-block;
    background: #efefef;
    color: #333;
    padding: 3px 15px;
    border-radius: 100vh;
    font-size: 0.8em;
    margin-top: 5px;
  }
  #main.front #whatsnew .wrapper .no-post {
    font-weight: bold;
    padding-top: 35px;
  }
  #main.front #whatsnew .wrapper .tab-contents {
    margin-top: 0px;
  }
  #main.front #whatsnew .wrapper .tab-nav-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    width: 55%;
    margin-left: auto;
    margin-right: auto;
  }
  #main.front #whatsnew .wrapper .tab-nav {
    display: flex;
    list-style: none;
    gap: 10px;
    margin: 0;
    background: #cc000f;
    border-radius: 100vh;
    padding: 5px 25px;
  }
  #main.front #whatsnew .wrapper .tab-nav li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 15px;
    color: #fff;
    font-size: 0.9em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
    white-space: nowrap;
  }
  #main.front #whatsnew .wrapper .tab-nav li.active {
    color: #fff;
    opacity: 1;
  }
  #main.front #whatsnew .wrapper .tab-content-news {
    display: none;
  }
  #main.front #whatsnew .wrapper .tab-content-news.active {
    display: block;
  }
  #link__banner {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }
  #link__banner .headline {
    padding-bottom: 25px;
  }
  #link__banner .headline .shop-word-01 {
    font-size: 0.9em;
    padding-bottom: 2px;
    text-align: center;
  }
  #link__banner .headline .shop-word-02 {
    font-size: 1.2em;
    padding-bottom: 10px;
    text-align: center;
  }
  #link__banner .headline h2 {
    text-align: center;
    font-size: 1.8em;
  }
  #link__banner .headline h2 span {
    display: block;
    font-size: 0.6em;
  }
  #link__banner .toshop_banner {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 100%;
    gap: 10px;
  }
  #link__banner .toshop_banner li {
    list-style-type: none;
  }
  #link__banner .toshop_banner li img {
    width: 100%;
    height: auto;
  }
  #massage {
    padding: 55px 0px;
  }
  #massage .wrapper {
    position: relative;
    align-items: center;
    box-sizing: border-box;
  }
  #massage .wrapper .block.one {
    display: grid;
    grid-template-areas: "areaA" "areaC" "areaB";
    grid-template-columns: 100%;
    gap: 20px;
  }
  #massage .wrapper .block.one #itemA {
    grid-area: areaA;
  }
  #massage .wrapper .block.one #itemB {
    grid-area: areaB;
  }
  #massage .wrapper .block.one #itemC {
    grid-area: areaC;
  }
  #massage .wrapper .block.one .headline {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }
  #massage .wrapper .block.one .headline h2 {
    font-size: 1.8em;
    padding-bottom: 10px;
  }
  #massage .wrapper .block.one .headline p {
    font-size: 1.1em;
    padding-bottom: 3px;
    font-weight: bold;
    color: #e60012;
    transform: translateX(-10px);
  }
  #massage .wrapper .block.one .inner {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }
  #massage .wrapper .block.one .inner .text {
    font-size: 1em;
    line-height: 1.8em;
  }
  #factory {
    background-color: #F7F4F2;
    padding: 55px 0px 55px;
  }
  #factory .wrapper {
    width: 80%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }
  #factory .wrapper .sticky-item {
    display: grid;
    grid-template-areas: "areaA" "areaD" "areaB" "areaC";
    grid-template-columns: 100%;
    gap: 20px;
  }
  #factory .wrapper .sticky-item #itemA {
    grid-area: areaA;
  }
  #factory .wrapper .sticky-item #itemB {
    grid-area: areaB;
  }
  #factory .wrapper .sticky-item #itemC {
    grid-area: areaC;
  }
  #factory .wrapper .sticky-item #itemD {
    grid-area: areaD;
  }
  #factory .wrapper .sticky-item .headline p {
    font-size: 1.1em;
    font-weight: bold;
    color: #e60012;
    padding: 0px;
    transform: translate(-0.5em, 0.5em);
    white-space: nowrap;
  }
  #factory .wrapper .sticky-item .headline h2 {
    font-size: 3em;
    padding-bottom: 5px;
    line-height: 1em;
  }
  #factory .wrapper .sticky-item .inner .text {
    font-size: 1.1em;
    line-height: 1.8em;
    padding-bottom: 25px;
  }
  #factory .wrapper .sticky-item .link p {
    text-align: center;
  }
  #factory .wrapper .sticky-item .link p a {
    position: relative;
    font-size: 1em;
    border: 3px solid #333333;
    font-weight: bold;
    display: inline-block;
    padding: 10px 25px 10px 25px;
    border-radius: 100vh;
    color: #333333;
  }
  #factory .productSwiper {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
  #factory .swiper-slide img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  #factory .swiper-pagination {
    margin-top: 10px;
  }
  #product {
    padding: 55px 0px 85px;
  }
  #product .wrapper {
    height: auto;
  }
  #product .wrapper .block {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    padding-bottom: 25px;
  }
  #product .wrapper .block .headline h3 {
    font-size: 1.1em;
    transform: translate(-0.4em, 1em);
    color: #e60012;
  }
  #product .wrapper .block .headline h2 {
    font-size: 2.8em;
    line-height: 1em;
    padding-bottom: 25px;
  }
  #product .wrapper .block .link a {
    position: relative;
    font-size: 0.9em;
    border: 3px solid #333333;
    font-weight: bold;
    display: inline-block;
    padding: 10px 25px 10px 25px;
    border-radius: 100vh;
    color: #ffffff;
    background-color: #e60012;
  }
  #product .wrapper .wrap_bland .swiper-wrapper {
    padding-bottom: 35px;
  }
  #product .wrapper .wrap_bland .headline {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 35px;
  }
  #product .wrapper .wrap_bland .headline h3 {
    font-size: 1.6em;
    padding-bottom: 25px;
  }
  #product .wrapper .wrap_bland .headline p {
    font-size: 1em;
    line-height: 1.7em;
  }
  #product .wrapper .blandSwiper {
    position: relative;
    overflow-x: hidden;
    /* 左右の矢印ボタンのスタイル */
    /* ホバー時のエフェクト */
    /* デフォルトの矢印アイコンの位置調整 */
  }
  #product .wrapper .blandSwiper .swiper-thumbs {
    display: none;
  }
  #product .wrapper .blandSwiper .blandblock {
    display: grid;
    grid-template-columns: 100%;
    gap: 0px;
    padding-top: 0px;
    box-sizing: border-box;
    border: 3px solid #333;
    border-radius: 20px 20px 20px 20px;
  }
  #product .wrapper .blandSwiper .blandblock .title {
    z-index: 10;
    width: 100%;
  }
  #product .wrapper .blandSwiper .blandblock .title .bland_header_card {
    position: relative;
    padding-bottom: 15px;
  }
  #product .wrapper .blandSwiper .blandblock .title .bland_header_card h3#itemA {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    z-index: 10;
    margin: 0;
    padding: 0;
  }
  #product .wrapper .blandSwiper .blandblock .title .bland_header_card #itemD {
    z-index: 5;
  }
  #product .wrapper .blandSwiper .blandblock .title .bland_header_card #itemD img {
    border-radius: 20px 20px 0 0;
    width: 100%;
    display: block;
  }
  #product .wrapper .blandSwiper .blandblock .title p {
    position: relative;
    font-size: 1em;
    line-height: 1.6em;
    padding: 0px 15px 55px;
    z-index: 10;
  }
  #product .wrapper .blandSwiper .blandblock .title .link {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 10;
  }
  #product .wrapper .blandSwiper .blandblock .title .link a {
    position: relative;
    width: 100%;
    font-size: 0.9em;
    border: 3px solid #333333;
    font-weight: bold;
    display: inline-block;
    padding: 10px 25px 10px 25px;
    border-radius: 100vh;
    color: #ffffff;
    background-color: #e60012;
    box-sizing: border-box;
  }
  #product .wrapper .blandSwiper .swiper-button-prev,
  #product .wrapper .blandSwiper .swiper-button-next {
    width: 35px; /* 丸のサイズ */
    height: 35px;
    background-color: #e60012; /* 赤い背景色 */
    border-radius: 50%; /* 丸くする */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff; /* 矢印の色 */
    font-size: 20px; /* 矢印のサイズ */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* 軽い影を追加 */
    transition: background-color 0.3s ease, transform 0.3s ease; /* ホバー時のアニメーション */
    z-index: 10; /* 必要に応じて調整 */
  }
  #product .wrapper .blandSwiper .swiper-button-prev:hover,
  #product .wrapper .blandSwiper .swiper-button-next:hover {
    background-color: #cc000f; /* ホバー時に少し濃い赤色にする */
    transform: scale(1.1); /* 拡大エフェクト */
  }
  #product .wrapper .blandSwiper .swiper-button-prev::after,
  #product .wrapper .blandSwiper .swiper-button-next::after {
    font-size: 18px; /* 矢印の大きさを調整 */
  }
  #product .wrapper .blandSwiper .swiper-thumb:hover,
  #product .wrapper .blandSwiper .swiper-thumb.active {
    opacity: 0.7;
  }
  #about-items {
    position: relative;
    padding: 55px 0px;
  }
  #about-items .wrapper {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 100%;
    gap: 20px;
    box-sizing: border-box;
  }
  #about-items .wrapper .block {
    position: relative;
    z-index: 5;
  }
  #about-items .wrapper .block .headline {
    padding-bottom: 15px;
  }
  #about-items .wrapper .block .headline h3 {
    font-size: 0.9em;
    transform: translate(-0.6em, 0.8em);
    color: #e60012;
  }
  #about-items .wrapper .block .headline h2 {
    font-size: 2.1em;
    padding-bottom: 15px;
  }
  #about-items .wrapper .block .headline p {
    font-size: 1.1em;
    line-height: 1.8em;
  }
  #about-items .wrapper .items {
    position: relative;
    z-index: 10;
    width: 100%;
  }
  #about-items .wrapper .items .itemsSwiper {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding-left: 5vw;
    padding-right: 5vw;
    box-sizing: border-box;
  }
  #about-items .wrapper .items .itemsSwiper .swiper-wrapper .itemswrap {
    background: #FFF;
    border-top: 1px solid #333;
    border-right: 1px dashed #333;
    border-bottom: 1px solid #333;
    padding: 15px;
    display: grid;
    grid-template-columns: 100%;
    gap: 20px;
    box-sizing: border-box;
  }
  #about-items .wrapper .items .itemsSwiper .swiper-wrapper .itemswrap:nth-child(1) {
    border-left: 1px solid #333;
    box-sizing: border-box;
  }
  #about-items .wrapper .items .itemsSwiper .swiper-wrapper .itemswrap:nth-last-child(1) {
    border-right: 1px solid #333;
    box-sizing: border-box;
  }
  #about-items .wrapper .items .itemsSwiper .swiper-wrapper .itemswrap .post-thumbnail img {
    width: 100%;
    height: 100%;
  }
  #about-items .wrapper .items .itemsSwiper .swiper-wrapper .itemswrap .items-content {
    padding: 0px 10px 10px 20px;
  }
  #about-items .wrapper .items .itemsSwiper .swiper-wrapper .itemswrap .items-content .post-title {
    font-size: 1.1em;
    padding-bottom: 25px;
  }
  #about-items .wrapper .items .itemsSwiper .swiper-wrapper .itemswrap .items-content .post-title a {
    color: #333;
  }
  #about-items .wrapper .items .link {
    position: relative;
    z-index: 10;
    margin-top: 35px;
  }
  #about-items .wrapper .items .link a {
    position: relative;
    font-size: 1em;
    border: 3px solid #333333;
    font-weight: bold;
    display: inline-block;
    padding: 10px 35px 10px 35px;
    border-radius: 100vh;
    color: #ffffff;
    background-color: #e60012;
  }
  #about-post {
    padding-bottom: 55px;
  }
  #about-post .link_pc {
    display: none;
  }
  #about-post .wrapper {
    position: relative;
    width: 95%; /* 左右に30pxずつの余白 */
    margin: 55px auto 105px auto; /* 上:30px, 左右:auto, 下:55px */
  }
  #about-post .wrapper .link_sp {
    position: absolute;
    bottom: -135px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  #about-post .wrapper .link_sp a {
    font-size: 1.1em;
    border: 3px solid #333333;
    font-weight: bold;
    display: inline-block;
    padding: 10px 40px 10px 40px;
    border-radius: 100vh;
    color: #333;
    background-color: #efefef;
    margin-bottom: 35px;
    white-space: nowrap;
  }
  #about-post .wrapper .block {
    position: relative;
  }
  #about-post .wrapper .block .headline {
    padding: 0px 20px 35px 20px;
  }
  #about-post .wrapper .block .headline .title {
    position: relative;
  }
  #about-post .wrapper .block .headline .title h2 {
    font-weight: normal;
    font-size: 1.1em;
    color: #e60012;
    font-weight: bold;
    padding-bottom: 0px;
    line-height: 1em;
  }
  #about-post .wrapper .block .headline .title p {
    font-weight: bold;
    font-size: 2em;
    padding-bottom: 10px;
  }
  #about-post .wrapper .mySwiper .swiper-wrapper .swiper-slide {
    background-color: #F7F4F2;
    width: 25%;
    box-sizing: border-box;
    border-radius: 25px 25px 25px 3px;
    height: 100%; /* 高さをフルに占有 */
    overflow: hidden;
  }
  #about-post .wrapper .mySwiper .swiper-wrapper .swiper-slide .post-thumbnail img {
    width: 100%;
  }
  #about-post .wrapper .mySwiper .swiper-wrapper .swiper-slide .post-content {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    padding: 15px 0px 55px;
  }
  #about-post .wrapper .mySwiper .swiper-wrapper .swiper-slide .post-content .post-date {
    font-size: 0.9em;
    padding-bottom: 12px;
  }
  #about-post .wrapper .mySwiper .swiper-wrapper .swiper-slide .post-content .post-title {
    padding-bottom: 12px;
    font-size: 1.2em;
  }
  #about-post .wrapper .mySwiper .swiper-wrapper .swiper-slide .post-content .post-title a {
    color: #e60012;
  }
  #about-post .wrapper .mySwiper .swiper-wrapper .swiper-slide .post-content .post-excerpt {
    line-height: 1.7em;
    padding-bottom: 1.5em;
    font-size: 1.1em;
  }
  #about-post .wrapper .mySwiper .swiper-wrapper .swiper-slide .post-content .post-category ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  #about-post .wrapper .mySwiper .swiper-wrapper .swiper-slide .post-content .post-category ul li {
    list-style-type: none;
  }
  #about-post .wrapper .mySwiper .swiper-wrapper .swiper-slide .post-content .post-category ul li a {
    border: 1px solid #e60012;
    font-size: 0.8em;
    background: #e60012;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 100vh;
  }
  #about-post .wrapper .character-img {
    display: none;
  }
}
/* パソコン */
@media screen and (min-width: 769px) {
  #page {
    position: relative;
    padding-top: 100px;
    padding-bottom: 250px;
  }
  #page .fixedpages-headline-background {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 0;
  }
  #page .fixedpages-footer-background {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 0;
  }
  #page .wrapper {
    position: relative;
    width: 85%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding: 80px;
    background: #FFF;
    border-radius: 20px;
    box-sizing: border-box;
    z-index: 1;
  }
  #page .wrapper #business .cat-ttl {
    padding-bottom: 35px;
  }
  #page .wrapper #business .cat-ttl h3 {
    font-size: 2em;
  }
  #page .wrapper #business .cat-subttl {
    padding-top: 55px;
  }
  #page .wrapper #business .cat-subttl h3 {
    font-size: 2em;
  }
  #page .wrapper #business .inner .text p {
    padding: 0px;
    font-size: 1.1em;
    line-height: 2em;
  }
  #page .wrapper #business .inner .greetings {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 35px;
    padding-top: 10px;
    padding-bottom: 50px;
    align-items: center;
  }
  #page .wrapper #business .inner .greetings .message {
    font-size: 1.1em;
    line-height: 2.5em;
    transform: translateY(-15px);
  }
  #page .wrapper #business .inner .greetings .message h3 {
    font-size: 1.2em;
    padding-bottom: 0.7em;
    font-weight: normal;
    border-bottom: 1px dotted #999;
    margin-bottom: 0.7em;
  }
  #page .wrapper #profile .cat-ttl {
    padding-bottom: 35px;
  }
  #page .wrapper #profile .cat-ttl h3 {
    font-size: 2em;
  }
  #page .wrapper #profile .inner dl {
    margin: 0px;
    padding: 0px;
    padding-bottom: 55px;
  }
  #page .wrapper #profile .inner dl dt {
    font-size: 1.2em;
    font-weight: bold;
    padding-top: 15px;
    padding-left: 0px;
    padding-bottom: 10px;
  }
  #page .wrapper #profile .inner dl dt:nth-child(1) {
    padding-top: 0px;
    padding-left: 0px;
  }
  #page .wrapper #profile .inner dl dd {
    font-size: 1.1em;
    padding-left: 0px;
    line-height: 1.7em;
    padding-bottom: 15px;
    border-bottom: 1px dashed #cccccc;
  }
  #page .wrapper #history .cat-ttl {
    padding-bottom: 35px;
  }
  #page .wrapper #history .cat-ttl h3 {
    font-size: 2em;
  }
  #page .wrapper #history .inner dl {
    margin: 0px;
    padding: 0px;
    padding-bottom: 55px;
  }
  #page .wrapper #history .inner dl dt {
    font-size: 1.2em;
    font-weight: bold;
    padding-top: 15px;
    padding-left: 0px;
    padding-bottom: 10px;
  }
  #page .wrapper #history .inner dl dt:nth-child(1) {
    padding-top: 0px;
    padding-left: 0px;
  }
  #page .wrapper #history .inner dl dd {
    font-size: 1.1em;
    padding-left: 0px;
    line-height: 1.7em;
    padding-bottom: 15px;
    border-bottom: 1px dashed #cccccc;
  }
  #page #profile.table-design .headline h2.title {
    padding-bottom: 35px;
    font-size: 2.5em;
  }
  #page #profile.table-design .template-contents h4 {
    font-size: 1.2em;
    font-weight: bold;
    padding-top: 15px;
    padding-left: 0px;
    padding-bottom: 10px;
  }
  #page #profile.table-design .template-contents p {
    font-size: 1.1em;
    padding-left: 0px;
    line-height: 1.7em;
    padding-bottom: 15px;
    border-bottom: 1px dashed #cccccc;
  }
  #page #profile.table-design .template-contents ul.wp-block-list li {
    list-style-type: none;
    line-height: 2em;
    position: relative;
    padding-left: 1.5em;
  }
  #page #profile.table-design .template-contents ul.wp-block-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: green;
  }
  #page .wp-block-media-text__content p {
    padding-bottom: 5px;
    line-height: 2em;
  }
  #page .wp-block-heading {
    font-size: 1.5em;
    margin-bottom: 15px;
  }
}
/* スマホ対応 */
@media screen and (max-width: 768px) {
  #page {
    position: relative;
    padding-top: 15px;
    padding-bottom: 115px;
  }
  #page .fixedpages-headline-background {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 0;
  }
  #page .fixedpages-footer-background {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 0;
  }
  #page .wrapper {
    position: relative;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 15px;
    background: #FFF;
    border-radius: 20px;
    box-sizing: border-box;
    z-index: 1;
  }
  #page .wrapper #business .cat-ttl {
    padding-top: 25px;
    padding-bottom: 15px;
  }
  #page .wrapper #business .cat-ttl h3 {
    font-size: 1.6em;
  }
  #page .wrapper #business .cat-subttl {
    padding-top: 55px;
  }
  #page .wrapper #business .cat-subttl h3 {
    font-size: 1.6em;
  }
  #page .wrapper #business .inner .text p {
    padding: 0px;
    font-size: 1.1em;
    line-height: 1.8em;
  }
  #page .wrapper #business .inner .greetings {
    display: grid;
    grid-template-columns: 100%;
    gap: 25px;
    padding-top: 10px;
    padding-bottom: 35px;
  }
  #page .wrapper #business .inner .greetings .headline {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }
  #page .wrapper #business .inner .greetings .message {
    font-size: 1.1em;
    line-height: 1.8em;
  }
  #page .wrapper #business .inner .greetings .message h3 {
    font-size: 1.1em;
    padding-bottom: 0.5em;
    font-weight: normal;
    border-bottom: 1px dotted #999;
    margin-bottom: 0.5em;
  }
  #page .wrapper #profile .cat-ttl {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 35px;
  }
  #page .wrapper #profile .cat-ttl h3 {
    font-size: 1.6em;
  }
  #page .wrapper #profile .inner dl {
    margin: 0px;
    padding: 0px;
    padding-bottom: 55px;
  }
  #page .wrapper #profile .inner dl dt {
    font-size: 1.2em;
    font-weight: bold;
    padding-top: 15px;
    padding-left: 0px;
    padding-bottom: 10px;
  }
  #page .wrapper #profile .inner dl dt:nth-child(1) {
    padding-top: 0px;
    padding-left: 0px;
  }
  #page .wrapper #profile .inner dl dd {
    font-size: 1.1em;
    padding-left: 0px;
    line-height: 1.7em;
    padding-bottom: 15px;
    border-bottom: 1px dashed #cccccc;
  }
  #page .wrapper #history .cat-ttl {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 35px;
  }
  #page .wrapper #history .cat-ttl h3 {
    font-size: 1.6em;
  }
  #page .wrapper #history .inner dl {
    margin: 0px;
    padding: 0px;
    padding-bottom: 55px;
  }
  #page .wrapper #history .inner dl dt {
    font-size: 1.2em;
    font-weight: bold;
    padding-top: 15px;
    padding-left: 0px;
    padding-bottom: 10px;
  }
  #page .wrapper #history .inner dl dt:nth-child(1) {
    padding-top: 0px;
    padding-left: 0px;
  }
  #page .wrapper #history .inner dl dd {
    font-size: 1.1em;
    padding-left: 0px;
    line-height: 1.7em;
    padding-bottom: 15px;
    border-bottom: 1px dashed #cccccc;
  }
  #page #profile.table-design .headline h2.title {
    padding-bottom: 35px;
    font-size: 2.5em;
  }
  #page #profile.table-design .template-contents h4 {
    font-size: 1.2em;
    font-weight: bold;
    padding-top: 15px;
    padding-left: 0px;
    padding-bottom: 10px;
  }
  #page #profile.table-design .template-contents p {
    font-size: 1.1em;
    padding-left: 0px;
    line-height: 1.7em;
    padding-bottom: 15px;
    border-bottom: 1px dashed #cccccc;
  }
  #page #profile.table-design .template-contents ul.wp-block-list li {
    list-style-type: none;
    line-height: 2em;
    position: relative;
    padding-left: 1.5em;
  }
  #page #profile.table-design .template-contents ul.wp-block-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: green;
  }
  #page .wp-block-media-text__media {
    padding-bottom: 25px;
  }
  #page .wp-block-media-text > .wp-block-media-text__content {
    padding-left: 10px;
    padding-right: 10px;
  }
  #page .wp-block-media-text > .wp-block-media-text__content p {
    width: 100%;
    font-size: 1.1em;
    padding-bottom: 5px;
    line-height: 1.6em;
  }
  #page .wp-block-heading {
    font-size: 1.5em;
    margin-bottom: 15px;
  }
}
#contents-single {
  position: relative;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
#contents-single .blogs-back-decoration {
  position: absolute;
  bottom: 0px;
  left: 50%;
  width: 100%;
  height: auto;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 2;
  vertical-align: bottom;
}
#contents-single .blogs-back-decoration img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}
#contents-single .wrapper {
  position: relative;
  margin: 0px;
  z-index: 5; /* 背景より前面に表示 */
}
#contents-single .wrapper .blogs-background {
  width: 100vw;
  margin-left: auto;
  margin-right: auto;
  background-size: cover; /* 背景画像を全体にフィット */
  background-position: center bottom; /* 中央揃え */
  background-repeat: no-repeat; /* 繰り返しなし */ /* Safari対応 */
  position: sticky;
  top: 0; /* ヘッダーの高さに合わせて調整 */
  height: 100vh; /* 必要に応じて調整 */
  z-index: -1; /* 背景として表示 */
}
#contents-single .related-posts {
  padding: 55px 0px 25px;
}
#contents-single .related-posts h4 {
  padding-bottom: 15px;
  font-size: 1.4em;
}
#contents-single .related-posts .blogcard {
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 20px;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 5px;
  margin-bottom: 5px;
}
#contents-single .related-posts .relate-thumbs img {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}
#contents-single .related-posts .post-content {
  padding: 10px 20px 10px 0px;
}
#contents-single .related-posts .post-content .post-title {
  padding-bottom: 10px;
  font-weight: bold;
  font-size: 1.3em;
}
#contents-single .related-posts .post-content .post-title a {
  color: #333;
}

@media screen and (min-width: 769px) {
  .post-items-appearance {
    position: absolute;
    width: 19%;
    bottom: 105px;
    right: 5%;
    box-sizing: border-box;
  }
  .post-items-appearance .title {
    color: #333;
    background: #FFF;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 15px;
    box-sizing: border-box;
  }
  .post-items-appearance .items-block .items-appearance-wrap {
    background: #FFF;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 15px;
    box-sizing: border-box;
  }
  .post-items-appearance .items-block .items-appearance-wrap a {
    display: grid;
    grid-template-columns: 100%;
    gap: 15px;
    color: #333;
  }
  .post-items-appearance .items-block .items-appearance-wrap a img {
    width: 100%;
    height: auto;
  }
  .post-items-appearance .items-block .items-appearance-wrap a .items-inner {
    padding: 0px 15px 10px 10px;
  }
  .post-items-appearance .items-block .items-appearance-wrap a .items-inner h4 {
    font-weight: bold;
    padding-bottom: 15px;
  }
  .post-items-appearance .items-block .items-appearance-wrap a .items-inner p {
    line-height: 1.7em;
    font-size: 0.9em;
  }
  .post-items-appearance .slick-prev,
  .post-items-appearance .slick-next {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    color: #333;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
  }
  .post-items-appearance .slick-prev:hover,
  .post-items-appearance .slick-next:hover {
    background: #333;
    color: #fff;
  }
  .post-items-appearance .slick-prev {
    left: -15px;
  }
  .post-items-appearance .slick-next {
    right: -15px;
  }
}
@media screen and (max-width: 768px) {
  .post-items-appearance {
    width: 100%;
    margin: 0 auto;
    padding: 0px;
    background: #fff;
    border-radius: 15px;
    box-sizing: border-box;
  }
  .post-items-appearance .title {
    color: #333;
    background: #FFF;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 15px;
    box-sizing: border-box;
  }
  .post-items-appearance .items-block {
    padding-top: 25px;
  }
  .post-items-appearance .items-block .items-appearance-wrap {
    background: #FFF;
    margin-bottom: 10px;
    padding: 10px 10px 25px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-sizing: border-box;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.15); /* 影を右下にズラして、ぼかしなし */
  }
  .post-items-appearance .items-block .items-appearance-wrap a {
    display: grid;
    grid-template-columns: 100%;
    gap: 20px;
    color: #333;
  }
  .post-items-appearance .items-block .items-appearance-wrap a img {
    width: 100%;
    height: auto;
  }
  .post-items-appearance .items-block .items-appearance-wrap a .items-inner {
    padding: 10px 25px 10px 0px;
  }
  .post-items-appearance .items-block .items-appearance-wrap a .items-inner h4 {
    font-weight: bold;
    padding-bottom: 15px;
  }
  .post-items-appearance .items-block .items-appearance-wrap a .items-inner p {
    line-height: 1.7em;
    font-size: 0.9em;
  }
  .post-items-appearance .slick-prev,
  .post-items-appearance .slick-next {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    color: #333;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
  }
  .post-items-appearance .slick-prev:hover,
  .post-items-appearance .slick-next:hover {
    background: #333;
    color: #fff;
  }
  .post-items-appearance .slick-prev {
    left: -15px;
  }
  .post-items-appearance .slick-next {
    right: -15px;
  }
  .post-items-appearance .intro-item-blogs .slick-slide {
    margin: 0 5px; /* 左右に5pxずつ隙間 */
  }
  .post-items-appearance .intro-item-blogs .slick-list {
    margin: 0 -5px; /* はみ出し防止のためマイナスマージンで調整 */
  }
  .post-items-appearance .intro-item-blogs .slick-slide {
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 769px) {
  #contents-single .article {
    border-radius: 20px;
    width: 675px;
    max-width: 45%;
    margin: 0 auto;
    margin-top: calc(-100vh + 85px); /* 余白調整 */
    background-color: #fff;
    padding-top: 0px; /* 必要に応じて調整 */
    box-sizing: border-box;
    transform: translateY(-65px);
  }
  #contents-single .article .post-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 20px 20px 0px 0px;
  }
  #contents-single .article .inner {
    padding: 1.5em;
  }
  #contents-single .article .inner .entry-header {
    padding-bottom: 15px;
  }
  #contents-single .article .inner .entry-header .post-category {
    padding-bottom: 10px;
    display: flex; /* インライン要素として振る舞うフレックスコンテナ */
    justify-content: flex-start;
    align-items: center;
    gap: 10px; /* メニュー項目間のスペース */
  }
  #contents-single .article .inner .entry-header .post-category a {
    display: inline-block;
    font-size: 0.8em;
    background-color: #FFF;
    border: 3px solid #333;
    color: #333;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 100vh;
  }
  #contents-single .article .inner .entry-header .post-category .entry-title {
    font-size: 1.6em;
    line-height: 1.5em;
  }
  #contents-single .article .inner .entry-header .post-category .posted-on {
    padding-left: 1px;
  }
  #contents-single .article .inner .entry-meta .this-writer {
    display: flex; /* インライン要素として振る舞うフレックスコンテナ */
    justify-content: flex-start;
    align-items: center;
    gap: 20px; /* メニュー項目間のスペース */
  }
  #contents-single .article .inner .entry-meta .this-writer .icon {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    overflow: hidden;
  }
  #contents-single .article .inner .entry-meta .this-writer .icon img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #contents-single .article .inner .entry-content h2, #contents-single .article .inner .entry-content h3 {
    font-size: 1.6em;
    line-height: 1.6em;
    padding-bottom: 15px;
  }
  #contents-single .article .inner .entry-content h2.has-background, #contents-single .article .inner .entry-content h3.has-background {
    margin-bottom: 25px;
    padding-bottom: 25px;
  }
  #contents-single .article .inner .entry-content .wp-block-image {
    margin-bottom: 15px;
  }
  #contents-single .article .inner .entry-content p {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 95%, #f1f1f1 95%, #f1f1f1 100%);
    background-size: 100% 2.2em; /* 行の高さと合わせた調整 */
    line-height: 2.2em; /* 行間を背景と一致させる */
    font-size: 1.2em;
    padding: 0 0.2em; /* テキストが端に寄りすぎないように余白を追加 */
    margin-bottom: 0.9em;
  }
  #contents-single .article .inner .entry-content p + h2 {
    margin-top: 35px;
  }
  #contents-single .article .inner .entry-content p + h3 {
    margin-top: 35px;
  }
  #contents-single .article .inner .entry-content h3 + ul {
    margin-top: 25px;
  }
  #contents-single .article .inner .entry-content h3 + ol {
    margin-top: 25px;
  }
  #contents-single .article .inner .entry-content ul.wp-block-list {
    padding: 20px 35px;
  }
  #contents-single .article .inner .entry-content ul.wp-block-list li {
    padding-left: 5px;
    padding-bottom: 10px;
    font-size: 1.1em;
    line-height: 1.7em;
    font-weight: bold;
  }
  #contents-single .article .inner .entry-content ol.wp-block-list {
    padding: 20px 35px;
  }
  #contents-single .article .inner .entry-content ol.wp-block-list li {
    padding-left: 5px;
    padding-bottom: 10px;
    font-size: 1.1em;
    line-height: 1.7em;
    font-weight: bold;
  }
  #contents-single .article .inner .share-buttons {
    margin-top: 1.5rem;
  }
  #contents-single .article .inner .share-buttons h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 15px;
  }
  #contents-single .article .inner .share-buttons a {
    background: #999;
    color: #FFF;
    text-decoration: none;
    padding: 5px 15px;
    font-size: 0.9em;
    border-radius: 100vh;
    margin-right: 0.5rem;
  }
  #contents-single .article .inner .share-buttons a:hover {
    opacity: 0.9;
  }
  #contents-single .article .contents-toc {
    display: none;
  }
  #contents-single .blogs-toc {
    position: absolute;
    width: 15%;
    top: 155px;
    left: 5%;
    text-align: left; /* テキスト左揃え */
    z-index: 10; /* 他の要素より前面 */
    /* 最大幅を設定し、中央要素と被らないように調整 */
    /* ヘッダー部分（タイトル＋トグル） */
    /* 中身（トグル対象） */
    /* 各リスト要素は今まで通り */
  }
  #contents-single .blogs-toc .toc__container {
    padding: 20px;
    border-radius: 15px;
    background: #e60012; /* 半透明の赤 */
    border: 1px solid rgba(255, 255, 255, 0.7); /* 境界線の微妙な白 */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  #contents-single .blogs-toc .toc__container .toc-header .title {
    color: #FFFFFF;
    margin-bottom: 10px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #FFF;
  }
  #contents-single .blogs-toc .toc__container .toc__list {
    list-style-type: none;
  }
  #contents-single .blogs-toc .toc__container .toc__list li {
    position: relative;
    margin-top: 12px;
    padding-left: 0px; /* 数字分のスペースを確保 */
  }
  #contents-single .blogs-toc .toc__container .toc__list li a {
    display: inline-block;
    color: #FFF;
  }
  #contents-single .blogs-toc .toc__container .toc__list .toc__sublist {
    padding-left: 0.6em;
  }
  #contents-single .blogs-toc .toc__container .toc__list .toc__sublist li {
    list-style-type: none;
  }
  #contents-single .blogs-toc .toc__container .toc__list .show-more {
    display: none;
  }
  #contents-single .blogs-toc .toc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }
  #contents-single .blogs-toc .toggle-icon {
    font-size: 1rem;
    color: #FFF;
    font-weight: bold;
    transition: all 0.3s ease;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  #contents-single .blogs-toc .toc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  #contents-single .blogs-toc .toc__container.open .toc-body {
    max-height: 1000px; /* 中身に応じて調整してね */
  }
  #contents-single .blogs-toc .toc__list {
    list-style: none;
    padding-left: 0;
    margin: 0;
  }
  #contents-single .blogs-toc .toc__item {
    margin-bottom: 10px;
  }
  #contents-single .blogs-toc .toc__link {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  #contents-single .blogs-toc .toc__link:hover {
    color: #e60012;
    font-weight: bold;
    text-decoration: underline;
  }
  #contents-single .blogs-toc .toc__sublist {
    list-style: none;
    padding-left: 20px;
    margin-top: 5px;
  }
  #contents-single .blogs-toc .toc__item--h3 .toc__link {
    font-size: 0.9rem;
    color: #555;
  }
}
@media screen and (max-width: 768px) {
  #contents-single .article {
    border-radius: 20px;
    width: 98%;
    margin: 0 auto;
    margin-top: calc(-100vh + 85px); /* 余白調整 */
    background-color: #fff;
    padding-top: 0px; /* 必要に応じて調整 */
    box-sizing: border-box;
    transform: translateY(-75px);
  }
  #contents-single .article .post-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 20px 20px 0px 0px;
  }
  #contents-single .article .inner {
    padding: 1.5em;
  }
  #contents-single .article .inner .entry-header {
    padding-bottom: 15px;
  }
  #contents-single .article .inner .entry-header .post-category {
    padding-bottom: 10px;
    display: flex; /* インライン要素として振る舞うフレックスコンテナ */
    justify-content: flex-start;
    align-items: center;
    gap: 10px; /* メニュー項目間のスペース */
  }
  #contents-single .article .inner .entry-header .post-category a {
    display: inline-block;
    font-size: 0.8em;
    background-color: #FFF;
    border: 2px solid #333;
    color: #333;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 100vh;
  }
  #contents-single .article .inner .entry-header .entry-title {
    font-size: 1.6em;
    line-height: 1.5em;
    padding: 10px 0px 0px;
  }
  #contents-single .article .inner .entry-header .posted-on {
    padding-left: 1px;
  }
  #contents-single .article .inner .entry-meta .this-writer {
    display: flex; /* インライン要素として振る舞うフレックスコンテナ */
    justify-content: flex-start;
    align-items: center;
    gap: 20px; /* メニュー項目間のスペース */
    padding-bottom: 15px;
  }
  #contents-single .article .inner .entry-meta .this-writer .icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    overflow: hidden;
  }
  #contents-single .article .inner .entry-meta .this-writer .icon img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #contents-single .article .inner .contents-toc {
    /* 全体囲い */
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    /* ヘッダー部分（タイトル＋トグル） */
    /* 中身（トグル対象） */
    /* 各リスト要素は今まで通り */
  }
  #contents-single .article .inner .contents-toc .toc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }
  #contents-single .article .inner .contents-toc .toc-header .title {
    font-size: 1.3em;
    font-weight: bold;
    color: #333;
    margin: 0;
    border-bottom: 2px solid #e60012;
    display: inline-block;
    padding-bottom: 7px;
  }
  #contents-single .article .inner .contents-toc .toggle-icon {
    font-size: 1rem;
    color: #333;
    font-weight: bold;
    transition: all 0.3s ease;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  #contents-single .article .inner .contents-toc .toc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  #contents-single .article .inner .contents-toc.open .toc-body {
    max-height: 1000px; /* 中身に応じて調整してね */
  }
  #contents-single .article .inner .contents-toc .toc__list {
    list-style: none;
    padding-left: 0;
    margin: 0;
  }
  #contents-single .article .inner .contents-toc .toc__item {
    margin-bottom: 10px;
  }
  #contents-single .article .inner .contents-toc .toc__link {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  #contents-single .article .inner .contents-toc .toc__link:hover {
    color: #e60012;
    font-weight: bold;
    text-decoration: underline;
  }
  #contents-single .article .inner .contents-toc .toc__sublist {
    list-style: none;
    padding-left: 20px;
    margin-top: 5px;
  }
  #contents-single .article .inner .contents-toc .toc__item--h3 .toc__link {
    font-size: 0.9rem;
    color: #555;
  }
  #contents-single .article .inner .entry-content h2, #contents-single .article .inner .entry-content h3 {
    font-size: 1.6em;
    line-height: 1.6em;
    padding-bottom: 15px;
  }
  #contents-single .article .inner .entry-content h2.has-background, #contents-single .article .inner .entry-content h3.has-background {
    margin-bottom: 25px;
    padding-bottom: 25px;
  }
  #contents-single .article .inner .entry-content .wp-block-image {
    margin-bottom: 15px;
  }
  #contents-single .article .inner .entry-content p {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 95%, #f1f1f1 95%, #f1f1f1 100%);
    background-size: 100% 2.2em; /* 行の高さと合わせた調整 */
    line-height: 2.2em; /* 行間を背景と一致させる */
    font-size: 1.2em;
    padding: 0 0.2em; /* テキストが端に寄りすぎないように余白を追加 */
    margin-bottom: 0.9em;
  }
  #contents-single .article .inner .entry-content p + h2 {
    margin-top: 35px;
  }
  #contents-single .article .inner .entry-content p + h3 {
    margin-top: 35px;
  }
  #contents-single .article .inner .entry-content h3 + ul {
    margin-top: 25px;
  }
  #contents-single .article .inner .entry-content h3 + ol {
    margin-top: 25px;
  }
  #contents-single .article .inner .entry-content ul.wp-block-list {
    padding: 20px 35px;
  }
  #contents-single .article .inner .entry-content ul.wp-block-list li {
    padding-left: 5px;
    padding-bottom: 10px;
    font-size: 1.1em;
    line-height: 1.7em;
    font-weight: bold;
  }
  #contents-single .article .inner .entry-content ol.wp-block-list {
    padding: 20px 35px;
  }
  #contents-single .article .inner .entry-content ol.wp-block-list li {
    padding-left: 5px;
    padding-bottom: 10px;
    font-size: 1.1em;
    line-height: 1.7em;
    font-weight: bold;
  }
  #contents-single .article .inner .share-buttons {
    margin-top: 1.5rem;
  }
  #contents-single .article .inner .share-buttons h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 15px;
  }
  #contents-single .article .inner .share-buttons a {
    background: #999;
    color: #FFF;
    text-decoration: none;
    padding: 5px 15px;
    font-size: 0.9em;
    border-radius: 100vh;
    margin-right: 0.5rem;
  }
  #contents-single .article .inner .share-buttons a:hover {
    opacity: 0.9;
  }
}
@media screen and (max-width: 768px) {
  #blogs-background {
    width: 100%;
    margin: 0px;
  }
  #blogs-background .blogs-background {
    display: none;
  }
  #blogs-background .blogs-toc {
    display: none;
  }
  #blogs-background .article {
    width: 100%;
    box-sizing: border-box;
    padding-top: 0px; /* 必要に応じて調整 */
  }
  #blogs-background .article .post-thumbnail img {
    width: 100%;
    height: auto;
  }
}
#sidebar {
  flex-basis: 25%;
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.reading-time {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1rem;
}

.entry-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.author-info {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #ddd;
}
.author-info h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 0.5rem;
}
.author-info p {
  font-size: 0.9rem;
  color: #555;
  margin: 0.5rem 0;
}

.post-tags {
  margin-top: 2rem;
}
.post-tags h4 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 0.5rem;
}
.post-tags .tags-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.post-tags .tags-list li {
  background-color: #e9ecef;
  padding: 0.3rem 0.8rem;
  border-radius: 3px;
}
.post-tags .tags-list li a {
  text-decoration: none;
  color: #333;
}
.post-tags .tags-list li a:hover {
  color: #007bff;
}

@media screen and (min-width: 769px) {
  #blogs-index.terms-wrap .content-container {
    margin-top: 85px;
  }
  #blogs-index.terms-wrap .content-container .postlist {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
  }
  #blogs-index.terms-wrap .content-container .postlist .post-thumbnail {
    padding-bottom: 5px;
  }
  #blogs-index.terms-wrap .content-container .postlist .post-content {
    padding-left: 15px;
    padding-right: 15px;
  }
  #blogs-index.terms-wrap .content-container .postlist .post-content .post-title a {
    color: #333;
    font-size: 0.8em;
  }
  #blogs-index .thumbs-block {
    position: relative;
    width: 100%;
    height: auto;
  }
  #blogs-index .thumbs-block .latest-post-thumbnail:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* 半透明の黒 */
    z-index: 1; /* 背景画像より前面、テキストより背面 */
  }
  #blogs-index .thumbs-block .latest-post-thumbnail img {
    width: 100%;
    height: 485px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #blogs-index .thumbs-block .headline {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 2; /* 背景画像より前面、テキストより背面 */
  }
  #blogs-index .thumbs-block .headline .title {
    text-align: center;
    color: #FFF;
    font-size: 1.4em;
    font-weight: bold;
    padding-bottom: 35px;
  }
  #blogs-index .thumbs-block .headline .pagetitle {
    text-align: center;
    color: #FFF;
    font-size: 2.1em;
    font-weight: bold;
    transform: translateY(-65px);
  }
  #blogs-index .thumbs-block .headline .posttitle {
    font-size: 1.8em;
    color: #FFF;
    font-weight: bold;
    padding-bottom: 35px;
  }
  #blogs-index .thumbs-block .link {
    position: absolute;
    bottom: 85px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 2; /* 背景画像より前面、テキストより背面 */
  }
  #blogs-index .thumbs-block .link a {
    display: inline-block;
    padding: 15px 55px;
    border-radius: 100vh;
    background: #FFF;
    font-weight: bold;
    color: #333;
  }
  #blogs-index .wrapper {
    width: 95%;
    max-width: 1580px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 55px;
  }
  #blogs-index .wrapper .tabs {
    display: flex;
    justify-content: center; /* タブを中央揃え */
    flex-wrap: wrap; /* 必要に応じて改行 */
    padding: 55px 0px 30px; /* 全体の余白 */
  }
  #blogs-index .wrapper .tabs ul {
    display: flex;
    flex-wrap: wrap; /* タブが幅を超えたら改行 */
    list-style: none; /* マーカーを非表示 */
    margin: 0;
    padding: 0;
  }
  #blogs-index .wrapper .tabs .tab-link {
    margin: 5px; /* タブ間の間隔 */
    text-align: center;
    cursor: pointer;
    border: 3px solid #333;
    display: inline-block;
    color: #333;
    padding: 10px 15px;
    border-radius: 5px;
    text-align: center;
    transition: transform 0.2s ease, background-color 0.2s ease;
  }
  #blogs-index .wrapper .tabs .tab-link:hover {
    background-color: #e60012; /* ホバー時の背景色 */
    color: #fff; /* ホバー時の文字色 */
    transform: scale(1.1);
  }
  #blogs-index .wrapper .tabs .tab-link.active {
    background-color: #e60012; /* アクティブ状態の背景色 */
    color: #fff; /* アクティブ状態の文字色 */
    border-color: #e60012; /* アクティブ状態の境界線色 */
    font-weight: bold; /* アクティブ状態の文字を太字 */
  }
  #blogs-index .wrapper .tab-content-list {
    display: none;
  }
  #blogs-index .wrapper .tab-content-list.active {
    display: block;
  }
  #blogs-index .wrapper .tab-content-container .postlist {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
  }
  #blogs-index .wrapper .tab-content-container .postlist .post-thumbnail {
    padding-bottom: 5px;
  }
  #blogs-index .wrapper .tab-content-container .postlist .post-content {
    padding-left: 15px;
    padding-right: 15px;
  }
  #blogs-index .wrapper .tab-content-container .postlist .post-content .post-title a {
    color: #333;
    font-size: 0.8em;
  }
}
@media screen and (max-width: 768px) {
  #blogs-index .thumbs-block {
    position: relative;
    width: 100%;
    height: auto;
  }
  #blogs-index .thumbs-block .latest-post-thumbnail:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* 半透明の黒 */
    z-index: 1; /* 背景画像より前面、テキストより背面 */
  }
  #blogs-index .thumbs-block .latest-post-thumbnail img {
    width: 100%;
    height: 285;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #blogs-index .thumbs-block .headline {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 2; /* 背景画像より前面、テキストより背面 */
    box-sizing: border-box;
  }
  #blogs-index .thumbs-block .headline .title {
    text-align: center;
    color: #FFF;
    font-size: 1.2em;
    font-weight: bold;
    padding-bottom: 1em;
  }
  #blogs-index .thumbs-block .headline .pagetitle {
    text-align: center;
    color: #FFF;
    font-size: 1.3em;
    font-weight: bold;
  }
  #blogs-index .thumbs-block .headline .posttitle {
    font-size: 1.1em;
    color: #FFF;
    font-weight: bold;
  }
  #blogs-index .thumbs-block .link {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 2; /* 背景画像より前面、テキストより背面 */
  }
  #blogs-index .thumbs-block .link a {
    display: inline-block;
    padding: 15px 55px;
    border-radius: 100vh;
    background: #FFF;
    font-weight: bold;
    color: #333;
  }
  #blogs-index .wrapper {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 55px;
  }
  #blogs-index .wrapper .tabs {
    display: flex;
    justify-content: center; /* タブを中央揃え */
    flex-wrap: wrap; /* 必要に応じて改行 */
    padding: 55px 0px 30px; /* 全体の余白 */
  }
  #blogs-index .wrapper .tabs ul {
    display: flex;
    flex-wrap: wrap; /* タブが幅を超えたら改行 */
    list-style: none; /* マーカーを非表示 */
    margin: 0;
    padding: 0;
  }
  #blogs-index .wrapper .tabs .tab-link {
    margin: 5px; /* タブ間の間隔 */
    text-align: center;
    cursor: pointer;
    border: 3px solid #333;
    display: inline-block;
    color: #333;
    padding: 10px 15px;
    border-radius: 5px;
    text-align: center;
    transition: transform 0.2s ease, background-color 0.2s ease;
  }
  #blogs-index .wrapper .tabs .tab-link:hover {
    background-color: #e60012; /* ホバー時の背景色 */
    color: #fff; /* ホバー時の文字色 */
    transform: scale(1.1);
  }
  #blogs-index .wrapper .tabs .tab-link.active {
    background-color: #e60012; /* アクティブ状態の背景色 */
    color: #fff; /* アクティブ状態の文字色 */
    border-color: #e60012; /* アクティブ状態の境界線色 */
    font-weight: bold; /* アクティブ状態の文字を太字 */
  }
  #blogs-index .wrapper .tab-content-list {
    display: none;
  }
  #blogs-index .wrapper .tab-content-list.active {
    display: block;
  }
  #blogs-index .wrapper .tab-content-container .postlist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  #blogs-index .wrapper .tab-content-container .postlist .post-thumbnail {
    padding-bottom: 5px;
  }
  #blogs-index .wrapper .tab-content-container .postlist .post-content {
    padding-left: 15px;
    padding-right: 15px;
  }
  #blogs-index .wrapper .tab-content-container .postlist .post-content .post-title a {
    color: #333;
    font-size: 0.8em;
  }
}
@media screen and (min-width: 769px) {
  #taxonomy-archive .taxonomy-title {
    text-align: center;
    padding-bottom: 1em;
  }
  #taxonomy-archive .wrapper {
    width: 95%;
    max-width: 1580px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 75px;
    padding-bottom: 55px;
  }
  #taxonomy-archive .wrapper .postlist {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
  }
  #taxonomy-archive .wrapper .postlist .post-thumbnail {
    padding-bottom: 5px;
  }
  #taxonomy-archive .wrapper .postlist .post-content {
    padding-left: 15px;
    padding-right: 15px;
  }
  #taxonomy-archive .wrapper .postlist .post-content .post-title a {
    color: #333;
    font-size: 0.8em;
  }
}
@media screen and (max-width: 768px) {
  #taxonomy-archive .taxonomy-title {
    text-align: center;
    padding-bottom: 1em;
  }
  #taxonomy-archive .wrapper {
    width: 95%;
    max-width: 1580px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 75px;
    padding-bottom: 55px;
  }
  #taxonomy-archive .wrapper .postlist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  #taxonomy-archive .wrapper .postlist .post-thumbnail {
    padding-bottom: 5px;
  }
  #taxonomy-archive .wrapper .postlist .post-content {
    padding-left: 15px;
    padding-right: 15px;
  }
  #taxonomy-archive .wrapper .postlist .post-content .post-title a {
    color: #333;
    font-size: 0.8em;
  }
}
.tag_list {
  border-top: 1px solid #333;
  margin-top: 55px;
  padding-top: 55px;
  text-align: center;
}
.tag_list h2 {
  text-align: center;
}
.tag_list li {
  display: inline-block;
  list-style-type: none;
}
.tag_list .tags-container {
  display: flex;
  flex-wrap: wrap; /* 改行を許可 */
  justify-content: center; /* 中央揃え */
  gap: 20px; /* 各要素間の間隔 */
  padding: 20px; /* コンテナ内の余白 */
}
.tag_list .tag-item a {
  border: 3px solid #333;
  display: inline-block;
  color: #333;
  padding: 10px 15px;
  border-radius: 5px;
  text-align: center;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.tag_list .tag-item a:hover {
  color: #FFF;
  background-color: #e60012;
  transform: scale(1.1);
}

@media screen and (min-width: 769px) {
  #contact {
    position: relative;
    background: rgb(230, 0, 18); /* 半透明の赤 */
    backdrop-filter: blur(10px); /* 背景のぼかし効果 */
    -webkit-backdrop-filter: blur(10px); /* Safari用 */
    z-index: 30;
  }
  #contact .wrapper {
    width: 85%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
    padding: 85px 0px 85px;
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 120px;
    box-sizing: border-box;
  }
  #contact .wrapper .block.header p {
    padding-bottom: 35px;
  }
  #contact .wrapper .block.header .onlinelinkarea {
    padding-bottom: 55px;
  }
  #contact .wrapper .block.header .onlinelinkarea li {
    list-style-type: none;
  }
  #contact .wrapper .block.header .onlinelinkarea li.link-contents a {
    width: 350px;
    display: inline-block;
    padding: 10px 25px;
    border-bottom: 1px dashed #FFF;
    color: #FFF;
    box-sizing: border-box;
  }
  #contact .wrapper .block.header .onlinelinkarea li.link-contents a i {
    transform: translateX(-10px);
  }
  #contact .wrapper .block.header .onlinelinkarea li.link-contents:hover {
    opacity: 0.8;
  }
  #contact .wrapper .block.header .sns .sns_area ul {
    display: flex;
    gap: 12px; /* アイテム間のスペースを15pxに指定 */
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center; /* 垂直方向の中央揃え */
  }
  #contact .wrapper .block.header .sns .sns_area ul li {
    list-style-type: none;
    font-size: 1.8em;
    width: 55px; /* 各アイテムの幅 */
    height: 55px; /* 各アイテムの高さ */
  }
  #contact .wrapper .block.header .sns .sns_area ul li a {
    text-decoration: none;
    font-size: 1em;
    color: #ffffff;
  }
  #contact .wrapper .block.header .sns .sns_area ul li a img {
    width: 100%;
    height: auto;
  }
  #contact .wrapper .block.mail {
    display: grid;
    grid-template-columns: 100%;
    gap: 15px;
  }
  #contact .wrapper .block.mail h3 {
    font-size: 3.5em;
  }
  #contact .wrapper .block.mail .contact_banner {
    display: grid;
    grid-template-columns: 100%;
    gap: 17px;
  }
  #contact .wrapper .block.mail .contact_banner .contactbox img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  #contact .wrapper .block a {
    color: #ffffff;
  }
}
@media screen and (max-width: 768px) {
  #contact {
    position: relative;
    background: rgb(230, 0, 18); /* 半透明の赤 */
    backdrop-filter: blur(10px); /* 背景のぼかし効果 */
    -webkit-backdrop-filter: blur(10px); /* Safari用 */
    z-index: 30;
  }
  #contact .wrapper {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
    padding: 35px 0px 35px;
    display: grid;
    grid-template-columns: 100%;
    gap: 30px;
    box-sizing: border-box;
  }
  #contact .wrapper .block.header p {
    padding-bottom: 35px;
  }
  #contact .wrapper .block.header .onlinelinkarea {
    padding-bottom: 35px;
  }
  #contact .wrapper .block.header .onlinelinkarea li {
    list-style-type: none;
  }
  #contact .wrapper .block.header .onlinelinkarea li.link-contents a {
    width: 350px;
    display: inline-block;
    padding: 10px 25px;
    border-bottom: 1px dashed #FFF;
    color: #FFF;
    box-sizing: border-box;
  }
  #contact .wrapper .block.header .onlinelinkarea li.link-contents a i {
    transform: translateX(-10px);
  }
  #contact .wrapper .block.header .onlinelinkarea li.link-contents:hover {
    opacity: 0.8;
  }
  #contact .wrapper .block.header .sns .sns_area ul {
    display: flex;
    gap: 10px; /* アイテム間のスペースを15pxに指定 */
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center; /* 垂直方向の中央揃え */
    margin-top: 35px;
  }
  #contact .wrapper .block.header .sns .sns_area ul li {
    list-style-type: none;
    font-size: 1.8em;
    width: 45px; /* 各アイテムの幅 */
    height: 45px; /* 各アイテムの高さ */
  }
  #contact .wrapper .block.header .sns .sns_area ul li a {
    text-decoration: none;
    font-size: 1em;
    color: #ffffff;
  }
  #contact .wrapper .block.header .sns .sns_area ul li a img {
    width: 100%;
    height: auto;
  }
  #contact .wrapper .block.mail {
    display: grid;
    grid-template-columns: 100%;
    gap: 5px;
  }
  #contact .wrapper .block.mail h3 {
    font-size: 2.5em;
  }
  #contact .wrapper .block.mail .contact_banner {
    display: grid;
    grid-template-columns: 100%;
    gap: 10px;
  }
  #contact .wrapper .block.mail .contact_banner .contactbox img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  #contact .wrapper .block a {
    color: #ffffff;
  }
}
@media screen and (min-width: 769px) {
  #mobile-menu {
    display: none;
  }
  #footer {
    position: relative;
    background-color: #F7F4F2;
  }
  #footer .wrapper {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    padding: 85px 0px 85px;
    display: grid;
    grid-template-columns: 37% 1fr;
    gap: 5%;
    box-sizing: border-box;
  }
  #footer .wrapper .introduce .logo-wrap {
    padding-bottom: 55px;
  }
  #footer .wrapper .introduce .logo-wrap .logo {
    width: 280px;
    padding-bottom: 10px;
  }
  #footer .wrapper .introduce .logo-wrap .logo a {
    width: 100%;
  }
  #footer .wrapper .introduce .logo-wrap .logo a img {
    width: 100%;
    height: auto;
  }
  #footer .wrapper .introduce .logo-wrap .catchphraze {
    width: 350px;
    font-size: 0.9em;
  }
  #footer .wrapper .introduce p .name {
    font-weight: bold;
    font-size: 1.4em;
  }
  #footer .wrapper .introduce dl {
    padding-bottom: 30px;
  }
  #footer .wrapper .introduce .copyright {
    font-weight: bold;
  }
  #footer .wrapper .footer-nav h3 {
    padding-bottom: 20px;
  }
  #footer .wrapper .footer-nav .block-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
  }
  #footer .wrapper .footer-nav .block-nav li {
    list-style-type: none;
    margin: 5px;
  }
  #footer .wrapper .footer-nav .block-nav li a {
    display: inline-block;
    padding: 10px 35px;
    background-color: #333333;
    background: #ffffff;
    border: 3px solid #333333;
    color: #333333;
    border-radius: 100vh;
    white-space: nowrap;
  }
  #footer .wrapper .foot_sns_area {
    position: absolute;
    right: 55px;
    bottom: 55px;
    box-sizing: border-box;
  }
  #footer .wrapper .foot_sns_area ul {
    display: flex;
    gap: 15px; /* アイテム間のスペースを15pxに指定 */
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center; /* 垂直方向の中央揃え */
  }
  #footer .wrapper .foot_sns_area ul li {
    list-style-type: none;
    font-size: 1.8em;
    width: 55px; /* 各アイテムの幅 */
    height: 55px; /* 各アイテムの高さ */
  }
  #footer .wrapper .foot_sns_area ul li a {
    text-decoration: none;
    font-size: 1em;
    color: #ffffff;
  }
  #footer .wrapper .foot_sns_area ul li a img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  #footer {
    background-color: #F7F4F2;
  }
  #footer .wrapper {
    position: relative;
    width: 100%;
    padding: 0px 0px 215px;
    display: grid;
    grid-template-columns: 100%;
    gap: 5%;
    box-sizing: border-box;
  }
  #footer .wrapper .introduce {
    order: 2;
  }
  #footer .wrapper .introduce {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  #footer .wrapper .introduce .logo-wrap {
    padding-bottom: 25px;
  }
  #footer .wrapper .introduce .logo-wrap .logo {
    width: 50%;
    padding-bottom: 7px;
  }
  #footer .wrapper .introduce .logo-wrap .logo a {
    width: 100%;
  }
  #footer .wrapper .introduce .logo-wrap .logo a img {
    width: 100%;
    height: auto;
  }
  #footer .wrapper .introduce .logo-wrap .catchphraze {
    font-size: 0.9em;
  }
  #footer .wrapper .introduce .copyright {
    padding-top: 45px;
    font-weight: bold;
    font-size: 0.9em;
  }
  #footer .wrapper .footer-nav {
    order: 1;
  }
  #footer .wrapper .footer-nav h3 {
    padding-top: 35px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 20px;
  }
  #footer .wrapper .footer-nav .block-nav ul {
    display: block;
    padding: 0;
    margin: 0;
  }
  #footer .wrapper .footer-nav .block-nav ul li {
    list-style-type: none;
    border-bottom: 1px solid #999;
    margin: 5px 0px;
  }
  #footer .wrapper .footer-nav .block-nav ul li:first-child {
    border-top: 1px solid #999;
  }
  #footer .wrapper .footer-nav .block-nav ul li a {
    display: inline-block;
    width: 100%;
    padding: 15px 20px;
    box-sizing: border-box;
    background-color: transparent;
    background: none;
    border: none;
    color: #333333;
    border-radius: 0px;
    white-space: nowrap;
  }
  #footer .wrapper .foot_sns_area {
    position: absolute;
    left: 25px;
    bottom: 105px;
    box-sizing: border-box;
  }
  #footer .wrapper .foot_sns_area ul {
    display: flex;
    gap: 15px; /* アイテム間のスペースを15pxに指定 */
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center; /* 垂直方向の中央揃え */
  }
  #footer .wrapper .foot_sns_area ul li {
    list-style-type: none;
    font-size: 1.8em;
    width: 38px; /* 各アイテムの幅 */
    height: 38px; /* 各アイテムの高さ */
  }
  #footer .wrapper .foot_sns_area ul li a {
    text-decoration: none;
    font-size: 1em;
    color: #ffffff;
  }
  #footer .wrapper .foot_sns_area ul li a img {
    width: 100%;
    height: auto;
  }
  /* モバイル用 */
  #mobile-menu {
    display: block;
    width: 100vw;
    height: 70px;
    background: #FFF;
    position: fixed;
    bottom: -70px; /* 初期は下に隠す */
    z-index: 50;
    padding-top: 15px;
    transition: bottom 0.3s ease-in-out; /* アニメーションを追加 */
  }
  #mobile-menu.visible { /* 表示状態の時 */
    bottom: 0;
  }
  #mobile-menu .mobile-menu-wrap ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5列のグリッド */
    grid-template-rows: auto; /* 自動高さ */
    grid-template-areas: "item2 item3 item1 item4 item5"; /* 順番をエリアで指定 */
    gap: 10px; /* 要素間の隙間 */
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    transform: translateY(-6px);
  }
  #mobile-menu .mobile-menu-wrap ul li {
    list-style-type: none;
    text-align: center;
    font-size: 0.7em;
    font-weight: bold;
  }
  #mobile-menu .mobile-menu-wrap ul li.menu-block a {
    color: #333;
  }
  #mobile-menu .mobile-menu-wrap ul li.menu-block a h4 {
    padding: 0;
    margin: 0;
    line-height: 1em;
  }
  #mobile-menu .mobile-menu-wrap ul li.menu-block a p {
    padding: 0;
    line-height: 1em;
  }
  #mobile-menu .mobile-menu-wrap ul li.menu-block.number1 {
    grid-area: item1;
  }
  #mobile-menu .mobile-menu-wrap ul li.menu-block.number1 h4 {
    transform: translateY(-15px);
  }
  #mobile-menu .mobile-menu-wrap ul li.menu-block.number1 h4 img {
    border: 5px solid #FFF;
    width: auto;
    height: 60px;
    transform: scale(1.2);
    transform-origin: center;
    box-sizing: border-box;
    border-radius: 50%;
  }
  #mobile-menu .mobile-menu-wrap ul li.menu-block.number1 p {
    transform: translateY(-9px);
  }
  #mobile-menu .mobile-menu-wrap ul li.menu-block.number2 {
    grid-area: item2;
  }
  #mobile-menu .mobile-menu-wrap ul li.menu-block.number2 img {
    width: auto;
    height: 43px;
    padding: 0 9px;
    box-sizing: border-box;
  }
  #mobile-menu .mobile-menu-wrap ul li.menu-block.number2 p {
    padding-top: 7px;
  }
  #mobile-menu .mobile-menu-wrap ul li.menu-block.number3 {
    grid-area: item3;
    transform: translateX(-5px);
  }
  #mobile-menu .mobile-menu-wrap ul li.menu-block.number3 img {
    width: auto;
    height: 43px;
    padding: 0 9px;
    box-sizing: border-box;
  }
  #mobile-menu .mobile-menu-wrap ul li.menu-block.number3 p {
    padding-top: 7px;
  }
  #mobile-menu .mobile-menu-wrap ul li.menu-block.number4 {
    grid-area: item4;
    transform: translateX(5px);
  }
  #mobile-menu .mobile-menu-wrap ul li.menu-block.number4 img {
    width: auto;
    height: 43px;
    padding: 0 9px;
    box-sizing: border-box;
  }
  #mobile-menu .mobile-menu-wrap ul li.menu-block.number4 p {
    padding-top: 7px;
  }
  #mobile-menu .mobile-menu-wrap ul li.menu-block.number5 {
    grid-area: item5;
  }
  #mobile-menu .mobile-menu-wrap ul li.menu-block.number5 img {
    width: auto;
    height: 43px;
    padding: 0 9px;
    box-sizing: border-box;
  }
  #mobile-menu .mobile-menu-wrap ul li.menu-block.number5 p {
    padding-top: 7px;
  }
}
@media screen and (min-width: 769px) {
  /* スクロール後に表示される新しいメニューの初期状態は上に隠れている */
  #fixed-menu {
    display: none; /* 初期状態は非表示 */
    position: fixed;
    top: -90px; /* ページトップから-90px隠す */
    left: 0;
    background-color: rgba(255, 255, 255, 0.9); /* 背景色と透明度 */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* 影 */
    z-index: 1000;
    transition: top 0.5s ease-in-out; /* 0.5秒かけてアニメーション */
    width: 100vw;
    padding: 25px 0px;
    box-sizing: border-box;
  }
  #fixed-menu.show {
    top: 0; /* ページ上部にスライドイン */
  }
  #fixed-menu .wrapper {
    width: calc(100vw - 170px); /* 左右に30pxずつの余白 */
    margin-left: auto;
    margin-right: auto;
    display: flex; /* インライン要素として振る舞うフレックスコンテナ */
    justify-content: space-between;
    align-items: center;
  }
  #fixed-menu .wrapper .fixed-logo {
    display: flex; /* インライン要素として振る舞うフレックスコンテナ */
    justify-content: flex-start;
    align-items: center;
    gap: 15px; /* メニュー項目間のスペース */
  }
  #fixed-menu .wrapper .fixed-logo .site-logo {
    height: 65px;
  }
  #fixed-menu .wrapper .fixed-logo .site-logo img {
    width: auto;
    height: 100%;
    vertical-align: baseline;
  }
  #fixed-menu .wrapper .fixed-logo .sub-title {
    font-size: 17px;
    line-height: 1.4;
  }
  #fixed-menu .wrapper .fixed-logo .sub-title span {
    font-weight: bold;
  }
  #fixed-menu .wrapper .nav {
    display: inline-block;
  }
  #fixed-menu .wrapper .nav .gl_nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex; /* インライン要素として振る舞うフレックスコンテナ */
    justify-content: flex-start;
    gap: 15px; /* メニュー項目間のスペース */
  }
  #fixed-menu .wrapper .nav .gl_nav li {
    display: inline;
  }
  #fixed-menu .wrapper .nav .gl_nav li a {
    display: block;
    background-color: #e60012; /* ボタン背景色（仮） */
    border-radius: 100vh;
    padding: 10px 25px;
    text-decoration: none;
    color: #fff; /* ボタン文字色（仮） */
    white-space: nowrap;
  }
  #fixed-menu .wrapper .nav .gl_nav li a:hover {
    opacity: 0.8; /* ホバー時の透明度 */
  }
}
@media screen and (max-width: 768px) {
  /* スクロール後に表示される新しいメニューの初期状態は上に隠れている */
  #fixed-menu {
    display: none; /* 初期状態は非表示 */
  }
}
@media screen and (min-width: 769px) {
  /* よくある質問用 */
  /* 必須 */
  #question {
    width: 85%;
    max-width: 1580px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 55px;
  }
  #question .block {
    width: 80%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between; /* 両端に要素を振り分ける */
    align-items: center;
    gap: 85px;
    box-sizing: border-box;
  }
  #question .block .headline h3 {
    font-size: 1.4em;
    transform: translate(-0.6em, 0.8em);
    color: #e60012;
  }
  #question .block .headline h2 {
    font-size: 3em;
    padding-bottom: 1em;
  }
  #question .accordion_area .accordion_one .ac_header {
    background-color: #ffffff;
    border-top: 3px solid #333;
    border-left: 3px solid #333;
    border-right: 3px solid #333;
    padding: 1.5rem 4rem 1.5rem 2rem;
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition: 0.2s;
  }
  #question .accordion_area .accordion_one .ac_header:not(.open):hover {
    background-color: #f1f8ff;
  }
  #question .accordion_area .accordion_one .ac_header .i_box {
    position: absolute;
    top: 50%;
    right: 2rem;
    width: 20px;
    height: 20px;
    margin-top: -10px;
  }
  #question .accordion_area .accordion_one .ac_header .i_box:before, #question .accordion_area .accordion_one .ac_header .i_box:after {
    position: absolute;
    content: "";
    margin: auto;
    box-sizing: border-box;
    vertical-align: middle;
  }
  #question .accordion_area .accordion_one .ac_header .i_box:before {
    border-top: 2px solid #e60012;
    width: 20px;
    height: 0;
    top: 0;
    bottom: 0;
    right: 0;
  }
  #question .accordion_area .accordion_one .ac_header .i_box:after {
    border-left: 2px solid #e60012;
    width: 0;
    height: 20px;
    top: 0;
    bottom: 0;
    right: 9px;
    transition: 0.3s;
  }
  #question .accordion_area .accordion_one .ac_header.open .i_box:after {
    height: 0;
  }
  #question .accordion_area .accordion_one:nth-child(odd) .ac_header {
    background-color: #F7F4F2;
  }
  #question .accordion_area .accordion_one:nth-child(odd) .ac_header:not(.open):hover {
    background-color: #f1f8ff;
  }
  #question .accordion_area .accordion_one .ac_inner {
    display: none;
    padding: 1.5rem 2rem;
    border-bottom: 3px solid #333;
    border-left: 3px solid #333;
    border-right: 3px solid #333;
    border-top: none;
    box-sizing: border-box;
    background: #fff;
  }
  #question .p-faq__headinner {
    display: block;
    padding-left: 35px;
    position: relative;
    line-height: 1.5;
  }
  #question .p-faq__headinner::before {
    position: absolute;
    left: 0;
    content: "Q．";
    color: #e60012;
    font-size: 20px;
    font-weight: bold;
  }
  #question .p-faq__headinner p.p-faq__q-txt {
    font-size: 20px;
  }
  #question .p-faq__bodyinner {
    display: block;
    padding-left: 35px;
    position: relative;
    line-height: 1.5;
  }
  #question .p-faq__bodyinner::before {
    position: absolute;
    left: 0;
    content: "A．";
    color: #333;
    font-size: 20px;
    font-weight: bold;
  }
  #question .p-faq__bodyinner p.p-faq__a-txt {
    font-size: 20px;
  }
  #question .gutter > *:not(:last-child) {
    margin-bottom: 1.5rem;
  }
  #question ul.list-disc {
    margin-bottom: 0;
    padding-left: 0;
  }
  #question ul.list-disc .list-disc__item {
    margin-left: 1.5em;
    list-style: disc;
  }
  #question a._a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 2rem 1rem;
    border: 1px solid #222222;
    background: linear-gradient(to right, #ffffff 50%, #222222 50%);
    background-size: 200% auto;
    box-sizing: border-box;
    color: #222222;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
    position: relative;
    box-sizing: border-box;
  }
  #question a._a:after {
    content: "";
    position: absolute;
    right: -5px;
    bottom: -5px;
    width: 100%;
    height: 100%;
    border-right: 1px solid #222222;
    border-bottom: 1px solid #222222;
  }
  #question a._a:hover {
    color: #ffffff;
    background-position: -100% 0;
  }
}
@media screen and (max-width: 768px) {
  /* よくある質問用 */
  /* 必須 */
  #question {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 35px;
  }
  #question .block {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between; /* 両端に要素を振り分ける */
    align-items: center;
    gap: 35px;
    box-sizing: border-box;
  }
  #question .block .headline {
    padding-bottom: 25px;
  }
  #question .block .headline h3 {
    font-size: 0.9em;
    transform: translate(-0.6em, 1em);
    color: #e60012;
  }
  #question .block .headline h2 {
    font-size: 2em;
    padding-top: 10px;
    padding: bottom 20px;
  }
  #question .accordion_area .accordion_one .ac_header {
    background-color: #ffffff;
    border-top: 3px solid #333;
    border-left: 3px solid #333;
    border-right: 3px solid #333;
    padding: 15px 4rem 15px 15px;
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition: 0.2s;
  }
  #question .accordion_area .accordion_one .ac_header:not(.open):hover {
    background-color: #f1f8ff;
  }
  #question .accordion_area .accordion_one .ac_header .i_box {
    position: absolute;
    top: 50%;
    right: 2rem;
    width: 20px;
    height: 20px;
    margin-top: -10px;
  }
  #question .accordion_area .accordion_one .ac_header .i_box:before, #question .accordion_area .accordion_one .ac_header .i_box:after {
    position: absolute;
    content: "";
    margin: auto;
    box-sizing: border-box;
    vertical-align: middle;
  }
  #question .accordion_area .accordion_one .ac_header .i_box:before {
    border-top: 2px solid #e60012;
    width: 20px;
    height: 0;
    top: 0;
    bottom: 0;
    right: 0;
  }
  #question .accordion_area .accordion_one .ac_header .i_box:after {
    border-left: 2px solid #e60012;
    width: 0;
    height: 20px;
    top: 0;
    bottom: 0;
    right: 9px;
    transition: 0.3s;
  }
  #question .accordion_area .accordion_one .ac_header.open .i_box:after {
    height: 0;
  }
  #question .accordion_area .accordion_one:nth-child(odd) .ac_header {
    background-color: #F7F4F2;
  }
  #question .accordion_area .accordion_one:nth-child(odd) .ac_header:not(.open):hover {
    background-color: #f1f8ff;
  }
  #question .accordion_area .accordion_one .ac_inner {
    display: none;
    padding: 1.5rem 2rem;
    border-bottom: 3px solid #333;
    border-left: 3px solid #333;
    border-right: 3px solid #333;
    border-top: none;
    box-sizing: border-box;
    background: #fff;
  }
  #question .p-faq__headinner {
    display: block;
    padding-left: 35px;
    position: relative;
    line-height: 1.5;
  }
  #question .p-faq__headinner::before {
    position: absolute;
    left: 0;
    content: "Q．";
    color: #e60012;
    font-size: 1.1em;
    font-weight: bold;
  }
  #question .p-faq__headinner p.p-faq__q-txt {
    font-size: 1.1em;
  }
  #question .p-faq__bodyinner {
    display: block;
    padding-left: 35px;
    position: relative;
    line-height: 1.5;
  }
  #question .p-faq__bodyinner::before {
    position: absolute;
    left: 0;
    content: "A．";
    color: #333;
    font-size: 1.1em;
    font-weight: bold;
  }
  #question .p-faq__bodyinner p.p-faq__a-txt {
    font-size: 1.1em;
  }
  #question .gutter > *:not(:last-child) {
    margin-bottom: 1.5rem;
  }
  #question ul.list-disc {
    margin-bottom: 0;
    padding-left: 0;
  }
  #question ul.list-disc .list-disc__item {
    margin-left: 1.5em;
    list-style: disc;
  }
  #question a._a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 2rem 1rem;
    border: 1px solid #222222;
    background: linear-gradient(to right, #ffffff 50%, #222222 50%);
    background-size: 200% auto;
    box-sizing: border-box;
    color: #222222;
    font-size: 1.1em;
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
    position: relative;
    box-sizing: border-box;
  }
  #question a._a:after {
    content: "";
    position: absolute;
    right: -5px;
    bottom: -5px;
    width: 100%;
    height: 100%;
    border-right: 1px solid #222222;
    border-bottom: 1px solid #222222;
  }
  #question a._a:hover {
    color: #ffffff;
    background-position: -100% 0;
  }
}
/* 商品ページのデザイン設定 */
@media screen and (min-width: 769px) {
  .turnback {
    position: fixed;
    bottom: 20px;
    right: -15px; /* ボタンの右からの距離 */
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 1000;
  }
  .turnback img {
    width: 135px;
    height: auto;
  }
  .turnback.show {
    opacity: 1;
    transform: translateY(0);
  }
  .turnback.hide {
    opacity: 0;
    transform: translateY(20px);
  }
}
@media screen and (max-width: 768px) {
  #product-page {
    padding: 55px 0px;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }
  .turnback {
    position: fixed;
    bottom: 0px;
    right: -12px; /* ボタンの右からの距離 */
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 1000;
  }
  .turnback img {
    width: 90px;
    height: auto;
  }
  .turnback.show {
    opacity: 1;
  }
  .turnback.hide {
    opacity: 0;
  }
}
/* 投稿に使用する吹き出しの機能 */
@media screen and (min-width: 769px) {
  .entry-content h2 + #talkbox,
  .entry-content h3 + #talkbox,
  .entry-content h4 + #talkbox,
  .entry-content h5 + #talkbox,
  .entry-content p + #talkbox {
    margin-top: 45px;
  }
  .entry-content #talkbox {
    font-size: 1.1em;
    line-height: 1.7em;
  }
  .entry-content #talkbox + h2 {
    margin-top: 45px;
  }
  .entry-content #talkbox + h3 {
    margin-top: 45px;
  }
  .entry-content #talkbox + h4 {
    margin-top: 45px;
  }
  .entry-content #talkbox + h5 {
    margin-top: 45px;
  }
  .entry-content #talkbox + p {
    margin-top: 45px;
  }
  .entry-content #talkbox:nth-child(1) {
    margin-top: 35px;
  }
  .entry-content #talkbox.talkone {
    position: relative;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    margin-bottom: 3px;
    padding: 25px 5px 15px 5px;
  }
  .entry-content #talkbox.talkone .icon {
    position: absolute;
    left: 0px;
    top: 0px;
  }
  .entry-content #talkbox.talkone .icon img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    transform: translateX(-20px);
    transform: translateY(-20px);
  }
  .entry-content #talkbox.talktwo {
    position: relative;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    margin-bottom: 3px;
    padding: 25px 5px 15px 5px;
  }
  .entry-content #talkbox.talktwo .icon {
    position: absolute;
    left: 0px;
    top: 0px;
  }
  .entry-content #talkbox.talktwo .icon img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    transform: translateX(-20px);
    transform: translateY(-20px);
  }
  .entry-content #talkbox.talkthree {
    position: relative;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    margin-bottom: 3px;
    padding: 25px 5px 15px 5px;
  }
  .entry-content #talkbox.talkthree .icon {
    position: absolute;
    left: 0px;
    top: 0px;
  }
  .entry-content #talkbox.talkthree .icon img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    transform: translateX(-20px);
    transform: translateY(-20px);
  }
}
@media screen and (max-width: 768px) {
  .entry-content h2 + #talkbox,
  .entry-content h3 + #talkbox,
  .entry-content h4 + #talkbox,
  .entry-content h5 + #talkbox,
  .entry-content p + #talkbox {
    margin-top: 45px;
  }
  .entry-content #talkbox {
    font-size: 1.1em;
    line-height: 1.7em;
  }
  .entry-content #talkbox + h2 {
    margin-top: 45px;
  }
  .entry-content #talkbox + h3 {
    margin-top: 45px;
  }
  .entry-content #talkbox + h4 {
    margin-top: 45px;
  }
  .entry-content #talkbox + h5 {
    margin-top: 45px;
  }
  .entry-content #talkbox + p {
    margin-top: 45px;
  }
  .entry-content #talkbox:nth-child(1) {
    margin-top: 35px;
  }
  .entry-content #talkbox.talkone {
    position: relative;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    margin-bottom: 3px;
    padding: 25px 0px 15px 0px;
  }
  .entry-content #talkbox.talkone .icon {
    position: absolute;
    left: 0px;
    top: 0px;
  }
  .entry-content #talkbox.talkone .icon img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    transform: translateX(-20px);
    transform: translateY(-20px);
  }
  .entry-content #talkbox.talktwo {
    position: relative;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    margin-bottom: 3px;
    padding: 25px 0px 15px 0px;
  }
  .entry-content #talkbox.talktwo .icon {
    position: absolute;
    left: 0px;
    top: 0px;
  }
  .entry-content #talkbox.talktwo .icon img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    transform: translateX(-20px);
    transform: translateY(-20px);
  }
  .entry-content #talkbox.talkthree {
    position: relative;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    margin-bottom: 3px;
    padding: 25px 0px 15px 0px;
  }
  .entry-content #talkbox.talkthree .icon {
    position: absolute;
    left: 0px;
    top: 0px;
  }
  .entry-content #talkbox.talkthree .icon img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    transform: translateX(-20px);
    transform: translateY(-20px);
  }
}
@media screen and (min-width: 621px) {
  .chasebanner {
    position: fixed;
    bottom: 20px;
    left: -410px; /* 初めは20pxだけ見えている状態 */
    width: 430px;
    transition: left 0.4s ease-in-out;
    z-index: 1000;
  }
  .chasebanner.show {
    left: 20px; /* 表示状態 */
  }
  .banner-content {
    position: relative;
    background: #e60012;
    padding: 5px;
    border-radius: 0px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .banner-content img {
    max-width: 100%;
    vertical-align: bottom;
  }
  .close-banner {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
  }
  .banner-handle {
    position: absolute;
    top: 50%;
    right: -25px;
    width: 25px;
    height: 40px;
    background: #e60012;
    color: #fff;
    text-align: center;
    line-height: 40px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 0px 5px 5px 0px;
  }
}
@media screen and (max-width: 620px) {
  .chasebanner {
    position: fixed;
    bottom: 41px;
    left: -57%; /* 初めは20pxだけ見えている状態 */
    width: 60%;
    transition: left 0.4s ease-in-out;
    z-index: 100;
  }
  .chasebanner.show {
    left: 3%; /* 表示状態 */
  }
  .banner-content {
    position: relative;
    background: #fff;
    padding: 5px;
    border-radius: 0px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .banner-content img {
    max-width: 100%;
    vertical-align: bottom;
  }
  .close-banner {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
  }
  .banner-handle {
    position: absolute;
    top: 10%;
    right: -25px;
    width: 25px;
    height: 40px;
    background: #e60012;
    color: #fff;
    text-align: center;
    line-height: 40px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 0px 5px 5px 0px;
  }
}
/** 細かな部分 レスポンシブ分 **/
/* パソコン用（769px以上） */
@media screen and (min-width: 1381px) {
  #keyvisual #vegas-slideshow {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    width: calc(100vw - 60px);
    height: calc(100vh - 105px);
    margin: 30px auto 20px auto;
    border-radius: 20px;
    box-sizing: border-box;
    z-index: -1;
    filter: sepia(40%) brightness(90%) contrast(95%);
    -webkit-filter: sepia(40%) brightness(90%) contrast(95%);
  }
  .catchphrase .message-inner {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: 50;
    box-sizing: border-box;
    max-width: 45%;
  }
  .catchphrase .message-inner .keyvisual-title-wrap h2.img {
    font-size: 4.5em;
    width: 70%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .catchphrase .message-inner .keyvisual-title-wrap h2.img img {
    width: 100%;
    height: 100%;
  }
  .catchphrase .message-inner .keyvisual-title-wrap h2.txt {
    font-size: 550%;
    color: #FFF;
    white-space: nowrap;
  }
  .catchphrase .message-inner .keyvisual-title-wrap p {
    font-size: 2.5em;
    text-align: center;
  }
  .catchphrase .message-inner .keyvisual-message-wrap {
    padding-top: 55px;
  }
  .catchphrase .message-inner .keyvisual-message-wrap p.txt {
    font-size: 2em;
    line-height: 2em;
    font-weight: bold;
    margin-left: auto;
    margin-right: auto;
    color: #FFF;
  }
  .catchphrase .key-add-img {
    position: absolute;
    width: 30%;
    max-width: 450px;
    height: 30%;
    max-height: 480px;
    bottom: -20px;
    right: 12%;
    overflow: hidden; /* ここは変更なし */
  }
  .catchphrase #frame-x {
    height: 0;
    overflow: hidden;
    transition: height 0.8s ease-out;
  }
  .catchphrase #frame-x.active {
    height: 100%;
  }
  .catchphrase #frame-x .inner {
    max-height: 100%;
    overflow-y: auto; /* 縦スクロール復活 */
  }
  #massage {
    padding: 55px 0px 85px;
  }
  #massage .wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 65% 35%;
    gap: 0px;
    align-items: center;
    box-sizing: border-box;
  }
  #massage .wrapper .block.one {
    position: absolute;
    min-width: 650px;
    width: 55%;
    max-width: 850px;
    right: 15%;
    text-align: center;
  }
  #massage .wrapper .block.one .headline h2 {
    font-size: 3.5em;
    padding-bottom: 75px;
    white-space: nowrap;
  }
  #massage .wrapper .block.one .headline p {
    font-size: 2em;
    padding-bottom: 25px;
    font-weight: bold;
    color: #e60012;
  }
  #massage .wrapper .block.one .inner {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  #massage .wrapper .block.one .inner .text {
    font-size: 1.6em;
    line-height: 2em;
  }
  #massage .wrapper .block.two {
    order: 1;
  }
  #massage .wrapper .block.two img {
    border-radius: 0px 30px 30px 0px;
  }
  #about-post {
    padding-bottom: 55px;
  }
  #about-post .link_sp {
    display: none;
  }
  #about-post .wrapper {
    position: relative;
    width: 80vw; /* 左右に30pxずつの余白 */
    margin: 85px 25px 125px auto; /* 上:30px, 左右:auto, 下:55px */
  }
  #about-post .wrapper .link_pc {
    display: inline-block;
  }
  #about-post .wrapper .link_pc a {
    position: absolute;
    top: 0px;
    right: 15%;
    font-size: 1.3em;
    border: 3px solid #333333;
    font-weight: bold;
    display: block;
    padding: 10px 25px 10px 25px;
    border-radius: 100vh;
    color: #333;
    background-color: #efefef;
    z-index: 20;
  }
  #about-post .wrapper .block {
    position: relative;
  }
  #about-post .wrapper .block .headline {
    padding: 0px 85px 55px 85px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 85px;
  }
  #about-post .wrapper .block .headline .title {
    position: relative;
    transform: translateY(-5px);
  }
  #about-post .wrapper .block .headline .title h2 {
    font-weight: bold;
    font-size: 1.1em;
    color: #e60012;
    transform: translateY(10px);
  }
  #about-post .wrapper .block .headline .title p {
    font-weight: bold;
    font-size: 2em;
  }
  #about-post .wrapper .block .headline .title::after {
    content: "";
    display: block;
    width: 1px; /* 線の幅 */
    height: 100%; /* 線の高さ */
    background-color: #000; /* 線の色 */
    position: absolute;
    right: -42.5px; /* 線の位置（タイトルの右側に表示） */
    top: 0;
  }
  #about-post .wrapper .mySwiper {
    position: relative;
    z-index: 5;
  }
  #about-post .wrapper .mySwiper .swiper-wrapper .swiper-slide {
    background-color: #F7F4F2;
    width: 25%;
    box-sizing: border-box;
    border-radius: 55px 55px 55px 5px;
    height: 100%; /* 高さをフルに占有 */
    overflow: hidden;
  }
  #about-post .wrapper .mySwiper .swiper-wrapper .swiper-slide .post-thumbnail img {
    width: 100%;
  }
  #about-post .wrapper .mySwiper .swiper-wrapper .swiper-slide .post-content {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    padding: 35px 0px 85px;
  }
  #about-post .wrapper .mySwiper .swiper-wrapper .swiper-slide .post-content .post-date {
    padding-bottom: 1.2em;
  }
  #about-post .wrapper .mySwiper .swiper-wrapper .swiper-slide .post-content .post-title {
    padding-bottom: 1.3em;
  }
  #about-post .wrapper .mySwiper .swiper-wrapper .swiper-slide .post-content .post-title a {
    color: #e60012;
  }
  #about-post .wrapper .mySwiper .swiper-wrapper .swiper-slide .post-content .post-excerpt {
    line-height: 1.7em;
    padding-bottom: 1em;
  }
  #about-post .wrapper .mySwiper .swiper-wrapper .swiper-slide .post-content .post-category ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  #about-post .wrapper .mySwiper .swiper-wrapper .swiper-slide .post-content .post-category ul li {
    list-style-type: none;
  }
  #about-post .wrapper .mySwiper .swiper-wrapper .swiper-slide .post-content .post-category ul li a {
    border: 1px solid #e60012;
    background: #e60012;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 100vh;
  }
  #about-post .wrapper .character-img {
    position: absolute;
    width: 35%;
    max-width: 350px;
    bottom: -185px;
    left: -20%;
    z-index: 1;
  }
  #about-post .itemsSwiper .swiper-wrapper {
    display: flex; /* Swiper のデフォルトのフレックスレイアウトを適用 */
  }
  #about-post .itemswrap {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}
/* iPad Pro 用（1024px以上、1280px以下を想定） */
@media screen and (min-width: 681px) and (max-width: 1380px) {
  #keyvisual #vegas-slideshow {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    width: calc(100vw - 60px);
    height: calc(87vh - 30px);
    margin: 30px auto 0px auto;
    border-radius: 20px;
    box-sizing: border-box;
    z-index: -1;
    filter: sepia(40%) brightness(90%) contrast(95%);
    -webkit-filter: sepia(40%) brightness(90%) contrast(95%);
  }
  .catchphrase .message-inner {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: 50;
    box-sizing: border-box;
    max-width: 45%;
  }
  .catchphrase .message-inner .keyvisual-title-wrap h2.img {
    font-size: 4.5em;
    width: 70%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .catchphrase .message-inner .keyvisual-title-wrap h2.img img {
    width: 100%;
    height: 100%;
  }
  .catchphrase .message-inner .keyvisual-title-wrap h2.txt {
    font-size: 450%;
    color: #FFF;
    white-space: nowrap;
  }
  .catchphrase .message-inner .keyvisual-title-wrap p {
    font-size: 2.5em;
    text-align: center;
  }
  .catchphrase .message-inner .keyvisual-message-wrap {
    padding-top: 55px;
  }
  .catchphrase .message-inner .keyvisual-message-wrap p.txt {
    font-size: 1.7em;
    line-height: 2em;
    font-weight: bold;
    margin-left: auto;
    margin-right: auto;
    color: #FFF;
  }
  .catchphrase .key-add-img {
    position: absolute;
    width: 26%;
    max-width: 435px;
    height: 37%;
    max-height: 470px;
    bottom: -10px;
    right: 12%;
    overflow: hidden; /* ここは変更なし */
  }
  .catchphrase #frame-x {
    height: 0;
    overflow: hidden;
    transition: height 0.8s ease-out;
  }
  .catchphrase #frame-x.active {
    height: 100%;
  }
  .catchphrase #frame-x .inner {
    max-height: 100%;
    overflow-y: auto; /* 縦スクロール復活 */
  }
  #massage {
    padding: 55px 0px 85px;
  }
  #massage .wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 85% 15%;
    gap: 0px;
    align-items: center;
    box-sizing: border-box;
  }
  #massage .wrapper .block.one {
    position: absolute;
    min-width: 400px;
    width: 50%;
    max-width: 725px;
    right: 8%;
    text-align: center;
  }
  #massage .wrapper .block.one .headline h2 {
    font-size: 2.6em;
    padding-bottom: 85px;
    white-space: nowrap;
  }
  #massage .wrapper .block.one .headline p {
    font-size: 1.4em;
    padding-bottom: 41px;
    font-weight: bold;
    color: #e60012;
  }
  #massage .wrapper .block.one .inner {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  #massage .wrapper .block.one .inner .text {
    font-size: 1.5em;
    line-height: 1.8em;
  }
  #massage .wrapper .block.two {
    order: 1;
  }
  #massage .wrapper .block.two img {
    border-radius: 0px 30px 30px 0px;
  }
  #about-post {
    padding-bottom: 55px;
  }
  #about-post .link_sp {
    display: none;
  }
  #about-post .wrapper {
    position: relative;
    width: 81vw; /* 左右に30pxずつの余白 */
    margin: 85px 15px 125px auto; /* 上:30px, 左右:auto, 下:55px */
  }
  #about-post .wrapper .link_pc {
    display: inline-block;
  }
  #about-post .wrapper .link_pc a {
    position: absolute;
    top: 0px;
    right: 8%;
    font-size: 1.3em;
    border: 3px solid #333333;
    font-weight: bold;
    display: block;
    padding: 10px 25px 10px 25px;
    border-radius: 100vh;
    color: #333;
    background-color: #efefef;
    z-index: 20;
  }
  #about-post .wrapper .block {
    position: relative;
  }
  #about-post .wrapper .block .headline {
    padding: 0px 35px 55px 35px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 65px;
  }
  #about-post .wrapper .block .headline .title {
    position: relative;
    transform: translateY(-5px);
  }
  #about-post .wrapper .block .headline .title h2 {
    font-weight: bold;
    font-size: 1.1em;
    color: #e60012;
    transform: translateY(10px);
  }
  #about-post .wrapper .block .headline .title p {
    font-weight: bold;
    font-size: 2em;
  }
  #about-post .wrapper .block .headline .title::after {
    content: "";
    display: block;
    width: 1px; /* 線の幅 */
    height: 100%; /* 線の高さ */
    background-color: #000; /* 線の色 */
    position: absolute;
    right: -35.5px; /* 線の位置（タイトルの右側に表示） */
    top: 0;
  }
  #about-post .wrapper .mySwiper {
    position: relative;
    z-index: 5;
  }
  #about-post .wrapper .mySwiper .swiper-wrapper .swiper-slide {
    background-color: #F7F4F2;
    width: 25%;
    box-sizing: border-box;
    border-radius: 55px 55px 55px 5px;
    height: 100%; /* 高さをフルに占有 */
    overflow: hidden;
  }
  #about-post .wrapper .mySwiper .swiper-wrapper .swiper-slide .post-thumbnail img {
    width: 100%;
  }
  #about-post .wrapper .mySwiper .swiper-wrapper .swiper-slide .post-content {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    padding: 35px 0px 85px;
  }
  #about-post .wrapper .mySwiper .swiper-wrapper .swiper-slide .post-content .post-date {
    padding-bottom: 1.2em;
  }
  #about-post .wrapper .mySwiper .swiper-wrapper .swiper-slide .post-content .post-title {
    padding-bottom: 1.3em;
  }
  #about-post .wrapper .mySwiper .swiper-wrapper .swiper-slide .post-content .post-title a {
    color: #e60012;
  }
  #about-post .wrapper .mySwiper .swiper-wrapper .swiper-slide .post-content .post-excerpt {
    line-height: 1.7em;
    padding-bottom: 1em;
  }
  #about-post .wrapper .mySwiper .swiper-wrapper .swiper-slide .post-content .post-category ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  #about-post .wrapper .mySwiper .swiper-wrapper .swiper-slide .post-content .post-category ul li {
    list-style-type: none;
  }
  #about-post .wrapper .mySwiper .swiper-wrapper .swiper-slide .post-content .post-category ul li a {
    border: 1px solid #e60012;
    background: #e60012;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 100vh;
  }
  #about-post .wrapper .character-img {
    position: absolute;
    width: 25%;
    bottom: -185px;
    left: -20%;
    z-index: 1;
  }
  #about-post .itemsSwiper .swiper-wrapper {
    display: flex; /* Swiper のデフォルトのフレックスレイアウトを適用 */
  }
  #about-post .itemswrap {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}
/* スマホ用（680px以下） */
@media screen and (max-width: 680px) {
  #keyvisual #vegas-slideshow {
    position: fixed;
    top: 0px; /* 上に15pxの余白 */
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 95vw; /* 左右に30pxずつの余白 */
    height: calc(83vh - 80px); /* 上下の余白分を差し引く */
    margin: 80px auto 0px auto; /* 上:15px, 左右:auto, 下:15px */
    border-radius: 20px 20px 20px 20px;
    box-sizing: border-box;
    z-index: -1;
    filter: sepia(60%) brightness(90%) contrast(95%);
    -webkit-filter: sepia(40%) brightness(90%) contrast(95%);
  }
  .catchphrase .message-inner {
    position: absolute;
    top: 28%;
    left: 10%;
  }
  .catchphrase .message-inner .keyvisual-title-wrap h2 {
    z-index: 50;
    font-size: 1.6em;
    width: 90%;
    color: #FFF;
    white-space: nowrap;
  }
  .catchphrase .message-inner .keyvisual-title-wrap h2 img {
    width: 100%;
    height: 100%;
  }
  .catchphrase .message-inner .keyvisual-message-wrap {
    padding-top: 35px;
  }
  .catchphrase .message-inner .keyvisual-message-wrap p {
    z-index: 50;
    font-size: 1.1em;
    width: 90%;
    text-align: left;
    font-weight: bold;
    color: #FFF;
  }
  .catchphrase .key-add-img {
    display: none;
  }
}
.custom-blog-card {
  display: flex;
  align-items: center;
  margin: 20px 0;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #f9f9f9;
}

.custom-blog-card-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  gap: 25px;
}

.custom-blog-card-thumbnail img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 10px;
  border-radius: 5px;
}

.custom-blog-card-content {
  flex: 1;
}

.custom-blog-card-content h3 {
  margin: 0;
  font-size: 18px;
  color: #333;
}

.custom-blog-card-content p {
  font-size: 14px;
  color: #666;
}

.related-blog {
  display: flex;
  align-items: center;
  margin: 20px 0;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #f9f9f9;
}

.related-blog-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  gap: 25px;
}

.related-blog-thumbnail img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 10px;
  border-radius: 5px;
}

.related-blog-title {
  font-size: 1em;
  font-weight: bold;
  padding-bottom: 10px;
}

.related-blog-date {
  padding-bottom: 10px;
}

.related-blog-excerpt {
  font-size: 0.8em;
}

@media screen and (min-width: 1381px) {
  #lphayashi-front .article {
    border-radius: 20px;
    width: 45%;
    max-width: 950px;
    margin: 0 15% 0 auto;
    margin-top: calc(-100vh + 85px); /* 余白調整 */
    background-color: #fff;
    padding-top: 0px; /* 必要に応じて調整 */
    box-sizing: border-box;
    transform: translateY(-65px);
  }
  #lphayashi-front .article .inner {
    padding: 85px 25px 85px;
  }
  #lphayashi-front .article .inner .logo {
    width: 35%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 15px;
  }
  #lphayashi-front .article .inner .logo img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
  }
  #lphayashi-front .article .inner #lpproducts .headline {
    padding: 35px 0px;
  }
  #lphayashi-front .article .inner #lpproducts .itemblock {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  #lphayashi-front .article .inner #lpproducts .itemblock .itemcard {
    border-radius: 25px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1); /* ふんわりした影 */
  }
  #lphayashi-front .article .inner #lpproducts .itemblock .itemcard img {
    border-radius: 25px 25px 0px 0px;
  }
  #lphayashi-front .article .inner #lpproducts .itemblock .itemcard .post-content {
    padding: 30px 25px 35px;
  }
  #lphayashi-front .article .inner #lpproducts .itemblock .itemcard .post-content .post-date {
    padding-bottom: 15px;
  }
  #lphayashi-front .article .inner #lpproducts .itemblock .itemcard .post-content .post-title {
    font-weight: normal;
    font-size: 1.2em;
    padding-bottom: 15px;
  }
  #lphayashi-front .article .inner #lpproducts .itemblock .itemcard .post-content .post-title a {
    color: #333;
  }
  #lphayashi-front .article .inner #lpproducts .itemblock .itemcard .post-content .post-category ul {
    display: flex;
    gap: 15px;
    padding: 15px 0px;
  }
  #lphayashi-front .article .inner #lpproducts .itemblock .itemcard .post-content .post-category ul li {
    list-style-type: none;
    background-color: #333;
    border-radius: 100vh;
  }
  #lphayashi-front .article .inner #lpproducts .itemblock .itemcard .post-content .post-category ul li a {
    padding: 5px 15px;
    display: inline-block;
    color: #FFF;
  }
  #lphayashi-front .article .inner .button {
    display: inline-block;
    margin-top: 35px;
    margin-left: 5px;
    background-color: #333;
    border-radius: 100vh;
  }
  #lphayashi-front .article .inner .button a {
    font-size: 1.1em;
    display: block;
    padding: 5px 25px;
    color: #FFF;
  }
}
#lphayashi-front {
  position: relative;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
#lphayashi-front .wrapper {
  position: relative;
  margin: 0px;
  z-index: 5; /* 背景より前面に表示 */
}
#lphayashi-front .wrapper .blogs-background {
  width: 100vw;
  margin-left: auto;
  margin-right: auto;
  background-size: cover; /* 背景画像を全体にフィット */
  background-position: center bottom; /* 中央揃え */
  background-repeat: no-repeat; /* 繰り返しなし */ /* Safari対応 */
  position: sticky;
  top: 0; /* ヘッダーの高さに合わせて調整 */
  height: 100vh; /* 必要に応じて調整 */
  z-index: -1; /* 背景として表示 */
}

/*** メディロンブランドページ_CSS ここから ***/
@media screen and (min-width: 1381px) {
  .archive_medilon_background {
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100%;
    padding-bottom: 85px;
    margin-bottom: 55px;
  }
  #promise_medilon {
    text-align: center;
    padding: 85px 0px;
  }
  #promise_medilon h3 {
    padding-bottom: 5px;
  }
  #promise_medilon h2 {
    padding-bottom: 35px;
  }
  #promise_medilon h2 img {
    width: 250px;
    margin-left: auto;
    margin-right: auto;
  }
  #promise_medilon p {
    font-size: 110%;
    line-height: 2.1em;
  }
  #promise_medilon .button_ctr {
    display: inline-block;
    margin-top: 55px;
  }
  #promise_medilon .button_ctr a {
    background-color: #cc000f;
    padding: 8px 25px;
    border-radius: 100vh;
    color: #FFF;
  }
  #lead_medilon .block_mainlead h2 {
    font-size: 100%;
    font-weight: normal;
    text-align: center;
    transform: translateY(-35px);
  }
  #lead_medilon .block_mainlead .inner {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 15px;
    box-sizing: border-box;
  }
  #lead_medilon .block_mainlead .inner .image {
    order: 2;
  }
  #lead_medilon .block_mainlead .inner .image img {
    border-radius: 35px 0px 0px 35px;
  }
  #lead_medilon .block_mainlead .inner .content-block {
    order: 1;
  }
  #activity_medilon .activivty-block {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    box-sizing: border-box;
  }
  #product_medilon .product-block {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    box-sizing: border-box;
  }
  #product_medilon .product-block a .post-thumbnail img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
  }
}
/*** メディロンブランドページ_CSS ここまで ***/
/** Contactform7 デザイン **/
.cf7-form-wrapper {
  width: 100%;
  padding-top: 55px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 7px;
  /* 通常の送信ボタン */
  /* ホバー時（有効状態） */
  /* CF7によって自動で追加される無効状態 */
}
.cf7-form-wrapper .form-group {
  background-color: #efefef;
  padding: 15px;
  border-radius: 2px;
}
.cf7-form-wrapper .form-group label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}
.cf7-form-wrapper input[type=text],
.cf7-form-wrapper input[type=email],
.cf7-form-wrapper input[type=tel],
.cf7-form-wrapper textarea {
  padding: 0.5rem;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 3px;
}
.cf7-form-wrapper input[type=submit] {
  background-color: #cc000f;
  color: #fff;
  padding: 0.75rem 2.5rem;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 300px;
  margin-right: auto;
  display: block;
}
.cf7-form-wrapper input[type=submit]:hover {
  background-color: #a3000c;
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}
.cf7-form-wrapper .wpcf7-submit:disabled {
  background-color: #ccc !important;
  color: #666 !important;
  cursor: not-allowed !important;
  box-shadow: none !important;
  transform: none !important;
}

/** サイトマップ指示 **/
@media screen and (min-width: 681px) {
  #site_maps {
    position: relative;
    width: 85%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
  #site_maps .entry-header h2 {
    margin: 35px 0px;
  }
  #site_maps .entry-content .block_fixed {
    padding-bottom: 35px;
  }
  #site_maps .entry-content .block_fixed h3.title {
    padding-bottom: 15px;
  }
  #site_maps .entry-content .block_fixed li {
    list-style-type: none;
    line-height: 1.8em;
    text-indent: 1em;
  }
  #site_maps .entry-content .block_fixed li a {
    color: #333;
    text-decoration: underline;
  }
  #site_maps .entry-content .block_news {
    padding-bottom: 35px;
  }
  #site_maps .entry-content .block_news h3.title {
    padding-bottom: 15px;
  }
  #site_maps .entry-content .block_news li {
    list-style-type: none;
    line-height: 1.8em;
    text-indent: 1em;
  }
  #site_maps .entry-content .block_news li a {
    color: #333;
    text-decoration: underline;
  }
  #site_maps .entry-content .block_brand {
    padding-bottom: 35px;
  }
  #site_maps .entry-content .block_brand h3.title {
    padding-bottom: 15px;
  }
  #site_maps .entry-content .block_brand li {
    list-style-type: none;
    line-height: 1.8em;
    text-indent: 1em;
  }
  #site_maps .entry-content .block_brand li a {
    color: #333;
    text-decoration: underline;
  }
  #site_maps .entry-content .block_events {
    padding-bottom: 35px;
  }
  #site_maps .entry-content .block_events h3.title {
    padding-bottom: 15px;
  }
  #site_maps .entry-content .block_events li {
    list-style-type: none;
    line-height: 1.8em;
    text-indent: 1em;
  }
  #site_maps .entry-content .block_events li a {
    color: #333;
    text-decoration: underline;
  }
  #site_maps .entry-content .block_blogs {
    padding-bottom: 35px;
  }
  #site_maps .entry-content .block_blogs h3.title {
    padding-bottom: 15px;
  }
  #site_maps .entry-content .block_blogs li {
    list-style-type: none;
    line-height: 1.8em;
    text-indent: 1em;
  }
  #site_maps .entry-content .block_blogs li a {
    color: #333;
    text-decoration: underline;
  }
  #site_maps .entry-content .block_items {
    padding-bottom: 35px;
  }
  #site_maps .entry-content .block_items h3.title {
    padding-bottom: 15px;
  }
  #site_maps .entry-content .block_items li {
    list-style-type: none;
    line-height: 1.8em;
    text-indent: 1em;
  }
  #site_maps .entry-content .block_items li a {
    color: #333;
    text-decoration: underline;
  }
  #site_maps .entry-content .other {
    margin-top: 85px;
  }
  #site_maps .entry-content .other li {
    list-style-type: none;
    line-height: 1.8em;
    text-indent: 1em;
  }
  #site_maps .entry-content .other li a {
    color: #333;
    text-decoration: underline;
  }
}
@media screen and (max-width: 680px) {
  #site_maps {
    position: relative;
    width: 85%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
  #site_maps .entry-header h2 {
    margin: 35px 0px;
  }
  #site_maps .entry-content .block_fixed {
    padding-bottom: 35px;
  }
  #site_maps .entry-content .block_fixed h3.title {
    padding-bottom: 15px;
  }
  #site_maps .entry-content .block_fixed li {
    list-style-type: none;
    line-height: 1.8em;
    text-indent: 1em;
  }
  #site_maps .entry-content .block_fixed li a {
    color: #333;
    text-decoration: underline;
  }
  #site_maps .entry-content .block_news {
    padding-bottom: 35px;
  }
  #site_maps .entry-content .block_news h3.title {
    padding-bottom: 15px;
  }
  #site_maps .entry-content .block_news li {
    list-style-type: none;
    line-height: 1.8em;
    text-indent: 1em;
  }
  #site_maps .entry-content .block_news li a {
    color: #333;
    text-decoration: underline;
  }
  #site_maps .entry-content .block_brand {
    padding-bottom: 35px;
  }
  #site_maps .entry-content .block_brand h3.title {
    padding-bottom: 15px;
  }
  #site_maps .entry-content .block_brand li {
    list-style-type: none;
    line-height: 1.8em;
    text-indent: 1em;
  }
  #site_maps .entry-content .block_brand li a {
    color: #333;
    text-decoration: underline;
  }
  #site_maps .entry-content .block_blogs {
    padding-bottom: 35px;
  }
  #site_maps .entry-content .block_blogs h3.title {
    padding-bottom: 15px;
  }
  #site_maps .entry-content .block_blogs li {
    list-style-type: none;
    line-height: 1.8em;
    text-indent: 1em;
  }
  #site_maps .entry-content .block_blogs li a {
    color: #333;
    text-decoration: underline;
  }
  #site_maps .entry-content .block_items {
    padding-bottom: 35px;
  }
  #site_maps .entry-content .block_items h3.title {
    padding-bottom: 15px;
  }
  #site_maps .entry-content .block_items li {
    list-style-type: none;
    line-height: 1.8em;
    text-indent: 1em;
  }
  #site_maps .entry-content .block_items li a {
    color: #333;
    text-decoration: underline;
  }
  #site_maps .entry-content .other {
    margin-top: 85px;
  }
  #site_maps .entry-content .other li {
    list-style-type: none;
    line-height: 1.8em;
    text-indent: 1em;
  }
  #site_maps .entry-content .other li a {
    color: #333;
    text-decoration: underline;
  }
}
/** サイトマップ指示 **/
/** 検索窓のデザインここから **/
.search-form {
  display: flex;
  gap: 10px;
  max-width: 400px;
  margin: 20px auto;
}

.search-field {
  flex: 1;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.search-submit {
  background-color: #333;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 4px;
  cursor: pointer;
}

.search-submit:hover {
  background-color: #555;
}

/** 検索窓のデザインここまで **/
/** 検索結果のデザインここから **/
@media screen and (min-width: 681px) {
  #search-results .wrapper {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 55px;
    margin-bottom: 55px;
  }
  #search-results .wrapper .postlist {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-top: 55px;
    width: 100%;
  }
  #search-results .wrapper .postlist img {
    width: 100%;
    height: auto;
  }
  #search-results .wrapper .postlist .post-content h2.post-title {
    padding-top: 15px;
    padding-bottom: 25px;
  }
  #search-results .wrapper .postlist .post-content h2.post-title a {
    color: #333;
  }
  #search-results .recommend-search {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 55px;
    text-align: center;
    margin-bottom: 105px;
  }
  #search-results .recommend-search h2 {
    font-size: 2.2em;
    padding-bottom: 25px;
  }
  #search-results .recommend-search p {
    padding-bottom: 55px;
  }
}
@media screen and (max-width: 680px) {
  #search-results .wrapper {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 35px;
    margin-bottom: 35px;
  }
  #search-results .wrapper .postlist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
    margin-top: 35px;
    width: 100%;
  }
  #search-results .wrapper .postlist img {
    width: 100%;
    height: auto;
  }
  #search-results .wrapper .postlist .post-content h2.post-title {
    padding-top: 10px;
    padding-bottom: 25px;
  }
  #search-results .wrapper .postlist .post-content h2.post-title a {
    color: #333;
  }
  #search-results .recommend-search {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
    text-align: center;
    margin-bottom: 85px;
  }
  #search-results .recommend-search h2 {
    font-size: 1.5em;
    padding-bottom: 20px;
  }
  #search-results .recommend-search p {
    padding-bottom: 55px;
  }
}
/** 検索結果のデザインここまで **/
@media screen and (min-width: 681px) {
  #user_generated_content {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    padding: 55px 0px;
  }
  #user_generated_content .inner h2 {
    text-align: center;
    padding-bottom: 25px;
  }
  #user_generated_content .inner .insta-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  #user_generated_content .inner .insta-list li {
    list-style-type: none;
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
  }
  #user_generated_content .inner .insta-list li img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
}
@media screen and (max-width: 680px) {
  #user_generated_content {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    padding: 25px 0px;
  }
  #user_generated_content .inner h2 {
    text-align: center;
    padding-bottom: 25px;
  }
  #user_generated_content .inner .insta-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  #user_generated_content .inner .insta-list li {
    list-style-type: none;
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
  }
  #user_generated_content .inner .insta-list li img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
}
/* ページネーションのレイアウト */
.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 30px;
  font-size: 14px;
}

.wp-pagenavi a,
.wp-pagenavi span {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
  transition: all 0.2s ease;
}

.wp-pagenavi a:hover {
  background-color: #f5f5f5;
  color: #000;
  border-color: #999;
}

.wp-pagenavi .current {
  background-color: #333;
  color: #fff;
  font-weight: bold;
  border-color: #333;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  font-weight: bold;
  color: #666;
}

/* ページネーションのレイアウト *//*# sourceMappingURL=hayashiknit.css.map */