@charset "UTF-8";

html,
body {
margin: 0;
padding: 0;
background: #fff;
min-height: 100vh;
}
body {
display: flex;
flex-direction: column;
}
.all-news-wrapper {
--news-text: #2a261f;
--news-muted: #7c7467;
--news-gold: #9b8d75;
--news-gold-dark: #81725d;
--news-line: #e5dccd;
--news-bg: #fbf8f3;
--news-serif: "Cormorant Garamond", "Shippori Mincho", serif;
--news-jp-serif: "Shippori Mincho", "Noto Serif JP", serif;
--news-sans: "Noto Sans JP", sans-serif;
flex: 1;
width: 100%;
color: var(--news-text);
background:
linear-gradient(180deg, rgba(251, 248, 243, .95) 0, rgba(255, 255, 255, 1) 340px),
#fff;
font-family: var(--news-sans);
}
.all-news-section {
width: min(calc(100% - 56px), 1040px);
margin: 0 auto;
padding: clamp(118px, 12vw, 168px) 0 clamp(78px, 9vw, 124px);
}
.all-news-container {
width: 100%;
}
.all-news-kicker {
margin: 0 0 12px;
color: var(--news-gold);
font-family: "Inter", var(--news-sans);
font-size: 12px;
font-weight: 600;
letter-spacing: .16em;
text-align: center;
}
.all-news-title {
margin: 0 0 clamp(36px, 5vw, 56px);
color: var(--news-text);
font-family: var(--news-serif);
font-size: clamp(44px, 5vw, 64px);
font-weight: 500;
line-height: 1;
letter-spacing: 0;
text-align: center;
}
.all-news-title span {
display: block;
margin-top: 14px;
color: var(--news-gold);
font-family: var(--news-jp-serif);
font-size: clamp(15px, 1.4vw, 18px);
font-weight: 600;
line-height: 1.6;
letter-spacing: .08em;
}
.news-search-box {
margin: 0 auto clamp(34px, 5vw, 54px);
padding: clamp(18px, 2.4vw, 26px);
border: 1px solid var(--news-line);
border-radius: 6px;
background: rgba(255, 255, 255, .92);
box-shadow: 0 14px 36px rgba(60, 45, 24, .06);
}
.news-search-form .screen-reader-text {
position: absolute !important;
width: 1px !important;
height: 1px !important;
padding: 0 !important;
margin: -1px !important;
overflow: hidden !important;
clip: rect(0, 0, 0, 0) !important;
white-space: nowrap !important;
border: 0 !important;
}
.news-search-form {
display: grid;
grid-template-columns: minmax(220px, 1fr) minmax(220px, 280px) 168px;
gap: 14px;
align-items: stretch;
}
.news-search-input,
.news-search-select,
.news-search-btn {
box-sizing: border-box;
min-height: 56px;
border-radius: 4px;
font-family: var(--news-sans);
font-size: 15px;
}
.news-search-input,
.news-search-select {
width: 100%;
border: 1px solid #d9d2c7;
background-color: #fff;
color: var(--news-text);
}
.news-search-input {
padding: 0 18px;
}
.news-search-input::placeholder {
color: #9a9286;
}
.news-search-select {
padding: 0 42px 0 18px;
appearance: none;
background-image:
linear-gradient(45deg, transparent 50%, var(--news-gold) 50%),
linear-gradient(135deg, var(--news-gold) 50%, transparent 50%);
background-position:
calc(100% - 21px) 24px,
calc(100% - 15px) 24px;
background-size: 6px 6px, 6px 6px;
background-repeat: no-repeat;
}
.news-search-input:focus,
.news-search-select:focus {
border-color: var(--news-gold);
outline: 2px solid rgba(155, 141, 117, .18);
outline-offset: 2px;
}
.news-search-btn {
border: 1px solid var(--news-gold);
background: var(--news-gold);
color: #fff;
font-weight: 600;
letter-spacing: .06em;
cursor: pointer;
transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.news-search-btn:hover {
border-color: var(--news-gold-dark);
background: var(--news-gold-dark);
transform: translateY(-1px);
}
.all-news-list {
list-style: none;
margin: 0;
padding: 0;
border-top: 1px solid var(--news-line);
}
.all-news-list li {
border-bottom: 1px solid var(--news-line);
}
.all-news-list a {
display: grid;
grid-template-columns: 116px minmax(120px, auto) minmax(0, 1fr);
gap: 22px;
align-items: center;
padding: 24px 6px;
color: var(--news-text);
text-decoration: none;
transition: color .25s ease, background .25s ease, padding .25s ease;
}
.all-news-list a:hover {
padding-left: 16px;
color: var(--news-gold-dark);
background: rgba(251, 248, 243, .72);
}
.all-news-list .news-date,
.single-news-meta .news-date {
color: var(--news-muted);
font-family: "Inter", var(--news-sans);
font-size: 15px;
font-weight: 500;
line-height: 1;
}
.all-news-list .news-title {
min-width: 0;
font-family: var(--news-jp-serif);
font-size: clamp(16px, 1.5vw, 18px);
font-weight: 600;
line-height: 1.65;
}
.news-badges,
.single-news-badges {
display: flex;
flex-wrap: wrap;
gap: 7px;
}
.news-badge {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 48px;
min-height: 25px;
padding: 4px 10px;
border: 1px solid rgba(155, 141, 117, .32);
border-radius: 2px;
background: var(--news-gold);
color: #fff;
font-family: "Inter", var(--news-sans);
font-size: 11px;
font-weight: 600;
line-height: 1;
letter-spacing: .06em;
white-space: nowrap;
}
.news-not-found {
padding: clamp(42px, 7vw, 72px) 20px;
border-top: 1px solid var(--news-line);
border-bottom: 1px solid var(--news-line);
color: var(--news-muted);
font-size: 16px;
line-height: 1.8;
text-align: center;
}
.news-pagination {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
margin-top: clamp(36px, 5vw, 56px);
}
.news-pagination .page-numbers {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 44px;
height: 44px;
padding: 0 14px;
border: 1px solid var(--news-line);
border-radius: 3px;
background: #fff;
color: var(--news-text);
font-family: "Inter", var(--news-sans);
font-weight: 600;
text-decoration: none;
transition: background .25s ease, border-color .25s ease, color .25s ease;
}
.news-pagination .current,
.news-pagination .page-numbers:hover {
border-color: var(--news-gold);
background: var(--news-gold);
color: #fff;
}
.single-news-article {
width: min(calc(100% - 56px), 900px);
margin: 0 auto;
padding: clamp(118px, 12vw, 168px) 0 clamp(78px, 9vw, 124px);
}
.single-news-header {
margin-bottom: clamp(30px, 5vw, 48px);
padding-bottom: clamp(22px, 4vw, 34px);
border-bottom: 1px solid var(--news-line);
}
.single-news-title {
margin: 0 0 22px;
color: var(--news-text);
font-family: var(--news-jp-serif);
font-size: clamp(24px, 2.7vw, 31px);
font-weight: 600;
line-height: 1.5;
letter-spacing: .02em;
text-wrap: balance;
word-break: normal;
overflow-wrap: normal;
line-break: strict;
}
.single-news-meta {
display: flex;
flex-wrap: wrap;
gap: 14px 20px;
align-items: center;
}
.single-news-content {
color: var(--news-text);
font-family: var(--news-sans);
font-size: 16px;
line-height: 2.05;
}
.single-news-content > *:first-child {
margin-top: 0;
}
.single-news-content p {
margin: 0 0 1.7em;
}
.single-news-content a {
color: var(--news-gold-dark);
text-underline-offset: 4px;
}
.single-news-content img {
max-width: 100%;
height: auto;
margin: 30px 0;
border-radius: 6px;
}
.single-news-content h2 {
margin: 2em 0 .8em;
padding-left: 14px;
border-left: 3px solid var(--news-gold);
font-family: var(--news-sans);
font-size: 18px;
font-weight: 700;
letter-spacing: .04em;
line-height: 1.5;
color: var(--news-text);
} .news-campaign__lead {
font-size: 16.5px;
}
.news-campaign__hero {
margin: 40px 0 44px;
padding: clamp(34px, 6vw, 52px) clamp(22px, 5vw, 48px);
border-radius: 18px;
background: linear-gradient(180deg, #f9f4ea 0%, #f4ede0 100%);
text-align: center;
}
.news-campaign__badge {
display: inline-block;
margin: 0;
padding: 10px 34px;
border-radius: 999px;
background: var(--news-gold-dark);
color: #fff;
font-family: var(--news-sans);
font-size: clamp(17px, 4.4vw, 20px);
font-weight: 700;
letter-spacing: .16em;
}
.news-campaign__offer {
display: flex;
flex-direction: column;
align-items: center;
gap: 2px;
margin: 22px 0 0;
}
.news-campaign__offer-label {
font-family: var(--news-sans);
font-size: clamp(19px, 4.6vw, 26px);
font-weight: 700;
letter-spacing: .1em;
color: var(--news-text);
}
.news-campaign__offer-value {
display: block;
font-family: var(--news-sans);
font-size: clamp(62px, 17vw, 116px);
font-weight: 800;
line-height: .95;
letter-spacing: -.01em;
color: var(--news-gold-dark);
}
.news-campaign__offer-unit {
font-size: .46em;
font-weight: 700;
vertical-align: .26em;
margin: 0 .04em 0 .02em;
}
.single-news-content .news-campaign__urgent {
display: flex;
align-items: center;
justify-content: center;
gap: 11px;
margin: 30px auto 0;
padding: 0;
font-family: var(--news-sans);
font-size: clamp(16px, 4.2vw, 19px);
font-weight: 700;
line-height: 1.55;
letter-spacing: .02em;
color: #b3402f;
}
.news-campaign__urgent-text {
text-wrap: balance;
word-break: auto-phrase;
} .news-campaign__urgent-br {
display: none;
}
.news-campaign__urgent-mark {
flex: 0 0 auto;
width: 27px;
height: 27px;
border-radius: 50%;
background: #b3402f;
color: #fff;
font-size: 17px;
font-weight: 700;
line-height: 27px;
text-align: center;
}
.news-campaign__detail {
display: flex;
flex-direction: column;
align-items: center;
margin: 44px 0 0;
padding-top: 34px;
border-top: 1px solid var(--news-line);
text-align: center;
}
.news-campaign__detail-text {
width: 100%;
max-width: 680px;
margin: 0 0 24px;
font-size: 15.5px;
line-height: 1.95;
color: var(--news-muted);
text-align: center;
word-break: auto-phrase;
text-wrap: balance;
}
.news-campaign__detail-text strong {
white-space: nowrap;
}
.news-campaign__cta-wrap {
margin: 0;
text-align: center;
}
.news-campaign__cta {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
max-width: 100%;
min-height: 60px;
padding: 14px 34px;
border-radius: 999px;
background: var(--news-gold);
color: #fff !important;
font-family: var(--news-sans);
font-size: 16px;
font-weight: 600;
letter-spacing: .04em;
line-height: 1.4;
text-decoration: none !important;
transition: background .25s ease, transform .25s ease;
}
.news-campaign__cta-icon {
flex: 0 0 auto;
}
.news-campaign__cta-label {
text-align: center;
}
.news-campaign__cta:hover {
background: var(--news-gold-dark);
transform: translateY(-1px);
} @media (min-width: 769px) {
.single-news-content .news-campaign__urgent {
margin-top: 68px;
}
} @media (max-width: 600px) {
.news-campaign__hero {
margin: 32px 0 36px;
padding: 30px 18px 34px;
border-radius: 14px;
}
.news-campaign__offer {
margin-top: 18px;
}
.news-campaign__offer-value {
font-size: clamp(58px, 19vw, 84px);
}
.single-news-content .news-campaign__urgent {
align-items: flex-start;
justify-content: center;
gap: 8px;
margin-top: 44px;
font-size: 14px;
font-weight: 600;
line-height: 1.7;
color: #b3402f;
text-align: left;
}
.news-campaign__urgent-mark {
width: 20px;
height: 20px;
margin-top: 2px;
font-size: 12px;
line-height: 20px;
}
.news-campaign__urgent-text {
max-width: none;
text-align: left;
text-wrap: normal;
}
.news-campaign__urgent-br {
display: inline;
}
.news-campaign__detail-text {
font-size: 14.5px;
text-align: center;
}
.news-campaign__cta {
width: 100%;
min-height: 56px;
font-size: 15px;
}
}
.single-news-footer {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
gap: 16px;
margin-top: clamp(42px, 7vw, 70px);
text-align: center;
}
.back-to-top-btn {
border-color: var(--news-gold-dark);
background: var(--news-gold-dark);
color: #fff;
}
.back-to-top-btn::before {
display: none;
}
.back-to-top-btn:hover {
background: var(--news-text);
border-color: var(--news-text);
color: #fff;
}
@media (max-width: 600px) {
.single-news-footer {
flex-direction: column;
}
.single-news-footer .back-to-list-btn {
width: 100%;
max-width: 320px;
}
}
.back-to-list-btn {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 220px;
min-height: 54px;
padding: 0 34px;
border: 1px solid var(--news-gold);
border-radius: 3px;
background: #fff;
color: var(--news-gold-dark);
font-family: var(--news-sans);
font-size: 15px;
font-weight: 600;
letter-spacing: .08em;
text-decoration: none;
transition: background .25s ease, color .25s ease, transform .25s ease;
}
.back-to-list-btn::before {
content: "";
width: 8px;
height: 8px;
margin-right: 12px;
border-top: 1px solid currentColor;
border-left: 1px solid currentColor;
transform: rotate(-45deg);
}
.back-to-list-btn:hover {
background: var(--news-gold);
color: #fff;
transform: translateY(-1px);
}
.ggf-footer {
width: 100% !important;
max-width: 100% !important;
margin: 0 !important;
position: relative !important;
left: auto !important;
right: auto !important;
}
@media (max-width: 900px) {
.news-search-form {
grid-template-columns: 1fr 1fr;
}
.news-search-btn {
grid-column: 1 / -1;
}
.all-news-list a {
grid-template-columns: 96px minmax(96px, auto) minmax(0, 1fr);
gap: 14px;
}
}
@media (max-width: 768px) {
.all-news-section,
.single-news-article {
width: min(calc(100% - 36px), 640px);
padding-top: 98px;
padding-bottom: 72px;
}
.all-news-kicker {
margin-bottom: 10px;
font-size: 11px;
}
.all-news-title {
margin-bottom: 34px;
font-size: 44px;
}
.news-search-box {
padding: 16px;
margin-bottom: 34px;
}
.news-search-form {
grid-template-columns: 1fr;
gap: 10px;
}
.news-search-input,
.news-search-select,
.news-search-btn {
min-height: 52px;
font-size: 15px;
}
.all-news-list a {
grid-template-columns: 1fr;
gap: 10px;
padding: 20px 2px;
}
.all-news-list a:hover {
padding-left: 2px;
}
.all-news-list .news-date,
.single-news-meta .news-date {
font-size: 15px;
}
.all-news-list .news-title {
font-size: 16px;
}
.news-badge {
min-height: 24px;
font-size: 10px;
}
.single-news-title {
font-size: 25px;
}
.single-news-content {
font-size: 15px;
line-height: 1.95;
}
.back-to-list-btn {
width: 100%;
max-width: 320px;
}
}