@charset "UTF-8";

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    background-color: #f0eee1;
}

@media only screen and (max-width: 767px) {
    body {
        font-size: 14px;
    }
}

@media only screen and (max-width: 767px) {
    .pc_only {
        display: none;
    }
}

@media only screen and (min-width: 768px) {
    .sp_only {
        display: none;
    }
}

main {
    background-color: #f6f2e8;
}

.container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    padding-bottom: 20px;
}

.hero_top {
    display: block;
}

.hero_top img {
    width: 100%;
    object-fit: cover;
}

.hero_text {
    text-align: center;
    padding: 8px 0px;
    max-width: 800px;
    margin: 0px auto;
}

.hero_text h1 {
    color: #cd0c0c;
    font-size: 63px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.hero_text p {
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: 20px;
}

.hero_gallery {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 408px;
    overflow: hidden;
    margin-top: 30px;
}

.hero_gallery > img {
    width: 32.1%;
    object-fit: cover;
}
.product {
    padding-top: 40px;
    padding-bottom: 40px;
}
@media (max-width: 767px) {
    .product {
        padding-top: 0;
        padding-bottom: 0;
    }
}
.heading {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    border-top: 2px solid #cd0c0c;
    border-bottom: 2px solid #cd0c0c;
}

.heading_prim {
    font-size: 40px;
    font-weight: 700;
    color: #cd0c0c;
    display: inline-block;
    padding: 15px 0;
}

.product_main {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}
.product_image {
    max-width: 426px;
    width: 100%;
    margin: 0 auto;
}

.product_image img {
    max-width: 426px;
    width: 100%;
    height: 469px;
    object-fit: cover;
    vertical-align: middle;
}

.product_info {
    padding-right: 47px;
}

.product_info h2 {
    font-size: 42px;
    font-weight: 700;
    color: #cd0c0c;
    text-align: center;
    letter-spacing: 1.5px;
}

.price {
    font-size: 42px;
    font-weight: 700;
    color: #cd0c0c;
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 10px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.price span {
    font-size: 22px;
}

.buy_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 332px;
    width: 100%;
    height: 55px;
    background-color: #ffffff;
    border: 1px solid #cd0c0c;
    color: #cd0c0c;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    margin: 0 auto;
    margin-bottom: 15px;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.buy_btn span::after {
    content: "▶";
    position: absolute;
    right: 50px;
    top: 51%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    transition: all 0.3s ease-in-out;
}
.buy_btn:hover {
    background: #c40000;
    color: #fff !important;
}
.buy_btn:hover::after {
    right: 48px;
}


.product_desc {
    font-size: 14px;
    line-height: 26px;
    color: #000;
}
.product_desc p {
    font-size: 12px;
    font-weight: 500;
    line-height: 19px;
    margin-bottom: 20px;
}

.detail_gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.detail_gallery img {
    width: 23.9%;
    object-fit: cover;
}

.characteristics_card {
    margin: 0 auto;
    width: 80%;
    background: #fbfbf5;
    border-radius: 10px;
    margin-bottom: 27px;
    position: relative;
}

.badge {
    position: absolute;
    left: -4%;
    top: 50%;
    transform: translateY(-50%);
    background: #cd0c0c;
    color: #fff;
    font-size: 48px;
    font-weight: bold;
    width: 83px;
    height: 83px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.characteristics_wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
}
@media (max-width: 767px) {
    .characteristics_wrapper {
        padding-top: 30px;
        padding-bottom: 0;
    }

}
.characteristics_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 25px;
}

.characteristics_left {
    width: 38%;
}

.characteristics_right {
    width: 63%;
}

.characteristics_right h3 {
    font-size: 24px;
    font-weight: 800;
    border-bottom: 2px solid #333;
    text-align: center;
    padding-bottom: 6px;
    margin-bottom: 12px;
}

.characteristics_right p {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
    padding-inline: 7px;
}
.characteristics_link {
    color: #cd0c0c;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
.characteristics_link:hover {
    color: #a80000;
    text-decoration: underline;
}
@media (max-width: 1079px) {
    .hero_gallery { 
        height: 40vw;
    }
}
@media (max-width: 992px) {
    .hero_text h1 {
        font-size: 48px;
        margin-bottom: 15px;
    }
    .hero_text p {
        font-size: 20px;
        line-height: 28px;
    }
    .product_info h2 {
        font-size: 32px;
        margin-bottom: 10px;
    }
    .price {
        font-size: 32px;
        padding-right: 15px;
    }
    .product_image img {
        height: auto;
    }
    .product_info {
        padding-right: 0;
    }
}
@media (max-width: 767px) {
    .hero { 
        padding-bottom: 0;
    }
    .hero_gallery {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 15px 0;
        align-items: flex-start;
        height: 38vw;
        margin-top: 10px;
    }

    .hero_text h1 {
        font-size: 40px;
        letter-spacing: unset;
        margin-bottom: 10px;
    }
    .hero_text p {
        font-size: 16px;
        line-height: 22px;
    }
    .heading_prim {
        font-size: 28px;
    }
    .product_info {
        padding-right: 0;
    }
    .product_info h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .product_image img {
        height: auto;
    }
    .price {
        font-size: 24px;
        justify-content: center;
        margin-top: 10px;
        padding-right: 0;
    }
    .price span {
        font-size: 16px;
    }
    .buy_btn {
        width: 100%;
    }
    .detail_gallery {
        justify-content: space-between;
    }
    .detail_gallery img {
        max-width: 48%;
        width: 100%;
        height: auto;
    }
    .product_main {
        flex-direction: column;
        margin-bottom: 0;
    }
    .characteristics_card {
        margin-bottom: 60px;
        width: 100%;
    }

    .characteristics_right {
        width: 100%;
    }

    .characteristics_right h3 {
        font-size: 17px;
    }

    .characteristics_right p {
        font-size: 12px;
    }
    .characteristics_left {
        width: 100%;
        text-align: center;
    }

    .badge {
        left: 50%;
        top: -8%;
        transform: translateX(-50%);
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
}
@media (max-width: 577px) {
    .hero_text h1 {
        font-size: 30px;
    }
    .hero_text p {
        font-size: 14px;
        line-height: 20px;
    }
}




.features_title {
    background: #c40000;
    color: #fff;
    text-align: center;
    padding: 14px;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 24px;
    line-height: 1.2;
}

@media (max-width: 767px) {
    .features_title {
        font-size: 22px;
    }
}

.features_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 0 28px;
}

@media (max-width: 1024px) {
    .features_grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .features_grid {
        grid-template-columns: repeat(2, 1fr);
        margin: 0 auto;
    }
}

@media (max-width: 540px) {
    .features_grid {
        grid-template-columns: 1fr;
    }
}

.features_link {
    text-decoration: none;
    color: inherit;
}


.feature_card {
    border: 2px solid #d95c57;
    padding: 14px;
    display: flex;
    flex-direction: column;
    max-width: 237px;
    width: 100%;
    min-height: 400px;
    height: 100%;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .feature_card {
        max-width: 335px;
        padding: 13px;
    }
}

.feature_image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.feature_image img {
    width: 100%;
    max-width: 208px;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .feature_image img {
        max-width: 305px;
    }
}

.feature_title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 6px;
    line-height: 1;
}

.feature_title .sm {
    font-size: 11px;
    font-weight: 500;
}

.feature_text {
    font-size: 10px;
    font-weight: 500;
    line-height: 1.6;
}

.feature_btn {
    text-align: center;
    margin-top: 35px;
    margin-bottom: 30px;
}

.feature_btn a {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 400px;
    border: 1px solid #c40000;
    background-color: #fff;
    color: #c40000;
    padding: 12px 40px;
    font-size: 20px;
    text-decoration: none;
    transition: 0.3s ease;
    border-radius: 2px;
}
.feature_btn a span {
    position: relative;
}
.feature_btn a span::after {
    top: 48%;
    right: -50px;
    font-size: 26px;
}
@media (max-width: 767px) {
    .feature_btn a {
        font-size: 16px;
        padding: 10px 50px 10px 25px;
    }
    .feature_btn a span::after {
        font-size: 20px;
        right: -40px;
    }
}
.feature_btn a:hover {
    background: #c40000;
    color: #fff;
}

.section_title {
    background: #c40000;
    color: #fff;
    text-align: center;
    padding: 14px;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 24px;
    line-height: 1.2;
}

@media (max-width: 767px) {
    .section_title {
        font-size: 22px;
    }
}

.spec_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 16px;
    padding-bottom: 55px;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .spec_grid {
        grid-template-columns: 1fr;
        padding-bottom: 20px;
    }
}

.spec_item {
    background: #fff;
    padding: 16px 20px;
    display: flex;
    gap: 5px;
    align-items: center;
    min-height: 70px;
    font-weight: 700;
}

.spec_label {
    min-width: 60px;
    font-size: 14px;
    text-align: center;
}

.spec_text {
    font-size: 18px;
}

@media (max-width: 767px) {
    .spec_label {
        min-width: 50px;
        font-size: 14px;
    }

    .spec_text {
        font-size: 16px;
    }
}

.divider {
    border-top: 2px solid #c40000;
    margin: 40px 0;
}
.benefit_wrapper {
    margin-top: 30px;
    margin-bottom: 60px;
}

.benefit_wrap {
    background-color: #fff;
}

.benefits_title {
    text-align: center;
    color: #c40000;
    font-size: 40px;
    font-weight: bold;
    margin: 20px 0;
}

@media (max-width: 767px) {
    .benefits_title {
        font-size: 28px;
    }
    .benefit_wrapper {
        margin-top: 20px;
    }
}

.benefit_box {
    background: #fff;
    display: flex;
    margin-bottom: 20px;
    padding: 10px;
}

.benefit_number {
    min-width: 161px;
    min-height: 186px;
    background: #c40000;
    color: #fff;
    font-size: 54px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.benefit_content {
    padding: 0 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.benefit_title {
    color: #c40000;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 34px;
    display: flex;
    align-items: center;
}

.benefit_title .sm {
    font-size: 22px;
    font-weight: 500;
}

.benefit_text {
    font-size: 18px;
    font-weight: 500;
}

.benefit_note {
    font-size: 18px;
    font-weight: 500;
    margin-top: 6px;
}

@media (max-width: 767px) {
    .benefit_box {
        flex-direction: column;
        padding: 15px;
    }

    .benefit_number {
        min-width: 100%;
        min-height: auto;
        height: 70px;
        padding: 12px 0;
        font-size: 45px;
    }

    .benefit_content {
        padding: 12px 0 0;
    }

    .benefit_title {
        font-size: 22px;
        display: block;
    }

    .benefit_title .sm {
        font-size: 14px;
    }

    .benefit_text,
    .benefit_note {
        font-size: 16px;
    }
}


.foot_note {
    font-size: 17px;
    font-weight: 500;
    margin-top: 20px;
    padding-left: 20px;
    padding-bottom: 50px;
}

@media (max-width: 767px) {
    .foot_note {
        font-size: 14px;
        padding: 0 12px 30px 12px;
    }
}

.foot_note ul {
    margin-left: 16px;
}

.foot_note li {
    list-style: none;
}

.foot_note li::before {
    content: "•";
    display: inline-block;
    margin-left: -6px;
}

.fot_img {
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
}
.fot_img img {
    width: 100%;
}
.fot_img_wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 10px;
}
.mt10 {
    margin-top: 10px;
}
.mb10 {
    margin-bottom: 10px;
}