@charset "utf-8"; @import url('https://fonts.googleapis.com/css2?family=BIZ+UDPGothic:wght@400;700&family=Zen+Maru+Gothic:wght@400;500;700;900&display=swap'); html {
    font-size: 62.5%;
    overflow-x: hidden;
}

:root {
    --g1: #2A2A2A;
    --a: #F4DEB4;
    --b: #FEF0D6;
    --ah: #896C1B;
    --g2: #A0A7AB;
}

body {
    font-family: "Zen Maru Gothic", Meiryo, sans-serif;
    -webkit-font-feature-settings: "palt"1;
    font-feature-settings: "palt"1;
    -webkit-font-kerning: auto;
    font-kerning: auto;
    font-size: 1.6rem;
    line-height: 1.625;
    color: var(--g1, #2A2A2A);
}

a {
    text-decoration: none;
    color: var(--g1, #2A2A2A);
}

header {
    background-color: #fff;
    width: 100%;
    min-width: 1440px;
}

header .inner {
    height: 104px;
    padding: 30px 0px 0;
    width: 1440px;
    margin: auto;
    position: relative;
}

header .inner h1 {
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
padding-left: 66px;
}

header .inner h1 img {
    width: 66px;
    height: auto;
}

header .inner .col {
    display: flex;
    justify-content: space-between;
}

header .inner .col .left {
    display: flex;
    width: calc(50% - 33px);
    flex-direction: column;
    align-items: flex-end;
    padding-right: 27px;
}

header .inner .col .left h2 {
    color: var(--g1, #2A2A2A);
    text-align: right;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 21px */
    letter-spacing: 1px;
}

header .inner .col .left ul {
    display: flex;
    margin-top: 7px;
}

header .inner .col .left ul li {
    position: relative;
    padding-right: 14px;
    margin-right: 14px;
    font-family: "BIZ UDPGothic";
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 21px */
    letter-spacing: 1px;
}

header .inner .col .left ul li::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 21px;
    background-color: #2A2A2A;
}

header .inner .col .left ul li:last-child {
    padding-right: 0px;
    margin-right: 7px;
}

header .inner .col .left ul li:last-child::after {
    display: none;
}

header .inner .col .left ul li a {
    transition: all 200ms ease;
    font-family: "BIZ UDPGothic";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 21px */
    letter-spacing: 1px;
}

header .inner .col .left ul li a:hover {
    color: var(--ah, #896C1B);
}

header .inner .col .right {
    display: flex;
    width: calc(50% - 33px);
    padding-left: 93px;
    justify-content: space-between;
}

header .inner .col .right ul {
    display: flex;
}

header .inner .col .right ul li.nav_link {
    margin-top: 15px;
    margin-right: 22px;
}

header .inner .col .right ul li.nav_link a {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "BIZ UDPGothic";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 18px */
    letter-spacing: 1px;
transition: all 200ms ease;
}

header .inner .col .right ul li.nav_link a .icon {
}

.icon-home path {
    stroke: #2A2A2A;
    fill: white;
    /* すべて white でOK、後で変更可能 */
    transition: stroke 200ms ease, fill 200ms ease;
}

a:hover .icon-home path {
    stroke: #896C1B;
    fill: white;
    /* ホバー時に fill も変えたいならここも変更 */
}

.icon-notice path {
    stroke: #2A2A2A;
    transition: stroke 200ms ease, fill 200ms ease;
}

.icon-mail path {
    stroke: #2A2A2A;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    transition: stroke 200ms ease;
}

a:hover .icon-mail path {
    stroke: #896C1B;
}

a:hover .icon-notice path {
    stroke: #896C1B;
}

.icon-notice path[fill="currentColor"] {
    fill: #2A2A2A;
}

a:hover .icon-notice path[fill="currentColor"] {
    fill: #896C1B;
}

.icon-search path, .icon-search circle {
    stroke: #2A2A2A;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 200ms ease;
    fill: none;
}

.icon-search circle {
    fill: white;
}

a:hover .icon-search path, a:hover .icon-search circle {
    stroke: #896C1B;
}

.icon-search path[fill="#2A2A2A"] {
    fill: #2A2A2A;
    transition: fill 200ms ease;
}

a:hover .icon-search path[fill="#2A2A2A"] {
    fill: #896C1B;
}

header .inner .col .right ul li.nav_link a .text {
    color: var(--g1, #2A2A2A);
    /* BIZゴシック/SP 12 R */
    font-family: "BIZ UDPGothic";
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 18px */
    letter-spacing: 1px;
    transition: all 200ms ease;
}

header .inner .col .right ul li.nav_link a:hover,
header .inner .col .right ul li.nav_link a:hover .text {
    color: var(--ah, #896C1B);
}

header .inner .col .right ul li.sns_link {
    margin-top: 17px;
}

header .inner .col .right ul li:nth-child(4) {
    margin-right: 0px;
}

header .inner .col .right ul li:nth-child(5).sns_link {
    margin-left: 30px;
    margin-right: 26px;
}

header .inner .col .right ul li.sns_link a {
}

header .inner .col .right ul li.sns_link a:hover img {
    opacity: 0.7;
}

header .inner .col .right ul li.sns_link a img {
    transition: all 200ms ease;
    max-width: 28px;
    height: auto;
}

header.sticky-header .hmbt {
    position: relative;
    top: 34px;
    right: 45px;
}

.menu-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-lines {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    height: 24px;
}

.menu-lines span {
}

.menu-button .menu-lines svg path {
    transition: stroke 200ms ease;
}

.menu-button .text {
    transition: color 200ms ease;
}

.menu-button:hover .menu-lines svg path {
    stroke: #896C1B;
}

.menu-button:hover .text {
    color: #896C1B;
}

.hmbt .text {
    color: var(--g1, #2A2A2A);
    text-align: center;
    /* ZEN丸ゴシック/14 M */
    font-family: "Zen Maru Gothic";
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 21px */
    letter-spacing: 1px;
}

/*
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 104px;
    background-color: #fff;
    transform: translateY(0);
    transition: transform 0.3s ease;
    z-index: 10002;
    margin-bottom: -36px;
}

.sticky-header.hide {
    transform: translateY(-150%);
}
*/
.sticky-header {
  position: relative;
  z-index: 10002;
    width: 100%;
    height: 104px;
    background-color: #fff;
    margin-bottom: -104px;
    width: 100%;
    top: 0;
    left: 0;
    display: flex !important
;
}


/* Stickyになった直後：非表示位置に即座に移動（transition無し） */
.sticky-header.stick {
  position: sticky;
  top: 0;
  transform: translateY(-150%);
  transition: none;
}

/* 上スクロール → 表示（ふわっと） */
.sticky-header.stick.show {
  transform: translateY(0);
  transition: transform 0.8s ease-out;
}

/* 下スクロール → 非表示（スルッと） */
.sticky-header.stick.hide2 {
  transform: translateY(-150%);
  transition: transform 0.5s ease-out;
}

.drawer {
    position: fixed;
    width: 375px;
    right: -375px;
    top: 0;
    transition: 0.6s;
    background: #fff;
    z-index: 10003;
    height: 100vh;
    overflow-y: auto;
}

.drawer.open {
    right: 0;
}

/*
html.drawer-open, body.drawer-open {
    overflow: hidden;
    height: 100%;
    touch-action: none;
}
*/
html.drawer-open, body.drawer-open {
    overflow: hidden;
    height: 100%;
}

.drawer-close {
    position: absolute;
    top: 34px;
    right: 52px;
    background: none;
    border: none;
    cursor: pointer;
}

.drawer-close .text {
    color: var(--g1, #2A2A2A);
    text-align: center;
    /* ZEN丸ゴシック/14 M */
    font-family: "Zen Maru Gothic";
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 21px */
    letter-spacing: 1px;
}

.drawer-close svg path {
    transition: stroke 200ms ease;
}

.drawer-close .text {
    transition: color 200ms ease;
}

.drawer-close:hover svg path {
    stroke: #896C1B;
}

.drawer-close:hover .text {
    color: #896C1B;
}

.drawer .inner {
    width: 100%;
    height: 100vh;
    display: flex;
    padding-top: 130px;
}

.drawer-cover {
    background-color: #F4DEB4;
    width: calc(100% - 375px);
    opacity: 0.8;
}

.drawer-nav {
    background-color: #fff;
    width: 375px;
    padding-left: 24px;
    padding-right: 24px;
}

.drawer-nav ul.nav1 {
}

.drawer-nav ul.nav1 li {
    margin-bottom: 24px;
}

.drawer-nav ul.nav1 li a {
    color: var(--g1, #2A2A2A);
    font-family: "BIZ UDPGothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 24px */
    letter-spacing: 1px;
    transition: color 200ms ease;
}

.drawer-nav ul.nav1 li a:hover {
    color: #896C1B;
}

.drawer-nav ul.nav2 {
    margin-top: 24px;
}

.drawer-nav ul.nav2 li {
    margin-bottom: 24px;
}

.drawer-nav ul.nav2 li a {
    display: flex;
    align-items: center;
    transition: color 200ms ease;
    color: var(--g1, #2A2A2A);
    font-family: "BIZ UDPGothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 24px */
    letter-spacing: 1px;
}

.drawer-nav ul.nav2 li a svg {
    margin-right: 12px;
}

.drawer-nav ul.nav2 li a:hover {
    color: #896C1B;
}

.drawer-nav ul.nav2 li:not(:nth-child(3)) a svg {
    margin-left: 2px;
}

.drawer-nav ul.nav3 {
    margin-top: 64px;
    display: flex;
    justify-content: center;
    gap: 44px;
}

.drawer-nav ul.nav3 li.sns_link a:hover img {
    opacity: 0.7;
}

.drawer-nav ul.nav3 li.sns_link a img {
    transition: all 200ms ease;
    max-width: 40px;
    height: auto;
}

main {
    margin-top: 104px;
    z-index: 10001;
    position: relative;
}

.carousel-section {
    width: 100%;min-width: auto;
    overflow: hidden;
/*    min-width: 1440px; */
}

.image-carousel .swiper-slide {
    width: 424px !important;
    /* 固定サイズを優先 */
    height: 600px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-carousel .swiper-slide a {
    display: block;
    width: 424px;
    height: 600px;
    overflow: hidden;
    /* ← 拡大部分を枠からはみ出させない */
    position: relative;
}

.image-carousel .swiper-slide a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    transform-origin: center center;
    /* ← 拡大の起点を中央に */
}

.image-carousel .swiper-slide a:hover img {
    transform: scale(1.07);
}

.swiper-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
}

.custom-arrow {
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    padding: 0;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.custom-arrow:hover {
    background-color: #F6F6F6;
}

.custom-arrow svg {
    display: block;
}

.swiper-fraction {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #2A2A2A;
    font-family: "BIZ UDPGothic";
}

.swiper-fraction-divider svg {
    display: block;
    width: 12px;
    height: 20px;
}

#modal-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(244, 222, 180, 0.8);
    z-index: 10002;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#modal-bg.active {
    opacity: 1;
    visibility: visible;
}

#latest {
    background-image: url('https://shinseikyo.com/wp-content/themes/shinseikyo/images/top_back1.png');
    background-size: 1573px auto;
    background-repeat: no-repeat;
    background-position: calc(50% + 53.5px) top;
    background-attachment: scroll;
    margin-top: 80px;
    min-width: 1440px;
}

#latest .inner {
    width: 1440px;
    margin: 0 auto;
}

#latest .inner .title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#latest .inner .title h2 {
    color: var(--g1, #2A2A2A);
    text-align: center;
    /* ZEN丸ゴシック/見出し1 Bold */
    font-family: "Zen Maru Gothic";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 40px */
    letter-spacing: 1px;
    display: flex;
}

#latest .inner .title h2 img {
    margin-right: 6px;
}

#latest .inner .title .eng {
    margin-top: 8px;
    color: var(--g1, #2A2A2A);
    text-align: center;
    /* ZEN丸ゴシック/見出し_英語 M */
    font-family: "Zen Maru Gothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 24px */
    letter-spacing: 1px;
}

.content {
    width: 906px;
    display: flex;
    gap: 58px;
    /* 画像とテキスト間の余白 */
    margin: 36px auto 80px;
}

.img-shadow {
    position: relative;
    width: 320px;
    display: inline-block;
}

.img-shadow::before {
    content: '';
    position: absolute;
    top: 6px;
    /* 下に4pxずらす */
    left: 6px;
    /* 右に4pxずらす（実質画像より右へ） */
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 0;
    /* 背面へ */
}

.img-shadow::after {
    content: '';
    position: absolute;
    top: 0px;
    /* 下に4pxずらす */
    left: 0px;
    /* 右に4pxずらす（実質画像より右へ） */
    width: 100%;
    height: 100%;
    z-index: 0;
    background: #fff;
    /* 背面へ */
}

.img-shadow img {
    position: relative;
    width: 100%;
    display: block;
    z-index: 1;
    /* 前面へ */
    transition: all 0.3s ease;
border: 1px solid #000
}

.img-shadow a:hover img {
    opacity: 0.7;
}

.data {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.data_title {
    display: flex;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: dashed 1px #A0A7AB;
}

.data_title h3 {
    color: var(--g1, #2A2A2A);
    margin-top: 16px;
    /* BIZゴシック/タイトル Bold */
    font-family: "BIZ UDPGothic";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 36px */
    letter-spacing: 1px;
}

.pub_date {
    color: var(--g1, #2A2A2A);
    margin-top: 4px;
    /* BIZゴシック/日付地名 R */
    font-family: "BIZ UDPGothic";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    /* 12px */
    letter-spacing: 1px;
}

.new {
    color: #FFF;
    text-align: center;
    background-color: #EC3333;
    width: 72px;
    height: 72px;
    border-radius: 72px;
    /* ZEN丸ゴシック/new16 Bold */
    font-family: "Zen Maru Gothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 16px */
    letter-spacing: 1px;
    margin-left: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toc {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: calc(50% - 12px);
}

.toc li {
    color: var(--g1, #2A2A2A);
    /* BIZゴシック/目次 Bold */
    font-family: "BIZ UDPGothic";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 180%;
    /* 25.2px */
    letter-spacing: 1px;
}

.bt a {
    display: flex;
    width: 400px;
    height: 64px;
    /* padding: 10px 42px 10px 48px; */
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 32px;
    border: 1px solid var(--g1, #2A2A2A);
    background: var(--white, #FFF);
    transition: background-color 0.3s ease;
    margin-top: 50px;
    font-family: "BIZ UDPGothic";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1px;
}

.bt a:hover {
    background-color: #F6F6F6;
}

.red-section {
    height: 542px;
    background-color: #EC3333;
    border-top-left-radius: 271px;
    border-bottom-left-radius: 271px;
    margin-left: max(calc(50% - 720px), 0px);
    /* 左端を固定しつつ、狭い時は0で止める */
    width: 100%;
}

.red-section .inner {
    width: 1440px;
    min-width: 1440px;
    padding-left: 220px;
}

.red-section .inner .title {
    display: flex;
    align-items: center;
    padding-top: 36px;
}

.red-section .inner .title h2 {
    display: flex;
    color: var(--white, #FFF);
    text-align: center;
    align-items: center;
    /* ZEN丸ゴシック/見出し2 Bold */
    font-family: "Zen Maru Gothic";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 48px */
    letter-spacing: 1px;
    margin-right: 16px;
}

.red-section .inner .title h2 img {
    margin-right: 10px;
}

.red-section .inner .title .eng {
    color: var(--white, #FFF);
    text-align: center;
    /* ZEN丸ゴシック/見出し_英語 M */
    font-family: "Zen Maru Gothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 24px */
    letter-spacing: 1px;
}

.slide_area {
    display: flex;
    margin-top: ;
}

/* Swiper本体 */
.red-swiper {
    width: 100%;
    padding-left: max(calc(50% - 720px), 0px);
    /* 左端を固定に */
}

/* 各スライド */
.red-swiper .swiper-slide {
    width: 242px;
    flex-shrink: 0;
}

.red-section_content {
    padding-left: 220px;
    margin-top: 24px;
}

.red-fraction {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #fff;
    font-family: "BIZ UDPGothic";
}

.red-fraction-divider svg {
    display: block;
    width: 12px;
    height: 20px;
}

.swiper-pagination-current, .swiper-pagination-total {
    min-width: 20px;
    display: block;
    text-align: center;
}

.content_inner {
    margin-left: max(calc(50% - 492px), 0px);
    width: 100%;
}

.red-swiper .swiper-slide.box {
    border-radius: 16px;
    border: 1px solid var(--g2, #A0A7AB);
    background: var(--white, #FFF);
    padding: 16px;
}

.red-swiper .swiper-slide.box .wrap-img {
    overflow: hidden;
    border-radius: 6px;
}

.red-swiper .swiper-slide.box .wrap-img img {
    border-radius: 6px;
    width: 220px;
    transition: transform .3s;
}

.red-swiper .swiper-slide.box a {
}

.red-swiper .swiper-slide.box a:hover .wrap-img img {
    transform: scale(1.08);
}

.red-swiper .swiper-slide.box .catbox {
    margin-top: 8px;
    display: flex;
}

.red-swiper .swiper-slide.box .catbox .cat_name {
    display: flex;
    min-width: 106px;
    height: 22px;
    padding: 2px 8px;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    border: 1px solid var(--a, #F4DEB4);
    background: var(--b, #FEF0D6);
    margin-right: 8px;
    color: var(--g1, #2A2A2A);
    /* BIZゴシック/カテゴリ12 Bold */
    font-family: "BIZ UDPGothic";
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 18px */
    letter-spacing: 1px;
}

.red-swiper .swiper-slide.box .catbox img {
}

.red-swiper .swiper-slide.box .areabox {
    margin-top: 4px;
    color: var(--g1, #2A2A2A);
    display: flex;
    /* BIZゴシック/日付地名 R */
    font-family: "BIZ UDPGothic";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    /* 12px */
    letter-spacing: 1px;
    align-items: center;
}

.red-swiper .swiper-slide.box .areabox img {
    margin-right: 4px;
}

.red-swiper .swiper-slide.box h3 {
    margin-top: 6px;
    color: var(--g1, #2A2A2A);
    /* BIZゴシック/タイトル Bold */
    font-family: "BIZ UDPGothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 24px */
    letter-spacing: 1px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 48px;
    /* 24px × 2行 */
}

.red-swiper .swiper-slide.box .date1 {
    margin-top: 6px;
    color: var(--g1, #2A2A2A);
    /* BIZゴシック/日付地名 R */
    font-family: "BIZ UDPGothic";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    /* 12px */
    letter-spacing: 1px;
}

.red-swiper .swiper-slide.box .date2 {
    color: var(--g2, #A0A7AB);
    margin-top: 4px;
    /* BIZゴシック/SP 10 R */
    font-family: "BIZ UDPGothic";
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 15px */
}

.red-button-prev.custom-arrow, .red-button-next.custom-arrow {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    border-radius: 50%;
    padding: 0;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.latest_article_cont_bt {
    display: flex;
    align-items: center;
    gap: 32px;
justify-content: center;
}

.search_bt a {
    display: flex;
    width: 400px;
    height: 64px;
    /* padding: 10px 42px 10px 48px; */
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 32px;
    border: 1px solid #fff;
    background: none;
    transition: background-color 0.3s ease;
    margin-top: 24px;
    color: #fff;
}

.search_bt a:hover {
    background-color: #FF4747;
}

.red-button-prev.custom-arrow:hover, .red-button-next.custom-arrow:hover {
    background-color: #FF4747;
}

.red-fraction {
    color: #fff;
}

#recent_editions {
    margin-top: 20px;
    margin-bottom: 70px;
    min-width: 1440px;
}

.gold-section {
    height: 523px;
    background-color: var(--a, #F4DEB4);
    border-top-right-radius: 262px;
    border-bottom-right-radius: 262px;
    margin-right: max(calc(50% - 720px), 0px);
    width: 100%;
    background-image: url('https://shinseikyo.com/wp-content/themes/shinseikyo/images/recent_editions_back.svg');
    background-repeat: no-repeat;
    background-position: center center;
}

.gold-section .inner {
    /* width: 1440px; */
    /* min-width: 1440px; */
    /* padding-left: 220px; */
    margin: auto;
    text-align: center;
}

.gold-section .inner .title {
    display: flex;
    align-items: center;
    padding-top: 36px;
    justify-content: center;
    /* width: 1440px; */
    /* min-width: 1440px; */
}

.gold-section .inner .title h2 {
    display: flex;
    color: var(--g1, #2A2A2A);
    text-align: center;
    align-items: center;
    /* ZEN丸ゴシック/見出し2 Bold */
    font-family: "Zen Maru Gothic";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 48px */
    letter-spacing: 1px;
    margin-right: 16px;
}

.gold-section .inner .title h2 img {
    margin-right: 10px;
}

.gold-section .inner .title .eng {
    color: var(--g1, #2A2A2A);
    text-align: center;
    /* ZEN丸ゴシック/見出し_英語 M */
    font-family: "Zen Maru Gothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 24px */
    letter-spacing: 1px;
}

#recent_editions ul {
    margin-top: 24px;
    display: flex;
    gap: 32px;
    justify-content: center;
}

#recent_editions ul li {
    width: 170px;
}

#recent_editions ul li img {
    width: 170px;
}

#recent_editions ul li .img-shadow {
    position: relative;
    width: 170px;
    display: inline-block;
}

#recent_editions ul li h3 {
    padding-top: 12px;
    color: var(--g1, #2A2A2A);
    /* BIZゴシック/タイトル Bold */
    font-family: "BIZ UDPGothic";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 21px */
    letter-spacing: 1px;
}

#recent_editions ul li .date1 {
    margin-top: 4px;
    color: var(--g1, #2A2A2A);
    /* BIZゴシック/日付地名 R */
    font-family: "BIZ UDPGothic";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    /* 12px */
    letter-spacing: 1px;
}

.gold-section a:hover img {
    opacity: 0.7;
}

.gold-section .img-shadow::after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    z-index: 0;
    background: #fff;
}

.gold-section .bt {
    display: flex;
    justify-content: center;
}

.gold-section .bt a {
    margin-top: 24px;
    background: var(--white, #F4DEB4);
}

.gold-section .bt a:hover {
    background: var(--white, #FEF0D6);
}

#top_news {
    background-image: url(https://shinseikyo.com/wp-content/themes/shinseikyo/images/top_news_back.svg);
    background-size: 1636px auto;
    background-repeat: no-repeat;
    background-position: calc(50% + 53.5px) top;
    background-attachment: scroll;
    margin-top: 140px;
    min-width: 1440px;
}

#top_news .inner {
    width: 1008px;
    margin: 0 auto;
}

#top_news .inner .title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#top_news .inner .title h2 {
    color: var(--g1, #2A2A2A);
    text-align: center;
    /* ZEN丸ゴシック/見出し1 Bold */
    font-family: "Zen Maru Gothic";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 40px */
    letter-spacing: 1px;
    display: flex;
}

#top_news .inner .title h2 img {
    margin-right: 6px;
    width: 40px;
}

#top_news .inner .title .eng {
    margin-top: 8px;
    color: var(--g1, #2A2A2A);
    text-align: center;
    /* ZEN丸ゴシック/見出し_英語 M */
    font-family: "Zen Maru Gothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 24px */
    letter-spacing: 1px;
}

#top_news .inner .top_news_content {
    width: 1008px;
    margin: 0 auto;
}

#top_news .inner .top_news_content ul {
}

#top_news .inner .top_news_content ul li {
    border-bottom: dashed 1px #A0A7AB;
}

#top_news .inner .top_news_content ul li a {
    display: flex;
    padding: 24px 0px;
}

#top_news .inner .top_news_content ul li a .date_cat {
    display: flex;
}

#top_news .inner .top_news_content ul li a .date_cat .date {
    color: var(--g1, #2A2A2A);
    /* BIZゴシック/SP 14 R */
    font-family: "BIZ UDPGothic";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 21px */
    letter-spacing: 1px;
    margin-right: 16px;
    width: 10.5em;
}

#top_news .inner .top_news_content ul li a .date_cat .cat {
    display: flex;
    min-width: 106px;
    height: 22px;
    padding: 2px 16px;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    border: 1px solid var(--a, #F4DEB4);
    background: var(--b, #FEF0D6);
    color: var(--g1, #2A2A2A);
    /* BIZゴシック/カテゴリ12 Bold */
    font-family: "BIZ UDPGothic";
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 18px */
    letter-spacing: 1px;
    margin-right: 16px;
}

#top_news .inner .top_news_content ul li a .title {
}

#top_news .inner .top_news_content ul li a .title p {
    color: var(--g1, #2A2A2A);
    /* BIZゴシック/タイトル Bold */
    font-family: "BIZ UDPGothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 24px */
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

#top_news .inner .top_news_content ul li a:hover p {
    color: #896C1B;
}

#top_news .bt {
    margin: auto;
    display: flex;
    justify-content: center;
}

#top_news .bt a {
    margin-top: 32px;
}

#about {
    background-image: url(https://shinseikyo.com/wp-content/themes/shinseikyo/images/about_back.svg);
    background-size: 1573px auto;
    background-repeat: no-repeat;
    background-position: calc(50% + 53.5px) top;
    background-attachment: scroll;
    margin-top: 164px;
    /* min-width: 1440px; */
}

#about .inner {
    max-width: 1216px;
    margin: 0 auto;
}

#about .title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#about .title h2 {
    color: var(--g1, #2A2A2A);
    text-align: center;
    /* ZEN丸ゴシック/見出し1 Bold */
    font-family: "Zen Maru Gothic";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 40px */
    letter-spacing: 1px;
    display: flex;
}

#about .title h2 img {
    margin-right: 6px;
}

#about .title .eng {
    margin-top: 8px;
    color: var(--g1, #2A2A2A);
    text-align: center;
    /* ZEN丸ゴシック/見出し_英語 M */
    font-family: "Zen Maru Gothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 24px */
    letter-spacing: 1px;
}

#about .about_content {
    max-width: 1216px;
    margin: 0 auto;
}

#about .about_content .row {
    display: flex;
    gap: 50px;
    margin-top: 34px;
}

#about .about_content .row > .img {
    max-width: 854px;
    flex-shrink: 0;
    width: 71%;
}

#about .about_content .row > .img img {
    width: 854px;
}

#about .about_content .row .text {
}

#about .about_content .row > .text > .img {
    margin-top: 16px;
    display: flex;
    justify-content: center;
}

#about .about_content .row > .text > .img > img {
    width: 111px;
}

#about .about_content .row .text h3 {
    color: var(--g1, #2A2A2A);
    margin-top: 40px;
    /* ZEN丸ゴシック/タイトル Bold */
    font-family: "Zen Maru Gothic";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 36px */
}

#about .about_content .row .text p {
    margin-top: 20px;
    color: var(--g1, #2A2A2A);
    /* BIZゴシック/本文16 R */
    font-family: "BIZ UDPGothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%;
    /* 32px */
}

#about .about_content .row2 {
    margin-top: 56px;
    display: flex;
    gap: 40px;
    position: relative;
    padding-bottom: 160px;
}

#about .about_content .row2 .text {
    min-width: 483px;
    width: 100%;}
}

#about .about_content .row2 .text h3 {
    color: var(--g1, #2A2A2A);
    /* ZEN丸ゴシック/タイトル Bold */
    font-family: "Zen Maru Gothic";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 36px */
}

#about .about_content .row2 .text p {
    margin-top: 18px;
    color: var(--g1, #2A2A2A);
    /* BIZゴシック/本文16 R */
    font-family: "BIZ UDPGothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%;
    /* 32px */
}

#about .about_content .row2 .img {
    border-radius: 123px 0 0 123px;
    background: var(--b, #FEF0D6);
    height: 246px;
    min-width: 808px;
    width: calc(100vw - ((100vw - 1216px) / 2 - 40px));
    margin-right: calc((100vw - 1216px) / -2);
    flex-shrink: 0;
padding-left: 20px;
}

#about .about_content .row2 .img img {
    width: calc(100% / 2);
    max-width: 687px;
}
#supporters {
    width: 100%;
    background: url(https://shinseikyo.com/wp-content/themes/shinseikyo/images/supporter_back.svg) calc(50% + 13.5px) 66px / 1646px auto no-repeat, linear-gradient(0deg, #FFFAEA 0%, #FFF0D4 100%) top / 100% 95px no-repeat, linear-gradient(180deg, #FFFAEA 0%, #FFEFCF 100%) bottom / 100% 197px no-repeat, #FFFAEA;
    background-attachment: scroll;
    z-index: 1;
    position: relative;
}

#supporters .inner {
    width: 1216px;
    margin: 0 auto;
    padding-top: 116px;
    padding-bottom: 120px;
}

#supporters .title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#supporters .title h2 {
    color: var(--g1, #2A2A2A);
    text-align: center;
    /* ZEN丸ゴシック/見出し1 Bold */
    font-family: "Zen Maru Gothic";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 40px */
    letter-spacing: 1px;
    display: flex;
    gap: 12px;
}

#supporters .title h2 img {
}

#supporters .title .eng {
    margin-top: 8px;
    color: var(--g1, #2A2A2A);
    text-align: center;
    /* ZEN丸ゴシック/見出し_英語 M */
    font-family: "Zen Maru Gothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 24px */
    letter-spacing: 1px;
}

#supporters .title p {
    margin-top: 16px;
    color: var(--g1, #2A2A2A);
    /* BIZゴシック/タイトル Bold */
    font-family: "BIZ UDPGothic";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 36px */
    letter-spacing: 1px;
}

.supporter-grid {
    width: 1216px;
    margin: 32px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 280px);
    gap: 6px 32px;
}

.supporter {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.supporter a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

/* ラッパー：白背景＋枠線 */
.img-wrap {
    background-color: #fff;
    border: 1px solid #000;
    box-sizing: border-box;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease;
}

.img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.caption {
    margin-top: 3px;
    color: var(--g1, #2A2A2A);
    text-align: center;
    font-family: "BIZ UDPGothic";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

/* 大きな画像（2x2マス） */
.supporter.large {
    grid-column: span 2;
    grid-row: span 2;
}

/* ホバー効果 */
.supporter a:hover .img-wrap img {
    opacity: 0.7;
}

.supporter a:hover .img-wrap {
    border-color: #D4AF37;
}

.supporter a:hover .caption {
    color: #D4AF37;
}

footer {
    background-color: #fff;
    width: 100%;
    min-width: 1440px;
    z-index: 10001;
    position: relative;
}

footer .inner {
    width: 811px;
    margin: 0 auto;
    padding-top: 72px;
    padding-bottom: 40px;
}

footer .footer1 {
    display: flex;
}

footer .footer1 .col:nth-child(1) {
    margin-right: 73px;
}

footer .footer1 .col:nth-child(1) img {
    width: 196px;
}

footer .footer1 .col:nth-child(2) {
    margin-right: 72px;
}

footer .footer1 .col:nth-child(2) img {
    width: 60px;
}

footer .footer1 .col:nth-child(3) {
    display: flex;
    margin-right: 62px;
}

footer .footer1 .col:nth-child(3) ul:nth-child(1) {
    margin-right: 40px;
}

footer .footer1 .col:nth-child(3) ul {
}

footer .footer1 .col:nth-child(3) ul li a {
    color: var(--g1, #2A2A2A);
    /* BIZゴシック/SP 14 R */
    font-family: "BIZ UDPGothic";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 21px */
    letter-spacing: 1px;
    padding-bottom: 8px;
    transition: color 0.3s ease;
}

footer .footer1 .col:nth-child(3) ul li a:hover {
    color: var(--ah, #896C1B);
}

footer .footer1 .col .text {
    display: flex;
    gap: 3px;
    color: var(--g1, #2A2A2A);
    font-family: "BIZ UDPGothic";
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    align-items: center;
}

footer .footer1 .col ul li a img {
    width: 10px;
}

footer .footer1 .col .text img:last-of-type {
    transform: scaleX(-1);
}

footer .footer1 .col:nth-child(4) ul {
    display: flex;
    gap: 28px;
    margin-top: 11px;
}

footer .footer1 .col:nth-child(4) ul li {
}

footer .footer1 .col:nth-child(4) ul li a {
}

footer .footer1 .col:nth-child(4) ul li a img {
    width: 28px;
    transition: all 200ms ease;
}

footer .footer1 .col:nth-child(4) ul li a:hover img {
    opacity: 0.7;
}

footer .footer2 {
    margin-top: 40px;
}

footer .footer2 .text1 {
    color: var(--g1, #2A2A2A);
    text-align: center;
    font-family: "Zen Maru Gothic";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 18px */
    letter-spacing: 1px;
}

footer .footer2 .text2 {
    margin-top: 12px;
    color: var(--g1, #2A2A2A);
    text-align: center;
    /* ZEN丸ゴシック/14 Bold */
    font-family: "Zen Maru Gothic";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 21px */
    letter-spacing: 1px;
}

footer .footer2 .copy {
    margin-top: 4px;
    color: var(--g1, #2A2A2A);
    text-align: center;
    /* BIZゴシック/SP 10 R */
    font-family: "BIZ UDPGothic";
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 15px */
}

.totop {
    position: absolute;
    bottom: 48px;
    right: 30px;
}

.totop a {
    width: 49px;
    height: 49px;
    border-radius: 49px;
    border: 1px solid #2A2A2A;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--g1, #2A2A2A);
    text-align: center;
    transition: all 200ms ease;
    background-color: #fff;
    /* BIZゴシック/SP 10 R */
    font-family: "BIZ UDPGothic";
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 15px */
}

.totop a img {
}

.totop a:hover {
    background-color: #F6F6F6;
}

.pc_only {
    display: block;
}

.sp_only {
    display: none;
}

@media (min-width: 1025px) {
    #sp_menu {
        display: none;
    }
}

@media (max-width: 1024px) {
    .pc_only {
        display: none !important ;
    }

    .sp_only {
        display: block;
    }

    header {
        min-width: 100%;
    }

    .sp_sticky-header .inner {
        height: 72px;
        padding: 20px 2% 0;
        max-width: 100%;
        margin: auto;
        position: relative;
        display: flex ;
        justify-content: space-between;
    }

    .sp_sticky-header {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: 72px;
        background-color: #fff;
        transform: translateY(0);
        transition: transform 0.3s ease;
        z-index: 10003;
        margin-bottom: -72px;
    }


.sp_sticky-header.stick {
  /*position: sticky;*/
position: fixed;
  top: 0;
  transform: translateY(-150%);
  transition: none;
}

.sp_sticky-header.stick.show {
  transform: translateY(0);
  transition: transform 0.8s ease-out;
}

.sp_sticky-header.stick.hide2 {
  transform: translateY(-150%);
  transition: transform 0.5s ease-out;
}

    header .inner h1 {
        position: absolute;
        left: 50%;
        top: 12px;
        transform: translateX(-50%);
padding-left: 0px !important;
    }

    header .inner h1 img {
        width: 44px;
        height: auto;
    }

    header .inner .col h2 {
        color: var(--g1, #2A2A2A);
        font-family: "Zen Maru Gothic";
        font-size: 10px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        /* 15px */
        letter-spacing: 1px;
    }

    .hmbt .text {
        color: var(--g1, #2A2A2A);
        text-align: center;
        /* ZEN丸ゴシック/12M */
        font-family: "Zen Maru Gothic";
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        /* 18px */
        letter-spacing: 1px;
    }

    .menu-lines {
        display: flex ;
        flex-direction: column;
        justify-content: center;
        gap: 2px;
        height: 20px;
        /* width: 32px; */
    }

    .menu-lines svg {
        width: 32px;
    }

    #sp_menu {
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    #sp_menu.open {
        opacity: 1;
        visibility: visible;
    }

    main {
        margin-top: 75px;
        z-index: 10001;
        position: relative;
    }

    .sp_menu_box {
        position: fixed;
        top: 71px;
        left: 0;
        width: 100%;
        background: #fff;
        text-align: center;
        height: 100vh;
        z-index: 10002;
        overflow-y: auto;
        padding-bottom: 120px;
        padding-top: 20px;
        padding-left: 4%;
        padding-right: 4%;
    }

    .menu_inner {
        margin-top: 40px;overflow-y: auto;
    }

    .menu_inner ul.nav1 li, .menu_inner ul.nav2 li {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 24px;
    }

    .menu_inner ul.nav1 li a, .menu_inner ul.nav2 li a {
        color: var(--g1, #2A2A2A);
        font-family: "BIZ UDPGothic";
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        /* 24px */
        letter-spacing: 1px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .menu_inner ul.nav2 {
        margin-top: 50px;
    }

    .menu_inner ul.nav3 {
        display: flex;
        margin-top: 64px;
        justify-content: center;
        align-items: center;
        gap: 44px;
    }

    .menu_inner ul.nav3 li {
    }

    .menu_inner ul.nav3 li a {
    }

    .menu_inner ul.nav3 li a img {
        width: 40px;
    }

    .custom-arrow svg {
        display: block;
        width: 32px;
    }

    .carousel-section {
        width: 100%;
        overflow: hidden;
        min-width: 100%;
    }

    .swiper-fraction {
        display: flex ;
        align-items: center;
        gap: 8px;
        font-size: 10px;
        color: #2A2A2A;
        font-family: "BIZ UDPGothic";
    }

    .swiper-controls {
        display: flex ;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-top: 14px;
    }

    #latest .inner .title .eng {
margin-top: 0;
        color: var(--g1, #2A2A2A);
        text-align: center;
        /* ZEN丸ゴシック/10M */
        font-family: "Zen Maru Gothic";
        font-size: 10px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        /* 15px */
        letter-spacing: 1px;
    }

    #latest {
        background-image: url(https://shinseikyo.com/wp-content/themes/shinseikyo/images/latest_back_sp.svg);
        background-size: 100%;
        background-repeat: no-repeat;
        background-position: center 20px;
        background-attachment: scroll;
        margin-top: 40px;
        min-width: 100%;
    }

    #latest .inner {
        width: 100%;
        margin: 0 auto;
    }

    #latest .inner .title h2 {
        color: var(--g1, #2A2A2A);
        text-align: center;
        /* ZEN丸ゴシック/SP見出し Bold24 */
        font-family: "Zen Maru Gothic";
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%;
        /* 28.8px */
        letter-spacing: 1px;
    }

    #latest .inner .title h2 img {
        margin-right: 12px;
        width: 24px;
    }

    .red-section .inner .title {
        display: flex;
        align-items: center;
        padding-top: 36px;
        justify-content: flex-end;
        padding-right: 4%;
    }

    #recent_editions {
        margin-top: 20px;
        margin-bottom: 0px;
        min-width: 100%;
        /* 号が3つになったら戻す数値 padding-bottom: 200px; */

        padding-bottom: 0px;
position: relative;
    }

    .content {
        width: 100%;
        display: flex ;
        gap: 16px;
        margin: 24px auto 50px;
        flex-direction: column;
    }

    .content .img {
        display: flex ;
        justify-content: center;
    }

#about .about_content .row2 .img img {
    width: 100%;
}


    #latest .img-shadow {
        position: relative;
        min-width: 320px;
        display: inline-block;
        max-width: 80%;
        width: 100%;
    }

    .img-shadow::before {
        content: '';
        position: absolute;
        top: 7px;
        left: 7px;
        width: 100%;
        height: 100%;
        background-color: black;
        z-index: 0;
    }

    .data {
        flex: 1;
        display: flex ;
        flex-direction: column;
        padding-left: 4%;
        padding-right: 4%;
        max-width: 550px;
        width: 90%;
        margin: auto;
    }

    .data_title h3 {
        color: var(--g1, #2A2A2A);
        font-family: "BIZ UDPGothic";
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        /* 27px */
        letter-spacing: 1px;
        margin-top: 2px;
    }

    .gold-section .bt {
        display: flex;
        justify-content: center;
        width: 90%;
        margin: auto;
        padding-left: 4%;
        padding-right: 4%;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        /* 号が3つになったら戻す数値 bottom: 30px; */
bottom: 110px;
    }

    .gold-section .bt a {
        margin-top: 24px;
        background: var(--white, #fff);
    }

    .pub_date {
        color: var(--g1, #2A2A2A);
        /* BIZゴシック/SP 10 R */
        font-family: "BIZ UDPGothic";
        font-size: 10px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        /* 15px */
    }

    .new {
        color: #FFF;
        text-align: center;
        background-color: #EC3333;
        width: 56px;
        height: 56px;
        border-radius: 72px;
        font-family: "Zen Maru Gothic";
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 100%;
        letter-spacing: 1px;
        margin-left: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .data_title {
        display: flex ;
        align-items: center;
        padding-bottom: 9px;
        border-bottom: dashed 1px #A0A7AB;
    }

    .toc li {
        color: var(--g1, #2A2A2A);
        /* BIZゴシック/SP 12B */
        font-family: "BIZ UDPGothic";
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: 180%;
        /* 21.6px */
        letter-spacing: 1px;
    }

    .bt a {
        display: flex;
        width: 400px;
        height: 48px;
        /* padding: 10px 42px 10px 48px; */
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 16px;
        border-radius: 48px;
        border: 1px solid var(--g1, #2A2A2A);
        background: var(--white, #FFF);
        transition: background-color 0.3s ease;
        margin-top: 18px;
        min-width: 300px;
        width: 100%;
        font-family: "BIZ UDPGothic";
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        letter-spacing: 1px;
    }

    .search_bt a {
        display: flex ;
        width: 157px;
        height: 48px;
        /* padding: 10px 42px 10px 48px; */
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 5px;
        border-radius: 32px;
        border: 1px solid #fff;
        background: none;
        transition: background-color 0.3s ease;
        margin-top: 6px;
        color: #fff;
        max-width: 157px;
        width: 100%;
        min-width: 157px;
    }

    #top_news {
        background-image: url(https://shinseikyo.com/wp-content/themes/shinseikyo/images/top_news_back_sp.svg);
    background-size: 494px auto;
    background-repeat: no-repeat;
    background-position: calc(50% + 45.5px) 10px;
    background-attachment: scroll;
    margin-top: 50px;
    min-width: 100%;
    }

    #top_news .inner .title h2 {
        color: var(--g1, #2A2A2A);
        text-align: center;
        /* ZEN丸ゴシック/SP見出し Bold24 */
        font-family: "Zen Maru Gothic";
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%;
        /* 28.8px */
        letter-spacing: 1px;
        display: flex;
    }

    #top_news .inner .title h2 img {
        margin-right: 12px;
        width: 24px;
    }

    #top_news .inner .title .eng {
        margin-top: 0px;
        color: var(--g1, #2A2A2A);
        text-align: center;
        /* ZEN丸ゴシック/10M */
        font-family: "Zen Maru Gothic";
        font-size: 10px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        /* 15px */
        letter-spacing: 1px;
    }

    #top_news .inner .top_news_content ul li a {
        display: flex;
        padding: 20px 0px;
        flex-direction: column;
    }

    #latest_article {
        padding-left: 4%;
    }

    .red-section {
        height: 522px;
        background-color: #EC3333;
        border-top-left-radius: 261px;
        border-bottom-left-radius: 261px;
        margin-left: max(calc(50% - 720px), 0px);
        width: 100%;
    }

    .red-swiper .swiper-slide {
        width: 220px;
        flex-shrink: 0;
    }

    .red-swiper .swiper-slide.box .wrap-img img {
        border-radius: 6px;
        width: 190px;
        transition: transform .3s;
    }

    .red-swiper .swiper-slide.box .catbox .cat_name {
        display: flex;
        min-width: 100px;
        height: 20px;
        padding: 2px 8px;
        justify-content: center;
        align-items: center;
        border-radius: 6px;
        border: 1px solid var(--a, #F4DEB4);
        background: var(--b, #FEF0D6);
        margin-right: 8px;
        color: var(--g1, #2A2A2A);
        text-align: center;
        /* BIZゴシック/SP 10 B */
        font-family: "BIZ UDPGothic";
        font-size: 10px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        /* 15px */
        letter-spacing: 1px;
    }

    .red-swiper .swiper-slide.box .catbox img {
        width: 14px;
    }

    .red-swiper .swiper-slide.box h3 {
        margin-top: 6px;
        color: var(--g1, #2A2A2A);
        font-family: "BIZ UDPGothic";
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: 1px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        min-height: 44px;
    }

    .red-section .inner {
        width: 100%;
        min-width: 100%;
        padding-left: 150px;
    }

    .red-section_content {
        padding-left: 30px;
        margin-top: 24px;
    }

    #recent_editions ul {
        margin-top: 14px;
        display: flex ;
        gap: 24px;
        justify-content: flex-start;
        flex-wrap: wrap;
        width: 92%;
        padding-left: 4%;
    }

    .latest_article_cont_bt {
        display: flex ;
        align-items: flex-end;
        gap: 0px;
        padding-left: 0;
        flex-direction: column;
        padding-right: 4%;
    }

    #recent_editions ul li {
        width: 150px;
        min-width: 150px;
        max-width: 150px;
    }

    .red-section .inner .title h2 {
        display: flex;
        color: var(--white, #FFF);
        text-align: center;
        /* ZEN丸ゴシック/タイトルB 20 */
        font-family: "Zen Maru Gothic";
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        /* 30px */
        margin-right: 16px;
    }

    .red-section .inner .title .eng {
        color: var(--white, #FFF);
        text-align: center;
        /* ZEN丸ゴシック/10M */
        font-family: "Zen Maru Gothic";
        font-size: 10px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        /* 15px */
        letter-spacing: 1px;
    }

    .red-section .inner .title h2 img {
        margin-right: 8px;
        width: 18px;
    }

    .red-fraction {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 10px;
        color: #fff;
        font-family: "BIZ UDPGothic";
    }

    .swiper-pagination-current, .swiper-pagination-total {
        min-width: 13px;
        display: block;
        text-align: center;
    }

    .gold-section .inner .title h2 img {
        margin-right: 8px;
        width: 18px;
    }

    #recent_editions ul li .img-shadow {
        position: relative;
        width: 150px;
        display: inline-block;
    }

    #recent_editions ul li img {
        width: 150px;
    }

    .gold-section .inner .title {
        display: flex;
        align-items: center;
        padding-top: 36px;
        justify-content: flex-start;
        /* width: 1440px; */
        padding-left: 4%;
        /* min-width: 1440px; */
    }

    .gold-section .inner .title h2 {
        color: var(--g1, #2A2A2A);
        text-align: center;
        /* ZEN丸ゴシック/タイトルB 20 */
        font-family: "Zen Maru Gothic";
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        /* 30px */
        margin-right: 16px;
    }

    .gold-section .inner .title .eng {
        color: var(--g1, #2A2A2A);
        text-align: center;
        /* ZEN丸ゴシック/10M */
        font-family: "Zen Maru Gothic";
        font-size: 10px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        /* 15px */
        letter-spacing: 1px;
    }

    .gold-section {
        height: 522px;
        background-color: var(--a, #F4DEB4);
        border-top-right-radius: 262px;
        border-bottom-right-radius: 262px;
        margin-right: max(calc(50% - 720px), 0px);
        width: 100%;
        background-image: url(https://shinseikyo.com/wp-content/themes/shinseikyo/images/recent_editions_back_sp.svg);
        background-repeat: no-repeat;
        background-position: 0px 300px;
    }

    #recent_editions ul li h3 {
        padding-top: 6px;
        color: var(--g1, #2A2A2A);
        font-family: "BIZ UDPGothic";
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: 1px;
        text-align: left;
    }

    #recent_editions ul li .date1 {
        margin-top: 4px;
        color: var(--g1, #2A2A2A);
        font-family: "BIZ UDPGothic";
        font-size: 10px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%;
        letter-spacing: 1px;
        text-align: left;
    }

    #top_news .inner {
        width: 100%;
        margin: 0 auto;
        padding-left: 4%;
        padding-right: 4%;
    }

    #top_news .inner .top_news_content {
        width: 100%;
        margin: 0 auto;
    }

    #top_news .inner .top_news_content ul li a .date_cat .date {
        color: var(--g1, #2A2A2A);
        font-family: "BIZ UDPGothic";
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        letter-spacing: 1px;
        margin-right: 12px;
    }

    #top_news .inner .top_news_content ul li a .date_cat .cat {
        display: flex;
        min-width: 106px;
        height: 22px;
        padding: 2px 16px;
        justify-content: center;
        align-items: center;
        border-radius: 6px;
        border: 1px solid var(--a, #F4DEB4);
        background: var(--b, #FEF0D6);
        color: var(--g1, #2A2A2A);
        font-family: "BIZ UDPGothic";
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: 1px;
        margin-right: 0;
    }

    #top_news .inner .top_news_content ul li a .title p {
        color: var(--g1, #2A2A2A);
        /* BIZゴシック/タイトル Bold */
        font-family: "BIZ UDPGothic";
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        /* 21px */
        letter-spacing: 1px;
        transition: color 0.3s ease;
    }

    #top_news .inner .top_news_content ul li a .title {
        align-items: flex-start;
        margin-top: 8px;
    }

    #top_news .bt {
        margin: auto;
        display: flex;
        justify-content: center;
        width: 90%;
        padding-left: 4%;
        padding-right: 4%;
    }

    #top_news .bt a {
        margin-top: 24px;
    }

    #about {
        background-image: none;
        background-size: 1573px auto;
        background-repeat: no-repeat;
        background-position: calc(50% + 53.5px) top;
        background-attachment: scroll;
        margin-top: 80px;
        min-width: 100%;
    }

    #about .inner {
        width: 100%;
        margin: 0 auto;
    }

    #about .about_content .row > .img img {
        width: 100%;
    }

    #about .title h2 {
        color: var(--g1, #2A2A2A);
        text-align: center;
        /* ZEN丸ゴシック/SP見出し Bold24 */
        font-family: "Zen Maru Gothic";
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%;
        /* 28.8px */
        letter-spacing: 1px;
        display: flex;
    }

    #about .title h2 img {
        margin-right: 12px;
        width: 24px;
    }

    #about .title .eng {
        margin-top: 2px;
        color: var(--g1, #2A2A2A);
        text-align: center;
        /* ZEN丸ゴシック/10M */
        font-family: "Zen Maru Gothic";
        font-size: 10px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        /* 15px */
        letter-spacing: 1px;
    }

    #about .about_content {
        width: 100%;
        margin: 0 auto;
    }

    #about .about_content .row {
        display: flex ;
        gap: 32px;
        margin-top: 24px;
        flex-direction: column;
    }

    #about .about_content .row > .img {
        width: 100%;
        flex-shrink: 0;
    }

    #about .about_content .row > .text > .img > img {
        width: 80px;
    }

    #about .about_content .row > .text > .img {
        margin-top: 0;
        display: flex;
        justify-content: center;
    }

    #about .about_content .row .text {
        padding-left: 4%;
        padding-right: 4%;
        background-image: url(https://shinseikyo.com/wp-content/themes/shinseikyo/images/about_back_sp1.svg);
        background-size: auto;
        background-repeat: no-repeat;
        background-position: right 15px;
    }

    #about .about_content .row2 {
        padding-top: 40px;
        display: flex;
        gap: 40px;
        position: relative;
        padding-bottom: 100px;
        flex-direction: column;
        background-image: url(https://shinseikyo.com/wp-content/themes/shinseikyo/images/about_back_sp2.svg);
        background-size: auto;
        background-repeat: no-repeat;
        background-position: left 0px;
        margin-top: 0;
    }

    #about .about_content .row .text h3 {
        color: var(--g1, #2A2A2A);
        font-family: "Zen Maru Gothic";
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        /* 30px */
    }

    #about .about_content .row .text p {
        margin-top: 24px;
        color: var(--g1, #2A2A2A);
        /* BIZゴシック/SP本文 14R */
        font-family: "BIZ UDPGothic";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 200%;
        /* 28px */
        letter-spacing: 1px;
    }

    #about .about_content .row2 .text h3 {
        color: var(--g1, #2A2A2A);
        /* ZEN丸ゴシック/タイトルBold */
        font-family: "Zen Maru Gothic";
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        /* 30px */
    }

#about .about_content .row2 .img {
    border-radius: 123px 0 0 123px;
    background: var(--b, #FEF0D6);
    height: auto;
    min-width: 100%;
    width: 100%;
    margin-right: 0;
    flex-shrink: 0;
    margin-left: 20px;
    padding-left: 7px;
    padding-right: 40px;
    padding-bottom: 5px;
}


    #about .about_content .row2 .text {
        min-width: 100%;
        padding-left: 4%;
        padding-right: 4%;
    }

    #about .about_content .row2 .text p {
        margin-top: 24px;
        color: var(--g1, #2A2A2A);
        /* BIZゴシック/SP本文 14R */
        font-family: "BIZ UDPGothic";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 200%;
        /* 28px */
        letter-spacing: 1px;
    }

    #supporters .title h2 {
        color: var(--g1, #2A2A2A);
        text-align: center;
        /* ZEN丸ゴシック/SP見出し Bold24 */
        font-family: "Zen Maru Gothic";
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%;
        /* 28.8px */
        letter-spacing: 1px;
        display: flex;
        gap: 8px;
    }

    #supporters .title h2 img {
        width: 24px;
    }

    #supporters .title .eng {
        margin-top: 2px;
        color: var(--g1, #2A2A2A);
        text-align: center;
        font-family: "Zen Maru Gothic";
        font-size: 10px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        letter-spacing: 1px;
    }

    #supporters .title p {
        margin-top: 28px;
        color: var(--g1, #2A2A2A);
        text-align: center;
        /* BIZゴシック/目次 Bold */
        font-family: "BIZ UDPGothic";
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 180%;
        /* 25.2px */
        letter-spacing: 1px;
    }

    #supporters {
        width: 100%;
        background: url(https://shinseikyo.com/wp-content/themes/shinseikyo/images/supporter_back_sp.svg) center 10px / 100% auto no-repeat, linear-gradient(0deg, #FFFAEA 0%, #FFF0D4 100%) top / 100% 95px no-repeat, linear-gradient(180deg, #FFFAEA 0%, #FFEFCF 100%) bottom / 100% 197px no-repeat, #FFFAEE;
        background-attachment: scroll;
    }

    #supporters .inner {
        width: 100%;
        margin: 0 auto;
        padding-top: 73px;
        padding-bottom: 120px;
        padding-left: 4%;
        padding-right: 4%;
    }

    .supporter-grid {
        width: 100%;
        margin: 32px auto 0;
        display: grid ;
        grid-template-columns: repeat(2, 160px);
        gap: 6px 13px;
        justify-content: center;
    }

    .caption {
        margin-top: 3px;
        color: var(--g1, #2A2A2A);
        text-align: center;
        /* BIZゴシック/SP 12 R */
        font-family: "BIZ UDPGothic";
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        /* 18px */
        letter-spacing: 1px;
        transition: color 0.3s ease;
    }

    footer {
        background-color: #fff;
        width: 100%;
        min-width: 100%;
        position: relative;
    }

    footer .inner {
        width: 100%;
        margin: 0 auto;
        padding-top: 40px;
        padding-bottom: 32px;
    }

    footer .footer1 {
        display: flex ;
        flex-direction: column;
    }

    footer .footer1 .col:nth-child(1) img {
        width: 140px;
    }

    footer .footer1 .col:nth-child(1) img.sp_foot_logo {
        width: 45px;
    }

    footer .footer1 .col:nth-child(1) {
        margin-right: 0;
        display: flex;
        justify-content: center;
        gap: 24px;
    }

    footer .footer1 .col:nth-child(3) {
        display: flex;
        margin-right: 0;
        margin-top: 32px;
        justify-content: center;
    }

    footer .footer1 .col:nth-child(3) ul li a {
        color: var(--g1, #2A2A2A);
        /* BIZゴシック/SP 12 R */
        font-family: "BIZ UDPGothic";
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        /* 18px */
        letter-spacing: 1px;
        padding-bottom: 12px;
        transition: color 0.3s ease;
    }

    footer .footer1 .col:nth-child(4) {
        display: flex;
        margin-right: 0;
        margin-top: 24px;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    footer .footer2 {
        margin-top: 32px;
    }

    footer .footer2 .text1 {
        color: var(--g1, #2A2A2A);
        text-align: center;
        /* ZEN丸ゴシック/10M */
        font-family: "Zen Maru Gothic";
        font-size: 10px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        /* 15px */
        letter-spacing: 1px;
    }

    footer .footer2 .text2 {
        margin-top: 19px;
        color: var(--g1, #2A2A2A);
        text-align: center;
        font-family: "Zen Maru Gothic";
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        /* 18px */
        letter-spacing: 1px;
    }

    footer .footer2 .copy {
        margin-top: 12px;
        color: var(--g1, #2A2A2A);
        text-align: center;
        font-family: "BIZ UDPGothic";
        font-size: 10px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        /* 15px */
        letter-spacing: 1px;
    }

    .totop {
        position: absolute;
        bottom: 114px;
        right: 11px;
    }

    .image-carousel .swiper-slide {
        width: 283px !important;
        /* 固定サイズを優先 */
        height: 400px;
        flex-shrink: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .image-carousel .swiper-slide a {
        display: block;
        width: 283px;
        height: 400px;
        overflow: hidden;
        position: relative;
    }
}

@media (min-width: 1441px) {
    #about .about_content .row2 .img {
        /*width: auto;*/
    }
}


/*
news
*/
@media (min-width: 1025px) {

    #latest_article {
        position: relative;
    }

.latest_article_cont_bt {

    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}


    main.sec {
        min-width: 1440px;
    }

.single_content .main_img h2 span {
    display: flex;
    background: var(--white, #FFF);
    align-items: center;
    border-radius: 0px 28px 28px 0px;
    background: var(--white, #FFF);
    padding: 0px 32px 0px 10px;
    height: 50px;
    margin-bottom: 12px;
    color: var(--g1, #2A2A2A);
    font-family: "Zen Maru Gothic";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 1px;
}

}
.sec_head {
    width: 100%;
    background: var(--c, #FFFAEA);
    height: 240px;
}

.sec_head .inner {
    height: 240px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1440px;
    background-image: url("https://shinseikyo.com/wp-content/themes/shinseikyo/images/sec_head_back.svg");
    background-repeat: no-repeat;
    background-position: center;
}

.sec_head .inner .title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sec_head .inner .title h2 {
    color: var(--g1, #2A2A2A);
    text-align: center;
    font-family: "Zen Maru Gothic";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 1px;
    display: flex;
    margin-top: 10px;
}

.sec_head .inner .title h2 img {
    margin-right: 16px;
    width: 40px;
}

.sec_head .inner .title .eng {
    margin-top: 8px;
    color: var(--g1, #2A2A2A);
    text-align: center;
    font-family: "Zen Maru Gothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 1px;
}

.sec_main_content {
    position: relative;
    /* 背景画像の絶対配置の基準に */
    overflow: hidden;
    /* 見切れる画像のオーバー表示を防ぐ */
}

.sec_main_content::before {
    content: "";
    position: fixed;
    top: 413px;
    left: 50%;
    transform: translateX(-50%) translateX(-25px);
    /* 中央からさらに左へ補正 */
    width: 1650px;
    height: 649px;
    background-image: url(https://shinseikyo.com/wp-content/themes/shinseikyo/images/sec_back_fix.svg);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
    pointer-events: none;
}

.sec_main_content .inner {
    position: relative;
    /* 背景より前に出す */
    width: 1216px;
    margin: 0 auto;
    z-index: 1;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    font-family: "BIZ UDPGothic";
    font-size: 1.2rem;
    /* 12px */
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
    /* 18px */
    letter-spacing: 1px;
    margin-top: 16px;
}

.breadcrumbs a.home {
    color: var(--g1, #2A2A2A);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.breadcrumbs a.home:hover {
    color: var(--ah, #896C1B);
}

.breadcrumbs .divider {
    margin: 0 8px;
    color: var(--g2, #A0A7AB);
}

.breadcrumbs .current {
    color: var(--g2, #A0A7AB);
}

.sec_main_content .col {
    margin-top: 80px;
    display: flex;
    gap: 32px;
}

.sec_main_content .col .main {
    width: 1008px;
}

.sec_main_content .col .main ul {
}

.sec_main_content.news_list .col .main ul li {
    border-bottom: dashed 1px #A0A7AB;
}

.sec_main_content.news_list .col .main ul li a {
    display: flex;
    padding: 24px 0px;
}

.sec_main_content.news_list .col .main ul li a .date_cat {
    display: flex;
}

.sec_main_content.news_list .col .main ul li a .date_cat .date {
    color: var(--g1, #2A2A2A);
    font-family: "BIZ UDPGothic";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 1px;
    margin-right: 16px;
white-space: nowrap;
width: 10.5em;
}

.sec_main_content.news_list .col .main ul li a .date_cat .cat {
    display: flex;
    min-width: 106px;
    height: 22px;
    padding: 2px 16px;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    border: 1px solid var(--a, #F4DEB4);
    background: var(--b, #FEF0D6);
    color: var(--g1, #2A2A2A);
    font-family: "BIZ UDPGothic";
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 1px;
    margin-right: 16px;
}

.sec_main_content.news_list .col .main ul li a .title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sec_main_content.news_list .col .main ul li a .title p {
    color: var(--g1, #2A2A2A);
    font-family: "BIZ UDPGothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.sec_main_content.news_list .col .main ul li a:hover .title p {
    color: #896C1B;
}

.sec_main_content .col .side {
    width: 176px;
}

.sec_main_content .col .side .cat_list {
}

.sec_main_content .col .side .cat_list ul {
}

.sec_main_content .col .side .cat_list ul li {
    margin-bottom: 12px;
    width: 176px;
}

.sec_main_content .col .side .cat_list ul li a {
    display: flex;
    height: 48px;
    padding: 3px 54px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 8px;
    background: var(--g5, #F6F6F6);
    transition: all 0.3s ease;
}

.sec_main_content .col .side .cat_list ul li a.active {
    background: var(--a, #F4DEB4);
}

.sec_main_content .col .side .cat_list ul li a:hover {
    background: #E0E0E0;
}

.sec_main_content .col .side .archive_list {
    margin-top: 60px;
}

.sec_main_content .col .side .archive_list ul {
    border-radius: 8px;
    border: 1px solid var(--g1, #2A2A2A);
    background: var(--white, #FFF);
    padding: 0px 12px 6px;
}

.sec_main_content .col .side .archive_list ul li.ac {
    color: var(--g1, #2A2A2A);
    text-align: center;
    font-family: "BIZ UDPGothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 24px */
    letter-spacing: 1px;
    position: relative;
    border-bottom: 1px solid #2A2A2A;
    padding-top: 14px;
    padding-bottom: 10px;
}

.sec_main_content .col .side .archive_list ul li.ac::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translateY(-50%);
    width: 12px;
    /* ← 矢印画像の横幅に合わせて調整 */
    height: 6px;
    /* ← 矢印画像の縦幅に合わせて調整 */
    background-image: url(https://shinseikyo.com/wp-content/themes/shinseikyo/images/side_archive_arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

.sec_main_content .col .side .archive_list ul li.ac .eng {
    color: var(--g1, #2A2A2A);
    text-align: center;
    /* ZEN丸ゴシック/10M */
    font-family: "Zen Maru Gothic";
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 15px */
    letter-spacing: 1px;
}

.sec_main_content .col .side .archive_list ul li {
    color: var(--g1, #2A2A2A);
    text-align: center;
    /* BIZゴシック/タイトル Bold */
    font-family: "BIZ UDPGothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 24px */
    letter-spacing: 1px;
    border-bottom: 1px dashed #2A2A2A;
}

.sec_main_content .col .side .archive_list ul li:last-child {
    border-bottom: none;
}

.sec_main_content .col .side .archive_list ul li a {
    color: var(--g1, #2A2A2A);
    text-align: center;
    padding-top: 16px;
    padding-bottom: 16px;
    display: block;
    transition: color 0.3s ease;
    /* BIZゴシック/タイトル Bold */
    font-family: "BIZ UDPGothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 24px */
    letter-spacing: 1px;
}

.sec_main_content .col .side .archive_list ul li a:hover {
    color: #896C1B;
}

.sec_main_content .pager {
    margin-top: 80px;
    display: flex;
    gap: 56px;
    justify-content: center;
    margin-bottom: 160px;
}

.sec_main_content .pager a {
    display: flex;
    transition: color 0.3s ease;
    color: var(--g1, #2A2A2A);
    text-align: center;
    font-family: "BIZ UDPGothic";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 1px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 7px;
}

.sec_main_content .pager a:hover {
    color: #896C1B;
}

.sec_main_content.tsushin_list .col {
}

.sec_main_content.tsushin_list .col .main {
}

.sec_main_content.tsushin_list .col .main ul {
    margin-top: 28px;
    display: flex;
    gap: 58px;
    flex-wrap: wrap;
}

.sec_main_content.tsushin_list .col .main ul li {
    width: 47.1%;
    margin-bottom: 80px;
}

.sec_main_content.tsushin_list .col .main ul li a {
}

.sec_main_content.tsushin_list .col .main ul li a:hover .bt .bt_in {
    background: #896C1B;
}

.sec_main_content.tsushin_list .col .main ul li a .content_col {
    display: flex;
    gap: 19px;
}

.sec_main_content.tsushin_list .col .main ul li a .content_col .img {
    padding-left: 15px;
}

.sec_main_content.tsushin_list .col .main ul li a .content_col .img .img-shadow {
    width: 190px;
}

.sec_main_content.tsushin_list .col .main ul li a .content_col .img .img-shadow::before {
    content: '';
    position: absolute;
    top: 7px;
    left: 7px;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 0;
}

.sec_main_content.tsushin_list .col .main ul li a:hover .content_col .img .img-shadow img {
    opacity: 0.7;
}

.sec_main_content.tsushin_list .col .main ul li a .content_col .img .date {
    color: var(--g1, #2A2A2A);
    margin-top: 12px;
    /* BIZゴシック/カテゴリ12 Bold */
    font-family: "BIZ UDPGothic";
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 18px */
    letter-spacing: 1px;
}

.sec_main_content.tsushin_list .col .main ul li a .content_col .list_toc {
}

.sec_main_content.tsushin_list .col .main ul li a .content_col .list_toc p {
    color: var(--g1, #2A2A2A);
    /* BIZゴシック/目次 Bold */
    font-family: "BIZ UDPGothic";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 180%;
    /* 25.2px */
    letter-spacing: 1px;
}

.sec_main_content.tsushin_list .col .main ul li a .bt {
    margin-top: 12px;
}

.sec_main_content.tsushin_list .col .main ul li a .bt .bt_in {
    display: flex;
    width: 100%;
    padding: 10px 0px 10px 0px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 28px;
    background: var(--g1, #2A2A2A);
    color: var(--white, #FFF);
    text-align: center;
    font-family: "BIZ UDPGothic";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.sec_main_content.tsushin_list .col .main ul li a .bt .bt_in .bt_eng {
    display: flex;
    align-items: center;
}

.sec_main_content.tsushin_list .col .main ul li a .bt .bt_in .eng {
    color: var(--white, #FFF);
    padding-left: 32px;
    padding-right: 8px;
    /* BIZゴシック/SP 14 R */
    font-family: "BIZ UDPGothic";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 21px */
    letter-spacing: 1px;
}

.sec_main_content.tsushin_list .col .main ul li a .bt .bt_in svg {
}

.sec_main_content.tsushin_list .col .main ul li a .bt .bt_in svg path {
}

.sec_main_content.tsushin_list .col .main ul li .pdf {
    margin-top: 12px;
    display: flex;
    justify-content: center;
}

.sec_main_content.tsushin_list .col .main ul li .pdf a {
    color: var(--g1, #2A2A2A);
    text-align: center;
    transition: all 0.3s ease;
    /* BIZゴシック/タイトル Bold */
    font-family: "BIZ UDPGothic";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 21px */
    letter-spacing: 1px;
    text-decoration: underline;
}

.sec_main_content.tsushin_list .col .main ul li .pdf a:hover {
    color: #896C1B;
}

.sec_main_content.tsushin_list .col .side .archive_list {
    margin-top: 0;
}

.backnumber {
}

.backnumber .inner {
    position: relative;
    width: 1216px;
    margin: 40px auto 160px;
    z-index: 1;
    border-top: 2px solid #2a2a2a;
}

.backnumber .inner .title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 100px;
}

.backnumber .inner .title h2 {
    color: var(--g1, #2A2A2A);
    text-align: center;
    font-family: "Zen Maru Gothic";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 1px;
    display: flex;
    margin-top: 10px;
}

.backnumber .inner .title .eng {
    margin-top: 8px;
    color: var(--g1, #2A2A2A);
    text-align: center;
    font-family: "Zen Maru Gothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 1px;
}

.backnumber .inner .title .select {
    margin-top: 32px;
}

.backnumber .inner .title .select form {
}

.backnumber .inner .title .select form select {
    width: 386px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 8px;
    border: 1px solid var(--g1, #2A2A2A);
    background: var(--white, #FFF);
    color: var(--g1, #2A2A2A);
    text-align: center;
    /* BIZゴシック/タイトル Bold */
    font-family: "BIZ UDPGothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 24px */
    letter-spacing: 1px;
}

.backnumber .inner ul {
    margin-top: 42px;
    display: flex;
    gap: 32px 21px;
    flex-wrap: wrap;
}


.backnumber .inner ul li a {
}

.backnumber .inner ul li a img {
    width: 102px;
    transition: all 0.3s ease;
    border: 1px solid #000;
}

.backnumber .inner ul li a:hover img {
    opacity: 0.7;
}

.backnumber .inner ul li a .text {
    margin-top: 2px;
    text-align: center;
}

.backnumber .inner ul li a .text .no {
    color: var(--g1, #2A2A2A);
    font-family: "BIZ UDPGothic";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 180%;
}

.backnumber .inner ul li a .text .no span {
    color: var(--g1, #2A2A2A);
    text-align: center;
    font-family: "BIZ UDPGothic";
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 180%;
    /* 21.6px */
}

.backnumber .inner ul li a .text .date {
    color: var(--g1, #2A2A2A);
    text-align: center;
    font-family: "BIZ UDPGothic";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    /* 12px */
}

.backnumber .inner .bk1 {
    padding-bottom: 120px;
}

.backnumber .inner .bk2 {
    border-top: 2px solid #2a2a2a;
}

.tsushin_top .main_top {
    margin-top: 220px;
    margin-bottom: 180px;
    border-radius: 140px;
    background: var(--c, #FFFAEA);
    width: 100%;
    height: 280px;
    flex-shrink: 0;
    position: relative;
}

.tsushin_top .main_top .text {
    padding-top: 68px;
    padding-left: 140px;
}

.tsushin_top .main_top .date1 {
    color: var(--g1, #2A2A2A);
    /* ZEN丸ゴシック/見出し2 Bold */
    font-family: "Zen Maru Gothic";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 48px */
    letter-spacing: 1px;
}

.tsushin_top .main_top h2 {
    color: var(--g1, #2A2A2A);
    margin-top: 8px;
    /* ZEN丸ゴシック/見出し1 Bold */
    font-family: "Zen Maru Gothic";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 40px */
    letter-spacing: 1px;
    position: relative;
}

.tsushin_top .main_top h2::after {
    content: "";
    display: block;
    width: 100px;
    height: 0;
    border-bottom: 2px solid var(--g1, #2A2A2A);
    margin-top: 20px;
    /* ← 線と文字の間隔。調整OK */
}

.tsushin_top .main_top .date2 {
    color: var(--g1, #2A2A2A);
    margin-top: 12px;
    /* BIZゴシック/目次 Bold */
    font-family: "BIZ UDPGothic";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 180%;
    /* 25.2px */
    letter-spacing: 1px;
}

.tsushin_top .main_top .img {
    position: absolute;
    right: 180px;
    top: -145px;
}

.tsushin_top .main_top .img .img-shadow {
    width: 377px;
}

.tsushin_top .main_top .img .img-shadow::before {
    top: 7px;
    left: 7px;
}

.tsushin_top .main_top .img .img-shadow img {
}

.tsushin_top .main_top .imgbk {
    position: absolute;
    top: -59px;
    left: 22px;
}

.tsushin_top .main_top .imgbk img {
    width: 597px;
}

.tsushin_top .content_list {
    margin-bottom: 60px;
}

.tsushin_top .content_list h3 {
    color: var(--g1, #2A2A2A);
    /* ZEN丸ゴシック/タイトル Bold */
    font-family: "Zen Maru Gothic";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 36px */
    display: flex;
    gap: 12px;
    justify-content: center;
}

.tsushin_top .content_list h3 img {
}

.content_list .list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 32px;
}

.content_list .list .box {
    border-radius: 16px;
    border: 1px solid var(--g2, #A0A7AB);
    background: var(--white, #FFF);
    padding: 16px;
    width: 280px;
}

.content_list .list .box .wrap-img {
    overflow: hidden;
    border-radius: 6px;
}

.content_list .list .box .wrap-img img {
    border-radius: 6px;
    width: 252px;
    transition: transform .3s;
}

.content_list .list .box a {
}

.content_list .list .box a:hover .wrap-img img {
    transform: scale(1.08);
}

.content_list .list .box .catbox {
    margin-top: 8px;
    display: flex;
}

.content_list .list .box .catbox .cat_name {
    display: flex;
    min-width: 106px;
    height: 22px;
    padding: 2px 8px;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    border: 1px solid var(--a, #F4DEB4);
    background: var(--b, #FEF0D6);
    margin-right: 8px;
    color: var(--g1, #2A2A2A);
    /* BIZゴシック/カテゴリ12 Bold */
    font-family: "BIZ UDPGothic";
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 18px */
    letter-spacing: 1px;
}

.content_list .list .box .catbox img {
}

.content_list .list .box .areabox {
    margin-top: 4px;
    color: var(--g1, #2A2A2A);
    display: flex;
    /* BIZゴシック/日付地名 R */
    font-family: "BIZ UDPGothic";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    /* 12px */
    letter-spacing: 1px;
    align-items: center;
}

.content_list .list .box .areabox img {
    margin-right: 4px;
}

.content_list .list .box h4 {
    margin-top: 6px;
    color: var(--g1, #2A2A2A);
    /* BIZゴシック/タイトル Bold */
    font-family: "BIZ UDPGothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 24px */
    letter-spacing: 1px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 48px;
    /* 24px × 2行 */
}

.content_list .list .box .date1 {
    margin-top: 6px;
    color: var(--g1, #2A2A2A);
    /* BIZゴシック/日付地名 R */
    font-family: "BIZ UDPGothic";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    /* 12px */
    letter-spacing: 1px;
}

.content_list .list .box .date2 {
    color: var(--g2, #A0A7AB);
    margin-top: 4px;
    /* BIZゴシック/SP 10 R */
    font-family: "BIZ UDPGothic";
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 15px */
}

.editor_voice {
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}

.editor_voice .editor_voice_inner {
    width: 592px;
}

.editor_voice .editor_voice_inner h3 {
    color: var(--g1, #2A2A2A);
    font-family: "Zen Maru Gothic";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    display: flex;
    gap: 12px;
    justify-content: center;
}

.editor_voice .editor_voice_inner h3 img {
}

.editor_voice .editor_voice_inner p {
    margin-top: 12px;
    color: var(--g1, #2A2A2A);
    /* BIZゴシック/本文16 R */
    font-family: "BIZ UDPGothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%;
    /* 32px */
}

.editor_voice .editor_voice_inner .name {
    margin-top: 12px;
    color: var(--g1, #2A2A2A);
    /* BIZゴシック/本文16 R */
    font-family: "BIZ UDPGothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%;
    /* 32px */
}

.editor_voice .editor_voice_inner .sign {
    margin-top: 120px;
    color: var(--g1, #2A2A2A);
    text-align: center;
    /* BIZゴシック/タイトル Bold */
    font-family: "BIZ UDPGothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 24px */
    letter-spacing: 1px;
}

.editor_voice .bt_box {
    margin-top: 120px;
    margin-bottom: 160px;
}

.editor_voice .bt_box ul {
    display: flex;
    gap: 36px;
}

.editor_voice .bt_box ul li {
}

.editor_voice .bt_box ul li a {
    display: flex;
    width: 312px;
    height: 64px;
    padding: 10px 0px 10px 0px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 32px;
    border: 1px solid var(--g1, #2A2A2A);
    background: var(--white, #FFF);
    transition: background-color 0.3s ease;
font-family: "BIZ UDPGothic";
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 150%; /* 21px */
letter-spacing: 1px;
}

.editor_voice .bt_box ul li a:hover {
    background-color: #F6F6F6;
}

.editor_voice .bt_box ul li a svg {
}

.tsushin_top, .single_top {
    margin-top: 140px;
}

.single_top .single_inner {
    position: relative;
}

.single_top .single_inner::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 1585px;
    height: 1108px;
    background-image: url(https://shinseikyo.com/wp-content/themes/shinseikyo/images/single_back.svg);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
    pointer-events: none;
}

.single_content {
    width: 1072px;
    margin: 80px auto 0;
}

.single_content .sub_title {
    display: flex;
    gap: 15px;
    align-items: center;
}

.single_content .sub_title .cat_name {
    display: flex;
    min-width: 106px;
    height: 22px;
    padding: 2px 8px;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    border: 1px solid var(--a, #F4DEB4);
    background: var(--b, #FEF0D6);
    margin-right: 8px;
    color: var(--g1, #2A2A2A);
    font-family: "BIZ UDPGothic";
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 1px;
}

.single_content .sub_title .text {
}

.single_content .main_img {
    margin-top: 16px;
    position: relative;
}

.single_content .main_img img {
    border-radius: 24px;
}

.single_content .main_img h2 {
position: absolute;
    bottom: 20px;
    left: 0px;
    display: flex;
    align-items: flex-start;
    border-radius: 0px 28px 28px 0px;
    line-height: 1;
    flex-direction: column;
}


.single_content .date_box {
    margin-top: 22px;
    gap: 24px;
    display: flex;
    align-items: center;
}

.single_content .date_box .areabox {
    display: flex;
    align-items: center;
    color: var(--g1, #2A2A2A);
    font-family: "BIZ UDPGothic";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 1px;
}

.single_content .date_box .areabox img {
    margin-right: 4px;
}

.single_content .date_box .date_sp {
    display: flex;
    align-items: center;
    gap: 24px;
}

.single_content .date_box .date1 {
    color: var(--g1, #2A2A2A);
    /* BIZゴシック/日付地名 R */
    font-family: "BIZ UDPGothic";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    /* 12px */
    letter-spacing: 1px;
}

.single_content .date_box .date2 {
    color: var(--g2, #A0A7AB);
    /* BIZゴシック/SP 10 R */
    font-family: "BIZ UDPGothic";
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 15px */
}

.single_content .toc_box {
    margin: 40px auto;
    border-radius: 24px;
    background: var(--g5, #F6F6F6);
    display: flex;
    padding: 32px 40px 27px 40px;
    gap: 10px;
    flex-shrink: 0;
    width: 800px;
    flex-direction: column;
    align-items: center;
}

.single_content .toc_box .toc_box_inner {
}

.single_content .toc_box h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: var(--g1, #2A2A2A);
    /* ZEN丸ゴシック/見出し2 Bold */
    font-family: "Zen Maru Gothic";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 48px */
    letter-spacing: 1px;
}

.single_content .toc_box h3 img {
}

.single_content .toc_box h3 span {
    color: var(--g1, #2A2A2A);
    /* ZEN丸ゴシック/見出し_英語 M */
    font-family: "Zen Maru Gothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 24px */
    letter-spacing: 1px;
}

.single_content .toc_box ul {
    margin-top: 28px;
}

.single_content .toc_box ul li {
    margin-bottom: 24px;
    list-style-type: decimal;
    font-family: "Zen Maru Gothic";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 27px */
}

.single_content .toc_box ul li:last-child {
    margin-bottom: 13px;
}

.single_content .toc_box ul li a {
    color: var(--g1, #2A2A2A);
    /* ZEN丸ゴシック/タイトルBold */
    font-family: "Zen Maru Gothic";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 27px */
    transition: color 0.3s ease;
}

.single_content .toc_box ul li a:hover {
    color: var(--ah, #896C1B);
}

.single_content .block {
    width: 800px;
    margin: 80px auto 130px;
}

.single_content .block h2 {
    color: var(--g1, #2A2A2A);
    margin-top: 80px;
    /* ZEN丸ゴシック/見出し2 Bold */
    font-family: "Zen Maru Gothic";
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 48px */
    letter-spacing: 1px;
    padding-bottom: 8px;
    ; border-bottom: 4px solid #F4DEB4;
    margin-bottom: 24px;
}

.single_content .block .list_1 {
    margin-top: 32px;
    margin-bottom: 40px;
}

.single_content .block .list_1 p {
    color: var(--g1, #2A2A2A);
    /* BIZゴシック/本文16 R */
    font-family: "BIZ UDPGothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%;
}

.single_content .block .list_1 p span {
    color: #B39048;
}

.single_content .block .img {
    margin-bottom: 16px;
}

.single_content .block .img.col,
.wp-block-columns {
    gap: 10px;
display: flex;
    margin-top: 0;
}

.single_content .block .img img,
.is-style-rounded img {
    border-radius: 24px;
    max-width: 800px;
    width: 100%;
}

.single_content img{
    height: auto;
}

.single_content .block .img .single_caption,
.single_content .block p.has-small-font-size
 {
    color: var(--g1, #2A2A2A);
    margin-top: 24px;
    /* BIZゴシック/カテゴリ12 Bold */
    font-family: "BIZ UDPGothic";
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 18px */
    letter-spacing: 1px;
}

.single_content .block .text {
    margin-top: 40px;
}

.single_content .block .text p,
.single_content .block  p
 {
    color: #000;
    /* BIZゴシック/本文16 R */
    font-family: "BIZ UDPGothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%;
    /* 32px */
    margin-bottom: 20px;
}

.single_content .block .col_box {
    display: flex;
    gap: 32px;
}

.single_content .block .col_box .single_content_col {
    width: calc(50% - 16px);
}

.single_content .block .col_box .single_content_col .img {
    margin-bottom: 12px;
}

.single_content .block .col_box .single_content_col .img img {
    border-radius: 0;
}

.single_content .block .col_box .single_content_col .img .single_caption {
    color: var(--g1, #2A2A2A);
    margin-top: 12px;
    /* BIZゴシック/カテゴリ12 Bold */
    font-family: "BIZ UDPGothic";
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 18px */
    letter-spacing: 1px;
    text-align: left;
}

.single_content .block .col_box .single_content_col .bt {
}

.single_content .block .col_box .single_content_col .bt a {
    width: 100%;
    margin-top: 16px;
}

.single_content .qr {
    display: flex;
    justify-content: center;
    margin-top: 12px;
}

@media (max-width: 767px) {
    .single_content .qr {
        display: none;
    }
}

.single_bottom {
}

.single_bottom .tag {
    border-bottom: 1px solid #2a2a2a;
    padding-bottom: 6px;
    display: flex;
    align-items: center;
}

.single_bottom .tag .mark {
    margin-right: 32px;
}

.single_bottom .tag ul {
    display: flex;
    gap: 32px;
    padding: 10px 10px 10px 0px;
    align-items: center;
}

.single_bottom .tag ul li {
    color: var(--g1, #2A2A2A);
    /* BIZゴシック/タイトル Bold */
    font-family: "BIZ UDPGothic";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 21px */
    letter-spacing: 1px;
}

.single_bottom .tag ul li img {
}

.single_bottom .share_box {
    margin-top: 40px;
}

.single_bottom .share_box .text {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    color: #000;
    text-align: center;
    /* BIZゴシック/タイトル Bold */
    font-family: "BIZ UDPGothic";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 21px */
    letter-spacing: 1px;
}

.single_bottom .share_box .text img {
}

.single_bottom .share_box .text img:last-of-type {
    transform: scaleX(-1);
}

.single_bottom .share_box ul {
    margin-top: 12px;
    display: flex;
    gap: 8px;
    justify-content: center;
}

.single_bottom .share_box ul li {
}

.single_bottom .share_box ul li a:hover img {
    opacity: 0.7;
}

.single_bottom .share_box ul li a img {
    width: 90px;
    transition: all 0.3s ease;
}

.single_bottom .last_bt {
    margin-top: 92px;
    margin-bottom: 160px;
}

.single_bottom .last_bt ul {
    display: flex;
    justify-content: center;
    gap: 36px;
}

.single_bottom .last_bt ul li.bt {
}

.single_bottom .last_bt ul li.bt a {
    width: 312px;
}

.single_bottom .last_bt ul li.bt a svg {
}

.single_bottom .last_bt ul li.bt a svg path {
}

.image_group {
    display: grid;
    grid-template-columns: 530px 260px;
    grid-template-rows: 184px 184px;
    gap: 10px;
    width: fit-content;
}

.image_group img:nth-child(1) {
    grid-row: 1 / span 2;
    grid-column: 1;
    width: 530px;
    height: 378px;
    object-fit: cover;
    border-radius: 24px;
}

.image_group img:nth-child(2), .image_group img:nth-child(3) {
    width: 260px;
    height: 184px;
    object-fit: cover;
    border-radius: 24px;
}

.image_group img:nth-child(2) {
    grid-row: 1;
    grid-column: 2;
}

.image_group img:nth-child(3) {
    grid-row: 2;
    grid-column: 2;
}

.single_content .block h3 {
    color: var(--g1, #2A2A2A);
    /* ZEN丸ゴシック/タイトル Bold */
    font-family: "Zen Maru Gothic";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 36px */
    margin-bottom:24px;
}

.pass_area {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0px auto 180px;
    padding-top: 80px;
}

.pass_area h3 {
    color: var(--g1, #2A2A2A);
    text-align: center;
    font-family: "Zen Maru Gothic";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 36px */
}

.pass_area p {
    margin-top: 8px;
    color: var(--g1, #2A2A2A);
    text-align: center;
    font-family: "BIZ UDPGothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 24px */
    letter-spacing: 1px;
}

.pass_area input[type="password"] {
    margin-top: 16px;
    color: var(--g1, #2A2A2A);
    text-align: center;
    font-family: "BIZ UDPGothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 24px */
    letter-spacing: 1px;
    display: flex;
    width: 384px;
    height: 56px;
    padding: 12px 54px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
}

.pass_area input[type="submit"] {
    margin-top: 16px;
    border-radius: 8px;
    background: var(--accent, #EC3333);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    width: 384px;
    height: 56px;
    padding: 12px 54px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    font-family: "BIZ UDPGothic";
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.pass_area input[type="button"]:hover {
    background: #FF4747;
}

.pass_area .back {
    margin-top: 80px;
}

.pass_area .back a {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.search_result .list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 40px;
}

.search_result .list .box {
    border-radius: 16px;
    border: 1px solid var(--g2, #A0A7AB);
    background: var(--white, #FFF);
    padding: 16px;
    width: 280px;
}

.search_result .list .box .wrap-img {
    overflow: hidden;
    border-radius: 6px;
}

.search_result .list .box .wrap-img img {
    border-radius: 6px;
    width: 252px;
    transition: transform .3s;
}

.search_result .list .box a {
}

.search_result .list .box a:hover .wrap-img img {
    transform: scale(1.08);
}

.search_result .list .box .catbox {
    margin-top: 8px;
    display: flex;
}

.search_result .list .box .catbox .cat_name {
    display: flex;
    min-width: 106px;
    height: 22px;
    padding: 2px 8px;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    border: 1px solid var(--a, #F4DEB4);
    background: var(--b, #FEF0D6);
    margin-right: 8px;
    color: var(--g1, #2A2A2A);
    /* BIZゴシック/カテゴリ12 Bold */
    font-family: "BIZ UDPGothic";
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 18px */
    letter-spacing: 1px;
}

.search_result .list .box .catbox img {
}

.search_result .list .box .areabox {
    margin-top: 4px;
    color: var(--g1, #2A2A2A);
    display: flex;
    /* BIZゴシック/日付地名 R */
    font-family: "BIZ UDPGothic";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    /* 12px */
    letter-spacing: 1px;
    align-items: center;
}

.search_result .list .box .areabox img {
    margin-right: 4px;
}

.search_result .list .box h4 {
    margin-top: 6px;
    color: var(--g1, #2A2A2A);
    /* BIZゴシック/タイトル Bold */
    font-family: "BIZ UDPGothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 24px */
    letter-spacing: 1px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 48px;
    /* 24px × 2行 */
}

.search_result .list .box .date1 {
    margin-top: 6px;
    color: var(--g1, #2A2A2A);
    /* BIZゴシック/日付地名 R */
    font-family: "BIZ UDPGothic";
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    /* 12px */
    letter-spacing: 1px;
}

.search_result .list .box .date2 {
    color: var(--g2, #A0A7AB);
    margin-top: 4px;
    /* BIZゴシック/SP 10 R */
    font-family: "BIZ UDPGothic";
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 15px */
}

.search .search_box {
    width: 1008px;
    margin: auto;
}

.search .search_box h2 {
    margin: 80px;
    color: #B39048;
    text-align: center;
    /* ZEN丸ゴシック/タイトル Bold */
    font-family: "Zen Maru Gothic";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 36px */
}

.search .search_box form {
}

.search .search_box form .box {
    border-top: 1px dashed #A0A7AB;
    padding-top: 32px;
    padding-bottom: 34px;
    display: flex;
    align-items: center;
}

.search .search_box form .box .text {
    width: 233px;
    color: var(--g1, #2A2A2A);
    /* ZEN丸ゴシック/タイトル Bold */
    font-family: "Zen Maru Gothic";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 36px */
}

.search .search_box form .box .text .eng {
    color: var(--g1, #2A2A2A);
    /* ZEN丸ゴシック/見出し_英語 M */
    font-family: "Zen Maru Gothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 24px */
    letter-spacing: 1px;
}

.search .search_box form .box .input {
    width: calc(100% - 233px);
}

.search .search_box form .box .input input[type="text"] {
    border-radius: 8px;
    border: 1px solid var(--g1, #2A2A2A);
    background: var(--white, #FFF);
    display: flex;
    width: 386px;
    height: 56px;
    padding: 12px 16px;
    align-items: center;
    gap: 10px;
}

.search .search_box form .box .input select {
    border-radius: 8px;
    border: 1px solid var(--g1, #2A2A2A);
    background: var(--white, #FFF);
    width: 386px;
    height: 56px;
    flex-shrink: 0;
    text-align: center;
color: var(--g1, #2A2A2A);
}

.search .search_box form .box .input ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    gap: 18px 0px;
    margin-top: 20px;
}

.search .search_box form .box .input ul li {
    width: 25%;
}

.search .search_box form .box .input ul li label {
    color: var(--g1, #2A2A2A);
    font-family: "BIZ UDPGothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.search .search_box form .box .input ul li label input[type="checkbox"] {
}

.search .search_box form .box .text .clear {
    color: var(--g1, #2A2A2A);
    text-align: left;
    cursor: pointer;
    /* BIZゴシック/タイトル Bold */
    font-family: "BIZ UDPGothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 24px */
    letter-spacing: 1px;
    text-decoration: underline;
}

.search .search_box form .box .input button[type="submit"] {
    color: var(--white, #FFF);
    text-align: center;
    font-family: "BIZ UDPGothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 1px;
    display: flex;
    width: 560px;
    height: 64px;
    padding: 10px 42px 10px 26px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 28px;
    background: #B39048;
    border: none;
    gap: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.search .search_box form .box .input button[type="submit"]:hover {
    background: #896C1B;
}

.search_result {
    margin: 26px auto 0;
    width: 1216px;
}

.search_result .title {
    margin-top: 60px;
}

.search_result .title h2 {
    color: var(--g1, #2A2A2A);
    text-align: center;
    /* ZEN丸ゴシック/見出し1 Bold */
    font-family: "Zen Maru Gothic";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 40px */
    letter-spacing: 1px;
}

.search_result .title .count {
    margin-top: 10px;
    color: var(--g1, #2A2A2A);
    text-align: center;
    /* BIZゴシック/タイトル Bold */
    font-family: "BIZ UDPGothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 24px */
    letter-spacing: 1px;
}

.mail_box {
    max-width: 1008px;
    margin: 60px auto 0;
    width: 100%;
}

.mail_box .text1 {
    color: var(--g1, #2A2A2A);
    text-align: center;
    /* ZEN丸ゴシック/タイトル Bold */
    font-family: "Zen Maru Gothic";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 36px */
}

.mail_box h2 {
    margin-top: 60px;
    color: #B39048;
    text-align: center;
    /* ZEN丸ゴシック/見出し1 Bold */
    font-family: "Zen Maru Gothic";
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 40px */
    letter-spacing: 1px;
}

.mail_box .tab_content {
    margin-top: 60px;
    margin-bottom: 160px;
}

.mail_box .tab_content .tab {
}

.mail_box .tab_content .tab ul {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.mail_box .tab_content .tab ul li a:hover {
    background: #B39048;
    color: var(--white, #FFF);
}

.mail_box .tab_content .tab ul li a {
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 16px 16px 0px 0px;
    border: 1px solid var(--g2, #A0A7AB);
    display: flex;
    width: 400px;
    height: 56px;
    padding: 12px 54px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-align: center;
    border-bottom: 0;
    /* BIZゴシック/タイトル Bold */
    font-family: "BIZ UDPGothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 24px */
    letter-spacing: 1px;
}

.mail_box .tab_content .tab ul li.active {
    background: #B39048;
    color: var(--white, #FFF);
    border-radius: 16px 16px 0px 0px;
    border: 1px solid var(--g2, #A0A7AB);
    display: flex;
    width: 400px;
    height: 56px;
    padding: 12px 54px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-align: center;
    border-bottom: 0;
    /* BIZゴシック/タイトル Bold */
    font-family: "BIZ UDPGothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 24px */
    letter-spacing: 1px;
}

.mail_box .tab_content .form1 {
    max-width: 1008px;
    flex-shrink: 0;
    border-radius: 16px;
    border: 1px solid var(--g2, #A0A7AB);
    background: var(--white, #FFF);
    padding: 60px 104px 80px;
}

.mail_box .tab_content .form1 h3 {
    color: var(--g1, #2A2A2A);
    /* ZEN丸ゴシック/タイトル Bold */
    font-family: "Zen Maru Gothic";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    /* 36px */
}

.mail_box .tab_content .form1 ul {
    margin-top: 24px;
}

.mail_box .tab_content .form1 ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.mail_box .tab_content .form1 ul li .step {
    width: 79px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 16px;
    background: var(--g1, #2A2A2A);
    color: var(--white, #FFF);
    font-family: "Zen Maru Gothic";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mail_box .tab_content .form1 ul li .text {
    color: var(--g1, #2A2A2A);
    /* BIZゴシック/本文16 R */
    font-family: "BIZ UDPGothic";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%;
    /* 32px */
}

.mail_box .tab_content .form1 ul li .text span {
color: #EC3333;
}

.mail_box .tab_content .form1 p {
    margin-top: 12px;
    color: var(--g1, #2A2A2A);
    /* BIZゴシック/注意書き 14R */
    font-family: "BIZ UDPGothic";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%;
    /* 28px */
}

.mail_box .tab_content .form1 .mailadd {
    margin-top: 40px;
    display: flex;
    align-items: center;
}

.mail_box .tab_content .form1 .mailadd .t0 {
    align-items: center;
    margin-right: 20px;
    display: flex;
}

.mail_box .tab_content .form1 .mailadd .t0 .t1 {
    display: flex;
    width: 48px;
    padding: 1px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--white, #FFF);
    border-radius: 6px;
    background: #EC3333;
    font-family: "BIZ UDPGothic";
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 1px;
    margin-right: 12px;
}

.mail_box .tab_content .form1 .mailadd .t0 .t2 {
    color: var(--g1, #2A2A2A);
    font-family: "BIZ UDPGothic";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 180%;
    letter-spacing: 1px;
}

.mail_box .tab_content .form1 .mailadd .inputarea {
}

.mail_box .tab_content .form1 .mailadd .inputarea input {
    display: flex;
    width: 615px;
    height: 56px;
    padding: 12px 16px;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 8px;
    border: 1px solid var(--g1, #2A2A2A);
    background: var(--white, #FFF);
}

.mail_box .tab_content .form1 .bt {
    margin: 40px auto;
    display: flex;
    justify-content: center;
}

.mail_box .tab_content .form1 .bt input[type="submit"] {
    display: flex;
    width: 384px;
    height: 56px;
    padding: 12px 54px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    color: #fff;
    border-radius: 8px;
    background: #EC3333;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 96px;
}

.mail_box .tab_content .form1 .bt input[type="submit"]:hover {
    background: #FF4747;
}

.mailoff{
    background: #F6F6F6;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.mailoff .inner{
    width: 1008px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 80px auto;
}
.mailoff .inner h2{
    font-family: Zen Maru Gothic;
    font-weight: 700;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 1px;
    text-align: center;
}
.mailoff .inner a{
    display: flex;
    width: 400px;
    height: 64px;
    padding: 10px 0px 10px 0px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 32px;
    border: 1px solid var(--g1, #2A2A2A);
    background: var(--white, #FFF);
    transition: background-color 0.3s ease;
    margin-top: 56px;
}
.mailoff .inner a:hover{
    background-color: #F6F6F6;
}

.mail_box .tab_content.unsub .form1{
    width: 1008px;
    flex-shrink: 0;
    border-radius: 16px;
    border: none;
    background: var(--white, #FFF);
    padding: 0px 104px 0px;
}
.mail_box .tab_content.unsub .form1 .bt input[type="submit"] {
    display: flex;
    width: 384px;
    height: 56px;
    padding: 12px 54px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    color: #fff;
    border-radius: 8px;
    background: #2a2a2a;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mail_box .tab_content.unsub .form1 .bt input[type="submit"]:hover {
    background: #896C1B;
}

@media (max-width: 1420px) {
.tsushin_top .main_top .text {
    padding-top: 68px;
    padding-left: 97px;
}
.tsushin_top .main_top .img .img-shadow {
    width: 330px;
}


header {
    min-width: 100%;
}

header .inner {
    width: 100%;
}


    .sticky-header .hmbt {
        display: block !important;
    }
#latest {
    min-width: 100%;
}
#latest .inner {
    width: 100%;
}
#recent_editions {
    min-width: 100%;
}
#top_news {
    min-width: 100%;
}
#top_news .inner {
    width: 100%;
}
#about .about_content .row {
    padding: 0 2%;
}
#about .about_content .row2 {
    padding-left: 2%;
}
#about .about_content .row2 .text {
    min-width: 37%;
}
#supporters .inner {
    width: 100%;
}
.supporter-grid {
    width: 100%;
    margin: 32px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 22.5%);
    gap: 6px 32px;
    justify-content: center;
}

footer {
    width: 100%;
        min-width: 100%;
}


    main.sec {
        min-width: 100%;
    }

.sec_main_content .inner {
    position: relative;
    margin: 0 auto;
    z-index: 1;
    max-width: 1216px;
    width: 100%;
    padding: 0% 20px;
}
.sec_main_content.tsushin_list .col .main ul li {
    width: 46.1%;
    margin-bottom: 80px;
}
.sec_main_content .col {
    gap: 10px;
}
.sec_main_content.tsushin_list .col .main ul {
    gap: 40px;
}
.sec_main_content.tsushin_list .col .main ul li a .bt .bt_in {
    font-size: 17px;
}
.sec_main_content.tsushin_list .col .main ul li a .content_col .img .img-shadow {
    width: 150px;
}
.sec_main_content.tsushin_list .col .main ul li a .content_col .list_toc p {
    font-size: 13px;
}
.backnumber {
    padding: 0 20px;
}
.backnumber .inner {
    max-width: 1216px;
    width: 100%;
}


.content_list .list .box {
    border-radius: 16px;
    border: 1px solid var(--g2, #A0A7AB);
    background: var(--white, #FFF);
    padding: 16px;
    width: calc((100% - (32px * 3)) / 4);
}


.single_content {
    width: 100%;
    margin: 40px auto 0;
}

.single_content .block .img img, .is-style-rounded img {
    border-radius: 24px;
    max-width: 100%;
    width: 100%;
}

.search_result .list .box {
    border-radius: 16px;
    border: 1px solid var(--g2, #A0A7AB);
    background: var(--white, #FFF);
    padding: 16px;
    width: calc((100% - (32px * 3)) / 4);
}
.search_result {
    margin: 26px auto 0;
    max-width: 1216px;
        width: 100%;
}

}






@media (max-width: 1260px) {

header .inner .col .left {
    display: flex;
    width: calc(50% - 33px);
    flex-direction: column;
    align-items: flex-start;
    padding-right: 60px;
}
header .inner .col .left h2 {
    color: var(--g1, #2A2A2A);
    text-align: left;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 1px;
    padding-top: 15px;
    padding-left: 20px;
}
header.sticky-header .hmbt {
    right: 20px;
}
header .inner .col .left ul {
    display: none;
}
header .inner .col .right {
    display: none;
}
header .inner h1 {
    padding-left: 66px;
}

    main.sec {
        min-width: 100%;
    }

}



@media (max-width: 1024px) {
    .sec_head {
        width: 100%;
        background: var(--c, #FFFAEA);
        height: 120px;
    }

.single_content .block .col_box .single_content_col .bt a {
    width: 90%;
    margin-top: 16px;
    margin-left: auto;
    margin-right: auto;
}

    .sec_head .inner {
        height: 120px;
        width: 100%;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 1440px;
        background-image: url("images/sec_head_back_sp.svg");
        background-repeat: no-repeat;
        background-position: center;
    }

    .sec_head .inner .title h2 img {
        margin-right: 12px;
        width: 24px;
    }

    .sec_head .inner .title h2 {
        color: var(--g1, #2A2A2A);
        text-align: center;
        /* ZEN丸ゴシック/SP見出し Bold24 */
        font-family: "Zen Maru Gothic";
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 120%;
        /* 28.8px */
        letter-spacing: 1px;
        display: flex;
        margin-top: 22px;
    }

    .sec_head .inner .title .eng {
        margin-top: 0px;
        color: var(--g1, #2A2A2A);
        text-align: center;
        /* ZEN丸ゴシック/10M */
        font-family: "Zen Maru Gothic";
        font-size: 10px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        /* 15px */
        letter-spacing: 1px;
    }

    .sec_main_content .inner {
        position: relative;
        width: 100%;
        margin: 0 auto;
        z-index: 1;
        padding: 0px 4%;
    }

    .breadcrumbs {
        display: flex;
        align-items: center;
        color: var(--g1, #2A2A2A);
        font-family: "BIZ UDPGothic";
        font-size: 10px;
        font-style: normal;
        font-weight: 400;
        line-height: 200%;
        letter-spacing: 1px;
        margin-top: 16px;
        flex-wrap: wrap;
    }

    .divider svg {
        width: 4px;
        height: 7px;
    }

    .sec_main_content .col {
        margin-top: 30px;
        display: flex;
        gap: 0;
        flex-direction: column-reverse;
    }

    .sec_main_content .col .side .cat_list ul {
        display: flex;
        flex-wrap: wrap;
        gap: 12px 13px;
    }

    .sec_main_content .col .side {
        width: 100%;
    }

    .sec_main_content .col .side .cat_list ul li {
        margin-bottom: 0;
        width: calc( 50% - 6.5px );
    }

    .sec_main_content .col .side .cat_list ul li a {
        display: flex;
        height: 48px;
        justify-content: center;
        align-items: center;
        align-self: stretch;
        padding: 3px 54px;
        gap: 10px;
        border-radius: 8px;
        background: var(--g5, #F6F6F6);
        transition: 0.3s;
        font-family: "BIZ UDPGothic";
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        /* 21px */
        letter-spacing: 1px;
    }

    .sec_main_content .col .side .archive_list {
        margin-top: 24px;
    }

    .sec_main_content .col .side .archive_list select {
        text-align: center;
        border-radius: 8px;
        border: 1px solid var(--g1, #2A2A2A);
        background: var(--white, #FFF);
        /* display: flex; */
        width: 100%;
        height: 48px;
        color: var(--g1, #2A2A2A);
        /* text-align: center; */
        font-family: "BIZ UDPGothic";
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: 1px;
    }

    .sec_main_content .col .main {
        width: 100%;
    }

    .sec_main_content.news_list .col .main ul li a {
        display: flex;
        padding: 24px 0px;
        flex-direction: column;
    }

    .sec_main_content.news_list .col .main ul li a .date_cat {
        display: flex;
        align-items: center;
    }

    .sec_main_content.news_list .col .main ul li a .date_cat .date {
        color: var(--g1, #2A2A2A);
        /* BIZゴシック/日付地名 R */
        font-family: "BIZ UDPGothic";
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%;
        /* 12px */
        letter-spacing: 1px;
        margin-right: 16px;
    }

    .sec_main_content.news_list .col .main ul li a .date_cat .cat {
        display: flex;
        min-width: 106px;
        height: 22px;
        padding: 2px 16px;
        justify-content: center;
        align-items: center;
        border-radius: 6px;
        border: 1px solid var(--a, #F4DEB4);
        background: var(--b, #FEF0D6);
        color: var(--g1, #2A2A2A);
        font-family: "BIZ UDPGothic";
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: 1px;
        margin-right: 16px;
    }

    .sec_main_content.news_list .col .main ul li a .title {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-top: 8px;
    }

    .sec_main_content.news_list .col .main ul li a .title p {
        color: var(--g1, #2A2A2A);
        /* BIZゴシック/タイトル Bold */
        font-family: "BIZ UDPGothic";
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        /* 21px */
        letter-spacing: 1px;
        transition: color 0.3s ease;
    }

    .sec_main_content .pager a {
        display: flex;
        transition: color 0.3s ease;
        color: var(--g1, #2A2A2A);
        text-align: center;
        /* BIZゴシック/SP 10 R btn */
        font-family: "BIZ UDPGothic";
        font-size: 10px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%;
        /* 10px */
        letter-spacing: 1px;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 7px;
    }

    .sec_main_content .pager {
        margin-top: 48px;
        display: flex;
        gap: 56px;
        justify-content: center;
        margin-bottom: 118px;
    }

    .sec_main_content::before {
        content: "";
        position: fixed;
        top: 247px;
        left: 50%;
        transform: translateX(-50%);
        width: 573px;
        height: 597px;
        background-image: url(https://shinseikyo.com/wp-content/themes/shinseikyo/images/sp_sec_bg.svg);
        background-repeat: no-repeat;
        background-size: contain;
        z-index: 0;
        pointer-events: none;
    }

    .sec_main_content.tsushin_list .col .main ul {
        margin-top: 32px;
        display: flex;
        gap: 0;
        flex-wrap: nowrap;
        flex-direction: column;
    }

    .sec_main_content.tsushin_list .col .main ul li {
        width: 100%;
        margin-bottom: 40px;
    }

    .sec_main_content.tsushin_list .col .main ul li a .content_col .img {
        padding-left: 0;
    }

    .sec_main_content.tsushin_list .col .main ul li a .content_col .img .img-shadow {
        width: 150px;
    }

    .sec_main_content.tsushin_list .col .main ul li a .content_col .img .date {
        margin-top: 12px;
        color: var(--g1, #2A2A2A);
        /* BIZゴシック/SP 10 R */
        font-family: "BIZ UDPGothic";
        font-size: 10px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        /* 15px */
    }

    .sec_main_content.tsushin_list .col .main ul li a .content_col .list_toc p {
        color: var(--g1, #2A2A2A);
        /* BIZゴシック/SP 12B */
        font-family: "BIZ UDPGothic";
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: 180%;
        /* 21.6px */
        letter-spacing: 1px;
    }

    .sec_main_content.tsushin_list .col .main ul li a .bt .bt_in {
        display: flex;
        width: 100%;
        padding: 9px 6px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 28px;
        color: var(--white, #FFF);
        text-align: center;
        /* BIZゴシック/カテゴリ12 Bold */
        font-family: "BIZ UDPGothic";
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        /* 18px */
        letter-spacing: 1px;
        transition: all 0.3s ease;
    }

    .sec_main_content.tsushin_list .col .main ul li a .bt .bt_in .eng {
        color: var(--white, #FFF);
        text-align: center;
        margin-top: 2px;
        /* BIZゴシック/SP 10 R btn */
        font-family: "BIZ UDPGothic";
        font-size: 10px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%;
        /* 10px */
        letter-spacing: 1px;
    }

    .sec_main_content.tsushin_list .col .main ul li a .bt .bt_in svg {
        width: 14px;
        height: 9px;
    }

    .sec_main_content.tsushin_list .col .main ul li .pdf a {
        color: var(--g1, #2A2A2A);
        text-align: center;
        transition: all 0.3s ease;
        /* BIZゴシック/日付地名 R */
        font-family: "BIZ UDPGothic";
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%;
        /* 12px */
        letter-spacing: 1px;
        text-decoration: underline;
    }

    .backnumber {
        padding: 0px 4%;
    }

    .backnumber .inner {
        position: relative;
        width: 100%;
        margin: 40px auto 100px;
        z-index: 1;
        border-top: 1px solid #2a2a2a;
    }

    .backnumber .inner .title {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 64px;
    }

    .backnumber .inner .title h2 {
        color: var(--g1, #2A2A2A);
        text-align: center;
        font-family: "Zen Maru Gothic";
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        /* 36px */
        letter-spacing: 1px;
        margin-top: 0;
    }

    .backnumber .inner .title .eng {
        margin-top: 0px;
        color: var(--g1, #2A2A2A);
        text-align: center;
        /* ZEN丸ゴシック/12M */
        font-family: "Zen Maru Gothic";
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        /* 18px */
        letter-spacing: 1px;
    }

    .backnumber .inner .title .select {
        margin-top: 32px;
        width: 100%;
    }

    .backnumber .inner .title .select form select {
        width: 100%;
        height: 48px;
        flex-shrink: 0;
        border-radius: 8px;
        border: 1px solid var(--g1, #2A2A2A);
        background: var(--white, #FFF);
        color: var(--g1, #2A2A2A);
        text-align: center;
        font-family: "BIZ UDPGothic";
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: 1px;
    }

    .backnumber .inner ul {
        margin-top: 32px;
        display: flex;
        gap: 24px 13px;
        flex-wrap: wrap;
    }


.backnumber .inner ul li {
    width: calc(25% - 10px);
}

    .backnumber .inner ul li a img {
        width: 100%;
        transition: all 0.3s ease;
    }

    .backnumber .inner ul li a .text {
        margin-top: 0px;
        text-align: center;
    }

    .backnumber .inner ul li a .text .no {
        color: var(--g1, #2A2A2A);
        font-family: "BIZ UDPGothic";
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
    }

    .backnumber .inner ul li a .text .no span {
        color: var(--g1, #2A2A2A);
        text-align: center;
        font-family: "BIZ UDPGothic";
        font-size: 10px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
    }

    .backnumber .inner ul li a .text .date {
        color: var(--g1, #2A2A2A);
        text-align: center;
        font-family: "BIZ UDPGothic";
        font-size: 10px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%;
        letter-spacing: 1px;
    }

    .backnumber .inner .bk1 {
        padding-bottom: 80px;
    }

    .tsushin_top, .single_top {
        margin-top: 92px;
    }

    .tsushin_top .main_top .img .img-shadow {
        width: 118px;
    }

    .tsushin_top .main_top {
        margin-top: 50px;
        margin-bottom: 70px;
        border-radius: 70px;
        background: var(--c, #FFFAEA);
        width: 100%;
        height: 135px;
        flex-shrink: 0;
        position: relative;
    }

    .tsushin_top .main_top .text {
        padding-top: 20px;
        padding-left: 40px;
    }

    .tsushin_top .main_top .date1 {
        color: var(--g1, #2A2A2A);
        /* ZEN丸ゴシック/new16 Bold */
        font-family: "Zen Maru Gothic";
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 100%;
        /* 16px */
        letter-spacing: 1px;
    }

    .tsushin_top .main_top h2 {
        margin-top: 4px;
        color: var(--g1, #2A2A2A);
        /* ZEN丸ゴシック/タイトルBold */
        font-family: "Zen Maru Gothic";
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        /* 27px */
    }

    .tsushin_top .main_top h2::after {
        content: "";
        display: block;
        width: 50px;
        height: 0;
        border-bottom: 1px solid var(--g1, #2A2A2A);
        margin-top: 5px;
    }

    .tsushin_top .main_top .date2 {
        margin-top: 8px;
        color: var(--g1, #2A2A2A);
        /* BIZゴシック/SP 10 R */
        font-family: "BIZ UDPGothic";
        font-size: 10px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        /* 15px */
    }

    .tsushin_top .main_top .img {
        position: absolute;
        right: 20px;
        top: -18px;
    }

    .tsushin_top .main_top .text {
        padding-top: 30px;
        padding-left: 25px;
    }

    .tsushin_top .main_top .imgbk {
        position: absolute;
        top: -19px;
        left: 8px;
    }

    .tsushin_top .main_top .imgbk img.sp_only {
        width: 186px;
    }

    .tsushin_top .content_list h3 img {
        width: 12px;
        height: 12px;
    }

    .tsushin_top .content_list h3 {
        color: var(--g1, #2A2A2A);
        text-align: center;
        /* ZEN丸ゴシック/タイトルBold */
        font-family: "Zen Maru Gothic";
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        /* 27px */
        display: flex;
        gap: 8px;
        justify-content: center;
        align-items: center;
    }

    .content_list .list {
        display: flex;
        flex-wrap: wrap;
        gap: 13px;
        margin-top: 24px;
    }

    .content_list .list .box {
        border-radius: 12px;
        border: 1px solid var(--g2, #A0A7AB);
        background: var(--white, #FFF);
        padding: 8px 8px 12px 8px;
        width: calc(50% - 7px);
    }

    .content_list .list .box .wrap-img img {
        border-radius: 6px;
        width: 100%;
        transition: transform .3s;
    }

    .content_list .list .box .catbox .cat_name {
        display: flex;
        min-width: 110px;
        height: 22px;
        padding: 0px 16px;
        justify-content: center;
        align-items: center;
        border-radius: 6px;
        border: 1px solid var(--a, #F4DEB4);
        background: var(--b, #FEF0D6);
        margin-right: 8px;
        color: var(--g1, #2A2A2A);
        font-family: "BIZ UDPGothic";
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: 1px;
    }

    .content_list .list .box h4 {
        margin-top: 6px;
        color: var(--g1, #2A2A2A);
        font-family: "BIZ UDPGothic";
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: 1px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        min-height: 42px;
    }

    .content_list .list .box .date1 {
        margin-top: 6px;
        color: var(--g1, #2A2A2A);
        font-family: "BIZ UDPGothic";
        font-size: 11px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        letter-spacing: 1px;
    }

    .tsushin_top .content_list {
        margin-bottom: 80px;
    }

    .editor_voice .bt_box ul {
        display: flex;
        gap: 24px;
        flex-direction: column;
    }

    .editor_voice .editor_voice_inner {
        width: 100%;
    }

    .editor_voice .editor_voice_inner h3 {
        color: var(--g1, #2A2A2A);
        text-align: center;
        font-family: "Zen Maru Gothic";
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        display: flex;
        gap: 8px;
        justify-content: center;
        align-items: center;
    }

    .editor_voice .editor_voice_inner h3 img {
        width: 18px;
        height: 18px;
    }

    .editor_voice .editor_voice_inner p {
        margin-top: 20px;
        color: var(--g1, #2A2A2A);
        /* BIZゴシック/SP本文 14R */
        font-family: "BIZ UDPGothic";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 200%;
        /* 28px */
        letter-spacing: 1px;
    }

    .editor_voice .editor_voice_inner .name {
        margin-top: 12px;
        color: var(--g1, #2A2A2A);
        /* BIZゴシック/SP本文 14R */
        font-family: "BIZ UDPGothic";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 200%;
        /* 28px */
        letter-spacing: 1px;
    }

    .editor_voice .editor_voice_inner .sign {
        margin-top: 32px;
        color: var(--g1, #2A2A2A);
        text-align: center;
        /* BIZゴシック/カテゴリ12 Bold */
        font-family: "BIZ UDPGothic";
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        /* 18px */
        letter-spacing: 1px;
    }

    .editor_voice .bt_box {
        margin-top: 72px;
        margin-bottom: 100px;
        width: 100%;
    }

    .editor_voice .bt_box ul {
        display: flex;
        gap: 24px;
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .editor_voice .bt_box ul li a {
        display: flex;
        width: 300px;
        height: 48px;
        padding: 17px 0px 17px 0px;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
        border-radius: 26px;
        border: 1px solid var(--g1, #2A2A2A);
        background: var(--white, #FFF);
        transition: background-color 0.3s ease;
        color: var(--g1, #2A2A2A);
        text-align: center;
        /* BIZゴシック/ページャー R */
        font-family: "BIZ UDPGothic";
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%;
        /* 12px */
        letter-spacing: 1px;
    }

    .editor_voice .bt_box ul li a svg {
        width: 20px;
        height: 14px;
    }

    .single_content {
        width: 100%;
        margin: 40px auto 0;
    }

    .single_content .sub_title {
        display: flex;
        gap: 8px;
        align-items: flex-start;
        flex-direction: column;
    }

    .single_content .sub_title .text {
        color: var(--g1, #2A2A2A);
        /* BIZゴシック/カテゴリ12 Bold */
        font-family: "BIZ UDPGothic";
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        /* 18px */
        letter-spacing: 1px;
    }

    .single_content .main_img {
        margin-top: 8px;
        position: relative;
    }

    .single_content .main_img img {
        border-radius: 16px;
    }

    .single_content .main_img h2 {
        margin-top: 20px;
        position: static;
        bottom: 50px;
        left: 0px;
        display: flex;
        height: auto;
        padding: 0;
        align-items: flex-start;
        border-radius: 0;
        line-height: 150%;
        flex-direction: column;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
    }

    .single_content .date_box {
        margin-top: 22px;
        gap: 2px;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
    }

    .single_content .date_box .date1 {
        color: var(--g1, #2A2A2A);
        font-family: "BIZ UDPGothic";
        font-size: 11px;
        font-style: normal;
        font-weight: 400;
        line-height: 100%;
        letter-spacing: 0;
    }

    .single_content .date_box .date_sp {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .single_content .toc_box {
        margin: 24px auto;
        border-radius: 24px;
        background: var(--g5, #F6F6F6);
        display: flex;
        padding: 16px 14px 20px 16px;
        gap: 0;
        flex-shrink: 0;
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .single_content .toc_box h3 img {
        width: 30px;
    }

    .single_content .toc_box h3 {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        color: var(--g1, #2A2A2A);
        font-family: "Zen Maru Gothic";
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: 0;
    }

    .single_content .toc_box h3 span {
        color: var(--g1, #2A2A2A);
        font-family: "Zen Maru Gothic";
        font-size: 10px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        letter-spacing: 1px;
    }

    .single_content .toc_box ul {
        margin-top: 12px;
        padding-left: 14px;
    }

    .single_content .toc_box ul li {
        margin-bottom: 12px;
        list-style-type: decimal;
        font-family: "Zen Maru Gothic";
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: 1px;
    }

    .single_content .toc_box ul li a {
        color: var(--g1, #2A2A2A);
        font-family: "Zen Maru Gothic";
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        transition: color 0.3s ease;
        letter-spacing: 1px;
    }

    .single_content .toc_box ul li:last-child {
        margin-bottom: 0;
    }

    .single_content .block {
        width: 100%;
        margin: 48px auto 60px;
    }

    .single_content .block h2 {
        color: var(--g1, #2A2A2A);
        margin-top: 50px;
        font-family: "Zen Maru Gothic";
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: 0;
        padding-bottom: 4px;
        border-bottom: 2px solid #F4DEB4;
        margin-bottom: 12px;
    }

    .single_content .block .list_1 {
        margin-top: 12px;
        margin-bottom: 24px;
    }

    .single_content .block .list_1 p {
        color: var(--g1, #2A2A2A);
        font-family: "BIZ UDPGothic";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 200%;
        letter-spacing: 1px;
    }

    .single_content .block .img img {
        border-radius: 12px;
        max-width: 100%;
        width: 100%;
    }

    .single_content .block .text {
        margin-top: 24px;
    }

    .single_content .block .text p {
        color: #000;
        font-family: "BIZ UDPGothic";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 200%;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }

    .single_content .block .col_box {
        display: flex;
        gap: 32px;
        flex-direction: column;
    }

    .single_content .block .col_box .single_content_col {
        width: 100%;
    }

    .single_content .block .img.col.sp2 {
        gap: 4px;
        margin-top: 0;
        display: flex;
        margin-bottom: 8px;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .single_content .block .img.col.sp2 img {
        width: calc(50% - 2px);
    }

    .single_content .block .img.col.sp3 {
        gap: 4px;
        margin-top: 0;
        display: flex;
        margin-bottom: 8px;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .single_content .block .img.col.sp3 img {
        width: calc(33% - 2px);
    }

    .single_content .block h3 {
        color: var(--g1, #2A2A2A);
        font-family: "Zen Maru Gothic";
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: 1px;
        margin-bottom: 5px;
    }

    .image_group.sp {
        display: grid;
        grid-template-columns: 220px 154px;
        grid-template-rows: 76px 76px;
        gap: 5px;
        width: fit-content;
    }

    .image_group.sp img:nth-child(1) {
        grid-row: 1 / span 2;
        grid-column: 1;
        width: 219px;
        height: 156px;
        object-fit: cover;
        border-radius: 12px;
    }

    .image_group.sp img:nth-child(2), .image_group.sp img:nth-child(3) {
        width: 110px;
        height: 76px;
        object-fit: cover;
        border-radius: 12px;
    }

    .single_bottom .last_bt ul {
        display: flex;
        justify-content: center;
        gap: 24px;
        flex-direction: column;
    }

    .single_bottom .last_bt ul li.bt a {
        width: 90%;
        margin-top: 0;
        margin: 0 auto 0;
    }

    .single_bottom .last_bt {
        margin-top: 80px;
        margin-bottom: 100px;
    }

    .single_bottom .tag ul {
        display: flex;
        gap: 1px 16px;
        padding: 0px 0px 0px 0px;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .single_bottom .tag .mark {
        margin-right: 12px;
    }

    .single_bottom .tag .mark img {
        width: 20px;
    }

    .single_bottom .tag ul li {
        color: var(--g1, #2A2A2A);
        /* BIZゴシック/SP 10 B */
        font-family: "BIZ UDPGothic";
        font-size: 10px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        /* 15px */
        letter-spacing: 1px;
    }

    .single_top .single_inner::before {
        content: "";
        position: absolute;
        top: 40px;
        left: 50%;
        transform: translateX(-50%);
        width: 435px;
        height: 449px;
        background-image: url(https://shinseikyo.com/wp-content/themes/shinseikyo/images/single_back_sp.svg);
        background-repeat: no-repeat;
        background-size: contain;
        z-index: 0;
        pointer-events: none;
    }

    .pass_area {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0px auto 100px;
        padding-top: 32px;
    }

    .pass_area h3 {
        color: var(--g1, #2A2A2A);
        text-align: center;
        /* ZEN丸ゴシック/タイトルBold */
        font-family: "Zen Maru Gothic";
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        /* 27px */
    }

    .pass_area input[type="text"] {
        margin-top: 24px;
        color: var(--g1, #2A2A2A);
        text-align: center;
        font-family: "BIZ UDPGothic";
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: 1px;
        display: flex;
        width: 85%;
        height: 48px;
        padding: 12px 6px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
        border: 1px solid #ccc;
        border-radius: 8px;
        box-sizing: border-box;
    }

    .pass_area p {
        margin-top: 12px;
        color: var(--g1, #2A2A2A);
        text-align: center;
        font-family: "BIZ UDPGothic";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        letter-spacing: 1px;
    }

    .pass_area input[type="button"] {
        margin-top: 24px;
        border-radius: 8px;
        background: var(--accent, #EC3333);
        color: white;
        border: none;
        cursor: pointer;
        display: flex;
        width: 85%;
        height: 48px;
        padding: 12px 12px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
        font-family: "BIZ UDPGothic";
        font-size: 16px;
        font-weight: 700;
        letter-spacing: 1px;
        transition: all 0.3s ease;
    }

    .pass_area .back {
        margin-top: 40px;
    }

    .pass_area .back a {
        display: flex;
        flex-direction: column;
        gap: 3px;
        font-size: 10px;
        align-items: center;
    }

    .search .search_box {
        width: 100%;
        margin: auto;
    }

    .search .search_box h2 {
        margin: 50px auto 40px;
        color: #B39048;
        text-align: center;
        font-family: "Zen Maru Gothic";
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
    }

    .search .search_box form .box {
        border-top: 1px dashed #A0A7AB;
        padding-top: 24px;
        padding-bottom: 24px;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
    }

    .search .search_box form .box .text {
        width: 100%;
        color: var(--g1, #2A2A2A);
        font-family: "Zen Maru Gothic";
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
    }

    .search .search_box form .box .text .eng {
        color: var(--g1, #2A2A2A);
        font-family: "Zen Maru Gothic";
        font-size: 10px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        letter-spacing: 1px;
    }

    .search .search_box form .box .input {
        width: 100%;
    }

    .search .search_box form .box .input input[type="text"] {
        border-radius: 8px;
        border: 1px solid var(--g1, #2A2A2A);
        background: var(--white, #FFF);
        display: flex;
        width: 100%;
        height: 48px;
        padding: 12px 16px;
        align-items: center;
        gap: 10px;
        margin-top: 12px;
    }

    .search .search_box form .box .input select {
        border-radius: 8px;
        border: 1px solid var(--g1, #2A2A2A);
        background: var(--white, #FFF);
        width: 100%;
        height: 48px;
        margin-top: 12px;
        flex-shrink: 0;
    }

    .search .search_box form .box .input ul li {
        width: 50%;
    }

    .search .search_box form .box .input button[type="submit"] {
        color: var(--white, #FFF);
        text-align: center;
        font-family: "BIZ UDPGothic";
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: 1px;
        display: flex;
        width: 100%;
        height: 48px;
        padding: 10px 42px 10px 26px;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
        border-radius: 28px;
        background: #B39048;
        border: none;
        gap: 16px;
        transition: all 0.3s ease;
        cursor: pointer;
        margin-top: 24px;
    }

    .search .search_box form .box .input button[type="submit"] img {
        width: 16px;
    }

    .search .search_box form .box .text .clear {
        color: var(--g1, #2A2A2A);
        text-align: left;
        cursor: pointer;
        font-family: "BIZ UDPGothic";
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: 0;
        text-decoration: underline;
    }

    .search_result {
        margin: 26px auto 0;
        width: 100%;
        border-top: 1px solid #E0E0E0;
    }

    .search_result .title {
        margin-top: 32px;
    }

    .search_result .title h2 {
        color: var(--g1, #2A2A2A);
        text-align: center;
        /* ZEN丸ゴシック/タイトル Bold */
        font-family: "Zen Maru Gothic";
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        /* 36px */
        letter-spacing: 0;
    }

    .search_result .title .count {
        margin-top: 4px;
        color: var(--g1, #2A2A2A);
        text-align: center;
        /* BIZゴシック/カテゴリ12 Bold */
        font-family: "BIZ UDPGothic";
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        /* 18px */
        letter-spacing: 1px;
    }

    .search_result .list {
        display: flex;
        flex-wrap: wrap;
        gap: 13px;
        margin-top: 24px;
    }

    .search_result .list .box {
        border-radius: 12px;
        border: 1px solid var(--g2, #A0A7AB);
        background: var(--white, #FFF);
        padding: 8px 8px 12px 8px;
        width: calc(50% - 7px);
    }

    .search_result .list .box .wrap-img img {
        border-radius: 6px;
        width: 100%;
        transition: transform .3s;
    }

    .search_result .list .box .catbox .cat_name {
        display: flex;
        min-width: 110px;
        height: 22px;
        padding: 0px 16px;
        justify-content: center;
        align-items: center;
        border-radius: 6px;
        border: 1px solid var(--a, #F4DEB4);
        background: var(--b, #FEF0D6);
        margin-right: 8px;
        color: var(--g1, #2A2A2A);
        font-family: "BIZ UDPGothic";
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: 1px;
    }

    .search_result .list .box h4 {
        margin-top: 6px;
        color: var(--g1, #2A2A2A);
        font-family: "BIZ UDPGothic";
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: 1px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        min-height: 42px;
    }

    .search_result .list .box .date1 {
        margin-top: 6px;
        color: var(--g1, #2A2A2A);
        font-family: "BIZ UDPGothic";
        font-size: 11px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        letter-spacing: 1px;
    }

    .mail_box {
        width: 100%;
        margin: 40px auto 0;
    }

    .mail_box .text1 {
        color: var(--g1, #2A2A2A);
        text-align: center;
        /* ZEN丸ゴシック/14 Bold */
        font-family: "Zen Maru Gothic";
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        /* 21px */
        letter-spacing: 1px;
    }

    .mail_box h2 {
        margin-top: 24px;
        color: #B39048;
        text-align: center;
        font-family: "Zen Maru Gothic";
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: 0;
    }

    .mail_box .tab_content {
        margin-top: 32px;
        margin-bottom: 60px;
    }

    .mail_box .tab_content .tab ul li.active {
        background: #B39048;
        color: var(--white, #FFF);
        border-radius: 16px 16px 0px 0px;
        border: 1px solid var(--g2, #A0A7AB);
        display: flex;
        width: 142px;
        height: 48px;
        padding: 12px 4px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
        text-align: center;
        border-bottom: 0;
        font-family: "BIZ UDPGothic";
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: 1px;
    }

    .mail_box .tab_content .tab ul li a {
        transition: all 0.3s ease;
        cursor: pointer;
        border-radius: 16px 16px 0px 0px;
        border: 1px solid var(--g2, #A0A7AB);
        display: flex;
        width: 142px;
        height: 48px;
        padding: 12px 4px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
        text-align: center;
        border-bottom: 0;
        font-family: "BIZ UDPGothic";
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: 1px;
    }

    .mail_box .tab_content .form1 {
        width: 100%;
        flex-shrink: 0;
        border-radius: 16px;
        border: 1px solid var(--g2, #A0A7AB);
        background: var(--white, #FFF);
        padding: 32px 20px 32px;
    }

    .mail_box .tab_content .form1 h3 {
        color: var(--g1, #2A2A2A);
        font-family: "Zen Maru Gothic";
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
    }

    .mail_box .tab_content .form1 ul {
        margin-top: 12px;
    }

    .mail_box .tab_content .form1 ul li {
        display: flex;
        align-items: center;
        gap: 4px;
        margin-bottom: 13px;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .mail_box .tab_content .form1 ul li .step {
        letter-spacing: 1px;
        width: 60px;
        height: 20px;
        flex-shrink: 0;
        border-radius: 16px;
        background: var(--g1, #2A2A2A);
        color: var(--white, #FFF);
        font-family: "Zen Maru Gothic";
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mail_box .tab_content .form1 ul li .text {
        color: var(--g1, #2A2A2A);
        font-family: "BIZ UDPGothic";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        letter-spacing: 1px;
    }

    .mail_box .tab_content .form1 p {
        margin-top: 12px;
        color: var(--g1, #2A2A2A);
        font-family: "BIZ UDPGothic";
        font-size: 10px;
        font-style: normal;
        font-weight: 400;
        line-height: 200%;
    }

    .mail_box .tab_content .form1 .mailadd {
        margin-top: 32px;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
    }

    .mail_box .tab_content .form1 .mailadd .t0 {
        align-items: center;
        margin-right: 0;
        display: flex;
        flex-direction: row;
    }

    .mail_box .tab_content .form1 .mailadd .t0 .t1 {
        display: flex;
        width: 48px;
        padding: 1px 10px;
        justify-content: center;
        align-items: center;
        gap: 8px;
        color: var(--white, #FFF);
        border-radius: 6px;
        background: #EC3333;
        font-family: "BIZ UDPGothic";
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: 1px;
        margin-right: 8px;
    }

    .mail_box .tab_content .form1 .mailadd .t0 .t2 {
        color: var(--g1, #2A2A2A);
        font-family: "BIZ UDPGothic";
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        letter-spacing: 1px;
        margin-top: 0;
    }

    .mail_box .tab_content .form1 .mailadd .inputarea {
        margin-top: 6px;
        width: 100%;
    }

    .mail_box .tab_content .form1 .mailadd .inputarea input {
        display: flex;
        width: 100%;
        height: 48px;
        padding: 12px 6px;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
        border-radius: 8px;
        border: 1px solid var(--g1, #2A2A2A);
        background: var(--white, #FFF);
    }

    .mail_box .tab_content .form1 .bt {
        margin: 32px auto 0;
        display: flex;
        justify-content: center;
    }

    .mail_box .tab_content .form1 .bt input[type="submit"] {
        display: flex;
        width: 240px;
        height: 48px;
        padding: 12px 4px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
        color: #fff;
        border-radius: 8px;
        background: #EC3333;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        /* 18px */
        letter-spacing: 1px;
    margin-left: 0;
    }

.wpcf7-spinner{
display:none !important;
}


.mail_box .tab_content.unsub .form1 .bt input[type="submit"] {
    display: flex;
    width: 240px;
    height: 48px;
    padding: 12px 4px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    color: #fff;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 1px;
    margin-left: 0;
}

.mailoff .inner{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 60px auto;
}
.mailoff .inner h2{
    font-family: Zen Maru Gothic;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 1px;
    text-align: center;
}
.mailoff .inner a{
    display: flex;
    width: 80%;
    height: 48px;
    padding: 10px 0px 10px 0px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 26px;
    border: 1px solid var(--g1, #2A2A2A);
    background: var(--white, #FFF);
    transition: background-color 0.3s ease;
    margin-top: 36px;
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        /* 18px */
        letter-spacing: 1px;

}


}


/* 追加 */

.image-carousel .swiper-wrapper {
  transition-timing-function: ease-in-out !important;
}

.image-carousel .swiper-slide a:hover img {
    transform: scale(1.07);
    /* ← 中で1.1倍拡大 */
}

#latest .bt a{
    margin-top: 25px;
}

footer .footer1 a img {
    transition: all 200ms ease;
}

footer .footer1 a:hover img {
    opacity: 0.7;
}

.single_top.pass .single_inner::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 1266px;
    height: 597px;
    background-image: url(https://shinseikyo.com/wp-content/themes/shinseikyo/images/pass_back.svg);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
    pointer-events: none;
}

@media (max-width: 1024px) {
.single_top.pass .single_inner::before {
        content: "";
        position: absolute;
        top: 40px;
        left: 50%;
        transform: translateX(-50%);
        width: 435px;
        height: 449px;
        background-image: url(https://shinseikyo.com/wp-content/themes/shinseikyo/images/single_back_sp.svg);
        background-repeat: no-repeat;
        background-size: contain;
        z-index: 0;
        pointer-events: none;
}
}

.mail_box .tab_content.unsub .form1 {
    width: 1008px;
    flex-shrink: 0;
    border-radius: 16px;
    border: none;
    background: none;
    padding: 0px 104px 0px;
}


.block h2 {
  position: relative;
}
.block h2::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #F4DEB4;
    border-radius: 4px;
}
.single_content .block h2{
border-bottom:none;
}

@media (max-width: 1024px) {
        #sp_menu .nav1,
        #sp_menu .nav2
 {
            padding-left: 1.2em;
    }

header .inner .col h2 {
        padding-left: 1.2em;
    }
.single_content .date_box .date_sp {
   margin-top: 8px;
}

.sec_main_content .col .side .cat_list ul li a {
    padding: 3px 3px;
    gap: 9px;
}

.sec_main_content .col .side .cat_list ul li {
        margin-bottom: 0;
        width: calc(32% - 8.5px);
    }

    .mail_box .tab_content.unsub .form1 {
        width: 100%;
    padding: 0px 20px 0px;s
    }

}


@media (max-width: 1360px) {
    .sticky-header .hmbt {
        display: none;
    }
}

@media (max-width: 500px) {

body{
overflow-x: hidden;
}
#latest .bt a{
width: 320px;
    margin-left: auto;
    margin-right: auto;
}
    .gold-section .bt a{
            width: 320px;
    }
}


.grecaptcha-badge{
z-index: 500000;
}

.grecaptcha-badge{
display:none
}

.page-id-265 .grecaptcha-badge,
.page-id-271 .grecaptcha-badge,
.page-id-276 .grecaptcha-badge
{
display:block
}

.menu-button.sp_close {
  display: none;
}
.menu-open .sp_open {
  display: none;
}
.menu-open .sp_close {
  display: inline-flex;
}



@media (min-width: 768px) and (max-width: 1024px) {
    #latest .img-shadow {
        max-width: 500px;
    }

    .supporter-grid {
        grid-template-columns: repeat(2, 280px);
    }
}

@media (min-width: 500px) and (max-width: 767px) {
    .supporter-grid {
        grid-template-columns: repeat(2, 200px);
    }
}
@media (max-width: 499px) {

.supporter-grid {
    grid-template-columns: repeat(2, 150px);
        gap: 6px 13px;
}
}


@media (max-width: 372px) {

    #recent_editions ul li {
        width: 125px;
        min-width: 125px;
        max-width: 125px;
    }
    #recent_editions ul li .img-shadow {
        position: relative;
        width: 125px;
        display: inline-block;
    }
    .img-shadow::before {
        content: '';
        position: absolute;
        top: 4px;
        left: 4px;
        width: 100%;
        height: 100%;
        background-color: black;
        z-index: 0;
    }
    #recent_editions ul li img {
        width: 125px;
    }


}


.nb_bt{
display: flex;
justify-content: center;
margin-top: 110px;
}

.nb_pager {
  display: flex;
  gap: 44px;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.nb_pager.both {justify-content: space-between;}
.nb_pager.single { justify-content: center; }

.nb_pager li a {
  display: inline-block;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: BIZ UDPGothic;
  font-weight: 700;
  font-style: Bold;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 150%;
  letter-spacing: 1px;
  text-align: center;
  border-bottom: 1px solid #000;
  padding-bottom: 15px;
  padding-left: 20px;
  padding-right: 20px;
color:#2A2A2A;
    transition: all 0.3s ease;
}

.nb_pager li a:hover {
color:#896C1B;
border-bottom: 1px solid #896C1B;
}

.nb_pager li a:hover svg path {
    stroke: #896C1B;
}



@media (max-width: 767px) {


.nb_bt{display: flex;justify-content: center;margin-top: 60px;}

.nb_pager {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.nb_pager.both {justify-content: space-between;}
.nb_pager.single { justify-content: center; }

.nb_pager li a {
  display: inline-block;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: BIZ UDPGothic;
  font-weight: 700;
  font-style: Bold;
  font-size: 13px;
  leading-trim: NONE;
  line-height: 150%;
  letter-spacing: 1px;
  text-align: center;
  border-bottom: 1px solid #000;
  padding-bottom: 15px;
  padding-left: 12px;
  padding-right: 12px;
  color:#2A2A2A;
  transition: all 0.3s ease;
}

}


.wp-block-video video{
max-width: 100%;
}