/* ================================
CSS MAP
概要：のstyle.cssではTOPページで使用している装飾の設定をまとめています

1.news一覧ページ
2.news投稿ページ
3.限定メニュー
4.サイドメニュー
5.アレルギーをお持ちの方
================================ */

/* ================================
1.news一覧ページ
================================ */
section.archive-news-main-content{
    background-image: url(../../images/common/beige-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 120px 0 180px;
    margin-top: -20px;
    position: relative;
}
.archive-news-main-content__table{
background: #fff;
    padding: 50px;
    border-radius: 10px;
}
ul.archive-news-main-content__table__list {
    
    display: flex;
    flex-direction: column;
    gap: 20px;
}

ul.archive-news-main-content__table__list li{
    width: 100%;
}

ul.archive-news-main-content__table__list li a{
    width: 100%;
    padding-bottom: 20px;
    display: block;
    border-bottom: 1px solid #DFDAD2;
    position: relative;
}

.archive-news-main-content__table__list__tag-group{
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 13px;

}
.archive-news-main-content__table__list__date{
    font-size: 18px;
    color: #8A7B65;
}
.archive-news-main-content__table__list__term {
    font-size: 13px;
    width: max-content;
    padding: 12px;
    color: #EA5317;
    display: block;
    border-radius: 10000px;
    border: 1px solid #EA5317;
    min-width: 133px;
    line-height: 10px;
    text-align: center;
}

ul.archive-news-main-content__table__list li h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;   /* ★ 最大2行で切る */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;  /* 長い単語対策 */
    font-size: 18px;
    line-height: 1.8;
    width: calc(100% - 120px);
}

.archive-news-main-content__table__list__arrow {
    position: absolute;
    right: 19px;
    top: 50%;
    display: flex;
    align-items: center;
    background: #4D4A44;
    color: #fff;
    height: 24px;
    width: 40px;
    justify-content: center;
    border-radius: 1000000px;
    transform: translateY(-50%);
    transition: .25s;
}


@media screen and (max-width:640px) {
    .archive-news-main-content__table{
    padding: 20px;
    border-radius: 10px;
    }
    ul.archive-news-main-content__table__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.archive-news-main-content__table__list__date {
    font-size: 12px;
    color: #8A7B65;
}
.archive-news-main-content__table__list__term {
    font-size: 10px;
    width: max-content;
    padding: 6px 10px;
    color: #EA5317;
    display: block;
    border-radius: 10000px;
    border: 1px solid #EA5317;
    min-width: 100px;
    line-height: 10px;
    text-align: center;
}
ul.archive-news-main-content__table__list li h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    font-size: 14px;
    line-height: 1.6;
    width: calc(100% - 58px);
}

.archive-news-main-content__table__list__arrow {
    right: 0;
    top: 50%;
    height: 24px;
    width: 40px;
    justify-content: center;
    border-radius: 1000000px;
    transform: translateY(-50%);
    transition: .25s;
}

ul.archive-news-main-content__table__list li a {
    padding-bottom: 12px;
}
ul.archive-news-main-content__table__list {
    gap: 12px;
}
.archive-news-main-content__table{
    border-radius: 10px;
}
section.archive-news-main-content {
    background-image: url(../../images/common/beige-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 52px 0 200px;
    margin-top: -20px;
}
}




ul.page-head__tabs {
    display: flex;
    color: #fff;
    margin-top: 48px;
    gap: 7px;
}

ul.page-head__tabs li a {
    border: 1px solid #fff;
    padding: 13px 30px;
    display: block;
    width: max-content;
    border-radius: 100000px;
    line-height: 10px;
}

li.page-head__tabs-item.is-current a{
    background-color: #fff;
    color: #2B2925;
}
li.page-head__tabs-item a{
     background-color: transparent;
    color: #fff; 
}

@media screen and (max-width:640px) {
 
ul.page-head__tabs {
    display: flex;
    color: #fff;
    margin-top: 60px;
    gap: 15px;
}

ul.page-head__tabs li a {
    border: 1px solid #fff;
    padding: 6px 20px;
    font-size: 13px;
    line-height: 27px;
}
.page-head__tabs__wrap{
    overflow-x: scroll;
    width: 100%;
}

ul.page-head__tabs {
    width: max-content;
}  
ul.page-head__tabs li:first-of-type{
    margin-left: 24px;
} 
ul.page-head__tabs li:last-of-type{
    margin-right: 24px;
} 
.page-under-head.ttl-horizon{
        padding-top: 150px;
        padding-bottom: 60px;
}

.page-head__tabs__wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* スマホ滑らかスクロール */
    white-space: nowrap; /* 横並び維持 */
}

/* Chrome / Safari / Edge */
.page-head__tabs__wrap::-webkit-scrollbar {
    display: none;
}

/* Firefox */
.page-head__tabs__wrap {
    scrollbar-width: none;
}

/* IE / 旧Edge */
.page-head__tabs__wrap {
    -ms-overflow-style: none;
}

}




section.single-news-content {
    padding-top: 160px;
    padding-bottom: 180px;
    background-image: url(../../images/common/beige-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}
h1.single-news-content__inner__ttl {
    margin-bottom: 32px;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.4;
}

span.single-news-content__term {
    display: block;
    width: max-content;
    line-height: 10px;
    padding: 10px 24px;
    border: 1px solid;
    border-radius: 100000000px;
    background: #fff;
    color: #EA5317;
    font-size: 14px;
}
.single-news-content__meta {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 16px;
}

.single-news-content__inner__body h2,
.single-news-content__inner__body h3,
.single-news-content__inner__body h4,
.single-news-content__inner__body p,
.single-news-content__inner__body ul,
.single-news-content__inner__body table,
.single-news-content__inner__body blockquote {
    margin-top: 32px;
}

.single-news-content__inner__body p{
    line-height: 2.2;
}

.single-news-content__inner__body h2{
    font-size: 24px;
    line-height: 1.6;
    font-weight: 700;
    color: #EA5317;
}

.single-news-content__inner__body h3{
    font-size: 20px;
    line-height: 1.6;
    font-weight: 700;
    padding-bottom: 8px;
    border-bottom: 1px solid #EA5317;
}

.single-news-content__inner__body ul {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.single-news-content__inner__body ul li {
    font-size: 16px;
    line-height: 2.2;
    font-weight: 700;
    color: #EA5317;
    padding-left: 14px;
    position: relative;
}

.single-news-content__inner__body ul li::before {
    content: "";
    background-color: #EA5317;
    width: 6px;
    height: 6px;
    display: block;
    position: absolute;
    top: 14px;
    left: 0;
    border-radius: 1000000px;
}
.single-news-content__inner__body blockquote {
    padding: 24px;
    position: relative;
}
span.single-news-content__date.eng {
    color: #8A7B65;
    font-weight: 700;
    font-size: 20px;
}
img.attachment-large.size-large.wp-post-image {
    display: block;
    width: max-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.single-news-content__inner__body blockquote::after {
    content: "";
    position: absolute;
    inset: 0;
    border: solid 3px #EA5317;
    border-radius: 10px;

    font-family: "DM Sans", sans-serif;
    /* ===== マスク処理 ===== */
    mask:
        /* 切り欠き部分（隠したい領域） */
        linear-gradient(#000 0 0) 24px -1px / 104px 5px no-repeat,
        /* 全体表示用 */
        linear-gradient(#000 0 0);
    mask-composite: exclude;

    /* Safari対応 */
    -webkit-mask:
        linear-gradient(#000 0 0) 24px -1px / 104px 5px no-repeat,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;

    pointer-events: none;
}
.single-news-content__inner__body blockquote::before {
    content: "POINT";
    color: #EA5317;
    font-size: 28px;
    font-weight: 700;
    position: absolute;
    top: -0;
    transform: translateY(-50%);
    padding-left: 8px;
    padding-right: 8px;
}
.single-news-content__inner__body blockquote p{
margin: 0;
line-height: 2.2;
font-weight: 700;
}


@media screen and (max-width:640px) {
    section.single-news-content {
    padding-top: 90px;
    padding-bottom: 200px;
}
h1.single-news-content__inner__ttl {
    margin-bottom: 24px;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.4;
}
.single-news-content__inner__body h2, .single-news-content__inner__body h3, .single-news-content__inner__body h4, .single-news-content__inner__body p, .single-news-content__inner__body ul, .single-news-content__inner__body table, .single-news-content__inner__body blockquote {
    margin-top: 24px;
}
.single-news-content__inner__body h2 {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 700;
    color: #EA5317;
}.single-news-content__inner__body p {
    line-height: 2.2;
    font-size: 14px;
}
.single-news-content__inner__body blockquote {
    padding: 24px 14px 14px;
    position: relative;
}
.single-news-content__inner__body blockquote::after {
    content: "";
    position: absolute;
    inset: 0;
    border: solid 3px #EA5317;
    border-radius: 10px;
    font-family: "DM Sans", sans-serif;
    mask: /* 切り欠き部分（隠したい領域） */
        linear-gradient(#000 0 0) 24px -1px / 90px 5px no-repeat,
        /* 全体表示用 */
        linear-gradient(#000 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#000 0 0) 14px -1px / 90px 5px no-repeat,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    pointer-events: none;
}
.single-news-content__inner__body ul li {
    font-size: 14px;
    line-height: 2.2;
    font-weight: 700;
    color: #EA5317;
    padding-left: 14px;
    position: relative;
}
.single-news-content__inner__body blockquote::before {
    font-size: 24px;
}
.single-news-content__inner__body h3 {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 700;
    padding-bottom: 8px;
    border-bottom: 1px solid #EA5317;
}
}




nav.archive-news-pagination ul.page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 32px;
    font-size: 24px;
}


nav.archive-news-pagination ul.page-numbers li > span{
    width: 40px;
    height: 40px;
    background-color: #EA5317;
    color: #fff;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav.archive-news-pagination ul.page-numbers li > a{
    width: 40px;
    height: 40px;
    color: #8A7B65;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #8A7B65;
}

nav.archive-news-pagination ul.page-numbers li .next.page-numbers,
nav.archive-news-pagination ul.page-numbers li .prev.page-numbers{
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    background-color: #B0A491;
    border-radius: 0;
    border: none;
}

nav.archive-news-pagination ul.page-numbers li .next.page-numbers span,
nav.archive-news-pagination ul.page-numbers li .prev.page-numbers span{
    display: block;
    border-radius: 0;
    border: none;
}

nav.archive-news-pagination ul.page-numbers li .next.page-numbers svg,
nav.archive-news-pagination ul.page-numbers li .prev.page-numbers svg{
display: none;
}
nav.archive-news-pagination ul.page-numbers li .next.page-numbers{
    -webkit-mask-image: url(../../images/common/next-arrow-slider.svg);
    mask-image: url(../../images/common/next-arrow-slider.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    margin-left: calc(60px - 6px);
}

nav.archive-news-pagination ul.page-numbers li .prev.page-numbers{
    -webkit-mask-image: url(../../images/common/prev-arrow-slider.svg);
    mask-image: url(../../images/common/prev-arrow-slider.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
    margin-right: calc(60px - 6px);
}


.single-news-content__inner__body p a{
    color: #EA5317;
    text-decoration: underline;
}

.single-news-content__inner__body p a:hover{
    color: #EA5317;
    text-decoration: none;
    transition: .25s;
}


@media screen and (max-width:640px) {
nav.archive-news-pagination ul.page-numbers li > a,
nav.archive-news-pagination ul.page-numbers li > span{
    width: 32px;
    height: 32px;
    font-size: 14px;
}
}




section.archive-news-main-content a.btn-style.btn-style__orange {
    margin-top: 50px;
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}